![]() |
|
|
Generated: 8 Jan 2009 |
Definition at line 907 of file Bindings.py.
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 | |
| def GaudiPython::Bindings::PyAlgorithm::__init__ | ( | self, | ||
name = None | ||||
| ) |
Definition at line 908 of file Bindings.py.
00908 : 00909 if not name : name = self.__class__.__name__ 00910 _PyAlgorithm.__init__(self, self, name) 00911 self._svcloc = gbl.Gaudi.svcLocator() 00912 self._algmgr = InterfaceCast(gbl.IAlgManager)(self._svcloc) 00913 sc = self._algmgr.addAlgorithm(self) 00914 if sc.isFailure() : raise RuntimeError, 'Unable to add Algorithm' def __del__(self):
| def GaudiPython::Bindings::PyAlgorithm::__del__ | ( | self | ) |
Definition at line 915 of file Bindings.py.
00915 : 00916 sc = self._algmgr.removeAlgorithm(self) 00917 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 924 of file Bindings.py.
00924 : return 1 00925 00926 00927 00928 #----Install exit handler-------------------------------------------------------------
Definition at line 911 of file Bindings.py.
Definition at line 912 of file Bindings.py.