Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:07:07

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 from DQMServices.Core.DQMEDAnalyzer import DQMEDAnalyzer
0004 dtTriggerLutMonitor = DQMEDAnalyzer('DTLocalTriggerLutTask',
0005     # labels of TM data and 4D segments
0006     inputTagTMin = cms.untracked.InputTag('twinMuxStage2Digis:PhIn'),
0007     inputTagTMout = cms.untracked.InputTag('twinMuxStage2Digis:PhOut'),
0008     inputTagSEG = cms.untracked.InputTag('dt4DSegments'),
0009     # set static booking (all the detector)
0010     staticBooking = cms.untracked.bool(True),
0011     # set outflows to boudaries
0012     rebinOutFlowsInGraph = cms.untracked.bool(True),
0013     # enable more detailed studies
0014     detailedAnalysis = cms.untracked.bool(False),
0015     # label of the geometry used to feed DTTrigGeomUtils
0016     geomLabel = cms.untracked.string('idealForDigi'),
0017     # number of luminosity blocks to reset the histos
0018     ResetCycle = cms.untracked.int32(9999)
0019 )
0020 
0021