CMS 3D CMS Logo

dtEfficiencyTest_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 efficiencyTest = DQMEDHarvester("DTEfficiencyTest",
5  runningStandalone = cms.untracked.bool(True),
6  UnassEfficiencyTestName = cms.untracked.string('UnassEfficiencyInRange'),
7  #Names of the quality tests: they must match those specified in "qtList"
8  EfficiencyTestName = cms.untracked.string('EfficiencyInRange'),
9  folderRoot = cms.untracked.string(''),
10  debug = cms.untracked.bool(False),
11  diagnosticPrescale = cms.untracked.int32(1)
12 )
13 
14