00001 import FWCore.ParameterSet.Config as cms 00002 00003 dtEfficiencyMonitor = cms.EDAnalyzer("DTEfficiencyTask", 00004 # switch for verbosity 00005 debug = cms.untracked.bool(False), 00006 # labels of 4D and 1D hits 00007 recHits4DLabel = cms.string('dt4DSegments'), 00008 recHitLabel = cms.string('dt1DRecHits'), 00009 # interval of lumi block after which we reset the histos 00010 ResetCycle = cms.untracked.int32(10000) 00011 ) 00012 00013