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
00018
00019
00020
00021
00022
00023 from DQM.L1TMonitor.BxTiming_cfi import *
00024
00025
00026
00027 from DQM.L1TMonitor.L1TLTC_cff import *
00028
00029
00030
00031
00032
00033
00034
00035
00036 from DQM.L1TMonitor.L1TRCT_cfi import *
00037
00038
00039 from DQM.L1TMonitor.L1TGCT_cfi import *
00040
00041
00042
00043
00044
00045 from DQM.L1TMonitor.L1TDTTF_cfi import *
00046
00047
00048
00049
00050
00051 from DQM.L1TMonitor.L1TCSCTF_cff import *
00052
00053
00054 from DQM.L1TMonitor.L1TRPCTF_cfi import *
00055
00056
00057 from DQM.L1TMonitor.L1TGMT_cfi import *
00058
00059
00060 from DQM.L1TMonitor.L1TGT_cfi import *
00061
00062
00063 from DQM.L1TMonitor.L1ExtraDQM_cff import *
00064
00065
00066 from DQM.L1TMonitor.L1TRate_cfi import *
00067
00068
00069
00070
00071
00072
00073
00074
00075 from DQM.TrigXMonitor.L1TScalersSCAL_cfi import *
00076
00077
00078 from DQM.TrigXMonitor.L1Scalers_cfi import *
00079 l1s.l1GtData = cms.InputTag("gtDigis")
00080 l1s.dqmFolder = cms.untracked.string("L1T/L1Scalers_SM")
00081
00082
00083
00084
00085
00086
00087
00088 l1tRctSeq = cms.Sequence(
00089 l1tRct
00090 )
00091
00092 l1tGctSeq = cms.Sequence(
00093 l1tGct
00094 )
00095
00096
00097
00098 l1ExtraDqmSeq = cms.Sequence(
00099 dqmGctDigis *
00100 dqmGtDigis *
00101 dqmL1ExtraParticles *
00102 l1ExtraDQM
00103 )
00104
00105
00106
00107
00108 l1tMonitorOnline = cms.Sequence(
00109 bxTiming +
00110 l1tLtc +
00111 l1tDttf +
00112 l1tCsctf +
00113 l1tRpctf +
00114 l1tGmt +
00115 l1tGt +
00116 l1ExtraDqmSeq +
00117 l1tRate +
00118 l1tRctSeq +
00119 l1tGctSeq
00120 )
00121
00122
00123
00124
00125
00126 l1tMonitorEndPathSeq = cms.Sequence(
00127 l1s +
00128 l1tscalers
00129 )
00130
00131