CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_9_patch3/src/DQM/DTMonitorModule/python/dtChamberEfficiencyTask_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 dtChamberEfficiencyMonitor = cms.EDAnalyzer("DTChamberEfficiencyTask",
00004     # define the segment quality
00005     minHitsSegment = cms.int32(5),
00006     # parameter for check on extrapolated check
00007     minCloseDist = cms.double(20.0),
00008     # labels of 4D segments
00009     recHits4DLabel = cms.string('dt4DSegments'),
00010     # switch for verbosity
00011     debug = cms.untracked.bool(False),
00012     minChi2NormSegment = cms.double(20.0),
00013     # interval of lumi block after which we reset the histos
00014     ResetCycle = cms.untracked.int32(10000),
00015     # the running mode
00016     onlineMonitor = cms.untracked.bool(False),
00017     # the analysis mode
00018     detailedAnalysis = cms.untracked.bool(False)                                       
00019 )
00020 
00021