CMS 3D CMS Logo

dtChamberEfficiencyTest_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 chamberEfficiencyTest = DQMEDHarvester("DTChamberEfficiencyTest",
5  runningStandalone = cms.untracked.bool(True),
6  #Names of the quality tests: they must match those specified in "qtList"
7  XEfficiencyTestName = cms.untracked.string('ChEfficiencyInRangeX'),
8  YEfficiencyTestName = cms.untracked.string('ChEfficiencyInRangeY'),
9  folderRoot = cms.untracked.string(''),
10  debug = cms.untracked.bool(False),
11  diagnosticPrescale = cms.untracked.int32(1)
12 )
13 
14