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 import EventFilter.L1GlobalTriggerRawToDigi.l1GlobalTriggerRawToDigi_cfi
0003 
0004 l1GtUnpack = EventFilter.L1GlobalTriggerRawToDigi.l1GlobalTriggerRawToDigi_cfi.l1GlobalTriggerRawToDigi.clone()
0005 
0006 # input tag for GT readout collection: 
0007 #     source = hardware record, 
0008 #     l1GtPack = GT packer (DigiToRaw) 
0009 l1GtUnpack.DaqGtInputTag = cms.InputTag("l1GtPack")
0010 
0011 # FED Id for GT DAQ record 
0012 # default value defined in DataFormats/FEDRawData/src/FEDNumbering.cc
0013 l1GtUnpack.DaqGtFedId = cms.untracked.int32(813)
0014 
0015 # mask for active boards (actually 16 bits)
0016 #      if bit is zero, the corresponding board will not be unpacked
0017 #      default: no board masked
0018 l1GtUnpack.ActiveBoardsMask = cms.uint32(0xFFFF)
0019 
0020 # number of "bunch crossing in the event" (bxInEvent) to be unpacked
0021 # symmetric around L1Accept (bxInEvent = 0):
0022 #    1 (bxInEvent = 0); 3 (F 0 1) (standard record); 5 (E F 0 1 2) (debug record)
0023 # even numbers (except 0) "rounded" to the nearest lower odd number
0024 # negative value: unpack all available bxInEvent   
0025 # if more bxInEvent than available are required, unpack what exists and write a warning  
0026 l1GtUnpack.UnpackBxInEvent = cms.int32(-1)