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, CleanOutputCells=False, OutputLevel=None)

Function Documentation

◆ GepCellsHandlerAlgCfg()

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

Definition at line 7 of file GepCellsHandlerAlgConfig.py.

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