CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_1_8_patch9/src/DQM/DTMonitorClient/python/dtTriggerEfficiencyTest_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 triggerEffTest = cms.EDAnalyzer("DTTriggerEfficiencyTest",
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(False),
00008     # kind of trigger data processed by DTLocalTriggerTask
00009     hwSources = cms.untracked.vstring('DCC','DDU'),
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     #enable generation of chamber granularity plots
00015     detailedAnalysis = cms.untracked.bool(False)                                  
00016 )
00017 
00018