The Gaudi Framework  v33r0 (d5ea422b)
GaudiPython.Bindings.iService Class Reference
Inheritance diagram for GaudiPython.Bindings.iService:
Collaboration diagram for GaudiPython.Bindings.iService:

Public Member Functions

def __init__ (self, name, isvc=None)
 
def retrieveInterface (self)
 
def initialize (self)
 
def start (self)
 
def stop (self)
 
def finalize (self)
 
def reinitialize (self)
 
def restart (self)
 
def isValid (self)
 
- Public Member Functions inherited from GaudiPython.Bindings.iProperty
def getInterface (self)
 
def __call_interface_method__ (self, ifname, method, *args)
 
def __setattr__ (self, name, value)
 
def __getattr__ (self, name)
 
def properties (self)
 
def name (self)
 

Detailed Description

Python equivalent to IProperty interface 

Definition at line 392 of file Bindings.py.

Constructor & Destructor Documentation

◆ __init__()

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

Reimplemented from GaudiPython.Bindings.iProperty.

Reimplemented in GaudiPython.Bindings.iJobOptSvc, GaudiPython.Bindings.iToolSvc, GaudiPython.Bindings.iNTupleSvc, GaudiPython.Bindings.iHistogramSvc, and GaudiPython.Bindings.iDataSvc.

Definition at line 395 of file Bindings.py.

395  def __init__(self, name, isvc=None):
396  iProperty.__init__(self, name, isvc)
397  if isvc:
398  self.__dict__['_isvc'] = InterfaceCast(gbl.IService)(isvc)
399  else:
400  self.__dict__['_isvc'] = None
401 

Member Function Documentation

◆ finalize()

def GaudiPython.Bindings.iService.finalize (   self)

Definition at line 416 of file Bindings.py.

416  def finalize(self):
417  return self.__call_interface_method__("_isvc", "finalize")
418 

◆ initialize()

def GaudiPython.Bindings.iService.initialize (   self)

Definition at line 407 of file Bindings.py.

407  def initialize(self):
408  return self.__call_interface_method__("_isvc", "initialize")
409 

◆ isValid()

def GaudiPython.Bindings.iService.isValid (   self)

Definition at line 425 of file Bindings.py.

425  def isValid(self):
426  if self._isvc:
427  return True
428  else:
429  return False
430 
431 
432 # ----iAlgorithm class---------------------------------------------------------
433 
434 

◆ reinitialize()

def GaudiPython.Bindings.iService.reinitialize (   self)

Definition at line 419 of file Bindings.py.

419  def reinitialize(self):
420  return self.__call_interface_method__("_isvc", "reinitialize")
421 

◆ restart()

def GaudiPython.Bindings.iService.restart (   self)

Definition at line 422 of file Bindings.py.

422  def restart(self):
423  return self.__call_interface_method__("_isvc", "restart")
424 

◆ retrieveInterface()

def GaudiPython.Bindings.iService.retrieveInterface (   self)

Reimplemented from GaudiPython.Bindings.iProperty.

Definition at line 402 of file Bindings.py.

402  def retrieveInterface(self):
403  isvc = Helper.service(self._svcloc, self._name)
404  if isvc:
405  iService.__init__(self, self._name, isvc)
406 

◆ start()

def GaudiPython.Bindings.iService.start (   self)

Reimplemented in GaudiPython.Bindings.AppMgr.

Definition at line 410 of file Bindings.py.

410  def start(self):
411  return self.__call_interface_method__("_isvc", "start")
412 
def start
Definition: IOTest.py:108

◆ stop()

def GaudiPython.Bindings.iService.stop (   self)

Definition at line 413 of file Bindings.py.

413  def stop(self):
414  return self.__call_interface_method__("_isvc", "stop")
415 

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