ATLAS Offline Software
AsgElectronSelectorToolConfig.py
Go to the documentation of this file.
1 # Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
2 
3 
4 from AthenaConfiguration.ComponentFactory import CompFactory
5 from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
6 
7 def 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 
AsgElectronSelectorTool
Electron selector tool to select signal electrons using the ElectronDNNCalculator retrieve a score ba...
Definition: AsgElectronSelectorTool.h:27
python.JetAnalysisCommon.ComponentAccumulator
ComponentAccumulator
Definition: JetAnalysisCommon.py:302
python.AsgElectronSelectorToolConfig.AsgElectronSelectorToolCfg
def AsgElectronSelectorToolCfg(ConfigFlags, name, **kwargs)
Definition: AsgElectronSelectorToolConfig.py:7