CMS 3D CMS Logo

dtOccupancyEfficiency_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 dtOccupancyMonitor = DQMEDAnalyzer('DTOccupancyEfficiency',
5  # switch for verbosity
6  debug = cms.untracked.bool(False),
7  # label for dtDigis
8  digiLabel = cms.string('muonDTDigis'),
9  # labels of 4D and 1D hits
10  recHits4DLabel = cms.string('dt4DSegments'),
11  recHitLabel = cms.string('dt1DRecHits'),
12 )
13 
14 
15