ATLAS Offline Software
Loading...
Searching...
No Matches
HGTD_VertexTimeConfig.py
Go to the documentation of this file.
1# Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
2
3from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
4from AthenaConfiguration.ComponentFactory import CompFactory
5
6def VertexTimeAlgCfg(flags, name='VertexTimeAlg', **kwargs):
7 acc = ComponentAccumulator()
8
9 acc.addEventAlgo(CompFactory.HGTD.VertexTimeAlg(name, **kwargs))
10 return acc
VertexTimeAlgCfg(flags, name='VertexTimeAlg', **kwargs)