ATLAS Offline Software
Loading...
Searching...
No Matches
G4StepLimitationConfig.py
Go to the documentation of this file.
1# Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
2
3from AthenaConfiguration.ComponentFactory import CompFactory
4from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
5
6def G4StepLimitationToolCfg(flags, name="G4StepLimitationTool", **kwargs):
7 result = ComponentAccumulator()
8 #Add any future configuration here
9 result.setPrivateTools(CompFactory.G4StepLimitationTool(name, **kwargs))
10 return result
G4StepLimitationToolCfg(flags, name="G4StepLimitationTool", **kwargs)