ATLAS Offline Software
Loading...
Searching...
No Matches
TrkValToolsConfig.py
Go to the documentation of this file.
1# Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
2
3# Configuration of TrkValTool package
4
5from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
6from AthenaConfiguration.ComponentFactory import CompFactory
7
9 name="TrackObserverTool",
10 **kwargs):
11 acc = ComponentAccumulator()
12 acc.setPrivateTools(CompFactory.Trk.TrkObserverTool(name, **kwargs))
13 return acc
14
16 name="WriterTrackObserverTool",
17 **kwargs):
18 kwargs.setdefault("ObsTrackCollection", "ObservedTracksCollection")
19 kwargs.setdefault("ObsTrackCollectionMap", "ObservedTracksCollectionMap")
20 return TrkObserverToolCfg(flags, name, **kwargs)
WriterTrkObserverToolCfg(flags, name="WriterTrackObserverTool", **kwargs)
TrkObserverToolCfg(flags, name="TrackObserverTool", **kwargs)