Skip to content
Snippets Groups Projects
Commit 110d92b2 authored by Peter Onyisi's avatar Peter Onyisi Committed by Vakhtang Tsulaia
Browse files

Add CSC and MM new-style monitoring

parent 6c725079
No related branches found
No related tags found
No related merge requests found
......@@ -16,6 +16,12 @@ def MuonDQAMonitoringConfig(flags):
result.merge(MdtMonitoringConfig(flags))
result.merge(RpcMonitoringConfig(flags))
result.merge(TgcRawDataMonitoringConfig(flags))
if flags.Detector.GeometryCSC:
from CscRawDataMonitoring.CscMonitorAlgorithm import CscMonitoringConfig
result.merge(CscMonitoringConfig(flags))
if flags.Detector.GeometryMM:
from MMRawDataMonitoring.MMMonitorAlgorithm import MMMonitoringConfig
result.merge(MMMonitoringConfig(flags))
if flags.DQ.Steering.Muon.doTrackMon:
# do not run in RAW->ESD
......
......@@ -4,7 +4,7 @@
#
from AthenaConfiguration.ComponentFactory import CompFactory
from MMMonUtils import getMMLabel,getMMLabelY
from .MMMonUtils import getMMLabel,getMMLabelY
def MMMonitoringConfig(inputFlags):
'''Function to configures some algorithms in the monitoring system.'''
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment