Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
import FWCore.ParameterSet.Config as cms

# L1 Trigger client DQM sequence
#
# used by DQM GUI: DQM/Integration/python/test/l1t_dqm_sourceclient-*_cfg.py
#
# standard RawToDigi sequence must be run before the L1T module, labels
# from the standard sequence are used as default for the L1 DQM modules
# any configuration change in the unpacking must be done in l1t_dqm_sourceclient-*_cfg.py
#
# see CVS for previous authors
#
# V.M. Ghete 2011-05-26 revised version of L1 Trigger client DQM
#

# DQM quality tests
from DQM.L1TMonitorClient.L1TriggerQualityTests_cff import *

#
# DQM client modules
#

# Bx Timing DQM client module- not available

# LTC DQM client module- not available

# ECAL TPG client DQM module
# not run in L1T - do we need it? FIXME

# HCAL TPG DQM module
# not run in L1T - do we need it? FIXME

# RCT DQM client module - not available
#from DQM.L1TMonitorClient.L1TRCTClient_cfi import *

# GCT DQM client module
from DQM.L1TMonitorClient.L1TGCTClient_cfi import *
from DQM.L1TMonitorClient.L1TStage1Layer2Client_cfi import *

# DTTPG DQM module
# not run in L1T - do we need it? FIXME

# DTTF DQM client module
from DQM.L1TMonitorClient.L1TDTTFClient_cfi import *

# CSCTF DQM client module
from DQM.L1TMonitorClient.L1TCSCTFClient_cfi import *

# RPC DQM client module - non-standard name of the module
from DQM.L1TMonitorClient.L1TRPCTFClient_cfi import *

# GMT DQM module
from DQM.L1TMonitorClient.L1TGMTClient_cfi import *

# GT DQM client module - not available
#from DQM.L1TMonitorClient.L1TGTClient_cfi import *

# L1Extra DQM client module - not available

# L1 rates DQM client module
# L1 synchronization DQM client module
# L1 occupancy DQM client module
from DQM.L1TMonitorClient.L1TOccupancyClient_cff import *
from DQM.L1TMonitorClient.L1TTestsSummary_cff import *

# L1 event info DQM client
from DQM.L1TMonitorClient.L1TEventInfoClient_cfi import *

#
# other, non pure-L1 stuff
#

# scaler modules (SM and SCAL) - it uses DQM.TrigXMonitorClient
from DQM.TrigXMonitorClient.L1TScalersClient_cfi import *
l1tsClient.dqmFolder = cms.untracked.string("L1T/L1Scalers_SM")



#
# define sequences
#

# L1T monitor client sequence (system clients and quality tests)
l1TriggerClients = cms.Sequence(
    l1tGctClient +
    l1tDttfClient +
    l1tCsctfClient +
    l1tRpctfClient +
    l1tGmtClient +
    l1tOccupancyClient +
    l1tTestsSummary +
    l1tEventInfoClient
)

l1TriggerStage1Clients = cms.Sequence(
    l1tStage1Layer2Client +
    l1tDttfClient +
    l1tCsctfClient +
    l1tRpctfClient +
    l1tGmtClient +
    l1tOccupancyClient +
    l1tTestsSummary +
    l1tEventInfoClient
)


l1tMonitorClient = cms.Sequence(
    l1TriggerQualityTests +
    l1TriggerClients
)

l1tMonitorStage1Client = cms.Sequence(
    l1TriggerQualityTests +
    l1TriggerStage1Clients
)


# sequence for L1 Trigger DQM client modules on EndPath
# FIXME clarify why needed on EndPath

l1tMonitorClientEndPathSeq = cms.Sequence(
    l1tsClient
)