CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
dtResolutionTask_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 dtResolutionAnalysisMonitor = DQMEDAnalyzer('DTResolutionAnalysisTask',
5  # labels of 4D hits
6  recHits4DLabel = cms.string('dt4DSegments'),
7  # interval of lumi block after which we reset the histos
8  ResetCycle = cms.untracked.int32(10000),
9  # cut on the hits of segments considered for resolution
10  phiHitsCut = cms.untracked.uint32(6),
11  zHitsCut = cms.untracked.uint32(3),
12  # top folder for the histograms in DQMStore
13  topHistoFolder = cms.untracked.string('DT/02-Segments')
14  )
15 
16