Classes | |
class | TestAlg |
Functions | |
def | configure |
Variables | |
string | __author__ = 'Marco Clemencic' |
SUCCESS = GaudiPython.SUCCESS | |
tuple | gaudi = GaudiPython.AppMgr() |
def bug_38882::configure | ( | gaudi = None |
) |
Configuration of the job
Definition at line 33 of file bug_38882.py.
00033 : 00034 """ Configuration of the job """ 00035 00036 if not gaudi : gaudi = GaudiPython.AppMgr() 00037 00038 gaudi.JobOptionsType = 'NONE' 00039 gaudi.EvtSel = 'NONE' 00040 gaudi.HistogramPersistency = 'NONE' 00041 00042 gaudi.config() 00043 00044 gaudi.initialize() 00045 00046 alg = TestAlg('bug_38882_test_alg') 00047 gaudi.setAlgorithms( [alg] ) 00048 00049 return SUCCESS 00050 00051 00052 # ============================================================================= 00053 # The actual job excution 00054 # ============================================================================= if '__main__' == __name__ :
string bug_38882::__author__ = 'Marco Clemencic' [static] |
Definition at line 7 of file bug_38882.py.
bug_38882::SUCCESS = GaudiPython.SUCCESS [static] |
Definition at line 14 of file bug_38882.py.
tuple bug_38882::gaudi = GaudiPython.AppMgr() [static] |
Definition at line 56 of file bug_38882.py.