ATLAS Offline Software
Loading...
Searching...
No Matches
AsgForwardElectronLikelihoodToolConfig.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
6def AsgForwardElectronLikelihoodToolCfg(flags, name, **kwargs):
7 """Configure the electron charge ID selector tool"""
8 acc = ComponentAccumulator()
9 kwargs.setdefault("usePVContainer", flags.Tracking.doVertexFinding)
10 AsgForwardElectronLikelihoodTool = CompFactory.AsgForwardElectronLikelihoodTool
11 acc.setPrivateTools(AsgForwardElectronLikelihoodTool(name, **kwargs))
12 return acc
13
Electron selector tool to select objects in Asgena using an underlying pure ROOT tool.