CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_1/src/DQM/DTMonitorClient/python/dtSegmentAnalysisTest_hlt_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 dtSegmentTestkHLT = 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("HLT/HLTMonMuon/DT-Segments"),
00015                                    # hlt DQM mode
00016                                    hltDQMMode = cms.untracked.bool(True),
00017                                    nEventsCert = cms.untracked.int32(1000)
00018                                    )
00019 
00020