ATLAS Offline Software
Loading...
Searching...
No Matches
OverlayUtilitiesConfig.py
Go to the documentation of this file.
1# Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
2from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
3from AthenaConfiguration.ComponentFactory import CompFactory
4
5
6def OverlayVertexSkimmingAlgCfg(flags, name="OverlayVertexSkimmingAlg", **kwargs):
7 acc = ComponentAccumulator()
8 kwargs.setdefault("PrimaryVertexContainerName", f"{flags.Overlay.BkgPrefix}PrimaryVertices")
9 acc.addEventAlgo(CompFactory.OverlayVertexSkimmingAlg(name, **kwargs))
10 return acc
OverlayVertexSkimmingAlgCfg(flags, name="OverlayVertexSkimmingAlg", **kwargs)