|
Gaudi Framework, version v21r9 |
| Home | Generated: 3 May 2010 |
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 1066 of file Bindings.py.
| def GaudiPython::Bindings::PyAlgorithm::__init__ | ( | self, | ||
name = None | ||||
| ) |
Definition at line 1067 of file Bindings.py.
01067 : 01068 if not name : name = self.__class__.__name__ 01069 _PyAlgorithm.__init__(self, self, name) 01070 self._svcloc = gbl.Gaudi.svcLocator() 01071 self._algmgr = InterfaceCast(gbl.IAlgManager)(self._svcloc) 01072 sc = self._algmgr.addAlgorithm(self) 01073 if sc.isFailure() : raise RuntimeError, 'Unable to add Algorithm' def __del__(self):
| def GaudiPython::Bindings::PyAlgorithm::__del__ | ( | self | ) |
Definition at line 1074 of file Bindings.py.
01074 : 01075 sc = self._algmgr.removeAlgorithm(self) 01076 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 1083 of file Bindings.py.
01083 : return 1 01084 01085 #----Enable tab completion------------------------------------------------------------ 01086 try:
Definition at line 1070 of file Bindings.py.
Definition at line 1071 of file Bindings.py.