CMS 3D CMS Logo

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