CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
L1TMonitorClient_cff.py
Go to the documentation of this file.
2 
3 # L1 Trigger client DQM sequence
4 #
5 # used by DQM GUI: DQM/Integration/python/test/l1t_dqm_sourceclient-*_cfg.py
6 #
7 # standard RawToDigi sequence must be run before the L1T module, labels
8 # from the standard sequence are used as default for the L1 DQM modules
9 # any configuration change in the unpacking must be done in l1t_dqm_sourceclient-*_cfg.py
10 #
11 # see CVS for previous authors
12 #
13 # V.M. Ghete 2011-05-26 revised version of L1 Trigger client DQM
14 #
15 
16 # DQM quality tests
18 
19 #
20 # DQM client modules
21 #
22 
23 # Bx Timing DQM client module- not available
24 
25 # LTC DQM client module- not available
26 
27 # ECAL TPG client DQM module
28 # not run in L1T - do we need it? FIXME
29 
30 # HCAL TPG DQM module
31 # not run in L1T - do we need it? FIXME
32 
33 # RCT DQM client module - not available
34 #from DQM.L1TMonitorClient.L1TRCTClient_cfi import *
35 
36 # GCT DQM client module
38 
39 # DTTPG DQM module
40 # not run in L1T - do we need it? FIXME
41 
42 # DTTF DQM client module
44 
45 # CSCTPG DQM module
46 # not run in L1T - do we need it? FIXME
47 
48 # CSCTF DQM client module
50 
51 # RPC DQM client module - non-standard name of the module
53 
54 # GMT DQM module
56 
57 # GT DQM client module - not available
58 #from DQM.L1TMonitorClient.L1TGTClient_cfi import *
59 
60 # L1Extra DQM client module - not available
61 
62 # L1 rates DQM client module
63 # L1 synchronization DQM client module
64 # L1 occupancy DQM client module
67 
68 # L1 event info DQM client
70 
71 #
72 # other, non pure-L1 stuff
73 #
74 
75 # scaler modules (SM and SCAL) - it uses DQM.TrigXMonitorClient
77 l1tsClient.dqmFolder = cms.untracked.string("L1T/L1Scalers_SM")
78 
79 
80 
81 #
82 # define sequences
83 #
84 
85 # L1T monitor client sequence (system clients and quality tests)
86 l1TriggerClients = cms.Sequence(
87  l1tGctClient +
88  l1tDttfClient +
89  l1tCsctfClient +
90  l1tRpctfClient +
91  l1tGmtClient +
92  l1tOccupancyClient +
93  l1tTestsSummary +
94  l1tEventInfoClient
95  )
96 
97 l1tMonitorClient = cms.Sequence(
98  l1TriggerQualityTests +
99  l1TriggerClients
100  )
101 
102 # sequence for L1 Trigger DQM client modules on EndPath
103 # FIXME clarify why needed on EndPath
104 
105 l1tMonitorClientEndPathSeq = cms.Sequence(
106  l1tsClient
107  )
108 
109