The Gaudi Framework  v31r0 (aeb156f0)
GaudiPython.Bindings.InterfaceCast Class Reference
Inheritance diagram for GaudiPython.Bindings.InterfaceCast:
Collaboration diagram for GaudiPython.Bindings.InterfaceCast:

Public Member Functions

def __init__ (self, t)
 
def __call__ (self, obj)
 

Public Attributes

 type
 

Static Public Attributes

 cast = __call__
 

Detailed Description

Helper class to obtain the adequate interface from a component
    by using the Gaudi queryInterface() mechanism 

Definition at line 97 of file Bindings.py.

Constructor & Destructor Documentation

def GaudiPython.Bindings.InterfaceCast.__init__ (   self,
  t 
)

Definition at line 101 of file Bindings.py.

101  def __init__(self, t):
102  if type(t) is str:
103  t = getattr(gbl, t)
104  self.type = t
105 

Member Function Documentation

def GaudiPython.Bindings.InterfaceCast.__call__ (   self,
  obj 
)

Definition at line 106 of file Bindings.py.

106  def __call__(self, obj):
107  if obj:
108  ip = makeNullPointer(self.type)
109  try:
110  if obj.queryInterface(self.type.interfaceID(), ip).isSuccess():
111  return ip
112  else:
113  print "ERROR: queryInterface failed for", obj, "interface:", self.type
114  except Exception, e:
115  print "ERROR: exception", e, "caught when retrieving interface", self.type, "for object", obj
116  import traceback
117  traceback.print_stack()
118  return None
119 

Member Data Documentation

GaudiPython.Bindings.InterfaceCast.cast = __call__
static

Definition at line 120 of file Bindings.py.

GaudiPython.Bindings.InterfaceCast.type

Definition at line 104 of file Bindings.py.


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