Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
TProfile3D.h
Go to the documentation of this file.
1// @(#)root/hist:$Id$
2// Author: Rene Brun 17/05/2006
3
4/*************************************************************************
5 * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *
6 * All rights reserved. *
7 * *
8 * For the licensing terms see $ROOTSYS/LICENSE. *
9 * For the list of contributors see $ROOTSYS/README/CREDITS. *
10 *************************************************************************/
11
12#ifndef ROOT_TProfile3D
13#define ROOT_TProfile3D
14
15
16//////////////////////////////////////////////////////////////////////////
17// //
18// TProfile3D //
19// //
20// Profile3D histogram class. //
21// //
22//////////////////////////////////////////////////////////////////////////
23
24#include "TH3.h"
25#include "TProfile.h"
26
27class TProfile3D : public TH3D {
28
29public:
30 friend class TProfileHelper;
31 friend class TH1Merger;
32
33protected:
34 TArrayD fBinEntries; ///< Number of entries per bin
35 EErrorType fErrorMode; ///< Option to compute errors
36 Double_t fTmin; ///< Lower limit in T (if set)
37 Double_t fTmax; ///< Upper limit in T (if set)
38 Bool_t fScaling; ///<! True when TProfile3D::Scale is called
39 Double_t fTsumwt; ///< Total Sum of weight*T
40 Double_t fTsumwt2; ///< Total Sum of weight*T*T
41 TArrayD fBinSumw2; ///< Array of sum of squares of weights per bin
42 static Bool_t fgApproximate; ///< Bin error approximation option
43
44 Int_t BufferFill(Double_t, Double_t) override {return -2;} //may not use
45 Int_t BufferFill(Double_t, Double_t, Double_t) override {return -2;} //may not use
46 Int_t BufferFill(Double_t, Double_t, Double_t, Double_t) override {return -2;} //may not use
48
49 // helper methods for the Merge unification in TProfileHelper
50 void SetBins(const Int_t* nbins,const Double_t* range) { SetBins(nbins[0], range[0], range[1],
51 nbins[1], range[2], range[3],
52 nbins[2], range[4], range[5]); };
53 Int_t Fill(const Double_t* v) { return Fill(v[0], v[1], v[2], v[3], v[4]); };
54
55
56 using TH3::Fill;
57 Int_t Fill(Double_t, Double_t,Double_t) override {return TH3::Fill(0); } //MayNotUse
58 Int_t Fill(const char *, const char *, const char *, Double_t) override {return TH3::Fill(0); } //MayNotUse
59 Int_t Fill(const char *, Double_t , const char *, Double_t) override {return TH3::Fill(0); } //MayNotUse
60 Int_t Fill(const char *, const char *, Double_t, Double_t) override {return TH3::Fill(0); } //MayNotUse
61 Int_t Fill(Double_t, const char *, const char *, Double_t) override {return TH3::Fill(0); } //MayNotUse
62 Int_t Fill(Double_t, const char *, Double_t, Double_t) override {return TH3::Fill(0); } //MayNotUse
63 Int_t Fill(Double_t, Double_t, const char *, Double_t) override {return TH3::Fill(0); } //MayNotUse
64
65 Double_t RetrieveBinContent(Int_t bin) const override { return (fBinEntries.fArray[bin] > 0) ? fArray[bin]/fBinEntries.fArray[bin] : 0; }
66 //virtual void UpdateBinContent(Int_t bin, Double_t content);
67 Double_t GetBinErrorSqUnchecked(Int_t bin) const override { Double_t err = GetBinError(bin); return err*err; }
68
69 TProfile2D *DoProjectProfile2D(const char* name, const char * title, const TAxis* projX, const TAxis* projY,
70 bool originalRange, bool useUF, bool useOF) const override;
71
72private:
74 Double_t *GetB2() {return fBinSumw2.fN ? &fBinSumw2.fArray[0] : nullptr;}
75 Double_t *GetW() {return &fArray[0];}
76 Double_t *GetW2() {return &fSumw2.fArray[0];}
77 void SetBins(Int_t, Double_t, Double_t) override
78 { MayNotUse("SetBins(Int_t, Double_t, Double_t"); }
79 void SetBins(Int_t, const Double_t*) override
80 { MayNotUse("SetBins(Int_t, const Double_t*"); }
82 { MayNotUse("SetBins(Int_t, Double_t, Double_t, Int_t, Double_t, Double_t"); }
83 void SetBins(Int_t, const Double_t*, Int_t, const Double_t*) override
84 { MayNotUse("SetBins(Int_t, const Double_t*, Int_t, const Double_t*"); }
85
86public:
87 TProfile3D();
88 TProfile3D(const char *name,const char *title,Int_t nbinsx,Double_t xlow,Double_t xup
89 ,Int_t nbinsy,Double_t ylow,Double_t yup
90 ,Int_t nbinsz,Double_t zlow,Double_t zup, Option_t *option="");
91 TProfile3D(const char *name,const char *title,Int_t nbinsx,const Double_t *xbins
92 ,Int_t nbinsy,const Double_t *ybins
93 ,Int_t nbinsz,const Double_t *zbins,Option_t *option="");
94 TProfile3D(const TProfile3D &profile);
95 TProfile3D &operator=(const TProfile3D &profile);
96 ~TProfile3D() override;
97 Bool_t Add(TF1 *h1, Double_t c1=1, Option_t *option="") override;
98 Bool_t Add(const TH1 *h1, Double_t c1=1) override;
99 Bool_t Add(const TH1 *h1, const TH1 *h2, Double_t c1=1, Double_t c2=1) override;
100 static void Approximate(Bool_t approx=kTRUE);
101 void BuildOptions(Double_t tmin, Double_t tmax, Option_t *option);
102 Int_t BufferEmpty(Int_t action=0) override;
103 void Copy(TObject &hnew) const override;
104 Bool_t Divide(TF1 *h1, Double_t c1=1) override;
105 Bool_t Divide(const TH1 *h1) override;
106 Bool_t Divide(const TH1 *h1, const TH1 *h2, Double_t c1=1, Double_t c2=1, Option_t *option="") override;
107 void ExtendAxis(Double_t x, TAxis *axis) override;
108 Int_t Fill(Double_t x, Double_t y, Double_t z, Double_t t) override;
110 Double_t GetBinContent(Int_t bin) const override;
112 { MayNotUse("GetBinContent(Int_t, Int_t"); return -1; }
113 Double_t GetBinContent(Int_t binx, Int_t biny, Int_t binz) const override {return GetBinContent(GetBin(binx,biny,binz));}
114 Double_t GetBinError(Int_t bin) const override;
116 { MayNotUse("GetBinError(Int_t, Int_t"); return -1; }
117 Double_t GetBinError(Int_t binx, Int_t biny, Int_t binz) const override {return GetBinError(GetBin(binx,biny,binz));}
118 virtual Double_t GetBinEntries(Int_t bin) const;
120 virtual TArrayD *GetBinSumw2() {return &fBinSumw2;}
121 virtual const TArrayD *GetBinSumw2() const {return &fBinSumw2;}
122 Option_t *GetErrorOption() const;
123 void GetStats(Double_t *stats) const override;
124 virtual Double_t GetTmin() const {return fTmin;}
125 virtual Double_t GetTmax() const {return fTmax;}
126 void LabelsDeflate(Option_t *axis="X") override;
127 void LabelsInflate(Option_t *axis="X") override;
128 void LabelsOption(Option_t *option="h", Option_t *axis="X") override;
129 Long64_t Merge(TCollection *list) override;
130 Bool_t Multiply(TF1 *h1, Double_t c1=1) override;
131 Bool_t Multiply(const TH1 *h1) override;
132 Bool_t Multiply(const TH1 *h1, const TH1 *h2, Double_t c1=1, Double_t c2=1, Option_t *option="") override;
133 virtual TH3D *ProjectionXYZ(const char *name="_pxyz", Option_t *option="e") const;
134 TProfile2D *Project3DProfile(Option_t *option="xy") const override; // *MENU*
135 void PutStats(Double_t *stats) override;
136 void Reset(Option_t *option="") override;
137 void SavePrimitive(std::ostream &out, Option_t *option = "") override;
138 void Scale(Double_t c1=1, Option_t *option="") override;
139 virtual void SetBinEntries(Int_t bin, Double_t w);
140 void SetBins(Int_t nbinsx, Double_t xmin, Double_t xmax,
142 Int_t nbinsz, Double_t zmin, Double_t zmax) override;
143 void SetBins(Int_t nx, const Double_t *xBins, Int_t ny, const Double_t * yBins, Int_t nz,
144 const Double_t *zBins) override;
145 void SetBinsLength(Int_t n=-1) override;
146 void SetBuffer(Int_t buffersize, Option_t *opt="") override;
147 virtual void SetErrorOption(Option_t *option=""); // *MENU*
148 void Sumw2(Bool_t flag = kTRUE) override;
149
150 ClassDefOverride(TProfile3D,8) //Profile3D histogram class
151};
152
153#endif
bool Bool_t
Definition RtypesCore.h:63
int Int_t
Definition RtypesCore.h:45
double Double_t
Definition RtypesCore.h:59
long long Long64_t
Definition RtypesCore.h:80
constexpr Bool_t kTRUE
Definition RtypesCore.h:100
const char Option_t
Definition RtypesCore.h:66
#define ClassDefOverride(name, id)
Definition Rtypes.h:341
void MayNotUse(const char *method)
This function can be used in classes that should override a certain function, but in the inherited cl...
Definition TError.cxx:168
Option_t Option_t option
char name[80]
Definition TGX11.cxx:110
float xmin
float ymin
float xmax
float ymax
EErrorType
Definition TProfile.h:28
Array of doubles (64 bits per element).
Definition TArrayD.h:27
Double_t * fArray
Definition TArrayD.h:30
void Reset()
Definition TArrayD.h:47
Int_t fN
Definition TArray.h:38
Class to manage histogram axis.
Definition TAxis.h:31
Collection abstract base class.
Definition TCollection.h:65
1-Dim function class
Definition TF1.h:233
TH1 is the base class of all histogram classes in ROOT.
Definition TH1.h:59
TArrayD fSumw2
Array of sum of squares of weights.
Definition TH1.h:104
3-D histogram with a double per channel (see TH1 documentation)
Definition TH3.h:344
Int_t Fill(Double_t) override
Invalid Fill method.
Definition TH3.cxx:329
Int_t GetBin(Int_t binx, Int_t biny, Int_t binz) const override
See comments in TH1::GetBin.
Definition TH3.cxx:1078
Mother of all ROOT objects.
Definition TObject.h:41
Profile2D histograms are used to display the mean value of Z and its error for each cell in X,...
Definition TProfile2D.h:27
Profile3D histograms are used to display the mean value of T and its RMS for each cell in X,...
Definition TProfile3D.h:27
TProfile3D & operator=(const TProfile3D &profile)
Double_t GetBinErrorSqUnchecked(Int_t bin) const override
Definition TProfile3D.h:67
TProfile2D * DoProjectProfile2D(const char *name, const char *title, const TAxis *projX, const TAxis *projY, bool originalRange, bool useUF, bool useOF) const override
Internal method to project to a 2D Profile.
Double_t * GetW()
Definition TProfile3D.h:75
Long64_t Merge(TCollection *list) override
Merge all histograms in the collection in this histogram.
static Bool_t fgApproximate
Bin error approximation option.
Definition TProfile3D.h:42
Double_t RetrieveBinContent(Int_t bin) const override
Raw retrieval of bin content on internal data structure see convention for numbering bins in TH1::Get...
Definition TProfile3D.h:65
Option_t * GetErrorOption() const
Return option to compute profile2D errors.
Bool_t fScaling
! True when TProfile3D::Scale is called
Definition TProfile3D.h:38
void SetBins(const Int_t *nbins, const Double_t *range)
Definition TProfile3D.h:50
Int_t Fill(Double_t, Double_t, Double_t) override
Increment cell defined by x,y,z by 1 .
Definition TProfile3D.h:57
void PutStats(Double_t *stats) override
Replace current statistics with the values in array stats.
void Copy(TObject &hnew) const override
Copy a Profile3D histogram to a new profile2D histogram.
void SetBins(Int_t, const Double_t *) override
Redefine x axis parameters with variable bin sizes.
Definition TProfile3D.h:79
Int_t BufferFill(Double_t, Double_t) override
accumulate arguments in buffer.
Definition TProfile3D.h:44
Double_t GetBinContent(Int_t binx, Int_t biny, Int_t binz) const override
Definition TProfile3D.h:113
Int_t Fill(Double_t, const char *, Double_t, Double_t) override
Increment cell defined by x,namey,z by a weight w.
Definition TProfile3D.h:62
Double_t fTsumwt2
Total Sum of weight*T*T.
Definition TProfile3D.h:40
virtual Double_t GetBinEffectiveEntries(Int_t bin)
Return bin effective entries for a weighted filled Profile histogram.
void GetStats(Double_t *stats) const override
fill the array stats from the contents of this profile.
Int_t Fill(const char *, const char *, const char *, Double_t) override
Increment cell defined by namex,namey,namez by a weight w.
Definition TProfile3D.h:58
Bool_t Multiply(TF1 *h1, Double_t c1=1) override
Performs the operation: this = this*c1*f1 .
void LabelsOption(Option_t *option="h", Option_t *axis="X") override
Set option(s) to draw axis with labels.
TProfile3D()
Default constructor for Profile3D histograms.
Int_t Fill(const char *, Double_t, const char *, Double_t) override
Increment cell defined by namex,y,namez by a weight w.
Definition TProfile3D.h:59
virtual TArrayD * GetBinSumw2()
Definition TProfile3D.h:120
TArrayD fBinEntries
Number of entries per bin.
Definition TProfile3D.h:34
void LabelsDeflate(Option_t *axis="X") override
Reduce the number of bins for this axis to the number of bins having a label.
void SetBins(Int_t, const Double_t *, Int_t, const Double_t *) override
Redefine x and y axis parameters with variable bin sizes.
Definition TProfile3D.h:83
~TProfile3D() override
Default destructor for Profile3D histograms.
void ExtendAxis(Double_t x, TAxis *axis) override
Profile histogram is resized along axis such that x is in the axis range.
Double_t fTmin
Lower limit in T (if set)
Definition TProfile3D.h:36
void Scale(Double_t c1=1, Option_t *option="") override
Multiply this profile2D by a constant c1.
void Sumw2(Bool_t flag=kTRUE) override
Create/Delete structure to store sum of squares of weights per bin This is needed to compute the corr...
void LabelsInflate(Option_t *axis="X") override
Double the number of bins for axis.
TProfile2D * Project3DProfile(Option_t *option="xy") const override
Project a 3-D profile into a 2D-profile histogram depending on the option parameter.
virtual void SetBinEntries(Int_t bin, Double_t w)
Set the number of entries in bin.
Int_t BufferFill(Double_t, Double_t, Double_t, Double_t) override
Accumulate arguments in buffer.
Definition TProfile3D.h:46
void BuildOptions(Double_t tmin, Double_t tmax, Option_t *option)
Set Profile3D histogram structure and options.
Int_t Fill(const Double_t *v)
Definition TProfile3D.h:53
TArrayD fBinSumw2
Array of sum of squares of weights per bin.
Definition TProfile3D.h:41
Double_t * GetB()
Definition TProfile3D.h:73
Int_t BufferEmpty(Int_t action=0) override
Fill histogram with all entries in the buffer.
void SetBuffer(Int_t buffersize, Option_t *opt="") override
Set the buffer size in units of 8 bytes (double).
void SavePrimitive(std::ostream &out, Option_t *option="") override
Save primitive as a C++ statement(s) on output stream out.
virtual Double_t GetTmax() const
Definition TProfile3D.h:125
virtual void SetErrorOption(Option_t *option="")
Set option to compute profile3D errors.
Int_t BufferFill(Double_t, Double_t, Double_t) override
Definition TProfile3D.h:45
void SetBins(Int_t, Double_t, Double_t) override
Redefine x axis parameters.
Definition TProfile3D.h:77
virtual TH3D * ProjectionXYZ(const char *name="_pxyz", Option_t *option="e") const
Project this profile3D into a 3-D histogram along X,Y,Z.
Double_t GetBinError(Int_t, Int_t) const override
Definition TProfile3D.h:115
Double_t * GetB2()
Definition TProfile3D.h:74
Bool_t Add(TF1 *h1, Double_t c1=1, Option_t *option="") override
Performs the operation: this = this + c1*f1 .
Double_t GetBinContent(Int_t bin) const override
Return bin content of a Profile3D histogram.
EErrorType fErrorMode
Option to compute errors.
Definition TProfile3D.h:35
Int_t Fill(Double_t, const char *, const char *, Double_t) override
Increment cell defined by x,namey,namez by a weight w.
Definition TProfile3D.h:61
virtual const TArrayD * GetBinSumw2() const
Definition TProfile3D.h:121
void SetBinsLength(Int_t n=-1) override
Set total number of bins including under/overflow.
virtual Double_t GetBinEntries(Int_t bin) const
Return bin entries of a Profile3D histogram.
Double_t GetBinError(Int_t binx, Int_t biny, Int_t binz) const override
Definition TProfile3D.h:117
virtual Double_t GetTmin() const
Definition TProfile3D.h:124
Double_t * GetW2()
Definition TProfile3D.h:76
Bool_t Divide(TF1 *h1, Double_t c1=1) override
Performs the operation: this = this/(c1*f1) .
Double_t GetBinContent(Int_t, Int_t) const override
Definition TProfile3D.h:111
Double_t fTsumwt
Total Sum of weight*T.
Definition TProfile3D.h:39
Int_t Fill(Double_t, Double_t, const char *, Double_t) override
Increment cell defined by x,y,namez by a weight w.
Definition TProfile3D.h:63
Int_t Fill(const char *, const char *, Double_t, Double_t) override
Increment cell defined by namex,namey,z by a weight w.
Definition TProfile3D.h:60
void SetBins(Int_t, Double_t, Double_t, Int_t, Double_t, Double_t) override
Redefine x and y axis parameters.
Definition TProfile3D.h:81
static void Approximate(Bool_t approx=kTRUE)
Set the fgApproximate flag.
Double_t fTmax
Upper limit in T (if set)
Definition TProfile3D.h:37
Double_t GetBinError(Int_t bin) const override
Return bin error of a Profile3D histogram.
Double_t y[n]
Definition legend1.C:17
return c1
Definition legend1.C:41
Double_t x[n]
Definition legend1.C:17
const Int_t n
Definition legend1.C:16
TH1F * h1
Definition legend1.C:5
return c2
Definition legend2.C:14