Public Member Functions | |
| def | __init__ |
| def | __del__ |
| def | initialize |
| def | start |
| def | execute |
| def | stop |
| def | finalize |
| def | beginRun |
| def | endRun |
Private Attributes | |
| _svcloc | |
| _algmgr | |
Definition at line 926 of file Bindings.py.
| def GaudiPython::Bindings::PyAlgorithm::__init__ | ( | self, | ||
name = None | ||||
| ) |
Definition at line 927 of file Bindings.py.
00927 : 00928 if not name : name = self.__class__.__name__ 00929 _PyAlgorithm.__init__(self, self, name) 00930 self._svcloc = gbl.Gaudi.svcLocator() 00931 self._algmgr = InterfaceCast(gbl.IAlgManager)(self._svcloc) 00932 sc = self._algmgr.addAlgorithm(self) 00933 if sc.isFailure() : raise RuntimeError, 'Unable to add Algorithm' def __del__(self):
| def GaudiPython::Bindings::PyAlgorithm::__del__ | ( | self | ) |
Definition at line 934 of file Bindings.py.
00934 : 00935 sc = self._algmgr.removeAlgorithm(self) 00936 if sc.isFailure() : pass def initialize(self) : return 1
| def GaudiPython::Bindings::PyAlgorithm::initialize | ( | self | ) |
| def GaudiPython::Bindings::PyAlgorithm::start | ( | self | ) |
| def GaudiPython::Bindings::PyAlgorithm::execute | ( | self | ) |
| def GaudiPython::Bindings::PyAlgorithm::stop | ( | self | ) |
| def GaudiPython::Bindings::PyAlgorithm::finalize | ( | self | ) |
| def GaudiPython::Bindings::PyAlgorithm::beginRun | ( | self | ) |
| def GaudiPython::Bindings::PyAlgorithm::endRun | ( | self | ) |
Definition at line 943 of file Bindings.py.
00943 : return 1 00944 00945 00946 00947 #----Install exit handler-------------------------------------------------------------
Definition at line 930 of file Bindings.py.
Definition at line 931 of file Bindings.py.
1.4.7