CMS 3D CMS Logo

l1GtPack_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 l1GtPack = cms.EDProducer("L1GTDigiToRaw",
4 
5  # FED Id for GT DAQ record
6  # default value defined in DataFormats/FEDRawData/src/FEDNumbering.cc
7  DaqGtFedId = cms.untracked.int32(813),
8 
9  # input tag for GT readout record:
10  # gtDigis = GT emulator,
11  # l1GtUnpack = GT unpacker
12  DaqGtInputTag = cms.InputTag("simGtDigis"),
13 
14  # input tag for GMT readout collection:
15  # gmtDigis = GMT emulator,
16  # l1GtUnpack = GT unpacker
17  MuGmtInputTag = cms.InputTag("simGmtDigis"),
18 
19  # mask for active boards (actually 16 bits)
20  # if bit is zero, the corresponding board will not be packed
21  # default: no board masked
22  ActiveBoardsMask = cms.uint32(0xFFFF)
23 )
24 
25