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