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