00001 import FWCore.ParameterSet.Config as cms 00002 00003 dtResolutionAnalysisMonitor = cms.EDAnalyzer("DTResolutionAnalysisTask", 00004 # labels of 4D hits 00005 recHits4DLabel = cms.string('dt4DSegments'), 00006 # interval of lumi block after which we reset the histos 00007 ResetCycle = cms.untracked.int32(10000), 00008 # cut on the hits of segments considered for resolution 00009 phiHitsCut = cms.untracked.uint32(6), 00010 zHitsCut = cms.untracked.uint32(3), 00011 # top folder for the histograms in DQMStore 00012 topHistoFolder = cms.untracked.string("DT/02-Segments") 00013 ) 00014 00015