![]() |
The Gaudi Framework
v25r3
|
Public Member Functions | |
def | __init__ |
def | retrieve1D |
def | retrieve2D |
def | retrieve3D |
def | retrieveProfile1D |
def | retrieveProfile2D |
def | retrieve |
def | book |
def | bookProf |
def | __getitem__ |
def | getAsAIDA |
def | getAsROOT |
![]() | |
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 474 of file Bindings.py.
def GaudiPython.Bindings.iHistogramSvc.__init__ | ( | self, | |
name, | |||
ihs | |||
) |
Definition at line 475 of file Bindings.py.
def GaudiPython.Bindings.iHistogramSvc.__getitem__ | ( | self, | |
path | |||
) |
Retrieve the object from Histogram Transient Store (by path) The reference to AIDA histogram is returned (if possible) >>> svc = ... >>> histo = svc['path/to/my/histogram']
Definition at line 514 of file Bindings.py.
def GaudiPython.Bindings.iHistogramSvc.book | ( | self, | |
args | |||
) |
Book the histograms(1D,2D&3D) , see IHistogramSvc::book >>> svc = ... >>> histo = svc.book( .... )
Definition at line 500 of file Bindings.py.
def GaudiPython.Bindings.iHistogramSvc.bookProf | ( | self, | |
args | |||
) |
Book the profile(1D&2D) histograms, see IHistogramSvc::bookProf >>> svc = ... >>> histo = svc.bookProf( .... )
Definition at line 507 of file Bindings.py.
def GaudiPython.Bindings.iHistogramSvc.getAsAIDA | ( | self, | |
path | |||
) |
Retrieve the histogram from Histogram Transient Store (by path) The reference to AIDA histogram is returned (if possible) >>> svc = ... >>> histo = svc.getAsAIDA ( 'path/to/my/histogram' )
Definition at line 524 of file Bindings.py.
def GaudiPython.Bindings.iHistogramSvc.getAsROOT | ( | self, | |
path | |||
) |
Retrieve the histogram from Histogram Transient Store (by path) The Underlying native ROOT object is returned (if possible) >>> svc = ... >>> histo = svc.getAsROOT ( 'path/to/my/histogram' )
Definition at line 532 of file Bindings.py.
def GaudiPython.Bindings.iHistogramSvc.retrieve | ( | self, | |
path | |||
) |
Retrieve AIDA histogram or AIDA profile histogram by path in Histogram Transient Store >>> svc = ... >>> histo = svc.retrieve ( 'path/to/my/histogram' )
Definition at line 488 of file Bindings.py.
def GaudiPython.Bindings.iHistogramSvc.retrieve1D | ( | self, | |
path | |||
) |
Definition at line 478 of file Bindings.py.
def GaudiPython.Bindings.iHistogramSvc.retrieve2D | ( | self, | |
path | |||
) |
Definition at line 480 of file Bindings.py.
def GaudiPython.Bindings.iHistogramSvc.retrieve3D | ( | self, | |
path | |||
) |
Definition at line 482 of file Bindings.py.
def GaudiPython.Bindings.iHistogramSvc.retrieveProfile1D | ( | self, | |
path | |||
) |
Definition at line 484 of file Bindings.py.
def GaudiPython.Bindings.iHistogramSvc.retrieveProfile2D | ( | self, | |
path | |||
) |
Definition at line 486 of file Bindings.py.