CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/DQM/DTMonitorClient/python/dtSegmentAnalysisTest_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 segmentTest = cms.EDAnalyzer("DTSegmentAnalysisTest",
00004                              detailedAnalysis = cms.untracked.bool(False),
00005                              #Perform basic diagnostic in endLumi/EndRun
00006                              runOnline = cms.untracked.bool(True),
00007                              #Names of the quality tests: they must match those specified in "qtList"
00008                              chi2TestName = cms.untracked.string('chi2InRange'),
00009                              segmRecHitTestName = cms.untracked.string('segmRecHitInRange'),
00010                              #Permetted value of chi2 segment quality
00011                              chi2Threshold = cms.untracked.double(5.0),
00012                              normalizeHistoPlots = cms.untracked.bool(False),
00013                              # top folder for the histograms in DQMStore
00014                              topHistoFolder = cms.untracked.string("DT/02-Segments"),
00015                              # hlt DQM mode
00016                              hltDQMMode = cms.untracked.bool(False),
00017                              nEventsCert = cms.untracked.int32(1000),
00018                              maxPhiHit = cms.untracked.int32(7),
00019                              maxPhiZHit = cms.untracked.int32(11),
00020                              )
00021 
00022