ATLAS Offline Software
Loading...
Searching...
No Matches
GepCellTowerAlgConfig.py
Go to the documentation of this file.
1# Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
2
3from AthenaConfiguration.ComponentFactory import CompFactory
4from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
5
7 flags,
8 name='GepCellTowerAlg',
9 outputCellTowerKey='GEPCellTowers',
10 gepCellMapKey='GepCells',
11 OutputLevel=None):
12
13 cfg = ComponentAccumulator()
14
15 alg = CompFactory.GepCellTowerAlg(name,
16 outputCellTowerKey=outputCellTowerKey,
17 gepCellMapKey=gepCellMapKey
18 )
19 if OutputLevel is not None:
20 alg.OutputLevel = OutputLevel
21
22 cfg.addEventAlgo(alg)
23
24 return cfg
25
26
GepCellTowerAlgCfg(flags, name='GepCellTowerAlg', outputCellTowerKey='GEPCellTowers', gepCellMapKey='GepCells', OutputLevel=None)