ATLAS Offline Software
G4ProfilingToolsConfig.py
Go to the documentation of this file.
1 # Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
2 
3 from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
4 from AthenaConfiguration.ComponentFactory import CompFactory
5 
6 #Based on G4UserActionsConfig.py
7 
8 
9 def TestActionTimerToolCfg(flags, name='G4UA::TestActionTimerTool', **kwargs):
10  result = ComponentAccumulator()
11  result.setPrivateTools(CompFactory.G4UA.TestActionTimerTool(name,**kwargs))
12  return result
13 
14 def TestActionEHistToolCfg(flags, name='G4UA::TestActionEHistTool', **kwargs):
15  result = ComponentAccumulator()
16  result.setPrivateTools(CompFactory.G4UA.TestActionEHistTool(name,**kwargs))
17  return result
18 
19 def TestActionVPTimerToolCfg(flags, name='G4UA::TestActionVPTimerTool', **kwargs):
20  result = ComponentAccumulator()
21  result.setPrivateTools(CompFactory.G4UA.TestActionVPTimerTool(name,**kwargs))
22  return result
python.JetAnalysisCommon.ComponentAccumulator
ComponentAccumulator
Definition: JetAnalysisCommon.py:302
python.G4ProfilingToolsConfig.TestActionVPTimerToolCfg
def TestActionVPTimerToolCfg(flags, name='G4UA::TestActionVPTimerTool', **kwargs)
Definition: G4ProfilingToolsConfig.py:19
python.G4ProfilingToolsConfig.TestActionEHistToolCfg
def TestActionEHistToolCfg(flags, name='G4UA::TestActionEHistTool', **kwargs)
Definition: G4ProfilingToolsConfig.py:14
python.G4ProfilingToolsConfig.TestActionTimerToolCfg
def TestActionTimerToolCfg(flags, name='G4UA::TestActionTimerTool', **kwargs)
Definition: G4ProfilingToolsConfig.py:9