15 from __future__
import print_function
17 __author__ =
"Marco Clemencic"
24 SUCCESS = GaudiPython.SUCCESS
32 """Simple algorithm that prints a message during execute"""
36 GaudiAlgo.__init__(self, name)
39 """The main method 'execute', it is invoked for each event"""
40 print(
"=== %s Execute ===" % self.name())
50 """Configuration of the job"""
55 gaudi.JobOptionsType =
"NONE"
57 gaudi.HistogramPersistency =
"NONE"
63 alg =
TestAlg(
"bug_38882_test_alg")
64 gaudi.setAlgorithms([alg])
72 if "__main__" == __name__: