Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
TH2.h
Go to the documentation of this file.
1// @(#)root/hist:$Id$
2// Author: Rene Brun 26/12/94
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_TH2
13#define ROOT_TH2
14
15
16//////////////////////////////////////////////////////////////////////////
17// //
18// TH2 //
19// //
20// 2-Dim histogram base class. //
21// //
22//////////////////////////////////////////////////////////////////////////
23
24#include "TH1.h"
25#include "TMatrixFBasefwd.h"
26#include "TMatrixDBasefwd.h"
27
28class TProfile;
29
30class TH2 : public TH1 {
31
32protected:
33 Double_t fScalefactor; ///< Scale factor
34 Double_t fTsumwy; ///< Total Sum of weight*Y
35 Double_t fTsumwy2; ///< Total Sum of weight*Y*Y
36 Double_t fTsumwxy; ///< Total Sum of weight*X*Y
37
38 TH2();
39 TH2(const char *name,const char *title,Int_t nbinsx,Double_t xlow,Double_t xup
40 ,Int_t nbinsy,Double_t ylow,Double_t yup);
41 TH2(const char *name,const char *title,Int_t nbinsx,const Double_t *xbins
42 ,Int_t nbinsy,Double_t ylow,Double_t yup);
43 TH2(const char *name,const char *title,Int_t nbinsx,Double_t xlow,Double_t xup
44 ,Int_t nbinsy,const Double_t *ybins);
45 TH2(const char *name,const char *title,Int_t nbinsx,const Double_t *xbins
46 ,Int_t nbinsy,const Double_t *ybins);
47 TH2(const char *name,const char *title,Int_t nbinsx,const Float_t *xbins
48 ,Int_t nbinsy,const Float_t *ybins);
49
51 virtual TH1D *DoProjection(bool onX, const char *name, Int_t firstbin, Int_t lastbin, Option_t *option) const;
52 virtual TProfile *DoProfile(bool onX, const char *name, Int_t firstbin, Int_t lastbin, Option_t *option) const;
53 virtual TH1D *DoQuantiles(bool onX, const char *name, Double_t prob) const;
54 virtual void DoFitSlices(bool onX, TF1 *f1, Int_t firstbin, Int_t lastbin, Int_t cut, Option_t *option, TObjArray* arr);
55
56 Int_t BufferFill(Double_t, Double_t) override {return -2;} //may not use
57 Int_t Fill(Double_t) override; //MayNotUse
58 Int_t Fill(const char*, Double_t) override { return Fill(0);} //MayNotUse
59
60 Double_t Interpolate(Double_t x) const override; // may not use
61
62private:
63
64 TH2(const TH2&) = delete;
65 TH2& operator=(const TH2&) = delete;
66
67 // make private methods which have a TH1 signature and should not
68 using TH1::Integral;
70
71public:
72 ~TH2() override;
73 Int_t BufferEmpty(Int_t action=0) override;
74 void Copy(TObject &hnew) const override;
75 Int_t Fill(Double_t x, Double_t y) override;
77 virtual Int_t Fill(Double_t x, const char *namey, Double_t w);
78 virtual Int_t Fill(const char *namex, Double_t y, Double_t w);
79 virtual Int_t Fill(const char *namex, const char *namey, Double_t w);
80 void FillN(Int_t, const Double_t *, const Double_t *, Int_t) override {} //MayNotUse
81 void FillN(Int_t ntimes, const Double_t *x, const Double_t *y, const Double_t *w, Int_t stride=1) override;
82 void FillRandom(const char *fname, Int_t ntimes=5000, TRandom *rng = nullptr) override;
83 void FillRandom(TH1 *h, Int_t ntimes=5000, TRandom *rng = nullptr) override;
84 virtual void FitSlicesX(TF1 *f1 = nullptr, Int_t firstybin=0, Int_t lastybin=-1, Int_t cut=0, Option_t *option="QNR", TObjArray* arr = nullptr);
85 virtual void FitSlicesY(TF1 *f1 = nullptr, Int_t firstxbin=0, Int_t lastxbin=-1, Int_t cut=0, Option_t *option="QNR", TObjArray* arr = nullptr);
86 Int_t GetBin(Int_t binx, Int_t biny, Int_t binz = 0) const override;
87 virtual Double_t GetBinWithContent2(Double_t c, Int_t &binx, Int_t &biny, Int_t firstxbin=1, Int_t lastxbin=-1,Int_t firstybin=1, Int_t lastybin=-1, Double_t maxdiff=0) const;
89 Double_t GetBinContent(Int_t binx, Int_t biny) const override { return TH1::GetBinContent( GetBin(binx, biny) ); }
90 Double_t GetBinContent(Int_t binx, Int_t biny, Int_t) const override { return TH1::GetBinContent( GetBin(binx, biny) ); }
93 virtual Double_t GetBinErrorLow(Int_t binx, Int_t biny) { return TH1::GetBinErrorLow( GetBin(binx, biny) ); }
94 virtual Double_t GetBinErrorUp(Int_t binx, Int_t biny) { return TH1::GetBinErrorUp( GetBin(binx, biny) ); }
95 virtual Double_t GetCorrelationFactor(Int_t axis1=1,Int_t axis2=2) const;
96 virtual Double_t GetCovariance(Int_t axis1=1,Int_t axis2=2) const;
97 virtual void GetRandom2(Double_t &x, Double_t &y, TRandom * rng = nullptr);
98 void GetStats(Double_t *stats) const override;
99 Double_t Integral(Option_t *option="") const override;
100 //virtual Double_t Integral(Int_t, Int_t, Option_t * ="") const {return 0;}
101 virtual Double_t Integral(Int_t binx1, Int_t binx2, Int_t biny1, Int_t biny2, Option_t *option="") const;
102 virtual Double_t Integral(Int_t, Int_t, Int_t, Int_t, Int_t, Int_t, Option_t * ="") const {return 0;}
103 virtual Double_t IntegralAndError(Int_t binx1, Int_t binx2, Int_t biny1, Int_t biny2, Double_t & err, Option_t *option="") const;
104 Double_t Interpolate(Double_t x, Double_t y) const override;
105 Double_t Interpolate(Double_t x, Double_t y, Double_t z) const override;
106 Double_t KolmogorovTest(const TH1 *h2, Option_t *option="") const override;
107 TH2 *RebinX(Int_t ngroup=2, const char *newname="") override; // *MENU*
108 virtual TH2 *RebinY(Int_t ngroup=2, const char *newname=""); // *MENU*
109 TH2 *Rebin(Int_t ngroup=2, const char*newname="", const Double_t *xbins = nullptr) override; // re-implementation of the TH1 function using RebinX
110 virtual TH2 *Rebin2D(Int_t nxgroup=2, Int_t nygroup=2, const char *newname=""); // *MENU*
111 TProfile *ProfileX(const char *name="_pfx", Int_t firstybin=1, Int_t lastybin=-1, Option_t *option="") const; // *MENU*
112 TProfile *ProfileY(const char *name="_pfy", Int_t firstxbin=1, Int_t lastxbin=-1, Option_t *option="") const; // *MENU*
113 TH1D *ProjectionX(const char *name="_px", Int_t firstybin=0, Int_t lastybin=-1, Option_t *option="") const; // *MENU*
114 TH1D *ProjectionY(const char *name="_py", Int_t firstxbin=0, Int_t lastxbin=-1, Option_t *option="") const; // *MENU*
115 void PutStats(Double_t *stats) override;
116 TH1D *QuantilesX(Double_t prob = 0.5, const char * name = "_qx" ) const;
117 TH1D *QuantilesY(Double_t prob = 0.5, const char * name = "_qy" ) const;
118 void Reset(Option_t *option="") override;
119 void SetBinContent(Int_t bin, Double_t content) override;
120 void SetBinContent(Int_t binx, Int_t biny, Double_t content) override { SetBinContent(GetBin(binx, biny), content); }
121 void SetBinContent(Int_t binx, Int_t biny, Int_t, Double_t content) override { SetBinContent(GetBin(binx, biny), content); }
122 virtual void SetShowProjectionX(Int_t nbins=1); // *MENU*
123 virtual void SetShowProjectionY(Int_t nbins=1); // *MENU*
124 virtual void SetShowProjectionXY(Int_t nbinsY=1, Int_t nbinsX=1); // *MENU*
125 TH1 *ShowBackground(Int_t niter=20, Option_t *option="same") override;
126 Int_t ShowPeaks(Double_t sigma=2, Option_t *option="", Double_t threshold=0.05) override; // *MENU*
127 void Smooth(Int_t ntimes=1, Option_t *option="") override; // *MENU*
128
129 ClassDefOverride(TH2,5) //2-Dim histogram base class
130};
131
132
133//______________________________________________________________________________
134
135class TH2C : public TH2, public TArrayC {
136
137public:
138 TH2C();
139 TH2C(const char *name,const char *title,Int_t nbinsx,Double_t xlow,Double_t xup
140 ,Int_t nbinsy,Double_t ylow,Double_t yup);
141 TH2C(const char *name,const char *title,Int_t nbinsx,const Double_t *xbins
142 ,Int_t nbinsy,Double_t ylow,Double_t yup);
143 TH2C(const char *name,const char *title,Int_t nbinsx,Double_t xlow,Double_t xup
144 ,Int_t nbinsy,const Double_t *ybins);
145 TH2C(const char *name,const char *title,Int_t nbinsx,const Double_t *xbins
146 ,Int_t nbinsy,const Double_t *ybins);
147 TH2C(const char *name,const char *title,Int_t nbinsx,const Float_t *xbins
148 ,Int_t nbinsy,const Float_t *ybins);
149 TH2C(const TH2C &h2c);
150 ~TH2C() override;
151
152 void AddBinContent(Int_t bin) override;
153 void AddBinContent(Int_t bin, Double_t w) override;
154 void Copy(TObject &hnew) const override;
155 void Reset(Option_t *option="") override;
156 void SetBinsLength(Int_t n=-1) override;
157
158 TH2C& operator=(const TH2C &h1);
159 friend TH2C operator*(Float_t c1, TH2C &h1);
160 friend TH2C operator*(TH2C &h1, Float_t c1) {return operator*(c1,h1);}
161 friend TH2C operator+(TH2C &h1, TH2C &h2);
162 friend TH2C operator-(TH2C &h1, TH2C &h2);
163 friend TH2C operator*(TH2C &h1, TH2C &h2);
164 friend TH2C operator/(TH2C &h1, TH2C &h2);
165
166protected:
167 Double_t RetrieveBinContent(Int_t bin) const override { return Double_t (fArray[bin]); }
168 void UpdateBinContent(Int_t bin, Double_t content) override { fArray[bin] = Char_t (content); }
169
170 ClassDefOverride(TH2C,4) //2-Dim histograms (one char per channel)
171};
172
173
174//______________________________________________________________________________
175
176class TH2S : public TH2, public TArrayS {
177
178public:
179 TH2S();
180 TH2S(const char *name,const char *title,Int_t nbinsx,Double_t xlow,Double_t xup
181 ,Int_t nbinsy,Double_t ylow,Double_t yup);
182 TH2S(const char *name,const char *title,Int_t nbinsx,const Double_t *xbins
183 ,Int_t nbinsy,Double_t ylow,Double_t yup);
184 TH2S(const char *name,const char *title,Int_t nbinsx,Double_t xlow,Double_t xup
185 ,Int_t nbinsy,const Double_t *ybins);
186 TH2S(const char *name,const char *title,Int_t nbinsx,const Double_t *xbins
187 ,Int_t nbinsy,const Double_t *ybins);
188 TH2S(const char *name,const char *title,Int_t nbinsx,const Float_t *xbins
189 ,Int_t nbinsy,const Float_t *ybins);
190 TH2S(const TH2S &h2s);
191 ~TH2S() override;
192
193 void AddBinContent(Int_t bin) override;
194 void AddBinContent(Int_t bin, Double_t w) override;
195 void Copy(TObject &hnew) const override;
196 void Reset(Option_t *option="") override;
197 void SetBinsLength(Int_t n=-1) override;
198
199 TH2S& operator=(const TH2S &h1);
200 friend TH2S operator*(Float_t c1, TH2S &h1);
201 friend TH2S operator*(TH2S &h1, Float_t c1) {return operator*(c1,h1);}
202 friend TH2S operator+(TH2S &h1, TH2S &h2);
203 friend TH2S operator-(TH2S &h1, TH2S &h2);
204 friend TH2S operator*(TH2S &h1, TH2S &h2);
205 friend TH2S operator/(TH2S &h1, TH2S &h2);
206
207protected:
208 Double_t RetrieveBinContent(Int_t bin) const override { return Double_t (fArray[bin]); }
209 void UpdateBinContent(Int_t bin, Double_t content) override { fArray[bin] = Short_t (content); }
210
211 ClassDefOverride(TH2S,4) //2-Dim histograms (one short per channel)
212};
213
214
215//______________________________________________________________________________
216
217class TH2I : public TH2, public TArrayI {
218
219public:
220 TH2I();
221 TH2I(const char *name,const char *title,Int_t nbinsx,Double_t xlow,Double_t xup
222 ,Int_t nbinsy,Double_t ylow,Double_t yup);
223 TH2I(const char *name,const char *title,Int_t nbinsx,const Double_t *xbins
224 ,Int_t nbinsy,Double_t ylow,Double_t yup);
225 TH2I(const char *name,const char *title,Int_t nbinsx,Double_t xlow,Double_t xup
226 ,Int_t nbinsy,const Double_t *ybins);
227 TH2I(const char *name,const char *title,Int_t nbinsx,const Double_t *xbins
228 ,Int_t nbinsy,const Double_t *ybins);
229 TH2I(const char *name,const char *title,Int_t nbinsx,const Float_t *xbins
230 ,Int_t nbinsy,const Float_t *ybins);
231 TH2I(const TH2I &h2i);
232 ~TH2I() override;
233
234 void AddBinContent(Int_t bin) override;
235 void AddBinContent(Int_t bin, Double_t w) override;
236 void Copy(TObject &hnew) const override;
237 void Reset(Option_t *option="") override;
238 void SetBinsLength(Int_t n=-1) override;
239
240 TH2I& operator=(const TH2I &h1);
241 friend TH2I operator*(Float_t c1, TH2I &h1);
242 friend TH2I operator*(TH2I &h1, Float_t c1) {return operator*(c1,h1);}
243 friend TH2I operator+(TH2I &h1, TH2I &h2);
244 friend TH2I operator-(TH2I &h1, TH2I &h2);
245 friend TH2I operator*(TH2I &h1, TH2I &h2);
246 friend TH2I operator/(TH2I &h1, TH2I &h2);
247
248protected:
249 Double_t RetrieveBinContent(Int_t bin) const override { return Double_t (fArray[bin]); }
250 void UpdateBinContent(Int_t bin, Double_t content) override { fArray[bin] = Int_t (content); }
251
252 ClassDefOverride(TH2I,4) //2-Dim histograms (one 32 bit integer per channel)
253};
254
255//______________________________________________________________________________
256
257class TH2L : public TH2, public TArrayL64 {
258
259public:
260 TH2L();
261 TH2L(const char *name,const char *title,Int_t nbinsx,Double_t xlow,Double_t xup
262 ,Int_t nbinsy,Double_t ylow,Double_t yup);
263 TH2L(const char *name,const char *title,Int_t nbinsx,const Double_t *xbins
264 ,Int_t nbinsy,Double_t ylow,Double_t yup);
265 TH2L(const char *name,const char *title,Int_t nbinsx,Double_t xlow,Double_t xup
266 ,Int_t nbinsy,const Double_t *ybins);
267 TH2L(const char *name,const char *title,Int_t nbinsx,const Double_t *xbins
268 ,Int_t nbinsy,const Double_t *ybins);
269 TH2L(const char *name,const char *title,Int_t nbinsx,const Float_t *xbins
270 ,Int_t nbinsy,const Float_t *ybins);
271 TH2L(const TH2L &h2l);
272 ~TH2L() override;
273 void AddBinContent(Int_t bin) override;
274 void AddBinContent(Int_t bin, Double_t w) override;
275 void Copy(TObject &hnew) const override;
276 void Reset(Option_t *option="") override;
277 void SetBinsLength(Int_t n=-1) override;
278 TH2L& operator=(const TH2L &h1);
279 friend TH2L operator*(Float_t c1, TH2L &h1);
280 friend TH2L operator*(TH2L &h1, Float_t c1) {return operator*(c1,h1);}
281 friend TH2L operator+(TH2L &h1, TH2L &h2);
282 friend TH2L operator-(TH2L &h1, TH2L &h2);
283 friend TH2L operator*(TH2L &h1, TH2L &h2);
284 friend TH2L operator/(TH2L &h1, TH2L &h2);
285
286protected:
287 Double_t RetrieveBinContent(Int_t bin) const override { return Double_t (fArray[bin]); }
288 void UpdateBinContent(Int_t bin, Double_t content) override { fArray[bin] = Int_t (content); }
289
290 ClassDefOverride(TH2L,0) //2-Dim histograms (one 64 bit integer per channel)
291};
292
293//______________________________________________________________________________
294
295class TH2F : public TH2, public TArrayF {
296
297public:
298 TH2F();
299 TH2F(const char *name,const char *title,Int_t nbinsx,Double_t xlow,Double_t xup
300 ,Int_t nbinsy,Double_t ylow,Double_t yup);
301 TH2F(const char *name,const char *title,Int_t nbinsx,const Double_t *xbins
302 ,Int_t nbinsy,Double_t ylow,Double_t yup);
303 TH2F(const char *name,const char *title,Int_t nbinsx,Double_t xlow,Double_t xup
304 ,Int_t nbinsy,const Double_t *ybins);
305 TH2F(const char *name,const char *title,Int_t nbinsx,const Double_t *xbins
306 ,Int_t nbinsy,const Double_t *ybins);
307 TH2F(const char *name,const char *title,Int_t nbinsx,const Float_t *xbins
308 ,Int_t nbinsy,const Float_t *ybins);
309 TH2F(const TMatrixFBase &m);
310 TH2F(const TH2F &h2f);
311 ~TH2F() override;
312
313 void AddBinContent(Int_t bin) override {++fArray[bin];}
314 void AddBinContent(Int_t bin, Double_t w) override
315 {fArray[bin] += Float_t (w);}
316 void Copy(TObject &hnew) const override;
317 void Reset(Option_t *option="") override;
318 void SetBinsLength(Int_t n=-1) override;
319
320 TH2F& operator=(const TH2F &h1);
321 friend TH2F operator*(Float_t c1, TH2F &h1);
322 friend TH2F operator*(TH2F &h1, Float_t c1);
323 friend TH2F operator+(TH2F &h1, TH2F &h2);
324 friend TH2F operator-(TH2F &h1, TH2F &h2);
325 friend TH2F operator*(TH2F &h1, TH2F &h2);
326 friend TH2F operator/(TH2F &h1, TH2F &h2);
327
328protected:
329 Double_t RetrieveBinContent(Int_t bin) const override { return Double_t (fArray[bin]); }
330 void UpdateBinContent(Int_t bin, Double_t content) override { fArray[bin] = Float_t (content); }
331
332 ClassDefOverride(TH2F,4) //2-Dim histograms (one float per channel)
333};
334
335
336//______________________________________________________________________________
337
338class TH2D : public TH2, public TArrayD {
339
340public:
341 TH2D();
342 TH2D(const char *name,const char *title,Int_t nbinsx,Double_t xlow,Double_t xup
343 ,Int_t nbinsy,Double_t ylow,Double_t yup);
344 TH2D(const char *name,const char *title,Int_t nbinsx,const Double_t *xbins
345 ,Int_t nbinsy,Double_t ylow,Double_t yup);
346 TH2D(const char *name,const char *title,Int_t nbinsx,Double_t xlow,Double_t xup
347 ,Int_t nbinsy,const Double_t *ybins);
348 TH2D(const char *name,const char *title,Int_t nbinsx,const Double_t *xbins
349 ,Int_t nbinsy,const Double_t *ybins);
350 TH2D(const char *name,const char *title,Int_t nbinsx,const Float_t *xbins
351 ,Int_t nbinsy,const Float_t *ybins);
352 TH2D(const TMatrixDBase &m);
353 TH2D(const TH2D &h2d);
354 ~TH2D() override;
355
356 void AddBinContent(Int_t bin) override {++fArray[bin];}
357 void AddBinContent(Int_t bin, Double_t w) override
358 {fArray[bin] += Double_t (w);}
359 void Copy(TObject &hnew) const override;
360 void Reset(Option_t *option="") override;
361 void SetBinsLength(Int_t n=-1) override;
362
363 TH2D& operator=(const TH2D &h1);
364 friend TH2D operator*(Float_t c1, TH2D &h1);
365 friend TH2D operator*(TH2D &h1, Float_t c1) {return operator*(c1,h1);}
366 friend TH2D operator+(TH2D &h1, TH2D &h2);
367 friend TH2D operator-(TH2D &h1, TH2D &h2);
368 friend TH2D operator*(TH2D &h1, TH2D &h2);
369 friend TH2D operator/(TH2D &h1, TH2D &h2);
370
371protected:
372 Double_t RetrieveBinContent(Int_t bin) const override { return fArray[bin]; }
373 void UpdateBinContent(Int_t bin, Double_t content) override { fArray[bin] = content; }
374
375 ClassDefOverride(TH2D,4) //2-Dim histograms (one double per channel)
376};
377
378#endif
#define c(i)
Definition RSha256.hxx:101
#define h(i)
Definition RSha256.hxx:106
int Int_t
Definition RtypesCore.h:45
char Char_t
Definition RtypesCore.h:37
float Float_t
Definition RtypesCore.h:57
short Short_t
Definition RtypesCore.h:39
double Double_t
Definition RtypesCore.h:59
const char Option_t
Definition RtypesCore.h:66
#define ClassDefOverride(name, id)
Definition Rtypes.h:341
Option_t Option_t option
char name[80]
Definition TGX11.cxx:110
Array of chars or bytes (8 bits per element).
Definition TArrayC.h:27
Char_t * fArray
Definition TArrayC.h:30
Array of doubles (64 bits per element).
Definition TArrayD.h:27
Double_t * fArray
Definition TArrayD.h:30
void Reset()
Definition TArrayD.h:47
Array of floats (32 bits per element).
Definition TArrayF.h:27
Float_t * fArray
Definition TArrayF.h:30
void Reset()
Definition TArrayF.h:47
Array of integers (32 bits per element).
Definition TArrayI.h:27
Int_t * fArray
Definition TArrayI.h:30
void Reset()
Definition TArrayI.h:47
Array of long64s (64 bits per element).
Definition TArrayL64.h:27
Long64_t * fArray
Definition TArrayL64.h:30
void Reset()
Definition TArrayL64.h:47
Array of shorts (16 bits per element).
Definition TArrayS.h:27
void Reset()
Definition TArrayS.h:47
Short_t * fArray
Definition TArrayS.h:30
1-Dim function class
Definition TF1.h:233
1-D histogram with a double per channel (see TH1 documentation)
Definition TH1.h:664
TH1 is the base class of all histogram classes in ROOT.
Definition TH1.h:59
virtual Double_t IntegralAndError(Int_t binx1, Int_t binx2, Double_t &err, Option_t *option="") const
Return integral of bin contents in range [binx1,binx2] and its error.
Definition TH1.cxx:7933
virtual Double_t GetBinErrorLow(Int_t bin) const
Return lower error associated to bin number bin.
Definition TH1.cxx:9044
virtual Double_t Integral(Option_t *option="") const
Return integral of bin contents.
Definition TH1.cxx:7906
virtual Double_t GetBinContent(Int_t bin) const
Return content of bin number bin.
Definition TH1.cxx:5025
virtual Double_t GetBinErrorUp(Int_t bin) const
Return upper error associated to bin number bin.
Definition TH1.cxx:9075
2-D histogram with a byte per channel (see TH1 documentation)
Definition TH2.h:135
void Reset(Option_t *option="") override
Reset this histogram: contents, errors, etc.
Definition TH2.cxx:2948
friend TH2C operator-(TH2C &h1, TH2C &h2)
Operator -.
Definition TH2.cxx:3040
friend TH2C operator+(TH2C &h1, TH2C &h2)
Operator +.
Definition TH2.cxx:3028
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 TH2.h:167
friend TH2C operator/(TH2C &h1, TH2C &h2)
Operator /.
Definition TH2.cxx:3064
void UpdateBinContent(Int_t bin, Double_t content) override
Raw update of bin content on internal data structure see convention for numbering bins in TH1::GetBin...
Definition TH2.h:168
void AddBinContent(Int_t bin) override
Increment bin content by 1.
Definition TH2.cxx:2917
TH2C()
Constructor.
Definition TH2.cxx:2821
TH2C & operator=(const TH2C &h1)
Operator =.
Definition TH2.cxx:3005
~TH2C() override
Destructor.
Definition TH2.cxx:2831
void Copy(TObject &hnew) const override
Copy.
Definition TH2.cxx:2939
void SetBinsLength(Int_t n=-1) override
Set total number of bins including under/overflow Reallocate bin contents array.
Definition TH2.cxx:2959
friend TH2C operator*(Float_t c1, TH2C &h1)
Operator *.
Definition TH2.cxx:3016
friend TH2C operator*(TH2C &h1, Float_t c1)
Definition TH2.h:160
2-D histogram with a double per channel (see TH1 documentation)
Definition TH2.h:338
void UpdateBinContent(Int_t bin, Double_t content) override
Raw update of bin content on internal data structure see convention for numbering bins in TH1::GetBin...
Definition TH2.h:373
friend TH2D operator-(TH2D &h1, TH2D &h2)
Operator -.
Definition TH2.cxx:4293
friend TH2D operator*(Float_t c1, TH2D &h1)
Operator *.
Definition TH2.cxx:4269
void SetBinsLength(Int_t n=-1) override
Set total number of bins including under/overflow Reallocate bin contents array.
Definition TH2.cxx:4210
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 TH2.h:372
~TH2D() override
Destructor.
Definition TH2.cxx:4083
friend TH2D operator/(TH2D &h1, TH2D &h2)
Operator /.
Definition TH2.cxx:4317
void AddBinContent(Int_t bin, Double_t w) override
Increment bin content by a weight w.
Definition TH2.h:357
void Copy(TObject &hnew) const override
Copy.
Definition TH2.cxx:4190
friend TH2D operator+(TH2D &h1, TH2D &h2)
Operator +.
Definition TH2.cxx:4281
friend TH2D operator*(TH2D &h1, Float_t c1)
Definition TH2.h:365
TH2D()
Constructor.
Definition TH2.cxx:4073
TH2D & operator=(const TH2D &h1)
Operator =.
Definition TH2.cxx:4256
void AddBinContent(Int_t bin) override
Increment bin content by 1.
Definition TH2.h:356
2-D histogram with a float per channel (see TH1 documentation)
Definition TH2.h:295
TH2F()
Constructor.
Definition TH2.cxx:3801
void AddBinContent(Int_t bin) override
Increment bin content by 1.
Definition TH2.h:313
void AddBinContent(Int_t bin, Double_t w) override
Increment bin content by a weight w.
Definition TH2.h:314
friend TH2F operator*(Float_t c1, TH2F &h1)
Operator *.
Definition TH2.cxx:3993
TH2F & operator=(const TH2F &h1)
Operator =.
Definition TH2.cxx:3982
~TH2F() override
Destructor.
Definition TH2.cxx:3811
void Copy(TObject &hnew) const override
Copy.
Definition TH2.cxx:3916
void UpdateBinContent(Int_t bin, Double_t content) override
Raw update of bin content on internal data structure see convention for numbering bins in TH1::GetBin...
Definition TH2.h:330
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 TH2.h:329
friend TH2F operator-(TH2F &h1, TH2F &h2)
Operator -.
Definition TH2.cxx:4029
friend TH2F operator/(TH2F &h1, TH2F &h2)
Operator /.
Definition TH2.cxx:4053
void SetBinsLength(Int_t n=-1) override
Set total number of bins including under/overflow Reallocate bin contents array.
Definition TH2.cxx:3936
friend TH2F operator+(TH2F &h1, TH2F &h2)
Operator +.
Definition TH2.cxx:4017
2-D histogram with an int per channel (see TH1 documentation)
Definition TH2.h:217
friend TH2I operator/(TH2I &h1, TH2I &h2)
Operator /.
Definition TH2.cxx:3555
friend TH2I operator-(TH2I &h1, TH2I &h2)
Operator -.
Definition TH2.cxx:3531
TH2I()
Constructor.
Definition TH2.cxx:3347
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 TH2.h:249
friend TH2I operator*(TH2I &h1, Float_t c1)
Definition TH2.h:242
friend TH2I operator*(Float_t c1, TH2I &h1)
Operator *.
Definition TH2.cxx:3507
void Copy(TObject &hnew) const override
Copy.
Definition TH2.cxx:3465
void UpdateBinContent(Int_t bin, Double_t content) override
Raw update of bin content on internal data structure see convention for numbering bins in TH1::GetBin...
Definition TH2.h:250
void AddBinContent(Int_t bin) override
Increment bin content by 1.
Definition TH2.cxx:3443
friend TH2I operator+(TH2I &h1, TH2I &h2)
Operator +.
Definition TH2.cxx:3519
~TH2I() override
Destructor.
Definition TH2.cxx:3357
TH2I & operator=(const TH2I &h1)
Operator =.
Definition TH2.cxx:3496
void SetBinsLength(Int_t n=-1) override
Set total number of bins including under/overflow Reallocate bin contents array.
Definition TH2.cxx:3485
2-D histogram with a long64 per channel (see TH1 documentation)
Definition TH2.h:257
friend TH2L operator/(TH2L &h1, TH2L &h2)
Operator /.
Definition TH2.cxx:3781
TH2L & operator=(const TH2L &h1)
Operator =.
Definition TH2.cxx:3722
friend TH2L operator*(TH2L &h1, Float_t c1)
Definition TH2.h:280
friend TH2L operator*(Float_t c1, TH2L &h1)
Operator *.
Definition TH2.cxx:3733
void SetBinsLength(Int_t n=-1) override
Set total number of bins including under/overflow Reallocate bin contents array.
Definition TH2.cxx:3711
friend TH2L operator+(TH2L &h1, TH2L &h2)
Operator +.
Definition TH2.cxx:3745
~TH2L() override
Destructor.
Definition TH2.cxx:3585
void Copy(TObject &hnew) const override
Copy.
Definition TH2.cxx:3691
friend TH2L operator-(TH2L &h1, TH2L &h2)
Operator -.
Definition TH2.cxx:3757
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 TH2.h:287
void UpdateBinContent(Int_t bin, Double_t content) override
Raw update of bin content on internal data structure see convention for numbering bins in TH1::GetBin...
Definition TH2.h:288
TH2L()
Constructor.
Definition TH2.cxx:3575
void AddBinContent(Int_t bin) override
Increment bin content by 1.
Definition TH2.cxx:3670
2-D histogram with a short per channel (see TH1 documentation)
Definition TH2.h:176
void AddBinContent(Int_t bin) override
Increment bin content by 1.
Definition TH2.cxx:3180
~TH2S() override
Destructor.
Definition TH2.cxx:3094
TH2S & operator=(const TH2S &h1)
Operator =.
Definition TH2.cxx:3268
friend TH2S operator+(TH2S &h1, TH2S &h2)
Operator +.
Definition TH2.cxx:3291
void Copy(TObject &hnew) const override
Copy.
Definition TH2.cxx:3202
TH2S()
Constructor.
Definition TH2.cxx:3084
friend TH2S operator-(TH2S &h1, TH2S &h2)
Operator -.
Definition TH2.cxx:3303
friend TH2S operator*(Float_t c1, TH2S &h1)
Operator *.
Definition TH2.cxx:3279
friend TH2S operator/(TH2S &h1, TH2S &h2)
Operator /.
Definition TH2.cxx:3327
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 TH2.h:208
void UpdateBinContent(Int_t bin, Double_t content) override
Raw update of bin content on internal data structure see convention for numbering bins in TH1::GetBin...
Definition TH2.h:209
friend TH2S operator*(TH2S &h1, Float_t c1)
Definition TH2.h:201
void SetBinsLength(Int_t n=-1) override
Set total number of bins including under/overflow Reallocate bin contents array.
Definition TH2.cxx:3222
Service class for 2-D histogram classes.
Definition TH2.h:30
TH1D * ProjectionY(const char *name="_py", Int_t firstxbin=0, Int_t lastxbin=-1, Option_t *option="") const
Project a 2-D histogram into a 1-D histogram along Y.
Definition TH2.cxx:2433
void GetStats(Double_t *stats) const override
Fill the array stats from the contents of this histogram The array stats must be correctly dimensione...
Definition TH2.cxx:1211
Int_t ShowPeaks(Double_t sigma=2, Option_t *option="", Double_t threshold=0.05) override
Interface to TSpectrum2::Search the function finds peaks in this histogram where the width is > sigma...
Definition TH2.cxx:2652
virtual Double_t GetCorrelationFactor(Int_t axis1=1, Int_t axis2=2) const
Return correlation factor between axis1 and axis2.
Definition TH2.cxx:1102
virtual TProfile * DoProfile(bool onX, const char *name, Int_t firstbin, Int_t lastbin, Option_t *option) const
Definition TH2.cxx:1837
Double_t KolmogorovTest(const TH1 *h2, Option_t *option="") const override
Statistical test of compatibility in shape between THIS histogram and h2, using Kolmogorov test.
Definition TH2.cxx:1427
virtual void FitSlicesY(TF1 *f1=nullptr, Int_t firstxbin=0, Int_t lastxbin=-1, Int_t cut=0, Option_t *option="QNR", TObjArray *arr=nullptr)
Project slices along Y in case of a 2-D histogram, then fit each slice with function f1 and make a hi...
Definition TH2.cxx:1038
virtual Double_t GetBinWithContent2(Double_t c, Int_t &binx, Int_t &biny, Int_t firstxbin=1, Int_t lastxbin=-1, Int_t firstybin=1, Int_t lastybin=-1, Double_t maxdiff=0) const
compute first cell (binx,biny) in the range [firstxbin,lastxbin][firstybin,lastybin] for which diff =...
Definition TH2.cxx:1074
TProfile * ProfileX(const char *name="_pfx", Int_t firstybin=1, Int_t lastybin=-1, Option_t *option="") const
Project a 2-D histogram into a profile histogram along X.
Definition TH2.cxx:2066
TH2(const TH2 &)=delete
TH2 * Rebin(Int_t ngroup=2, const char *newname="", const Double_t *xbins=nullptr) override
Override TH1::Rebin as TH2::RebinX Rebinning in variable binning as for TH1 is not allowed If a non-n...
Definition TH2.cxx:1620
void FillN(Int_t, const Double_t *, const Double_t *, Int_t) override
Fill this histogram with an array x and weights w.
Definition TH2.h:80
Int_t BufferFill(Double_t, Double_t) override
accumulate arguments in buffer.
Definition TH2.h:56
TH1D * QuantilesY(Double_t prob=0.5, const char *name="_qy") const
Compute the Y distribution of quantiles in the other variable X name is the name of the returned hist...
Definition TH2.cxx:2475
TProfile * ProfileY(const char *name="_pfy", Int_t firstxbin=1, Int_t lastxbin=-1, Option_t *option="") const
Project a 2-D histogram into a profile histogram along Y.
Definition TH2.cxx:2116
void Copy(TObject &hnew) const override
Copy.
Definition TH2.cxx:337
virtual TH1D * DoQuantiles(bool onX, const char *name, Double_t prob) const
Implementation of quantiles for x or y.
Definition TH2.cxx:2484
Double_t fTsumwxy
Total Sum of weight*X*Y.
Definition TH2.h:36
void SetBinContent(Int_t bin, Double_t content) override
Set bin content.
Definition TH2.cxx:2573
Int_t Fill(const char *, Double_t) override
Increment bin with namex with a weight w.
Definition TH2.h:58
Int_t BufferEmpty(Int_t action=0) override
Fill histogram with all entries in the buffer.
Definition TH2.cxx:235
virtual Double_t Integral(Int_t, Int_t, Int_t, Int_t, Int_t, Int_t, Option_t *="") const
Definition TH2.h:102
virtual void DoFitSlices(bool onX, TF1 *f1, Int_t firstbin, Int_t lastbin, Int_t cut, Option_t *option, TObjArray *arr)
Definition TH2.cxx:771
TH1D * QuantilesX(Double_t prob=0.5, const char *name="_qx") const
Compute the X distribution of quantiles in the other variable Y name is the name of the returned hist...
Definition TH2.cxx:2462
virtual void SetShowProjectionY(Int_t nbins=1)
When the mouse is moved in a pad containing a 2-d view of this histogram a second canvas shows the pr...
Definition TH2.cxx:2607
void SetBinContent(Int_t binx, Int_t biny, Int_t, Double_t content) override
Definition TH2.h:121
void FillRandom(const char *fname, Int_t ntimes=5000, TRandom *rng=nullptr) override
Fill histogram following distribution in function fname.
Definition TH2.cxx:671
virtual Double_t GetBinErrorUp(Int_t binx, Int_t biny)
Definition TH2.h:94
void Reset(Option_t *option="") override
Reset this histogram: contents, errors, etc.
Definition TH2.cxx:2557
Double_t fScalefactor
Scale factor.
Definition TH2.h:33
virtual TH1D * DoProjection(bool onX, const char *name, Int_t firstbin, Int_t lastbin, Option_t *option) const
Internal (protected) method for performing projection on the X or Y axis called by ProjectionX or Pro...
Definition TH2.cxx:2126
TH2 * RebinX(Int_t ngroup=2, const char *newname="") override
Rebin only the X axis see Rebin2D.
Definition TH2.cxx:1599
Double_t fTsumwy2
Total Sum of weight*Y*Y.
Definition TH2.h:35
virtual void GetRandom2(Double_t &x, Double_t &y, TRandom *rng=nullptr)
Return 2 random numbers along axis x and y distributed according to the cell-contents of this 2-D his...
Definition TH2.cxx:1157
void SetBinContent(Int_t binx, Int_t biny, Double_t content) override
Definition TH2.h:120
virtual Double_t GetCovariance(Int_t axis1=1, Int_t axis2=2) const
Return covariance between axis1 and axis2.
Definition TH2.cxx:1120
Int_t GetBin(Int_t binx, Int_t biny, Int_t binz=0) const override
Return Global bin number corresponding to binx,y,z.
Definition TH2.cxx:1043
Double_t GetBinContent(Int_t binx, Int_t biny, Int_t) const override
Definition TH2.h:90
TH1D * ProjectionX(const char *name="_px", Int_t firstybin=0, Int_t lastybin=-1, Option_t *option="") const
Project a 2-D histogram into a 1-D histogram along X.
Definition TH2.cxx:2393
void Smooth(Int_t ntimes=1, Option_t *option="") override
Smooth bin contents of this 2-d histogram using kernel algorithms similar to the ones used in the ras...
Definition TH2.cxx:2684
~TH2() override
Destructor.
Definition TH2.cxx:222
Double_t GetBinContent(Int_t binx, Int_t biny) const override
Definition TH2.h:89
virtual Double_t IntegralAndError(Int_t binx1, Int_t binx2, Int_t biny1, Int_t biny2, Double_t &err, Option_t *option="") const
Return integral of bin contents in range [firstxbin,lastxbin],[firstybin,lastybin] for a 2-D histogra...
Definition TH2.cxx:1302
Double_t fTsumwy
Total Sum of weight*Y.
Definition TH2.h:34
TH2()
2-D histogram default constructor.
Definition TH2.cxx:65
TH2 & operator=(const TH2 &)=delete
TH1 * ShowBackground(Int_t niter=20, Option_t *option="same") override
This function calculates the background spectrum in this histogram.
Definition TH2.cxx:2636
virtual void SetShowProjectionX(Int_t nbins=1)
When the mouse is moved in a pad containing a 2-d view of this histogram a second canvas shows the pr...
Definition TH2.cxx:2591
Int_t Fill(Double_t) override
Invalid Fill method.
Definition TH2.cxx:350
virtual Double_t GetBinErrorLow(Int_t binx, Int_t biny)
Definition TH2.h:93
virtual TH2 * Rebin2D(Int_t nxgroup=2, Int_t nygroup=2, const char *newname="")
Rebin this histogram grouping nxgroup/nygroup bins along the xaxis/yaxis together.
Definition TH2.cxx:1655
virtual void FitSlicesX(TF1 *f1=nullptr, Int_t firstybin=0, Int_t lastybin=-1, Int_t cut=0, Option_t *option="QNR", TObjArray *arr=nullptr)
Project slices along X in case of a 2-D histogram, then fit each slice with function f1 and make a hi...
Definition TH2.cxx:973
virtual Int_t BufferFill(Double_t x, Double_t y, Double_t w)
accumulate arguments in buffer.
Definition TH2.cxx:309
virtual void SetShowProjectionXY(Int_t nbinsY=1, Int_t nbinsX=1)
When the mouse is moved in a pad containing a 2-d view of this histogram two canvases show the projec...
Definition TH2.cxx:2624
Double_t Integral(Option_t *option="") const override
Return integral of bin contents.
Definition TH2.cxx:1274
void PutStats(Double_t *stats) override
Replace current statistics with the values in array stats.
Definition TH2.cxx:2442
virtual TH2 * RebinY(Int_t ngroup=2, const char *newname="")
Rebin only the Y axis see Rebin2D.
Definition TH2.cxx:1609
TMatrixTBase.
An array of TObjects.
Definition TObjArray.h:31
Mother of all ROOT objects.
Definition TObject.h:41
Profile Histogram.
Definition TProfile.h:32
This is the base class for the ROOT Random number generators.
Definition TRandom.h:27
#define Interpolate(a, x, b, y)
Definition geom.c:179
const Double_t sigma
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
TF1 * f1
Definition legend1.C:11
TMarker m
Definition textangle.C:8