Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:10:45

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 l1GtPack = cms.EDProducer("L1GTDigiToRaw",
0004 
0005     # FED Id for GT DAQ record 
0006     # default value defined in DataFormats/FEDRawData/src/FEDNumbering.cc
0007     DaqGtFedId = cms.untracked.int32(813),
0008     
0009     # input tag for GT readout record: 
0010     #     gtDigis         = GT emulator, 
0011     #     l1GtUnpack      = GT unpacker 
0012     DaqGtInputTag = cms.InputTag("simGtDigis"),
0013     
0014     # input tag for GMT readout collection: 
0015     #     gmtDigis       = GMT emulator, 
0016     #     l1GtUnpack     = GT unpacker 
0017     MuGmtInputTag = cms.InputTag("simGmtDigis"),
0018 
0019     # mask for active boards (actually 16 bits)
0020     #      if bit is zero, the corresponding board will not be packed
0021     #      default: no board masked
0022     ActiveBoardsMask = cms.uint32(0xFFFF)
0023 )
0024 
0025