ATLAS Offline Software
Loading...
Searching...
No Matches
TestVectorGeneratorConfig Namespace Reference

Functions

 TestVectorGeneratorCfg (flags, **kwargs)

Function Documentation

◆ TestVectorGeneratorCfg()

TestVectorGeneratorConfig.TestVectorGeneratorCfg ( flags,
** kwargs )

Definition at line 3 of file TestVectorGeneratorConfig.py.

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