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

Functions

 GepClusteringAlgCfg (flags, name='GepClusteringAlg', TopoClAlg='GEPBasic', gepCellMapKey='GEPCells', outputCaloClustersKey='GEPBasicClusters', OutputLevel=None)

Function Documentation

◆ GepClusteringAlgCfg()

GepClusteringAlgConfig.GepClusteringAlgCfg ( flags,
name = 'GepClusteringAlg',
TopoClAlg = 'GEPBasic',
gepCellMapKey = 'GEPCells',
outputCaloClustersKey = 'GEPBasicClusters',
OutputLevel = None )

Definition at line 6 of file GepClusteringAlgConfig.py.

10 OutputLevel=None):
11
12 cfg = ComponentAccumulator()
13
14 alg = CompFactory.GepClusteringAlg(
15 name,
16 TopoClAlg=TopoClAlg,
17 gepCellMapKey=gepCellMapKey,
18 outputCaloClustersKey=outputCaloClustersKey
19 )
20
21 if OutputLevel is not None:
22 alg.OutputLevel = OutputLevel
23
24 cfg.addEventAlgo(alg)
25 return cfg
26
27