GaudiPython.Bindings.PyAlgorithm Class Reference
Inheritance diagram for GaudiPython.Bindings.PyAlgorithm:
Collaboration diagram for GaudiPython.Bindings.PyAlgorithm:

Public Member Functions

def __init__
 
def __del__ (self)
 
def initialize (self)
 
def start (self)
 
def execute (self)
 
def stop (self)
 
def finalize (self)
 
def beginRun (self)
 
def endRun (self)
 
def __init__
 
def __del__ (self)
 
def initialize (self)
 
def start (self)
 
def execute (self)
 
def stop (self)
 
def finalize (self)
 
def beginRun (self)
 
def endRun (self)
 

Private Attributes

 _svcloc
 
 _algmgr
 

Detailed Description

Definition at line 1105 of file Bindings.py.

Constructor & Destructor Documentation

def GaudiPython.Bindings.PyAlgorithm.__init__ (   self,
  name = None 
)

Definition at line 1106 of file Bindings.py.

1106  def __init__(self, name=None) :
1107  if not name : name = self.__class__.__name__
1108  _PyAlgorithm.__init__(self, self, name)
1109  self._svcloc = gbl.Gaudi.svcLocator()
1110  self._algmgr = InterfaceCast(gbl.IAlgManager)(self._svcloc)
1111  sc = self._algmgr.addAlgorithm(self)
1112  if sc.isFailure() : raise RuntimeError, 'Unable to add Algorithm'
def GaudiPython.Bindings.PyAlgorithm.__del__ (   self)

Definition at line 1113 of file Bindings.py.

1113  def __del__(self):
1114  sc = self._algmgr.removeAlgorithm(self)
1115  if sc.isFailure() : pass
def GaudiPython.Bindings.PyAlgorithm.__init__ (   self,
  name = None 
)

Definition at line 1106 of file Bindings.py.

1106  def __init__(self, name=None) :
1107  if not name : name = self.__class__.__name__
1108  _PyAlgorithm.__init__(self, self, name)
1109  self._svcloc = gbl.Gaudi.svcLocator()
1110  self._algmgr = InterfaceCast(gbl.IAlgManager)(self._svcloc)
1111  sc = self._algmgr.addAlgorithm(self)
1112  if sc.isFailure() : raise RuntimeError, 'Unable to add Algorithm'
def GaudiPython.Bindings.PyAlgorithm.__del__ (   self)

Definition at line 1113 of file Bindings.py.

1113  def __del__(self):
1114  sc = self._algmgr.removeAlgorithm(self)
1115  if sc.isFailure() : pass

Member Function Documentation

def GaudiPython.Bindings.PyAlgorithm.beginRun (   self)

Definition at line 1121 of file Bindings.py.

1121  def beginRun(self) : return 1
def GaudiPython.Bindings.PyAlgorithm.beginRun (   self)

Definition at line 1121 of file Bindings.py.

1121  def beginRun(self) : return 1
def GaudiPython.Bindings.PyAlgorithm.endRun (   self)

Definition at line 1122 of file Bindings.py.

1122  def endRun(self) : return 1
1123 
1124 #----Enable tab completion------------------------------------------------------------
1125 try:
def GaudiPython.Bindings.PyAlgorithm.endRun (   self)

Definition at line 1122 of file Bindings.py.

1122  def endRun(self) : return 1
1123 
1124 #----Enable tab completion------------------------------------------------------------
1125 try:
def GaudiPython.Bindings.PyAlgorithm.execute (   self)

Definition at line 1118 of file Bindings.py.

1118  def execute(self) : return 1
def GaudiPython.Bindings.PyAlgorithm.execute (   self)

Definition at line 1118 of file Bindings.py.

1118  def execute(self) : return 1
def GaudiPython.Bindings.PyAlgorithm.finalize (   self)

Definition at line 1120 of file Bindings.py.

1120  def finalize(self) : return 1
def GaudiPython.Bindings.PyAlgorithm.finalize (   self)

Definition at line 1120 of file Bindings.py.

1120  def finalize(self) : return 1
def GaudiPython.Bindings.PyAlgorithm.initialize (   self)

Definition at line 1116 of file Bindings.py.

1116  def initialize(self) : return 1
def GaudiPython.Bindings.PyAlgorithm.initialize (   self)

Definition at line 1116 of file Bindings.py.

1116  def initialize(self) : return 1
def GaudiPython.Bindings.PyAlgorithm.start (   self)

Definition at line 1117 of file Bindings.py.

1117  def start(self) : return 1
def GaudiPython.Bindings.PyAlgorithm.start (   self)

Definition at line 1117 of file Bindings.py.

1117  def start(self) : return 1
def GaudiPython.Bindings.PyAlgorithm.stop (   self)

Definition at line 1119 of file Bindings.py.

1119  def stop(self) : return 1
def GaudiPython.Bindings.PyAlgorithm.stop (   self)

Definition at line 1119 of file Bindings.py.

1119  def stop(self) : return 1

Member Data Documentation

GaudiPython.Bindings.PyAlgorithm._algmgr
private

Definition at line 1110 of file Bindings.py.

GaudiPython.Bindings.PyAlgorithm._svcloc
private

Definition at line 1109 of file Bindings.py.


The documentation for this class was generated from the following file: