ATLAS Offline Software
Loading...
Searching...
No Matches
LArCellMuxAlgConfig.py
Go to the documentation of this file.
1# Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
2
3from AthenaConfiguration.ComponentFactory import CompFactory
4from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
5
7 flags,
8 name='LArCellMuxAlg',
9 **kwargs):
10
11 cfg = ComponentAccumulator()
12
13 alg = CompFactory.GlobalSim.LArCellMuxAlg(name,**kwargs)
14 cfg.addEventAlgo(alg)
15
16 return cfg
17
LArCellMuxAlgCfg(flags, name='LArCellMuxAlg', **kwargs)