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