ATLAS Offline Software
Loading...
Searching...
No Matches
InDetHardScatterSelectionToolConfig.py
Go to the documentation of this file.
1# Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
2# Configuration of InDetHardScatterSelectionTool package
3
4from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
5from AthenaConfiguration.ComponentFactory import CompFactory
6
7def InDetHardScatterSelectionToolCfg(flags, name="InDetHardScatterSelectionTool", **kwargs):
8 """Configure the InDet hard scatter selection tool"""
9 acc = ComponentAccumulator()
10 acc.setPrivateTools(
11 CompFactory.InDet.InDetHardScatterSelectionTool(name, **kwargs))
12 return acc
InDetHardScatterSelectionToolCfg(flags, name="InDetHardScatterSelectionTool", **kwargs)