1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
import FWCore.ParameterSet.Config as cms
# DQMStore service
from DQMServices.Core.DQMStore_cfi import DQMStore
# FastTimerService client
from HLTrigger.Timer.fastTimerServiceClient_cfi import fastTimerServiceClient
fastTimerServiceClient.dqmPath = "HLT/TimerService"
# ThroughputService client
from HLTrigger.Timer.throughputServiceClient_cfi import throughputServiceClient
throughputServiceClient.dqmPath = "HLT/Throughput"
# run the harveting modules and the DQMFileSaver
HLTHarvestingSequence = cms.Sequence( fastTimerServiceClient + throughputServiceClient )
|