CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
dtEfficiencyTask_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 dtEfficiencyMonitor = DQMEDAnalyzer('DTEfficiencyTask',
5  # switch for verbosity
6  debug = cms.untracked.bool(False),
7  # labels of 4D and 1D hits
8  recHits4DLabel = cms.string('dt4DSegments'),
9  recHitLabel = cms.string('dt1DRecHits'),
10  # interval of lumi block after which we reset the histos
11  ResetCycle = cms.untracked.int32(10000)
12 )
13 
14