Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
# L1 Emulator DQM monitor client 
#
#   authors previous versions - see CVS
#
#   V.M. Ghete 2010-10-22 revised version of L1 emulator DQM

import FWCore.ParameterSet.Config as cms

from DQM.L1TMonitorClient.L1EmulatorQualityTests_cff import *
from DQM.L1TMonitorClient.L1EmulatorErrorFlagClient_cfi import *
from DQM.L1TMonitorClient.L1TEMUEventInfoClient_cff import *


l1EmulatorMonitorClient = cms.Sequence(
                                l1EmulatorQualityTests * 
                                l1EmulatorErrorFlagClient * 
                                l1EmulatorEventInfoClient 
                                )