Line Code
1 2 3 4 5 6 7 8 9 10 11
import FWCore.ParameterSet.Config as cms
from DQMServices.Core.DQMEDHarvester import DQMEDHarvester

resolutionTest = DQMEDHarvester("DTResolutionAnalysisTest",
                                 diagnosticPrescale = cms.untracked.int32(1),
                                 permittedMeanRange = cms.untracked.double(0.02),
                                 permittedSigmaRange = cms.untracked.double(0.12),
                                 # top folder for the histograms in DQMStore
                                 topHistoFolder = cms.untracked.string('DT/CalibrationSummary'),
                                 doCalibAnalysis = cms.untracked.bool(True)
                                )