test
CMS 3D CMS Logo

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