CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/DQM/DTMonitorModule/python/dtTriggerLutTask_cfi.py

Go to the documentation of this file.
00001 import FWCore.ParameterSet.Config as cms
00002 
00003 dtTriggerLutMonitor = cms.EDAnalyzer("DTLocalTriggerLutTask",
00004     # labels of DDU/DCC data and 4D segments
00005     inputTagDCC = cms.untracked.InputTag("dttfunpacker"),
00006     inputTagSEG = cms.untracked.InputTag("dt4DSegments"),
00007     # set static booking (all the detector)
00008     staticBooking = cms.untracked.bool(True),
00009     # set outflows to boudaries
00010     rebinOutFlowsInGraph = cms.untracked.bool(True),
00011     # enable more detailed studies
00012     detailedAnalysis = cms.untracked.bool(False),
00013     # label of the geometry used to feed DTTrigGeomUtils
00014     geomLabel = cms.untracked.string("idealForDigi"),
00015     # number of luminosity blocks to reset the histos
00016     ResetCycle = cms.untracked.int32(9999)
00017 )
00018 
00019