CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_9_patch3/src/DQM/DTMonitorModule/python/dtNoiseTask_cfi.py

Go to the documentation of this file.
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                                 # safe margin (ns) between ttrig and beginning of counting area
00014                                 safeMargin = cms.untracked.double(100.)
00015                                 )