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, NoiseThreshold=2., WriteAllCells=False, CleanOutputCells=False, OutputLevel=None)

Function Documentation

◆ GepCellsHandlerAlgCfg()

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

Definition at line 7 of file GepCellsHandlerAlgConfig.py.

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