Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
GepClusteringAlgConfig.py
Go to the documentation of this file.
1 # Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
2 
3 from AthenaConfiguration.ComponentFactory import CompFactory
4 from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
5 
6 def GepClusteringAlgCfg(flags, name='GepClusteringAlg',
7  TopoClAlg='CaloWFS',
8  gepCellMapKey='GepCells',
9  outputCaloClustersKey='GEPWFSClusters',
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 
python.JetAnalysisCommon.ComponentAccumulator
ComponentAccumulator
Definition: JetAnalysisCommon.py:302
GepClusteringAlgConfig.GepClusteringAlgCfg
def GepClusteringAlgCfg(flags, name='GepClusteringAlg', TopoClAlg='CaloWFS', gepCellMapKey='GepCells', outputCaloClustersKey='GEPWFSClusters', OutputLevel=None)
Definition: GepClusteringAlgConfig.py:6