The Gaudi Framework
v25r5
|
Public Member Functions | |
def | __init__ |
def | registerObject |
def | unregisterObject |
def | retrieveObject |
def | findObject |
get object from TES More... | |
def | getObject |
get or retrieve object, possible switch-off 'on-demand' actions More... | |
def | __getitem__ |
def | __setitem__ |
def | __delitem__ |
def | leaves |
def | dump |
def | getList |
def | getHistoNames |
def | setRoot |
def | clearStore |
![]() | |
def | __init__ |
def | retrieveInterface |
def | isValid |
![]() | |
def | __init__ |
def | getInterface |
def | retrieveInterface |
def | __call_interface_method__ |
def | __setattr__ |
def | __getattr__ |
def | properties |
def | name |
Additional Inherited Members | |
![]() | |
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") |
Definition at line 349 of file Bindings.py.
def GaudiPython.Bindings.iDataSvc.__init__ | ( | self, | |
name, | |||
idp | |||
) |
Definition at line 350 of file Bindings.py.
def GaudiPython.Bindings.iDataSvc.__delitem__ | ( | self, | |
path | |||
) |
Definition at line 413 of file Bindings.py.
def GaudiPython.Bindings.iDataSvc.__getitem__ | ( | self, | |
path | |||
) |
Definition at line 407 of file Bindings.py.
def GaudiPython.Bindings.iDataSvc.__setitem__ | ( | self, | |
path, | |||
obj | |||
) |
Definition at line 410 of file Bindings.py.
def GaudiPython.Bindings.iDataSvc.clearStore | ( | self | ) |
Definition at line 468 of file Bindings.py.
def GaudiPython.Bindings.iDataSvc.dump | ( | self, | |
node = None |
|||
) |
Definition at line 422 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 364 of file Bindings.py.
def GaudiPython.Bindings.iDataSvc.getHistoNames | ( | self, | |
node = None , |
|||
lst = [] |
|||
) |
Definition at line 448 of file Bindings.py.
def GaudiPython.Bindings.iDataSvc.getList | ( | self, | |
node = None , |
|||
lst = [] , |
|||
rootFID = None |
|||
) |
Definition at line 430 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 381 of file Bindings.py.
def GaudiPython.Bindings.iDataSvc.leaves | ( | self, | |
node = None |
|||
) |
Definition at line 416 of file Bindings.py.
def GaudiPython.Bindings.iDataSvc.registerObject | ( | self, | |
path, | |||
obj | |||
) |
Definition at line 354 of file Bindings.py.
def GaudiPython.Bindings.iDataSvc.retrieveObject | ( | self, | |
path | |||
) |
Definition at line 360 of file Bindings.py.
def GaudiPython.Bindings.iDataSvc.setRoot | ( | self, | |
name, | |||
obj | |||
) |
Definition at line 465 of file Bindings.py.
def GaudiPython.Bindings.iDataSvc.unregisterObject | ( | self, | |
path | |||
) |
Definition at line 357 of file Bindings.py.