CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/EventFilter/L1GlobalTriggerRawToDigi/python/l1GtPack_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 l1GtPack = cms.EDProducer("L1GTDigiToRaw",
00004 
00005     # FED Id for GT DAQ record 
00006     # default value defined in DataFormats/FEDRawData/src/FEDNumbering.cc
00007     DaqGtFedId = cms.untracked.int32(813),
00008     
00009     # input tag for GT readout record: 
00010     #     gtDigis         = GT emulator, 
00011     #     l1GtUnpack      = GT unpacker 
00012     DaqGtInputTag = cms.InputTag("simGtDigis"),
00013     
00014     # input tag for GMT readout collection: 
00015     #     gmtDigis       = GMT emulator, 
00016     #     l1GtUnpack     = GT unpacker 
00017     MuGmtInputTag = cms.InputTag("simGmtDigis"),
00018 
00019     # mask for active boards (actually 16 bits)
00020     #      if bit is zero, the corresponding board will not be packed
00021     #      default: no board masked
00022     ActiveBoardsMask = cms.uint32(0xFFFF)
00023 )
00024 
00025