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

Functions

 GepCellTowerAlgCfg (flags, name='GepCellTowerAlg', outputCellTowerKey='GEPCellTowers', gepCellMapKey='GepCells', minEt=0., OutputLevel=None)

Function Documentation

◆ GepCellTowerAlgCfg()

GepCellTowerAlgConfig.GepCellTowerAlgCfg ( flags,
name = 'GepCellTowerAlg',
outputCellTowerKey = 'GEPCellTowers',
gepCellMapKey = 'GepCells',
minEt = 0.,
OutputLevel = None )

Definition at line 6 of file GepCellTowerAlgConfig.py.

12 OutputLevel=None):
13
14 cfg = ComponentAccumulator()
15
16 alg = CompFactory.GepCellTowerAlg(name,
17 outputCellTowerKey=outputCellTowerKey,
18 gepCellMapKey=gepCellMapKey,
19 minEt=minEt
20 )
21 if OutputLevel is not None:
22 alg.OutputLevel = OutputLevel
23
24 cfg.addEventAlgo(alg)
25
26 return cfg
27
28