CMS 3D CMS Logo

dtNoiseTask_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 
4 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
5 dtNoiseMonitor = DQMEDAnalyzer('DTNoiseTask',
6  # the label to retrieve the DT digis
7  dtDigiLabel = cms.untracked.InputTag('dtunpacker'),
8  # switch for time box booking
9  doTbHistos = cms.untracked.bool(False),
10  # the name of the 4D rec hits collection
11  recHits4DLabel = cms.untracked.string('dt4DSegments'),
12  # switch for segment veto
13  doSegmentVeto = cms.untracked.bool(False),
14  # safe margin (ns) between ttrig and beginning of counting area
15  safeMargin = cms.untracked.double(100.)
16  )