CMS 3D CMS Logo

dtChamberEfficiencyTask_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
4 dtChamberEfficiencyMonitor = DQMEDAnalyzer('DTChamberEfficiencyTask',
5  # define the segment quality
6  minHitsSegment = cms.int32(5),
7  # parameter for check on extrapolated check
8  minCloseDist = cms.double(20.0),
9  # labels of 4D segments
10  recHits4DLabel = cms.untracked.string('dt4DSegments'),
11  # switch for verbosity
12  debug = cms.untracked.bool(False),
13  minChi2NormSegment = cms.double(20.0),
14  # interval of lumi block after which we reset the histos
15  ResetCycle = cms.untracked.int32(10000),
16  # the running mode
17  onlineMonitor = cms.untracked.bool(False),
18  # the analysis mode
19  detailedAnalysis = cms.untracked.bool(False)
20 )
21 
22