1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
import FWCore.ParameterSet.Config as cms
#commented out in 74X
#from DQM.HLTEvF.FourVectorHLTOnline_cfi import *
#from DQM.HLTEvF.OccupancyPlotter_cfi import *
from DQM.HLTEvF.HLTObjectMonitor_cfi import *
from DQM.HLTEvF.HLTObjectsMonitor_cfi import *
from DQM.HLTEvF.HLTLumiMonitoring_cff import *
from DQM.HLTEvF.HLTSiPixelMonitoring_cff import *
# strip monitoring@HLT needs track re-fitting (estimation of the crossing angle through the sensor)
# => some ESProducer modules have to be run
from DQM.HLTEvF.HLTSiStripMonitoring_cff import *
from DQM.HLTEvF.HLTTrackingMonitoring_cff import *
from DQM.HLTEvF.HLTPrimaryVertexMonitoring_cff import *
from DQM.HLTEvF.HLTHCALMonitoring_cff import *
hlt4vector = cms.Path(
lumiOnlineMonitorHLTsequence # lumi
* hltObjectMonitor
* hcalOnlineMonitoringSequence # HCAL monitoring
* pixelOnlineMonitorHLTsequence # pixel cluster monitoring
* sistripOnlineMonitorHLTsequence # strip cluster monitoring
* trackingMonitoringHLTsequence # tracking monitoring
* egmTrackingMonitorHLTsequence # EGM tracking monitoring
* vertexingMonitorHLTsequence # vertexing
* hltObjectsMonitor
)
#hlt4vector = cms.Path(onlineOccPlot * hltObjectMonitor)
#hlt4vector = cms.Path(onlineOccPlot)
|