From 7d109916b14af5302c7323dd0792789c6a88dedf Mon Sep 17 00:00:00 2001 From: Harald Fox <harald.fox@cern.ch> Date: Thu, 10 Oct 2019 22:13:50 +0200 Subject: [PATCH] - fixed top TauMonitoringConfig: removed DQTools import --- .../tauMonitoring/python/TauMonitoringConfig.py | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/Reconstruction/tauMonitoring/python/TauMonitoringConfig.py b/Reconstruction/tauMonitoring/python/TauMonitoringConfig.py index 1986fed89a8..a2cb5d279c7 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 -- GitLab