CMS 3D CMS Logo

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