CMS 3D CMS Logo

dtTriggerLutTask_cfi.py
Go to the documentation of this file.
1 import FWCore.ParameterSet.Config as cms
2 
3 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
4 dtTriggerLutMonitor = DQMEDAnalyzer('DTLocalTriggerLutTask',
5  # labels of TM data and 4D segments
6  inputTagTMin = cms.untracked.InputTag("twinMuxStage2Digis:PhIn"),
7  inputTagTMout = cms.untracked.InputTag("twinMuxStage2Digis:PhOut"),
8  inputTagSEG = cms.untracked.InputTag("dt4DSegments"),
9  # set static booking (all the detector)
10  staticBooking = cms.untracked.bool(True),
11  # set outflows to boudaries
12  rebinOutFlowsInGraph = cms.untracked.bool(True),
13  # enable more detailed studies
14  detailedAnalysis = cms.untracked.bool(False),
15  # label of the geometry used to feed DTTrigGeomUtils
16  geomLabel = cms.untracked.string("idealForDigi"),
17  # number of luminosity blocks to reset the histos
18  ResetCycle = cms.untracked.int32(9999)
19 )
20 
21 
DQMEDAnalyzer
Definition: DQMEDAnalyzer.py:1