Gaudi.Main.BootstrapHelper.AppMgr Class Reference
Inheritance diagram for Gaudi.Main.BootstrapHelper.AppMgr:
Collaboration diagram for Gaudi.Main.BootstrapHelper.AppMgr:

Public Member Functions

def __init__ (self, ptr, lib)
 
def configure (self)
 
def initialize (self)
 
def start (self)
 
def run (self, nevt)
 
def stop (self)
 
def finalize (self)
 
def terminate (self)
 
def getService (self, name)
 
def setProperty (self, name, value)
 
def getProperty (self, name)
 
def printAlgsSequences (self)
 
def __init__ (self, ptr, lib)
 
def configure (self)
 
def initialize (self)
 
def start (self)
 
def run (self, nevt)
 
def stop (self)
 
def finalize (self)
 
def terminate (self)
 
def getService (self, name)
 
def setProperty (self, name, value)
 
def getProperty (self, name)
 
def printAlgsSequences (self)
 

Public Attributes

 ptr
 
 lib
 

Private Attributes

 _as_parameter_
 

Detailed Description

Definition at line 27 of file Main.py.

Constructor & Destructor Documentation

def Gaudi.Main.BootstrapHelper.AppMgr.__init__ (   self,
  ptr,
  lib 
)

Definition at line 28 of file Main.py.

28  def __init__(self, ptr, lib):
29  self.ptr = ptr
30  self.lib = lib
31  self._as_parameter_ = ptr
def __init__(self, ptr, lib)
Definition: Main.py:28
def Gaudi.Main.BootstrapHelper.AppMgr.__init__ (   self,
  ptr,
  lib 
)

Definition at line 28 of file Main.py.

28  def __init__(self, ptr, lib):
29  self.ptr = ptr
30  self.lib = lib
31  self._as_parameter_ = ptr
def __init__(self, ptr, lib)
Definition: Main.py:28

Member Function Documentation

def Gaudi.Main.BootstrapHelper.AppMgr.configure (   self)

Definition at line 32 of file Main.py.

32  def configure(self):
33  return BootstrapHelper.StatusCode(self.lib.py_bootstrap_fsm_configure(self.ptr))
def Gaudi.Main.BootstrapHelper.AppMgr.configure (   self)

Definition at line 32 of file Main.py.

32  def configure(self):
33  return BootstrapHelper.StatusCode(self.lib.py_bootstrap_fsm_configure(self.ptr))
def Gaudi.Main.BootstrapHelper.AppMgr.finalize (   self)

Definition at line 42 of file Main.py.

42  def finalize(self):
43  return BootstrapHelper.StatusCode(self.lib.py_bootstrap_fsm_finalize(self.ptr))
def Gaudi.Main.BootstrapHelper.AppMgr.finalize (   self)

Definition at line 42 of file Main.py.

42  def finalize(self):
43  return BootstrapHelper.StatusCode(self.lib.py_bootstrap_fsm_finalize(self.ptr))
def Gaudi.Main.BootstrapHelper.AppMgr.getProperty (   self,
  name 
)

Definition at line 50 of file Main.py.

50  def getProperty(self, name):
51  return BootstrapHelper.Property(self.lib.py_bootstrap_getProperty(self.ptr, name))
def getProperty(self, name)
Definition: Main.py:50
def Gaudi.Main.BootstrapHelper.AppMgr.getProperty (   self,
  name 
)

Definition at line 50 of file Main.py.

50  def getProperty(self, name):
51  return BootstrapHelper.Property(self.lib.py_bootstrap_getProperty(self.ptr, name))
def getProperty(self, name)
Definition: Main.py:50
def Gaudi.Main.BootstrapHelper.AppMgr.getService (   self,
  name 
)

Definition at line 46 of file Main.py.

46  def getService(self, name):
47  return self.lib.py_bootstrap_getService(self.ptr, name)
def getService(self, name)
Definition: Main.py:46
def Gaudi.Main.BootstrapHelper.AppMgr.getService (   self,
  name 
)

Definition at line 46 of file Main.py.

46  def getService(self, name):
47  return self.lib.py_bootstrap_getService(self.ptr, name)
def getService(self, name)
Definition: Main.py:46
def Gaudi.Main.BootstrapHelper.AppMgr.initialize (   self)

Definition at line 34 of file Main.py.

34  def initialize(self):
35  return BootstrapHelper.StatusCode(self.lib.py_bootstrap_fsm_initialize(self.ptr))
def Gaudi.Main.BootstrapHelper.AppMgr.initialize (   self)

Definition at line 34 of file Main.py.

34  def initialize(self):
35  return BootstrapHelper.StatusCode(self.lib.py_bootstrap_fsm_initialize(self.ptr))
def Gaudi.Main.BootstrapHelper.AppMgr.printAlgsSequences (   self)

Definition at line 52 of file Main.py.

52  def printAlgsSequences(self):
53  return self.lib.py_helper_printAlgsSequences(self.ptr)
54 
55  def __init__(self):
def __init__(self)
Definition: Main.py:55
def Gaudi.Main.BootstrapHelper.AppMgr.printAlgsSequences (   self)

Definition at line 52 of file Main.py.

52  def printAlgsSequences(self):
53  return self.lib.py_helper_printAlgsSequences(self.ptr)
54 
55  def __init__(self):
def __init__(self)
Definition: Main.py:55
def Gaudi.Main.BootstrapHelper.AppMgr.run (   self,
  nevt 
)

Definition at line 38 of file Main.py.

38  def run(self, nevt):
39  return BootstrapHelper.StatusCode(self.lib.py_bootstrap_app_run(self.ptr, nevt))
def Gaudi.Main.BootstrapHelper.AppMgr.run (   self,
  nevt 
)

Definition at line 38 of file Main.py.

38  def run(self, nevt):
39  return BootstrapHelper.StatusCode(self.lib.py_bootstrap_app_run(self.ptr, nevt))
def Gaudi.Main.BootstrapHelper.AppMgr.setProperty (   self,
  name,
  value 
)

Definition at line 48 of file Main.py.

48  def setProperty(self, name, value):
49  return BootstrapHelper.StatusCode(self.lib.py_bootstrap_setProperty(self.ptr, name, value))
def setProperty(self, name, value)
Definition: Main.py:48
def Gaudi.Main.BootstrapHelper.AppMgr.setProperty (   self,
  name,
  value 
)

Definition at line 48 of file Main.py.

48  def setProperty(self, name, value):
49  return BootstrapHelper.StatusCode(self.lib.py_bootstrap_setProperty(self.ptr, name, value))
def setProperty(self, name, value)
Definition: Main.py:48
def Gaudi.Main.BootstrapHelper.AppMgr.start (   self)

Definition at line 36 of file Main.py.

36  def start(self):
37  return BootstrapHelper.StatusCode(self.lib.py_bootstrap_fsm_start(self.ptr))
def Gaudi.Main.BootstrapHelper.AppMgr.start (   self)

Definition at line 36 of file Main.py.

36  def start(self):
37  return BootstrapHelper.StatusCode(self.lib.py_bootstrap_fsm_start(self.ptr))
def Gaudi.Main.BootstrapHelper.AppMgr.stop (   self)

Definition at line 40 of file Main.py.

40  def stop(self):
41  return BootstrapHelper.StatusCode(self.lib.py_bootstrap_fsm_stop(self.ptr))
def Gaudi.Main.BootstrapHelper.AppMgr.stop (   self)

Definition at line 40 of file Main.py.

40  def stop(self):
41  return BootstrapHelper.StatusCode(self.lib.py_bootstrap_fsm_stop(self.ptr))
def Gaudi.Main.BootstrapHelper.AppMgr.terminate (   self)

Definition at line 44 of file Main.py.

44  def terminate(self):
45  return BootstrapHelper.StatusCode(self.lib.py_bootstrap_fsm_terminate(self.ptr))
def Gaudi.Main.BootstrapHelper.AppMgr.terminate (   self)

Definition at line 44 of file Main.py.

44  def terminate(self):
45  return BootstrapHelper.StatusCode(self.lib.py_bootstrap_fsm_terminate(self.ptr))

Member Data Documentation

Gaudi.Main.BootstrapHelper.AppMgr._as_parameter_
private

Definition at line 31 of file Main.py.

Gaudi.Main.BootstrapHelper.AppMgr.lib

Definition at line 30 of file Main.py.

Gaudi.Main.BootstrapHelper.AppMgr.ptr

Definition at line 29 of file Main.py.


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