00001 import FWCore.ParameterSet.Config as cms 00002 00003 00004 dtNoiseMonitor = cms.EDAnalyzer("DTNoiseTask", 00005 # the label to retrieve the DT digis 00006 dtDigiLabel = cms.InputTag("dtunpacker"), 00007 # switch for time box booking 00008 doTbHistos = cms.untracked.bool(False), 00009 # the name of the 4D rec hits collection 00010 recHits4DLabel = cms.string("dt4DSegments"), 00011 # switch for segment veto 00012 doSegmentVeto = cms.untracked.bool(False) 00013 )