File indexing completed on 2024-04-06 12:07:58
0001 import FWCore.ParameterSet.Config as cms
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017 from DQM.L1TMonitorClient.L1TStage2QualityTests_cff import *
0018
0019
0020
0021 from DQM.L1TMonitorClient.L1TObjectsTimingClient_cff import *
0022
0023
0024 from DQM.L1TMonitorClient.L1TStage2EventInfoClient_cfi import *
0025
0026
0027 from DQM.L1TMonitorClient.L1TStage2BMTFClient_cff import *
0028
0029
0030 from DQM.L1TMonitorClient.L1TStage2uGMTClient_cff import *
0031
0032
0033 from DQM.L1TMonitorClient.L1TStage2uGTClient_cff import *
0034
0035
0036 from DQM.L1TMonitorClient.L1TStage2EMTFEventInfoClient_cfi import *
0037
0038
0039
0040
0041
0042 l1TStage2Clients = cms.Sequence(
0043 l1tStage2EventInfoClient
0044 + l1tStage2BmtfClient
0045 + l1tStage2uGMTClient
0046 + l1tStage2uGTClient
0047 + l1tStage2EMTFEventInfoClient
0048 + l1tObjectsTimingClient
0049 )
0050
0051 l1tStage2MonitorClient = cms.Sequence(
0052 l1TStage2QualityTests
0053 + l1TStage2Clients
0054 )