ATLAS Offline Software
Loading...
Searching...
No Matches
ActsTrackParamsEstimationConfig.py
Go to the documentation of this file.
1# Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
2
3from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
4from AthenaConfiguration.ComponentFactory import CompFactory
5
7 name: str = "ActsTrackParamsEstimationTool",
8 **kwargs) -> ComponentAccumulator:
9 assert isinstance(name, str)
10
11 acc = ComponentAccumulator()
12
13 # eBoundLoc0, eBoundLoc1, eBoundPhi, eBoundTheta, eBoundQOverP, eBoundTime
14 kwargs.setdefault('initialVarInflation', [1., 1., 1., 1., 1., 1.])
15
16 acc.setPrivateTools(CompFactory.ActsTrk.TrackParamsEstimationTool(name=name, **kwargs))
17 return acc
ComponentAccumulator ActsTrackParamsEstimationToolCfg(ConfigFlags, str name="ActsTrackParamsEstimationTool", **kwargs)