CMS 3D CMS Logo

dtLocalTriggerLutTest_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 triggerLutTest = DQMEDHarvester("DTLocalTriggerLutTest",
5  # prescale factor (in luminosity blocks) to perform client analysis
6  diagnosticPrescale = cms.untracked.int32(1),
7  # run in online environment
8  runOnline = cms.untracked.bool(True),
9  # kind of trigger data processed by DTLocalTriggerTask
10  hwSources = cms.untracked.vstring('TM'),
11  # false if DTLocalTriggerTask used LTC digis
12  localrun = cms.untracked.bool(True),
13  # enable/disable correlation plot tests
14  doCorrelationStudy = cms.untracked.bool(False),
15  # root folder for booking of histograms
16  folderRoot = cms.untracked.string('')
17 )
18 
DQMEDHarvester
Definition: DQMEDHarvester.py:1