|
Gaudi Framework, version v21r10p1 |
| Home | Generated: 29 Jul 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 1097 of file Bindings.py.
| def GaudiPython::Bindings::PyAlgorithm::__init__ | ( | self, | ||
name = None | ||||
| ) |
Definition at line 1098 of file Bindings.py.
01098 : 01099 if not name : name = self.__class__.__name__ 01100 _PyAlgorithm.__init__(self, self, name) 01101 self._svcloc = gbl.Gaudi.svcLocator() 01102 self._algmgr = InterfaceCast(gbl.IAlgManager)(self._svcloc) 01103 sc = self._algmgr.addAlgorithm(self) 01104 if sc.isFailure() : raise RuntimeError, 'Unable to add Algorithm' def __del__(self):
| def GaudiPython::Bindings::PyAlgorithm::__del__ | ( | self | ) |
Definition at line 1105 of file Bindings.py.
01105 : 01106 sc = self._algmgr.removeAlgorithm(self) 01107 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 1114 of file Bindings.py.
01114 : return 1 01115 01116 #----Enable tab completion------------------------------------------------------------ 01117 try:
Definition at line 1101 of file Bindings.py.
Definition at line 1102 of file Bindings.py.