ATLAS Offline Software
Loading...
Searching...
No Matches
GlobalCellTowerAlgToolConfig.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='GlobalCellTowerAlgTool',
9 **kwargs):
10
11 cfg = ComponentAccumulator()
12 alg = CompFactory.GlobalSim.GlobalSimulationAlg(name)
13
14 cellTowerAlgTool = CompFactory.GlobalSim.GlobalCellTowerAlgTool(name,**kwargs)
15
16 alg.globalsim_algs = [cellTowerAlgTool]
17 #alg.enableDumps = dump
18
19 cfg.addEventAlgo(alg)
20
21 return cfg
22
GlobalCellTowerAlgToolCfg(flags, name='GlobalCellTowerAlgTool', **kwargs)