ATLAS Offline Software
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
3 from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
4 from AthenaConfiguration.ComponentFactory import CompFactory
5 
6 
7 
10 
11 def 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
python.JetAnalysisCommon.ComponentAccumulator
ComponentAccumulator
Definition: JetAnalysisCommon.py:302
python.InDetSecVtxTrackSelectionToolConfig.InDetSecVtxTrackSelectionToolCfg
def InDetSecVtxTrackSelectionToolCfg(flags, name='InDetSecVtxTrackSelectionTool', **kwargs)
Configs for SecVtx #####.
Definition: InDetSecVtxTrackSelectionToolConfig.py:11