All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
GaudiPython.Bindings.iService Class Reference
Inheritance diagram for GaudiPython.Bindings.iService:
Collaboration diagram for GaudiPython.Bindings.iService:

Public Member Functions

def __init__
 
def retrieveInterface
 
def isValid
 
- Public Member Functions inherited from GaudiPython.Bindings.iProperty
def __init__
 
def getInterface
 
def retrieveInterface
 
def __call_interface_method__
 
def __setattr__
 
def __getattr__
 
def properties
 
def name
 

Static Public Attributes

tuple initialize = lambdaself:self.__call_interface_method__("_isvc","initialize")
 
tuple start = lambdaself:self.__call_interface_method__("_isvc","start")
 
tuple stop = lambdaself:self.__call_interface_method__("_isvc","stop")
 
tuple finalize = lambdaself:self.__call_interface_method__("_isvc","finalize")
 
tuple reinitialize = lambdaself:self.__call_interface_method__("_isvc","reinitialize")
 
tuple restart = lambdaself:self.__call_interface_method__("_isvc","restart")
 

Detailed Description

Python equivalent to IProperty interface 

Definition at line 285 of file Bindings.py.

Constructor & Destructor Documentation

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

Definition at line 287 of file Bindings.py.

288  def __init__(self, name, isvc = None ) :
289  iProperty.__init__(self, name, isvc )
290  if isvc : self.__dict__['_isvc'] = InterfaceCast(gbl.IService)(isvc)
else : self.__dict__['_isvc'] = None

Member Function Documentation

def GaudiPython.Bindings.iService.isValid (   self)

Definition at line 300 of file Bindings.py.

301  def isValid(self) :
302  if self._isvc: return True
303  else : return False
304 
#----iAlgorithm class---------------------------------------------------------------------
def GaudiPython.Bindings.iService.retrieveInterface (   self)

Definition at line 291 of file Bindings.py.

292  def retrieveInterface(self) :
293  isvc = Helper.service(self._svcloc,self._name)
if isvc : iService.__init__(self, self._name, isvc)

Member Data Documentation

tuple GaudiPython.Bindings.iService.finalize = lambdaself:self.__call_interface_method__("_isvc","finalize")
static

Definition at line 297 of file Bindings.py.

tuple GaudiPython.Bindings.iService.initialize = lambdaself:self.__call_interface_method__("_isvc","initialize")
static

Definition at line 294 of file Bindings.py.

tuple GaudiPython.Bindings.iService.reinitialize = lambdaself:self.__call_interface_method__("_isvc","reinitialize")
static

Definition at line 298 of file Bindings.py.

tuple GaudiPython.Bindings.iService.restart = lambdaself:self.__call_interface_method__("_isvc","restart")
static

Definition at line 299 of file Bindings.py.

tuple GaudiPython.Bindings.iService.start = lambdaself:self.__call_interface_method__("_isvc","start")
static

Definition at line 295 of file Bindings.py.

tuple GaudiPython.Bindings.iService.stop = lambdaself:self.__call_interface_method__("_isvc","stop")
static

Definition at line 296 of file Bindings.py.


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