CMS 3D CMS Logo

dtResolutionAnalysisTest_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 from DQMServices.Core.DQMEDHarvester import DQMEDHarvester
3 
4 dtResolutionAnalysisTest = DQMEDHarvester("DTResolutionAnalysisTest",
5  diagnosticPrescale = cms.untracked.int32(1),
6  maxGoodMeanValue = cms.untracked.double(0.005),
7  minBadMeanValue = cms.untracked.double(0.015),
8  maxGoodSigmaValue = cms.untracked.double(0.05),
9  minBadSigmaValue = cms.untracked.double(0.08),
10  # top folder for the histograms in DQMStore
11  topHistoFolder = cms.untracked.string('DT/02-Segments')
12  )
13 
14