15 from __future__
import print_function
16 __author__ =
'Marco Clemencic'
23 SUCCESS = GaudiPython.SUCCESS
31 """ Simple algorithm that prints a message during execute """
35 GaudiAlgo.__init__(self, name)
38 """ The main method 'execute', it is invoked for each event """
39 print(
"=== %s Execute ===" % self.name())
49 """ Configuration of the job """
54 gaudi.JobOptionsType =
'NONE'
56 gaudi.HistogramPersistency =
'NONE'
62 alg =
TestAlg(
'bug_38882_test_alg')
63 gaudi.setAlgorithms([alg])
71 if '__main__' == __name__: