ATLAS Offline Software
MuonFastDigiTesterConfig.py
Go to the documentation of this file.
1 # Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
2 
3 from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
4 from AthenaConfiguration.ComponentFactory import CompFactory
5 
6 
7 def MDTFastDigiTesterCfg(flags, name = "MDTFastDigiTester", **kwargs):
8  result = ComponentAccumulator()
9  theAlg = CompFactory.MuonValR4.MDTFastDigiTester(name, **kwargs)
10  result.addEventAlgo(theAlg, primary=True)
11  return result
python.JetAnalysisCommon.ComponentAccumulator
ComponentAccumulator
Definition: JetAnalysisCommon.py:302
MuonFastDigiTesterConfig.MDTFastDigiTesterCfg
def MDTFastDigiTesterCfg(flags, name="MDTFastDigiTester", **kwargs)
Definition: MuonFastDigiTesterConfig.py:7