Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:07:02

0001 import FWCore.ParameterSet.Config as cms
0002 from DQMServices.Core.DQMEDHarvester import DQMEDHarvester
0003 
0004 chamberEfficiencyTest = DQMEDHarvester("DTChamberEfficiencyTest",
0005     runningStandalone = cms.untracked.bool(True),
0006     #Names of the quality tests: they must match those specified in "qtList"
0007     XEfficiencyTestName = cms.untracked.string('ChEfficiencyInRangeX'),
0008     YEfficiencyTestName = cms.untracked.string('ChEfficiencyInRangeY'),
0009     folderRoot = cms.untracked.string(''),
0010     debug = cms.untracked.bool(False),
0011     diagnosticPrescale = cms.untracked.int32(1)
0012 )
0013 
0014