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

Functions

 GepCellsHandlerAlgCfg (flags, name='GepCellsHandlerAlg', outputGepCellsKey='GepCells', GEPEnergyEncodingScheme="6-40-4", HardwareStyleEnergyEncoding=True, TruncationOfOverflowingFEBs=True, WriteAllCells=False, OutputLevel=None)

Function Documentation

◆ GepCellsHandlerAlgCfg()

GepCellsHandlerAlgConfig.GepCellsHandlerAlgCfg ( flags,
name = 'GepCellsHandlerAlg',
outputGepCellsKey = 'GepCells',
GEPEnergyEncodingScheme = "6-40-4",
HardwareStyleEnergyEncoding = True,
TruncationOfOverflowingFEBs = True,
WriteAllCells = False,
OutputLevel = None )

Definition at line 7 of file GepCellsHandlerAlgConfig.py.

13 OutputLevel=None):
14
15 cfg = ComponentAccumulator()
16
17 alg = CompFactory.GepCellsHandlerAlg(
18 name,
19 outputGepCellsKey=outputGepCellsKey,
20 GEPEnergyEncodingScheme = GEPEnergyEncodingScheme,
21 HardwareStyleEnergyEncoding = HardwareStyleEnergyEncoding,
22 TruncationOfOverflowingFEBs = TruncationOfOverflowingFEBs,
23 WriteAllCells = WriteAllCells
24 )
25
26 if OutputLevel is not None:
27 alg.OutputLevel = OutputLevel
28
29 cfg.addEventAlgo(alg)
30 return cfg
31