Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:07:07

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
0004 dtEfficiencyMonitor = DQMEDAnalyzer('DTEfficiencyTask',
0005     # switch for verbosity
0006     debug = cms.untracked.bool(False),
0007     # labels of 4D and 1D hits
0008     recHits4DLabel = cms.untracked.string('dt4DSegments'),
0009     recHitLabel = cms.untracked.string('dt1DRecHits'),
0010     # interval of lumi block after which we reset the histos
0011     ResetCycle = cms.untracked.int32(10000)
0012 )
0013 
0014