1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
import FWCore.ParameterSet.Config as cms
from DQMServices.Core.DQMEDHarvester import DQMEDHarvester
segmentTest = DQMEDHarvester("DTSegmentAnalysisTest",
detailedAnalysis = cms.untracked.bool(False),
#Perform basic diagnostic in endLumi/EndRun
runOnline = cms.untracked.bool(True),
#Names of the quality tests: they must match those specified in "qtList"
chi2TestName = cms.untracked.string('chi2InRange'),
segmRecHitTestName = cms.untracked.string('segmRecHitInRange'),
#Permetted value of chi2 segment quality
chi2Threshold = cms.untracked.double(5.0),
normalizeHistoPlots = cms.untracked.bool(False),
# top folder for the histograms in DQMStore
topHistoFolder = cms.untracked.string('DT/02-Segments'),
# hlt DQM mode
hltDQMMode = cms.untracked.bool(False),
nEventsCert = cms.untracked.int32(1000),
maxPhiHit = cms.untracked.int32(7),
maxPhiZHit = cms.untracked.int32(11),
)
|