ATLAS Offline Software
Loading...
Searching...
No Matches
TrackHitAssignementAlgCfg.py
Go to the documentation of this file.
1# Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
2
3from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
4from AthenaConfiguration.ComponentFactory import CompFactory
5
6
7def TrackHitAssignementAlgCfg(flags, name="TrackHitAssignementAlg", **kwargs):
8 acc = ComponentAccumulator()
9 theAlg = CompFactory.TrackHitAssignementAlg(name,**kwargs)
10 acc.addEventAlgo(theAlg,primary=True)
11 return acc
12
13