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 dtResolutionAnalysisMonitor = DQMEDAnalyzer('DTResolutionAnalysisTask',
0005                                              # labels of 4D hits
0006                                              recHits4DLabel = cms.untracked.string('dt4DSegments'),
0007                                              # interval of lumi block after which we reset the histos
0008                                              ResetCycle = cms.untracked.int32(10000),
0009                                              # cut on the hits of segments considered for resolution
0010                                              phiHitsCut = cms.untracked.uint32(6),
0011                                              zHitsCut = cms.untracked.uint32(3),
0012                                              # top folder for the histograms in DQMStore
0013                                              topHistoFolder = cms.untracked.string('DT/02-Segments')
0014                                              )
0015 
0016