CMS 3D CMS Logo

Variables

l1GtUnpack_cfi Namespace Reference

Variables

tuple l1GtUnpack

Variable Documentation

Initial value:
00001 cms.EDProducer("L1GlobalTriggerRawToDigi",
00002                             
00003     # input tag for GT readout collection: 
00004     #     source = hardware record, 
00005     #     l1GtPack = GT packer (DigiToRaw) 
00006     DaqGtInputTag = cms.InputTag("l1GtPack"),
00007 
00008     # FED Id for GT DAQ record 
00009     # default value defined in DataFormats/FEDRawData/src/FEDNumbering.cc
00010     DaqGtFedId = cms.untracked.int32(813),
00011 
00012     # mask for active boards (actually 16 bits)
00013     #      if bit is zero, the corresponding board will not be unpacked
00014     #      default: no board masked
00015     ActiveBoardsMask = cms.uint32(0xFFFF),
00016 
00017     # number of "bunch crossing in the event" (bxInEvent) to be unpacked
00018     # symmetric around L1Accept (bxInEvent = 0):
00019     #    1 (bxInEvent = 0); 3 (F 0 1) (standard record); 5 (E F 0 1 2) (debug record)
00020     # even numbers (except 0) "rounded" to the nearest lower odd number
00021     # negative value: unpack all available bxInEvent   
00022     # if more bxInEvent than available are required, unpack what exists and write a warning  
00023     UnpackBxInEvent = cms.int32(-1)
00024 
00025 )

Definition at line 3 of file l1GtUnpack_cfi.py.