|  | The Gaudi Framework
    v36r11 (bdb84f5f)
    | 


| 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) | 
| def | getObject (self, path, *args) | 
| def | __getitem__ (self, path) | 
| def | __setitem__ (self, path, obj) | 
| def | __delitem__ (self, path) | 
| def | leaves (self, node=cppyy.nullptr) | 
| def | dump (self, node=cppyy.nullptr) | 
| def | getList (self, node=cppyy.nullptr, lst=[], rootFID=None) | 
| def | getHistoNames (self, node=cppyy.nullptr, lst=[]) | 
| def | setRoot (self, name, obj) | 
| def | clearStore (self) | 
|  Public Member Functions inherited from GaudiPython.Bindings.iService | |
| 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) | 
Definition at line 523 of file Bindings.py.
| def GaudiPython.Bindings.iDataSvc.__init__ | ( | self, | |
| name, | |||
| idp | |||
| ) | 
Reimplemented from GaudiPython.Bindings.iService.
Reimplemented in GaudiPython.Bindings.iNTupleSvc, and GaudiPython.Bindings.iHistogramSvc.
Definition at line 524 of file Bindings.py.
| def GaudiPython.Bindings.iDataSvc.__delitem__ | ( | self, | |
| path | |||
| ) | 
Definition at line 605 of file Bindings.py.
| def GaudiPython.Bindings.iDataSvc.__getitem__ | ( | self, | |
| path | |||
| ) | 
Reimplemented in GaudiPython.Bindings.iNTupleSvc, and GaudiPython.Bindings.iHistogramSvc.
Definition at line 595 of file Bindings.py.
| def GaudiPython.Bindings.iDataSvc.__setitem__ | ( | self, | |
| path, | |||
| obj | |||
| ) | 
Definition at line 600 of file Bindings.py.
| def GaudiPython.Bindings.iDataSvc.clearStore | ( | self | ) | 
Definition at line 676 of file Bindings.py.
| def GaudiPython.Bindings.iDataSvc.dump | ( | self, | |
| node = cppyy.nullptr | |||
| ) | 
Definition at line 621 of file Bindings.py.
| def GaudiPython.Bindings.iDataSvc.findObject | ( | self, | |
| path | |||
| ) | 
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 550 of file Bindings.py.
| def GaudiPython.Bindings.iDataSvc.getHistoNames | ( | self, | |
| node = cppyy.nullptr, | |||
| lst = [] | |||
| ) | 
Definition at line 652 of file Bindings.py.
| def GaudiPython.Bindings.iDataSvc.getList | ( | self, | |
| node = cppyy.nullptr, | |||
| lst = [], | |||
| rootFID = None | |||
| ) | 
Definition at line 633 of file Bindings.py.
| def GaudiPython.Bindings.iDataSvc.getObject | ( | self, | |
| path, | |||
| * | args | ||
| ) | 
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 568 of file Bindings.py.
| def GaudiPython.Bindings.iDataSvc.leaves | ( | self, | |
| node = cppyy.nullptr | |||
| ) | 
Definition at line 610 of file Bindings.py.
| def GaudiPython.Bindings.iDataSvc.registerObject | ( | self, | |
| path, | |||
| obj | |||
| ) | 
Definition at line 529 of file Bindings.py.
| def GaudiPython.Bindings.iDataSvc.retrieveObject | ( | self, | |
| path | |||
| ) | 
Definition at line 543 of file Bindings.py.
| def GaudiPython.Bindings.iDataSvc.setRoot | ( | self, | |
| name, | |||
| obj | |||
| ) | 
Definition at line 671 of file Bindings.py.
| def GaudiPython.Bindings.iDataSvc.unregisterObject | ( | self, | |
| path | |||
| ) | 
Definition at line 536 of file Bindings.py.