|  | The Gaudi Framework
    v28r0
    | 


| Public Member Functions | |
| def | __init__ (self, name, idp) | 
| def | registerObject (self, path, obj) | 
| def | unregisterObject (self, path) | 
| def | retrieveObject (self, path) | 
| def | findObject (self, path) | 
| get object from TES  More... | |
| def | getObject (self, path, args) | 
| get or retrieve object, possible switch-off 'on-demand' actions  More... | |
| def | __getitem__ (self, path) | 
| def | __setitem__ (self, path, obj) | 
| def | __delitem__ (self, path) | 
| def | leaves (self, node=None) | 
| def | dump (self, node=None) | 
| def | getList (self, node=None, lst=[], rootFID=None) | 
| def | getHistoNames (self, node=None, lst=[]) | 
| def | setRoot (self, name, obj) | 
| def | clearStore (self) | 
|  Public Member Functions inherited from GaudiPython.Bindings.iService | |
| def | __init__ (self, name, isvc=None) | 
| def | retrieveInterface (self) | 
| def | isValid (self) | 
|  Public Member Functions inherited from GaudiPython.Bindings.iProperty | |
| def | __init__ (self, name, ip=None) | 
| def | getInterface (self) | 
| def | retrieveInterface (self) | 
| def | __call_interface_method__ (self, ifname, method, args) | 
| def | __setattr__ (self, name, value) | 
| def | __getattr__ (self, name) | 
| def | properties (self) | 
| def | name (self) | 
| Additional Inherited Members | |
|  Static Public Attributes inherited from GaudiPython.Bindings.iService | |
| initialize = lambdaself:self.__call_interface_method__("_isvc","initialize") | |
| start = lambdaself:self.__call_interface_method__("_isvc","start") | |
| stop = lambdaself:self.__call_interface_method__("_isvc","stop") | |
| finalize = lambdaself:self.__call_interface_method__("_isvc","finalize") | |
| reinitialize = lambdaself:self.__call_interface_method__("_isvc","reinitialize") | |
| restart = lambdaself:self.__call_interface_method__("_isvc","restart") | |
Definition at line 357 of file Bindings.py.
| def GaudiPython.Bindings.iDataSvc.__init__ | ( | self, | |
| name, | |||
| idp | |||
| ) | 
Definition at line 358 of file Bindings.py.
| def GaudiPython.Bindings.iDataSvc.__delitem__ | ( | self, | |
| path | |||
| ) | 
Definition at line 421 of file Bindings.py.
| def GaudiPython.Bindings.iDataSvc.__getitem__ | ( | self, | |
| path | |||
| ) | 
Definition at line 415 of file Bindings.py.
| def GaudiPython.Bindings.iDataSvc.__setitem__ | ( | self, | |
| path, | |||
| obj | |||
| ) | 
Definition at line 418 of file Bindings.py.
| def GaudiPython.Bindings.iDataSvc.clearStore | ( | self | ) | 
Definition at line 476 of file Bindings.py.
| def GaudiPython.Bindings.iDataSvc.dump | ( | self, | |
| node = None | |||
| ) | 
Definition at line 430 of file Bindings.py.
| def GaudiPython.Bindings.iDataSvc.findObject | ( | self, | |
| path | |||
| ) | 
get object from TES
Get the existing object in TransientStore for the given location - loading of object from persistency is NOT triggered - 'data-on-demand' action is NOT triggered >>> svc = ... ## get the service >>> path = ... ## get the path in Transient Store >>> data = svc.findObject ( path ) ## use the method
Definition at line 372 of file Bindings.py.
| def GaudiPython.Bindings.iDataSvc.getHistoNames | ( | self, | |
| node = None, | |||
| lst = [] | |||
| ) | 
Definition at line 456 of file Bindings.py.
| def GaudiPython.Bindings.iDataSvc.getList | ( | self, | |
| node = None, | |||
| lst = [], | |||
| rootFID = None | |||
| ) | 
Definition at line 438 of file Bindings.py.
| def GaudiPython.Bindings.iDataSvc.getObject | ( | self, | |
| path, | |||
| args | |||
| ) | 
get or retrieve object, possible switch-off 'on-demand' actions
Get object from Transient Store for the given location arguments : - path : Location of object in Transient Store - retrieve (bool) True : retrieve versus find - disable on-demand (bool) False : temporary disable 'on-demand' actions >>> svc = ... ## get the service >>> path = ... ## get the path >>> data = svc.getObject ( path , False ) ## find object in Transient Store ## find object in Transient Store # load form tape or use 'on-demand' action for missing objects : >>> data = svc.getObject ( path , True ) ## find object in Transient Store # load from tape or for missing objects, disable 'on-demand'-actions >>> data = svc.getObject ( path , True , True )
Definition at line 389 of file Bindings.py.
| def GaudiPython.Bindings.iDataSvc.leaves | ( | self, | |
| node = None | |||
| ) | 
Definition at line 424 of file Bindings.py.
| def GaudiPython.Bindings.iDataSvc.registerObject | ( | self, | |
| path, | |||
| obj | |||
| ) | 
Definition at line 362 of file Bindings.py.
| def GaudiPython.Bindings.iDataSvc.retrieveObject | ( | self, | |
| path | |||
| ) | 
Definition at line 368 of file Bindings.py.
| def GaudiPython.Bindings.iDataSvc.setRoot | ( | self, | |
| name, | |||
| obj | |||
| ) | 
Definition at line 473 of file Bindings.py.
| def GaudiPython.Bindings.iDataSvc.unregisterObject | ( | self, | |
| path | |||
| ) | 
Definition at line 365 of file Bindings.py.