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
|
import FWCore.ParameterSet.Config as cms
# L1 Trigger DQM sequence for offline DQM for MC
#
# used by DQM GUI: DQMOffline/Configuration
#
#
#
# standard RawToDigi sequence and RECO sequence must be run before the L1 Trigger modules,
# labels from the standard sequence are used as default for the L1 Trigger DQM modules
#
# V.M. Ghete - HEPHY Vienna - 2011-11-17
#
# L1 Trigger DQM sequence for offline DQM for data
from DQMOffline.L1Trigger.L1TriggerDqmOffline_cff import *
# changes for MC
# do not run the emulator in MC
l1TriggerDqmOffline.remove(l1TriggerEmulatorOnline)
# do not run the emulator client in MC
l1TriggerDqmOfflineClient.remove(l1EmulatorMonitorClient)
# correct input tags for MC for the private unpacking
dqmGctDigis.inputLabel = 'rawDataCollector'
dqmGtDigis.DaqGtInputTag = 'rawDataCollector'
|