CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
l1GtUnpack_cfi.py
Go to the documentation of this file.
2 
3 l1GtUnpack = cms.EDProducer("L1GlobalTriggerRawToDigi",
4 
5  # input tag for GT readout collection:
6  # source = hardware record,
7  # l1GtPack = GT packer (DigiToRaw)
8  DaqGtInputTag = cms.InputTag("l1GtPack"),
9 
10  # FED Id for GT DAQ record
11  # default value defined in DataFormats/FEDRawData/src/FEDNumbering.cc
12  DaqGtFedId = cms.untracked.int32(813),
13 
14  # mask for active boards (actually 16 bits)
15  # if bit is zero, the corresponding board will not be unpacked
16  # default: no board masked
17  ActiveBoardsMask = cms.uint32(0xFFFF),
18 
19  # number of "bunch crossing in the event" (bxInEvent) to be unpacked
20  # symmetric around L1Accept (bxInEvent = 0):
21  # 1 (bxInEvent = 0); 3 (F 0 1) (standard record); 5 (E F 0 1 2) (debug record)
22  # even numbers (except 0) "rounded" to the nearest lower odd number
23  # negative value: unpack all available bxInEvent
24  # if more bxInEvent than available are required, unpack what exists and write a warning
25  UnpackBxInEvent = cms.int32(-1)
26 
27 )
28 
29