CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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  inputTagTM = cms.untracked.InputTag("twinMuxStage2Digis"),
6  inputTagSEG = cms.untracked.InputTag("dt4DSegments"),
7  # set static booking (all the detector)
8  staticBooking = cms.untracked.bool(True),
9  # set outflows to boudaries
10  rebinOutFlowsInGraph = cms.untracked.bool(True),
11  # enable more detailed studies
12  detailedAnalysis = cms.untracked.bool(False),
13  # label of the geometry used to feed DTTrigGeomUtils
14  geomLabel = cms.untracked.string("idealForDigi"),
15  # number of luminosity blocks to reset the histos
16  ResetCycle = cms.untracked.int32(9999)
17 )
18 
19