Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
import FWCore.ParameterSet.Config as cms
from DQMServices.Core.DQMEDHarvester import DQMEDHarvester

dtSegmentTestkHLT = 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('HLT/HLTMonMuon/DT-Segments'),
                                   # hlt DQM mode
                                   hltDQMMode = cms.untracked.bool(True),
                                   nEventsCert = cms.untracked.int32(1000)
                                   )