ATLAS Offline Software
Loading...
Searching...
No Matches
GepEtaSoftKillerAlgConfig.py
Go to the documentation of this file.
1# Copyright (C) 2002-2026 CERN for the benefit of the ATLAS collaboration
2
3from AthenaConfiguration.ComponentFactory import CompFactory
4from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
5
7 name='GepEtaSoftKillerAlg',
8 inputClustersKey='',
9 outputClustersKey='',
10 OutputLevel=None):
11
12 cfg = ComponentAccumulator()
13
14 alg = CompFactory.GepEtaSoftKillerAlg(name,
15 inputClustersKey=inputClustersKey,
16 outputClustersKey=outputClustersKey)
17
18 if OutputLevel is not None:
19 alg.OutputLevel = OutputLevel
20
21 cfg.addEventAlgo(alg)
22 return cfg
GepEtaSoftKillerAlgCfg(flags, name='GepEtaSoftKillerAlg', inputClustersKey='', outputClustersKey='', OutputLevel=None)