ATLAS Offline Software
Loading...
Searching...
No Matches
AsgElectronSelectorToolConfig.py
Go to the documentation of this file.
1# Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
2
3
4from AthenaConfiguration.ComponentFactory import CompFactory
5from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
6
7def AsgElectronSelectorToolCfg(ConfigFlags, name, **kwargs):
8 """Configure the AsgElectronSelectorTool with the quality cuts
9 and allow for (re-)setting of all provided cuts."""
10
11 acc = ComponentAccumulator()
12 AsgElectronSelectorTool = CompFactory.AsgElectronSelectorTool
13 acc.setPrivateTools(AsgElectronSelectorTool(name, **kwargs))
14 return acc
15
Electron selector tool to select signal electrons using the ElectronDNNCalculator retrieve a score ba...
AsgElectronSelectorToolCfg(ConfigFlags, name, **kwargs)