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

efficiencyTest = DQMEDHarvester("DTEfficiencyTest",
    runningStandalone = cms.untracked.bool(True),
    UnassEfficiencyTestName = cms.untracked.string('UnassEfficiencyInRange'),
    #Names of the quality tests: they must match those specified in "qtList"
    EfficiencyTestName = cms.untracked.string('EfficiencyInRange'),
    folderRoot = cms.untracked.string(''),
    debug = cms.untracked.bool(False),
    diagnosticPrescale = cms.untracked.int32(1)
)