HistoUtils.py File Reference

Go to the source code of this file.

Classes

class  GaudiPython.HistoUtils.HistoFile
 

Namespaces

 GaudiPython.HistoUtils
 

Functions

def GaudiPython.HistoUtils._getAppMgr (kwargs)
 Helper private auxiliary function to get Application Manager. More...
 
def GaudiPython.HistoUtils._getHistoSvc (kwargs)
 Helper private auxiliary function to get iHistogramSvs. More...
 
def GaudiPython.HistoUtils._getEvtSvc (kwargs)
 Helper private auxiliary function to get iDataSvs. More...
 
def GaudiPython.HistoUtils.book (args, kwargs)
 The trivial function to book the various 1D,2D&3D-histograms. More...
 
def GaudiPython.HistoUtils.bookProf (args, kwargs)
 The trivial function to book 1D&2D profile histograms: More...
 
def GaudiPython.HistoUtils.getAsAIDA (path, kwargs)
 The most trivial function to retrieve the histogram from Histogram Transient Store. More...
 
def GaudiPython.HistoUtils.getAsROOT (path, kwargs)
 The most trivial function to retrieve the histogram from Histogram Transient Store. More...
 
def GaudiPython.HistoUtils.fill (histo, data, fun=lambda x:x, cut=lambda x:True, kwargs)
 The function which allows 'the smart fill' of 1D-histogram. More...
 
def GaudiPython.HistoUtils._to_root_ (self)
 Convert AIDA to ROOT. More...
 
def GaudiPython.HistoUtils._moment_
 Evaluate 'bin-by-bin' momentum of certain order around the value. More...
 
def GaudiPython.HistoUtils._momentErr_ (self, order)
 Evaluate error in 'bin-by-bin' momentum of certain order around the value. More...
 
def GaudiPython.HistoUtils._centralMoment_ (self, order)
 Evaluate 'bin-by-bin' central momentum (around mean value) More...
 
def GaudiPython.HistoUtils._centralMomentErr_ (self, order)
 Evaluate error in 'bin-by-bin' momentum of certain order around the value. More...
 
def GaudiPython.HistoUtils._skewness_ (self)
 Evaluate 'bin-by-bin' skewness for 1D histogram. More...
 
def GaudiPython.HistoUtils._skewnessErr_ (self)
 Evaluate error for 'bin-by-bin' skewness for 1D histogram. More...
 
def GaudiPython.HistoUtils._kurtosis_ (self)
 Evaluate 'bin-by-bin' kurtosis for 1D histogram. More...
 
def GaudiPython.HistoUtils._kurtosisErr_ (self)
 Evaluate error for 'bin-by-bin' kurtosis for 1D histogram. More...
 
def GaudiPython.HistoUtils._nEff_ (self)
 
def GaudiPython.HistoUtils._mean_ (self)
 
def GaudiPython.HistoUtils._meanErr_ (self)
 
def GaudiPython.HistoUtils._rms_ (self)
 
def GaudiPython.HistoUtils._rmsErr_ (self)
 
def GaudiPython.HistoUtils._sumBinHeightErr_ (self)
 
def GaudiPython.HistoUtils._sumAllBinHeightErr_ (self)
 
def GaudiPython.HistoUtils._overflowEntriesFrac_ (self)
 
def GaudiPython.HistoUtils._overflowEntriesFracErr_ (self)
 
def GaudiPython.HistoUtils._underflowEntriesFrac_ (self)
 
def GaudiPython.HistoUtils._underflowEntriesFracErr_ (self)
 
def GaudiPython.HistoUtils._overflowIntegralFrac_ (self)
 
def GaudiPython.HistoUtils._overflowIntegralFracErr_ (self)
 
def GaudiPython.HistoUtils._underflowIntegralFrac_ (self)
 
def GaudiPython.HistoUtils._underflowIntegralFracErr_ (self)
 
def GaudiPython.HistoUtils._nEntries_
 get number of entries in histogram up to the certain bin (not-included) get number of entries in histogram form the certain minimal bin up to the certain maximal bin (not-included) More...
 
def GaudiPython.HistoUtils._nEntriesFrac_
 
def GaudiPython.HistoUtils._nEntriesFracErr_
 
def GaudiPython.HistoUtils._path_ (self)
 ============================================================================ More...
 
def GaudiPython.HistoUtils.__dumpHisto__ (histo, args)
 ============================================================================= More...
 

Variables

string GaudiPython.HistoUtils.__author__ = "Vanya BELYAEV ibelyaev@physics.syr.edu"
 This module contains set of simple and useful utilities for booking and manipulations with Gaudi-AIDA histograms, inspired by Thomas' request. More...
 
tuple GaudiPython.HistoUtils.__all__
 
 GaudiPython.HistoUtils.HID = cpp.GaudiAlg.ID
 
 GaudiPython.HistoUtils.useROOT = False
 global flag More...
 
 GaudiPython.HistoUtils.aida2root = cpp.Gaudi.Utils.Aida2ROOT.aida2root
 AIDA -> ROOT converter. More...
 
 GaudiPython.HistoUtils.HistoStats = cpp.Gaudi.Utils.HistoStats
 
 GaudiPython.HistoUtils.i1DH = cpp.AIDA.IHistogram1D
 
 GaudiPython.HistoUtils.iBH = cpp.AIDA.IBaseHistogram
 
 GaudiPython.HistoUtils.histoDump = __dumpHisto__
 the actual function for text dump of the histogram More...
 
 GaudiPython.HistoUtils.dumpHisto = __dumpHisto__