ATLAS Offline Software
Loading...
Searching...
No Matches
AlignmentTester.py
Go to the documentation of this file.
1# Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
2
3def ALineInjectorAlgCfg(flags, name="AlineInjectorAlg", **kwargs):
4 from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
5 from AthenaConfiguration.ComponentFactory import CompFactory
6 result = ComponentAccumulator()
7 the_alg = CompFactory.ALineInjectTestAlg(name, **kwargs)
8 result.addCondAlgo(the_alg, primary = True)
9 return result
ALineInjectorAlgCfg(flags, name="AlineInjectorAlg", **kwargs)