|
Gaudi Framework, version v21r4 |
| Home | Generated: 7 Sep 2009 |
Definition at line 967 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 968 of file Bindings.py.
00968 : 00969 if not name : name = self.__class__.__name__ 00970 _PyAlgorithm.__init__(self, self, name) 00971 self._svcloc = gbl.Gaudi.svcLocator() 00972 self._algmgr = InterfaceCast(gbl.IAlgManager)(self._svcloc) 00973 sc = self._algmgr.addAlgorithm(self) 00974 if sc.isFailure() : raise RuntimeError, 'Unable to add Algorithm' def __del__(self):
| def GaudiPython::Bindings::PyAlgorithm::__del__ | ( | self | ) |
Definition at line 975 of file Bindings.py.
00975 : 00976 sc = self._algmgr.removeAlgorithm(self) 00977 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 984 of file Bindings.py.
00984 : return 1 00985 00986 00987 00988 #----Install exit handler-------------------------------------------------------------
Definition at line 971 of file Bindings.py.
Definition at line 972 of file Bindings.py.