Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
GepCellsHandlerAlgConfig.py
Go to the documentation of this file.
1 # Copyright (C) 2002-2025 CERN for the benefit of the ATLAS collaboration
2 
3 from AthenaConfiguration.ComponentFactory import CompFactory
4 from AthenaConfiguration.ComponentAccumulator import ComponentAccumulator
5 
6 
7 def GepCellsHandlerAlgCfg(flags, name='GepCellsHandlerAlg',
8  outputGepCellsKey='GepCells',
9  GEPEnergyEncodingScheme = "6-10-4",
10  HardwareStyleEnergyEncoding = True,
11  TruncationOfOverflowingFEBs = True,
12  OutputLevel=None):
13 
14  cfg = ComponentAccumulator()
15 
16  alg = CompFactory.GepCellsHandlerAlg(
17  name,
18  outputGepCellsKey=outputGepCellsKey,
19  GEPEnergyEncodingScheme = GEPEnergyEncodingScheme,
20  HardwareStyleEnergyEncoding = HardwareStyleEnergyEncoding,
21  TruncationOfOverflowingFEBs = TruncationOfOverflowingFEBs
22  )
23 
24  if OutputLevel is not None:
25  alg.OutputLevel = OutputLevel
26 
27  cfg.addEventAlgo(alg)
28  return cfg
29 
python.JetAnalysisCommon.ComponentAccumulator
ComponentAccumulator
Definition: JetAnalysisCommon.py:302
GepCellsHandlerAlgConfig.GepCellsHandlerAlgCfg
def GepCellsHandlerAlgCfg(flags, name='GepCellsHandlerAlg', outputGepCellsKey='GepCells', GEPEnergyEncodingScheme="6-10-4", HardwareStyleEnergyEncoding=True, TruncationOfOverflowingFEBs=True, OutputLevel=None)
Definition: GepCellsHandlerAlgConfig.py:7