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 
0003 deadChannelTest = cms.EDAnalyzer("DTDeadChannelTest",
0004     debug = cms.untracked.bool(False),
0005     runningStandalone = cms.untracked.bool(True),
0006     diagnosticPrescale = cms.untracked.int32(1),
0007     folderRoot = cms.untracked.string(''),
0008     #Names of the quality tests: they must match those specified in "qtList"
0009     EfficiencyTestName = cms.untracked.string('OccupancyDiffInRange')
0010 )
0011 
0012