diff --git a/Reconstruction/tauMonitoring/python/TauMonitoringConfig.py b/Reconstruction/tauMonitoring/python/TauMonitoringConfig.py index 1986fed89a88556a9a5c00d8770e9f3c45763248..a2cb5d279c747b56356208d740ffa655c25c782b 100644 --- a/Reconstruction/tauMonitoring/python/TauMonitoringConfig.py +++ b/Reconstruction/tauMonitoring/python/TauMonitoringConfig.py @@ -4,13 +4,9 @@ def TauMonitoringConfig(flags): from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator - from .DQTDataFlowMonAlg import DQTDataFlowMonAlgConfig - from .DQTDetSynchMonAlg import DQTDetSynchMonAlgConfig - result = ComponentAccumulator() - result.merge(DQTDataFlowMonAlgConfig(flags)) - # really should only configure when input is RAW - result.merge(DQTDetSynchMonAlgConfig(flags)) + from .tauMonitorAlgorithm import tauMonitoringConfig + result.merge(tauMonitoringConfig(flags)) return result