ATLAS Offline Software
Loading...
Searching...
No Matches
TestVectorGeneratorConfig.py
Go to the documentation of this file.
1# Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
2
3def TestVectorGeneratorCfg(flags, **kwargs):
4 kwargs.setdefault("name", "TestVectorGenerator")
5 kwargs.setdefault("bufferSize", 65536)
6
7 from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
8 acc = ComponentAccumulator()
9
10 from AthenaConfiguration.ComponentFactory import CompFactory
11 acc.addEventAlgo(CompFactory.EFTrackingFPGAUtility.TestVectorGenerator(**kwargs))
12
13 return acc
14