ATLAS Offline Software
TauMonitoringConfig.py
Go to the documentation of this file.
1 #
2 # Copyright (C) 2002-2019 CERN for the benefit of the ATLAS collaboration
3 #
4 
5 def TauMonitoringConfig(flags):
6  from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
7  result = ComponentAccumulator()
8 
9  # the following should not run in RAW to ESD, if we're in two-step
10  if flags.DQ.Environment != 'tier0Raw':
11  from .tauMonitorAlgorithm import tauMonitoringConfig
12  result.merge(tauMonitoringConfig(flags))
13 
14  return result
python.JetAnalysisCommon.ComponentAccumulator
ComponentAccumulator
Definition: JetAnalysisCommon.py:302
TauMonitoringConfig.TauMonitoringConfig
def TauMonitoringConfig(flags)
Definition: TauMonitoringConfig.py:5
tauMonitorAlgorithm.tauMonitoringConfig
def tauMonitoringConfig(inputFlags, **kwargs)
Definition: tauMonitorAlgorithm.py:12