diff --git a/Reconstruction/tauMonitoring/python/TauMonitoringConfig.py b/Reconstruction/tauMonitoring/python/TauMonitoringConfig.py new file mode 100644 index 0000000000000000000000000000000000000000..1986fed89a88556a9a5c00d8770e9f3c45763248 --- /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