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 triggerLutTest = DQMEDHarvester("DTTriggerLutTest",
0005     # prescale factor (in luminosity blocks) to perform client analysis
0006     diagnosticPrescale = cms.untracked.int32(1),
0007     # run in online environment
0008     runOnline = cms.untracked.bool(True),
0009     # kind of trigger data processed by DTLocalTriggerTask
0010     hwSources = cms.untracked.vstring('TM'),
0011     # false if DTLocalTriggerTask used LTC digis
0012     localrun = cms.untracked.bool(True),
0013     # root folder for booking of histograms
0014     folderRoot = cms.untracked.string(''),
0015     validRange = cms.untracked.double(2.),
0016     # thershold for warning & errors in phi/phib tests
0017     thresholdWarnPhi = cms.untracked.double(.95),
0018     thresholdErrPhi  = cms.untracked.double(.90),
0019     thresholdWarnPhiB = cms.untracked.double(.95),
0020     thresholdErrPhiB  = cms.untracked.double(.90),
0021     # detailed analysis flag
0022     detailedAnalysis = cms.untracked.bool(False),
0023     # enable/ disable dynamic booking
0024     staticBooking = cms.untracked.bool(True)                                   
0025 )
0026 
0027