CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_1/src/EventFilter/DTRawToDigi/python/dtunpackerDDUGlobal_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 # Module for DT data unpacking: produces a DTDigiCollection and - on demand - 
00004 # a DTLocalTriggerCollection
00005 # Configuration for Global DAQ at MTCC
00006 dtunpacker = cms.EDProducer("DTUnpackingModule",
00007     dataType = cms.string('DDU'),
00008     inputLabel = cms.InputTag('source'),
00009     fedbyType = cms.bool(True),
00010     useStandardFEDid = cms.bool(True),
00011     dqmOnly = cms.bool(False),                       
00012     readOutParameters = cms.PSet(
00013         debug = cms.untracked.bool(False),
00014         rosParameters = cms.PSet(
00015             writeSC = cms.untracked.bool(True),
00016             readingDDU = cms.untracked.bool(True),
00017             performDataIntegrityMonitor = cms.untracked.bool(False),
00018             readDDUIDfromDDU = cms.untracked.bool(True),
00019             debug = cms.untracked.bool(False),
00020             localDAQ = cms.untracked.bool(False)
00021         ),
00022         localDAQ = cms.untracked.bool(False),
00023         performDataIntegrityMonitor = cms.untracked.bool(False)
00024     )
00025 )
00026 
00027