ATLAS Offline Software
Loading...
Searching...
No Matches
InDetSecVtxTrackSelectionToolConfig.py
Go to the documentation of this file.
1# Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
2# Configuration of InDetSecVtxTrackSelectionTool package
3from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
4from AthenaConfiguration.ComponentFactory import CompFactory
5
6
7
10
11def InDetSecVtxTrackSelectionToolCfg(flags, name='InDetSecVtxTrackSelectionTool', **kwargs):
12
13 acc = ComponentAccumulator()
14
15 kwargs.setdefault("minNPixelHitsAtZeroTRT", 2)
16 kwargs.setdefault("minTotalHits", 0)
17 kwargs.setdefault("minD0", 0.1)
18
19 acc.setPrivateTools(CompFactory.InDet.InDetSecVtxTrackSelectionTool(name, **kwargs))
20 return acc
InDetSecVtxTrackSelectionToolCfg(flags, name='InDetSecVtxTrackSelectionTool', **kwargs)
Configs for SecVtx #####.