Go to the documentation of this file.00001 import FWCore.ParameterSet.Config as cms
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 from DQM.L1TMonitorClient.L1TriggerQualityTests_cff import *
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037 from DQM.L1TMonitorClient.L1TGCTClient_cfi import *
00038
00039
00040
00041
00042
00043 from DQM.L1TMonitorClient.L1TDTTFClient_cfi import *
00044
00045
00046
00047
00048
00049 from DQM.L1TMonitorClient.L1TCSCTFClient_cfi import *
00050
00051
00052 from DQM.L1TMonitorClient.L1TRPCTFClient_cfi import *
00053
00054
00055 from DQM.L1TMonitorClient.L1TGMTClient_cfi import *
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065 from DQM.L1TMonitorClient.L1TOccupancyClient_cff import *
00066 from DQM.L1TMonitorClient.L1TTestsSummary_cff import *
00067
00068
00069 from DQM.L1TMonitorClient.L1TEventInfoClient_cfi import *
00070
00071
00072
00073
00074
00075
00076 from DQM.TrigXMonitorClient.L1TScalersClient_cfi import *
00077 l1tsClient.dqmFolder = cms.untracked.string("L1T/L1Scalers_SM")
00078
00079
00080
00081
00082
00083
00084
00085
00086 l1TriggerClients = cms.Sequence(
00087 l1tGctClient +
00088 l1tDttfClient +
00089 l1tCsctfClient +
00090 l1tRpctfClient +
00091 l1tGmtClient +
00092 l1tOccupancyClient +
00093 l1tTestsSummary +
00094 l1tEventInfoClient
00095 )
00096
00097 L1TMonitorClient = cms.Sequence(
00098 l1TriggerQualityTests +
00099 l1TriggerClients
00100 )
00101
00102
00103
00104
00105 l1tMonitorClientEndPathSeq = cms.Sequence(
00106 l1tsClient
00107 )
00108
00109