CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_1_8_patch9/src/EventFilter/DTRawToDigi/python/dtunpacker_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 muonDTDigis = cms.EDProducer("DTUnpackingModule",
00006     dataType = cms.string('DDU'),
00007     inputLabel = cms.InputTag('source'),
00008     fedbyType = cms.bool(False),
00009     useStandardFEDid = cms.bool(True),
00010     dqmOnly = cms.bool(False),                       
00011     readOutParameters = cms.PSet(
00012         debug = cms.untracked.bool(False),
00013         rosParameters = cms.PSet(
00014             writeSC = cms.untracked.bool(True),
00015             readingDDU = cms.untracked.bool(True),
00016             performDataIntegrityMonitor = cms.untracked.bool(False),
00017             readDDUIDfromDDU = cms.untracked.bool(True),
00018             debug = cms.untracked.bool(False),
00019             localDAQ = cms.untracked.bool(False)
00020         ),
00021         localDAQ = cms.untracked.bool(False),
00022         performDataIntegrityMonitor = cms.untracked.bool(False)
00023     )
00024 )
00025 
00026