Logo ROOT   6.12/07
Reference Guide
Functions | Variables
TH1.cxx File Reference
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <ctype.h>
#include <sstream>
#include <cmath>
#include "Riostream.h"
#include "TROOT.h"
#include "TEnv.h"
#include "TClass.h"
#include "TMath.h"
#include "THashList.h"
#include "TH1.h"
#include "TH2.h"
#include "TH3.h"
#include "TF2.h"
#include "TF3.h"
#include "TPluginManager.h"
#include "TVirtualPad.h"
#include "TRandom.h"
#include "TVirtualFitter.h"
#include "THLimitsFinder.h"
#include "TProfile.h"
#include "TStyle.h"
#include "TVectorF.h"
#include "TVectorD.h"
#include "TBrowser.h"
#include "TObjString.h"
#include "TError.h"
#include "TVirtualHistPainter.h"
#include "TVirtualFFT.h"
#include "TSystem.h"
#include "HFitInterface.h"
#include "Fit/DataRange.h"
#include "Fit/BinData.h"
#include "Math/GoFTest.h"
#include "Math/MinimizerOptions.h"
#include "Math/QuantFuncMathCore.h"
#include "TH1Merger.h"
Include dependency graph for TH1.cxx:

Functions

static Bool_t AlmostEqual (Double_t a, Double_t b, Double_t epsilon=0.00000001)
 Test if two double are almost equal. More...
 
static Bool_t AlmostInteger (Double_t a, Double_t epsilon=0.00000001)
 Test if a double is almost an integer. More...
 
void H1InitExpo ()
 Compute Initial values of parameters for an exponential. More...
 
void H1InitGaus ()
 Compute Initial values of parameters for a gaussian. More...
 
void H1InitPolynom ()
 Compute Initial values of parameters for a polynom. More...
 
void H1LeastSquareFit (Int_t n, Int_t m, Double_t *a)
 Least squares lpolynomial fitting without weights. More...
 
void H1LeastSquareLinearFit (Int_t ndata, Double_t &a0, Double_t &a1, Int_t &ifail)
 Least square linear fit without weights. More...
 
void H1LeastSquareSeqnd (Int_t n, Double_t *a, Int_t idim, Int_t &ifail, Int_t k, Double_t *b)
 Extracted from CERN Program library routine DSEQN. More...
 
static bool IsEquidistantBinning (const TAxis &axis)
 Test if the binning is equidistant. More...
 
TH1C operator* (Double_t c1, const TH1C &h1)
 Operator *. More...
 
TH1C operator* (const TH1C &h1, const TH1C &h2)
 Operator *. More...
 
TH1S operator* (Double_t c1, const TH1S &h1)
 Operator *. More...
 
TH1S operator* (const TH1S &h1, const TH1S &h2)
 Operator *. More...
 
TH1I operator* (Double_t c1, const TH1I &h1)
 Operator *. More...
 
TH1I operator* (const TH1I &h1, const TH1I &h2)
 Operator *. More...
 
TH1F operator* (Double_t c1, const TH1F &h1)
 Operator *. More...
 
TH1F operator* (const TH1F &h1, const TH1F &h2)
 Operator *. More...
 
TH1D operator* (Double_t c1, const TH1D &h1)
 Operator *. More...
 
TH1D operator* (const TH1D &h1, const TH1D &h2)
 Operator *. More...
 
TH1C operator+ (const TH1C &h1, const TH1C &h2)
 Operator +. More...
 
TH1S operator+ (const TH1S &h1, const TH1S &h2)
 Operator +. More...
 
TH1I operator+ (const TH1I &h1, const TH1I &h2)
 Operator +. More...
 
TH1F operator+ (const TH1F &h1, const TH1F &h2)
 Operator +. More...
 
TH1D operator+ (const TH1D &h1, const TH1D &h2)
 Operator +. More...
 
TH1C operator- (const TH1C &h1, const TH1C &h2)
 Operator -. More...
 
TH1S operator- (const TH1S &h1, const TH1S &h2)
 Operator -. More...
 
TH1I operator- (const TH1I &h1, const TH1I &h2)
 Operator -. More...
 
TH1F operator- (const TH1F &h1, const TH1F &h2)
 Operator -. More...
 
TH1D operator- (const TH1D &h1, const TH1D &h2)
 Operator -. More...
 
TH1C operator/ (const TH1C &h1, const TH1C &h2)
 Operator /. More...
 
TH1S operator/ (const TH1S &h1, const TH1S &h2)
 Operator /. More...
 
TH1I operator/ (const TH1I &h1, const TH1I &h2)
 Operator /. More...
 
TH1F operator/ (const TH1F &h1, const TH1F &h2)
 Operator /. More...
 
TH1D operator/ (const TH1D &h1, const TH1D &h2)
 Operator /. More...
 
TH1R__H (Int_t hid)
 return pointer to histogram with name hid if id >=0 h_id if id <0 More...
 
TH1R__H (const char *hname)
 return pointer to histogram with name hname More...
 

Variables

TF1gF1 =0
 

Function Documentation

◆ AlmostEqual()

static Bool_t AlmostEqual ( Double_t  a,
Double_t  b,
Double_t  epsilon = 0.00000001 
)
inlinestatic

Test if two double are almost equal.

Definition at line 5307 of file TH1.cxx.

◆ AlmostInteger()

static Bool_t AlmostInteger ( Double_t  a,
Double_t  epsilon = 0.00000001 
)
inlinestatic

Test if a double is almost an integer.

Definition at line 5315 of file TH1.cxx.

◆ H1InitExpo()

void H1InitExpo ( )

Compute Initial values of parameters for an exponential.

Definition at line 4421 of file TH1.cxx.

◆ H1InitGaus()

void H1InitGaus ( )

Compute Initial values of parameters for a gaussian.

Definition at line 4365 of file TH1.cxx.

◆ H1InitPolynom()

void H1InitPolynom ( )

Compute Initial values of parameters for a polynom.

Definition at line 4441 of file TH1.cxx.

◆ H1LeastSquareFit()

void H1LeastSquareFit ( Int_t  n,
Int_t  m,
Double_t a 
)

Least squares lpolynomial fitting without weights.

Parameters
[in]nnumber of points to fit
[in]mnumber of parameters
[in]aarray of parameters

based on CERNLIB routine LSQ: Translated to C++ by Rene Brun (E.Keil. revised by B.Schorr, 23.10.1981.)

Definition at line 4471 of file TH1.cxx.

◆ H1LeastSquareLinearFit()

void H1LeastSquareLinearFit ( Int_t  ndata,
Double_t a0,
Double_t a1,
Int_t ifail 
)

Least square linear fit without weights.

extracted from CERNLIB LLSQ: Translated to C++ by Rene Brun (added to LSQ by B. Schorr, 15.02.1982.)

Definition at line 4530 of file TH1.cxx.

◆ H1LeastSquareSeqnd()

void H1LeastSquareSeqnd ( Int_t  n,
Double_t a,
Int_t  idim,
Int_t ifail,
Int_t  k,
Double_t b 
)

Extracted from CERN Program library routine DSEQN.

Translated to C++ by Rene Brun

Definition at line 4576 of file TH1.cxx.

◆ IsEquidistantBinning()

static bool IsEquidistantBinning ( const TAxis axis)
inlinestatic

Test if the binning is equidistant.

Definition at line 5324 of file TH1.cxx.

◆ operator*() [1/10]

TH1C operator* ( Double_t  c1,
const TH1C h1 
)

Operator *.

Definition at line 8848 of file TH1.cxx.

◆ operator*() [2/10]

TH1C operator* ( const TH1C h1,
const TH1C h2 
)

Operator *.

Definition at line 8881 of file TH1.cxx.

◆ operator*() [3/10]

TH1S operator* ( Double_t  c1,
const TH1S h1 
)

Operator *.

Definition at line 9029 of file TH1.cxx.

◆ operator*() [4/10]

TH1S operator* ( const TH1S h1,
const TH1S h2 
)

Operator *.

Definition at line 9062 of file TH1.cxx.

◆ operator*() [5/10]

TH1I operator* ( Double_t  c1,
const TH1I h1 
)

Operator *.

Definition at line 9211 of file TH1.cxx.

◆ operator*() [6/10]

TH1I operator* ( const TH1I h1,
const TH1I h2 
)

Operator *.

Definition at line 9244 of file TH1.cxx.

◆ operator*() [7/10]

TH1F operator* ( Double_t  c1,
const TH1F h1 
)

Operator *.

Definition at line 9390 of file TH1.cxx.

◆ operator*() [8/10]

TH1F operator* ( const TH1F h1,
const TH1F h2 
)

Operator *.

Definition at line 9423 of file TH1.cxx.

◆ operator*() [9/10]

TH1D operator* ( Double_t  c1,
const TH1D h1 
)

Operator *.

Definition at line 9569 of file TH1.cxx.

◆ operator*() [10/10]

TH1D operator* ( const TH1D h1,
const TH1D h2 
)

Operator *.

Definition at line 9602 of file TH1.cxx.

◆ operator+() [1/5]

TH1C operator+ ( const TH1C h1,
const TH1C h2 
)

Operator +.

Definition at line 8859 of file TH1.cxx.

◆ operator+() [2/5]

TH1S operator+ ( const TH1S h1,
const TH1S h2 
)

Operator +.

Definition at line 9040 of file TH1.cxx.

◆ operator+() [3/5]

TH1I operator+ ( const TH1I h1,
const TH1I h2 
)

Operator +.

Definition at line 9222 of file TH1.cxx.

◆ operator+() [4/5]

TH1F operator+ ( const TH1F h1,
const TH1F h2 
)

Operator +.

Definition at line 9401 of file TH1.cxx.

◆ operator+() [5/5]

TH1D operator+ ( const TH1D h1,
const TH1D h2 
)

Operator +.

Definition at line 9580 of file TH1.cxx.

◆ operator-() [1/5]

TH1C operator- ( const TH1C h1,
const TH1C h2 
)

Operator -.

Definition at line 8870 of file TH1.cxx.

◆ operator-() [2/5]

TH1S operator- ( const TH1S h1,
const TH1S h2 
)

Operator -.

Definition at line 9051 of file TH1.cxx.

◆ operator-() [3/5]

TH1I operator- ( const TH1I h1,
const TH1I h2 
)

Operator -.

Definition at line 9233 of file TH1.cxx.

◆ operator-() [4/5]

TH1F operator- ( const TH1F h1,
const TH1F h2 
)

Operator -.

Definition at line 9412 of file TH1.cxx.

◆ operator-() [5/5]

TH1D operator- ( const TH1D h1,
const TH1D h2 
)

Operator -.

Definition at line 9591 of file TH1.cxx.

◆ operator/() [1/5]

TH1C operator/ ( const TH1C h1,
const TH1C h2 
)

Operator /.

Definition at line 8892 of file TH1.cxx.

◆ operator/() [2/5]

TH1S operator/ ( const TH1S h1,
const TH1S h2 
)

Operator /.

Definition at line 9073 of file TH1.cxx.

◆ operator/() [3/5]

TH1I operator/ ( const TH1I h1,
const TH1I h2 
)

Operator /.

Definition at line 9255 of file TH1.cxx.

◆ operator/() [4/5]

TH1F operator/ ( const TH1F h1,
const TH1F h2 
)

Operator /.

Definition at line 9434 of file TH1.cxx.

◆ operator/() [5/5]

TH1D operator/ ( const TH1D h1,
const TH1D h2 
)

Operator /.

Definition at line 9613 of file TH1.cxx.

◆ R__H() [1/2]

TH1* R__H ( Int_t  hid)

return pointer to histogram with name hid if id >=0 h_id if id <0

Definition at line 9626 of file TH1.cxx.

◆ R__H() [2/2]

TH1* R__H ( const char *  hname)

return pointer to histogram with name hname

Definition at line 9637 of file TH1.cxx.

Variable Documentation

◆ gF1

TF1* gF1 =0

Definition at line 524 of file TH1.cxx.