CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
dtTriggerTask_TP_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 dtTPTriggerMonitor = DQMEDAnalyzer('DTLocalTriggerTask',
5  # set static booking (all the detector)
6  staticBooking = cms.untracked.bool(True),
7  # labels of TM data and 4D segments
8  tm_label = cms.untracked.InputTag('twinMuxStage2Digis:PhIn'),
9  ros_label = cms.untracked.InputTag('dtunpacker'),
10  seg_label = cms.untracked.InputTag('dt4DSegments'),
11  minBXTM = cms.untracked.int32(0), # min BX for TM plots
12  maxBXTM = cms.untracked.int32(2), # max BX for TM plots
13  process_seg = cms.untracked.bool(False), # if true enables comparisons with reconstructed segments
14  process_tm = cms.untracked.bool(True), # if true enables TM data analysis
15  testPulseMode = cms.untracked.bool(True), #if true enables test pulse mode
16  detailedAnalysis = cms.untracked.bool(False), #if true enables detailed analysis plots
17  enableTMTheta = cms.untracked.bool(False), # if true enables theta plots for TM
18  localrun = cms.untracked.bool(True), # if false access LTC digis
19  # number of luminosity blocks to reset the histos
20  ResetCycle = cms.untracked.int32(10000)
21 )
22 
23