Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:07:57

0001 # L1 Emulator DQM monitor client 
0002 #
0003 #   authors previous versions - see CVS
0004 #
0005 #   V.M. Ghete 2010-10-22 revised version of L1 emulator DQM
0006 
0007 import FWCore.ParameterSet.Config as cms
0008 
0009 from DQM.L1TMonitorClient.L1EmulatorQualityTests_cff import *
0010 from DQM.L1TMonitorClient.L1EmulatorErrorFlagClient_cfi import *
0011 from DQM.L1TMonitorClient.L1TEMUEventInfoClient_cff import *
0012 
0013 
0014 l1EmulatorMonitorClient = cms.Sequence(
0015                                 l1EmulatorQualityTests * 
0016                                 l1EmulatorErrorFlagClient * 
0017                                 l1EmulatorEventInfoClient 
0018                                 )
0019 
0020 
0021