ATLAS Offline Software
Loading...
Searching...
No Matches
EFTrackingDataStreamLoaderAlgorithmConfig.py
Go to the documentation of this file.
1# Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
2
3# Todo: Move this helper algorithm to pyAthena
5 from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
6 acc = ComponentAccumulator()
7
8 kwargs.setdefault("name", "EFTrackingDataStreamLoaderAlgorithm")
9 kwargs.setdefault("bufferSize", 8192)
10
11 from AthenaConfiguration.ComponentFactory import CompFactory
12 acc.addEventAlgo(CompFactory.EFTrackingDataStreamLoaderAlgorithm(**kwargs))
13
14 return acc
15