CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/EventFilter/L1GlobalTriggerRawToDigi/python/l1GtEvmPack_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 l1GtEvmPack = cms.EDProducer("L1GTEvmDigiToRaw",
00004     
00005     # FED Id for GT EVM record 
00006     # default value defined in DataFormats/FEDRawData/src/FEDNumbering.cc
00007     EvmGtFedId = cms.untracked.int32(812),
00008     
00009     # input tag for GT readout record: 
00010     #     gtDigis         = GT emulator, 
00011     #     l1GtEvmUnpack   = GT EVM unpacker 
00012     EvmGtInputTag = cms.InputTag("gtDigis"),
00013     
00014     # mask for active boards (actually 16 bits)
00015     #      if bit is zero, the corresponding board will not be packed
00016     #      default: no board masked
00017     ActiveBoardsMask = cms.uint32(0xFFFF)
00018 )
00019 
00020