ATLAS Offline Software
Loading...
Searching...
No Matches
InDetSecVertexValidationConfig.py
Go to the documentation of this file.
1# Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
2
3from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
4from AthenaConfiguration.ComponentFactory import CompFactory
5
6def PhysValSecVtxCfg(flags,
7 name: str = 'PhysValSecVtx',
8 **kwargs) -> ComponentAccumulator:
9 acc = ComponentAccumulator()
10 acc.setPrivateTools(CompFactory.PhysValSecVtx(name=name, **kwargs))
11 return acc
ComponentAccumulator PhysValSecVtxCfg(flags, str name='PhysValSecVtx', **kwargs)