ATLAS Offline Software
Loading...
Searching...
No Matches
TracccTritonClientConfigFlags.py
Go to the documentation of this file.
2# Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
3#
4from AthenaConfiguration.AthConfigFlags import AthConfigFlags
5
6
8 """Flags configuring the Traccc Triton client: the model name and the
9 Triton server connection (url/port)."""
10 icf = AthConfigFlags()
11 icf.addFlag("Tracking.Traccc.Triton.url", "localhost")
12 icf.addFlag("Tracking.Traccc.Triton.model", "traccc-gpu")
13 icf.addFlag("Tracking.Traccc.Triton.port", 8001)
14 return icf
15
16
18 """preInclude that registers the Traccc Triton flags on the job's flags.
19
20 Kept in this package (rather than centrally in TrkConfigFlags) so the
21 package is self-contained. preIncludes run before preExec, so
22 flags.Tracking.Traccc.Triton.* can be overridden on the command line."""