CMS 3D CMS Logo

dtResolutionTask_hlt_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 dtResolutionTaskHLT = DQMEDAnalyzer('DTResolutionAnalysisTask',
5  # labels of 4D hits
6  recHits4DLabel = cms.untracked.string('hltDt4DSegments'),
7  # interval of lumi block after which we reset the histos
8  ResetCycle = cms.untracked.int32(10000),
9  # top folder for the histograms in DQMStore
10  topHistoFolder = cms.untracked.string('HLT/HLTMonMuon/DT-Segments')
11  )
12 
13