From f7bf6a5ee75f822a43a107b00c1e9a43a2c39e38 Mon Sep 17 00:00:00 2001 From: Harald Fox <harald.fox@cern.ch> Date: Thu, 10 Oct 2019 15:29:26 +0200 Subject: [PATCH] - added TauMonitoringConfig.py --- .../tauMonitoring/python/TauMonitoringConfig.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Reconstruction/tauMonitoring/python/TauMonitoringConfig.py diff --git a/Reconstruction/tauMonitoring/python/TauMonitoringConfig.py b/Reconstruction/tauMonitoring/python/TauMonitoringConfig.py new file mode 100644 index 00000000000..1986fed89a8 --- /dev/null +++ b/Reconstruction/tauMonitoring/python/TauMonitoringConfig.py @@ -0,0 +1,16 @@ +# +# Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration +# + +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)) + + return result -- GitLab