ATLAS Offline Software
Loading...
Searching...
No Matches
ActsGPUEventCnvConfig.py
Go to the documentation of this file.
1# Copyright (C) 2002-2026 CERN for the benefit of the ATLAS collaboration
2
3from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
4from AthenaConfiguration.ComponentFactory import CompFactory
5
6# ============================================================
7# Algorithm configurations
8# ============================================================
9
11 name="RDOtoTracccCellConverterAlg",
12 **kwargs) -> ComponentAccumulator:
13 acc = ComponentAccumulator()
14 kwargs.setdefault("PixelRDO", "ITkPixelRDOs")
15 kwargs.setdefault("StripRDO", "ITkStripRDOs")
16 kwargs.setdefault("TracccCells", "TracccCells")
17 kwargs.setdefault("HostConditionsObjectName", "TracccHostCondConfig")
18 acc.addEventAlgo(
19 CompFactory.ActsTrk.RDOtoTracccCellConverterAlg(name, **kwargs))
20 return acc
21
23 name="TracccMeasurementConverterAlg",
24 **kwargs) -> ComponentAccumulator:
25 acc = ComponentAccumulator()
26 kwargs.setdefault("InputMeasurements", "TracccMeasurements")
27 kwargs.setdefault("OutputPixelClusters", "ITkTracccPixelClusters")
28 kwargs.setdefault("OutputStripClusters", "ITkTracccStripClusters")
29 acc.addEventAlgo(
30 CompFactory.ActsTrk.TracccMeasurementConverterAlg(name, **kwargs))
31 return acc
ComponentAccumulator RDOtoTracccCellConverterAlgCfg(flags, name="RDOtoTracccCellConverterAlg", **kwargs)
ComponentAccumulator TracccMeasurementConverterAlgCfg(flags, name="TracccMeasurementConverterAlg", **kwargs)