CMS 3D CMS Logo

Variables

l1GtEvmUnpack_cfi Namespace Reference

Variables

tuple l1GtEvmUnpack

Variable Documentation

Initial value:
00001 cms.EDProducer("L1GlobalTriggerEvmRawToDigi",
00002                                
00003     # input tag for GT EVM record: 
00004     #     source = hardware record, 
00005     #     l1GtEvmPack = GT EVM packer (DigiToRaw) 
00006     EvmGtInputTag = cms.InputTag("l1GtEvmPack"),
00007     
00008     # FED Id for GT EVM record 
00009     # default value defined in DataFormats/FEDRawData/src/FEDNumbering.cc
00010     EvmGtFedId = cms.untracked.int32(812),
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     # length of BST message (in bytes)
00026     # if negative, take it from event setup
00027     BstLengthBytes = cms.int32(-1)
00028      
00029 )

Definition at line 6 of file l1GtEvmUnpack_cfi.py.