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

Functions

 LArCellMuxAlgCfg (flags, name='LArCellMuxAlg', gblLArCellsKey="GlobalLArCells", writeMuxInputBitstreamToFile=True, writeMuxOutputBitstreamToFile=True, OutputLevel=None)

Function Documentation

◆ LArCellMuxAlgCfg()

LArCellMuxAlgCfg.LArCellMuxAlgCfg ( flags,
name = 'LArCellMuxAlg',
gblLArCellsKey = "GlobalLArCells",
writeMuxInputBitstreamToFile = True,
writeMuxOutputBitstreamToFile = True,
OutputLevel = None )

Definition at line 6 of file LArCellMuxAlgCfg.py.

12 OutputLevel=None):
13
14 cfg = ComponentAccumulator()
15
16 alg = CompFactory.GlobalSim.LArCellMuxAlg(name)
17
18 if OutputLevel is not None:
19 alg.OutputLevel = OutputLevel
20
21 alg.GlobalLArCellsKey = gblLArCellsKey
22 alg.WriteMuxInputBitstreamToFile = writeMuxInputBitstreamToFile
23 alg.WriteMuxOutputBitstreamToFile = writeMuxOutputBitstreamToFile
24 cfg.addEventAlgo(alg)
25
26 return cfg
27