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

Functions

 LArCellPreparationAlgCfg (flags, name='LArCellPreparationAlg', NumberOfEnergyBits=6, ValueLeastSignificantBit=40, ValueGainFactor=4, gblLArCellsKey="GlobalLArCells", OutputLevel=None)

Function Documentation

◆ LArCellPreparationAlgCfg()

LArCellPreparationAlgCfg.LArCellPreparationAlgCfg ( flags,
name = 'LArCellPreparationAlg',
NumberOfEnergyBits = 6,
ValueLeastSignificantBit = 40,
ValueGainFactor = 4,
gblLArCellsKey = "GlobalLArCells",
OutputLevel = None )

Definition at line 6 of file LArCellPreparationAlgCfg.py.

13 OutputLevel=None):
14
15 cfg = ComponentAccumulator()
16
17 alg = CompFactory.GlobalSim.LArCellPreparationAlg(name)
18
19 if OutputLevel is not None:
20 alg.OutputLevel = OutputLevel
21
22 alg.numberOfEnergyBits = NumberOfEnergyBits
23 alg.valueLeastSignificantBit = ValueLeastSignificantBit
24 alg.valueGainFactor = ValueGainFactor
25 alg.GlobalLArCellsKey = gblLArCellsKey
26 cfg.addEventAlgo(alg)
27
28 return cfg
29