ROOT logo
// @(#)root/hist:$Id: TProfile.h 28022 2009-04-01 14:41:58Z moneta $
// Author: Rene Brun   29/09/95

/*************************************************************************
 * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers.               *
 * All rights reserved.                                                  *
 *                                                                       *
 * For the licensing terms see $ROOTSYS/LICENSE.                         *
 * For the list of contributors see $ROOTSYS/README/CREDITS.             *
 *************************************************************************/

#ifndef ROOT_TProfile
#define ROOT_TProfile


//////////////////////////////////////////////////////////////////////////
//                                                                      //
// TProfile                                                             //
//                                                                      //
// Profile histogram class.                                             //
//                                                                      //
//////////////////////////////////////////////////////////////////////////

#ifndef ROOT_TH1
#include "TH1.h"
#endif

class TProfileHelper;

enum EErrorType { kERRORMEAN = 0, kERRORSPREAD, kERRORSPREADI, kERRORSPREADG };

class TF1;

class TProfile : public TH1D {

public:
   friend class TProfileHelper;

protected:
    TArrayD     fBinEntries;      //number of entries per bin
    EErrorType  fErrorMode;       //Option to compute errors
    Double_t    fYmin;            //Lower limit in Y (if set)
    Double_t    fYmax;            //Upper limit in Y (if set)
    Bool_t      fScaling;         //!True when TProfile::Scale is called
    Double_t    fTsumwy;          //Total Sum of weight*Y
    Double_t    fTsumwy2;         //Total Sum of weight*Y*Y
    TArrayD     fBinSumw2;        //Array of sum of squares of weights per bin 

static Bool_t   fgApproximate;    //bin error approximation option

   virtual Int_t    BufferFill(Double_t, Double_t) {return -2;} //may not use
   virtual Int_t    BufferFill(Double_t x, Double_t y, Double_t w);

   // helper methods for the Merge unification in TProfileHelper
   void SetBins(const Int_t* nbins, const Double_t* range) { SetBins(nbins[0], range[0], range[1]); };
   Int_t Fill(const Double_t* v) { return Fill(v[0], v[1], v[2]); };

private:
   Int_t Fill(Double_t) { MayNotUse("Fill(Double_t)"); return -1;}
   void FillN(Int_t, const Double_t *, const Double_t *, Int_t) { MayNotUse("FillN(Int_t, Double_t*, Double_t*, Int_t)"); }
   void SetBins(Int_t, Double_t, Double_t, Int_t, Double_t, Double_t)
      { MayNotUse("SetBins(Int_t, Double_t, Double_t, Int_t, Double_t, Double_t"); }
   void SetBins(Int_t, const Double_t*, Int_t, const Double_t*)
      { MayNotUse("SetBins(Int_t, const Double_t*, Int_t, const Double_t*"); }
   void SetBins(Int_t, Double_t, Double_t, Int_t, Double_t, Double_t, Int_t, Double_t, Double_t)
      { MayNotUse("SetBins(Int_t, Double_t, Double_t, Int_t, Double_t, Double_t, Int_t, Double_t, Double_t"); }

   Double_t *GetB()  {return &fBinEntries.fArray[0];}
   Double_t *GetB2() {return (fBinSumw2.fN ? &fBinSumw2.fArray[0] : 0 ); }
   Double_t *GetW()  {return &fArray[0];}
   Double_t *GetW2() {return &fSumw2.fArray[0];}

public:
   TProfile();
   TProfile(const char *name,const char *title,Int_t nbinsx,Double_t xlow,Double_t xup, Option_t *option="");
   TProfile(const char *name,const char *title,Int_t nbinsx,Double_t xlow,Double_t xup,Double_t ylow,Double_t yup,Option_t *option="");
   TProfile(const char *name,const char *title,Int_t nbinsx,const Float_t  *xbins, Option_t *option="");
   TProfile(const char *name,const char *title,Int_t nbinsx,const Double_t *xbins, Option_t *option="");
   TProfile(const char *name,const char *title,Int_t nbinsx,const Double_t *xbins, Double_t ylow,Double_t yup, Option_t *option="");
   TProfile(const TProfile &profile);
   virtual ~TProfile();
   virtual void     Add(TF1 *h1, Double_t c1=1, Option_t *option="");
   virtual void     Add(const TH1 *h1, Double_t c1=1);
   virtual void     Add(const TH1 *h1, const TH1 *h2, Double_t c1=1, Double_t c2=1); // *MENU*
   static  void     Approximate(Bool_t approx=kTRUE);
   virtual Int_t    BufferEmpty(Int_t action=0);
           void     BuildOptions(Double_t ymin, Double_t ymax, Option_t *option);
   virtual void     Copy(TObject &hnew) const;
   virtual void     Divide(TF1 *h1, Double_t c1=1);
   virtual void     Divide(const TH1 *h1);
   virtual void     Divide(const TH1 *h1, const TH1 *h2, Double_t c1=1, Double_t c2=1, Option_t *option=""); // *MENU*
   virtual TH1     *DrawCopy(Option_t *option="") const;
   virtual Int_t    Fill(Double_t x, Double_t y);
   virtual Int_t    Fill(const char *namex, Double_t y);
   virtual Int_t    Fill(Double_t x, Double_t y, Double_t w);
   virtual Int_t    Fill(const char *namex, Double_t y, Double_t w);
   virtual void     FillN(Int_t ntimes, const Double_t *x, const Double_t *y, const Double_t *w, Int_t stride=1);
   virtual Double_t GetBinContent(Int_t bin) const;
   virtual Double_t GetBinContent(Int_t bin, Int_t) const {return GetBinContent(bin);}
   virtual Double_t GetBinContent(Int_t bin, Int_t, Int_t) const {return GetBinContent(bin);}
   virtual Double_t GetBinError(Int_t bin) const;
   virtual Double_t GetBinError(Int_t bin, Int_t) const {return GetBinError(bin);}
   virtual Double_t GetBinError(Int_t bin, Int_t, Int_t) const {return GetBinError(bin);}
   virtual Double_t GetBinEntries(Int_t bin) const;
   virtual Double_t GetBinEffectiveEntries(Int_t bin) const;
   virtual TArrayD *GetBinSumw2() {return &fBinSumw2;}
   virtual const TArrayD *GetBinSumw2() const {return &fBinSumw2;}
   Option_t        *GetErrorOption() const;
   virtual char    *GetObjectInfo(Int_t px, Int_t py) const;
   virtual void     GetStats(Double_t *stats) const;
   virtual Double_t GetYmin() const {return fYmin;}
   virtual Double_t GetYmax() const {return fYmax;}
   virtual void     LabelsDeflate(Option_t *axis="X");
   virtual void     LabelsInflate(Option_t *axis="X");
   virtual void     LabelsOption(Option_t *option="h", Option_t *axis="X");
   virtual Long64_t Merge(TCollection *list);
   virtual void     Multiply(TF1 *h1, Double_t c1=1);
   virtual void     Multiply(const TH1 *h1);
   virtual void     Multiply(const TH1 *h1, const TH1 *h2, Double_t c1=1, Double_t c2=1, Option_t *option=""); // *MENU*
           TH1D    *ProjectionX(const char *name="_px", Option_t *option="e") const;
   virtual void     PutStats(Double_t *stats);
           TH1     *Rebin(Int_t ngroup=2, const char*newname="", const Double_t *xbins=0);
   virtual void     RebinAxis(Double_t x, TAxis *axis);
   virtual void     Reset(Option_t *option="");
   virtual void     SavePrimitive(ostream &out, Option_t *option = "");
   virtual void     Scale(Double_t c1=1, Option_t *option="");
   virtual void     SetBinEntries(Int_t bin, Double_t w);
   virtual void     SetBins(Int_t nbins, Double_t xmin, Double_t xmax);
   virtual void     SetBins(Int_t nx, const Double_t *xbins);
   virtual void     SetBuffer(Int_t buffersize, Option_t *option="");
   virtual void     SetErrorOption(Option_t *option=""); // *MENU*
   virtual void     Sumw2(); 

   ClassDef(TProfile,6)  //Profile histogram class
};

#endif

 TProfile.h:1
 TProfile.h:2
 TProfile.h:3
 TProfile.h:4
 TProfile.h:5
 TProfile.h:6
 TProfile.h:7
 TProfile.h:8
 TProfile.h:9
 TProfile.h:10
 TProfile.h:11
 TProfile.h:12
 TProfile.h:13
 TProfile.h:14
 TProfile.h:15
 TProfile.h:16
 TProfile.h:17
 TProfile.h:18
 TProfile.h:19
 TProfile.h:20
 TProfile.h:21
 TProfile.h:22
 TProfile.h:23
 TProfile.h:24
 TProfile.h:25
 TProfile.h:26
 TProfile.h:27
 TProfile.h:28
 TProfile.h:29
 TProfile.h:30
 TProfile.h:31
 TProfile.h:32
 TProfile.h:33
 TProfile.h:34
 TProfile.h:35
 TProfile.h:36
 TProfile.h:37
 TProfile.h:38
 TProfile.h:39
 TProfile.h:40
 TProfile.h:41
 TProfile.h:42
 TProfile.h:43
 TProfile.h:44
 TProfile.h:45
 TProfile.h:46
 TProfile.h:47
 TProfile.h:48
 TProfile.h:49
 TProfile.h:50
 TProfile.h:51
 TProfile.h:52
 TProfile.h:53
 TProfile.h:54
 TProfile.h:55
 TProfile.h:56
 TProfile.h:57
 TProfile.h:58
 TProfile.h:59
 TProfile.h:60
 TProfile.h:61
 TProfile.h:62
 TProfile.h:63
 TProfile.h:64
 TProfile.h:65
 TProfile.h:66
 TProfile.h:67
 TProfile.h:68
 TProfile.h:69
 TProfile.h:70
 TProfile.h:71
 TProfile.h:72
 TProfile.h:73
 TProfile.h:74
 TProfile.h:75
 TProfile.h:76
 TProfile.h:77
 TProfile.h:78
 TProfile.h:79
 TProfile.h:80
 TProfile.h:81
 TProfile.h:82
 TProfile.h:83
 TProfile.h:84
 TProfile.h:85
 TProfile.h:86
 TProfile.h:87
 TProfile.h:88
 TProfile.h:89
 TProfile.h:90
 TProfile.h:91
 TProfile.h:92
 TProfile.h:93
 TProfile.h:94
 TProfile.h:95
 TProfile.h:96
 TProfile.h:97
 TProfile.h:98
 TProfile.h:99
 TProfile.h:100
 TProfile.h:101
 TProfile.h:102
 TProfile.h:103
 TProfile.h:104
 TProfile.h:105
 TProfile.h:106
 TProfile.h:107
 TProfile.h:108
 TProfile.h:109
 TProfile.h:110
 TProfile.h:111
 TProfile.h:112
 TProfile.h:113
 TProfile.h:114
 TProfile.h:115
 TProfile.h:116
 TProfile.h:117
 TProfile.h:118
 TProfile.h:119
 TProfile.h:120
 TProfile.h:121
 TProfile.h:122
 TProfile.h:123
 TProfile.h:124
 TProfile.h:125
 TProfile.h:126
 TProfile.h:127
 TProfile.h:128
 TProfile.h:129
 TProfile.h:130
 TProfile.h:131
 TProfile.h:132
 TProfile.h:133
 TProfile.h:134
 TProfile.h:135
 TProfile.h:136
 TProfile.h:137
 TProfile.h:138