CMS 3D CMS Logo

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