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 efficiencyTest = DQMEDHarvester("DTEfficiencyTest",
0005     runningStandalone = cms.untracked.bool(True),
0006     UnassEfficiencyTestName = cms.untracked.string('UnassEfficiencyInRange'),
0007     #Names of the quality tests: they must match those specified in "qtList"
0008     EfficiencyTestName = cms.untracked.string('EfficiencyInRange'),
0009     folderRoot = cms.untracked.string(''),
0010     debug = cms.untracked.bool(False),
0011     diagnosticPrescale = cms.untracked.int32(1)
0012 )
0013 
0014