CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_10_patch2/src/DQM/DTMonitorClient/python/dtTriggerLutTest_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 triggerLutTest = cms.EDAnalyzer("DTTriggerLutTest",
00004     # prescale factor (in luminosity blocks) to perform client analysis
00005     diagnosticPrescale = cms.untracked.int32(1),
00006     # run in online environment
00007     runOnline = cms.untracked.bool(True),
00008     # kind of trigger data processed by DTLocalTriggerTask
00009     hwSources = cms.untracked.vstring('DCC'),
00010     # false if DTLocalTriggerTask used LTC digis
00011     localrun = cms.untracked.bool(True),
00012     # root folder for booking of histograms
00013     folderRoot = cms.untracked.string(''),
00014     validRange = cms.untracked.double(2.),
00015     # thershold for warning & errors in phi/phib tests
00016     thresholdWarnPhi = cms.untracked.double(.95),
00017     thresholdErrPhi  = cms.untracked.double(.90),
00018     thresholdWarnPhiB = cms.untracked.double(.95),
00019     thresholdErrPhiB  = cms.untracked.double(.90),
00020     # detailed analysis flag
00021     detailedAnalysis = cms.untracked.bool(False),
00022     # enable/ disable dynamic booking
00023     staticBooking = cms.untracked.bool(True)                                   
00024 )
00025 
00026