ATLAS Offline Software
InDetAdaptiveMultiSecVtxFinderToolConfig.py
Go to the documentation of this file.
1 # Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
2 # Define method to configure AMVF
3 # attempted by N Ribaric (@LancasterUNI) neza.ribaric@cern.ch
4 
5 
6 from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
7 from AthenaConfiguration.ComponentFactory import CompFactory
8 
9 
11  flags, name="InDetAdaptiveMultiSecVtxFinderTool", **kwargs):
12  acc = ComponentAccumulator()
13 
14  from TrkConfig.TrkVertexFittersConfig import AdaptiveMultiSecVertexFitterCfg
15  kwargs.setdefault("VertexFitterTool", acc.popToolsAndMerge(
17 
18  from InDetConfig.InDetTrackSelectionToolConfig import (
19  InDetTrackSelectionTool_AMSVF_Cfg)
20  kwargs.setdefault("BaseTrackSelector",acc.popToolsAndMerge(
22 
23  from InDetConfig.InDetSecVtxTrackSelectionToolConfig import (
24  InDetSecVtxTrackSelectionToolCfg)
25  kwargs.setdefault("SecVtxTrackSelector",acc.popToolsAndMerge(
27 
28  from TrkConfig.TrkVertexSeedFinderToolsConfig import (
29  IndexedCrossDistancesSeedFinderCfg)
30  kwargs.setdefault("SeedFinder",acc.popToolsAndMerge(
32 
33  from TrkConfig.TrkVertexFitterUtilsConfig import (
34  AtlasImpactPoint3dEstimatorCfg)
35  kwargs.setdefault("ImpactPoint3dEstimator", acc.popToolsAndMerge(
37 
38  acc.setPrivateTools(
39  CompFactory.InDet.InDetAdaptiveMultiSecVtxFinderTool(name, **kwargs))
40  return acc
python.TrkVertexFittersConfig.AdaptiveMultiSecVertexFitterCfg
def AdaptiveMultiSecVertexFitterCfg(flags, name="AdaptiveMultiSecVertexFitter", **kwargs)
Definition: TrkVertexFittersConfig.py:39
python.JetAnalysisCommon.ComponentAccumulator
ComponentAccumulator
Definition: JetAnalysisCommon.py:302
python.InDetTrackSelectionToolConfig.InDetTrackSelectionTool_AMSVF_Cfg
def InDetTrackSelectionTool_AMSVF_Cfg(flags, name='InDetTrackSelectionTool_AMSVF', **kwargs)
Configs for Sec Vtx #####.
Definition: InDetTrackSelectionToolConfig.py:181
python.TrkVertexSeedFinderToolsConfig.IndexedCrossDistancesSeedFinderCfg
def IndexedCrossDistancesSeedFinderCfg(flags, name='IndexedCrossDistancesSeedFinder', **kwargs)
Definition: TrkVertexSeedFinderToolsConfig.py:50
python.TrkVertexFitterUtilsConfig.AtlasImpactPoint3dEstimatorCfg
def AtlasImpactPoint3dEstimatorCfg(flags, name='AtlasImpactPoint3dEstimator', **kwargs)
Definition: TrkVertexFitterUtilsConfig.py:92
python.InDetAdaptiveMultiSecVtxFinderToolConfig.InDetAdaptiveMultiSecVtxFinderToolCfg
def InDetAdaptiveMultiSecVtxFinderToolCfg(flags, name="InDetAdaptiveMultiSecVtxFinderTool", **kwargs)
Definition: InDetAdaptiveMultiSecVtxFinderToolConfig.py:10
python.InDetSecVtxTrackSelectionToolConfig.InDetSecVtxTrackSelectionToolCfg
def InDetSecVtxTrackSelectionToolCfg(flags, name='InDetSecVtxTrackSelectionTool', **kwargs)
Configs for SecVtx #####.
Definition: InDetSecVtxTrackSelectionToolConfig.py:11