Logo ROOT   6.10/09
Reference Guide
TH1.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_TH1
13 #define ROOT_TH1
14 
15 
16 //////////////////////////////////////////////////////////////////////////
17 // //
18 // TH1 //
19 // //
20 // 1-Dim histogram base class. //
21 // //
22 //////////////////////////////////////////////////////////////////////////
23 
24 #include "TAxis.h"
25 
26 #include "TAttLine.h"
27 
28 #include "TAttFill.h"
29 
30 #include "TAttMarker.h"
31 
32 #include "TArrayC.h"
33 #include "TArrayS.h"
34 #include "TArrayI.h"
35 #include "TArrayF.h"
36 #include "TArrayD.h"
37 #include "Foption.h"
38 
39 #include "TVectorFfwd.h"
40 #include "TVectorDfwd.h"
41 
42 #include "TFitResultPtr.h"
43 
44 #include <float.h>
45 
46 class TF1;
47 class TH1D;
48 class TBrowser;
49 class TDirectory;
50 class TList;
51 class TCollection;
52 class TVirtualFFT;
54 
55 
56 class TH1 : public TNamed, public TAttLine, public TAttFill, public TAttMarker {
57 
58 public:
59 
60  // enumeration specifying type of statistics for bin errors
61  enum EBinErrorOpt {
62  kNormal = 0, ///< errors with Normal (Wald) approximation: errorUp=errorLow= sqrt(N)
63  kPoisson = 1 , ///< errors from Poisson interval at 68.3% (1 sigma)
64  kPoisson2 = 2 ///< errors from Poisson interval at 95% CL (~ 2 sigma)
65  };
66 
67  // enumeration specifying which axes can be extended
68  enum {
69  kNoAxis = 0, ///< NOTE: Must always be 0 !!!
70  kXaxis = BIT(0),
71  kYaxis = BIT(1),
72  kZaxis = BIT(2),
74  };
75 
76  friend class TH1Merger;
77 
78 protected:
79  Int_t fNcells; ///< number of bins(1D), cells (2D) +U/Overflows
80  TAxis fXaxis; ///< X axis descriptor
81  TAxis fYaxis; ///< Y axis descriptor
82  TAxis fZaxis; ///< Z axis descriptor
83  Short_t fBarOffset; ///< (1000*offset) for bar charts or legos
84  Short_t fBarWidth; ///< (1000*width) for bar charts or legos
85  Double_t fEntries; ///< Number of entries
86  Double_t fTsumw; ///< Total Sum of weights
87  Double_t fTsumw2; ///< Total Sum of squares of weights
88  Double_t fTsumwx; ///< Total Sum of weight*X
89  Double_t fTsumwx2; ///< Total Sum of weight*X*X
90  Double_t fMaximum; ///< Maximum value for plotting
91  Double_t fMinimum; ///< Minimum value for plotting
92  Double_t fNormFactor; ///< Normalization factor
93  TArrayD fContour; ///< Array to display contour levels
94  TArrayD fSumw2; ///< Array of sum of squares of weights
95  TString fOption; ///< histogram options
96  TList *fFunctions; ///<->Pointer to list of functions (fits and user)
97  Int_t fBufferSize; ///< fBuffer size
98  Double_t *fBuffer; ///<[fBufferSize] entry buffer
99  TDirectory *fDirectory; ///<!Pointer to directory holding this histogram
100  Int_t fDimension; ///<!Histogram dimension (1, 2 or 3 dim)
101  Double_t *fIntegral; ///<!Integral of bins used by GetRandom
102  TVirtualHistPainter *fPainter; ///<!pointer to histogram painter
103  EBinErrorOpt fBinStatErrOpt; ///< option for bin statistical errors
104  static Int_t fgBufferSize; ///<!default buffer size for automatic histograms
105  static Bool_t fgAddDirectory; ///<!flag to add histograms to the directory
106  static Bool_t fgStatOverflows; ///<!flag to use under/overflows in statistics
107  static Bool_t fgDefaultSumw2; ///<!flag to call TH1::Sumw2 automatically at histogram creation time
108 
109 public:
110  static Int_t FitOptionsMake(Option_t *option, Foption_t &Foption);
111 
112 private:
113  Int_t AxisChoice(Option_t *axis) const;
114  void Build();
115 
116  TH1(const TH1&);
117  TH1& operator=(const TH1&); // Not implemented
118 
119 
120 protected:
121  TH1();
122  TH1(const char *name,const char *title,Int_t nbinsx,Double_t xlow,Double_t xup);
123  TH1(const char *name,const char *title,Int_t nbinsx,const Float_t *xbins);
124  TH1(const char *name,const char *title,Int_t nbinsx,const Double_t *xbins);
125  virtual Int_t BufferFill(Double_t x, Double_t w);
126  virtual Bool_t FindNewAxisLimits(const TAxis* axis, const Double_t point, Double_t& newMin, Double_t &newMax);
127  virtual void SavePrimitiveHelp(std::ostream &out, const char *hname, Option_t *option = "");
128  static Bool_t RecomputeAxisLimits(TAxis& destAxis, const TAxis& anAxis);
129  static Bool_t SameLimitsAndNBins(const TAxis& axis1, const TAxis& axis2);
130  Bool_t IsEmpty() const { return fTsumw == 0 && GetEntries() == 0; } //need to use GetEntries() in case of buffer histograms
131 
132 
133  virtual Double_t DoIntegral(Int_t ix1, Int_t ix2, Int_t iy1, Int_t iy2, Int_t iz1, Int_t iz2, Double_t & err,
134  Option_t * opt, Bool_t doerr = kFALSE) const;
135 
136  virtual void DoFillN(Int_t ntimes, const Double_t *x, const Double_t *w, Int_t stride=1);
137 
138  static bool CheckAxisLimits(const TAxis* a1, const TAxis* a2);
139  static bool CheckBinLimits(const TAxis* a1, const TAxis* a2);
140  static bool CheckBinLabels(const TAxis* a1, const TAxis* a2);
141  static bool CheckEqualAxes(const TAxis* a1, const TAxis* a2);
142  static bool CheckConsistentSubAxes(const TAxis *a1, Int_t firstBin1, Int_t lastBin1, const TAxis *a2, Int_t firstBin2=0, Int_t lastBin2=0);
143  static bool CheckConsistency(const TH1* h1, const TH1* h2);
144 
145 public:
146  // TH1 status bits
147  enum {
148  kNoStats = BIT(9), ///< don't draw stats box
149  kUserContour = BIT(10), ///< user specified contour levels
150  //kCanRebin = BIT(11), ///< FIXME DEPRECATED - to be removed, replaced by SetCanExtend / CanExtendAllAxes
151  kLogX = BIT(15), ///< X-axis in log scale
152  kIsZoomed = BIT(16), ///< bit set when zooming on Y axis
153  kNoTitle = BIT(17), ///< don't draw the histogram title
154  kIsAverage = BIT(18), ///< Bin contents are average (used by Add)
155  kIsNotW = BIT(19) ///< Histogram is forced to be not weighted even when the histogram is filled with weighted different than 1.
156  };
157  // size of statistics data (size of array used in GetStats()/ PutStats )
158  // s[0] = sumw s[1] = sumw2
159  // s[2] = sumwx s[3] = sumwx2
160  // s[4] = sumwy s[5] = sumwy2 s[6] = sumwxy
161  // s[7] = sumwz s[8] = sumwz2 s[9] = sumwxz s[10] = sumwyz
162  // s[11] = sumwt s[12] = sumwt2 (11 and 12 used only by TProfile3D)
163  enum {
164  kNstat = 13 // size of statistics data (up to TProfile3D)
165  };
166 
167 
168  virtual ~TH1();
169 
170  virtual Bool_t Add(TF1 *h1, Double_t c1=1, Option_t *option="");
171  virtual Bool_t Add(const TH1 *h1, Double_t c1=1);
172  virtual Bool_t Add(const TH1 *h, const TH1 *h2, Double_t c1=1, Double_t c2=1); // *MENU*
173  virtual void AddBinContent(Int_t bin);
174  virtual void AddBinContent(Int_t bin, Double_t w);
175  static void AddDirectory(Bool_t add=kTRUE);
176  static Bool_t AddDirectoryStatus();
177  virtual void Browse(TBrowser *b);
178  virtual Bool_t CanExtendAllAxes() const;
179  virtual Double_t Chi2Test(const TH1* h2, Option_t *option = "UU", Double_t *res = 0) const;
180  virtual Double_t Chi2TestX(const TH1* h2, Double_t &chi2, Int_t &ndf, Int_t &igood,Option_t *option = "UU", Double_t *res = 0) const;
181  virtual Double_t Chisquare(TF1 * f1, Option_t *option = "") const;
182  virtual void ClearUnderflowAndOverflow();
183  virtual Double_t ComputeIntegral(Bool_t onlyPositive = false);
184  TObject* Clone(const char* newname=0) const;
185  virtual void Copy(TObject &hnew) const;
186  virtual void DirectoryAutoAdd(TDirectory *);
187  virtual Int_t DistancetoPrimitive(Int_t px, Int_t py);
188  virtual Bool_t Divide(TF1 *f1, Double_t c1=1);
189  virtual Bool_t Divide(const TH1 *h1);
190  virtual Bool_t Divide(const TH1 *h1, const TH1 *h2, Double_t c1=1, Double_t c2=1, Option_t *option=""); // *MENU*
191  virtual void Draw(Option_t *option="");
192  virtual TH1 *DrawCopy(Option_t *option="", const char * name_postfix = "_copy") const;
193  virtual TH1 *DrawNormalized(Option_t *option="", Double_t norm=1) const;
194  virtual void DrawPanel(); // *MENU*
195  virtual Int_t BufferEmpty(Int_t action=0);
196  virtual void Eval(TF1 *f1, Option_t *option="");
197  virtual void ExecuteEvent(Int_t event, Int_t px, Int_t py);
198  virtual void ExtendAxis(Double_t x, TAxis *axis);
199  virtual TH1 *FFT(TH1* h_output, Option_t *option);
200  virtual Int_t Fill(Double_t x);
201  virtual Int_t Fill(Double_t x, Double_t w);
202  virtual Int_t Fill(const char *name, Double_t w);
203  virtual void FillN(Int_t ntimes, const Double_t *x, const Double_t *w, Int_t stride=1);
204  virtual void FillN(Int_t, const Double_t *, const Double_t *, const Double_t *, Int_t) {;}
205  virtual void FillRandom(const char *fname, Int_t ntimes=5000);
206  virtual void FillRandom(TH1 *h, Int_t ntimes=5000);
207  virtual Int_t FindBin(Double_t x, Double_t y=0, Double_t z=0);
208  virtual Int_t FindFixBin(Double_t x, Double_t y=0, Double_t z=0) const;
209  virtual Int_t FindFirstBinAbove(Double_t threshold=0, Int_t axis=1) const;
210  virtual Int_t FindLastBinAbove (Double_t threshold=0, Int_t axis=1) const;
211  virtual TObject *FindObject(const char *name) const;
212  virtual TObject *FindObject(const TObject *obj) const;
213  virtual TFitResultPtr Fit(const char *formula ,Option_t *option="" ,Option_t *goption="", Double_t xmin=0, Double_t xmax=0); // *MENU*
214  virtual TFitResultPtr Fit(TF1 *f1 ,Option_t *option="" ,Option_t *goption="", Double_t xmin=0, Double_t xmax=0);
215  virtual void FitPanel(); // *MENU*
216  TH1 *GetAsymmetry(TH1* h2, Double_t c2=1, Double_t dc2=0);
217  Int_t GetBufferLength() const {return fBuffer ? (Int_t)fBuffer[0] : 0;}
218  Int_t GetBufferSize () const {return fBufferSize;}
219  const Double_t *GetBuffer() const {return fBuffer;}
220  static Int_t GetDefaultBufferSize();
221  virtual Double_t *GetIntegral();
222  TH1 *GetCumulative(Bool_t forward = kTRUE, const char* suffix = "_cumulative") const;
223 
224  TList *GetListOfFunctions() const { return fFunctions; }
225 
226  virtual Int_t GetNdivisions(Option_t *axis="X") const;
227  virtual Color_t GetAxisColor(Option_t *axis="X") const;
228  virtual Color_t GetLabelColor(Option_t *axis="X") const;
229  virtual Style_t GetLabelFont(Option_t *axis="X") const;
230  virtual Float_t GetLabelOffset(Option_t *axis="X") const;
231  virtual Float_t GetLabelSize(Option_t *axis="X") const;
232  virtual Style_t GetTitleFont(Option_t *axis="X") const;
233  virtual Float_t GetTitleOffset(Option_t *axis="X") const;
234  virtual Float_t GetTitleSize(Option_t *axis="X") const;
235  virtual Float_t GetTickLength(Option_t *axis="X") const;
236  virtual Float_t GetBarOffset() const {return Float_t(0.001*Float_t(fBarOffset));}
237  virtual Float_t GetBarWidth() const {return Float_t(0.001*Float_t(fBarWidth));}
238  virtual Int_t GetContour(Double_t *levels=0);
239  virtual Double_t GetContourLevel(Int_t level) const;
240  virtual Double_t GetContourLevelPad(Int_t level) const;
241 
242  virtual Int_t GetBin(Int_t binx, Int_t biny=0, Int_t binz=0) const;
243  virtual void GetBinXYZ(Int_t binglobal, Int_t &binx, Int_t &biny, Int_t &binz) const;
244  virtual Double_t GetBinCenter(Int_t bin) const;
245  virtual Double_t GetBinContent(Int_t bin) const;
246  virtual Double_t GetBinContent(Int_t bin, Int_t) const { return GetBinContent(bin); }
247  virtual Double_t GetBinContent(Int_t bin, Int_t, Int_t) const { return GetBinContent(bin); }
248  virtual Double_t GetBinError(Int_t bin) const;
249  virtual Double_t GetBinError(Int_t binx, Int_t biny) const { return GetBinError(GetBin(binx, biny)); } // for 2D histograms only
250  virtual Double_t GetBinError(Int_t binx, Int_t biny, Int_t binz) const { return GetBinError(GetBin(binx, biny, binz)); } // for 3D histograms only
251  virtual Double_t GetBinErrorLow(Int_t bin) const;
252  virtual Double_t GetBinErrorUp(Int_t bin) const;
253  virtual EBinErrorOpt GetBinErrorOption() const { return fBinStatErrOpt; }
254  virtual Double_t GetBinLowEdge(Int_t bin) const;
255  virtual Double_t GetBinWidth(Int_t bin) const;
256  virtual Double_t GetBinWithContent(Double_t c, Int_t &binx, Int_t firstx=0, Int_t lastx=0,Double_t maxdiff=0) const;
257  virtual void GetCenter(Double_t *center) const;
258  static Bool_t GetDefaultSumw2();
259  TDirectory *GetDirectory() const {return fDirectory;}
260  virtual Double_t GetEntries() const;
261  virtual Double_t GetEffectiveEntries() const;
262  virtual TF1 *GetFunction(const char *name) const;
263  virtual Int_t GetDimension() const { return fDimension; }
264  virtual Double_t GetKurtosis(Int_t axis=1) const;
265  virtual void GetLowEdge(Double_t *edge) const;
266  virtual Double_t GetMaximum(Double_t maxval=FLT_MAX) const;
267  virtual Int_t GetMaximumBin() const;
268  virtual Int_t GetMaximumBin(Int_t &locmax, Int_t &locmay, Int_t &locmaz) const;
269  virtual Double_t GetMaximumStored() const {return fMaximum;}
270  virtual Double_t GetMinimum(Double_t minval=-FLT_MAX) const;
271  virtual Int_t GetMinimumBin() const;
272  virtual Int_t GetMinimumBin(Int_t &locmix, Int_t &locmiy, Int_t &locmiz) const;
273  virtual Double_t GetMinimumStored() const {return fMinimum;}
274  virtual void GetMinimumAndMaximum(Double_t& min, Double_t& max) const;
275  virtual Double_t GetMean(Int_t axis=1) const;
276  virtual Double_t GetMeanError(Int_t axis=1) const;
277  virtual Int_t GetNbinsX() const {return fXaxis.GetNbins();}
278  virtual Int_t GetNbinsY() const {return fYaxis.GetNbins();}
279  virtual Int_t GetNbinsZ() const {return fZaxis.GetNbins();}
280  virtual Int_t GetNcells() const {return fNcells; }
281  virtual Double_t GetNormFactor() const {return fNormFactor;}
282  virtual char *GetObjectInfo(Int_t px, Int_t py) const;
283  Option_t *GetOption() const {return fOption.Data();}
284 
286 
287  virtual Int_t GetQuantiles(Int_t nprobSum, Double_t *q, const Double_t *probSum=0);
288  virtual Double_t GetRandom() const;
289  virtual void GetStats(Double_t *stats) const;
290  virtual Double_t GetStdDev(Int_t axis=1) const;
291  virtual Double_t GetStdDevError(Int_t axis=1) const;
292  virtual Double_t GetSumOfWeights() const;
293  virtual TArrayD *GetSumw2() {return &fSumw2;}
294  virtual const TArrayD *GetSumw2() const {return &fSumw2;}
295  virtual Int_t GetSumw2N() const {return fSumw2.fN;}
296  Double_t GetRMS(Int_t axis=1) const { return GetStdDev(axis); }
297  Double_t GetRMSError(Int_t axis=1) const { return GetStdDevError(axis); }
298 
299  virtual Double_t GetSkewness(Int_t axis=1) const;
300  TAxis* GetXaxis() { return &fXaxis; }
301  TAxis* GetYaxis() { return &fYaxis; }
302  TAxis* GetZaxis() { return &fZaxis; }
303  const TAxis* GetXaxis() const { return &fXaxis; }
304  const TAxis* GetYaxis() const { return &fYaxis; }
305  const TAxis* GetZaxis() const { return &fZaxis; }
306  virtual Double_t Integral(Option_t *option="") const;
307  virtual Double_t Integral(Int_t binx1, Int_t binx2, Option_t *option="") const;
308  virtual Double_t IntegralAndError(Int_t binx1, Int_t binx2, Double_t & err, Option_t *option="") const;
309  virtual Double_t Interpolate(Double_t x);
310  virtual Double_t Interpolate(Double_t x, Double_t y);
312  Bool_t IsBinOverflow(Int_t bin, Int_t axis = 0) const;
313  Bool_t IsBinUnderflow(Int_t bin, Int_t axis = 0) const;
314  virtual Double_t AndersonDarlingTest(const TH1 *h2, Option_t *option="") const;
315  virtual Double_t AndersonDarlingTest(const TH1 *h2, Double_t &advalue) const;
316  virtual Double_t KolmogorovTest(const TH1 *h2, Option_t *option="") const;
317  virtual void LabelsDeflate(Option_t *axis="X");
318  virtual void LabelsInflate(Option_t *axis="X");
319  virtual void LabelsOption(Option_t *option="h", Option_t *axis="X");
320  virtual Long64_t Merge(TCollection *list);
321  virtual Bool_t Multiply(TF1 *h1, Double_t c1=1);
322  virtual Bool_t Multiply(const TH1 *h1);
323  virtual Bool_t Multiply(const TH1 *h1, const TH1 *h2, Double_t c1=1, Double_t c2=1, Option_t *option=""); // *MENU*
324  virtual void Paint(Option_t *option="");
325  virtual void Print(Option_t *option="") const;
326  virtual void PutStats(Double_t *stats);
327  virtual TH1 *Rebin(Int_t ngroup=2, const char*newname="", const Double_t *xbins=0); // *MENU*
328  virtual TH1 *RebinX(Int_t ngroup=2, const char*newname="") { return Rebin(ngroup,newname, (Double_t*) 0); }
329  virtual void Rebuild(Option_t *option="");
330  virtual void RecursiveRemove(TObject *obj);
331  virtual void Reset(Option_t *option="");
332  virtual void ResetStats();
333  virtual void SavePrimitive(std::ostream &out, Option_t *option = "");
334  virtual void Scale(Double_t c1=1, Option_t *option="");
335  virtual void SetAxisColor(Color_t color=1, Option_t *axis="X");
336  virtual void SetAxisRange(Double_t xmin, Double_t xmax, Option_t *axis="X");
337  virtual void SetBarOffset(Float_t offset=0.25) {fBarOffset = Short_t(1000*offset);}
338  virtual void SetBarWidth(Float_t width=0.5) {fBarWidth = Short_t(1000*width);}
339  virtual void SetBinContent(Int_t bin, Double_t content);
340  virtual void SetBinContent(Int_t bin, Int_t, Double_t content) { SetBinContent(bin, content); }
341  virtual void SetBinContent(Int_t bin, Int_t, Int_t, Double_t content) { SetBinContent(bin, content); }
342  virtual void SetBinError(Int_t bin, Double_t error);
343  virtual void SetBinError(Int_t binx, Int_t biny, Double_t error);
344  virtual void SetBinError(Int_t binx, Int_t biny, Int_t binz, Double_t error);
345  virtual void SetBins(Int_t nx, Double_t xmin, Double_t xmax);
346  virtual void SetBins(Int_t nx, const Double_t *xBins);
347  virtual void SetBins(Int_t nx, Double_t xmin, Double_t xmax, Int_t ny, Double_t ymin, Double_t ymax);
348  virtual void SetBins(Int_t nx, const Double_t *xBins, Int_t ny, const Double_t *yBins);
349  virtual void SetBins(Int_t nx, Double_t xmin, Double_t xmax, Int_t ny, Double_t ymin, Double_t ymax,
350  Int_t nz, Double_t zmin, Double_t zmax);
351  virtual void SetBins(Int_t nx, const Double_t *xBins, Int_t ny, const Double_t * yBins, Int_t nz,
352  const Double_t *zBins);
353  virtual void SetBinsLength(Int_t = -1) { } //redefined in derived classes
354  virtual void SetBinErrorOption(EBinErrorOpt type) { fBinStatErrOpt = type; }
355  virtual void SetBuffer(Int_t buffersize, Option_t *option="");
356  virtual UInt_t SetCanExtend(UInt_t extendBitMask);
357  virtual void SetContent(const Double_t *content);
358  virtual void SetContour(Int_t nlevels, const Double_t *levels=0);
359  virtual void SetContourLevel(Int_t level, Double_t value);
360  static void SetDefaultBufferSize(Int_t buffersize=1000);
361  static void SetDefaultSumw2(Bool_t sumw2=kTRUE);
362  virtual void SetDirectory(TDirectory *dir);
363  virtual void SetEntries(Double_t n) {fEntries = n;};
364  virtual void SetError(const Double_t *error);
365  virtual void SetLabelColor(Color_t color=1, Option_t *axis="X");
366  virtual void SetLabelFont(Style_t font=62, Option_t *axis="X");
367  virtual void SetLabelOffset(Float_t offset=0.005, Option_t *axis="X");
368  virtual void SetLabelSize(Float_t size=0.02, Option_t *axis="X");
369 
370  /*
371  * Set the minimum / maximum value for the Y axis (1-D histograms) or Z axis (2-D histograms)
372  * By default the maximum / minimum value used in drawing is the maximum / minimum value of the histogram
373  * plus a margin of 10%. If these functions are called, the values are used without any extra margin.
374  */
375  virtual void SetMaximum(Double_t maximum = -1111) { fMaximum = maximum; }; // *MENU*
376  virtual void SetMinimum(Double_t minimum = -1111) { fMinimum = minimum; }; // *MENU*
377 
378  virtual void SetName(const char *name); // *MENU*
379  virtual void SetNameTitle(const char *name, const char *title);
380  virtual void SetNdivisions(Int_t n=510, Option_t *axis="X");
381  virtual void SetNormFactor(Double_t factor=1) {fNormFactor = factor;}
382  virtual void SetStats(Bool_t stats=kTRUE); // *MENU*
383  virtual void SetOption(Option_t *option=" ") {fOption = option;}
384  virtual void SetTickLength(Float_t length=0.02, Option_t *axis="X");
385  virtual void SetTitleFont(Style_t font=62, Option_t *axis="X");
386  virtual void SetTitleOffset(Float_t offset=1, Option_t *axis="X");
387  virtual void SetTitleSize(Float_t size=0.02, Option_t *axis="X");
388  virtual void SetTitle(const char *title); // *MENU*
389  virtual void SetXTitle(const char *title) {fXaxis.SetTitle(title);}
390  virtual void SetYTitle(const char *title) {fYaxis.SetTitle(title);}
391  virtual void SetZTitle(const char *title) {fZaxis.SetTitle(title);}
392  virtual TH1 *ShowBackground(Int_t niter=20, Option_t *option="same"); // *MENU*
393  virtual Int_t ShowPeaks(Double_t sigma=2, Option_t *option="", Double_t threshold=0.05); // *MENU*
394  virtual void Smooth(Int_t ntimes=1, Option_t *option=""); // *MENU*
395  static void SmoothArray(Int_t NN, Double_t *XX, Int_t ntimes=1);
396  static void StatOverflows(Bool_t flag=kTRUE);
397  virtual void Sumw2(Bool_t flag = kTRUE);
398  void UseCurrentStyle();
399  static TH1 *TransformHisto(TVirtualFFT *fft, TH1* h_output, Option_t *option);
400 
401 
402  // TODO: Remove obsolete methods in v6-04
403  virtual Double_t GetCellContent(Int_t binx, Int_t biny) const
404  { Obsolete("GetCellContent", "v6-00", "v6-04"); return GetBinContent(GetBin(binx, biny)); }
405  virtual Double_t GetCellError(Int_t binx, Int_t biny) const
406  { Obsolete("GetCellError", "v6-00", "v6-04"); return GetBinError(binx, biny); }
407  virtual void RebinAxis(Double_t x, TAxis *axis)
408  { Obsolete("RebinAxis", "v6-00", "v6-04"); ExtendAxis(x, axis); }
409  virtual void SetCellContent(Int_t binx, Int_t biny, Double_t content)
410  { Obsolete("SetCellContent", "v6-00", "v6-04"); SetBinContent(GetBin(binx, biny), content); }
411  virtual void SetCellError(Int_t binx, Int_t biny, Double_t content)
412  { Obsolete("SetCellError", "v6-00", "v6-04"); SetBinError(binx, biny, content); }
413 
414  ClassDef(TH1,7) //1-Dim histogram base class
415 
416 protected:
417  virtual Double_t RetrieveBinContent(Int_t bin) const;
418  virtual void UpdateBinContent(Int_t bin, Double_t content);
419  virtual Double_t GetBinErrorSqUnchecked(Int_t bin) const { return fSumw2.fN ? fSumw2.fArray[bin] : RetrieveBinContent(bin); }
420 };
421 
422 namespace cling {
423  std::string printValue(TH1 *val);
424 }
425 
426 //________________________________________________________________________
427 
428 class TH1C : public TH1, public TArrayC {
429 
430 public:
431  TH1C();
432  TH1C(const char *name,const char *title,Int_t nbinsx,Double_t xlow,Double_t xup);
433  TH1C(const char *name,const char *title,Int_t nbinsx,const Float_t *xbins);
434  TH1C(const char *name,const char *title,Int_t nbinsx,const Double_t *xbins);
435  TH1C(const TH1C &h1c);
436  TH1C& operator=(const TH1C &h1);
437  virtual ~TH1C();
438 
439  virtual void AddBinContent(Int_t bin);
440  virtual void AddBinContent(Int_t bin, Double_t w);
441  virtual void Copy(TObject &hnew) const;
442  virtual void Reset(Option_t *option="");
443  virtual void SetBinsLength(Int_t n=-1);
444 
445  ClassDef(TH1C,2) //1-Dim histograms (one char per channel)
446 
447  friend TH1C operator*(Double_t c1, const TH1C &h1);
448  friend TH1C operator*(const TH1C &h1, Double_t c1);
449  friend TH1C operator+(const TH1C &h1, const TH1C &h2);
450  friend TH1C operator-(const TH1C &h1, const TH1C &h2);
451  friend TH1C operator*(const TH1C &h1, const TH1C &h2);
452  friend TH1C operator/(const TH1C &h1, const TH1C &h2);
453 
454 protected:
455  virtual Double_t RetrieveBinContent(Int_t bin) const { return Double_t (fArray[bin]); }
456  virtual void UpdateBinContent(Int_t bin, Double_t content) { fArray[bin] = Char_t (content); }
457 };
458 
459 TH1C operator*(Double_t c1, const TH1C &h1);
460 inline
461 TH1C operator*(const TH1C &h1, Double_t c1) {return operator*(c1,h1);}
462 TH1C operator+(const TH1C &h1, const TH1C &h2);
463 TH1C operator-(const TH1C &h1, const TH1C &h2);
464 TH1C operator*(const TH1C &h1, const TH1C &h2);
465 TH1C operator/(const TH1C &h1, const TH1C &h2);
466 
467 //________________________________________________________________________
468 
469 class TH1S : public TH1, public TArrayS {
470 
471 public:
472  TH1S();
473  TH1S(const char *name,const char *title,Int_t nbinsx,Double_t xlow,Double_t xup);
474  TH1S(const char *name,const char *title,Int_t nbinsx,const Float_t *xbins);
475  TH1S(const char *name,const char *title,Int_t nbinsx,const Double_t *xbins);
476  TH1S(const TH1S &h1s);
477  TH1S& operator=(const TH1S &h1);
478  virtual ~TH1S();
479 
480  virtual void AddBinContent(Int_t bin);
481  virtual void AddBinContent(Int_t bin, Double_t w);
482  virtual void Copy(TObject &hnew) const;
483  virtual void Reset(Option_t *option="");
484  virtual void SetBinsLength(Int_t n=-1);
485 
486  ClassDef(TH1S,2) //1-Dim histograms (one short per channel)
487 
488  friend TH1S operator*(Double_t c1, const TH1S &h1);
489  friend TH1S operator*(const TH1S &h1, Double_t c1);
490  friend TH1S operator+(const TH1S &h1, const TH1S &h2);
491  friend TH1S operator-(const TH1S &h1, const TH1S &h2);
492  friend TH1S operator*(const TH1S &h1, const TH1S &h2);
493  friend TH1S operator/(const TH1S &h1, const TH1S &h2);
494 
495 protected:
496  virtual Double_t RetrieveBinContent(Int_t bin) const { return Double_t (fArray[bin]); }
497  virtual void UpdateBinContent(Int_t bin, Double_t content) { fArray[bin] = Short_t (content); }
498 };
499 
500 TH1S operator*(Double_t c1, const TH1S &h1);
501 inline
502 TH1S operator*(const TH1S &h1, Double_t c1) {return operator*(c1,h1);}
503 TH1S operator+(const TH1S &h1, const TH1S &h2);
504 TH1S operator-(const TH1S &h1, const TH1S &h2);
505 TH1S operator*(const TH1S &h1, const TH1S &h2);
506 TH1S operator/(const TH1S &h1, const TH1S &h2);
507 
508 //________________________________________________________________________
509 
510 class TH1I: public TH1, public TArrayI {
511 
512 public:
513  TH1I();
514  TH1I(const char *name,const char *title,Int_t nbinsx,Double_t xlow,Double_t xup);
515  TH1I(const char *name,const char *title,Int_t nbinsx,const Float_t *xbins);
516  TH1I(const char *name,const char *title,Int_t nbinsx,const Double_t *xbins);
517  TH1I(const TH1I &h1i);
518  TH1I& operator=(const TH1I &h1);
519  virtual ~TH1I();
520 
521  virtual void AddBinContent(Int_t bin);
522  virtual void AddBinContent(Int_t bin, Double_t w);
523  virtual void Copy(TObject &hnew) const;
524  virtual void Reset(Option_t *option="");
525  virtual void SetBinsLength(Int_t n=-1);
526 
527  ClassDef(TH1I,2) //1-Dim histograms (one 32 bits integer per channel)
528 
529  friend TH1I operator*(Double_t c1, const TH1I &h1);
530  friend TH1I operator*(const TH1I &h1, Double_t c1);
531  friend TH1I operator+(const TH1I &h1, const TH1I &h2);
532  friend TH1I operator-(const TH1I &h1, const TH1I &h2);
533  friend TH1I operator*(const TH1I &h1, const TH1I &h2);
534  friend TH1I operator/(const TH1I &h1, const TH1I &h2);
535 
536 protected:
537  virtual Double_t RetrieveBinContent(Int_t bin) const { return Double_t (fArray[bin]); }
538  virtual void UpdateBinContent(Int_t bin, Double_t content) { fArray[bin] = Int_t (content); }
539 };
540 
541 TH1I operator*(Double_t c1, const TH1I &h1);
542 inline
543 TH1I operator*(const TH1I &h1, Double_t c1) {return operator*(c1,h1);}
544 TH1I operator+(const TH1I &h1, const TH1I &h2);
545 TH1I operator-(const TH1I &h1, const TH1I &h2);
546 TH1I operator*(const TH1I &h1, const TH1I &h2);
547 TH1I operator/(const TH1I &h1, const TH1I &h2);
548 
549 //________________________________________________________________________
550 
551 class TH1F : public TH1, public TArrayF {
552 
553 public:
554  TH1F();
555  TH1F(const char *name,const char *title,Int_t nbinsx,Double_t xlow,Double_t xup);
556  TH1F(const char *name,const char *title,Int_t nbinsx,const Float_t *xbins);
557  TH1F(const char *name,const char *title,Int_t nbinsx,const Double_t *xbins);
558  explicit TH1F(const TVectorF &v);
559  TH1F(const TH1F &h1f);
560  TH1F& operator=(const TH1F &h1);
561  virtual ~TH1F();
562 
563  virtual void AddBinContent(Int_t bin) {++fArray[bin];}
564  virtual void AddBinContent(Int_t bin, Double_t w)
565  {fArray[bin] += Float_t (w);}
566  virtual void Copy(TObject &hnew) const;
567  virtual void Reset(Option_t *option="");
568  virtual void SetBinsLength(Int_t n=-1);
569 
570  ClassDef(TH1F,2) //1-Dim histograms (one float per channel)
571 
572  friend TH1F operator*(Double_t c1, const TH1F &h1);
573  friend TH1F operator*(const TH1F &h1, Double_t c1);
574  friend TH1F operator+(const TH1F &h1, const TH1F &h2);
575  friend TH1F operator-(const TH1F &h1, const TH1F &h2);
576  friend TH1F operator*(const TH1F &h1, const TH1F &h2);
577  friend TH1F operator/(const TH1F &h1, const TH1F &h2);
578 
579 protected:
580  virtual Double_t RetrieveBinContent(Int_t bin) const { return Double_t (fArray[bin]); }
581  virtual void UpdateBinContent(Int_t bin, Double_t content) { fArray[bin] = Float_t (content); }
582 };
583 
584 TH1F operator*(Double_t c1, const TH1F &h1);
585 inline
586 TH1F operator*(const TH1F &h1, Double_t c1) {return operator*(c1,h1);}
587 TH1F operator+(const TH1F &h1, const TH1F &h2);
588 TH1F operator-(const TH1F &h1, const TH1F &h2);
589 TH1F operator*(const TH1F &h1, const TH1F &h2);
590 TH1F operator/(const TH1F &h1, const TH1F &h2);
591 
592 //________________________________________________________________________
593 
594 class TH1D : public TH1, public TArrayD {
595 
596 public:
597  TH1D();
598  TH1D(const char *name,const char *title,Int_t nbinsx,Double_t xlow,Double_t xup);
599  TH1D(const char *name,const char *title,Int_t nbinsx,const Float_t *xbins);
600  TH1D(const char *name,const char *title,Int_t nbinsx,const Double_t *xbins);
601  explicit TH1D(const TVectorD &v);
602  TH1D(const TH1D &h1d);
603  TH1D& operator=(const TH1D &h1);
604  virtual ~TH1D();
605 
606  virtual void AddBinContent(Int_t bin) {++fArray[bin];}
607  virtual void AddBinContent(Int_t bin, Double_t w)
608  {fArray[bin] += Double_t (w);}
609  virtual void Copy(TObject &hnew) const;
610  virtual void Reset(Option_t *option="");
611  virtual void SetBinsLength(Int_t n=-1);
612 
613  ClassDef(TH1D,2) //1-Dim histograms (one double per channel)
614 
615  friend TH1D operator*(Double_t c1, const TH1D &h1);
616  friend TH1D operator*(const TH1D &h1, Double_t c1);
617  friend TH1D operator+(const TH1D &h1, const TH1D &h2);
618  friend TH1D operator-(const TH1D &h1, const TH1D &h2);
619  friend TH1D operator*(const TH1D &h1, const TH1D &h2);
620  friend TH1D operator/(const TH1D &h1, const TH1D &h2);
621 
622 protected:
623  virtual Double_t RetrieveBinContent(Int_t bin) const { return fArray[bin]; }
624  virtual void UpdateBinContent(Int_t bin, Double_t content) { fArray[bin] = content; }
625 };
626 
627 TH1D operator*(Double_t c1, const TH1D &h1);
628 inline
629 TH1D operator*(const TH1D &h1, Double_t c1) {return operator*(c1,h1);}
630 TH1D operator+(const TH1D &h1, const TH1D &h2);
631 TH1D operator-(const TH1D &h1, const TH1D &h2);
632 TH1D operator*(const TH1D &h1, const TH1D &h2);
633 TH1D operator/(const TH1D &h1, const TH1D &h2);
634 
635  extern TH1 *R__H(Int_t hid);
636  extern TH1 *R__H(const char *hname);
637 
638 #endif
static void StatOverflows(Bool_t flag=kTRUE)
if flag=kTRUE, underflows and overflows are used by the Fill functions in the computation of statisti...
Definition: TH1.cxx:6241
const int nx
Definition: kalman.C:16
virtual void Browse(TBrowser *b)
Browse the Histogram object.
Definition: TH1.cxx:708
virtual void SavePrimitive(std::ostream &out, Option_t *option="")
Save primitive as a C++ statement(s) on output stream out.
Definition: TH1.cxx:6472
virtual void SetZTitle(const char *title)
Definition: TH1.h:391
virtual void Print(Option_t *option="") const
Print some global quantities for this histogram.
Definition: TH1.cxx:6325
virtual Double_t GetMaximumStored() const
Definition: TH1.h:269
virtual void SetNameTitle(const char *name, const char *title)
Change the name and title of this histogram.
Definition: TH1.cxx:8087
virtual Style_t GetLabelFont(Option_t *axis="X") const
Return the "axis" label font.
Definition: Haxis.cxx:66
virtual Int_t FindBin(Double_t x, Double_t y=0, Double_t z=0)
Return Global bin number corresponding to x,y,z.
Definition: TH1.cxx:3441
virtual Int_t GetNcells() const
Definition: TH1.h:280
Double_t fNormFactor
Normalization factor.
Definition: TH1.h:92
virtual void SetBarOffset(Float_t offset=0.25)
Definition: TH1.h:337
virtual void UpdateBinContent(Int_t bin, Double_t content)
Raw update of bin content on internal data structure see convention for numbering bins in TH1::GetBin...
Definition: TH1.h:497
virtual void Scale(Double_t c1=1, Option_t *option="")
Multiply this histogram by a constant c1.
Definition: TH1.cxx:5937
virtual Int_t Fill(Double_t x)
Increment bin with abscissa X by 1.
Definition: TH1.cxx:3126
virtual Int_t ShowPeaks(Double_t sigma=2, Option_t *option="", Double_t threshold=0.05)
Interface to TSpectrum::Search.
Definition: TH1.cxx:8405
virtual Double_t GetMaximum(Double_t maxval=FLT_MAX) const
Return maximum value smaller than maxval of bins in the range, unless the value has been overridden b...
Definition: TH1.cxx:7666
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:7154
virtual Double_t GetEffectiveEntries() const
Number of effective entries of the histogram.
Definition: TH1.cxx:4079
virtual void Paint(Option_t *option="")
Control routine to paint any kind of histograms.
Definition: TH1.cxx:5539
float xmin
Definition: THbookFile.cxx:93
X-axis in log scale.
Definition: TH1.h:151
virtual Double_t GetBinCenter(Int_t bin) const
Return bin center for 1D histogram.
Definition: TH1.cxx:8253
THist< 1, int, THistStatContent > TH1I
Definition: THist.hxx:313
Bool_t IsBinUnderflow(Int_t bin, Int_t axis=0) const
Return true if the bin is underflow.
Definition: TH1.cxx:4773
virtual void SetTitleFont(Style_t font=62, Option_t *axis="X")
Set the axis&#39; title font.
Definition: Haxis.cxx:323
long long Long64_t
Definition: RtypesCore.h:69
virtual void SetMaximum(Double_t maximum=-1111)
Definition: TH1.h:375
void UseCurrentStyle()
Copy current attributes from/to current style.
Definition: TH1.cxx:6699
virtual void UpdateBinContent(Int_t bin, Double_t content)
Raw update of bin content on internal data structure see convention for numbering bins in TH1::GetBin...
Definition: TH1.h:456
virtual void LabelsOption(Option_t *option="h", Option_t *axis="X")
Set option(s) to draw axis with labels.
Definition: TH1.cxx:4935
short Style_t
Definition: RtypesCore.h:76
virtual const TArrayD * GetSumw2() const
Definition: TH1.h:294
Short_t fBarWidth
(1000*width) for bar charts or legos
Definition: TH1.h:84
Bool_t IsBinOverflow(Int_t bin, Int_t axis=0) const
Return true if the bin is overflow.
Definition: TH1.cxx:4741
static Bool_t fgDefaultSumw2
!flag to call TH1::Sumw2 automatically at histogram creation time
Definition: TH1.h:107
TVirtualHistPainter * GetPainter(Option_t *option="")
Return pointer to painter.
Definition: TH1.cxx:4100
virtual void FitPanel()
Display a panel with all histogram fit options.
Definition: TH1.cxx:3915
float Float_t
Definition: RtypesCore.h:53
virtual void SetDirectory(TDirectory *dir)
By default when an histogram is created, it is added to the list of histogram objects in the current ...
Definition: TH1.cxx:8053
virtual TF1 * GetFunction(const char *name) const
Return pointer to function with name.
Definition: TH1.cxx:8163
const char Option_t
Definition: RtypesCore.h:62
virtual Float_t GetBarOffset() const
Definition: TH1.h:236
return c1
Definition: legend1.C:41
float ymin
Definition: THbookFile.cxx:93
virtual void SetError(const Double_t *error)
Replace bin errors by values in array error.
Definition: TH1.cxx:8064
virtual Double_t GetMinimumStored() const
Definition: TH1.h:273
virtual Double_t GetNormFactor() const
Definition: TH1.h:281
TAxis fYaxis
Y axis descriptor.
Definition: TH1.h:81
virtual Int_t BufferFill(Double_t x, Double_t w)
accumulate arguments in buffer.
Definition: TH1.cxx:1319
virtual void SetContour(Int_t nlevels, const Double_t *levels=0)
Set the number and values of contour levels.
Definition: TH1.cxx:7607
virtual void PutStats(Double_t *stats)
Replace current statistics with the values in array stats.
Definition: TH1.cxx:7073
R__EXTERN Foption_t Foption
Definition: TTreePlayer.cxx:89
TList * fFunctions
->Pointer to list of functions (fits and user)
Definition: TH1.h:96
virtual Int_t FindLastBinAbove(Double_t threshold=0, Int_t axis=1) const
Find last bin with content > threshold for axis (1=x, 2=y, 3=z) if no bins with content > threshold i...
Definition: TH1.cxx:3519
virtual void SetBins(Int_t nx, Double_t xmin, Double_t xmax)
Redefine x axis parameters.
Definition: TH1.cxx:7883
#define BIT(n)
Definition: Rtypes.h:75
THist< 1, float, THistStatContent, THistStatUncertainty > TH1F
Definition: THist.hxx:311
TH1 * h
Definition: legend2.C:5
TH1 * GetAsymmetry(TH1 *h2, Double_t c2=1, Double_t dc2=0)
Return an histogram containing the asymmetry of this histogram with h2, where the asymmetry is define...
Definition: TH1.cxx:3970
static Bool_t fgStatOverflows
!flag to use under/overflows in statistics
Definition: TH1.h:106
virtual TH1 * DrawNormalized(Option_t *option="", Double_t norm=1) const
Draw a normalized copy of this histogram.
Definition: TH1.cxx:2926
static Bool_t SameLimitsAndNBins(const TAxis &axis1, const TAxis &axis2)
Same limits and bins.
Definition: TH1.cxx:5220
void Build()
Creates histogram basic data structure.
Definition: TH1.cxx:717
virtual Double_t GetSumOfWeights() const
Return the sum of weights excluding under/overflows.
Definition: TH1.cxx:7103
virtual void SetNdivisions(Int_t n=510, Option_t *axis="X")
Set the number of divisions to draw an axis.
Definition: Haxis.cxx:170
virtual Double_t GetBinContent(Int_t bin) const
Return content of bin number bin.
Definition: TH1.cxx:4639
virtual void AddBinContent(Int_t bin, Double_t w)
Increment bin content by a weight w.
Definition: TH1.h:607
TVectorT.
Definition: TMatrixTBase.h:77
virtual Int_t GetQuantiles(Int_t nprobSum, Double_t *q, const Double_t *probSum=0)
Compute Quantiles for this histogram Quantile x_q of a probability distribution Function F is defined...
Definition: TH1.cxx:4191
virtual Double_t Integral(Option_t *option="") const
Return integral of bin contents.
Definition: TH1.cxx:7127
virtual void AddBinContent(Int_t bin)
Increment bin content by 1.
Definition: TH1.h:563
static bool CheckAxisLimits(const TAxis *a1, const TAxis *a2)
Check that the axis limits of the histograms are the same.
Definition: TH1.cxx:1412
virtual Double_t GetMeanError(Int_t axis=1) const
Return standard error of mean of this histogram along the X axis.
Definition: TH1.cxx:6794
virtual Int_t GetNbinsZ() const
Definition: TH1.h:279
virtual void SetMinimum(Double_t minimum=-1111)
Definition: TH1.h:376
virtual Double_t GetMean(Int_t axis=1) const
For axis = 1,2 or 3 returns the mean value of the histogram along X,Y or Z axis.
Definition: TH1.cxx:6763
TH1 & operator=(const TH1 &)
THist< 1, char, THistStatContent > TH1C
Definition: THist.hxx:312
virtual void SetLabelSize(Float_t size=0.02, Option_t *axis="X")
Set size of axis&#39; labels.
Definition: Haxis.cxx:285
virtual void GetBinXYZ(Int_t binglobal, Int_t &binx, Int_t &biny, Int_t &binz) const
Return binx, biny, binz corresponding to the global bin number globalbin see TH1::GetBin function abo...
Definition: TH1.cxx:4554
Basic string class.
Definition: TString.h:129
static Bool_t AddDirectoryStatus()
Static function: cannot be inlined on Windows/NT.
Definition: TH1.cxx:700
tomato 1-D histogram with a float per channel (see TH1 documentation)}
Definition: TH1.h:551
tomato 1-D histogram with a short per channel (see TH1 documentation)
Definition: TH1.h:469
Array of floats (32 bits per element).
Definition: TArrayF.h:27
errors from Poisson interval at 68.3% (1 sigma)
Definition: TH1.h:63
int Int_t
Definition: RtypesCore.h:41
virtual void SetYTitle(const char *title)
Definition: TH1.h:390
bool Bool_t
Definition: RtypesCore.h:59
virtual Double_t GetCellContent(Int_t binx, Int_t biny) const
Definition: TH1.h:403
virtual Double_t RetrieveBinContent(Int_t bin) const
Raw retrieval of bin content on internal data structure see convention for numbering bins in TH1::Get...
Definition: TH1.h:537
Double_t GetRMS(Int_t axis=1) const
Definition: TH1.h:296
virtual TH1 * DrawCopy(Option_t *option="", const char *name_postfix="_copy") const
Copy this histogram and Draw in the current pad.
Definition: TH1.cxx:2898
virtual void Smooth(Int_t ntimes=1, Option_t *option="")
Smooth bin contents of this histogram.
Definition: TH1.cxx:6195
Histogram is forced to be not weighted even when the histogram is filled with weighted different than...
Definition: TH1.h:155
virtual Style_t GetTitleFont(Option_t *axis="X") const
Return the "axis" title font.
Definition: Haxis.cxx:118
virtual Int_t GetNdivisions(Option_t *axis="X") const
Return the number of divisions for "axis".
Definition: Haxis.cxx:27
TArrayD fSumw2
Array of sum of squares of weights.
Definition: TH1.h:94
virtual Color_t GetAxisColor(Option_t *axis="X") const
Return the number of divisions for "axis".
Definition: Haxis.cxx:40
virtual Double_t GetBinLowEdge(Int_t bin) const
Return bin lower edge for 1D histogram.
Definition: TH1.cxx:8264
virtual void SetAxisRange(Double_t xmin, Double_t xmax, Option_t *axis="X")
Set the "axis" range.
Definition: Haxis.cxx:201
static Bool_t RecomputeAxisLimits(TAxis &destAxis, const TAxis &anAxis)
Finds new limits for the axis for the Merge function.
Definition: TH1.cxx:5231
TAxis fZaxis
Z axis descriptor.
Definition: TH1.h:82
virtual Bool_t Multiply(TF1 *h1, Double_t c1=1)
Performs the operation: this = this*c1*f1 if errors are defined (see TH1::Sumw2), errors are also rec...
Definition: TH1.cxx:5364
TH1 * R__H(Int_t hid)
return pointer to histogram with name hid if id >=0 h_id if id <0
Definition: TH1.cxx:9474
virtual Double_t GetContourLevel(Int_t level) const
Return value of contour number level.
Definition: TH1.cxx:7554
bit set when zooming on Y axis
Definition: TH1.h:152
static bool CheckBinLimits(const TAxis *a1, const TAxis *a2)
Check bin limits.
Definition: TH1.cxx:1354
Array of integers (32 bits per element).
Definition: TArrayI.h:27
virtual void SetBuffer(Int_t buffersize, Option_t *option="")
Set the maximum number of entries to be kept in the buffer.
Definition: TH1.cxx:7582
Double_t fTsumwx2
Total Sum of weight*X*X.
Definition: TH1.h:89
virtual void GetStats(Double_t *stats) const
fill the array stats from the contents of this histogram The array stats must be correctly dimensione...
Definition: TH1.cxx:7021
virtual Bool_t CanExtendAllAxes() const
Returns true if all axes are extendable.
Definition: TH1.cxx:5961
virtual void Reset(Option_t *option="")
Reset this histogram: contents, errors, etc.
Definition: TH1.cxx:6419
static void AddDirectory(Bool_t add=kTRUE)
Sets the flag controlling the automatic add of histograms in memory.
Definition: TH1.cxx:1218
virtual void SetBarWidth(Float_t width=0.5)
Definition: TH1.h:338
TDirectory * fDirectory
!Pointer to directory holding this histogram
Definition: TH1.h:99
static void SetDefaultSumw2(Bool_t sumw2=kTRUE)
When this static function is called with sumw2=kTRUE, all new histograms will automatically activate ...
Definition: TH1.cxx:6013
Marker Attributes class.
Definition: TAttMarker.h:19
virtual void SetCellError(Int_t binx, Int_t biny, Double_t content)
Definition: TH1.h:411
static bool CheckConsistentSubAxes(const TAxis *a1, Int_t firstBin1, Int_t lastBin1, const TAxis *a2, Int_t firstBin2=0, Int_t lastBin2=0)
Check that two sub axis are the same.
Definition: TH1.cxx:1461
virtual Int_t GetDimension() const
Definition: TH1.h:263
NOTE: Must always be 0 !!!
Definition: TH1.h:69
virtual Double_t Interpolate(Double_t x)
Given a point x, approximates the value via linear interpolation based on the two nearest bin centers...
Definition: TH1.cxx:4693
virtual Int_t GetContour(Double_t *levels=0)
Return contour values into array levels if pointer levels is non zero.
Definition: TH1.cxx:7535
Fill Area Attributes class.
Definition: TAttFill.h:19
Double_t x[n]
Definition: legend1.C:17
static Int_t FitOptionsMake(Option_t *option, Foption_t &Foption)
Decode string choptin and fill fitOption structure.
Definition: TH1.cxx:4232
#define ClassDef(name, id)
Definition: Rtypes.h:297
virtual void Eval(TF1 *f1, Option_t *option="")
Evaluate function f1 at the center of bins of this histogram.
Definition: TH1.cxx:2974
static Bool_t GetDefaultSumw2()
Return kTRUE if TH1::Sumw2 must be called when creating new histograms.
Definition: TH1.cxx:4046
static void SetDefaultBufferSize(Int_t buffersize=1000)
Static function to set the default buffer size for automatic histograms.
Definition: TH1.cxx:6003
const Double_t * GetBuffer() const
Definition: TH1.h:219
virtual Double_t Chi2Test(const TH1 *h2, Option_t *option="UU", Double_t *res=0) const
test for comparing weighted and unweighted histograms
Definition: TH1.cxx:1830
The TNamed class is the base class for all named ROOT classes.
Definition: TNamed.h:29
TH1C operator+(const TH1C &h1, const TH1C &h2)
Operator +.
Definition: TH1.cxx:8707
virtual ~TH1()
Histogram default destructor.
Definition: TH1.cxx:575
const int ny
Definition: kalman.C:17
Double_t GetRMSError(Int_t axis=1) const
Definition: TH1.h:297
virtual void SetOption(Option_t *option=" ")
Definition: TH1.h:383
virtual void AddBinContent(Int_t bin)
Increment bin content by 1.
Definition: TH1.h:606
virtual void SetContourLevel(Int_t level, Double_t value)
Set value for one contour level.
Definition: TH1.cxx:7646
Abstract interface to a histogram painter.
virtual Float_t GetTitleOffset(Option_t *axis="X") const
Return the "axis" title offset.
Definition: Haxis.cxx:131
Double_t * fArray
Definition: TArrayD.h:30
errors from Poisson interval at 95% CL (~ 2 sigma)
Definition: TH1.h:64
const Double_t sigma
virtual Float_t GetLabelOffset(Option_t *axis="X") const
Return the "axis" label offset.
Definition: Haxis.cxx:79
TString fOption
histogram options
Definition: TH1.h:95
virtual Double_t GetBinContent(Int_t bin, Int_t) const
Definition: TH1.h:246
virtual TArrayD * GetSumw2()
Definition: TH1.h:293
virtual void SetLabelFont(Style_t font=62, Option_t *axis="X")
Set font number used to draw axis labels.
Definition: Haxis.cxx:249
virtual Bool_t FindNewAxisLimits(const TAxis *axis, const Double_t point, Double_t &newMin, Double_t &newMax)
finds new limits for the axis so that point is within the range and the limits are compatible with th...
Definition: TH1.cxx:5782
TH1F * h1
Definition: legend1.C:5
virtual void SetContent(const Double_t *content)
Replace bin contents by the contents of array content.
Definition: TH1.cxx:7522
TH1C operator*(Double_t c1, const TH1C &h1)
Operator *.
Definition: TH1.cxx:8696
virtual void AddBinContent(Int_t bin)
Increment bin content by 1.
Definition: TH1.cxx:1193
virtual void ResetStats()
Reset the statistics including the number of entries and replace with values calculates from bin cont...
Definition: TH1.cxx:7088
void Obsolete(const char *method, const char *asOfVers, const char *removedFromVers) const
Use this method to declare a method obsolete.
Definition: TObject.cxx:935
TArrayD fContour
Array to display contour levels.
Definition: TH1.h:93
virtual void SetBinError(Int_t bin, Double_t error)
See convention for numbering bins in TH1::GetBin.
Definition: TH1.cxx:8311
Int_t AxisChoice(Option_t *axis) const
Choose an axis according to "axis".
Definition: Haxis.cxx:14
virtual Double_t ComputeIntegral(Bool_t onlyPositive=false)
Compute integral (cumulative sum of bins) The result stored in fIntegral is used by the GetRandom fun...
Definition: TH1.cxx:2355
user specified contour levels
Definition: TH1.h:149
virtual void LabelsInflate(Option_t *axis="X")
Double the number of bins for axis.
Definition: TH1.cxx:4874
short Color_t
Definition: RtypesCore.h:79
virtual Double_t GetSkewness(Int_t axis=1) const
Definition: TH1.cxx:6868
Double_t fTsumwx
Total Sum of weight*X.
Definition: TH1.h:88
virtual Bool_t Divide(TF1 *f1, Double_t c1=1)
Performs the operation: this = this/(c1*f1) if errors are defined (see TH1::Sumw2), errors are also recalculated.
Definition: TH1.cxx:2606
virtual void SetAxisColor(Color_t color=1, Option_t *axis="X")
Set color to draw the axis line and tick marks.
Definition: Haxis.cxx:187
static Bool_t fgAddDirectory
!flag to add histograms to the directory
Definition: TH1.h:105
A doubly linked list.
Definition: TList.h:43
virtual void GetMinimumAndMaximum(Double_t &min, Double_t &max) const
Retrieve the minimum and maximum values in the histogram.
Definition: TH1.cxx:7847
virtual Double_t GetStdDevError(Int_t axis=1) const
Return error of standard deviation estimation for Normal distribution.
Definition: TH1.cxx:6855
Int_t GetBufferSize() const
Definition: TH1.h:218
Double_t fMinimum
Minimum value for plotting.
Definition: TH1.h:91
virtual EBinErrorOpt GetBinErrorOption() const
Definition: TH1.h:253
virtual Double_t KolmogorovTest(const TH1 *h2, Option_t *option="") const
Statistical test of compatibility in shape between this histogram and h2, using Kolmogorov test...
Definition: TH1.cxx:7362
virtual void ExtendAxis(Double_t x, TAxis *axis)
Histogram is resized along axis such that x is in the axis range.
Definition: TH1.cxx:5839
TH1 * GetCumulative(Bool_t forward=kTRUE, const char *suffix="_cumulative") const
Return a pointer to an histogram containing the cumulative The cumulative can be computed both in the...
Definition: TH1.cxx:2425
virtual TH1 * FFT(TH1 *h_output, Option_t *option)
This function allows to do discrete Fourier transforms of TH1 and TH2.
Definition: TH1.cxx:3066
virtual Int_t DistancetoPrimitive(Int_t px, Int_t py)
Compute distance from point px,py to a line.
Definition: TH1.cxx:2589
don&#39;t draw stats box
Definition: TH1.h:148
Using a TBrowser one can browse all ROOT objects.
Definition: TBrowser.h:37
virtual void ExecuteEvent(Int_t event, Int_t px, Int_t py)
Execute action corresponding to one event.
Definition: TH1.cxx:3022
Int_t fN
Definition: TArray.h:38
virtual Double_t * GetIntegral()
Return a pointer to the array of bins integral.
Definition: TH1.cxx:2403
virtual Double_t GetBinError(Int_t binx, Int_t biny, Int_t binz) const
Definition: TH1.h:250
float ymax
Definition: THbookFile.cxx:93
const TAxis * GetZaxis() const
Definition: TH1.h:305
virtual void FillRandom(const char *fname, Int_t ntimes=5000)
Fill histogram following distribution in function fname.
Definition: TH1.cxx:3294
static void SmoothArray(Int_t NN, Double_t *XX, Int_t ntimes=1)
Smooth array xx, translation of Hbook routine hsmoof.F based on algorithm 353QH twice presented by J...
Definition: TH1.cxx:6077
Class to manage histogram axis.
Definition: TAxis.h:30
virtual Double_t GetKurtosis(Int_t axis=1) const
Definition: TH1.cxx:6938
virtual void Draw(Option_t *option="")
Draw this histogram with options.
Definition: TH1.cxx:2851
static bool CheckBinLabels(const TAxis *a1, const TAxis *a2)
Check that axis have same labels.
Definition: TH1.cxx:1380
Array of shorts (16 bits per element).
Definition: TArrayS.h:27
virtual Double_t GetBinContent(Int_t bin, Int_t, Int_t) const
Definition: TH1.h:247
SVector< double, 2 > v
Definition: Dict.h:5
virtual Double_t GetBinWithContent(Double_t c, Int_t &binx, Int_t firstx=0, Int_t lastx=0, Double_t maxdiff=0) const
Compute first binx in the range [firstx,lastx] for which diff = abs(bin_content-c) <= maxdiff...
Definition: TH1.cxx:4664
virtual Float_t GetTitleSize(Option_t *axis="X") const
Return the "axis" title size.
Definition: Haxis.cxx:144
tomato 1-D histogram with an int per channel (see TH1 documentation)}
Definition: TH1.h:510
std::string printValue(TH1 *val)
Print value overload.
Definition: TH1.cxx:8561
Provides an indirection to the TFitResult class and with a semantics identical to a TFitResult pointe...
Definition: TFitResultPtr.h:31
static TH1 * TransformHisto(TVirtualFFT *fft, TH1 *h_output, Option_t *option)
For a given transform (first parameter), fills the histogram (second parameter) with the transform ou...
Definition: TH1.cxx:8423
TH1C operator-(const TH1C &h1, const TH1C &h2)
Operator -.
Definition: TH1.cxx:8718
virtual void SetBinContent(Int_t bin, Double_t content)
Set bin content see convention for numbering bins in TH1::GetBin In case the bin number is greater th...
Definition: TH1.cxx:8325
Collection abstract base class.
Definition: TCollection.h:42
static Int_t fgBufferSize
!default buffer size for automatic histograms
Definition: TH1.h:104
virtual TH1 * Rebin(Int_t ngroup=2, const char *newname="", const Double_t *xbins=0)
Rebin this histogram.
Definition: TH1.cxx:5605
virtual Double_t AndersonDarlingTest(const TH1 *h2, Option_t *option="") const
Statistical test of compatibility in shape between this histogram and h2, using the Anderson-Darling ...
Definition: TH1.cxx:7247
Double_t fEntries
Number of entries.
Definition: TH1.h:85
unsigned int UInt_t
Definition: RtypesCore.h:42
virtual void LabelsDeflate(Option_t *axis="X")
Reduce the number of bins for the axis passed in the option to the number of bins having a label...
Definition: TH1.cxx:4804
virtual void DoFillN(Int_t ntimes, const Double_t *x, const Double_t *w, Int_t stride=1)
Internal method to fill histogram content from a vector called directly by TH1::BufferEmpty.
Definition: TH1.cxx:3253
virtual Double_t Chisquare(TF1 *f1, Option_t *option="") const
Compute and return the chisquare of this histogram with respect to a function The chisquare is comput...
Definition: TH1.cxx:2317
const TAxis * GetYaxis() const
Definition: TH1.h:304
virtual void Copy(TObject &hnew) const
Copy this histogram structure to newth1.
Definition: TH1.cxx:2468
virtual TH1 * ShowBackground(Int_t niter=20, Option_t *option="same")
This function calculates the background spectrum in this histogram.
Definition: TH1.cxx:8390
short Short_t
Definition: RtypesCore.h:35
Option_t * GetOption() const
Definition: TH1.h:283
virtual Double_t GetContourLevelPad(Int_t level) const
Return the value of contour number "level" in Pad coordinates.
Definition: TH1.cxx:7564
TAxis * GetYaxis()
Definition: TH1.h:301
Bin contents are average (used by Add)
Definition: TH1.h:154
float xmax
Definition: THbookFile.cxx:93
Double_t * fIntegral
!Integral of bins used by GetRandom
Definition: TH1.h:101
virtual void SetBinErrorOption(EBinErrorOpt type)
Definition: TH1.h:354
static bool CheckConsistency(const TH1 *h1, const TH1 *h2)
Check histogram compatibility.
Definition: TH1.cxx:1496
virtual void UpdateBinContent(Int_t bin, Double_t content)
Raw update of bin content on internal data structure see convention for numbering bins in TH1::GetBin...
Definition: TH1.h:538
virtual Double_t RetrieveBinContent(Int_t bin) const
Raw retrieval of bin content on internal data structure see convention for numbering bins in TH1::Get...
Definition: TH1.h:580
TH1()
Histogram default constructor.
Definition: TH1.cxx:548
tomato 1-D histogram with a double per channel (see TH1 documentation)}
Definition: TH1.h:594
virtual Int_t GetBin(Int_t binx, Int_t biny=0, Int_t binz=0) const
Return Global bin number corresponding to binx,y,z.
Definition: TH1.cxx:4541
static Int_t GetDefaultBufferSize()
Static function return the default buffer size for automatic histograms the parameter fgBufferSize ma...
Definition: TH1.cxx:4037
virtual TObject * FindObject(const char *name) const
Search object named name in the list of functions.
Definition: TH1.cxx:3537
virtual void Rebuild(Option_t *option="")
Using the current bin info, recompute the arrays for contents and errors.
Definition: TH1.cxx:6403
virtual Int_t FindFirstBinAbove(Double_t threshold=0, Int_t axis=1) const
Find first bin with content > threshold for axis (1=x, 2=y, 3=z) if no bins with content > threshold ...
Definition: TH1.cxx:3500
virtual void RecursiveRemove(TObject *obj)
Recursively remove object from the list of functions.
Definition: TH1.cxx:5911
EBinErrorOpt fBinStatErrOpt
option for bin statistical errors
Definition: TH1.h:103
virtual Double_t RetrieveBinContent(Int_t bin) const
Raw retrieval of bin content on internal data structure see convention for numbering bins in TH1::Get...
Definition: TH1.cxx:8543
virtual Double_t GetMinimum(Double_t minval=-FLT_MAX) const
Return minimum value larger than minval of bins in the range, unless the value has been overridden by...
Definition: TH1.cxx:7751
errors with Normal (Wald) approximation: errorUp=errorLow= sqrt(N)
Definition: TH1.h:62
const Bool_t kFALSE
Definition: RtypesCore.h:92
TVirtualFFT is an interface class for Fast Fourier Transforms.
Definition: TVirtualFFT.h:88
virtual void SetName(const char *name)
Change the name of this histogram.
Definition: TH1.cxx:8073
virtual Int_t GetSumw2N() const
Definition: TH1.h:295
Double_t fTsumw2
Total Sum of squares of weights.
Definition: TH1.h:87
virtual Double_t RetrieveBinContent(Int_t bin) const
Raw retrieval of bin content on internal data structure see convention for numbering bins in TH1::Get...
Definition: TH1.h:496
return c2
Definition: legend2.C:14
virtual Double_t GetBinWidth(Int_t bin) const
Return bin width for 1D histogram.
Definition: TH1.cxx:8275
virtual TH1 * RebinX(Int_t ngroup=2, const char *newname="")
Definition: TH1.h:328
virtual Double_t GetBinErrorLow(Int_t bin) const
Return lower error associated to bin number bin.
Definition: TH1.cxx:8191
double Double_t
Definition: RtypesCore.h:55
virtual void SavePrimitiveHelp(std::ostream &out, const char *hname, Option_t *option="")
Helper function for the SavePrimitive functions from TH1 or classes derived from TH1, eg TProfile, TProfile2D.
Definition: TH1.cxx:6614
Double_t fTsumw
Total Sum of weights.
Definition: TH1.h:86
Describe directory structure in memory.
Definition: TDirectory.h:34
virtual Double_t GetBinError(Int_t binx, Int_t biny) const
Definition: TH1.h:249
virtual void SetTitleSize(Float_t size=0.02, Option_t *axis="X")
Set the axis&#39; title size.
Definition: Haxis.cxx:365
int type
Definition: TGX11.cxx:120
Print a TSeq at the prompt:
Definition: TDatime.h:115
Double_t y[n]
Definition: legend1.C:17
The TH1 histogram class.
Definition: TH1.h:56
virtual Double_t GetEntries() const
Return the current number of entries.
Definition: TH1.cxx:4054
void forward(const LAYERDATA &prevLayerData, LAYERDATA &currLayerData)
apply the weights (and functions) in forward direction of the DNN
Definition: NeuralNet.icc:544
virtual Double_t Chi2TestX(const TH1 *h2, Double_t &chi2, Int_t &ndf, Int_t &igood, Option_t *option="UU", Double_t *res=0) const
The computation routine of the Chisquare test.
Definition: TH1.cxx:1889
Short_t fBarOffset
(1000*offset) for bar charts or legos
Definition: TH1.h:83
Array of doubles (64 bits per element).
Definition: TArrayD.h:27
virtual void RebinAxis(Double_t x, TAxis *axis)
Definition: TH1.h:407
virtual void UpdateBinContent(Int_t bin, Double_t content)
Raw update of bin content on internal data structure see convention for numbering bins in TH1::GetBin...
Definition: TH1.h:624
virtual Bool_t Add(TF1 *h1, Double_t c1=1, Option_t *option="")
Performs the operation: this = this + c1*f1 if errors are defined (see TH1::Sumw2), errors are also recalculated.
Definition: TH1.cxx:770
TAxis * GetZaxis()
Definition: TH1.h:302
virtual Color_t GetLabelColor(Option_t *axis="X") const
Return the "axis" label color.
Definition: Haxis.cxx:53
virtual Float_t GetTickLength(Option_t *axis="X") const
Return the "axis" tick length.
Definition: Haxis.cxx:105
virtual UInt_t SetCanExtend(UInt_t extendBitMask)
Make the histogram axes extendable / not extendable according to the bit mask returns the previous bi...
Definition: TH1.cxx:5974
virtual void SetTickLength(Float_t length=0.02, Option_t *axis="X")
Set the axis&#39; tick marks length.
Definition: Haxis.cxx:302
virtual Int_t FindFixBin(Double_t x, Double_t y=0, Double_t z=0) const
Return Global bin number corresponding to x,y,z.
Definition: TH1.cxx:3474
Mother of all ROOT objects.
Definition: TObject.h:37
you should not use this method at all Int_t Int_t z
Definition: TRolke.cxx:630
virtual void SetBinContent(Int_t bin, Int_t, Int_t, Double_t content)
Definition: TH1.h:341
virtual void ClearUnderflowAndOverflow()
Remove all the content from the underflow and overflow bins, without changing the number of entries A...
Definition: TH1.cxx:2336
char Char_t
Definition: RtypesCore.h:29
virtual char * GetObjectInfo(Int_t px, Int_t py) const
Redefines TObject::GetObjectInfo.
Definition: TH1.cxx:4091
Double_t fMaximum
Maximum value for plotting.
Definition: TH1.h:90
virtual void SetXTitle(const char *title)
Definition: TH1.h:389
virtual Double_t RetrieveBinContent(Int_t bin) const
Raw retrieval of bin content on internal data structure see convention for numbering bins in TH1::Get...
Definition: TH1.h:455
virtual void DirectoryAutoAdd(TDirectory *)
Perform the automatic addition of the histogram to the given directory.
Definition: TH1.cxx:2567
TVirtualHistPainter * fPainter
!pointer to histogram painter
Definition: TH1.h:102
Int_t GetBufferLength() const
Definition: TH1.h:217
virtual void DrawPanel()
Display a panel with all histogram drawing options.
Definition: TH1.cxx:2957
TH1C operator/(const TH1C &h1, const TH1C &h2)
Operator /.
Definition: TH1.cxx:8740
Int_t fBufferSize
fBuffer size
Definition: TH1.h:97
virtual void SetCellContent(Int_t binx, Int_t biny, Double_t content)
Definition: TH1.h:409
virtual Int_t GetMinimumBin() const
Return location of bin with minimum value in the range.
Definition: TH1.cxx:7781
virtual Double_t GetBinErrorSqUnchecked(Int_t bin) const
Definition: TH1.h:419
virtual Double_t DoIntegral(Int_t ix1, Int_t ix2, Int_t iy1, Int_t iy2, Int_t iz1, Int_t iz2, Double_t &err, Option_t *opt, Bool_t doerr=kFALSE) const
Internal function compute integral and optionally the error between the limits specified by the bin n...
Definition: TH1.cxx:7163
virtual void FillN(Int_t ntimes, const Double_t *x, const Double_t *w, Int_t stride=1)
Fill this histogram with an array x and weights w.
Definition: TH1.cxx:3229
virtual void SetBinContent(Int_t bin, Int_t, Double_t content)
Definition: TH1.h:340
1-Dim function class
Definition: TF1.h:150
virtual void SetBinsLength(Int_t=-1)
Definition: TH1.h:353
virtual void AddBinContent(Int_t bin, Double_t w)
Increment bin content by a weight w.
Definition: TH1.h:564
tomato 1-D histogram with a byte per channel (see TH1 documentation)
Definition: TH1.h:428
virtual void Sumw2(Bool_t flag=kTRUE)
Create structure to store sum of squares of weights.
Definition: TH1.cxx:8132
TObject * Clone(const char *newname=0) const
Make a complete copy of the underlying object.
Definition: TH1.cxx:2544
TF1 * f1
Definition: legend1.C:11
you should not use this method at all Int_t Int_t Double_t Double_t Double_t Int_t Double_t Double_t Double_t Double_t b
Definition: TRolke.cxx:630
const TAxis * GetXaxis() const
Definition: TH1.h:303
Int_t fDimension
!Histogram dimension (1, 2 or 3 dim)
Definition: TH1.h:100
THist< 1, double, THistStatContent, THistStatUncertainty > TH1D
Definition: THist.hxx:310
virtual Double_t GetBinErrorUp(Int_t bin) const
Return upper error associated to bin number bin.
Definition: TH1.cxx:8222
virtual Int_t BufferEmpty(Int_t action=0)
Fill histogram with all entries in the buffer.
Definition: TH1.cxx:1236
virtual void FillN(Int_t, const Double_t *, const Double_t *, const Double_t *, Int_t)
Definition: TH1.h:204
virtual void UpdateBinContent(Int_t bin, Double_t content)
Raw update of bin content on internal data structure see convention for numbering bins in TH1::GetBin...
Definition: TH1.h:581
virtual void SetEntries(Double_t n)
Definition: TH1.h:363
TAxis fXaxis
X axis descriptor.
Definition: TH1.h:80
Bool_t IsEmpty() const
Definition: TH1.h:130
virtual void SetTitle(const char *title)
Change (i.e.
Definition: TH1.cxx:6028
virtual Int_t GetNbinsX() const
Definition: TH1.h:277
Int_t GetNbins() const
Definition: TAxis.h:121
EBinErrorOpt
Definition: TH1.h:61
virtual Double_t GetCellError(Int_t binx, Int_t biny) const
Definition: TH1.h:405
float * q
Definition: THbookFile.cxx:87
virtual void SetTitle(const char *title="")
Set the title of the TNamed.
Definition: TNamed.cxx:155
TList * GetListOfFunctions() const
Definition: TH1.h:224
Double_t * fBuffer
[fBufferSize] entry buffer
Definition: TH1.h:98
virtual TFitResultPtr Fit(const char *formula, Option_t *option="", Option_t *goption="", Double_t xmin=0, Double_t xmax=0)
Fit histogram with function fname.
Definition: TH1.cxx:3564
const Bool_t kTRUE
Definition: RtypesCore.h:91
double norm(double *x, double *p)
Definition: unuranDistr.cxx:40
virtual void SetNormFactor(Double_t factor=1)
Definition: TH1.h:381
virtual void UpdateBinContent(Int_t bin, Double_t content)
Raw update of bin content on internal data structure see convention for numbering bins in TH1::GetBin...
Definition: TH1.cxx:8553
virtual Double_t GetStdDev(Int_t axis=1) const
Returns the Standard Deviation (Sigma).
Definition: TH1.cxx:6817
virtual Double_t GetRandom() const
Return a random number distributed according the histogram bin contents.
Definition: TH1.cxx:4588
static bool CheckEqualAxes(const TAxis *a1, const TAxis *a2)
Check that the axis are the same.
Definition: TH1.cxx:1425
virtual Float_t GetLabelSize(Option_t *axis="X") const
Return the "axis" label size.
Definition: Haxis.cxx:92
const Int_t n
Definition: legend1.C:16
virtual Int_t GetMaximumBin() const
Return location of bin with maximum value in the range.
Definition: TH1.cxx:7696
Line Attributes class.
Definition: TAttLine.h:18
virtual void GetCenter(Double_t *center) const
Fill array with center of bins for 1D histogram Better to use h1.GetXaxis().GetCenter(center) ...
Definition: TH1.cxx:8286
virtual void SetStats(Bool_t stats=kTRUE)
Set statistics option on/off.
Definition: TH1.cxx:8103
virtual Float_t GetBarWidth() const
Definition: TH1.h:237
virtual void GetLowEdge(Double_t *edge) const
Fill array with low edge of bins for 1D histogram Better to use h1.GetXaxis().GetLowEdge(edge) ...
Definition: TH1.cxx:8299
TAxis * GetXaxis()
Definition: TH1.h:300
virtual Long64_t Merge(TCollection *list)
Add all histograms in the collection to this histogram.
Definition: TH1.cxx:5340
virtual Int_t GetNbinsY() const
Definition: TH1.h:278
virtual Double_t RetrieveBinContent(Int_t bin) const
Raw retrieval of bin content on internal data structure see convention for numbering bins in TH1::Get...
Definition: TH1.h:623
virtual Double_t GetBinError(Int_t bin) const
Return value of error associated to bin number bin.
Definition: TH1.cxx:8175
TDirectory * GetDirectory() const
Definition: TH1.h:259
virtual void SetLabelColor(Color_t color=1, Option_t *axis="X")
Set axis labels color.
Definition: Haxis.cxx:226
Int_t fNcells
number of bins(1D), cells (2D) +U/Overflows
Definition: TH1.h:79
don&#39;t draw the histogram title
Definition: TH1.h:153
virtual void SetLabelOffset(Float_t offset=0.005, Option_t *axis="X")
Set offset between axis and axis&#39; labels.
Definition: Haxis.cxx:267
virtual void SetTitleOffset(Float_t offset=1, Option_t *axis="X")
Specify a parameter offset to control the distance between the axis and the axis&#39; title...
Definition: Haxis.cxx:345
const char * Data() const
Definition: TString.h:347
Array of chars or bytes (8 bits per element).
Definition: TArrayC.h:27