Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:07:58

0001 import FWCore.ParameterSet.Config as cms
0002 
0003 # L1 Trigger client DQM sequence
0004 #
0005 # used by DQM GUI: DQM/Integration/python/test/l1t_dqm_sourceclient-*_cfg.py
0006 #
0007 # standard RawToDigi sequence must be run before the L1T module, labels 
0008 # from the standard sequence are used as default for the L1 DQM modules
0009 # any configuration change in the unpacking must be done in l1t_dqm_sourceclient-*_cfg.py
0010 #
0011 # see CVS for previous authors
0012 #
0013 # V.M. Ghete 2011-05-26 revised version of L1 Trigger client DQM
0014 #                       
0015 
0016 # DQM quality tests 
0017 from DQM.L1TMonitorClient.L1TStage2QualityTests_cff import *
0018 
0019 
0020 # L1T Objects Ration Timing Plots
0021 from DQM.L1TMonitorClient.L1TObjectsTimingClient_cff import *
0022 
0023 # L1 event info DQM client 
0024 from DQM.L1TMonitorClient.L1TStage2EventInfoClient_cfi import *
0025 
0026 # BMTF client
0027 from DQM.L1TMonitorClient.L1TStage2BMTFClient_cff import *
0028 
0029 # uGMT client
0030 from DQM.L1TMonitorClient.L1TStage2uGMTClient_cff import *
0031 
0032 # uGT client
0033 from DQM.L1TMonitorClient.L1TStage2uGTClient_cff import *
0034 
0035 # L1 event info DQM client EMTF 
0036 from DQM.L1TMonitorClient.L1TStage2EMTFEventInfoClient_cfi import *
0037 
0038 # define sequences 
0039 #
0040 
0041 # L1T monitor client sequence (system clients and quality tests)
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                         )