CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
dtTriggerLutTest_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("DTTriggerLutTest",
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  # root folder for booking of histograms
14  folderRoot = cms.untracked.string(''),
15  validRange = cms.untracked.double(2.),
16  # thershold for warning & errors in phi/phib tests
17  thresholdWarnPhi = cms.untracked.double(.95),
18  thresholdErrPhi = cms.untracked.double(.90),
19  thresholdWarnPhiB = cms.untracked.double(.95),
20  thresholdErrPhiB = cms.untracked.double(.90),
21  # detailed analysis flag
22  detailedAnalysis = cms.untracked.bool(False),
23  # enable/ disable dynamic booking
24  staticBooking = cms.untracked.bool(True)
25 )
26 
27