Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
import FWCore.ParameterSet.Config as cms

l1GtPack = cms.EDProducer("L1GTDigiToRaw",

    # FED Id for GT DAQ record 
    # default value defined in DataFormats/FEDRawData/src/FEDNumbering.cc
    DaqGtFedId = cms.untracked.int32(813),
    
    # input tag for GT readout record: 
    #     gtDigis         = GT emulator, 
    #     l1GtUnpack      = GT unpacker 
    DaqGtInputTag = cms.InputTag("simGtDigis"),
    
    # input tag for GMT readout collection: 
    #     gmtDigis       = GMT emulator, 
    #     l1GtUnpack     = GT unpacker 
    MuGmtInputTag = cms.InputTag("simGmtDigis"),

    # mask for active boards (actually 16 bits)
    #      if bit is zero, the corresponding board will not be packed
    #      default: no board masked
    ActiveBoardsMask = cms.uint32(0xFFFF)
)