Logo ROOT   6.12/07
Reference Guide
TGraph.h
Go to the documentation of this file.
1 // @(#)root/hist:$Id$
2 // Author: Rene Brun, Olivier Couet 12/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_TGraph
13 #define ROOT_TGraph
14 
15 
16 //////////////////////////////////////////////////////////////////////////
17 // //
18 // TGraph //
19 // //
20 // Graph graphics class. //
21 // //
22 //////////////////////////////////////////////////////////////////////////
23 
24 #include "TNamed.h"
25 #include "TAttLine.h"
26 #include "TAttFill.h"
27 #include "TAttMarker.h"
28 #include "TVectorFfwd.h"
29 #include "TVectorDfwd.h"
30 
31 class TBrowser;
32 class TAxis;
33 class TH1;
34 class TH1F;
35 class TCollection;
36 class TF1;
37 class TSpline;
38 
39 #include "TFitResultPtr.h"
40 
41 class TGraph : public TNamed, public TAttLine, public TAttFill, public TAttMarker {
42 
43 protected:
44 
45  Int_t fMaxSize; ///<!Current dimension of arrays fX and fY
46  Int_t fNpoints; ///< Number of points <= fMaxSize
47  Double_t *fX; ///<[fNpoints] array of X points
48  Double_t *fY; ///<[fNpoints] array of Y points
49  TList *fFunctions; ///< Pointer to list of functions (fits and user)
50  TH1F *fHistogram; ///< Pointer to histogram used for drawing axis
51  Double_t fMinimum; ///< Minimum value for plotting along y
52  Double_t fMaximum; ///< Maximum value for plotting along y
53 
54  static void SwapValues(Double_t* arr, Int_t pos1, Int_t pos2);
55  virtual void SwapPoints(Int_t pos1, Int_t pos2);
56 
57  virtual Double_t **Allocate(Int_t newsize);
58  Double_t **AllocateArrays(Int_t Narrays, Int_t arraySize);
59  virtual Bool_t CopyPoints(Double_t **newarrays, Int_t ibegin, Int_t iend, Int_t obegin);
60  virtual void CopyAndRelease(Double_t **newarrays, Int_t ibegin, Int_t iend, Int_t obegin);
62  Double_t **ExpandAndCopy(Int_t size, Int_t iend);
63  virtual void FillZero(Int_t begin, Int_t end, Bool_t from_ctor = kTRUE);
64  Double_t **ShrinkAndCopy(Int_t size, Int_t iend);
65  virtual Bool_t DoMerge(const TGraph * g);
66 
67 public:
68  // TGraph status bits
69  enum EStatusBits {
70  kClipFrame = BIT(10), ///< clip to the frame boundary
71  kResetHisto = BIT(17), ///< fHistogram must be reset in GetHistogram
72  kNotEditable = BIT(18), ///< bit set if graph is non editable
73  kIsSortedX = BIT(19) ///< graph is sorted in X points
74  };
75 
76  TGraph();
77  TGraph(Int_t n);
78  TGraph(Int_t n, const Int_t *x, const Int_t *y);
79  TGraph(Int_t n, const Float_t *x, const Float_t *y);
80  TGraph(Int_t n, const Double_t *x, const Double_t *y);
81  TGraph(const TGraph &gr);
82  TGraph& operator=(const TGraph&);
83  TGraph(const TVectorF &vx, const TVectorF &vy);
84  TGraph(const TVectorD &vx, const TVectorD &vy);
85  TGraph(const TH1 *h);
86  TGraph(const TF1 *f, Option_t *option="");
87  TGraph(const char *filename, const char *format="%lg %lg", Option_t *option="");
88  virtual ~TGraph();
89 
90  virtual void Apply(TF1 *f);
91  virtual void Browse(TBrowser *b);
92  virtual Double_t Chisquare(TF1 *f1, Option_t *option="") const;
93  static Bool_t CompareArg(const TGraph* gr, Int_t left, Int_t right);
94  static Bool_t CompareX(const TGraph* gr, Int_t left, Int_t right);
95  static Bool_t CompareY(const TGraph* gr, Int_t left, Int_t right);
96  static Bool_t CompareRadius(const TGraph* gr, Int_t left, Int_t right);
97  virtual void ComputeRange(Double_t &xmin, Double_t &ymin, Double_t &xmax, Double_t &ymax) const;
98  virtual Int_t DistancetoPrimitive(Int_t px, Int_t py);
99  virtual void Draw(Option_t *chopt="");
100  virtual void DrawGraph(Int_t n, const Int_t *x, const Int_t *y, Option_t *option="");
101  virtual void DrawGraph(Int_t n, const Float_t *x, const Float_t *y, Option_t *option="");
102  virtual void DrawGraph(Int_t n, const Double_t *x=0, const Double_t *y=0, Option_t *option="");
103  virtual void DrawPanel(); // *MENU*
104  virtual Double_t Eval(Double_t x, TSpline *spline=0, Option_t *option="") const;
105  virtual void ExecuteEvent(Int_t event, Int_t px, Int_t py);
106  virtual void Expand(Int_t newsize);
107  virtual void Expand(Int_t newsize, Int_t step);
108  virtual TObject *FindObject(const char *name) const;
109  virtual TObject *FindObject(const TObject *obj) const;
110  virtual TFitResultPtr Fit(const char *formula ,Option_t *option="" ,Option_t *goption="", Axis_t xmin=0, Axis_t xmax=0); // *MENU*
111  virtual TFitResultPtr Fit(TF1 *f1 ,Option_t *option="" ,Option_t *goption="", Axis_t xmin=0, Axis_t xmax=0);
112  virtual void FitPanel(); // *MENU*
113  Bool_t GetEditable() const;
114  TF1 *GetFunction(const char *name) const;
115  TH1F *GetHistogram() const;
116  TList *GetListOfFunctions() const { return fFunctions; }
117  virtual Double_t GetCorrelationFactor() const;
118  virtual Double_t GetCovariance() const;
119  virtual Double_t GetMean(Int_t axis=1) const;
120  virtual Double_t GetRMS(Int_t axis=1) const;
121  Int_t GetMaxSize() const {return fMaxSize;}
122  Int_t GetN() const {return fNpoints;}
123  virtual Double_t GetErrorX(Int_t bin) const;
124  virtual Double_t GetErrorY(Int_t bin) const;
125  virtual Double_t GetErrorXhigh(Int_t bin) const;
126  virtual Double_t GetErrorXlow(Int_t bin) const;
127  virtual Double_t GetErrorYhigh(Int_t bin) const;
128  virtual Double_t GetErrorYlow(Int_t bin) const;
129  Double_t *GetX() const {return fX;}
130  Double_t *GetY() const {return fY;}
131  virtual Double_t *GetEX() const {return 0;}
132  virtual Double_t *GetEY() const {return 0;}
133  virtual Double_t *GetEXhigh() const {return 0;}
134  virtual Double_t *GetEXlow() const {return 0;}
135  virtual Double_t *GetEYhigh() const {return 0;}
136  virtual Double_t *GetEYlow() const {return 0;}
137  virtual Double_t *GetEXlowd() const {return 0;}
138  virtual Double_t *GetEXhighd() const {return 0;}
139  virtual Double_t *GetEYlowd() const {return 0;}
140  virtual Double_t *GetEYhighd() const {return 0;}
141  Double_t GetMaximum() const {return fMaximum;}
142  Double_t GetMinimum() const {return fMinimum;}
143  TAxis *GetXaxis() const ;
144  TAxis *GetYaxis() const ;
145  virtual Int_t GetPoint(Int_t i, Double_t &x, Double_t &y) const;
146 
147  virtual void InitExpo(Double_t xmin=0, Double_t xmax=0);
148  virtual void InitGaus(Double_t xmin=0, Double_t xmax=0);
149  virtual void InitPolynom(Double_t xmin=0, Double_t xmax=0);
150  virtual Int_t InsertPoint(); // *MENU*
151  virtual void InsertPointBefore(Int_t ipoint, Double_t x, Double_t y);
152  virtual Double_t Integral(Int_t first=0, Int_t last=-1) const;
153  virtual Bool_t IsEditable() const {return !TestBit(kNotEditable);}
154  virtual Int_t IsInside(Double_t x, Double_t y) const;
155  virtual void LeastSquareFit(Int_t m, Double_t *a, Double_t xmin=0, Double_t xmax=0);
156  virtual void LeastSquareLinearFit(Int_t n, Double_t &a0, Double_t &a1, Int_t &ifail, Double_t xmin=0, Double_t xmax=0);
157  virtual Int_t Merge(TCollection* list);
158  virtual void Paint(Option_t *chopt="");
159  void PaintGraph(Int_t npoints, const Double_t *x, const Double_t *y, Option_t *chopt);
160  void PaintGrapHist(Int_t npoints, const Double_t *x, const Double_t *y, Option_t *chopt);
161  virtual void PaintStats(TF1 *fit);
162  virtual void Print(Option_t *chopt="") const;
163  virtual void RecursiveRemove(TObject *obj);
164  virtual Int_t RemovePoint(); // *MENU*
165  virtual Int_t RemovePoint(Int_t ipoint);
166  virtual void SavePrimitive(std::ostream &out, Option_t *option = "");
167  virtual void SetEditable(Bool_t editable=kTRUE); // *TOGGLE* *GETTER=GetEditable
168  virtual void SetHistogram(TH1F *h) {fHistogram = h;}
169  virtual void SetMaximum(Double_t maximum=-1111); // *MENU*
170  virtual void SetMinimum(Double_t minimum=-1111); // *MENU*
171  virtual void Set(Int_t n);
172  virtual void SetPoint(Int_t i, Double_t x, Double_t y);
173  virtual void SetTitle(const char *title=""); // *MENU*
174  virtual void Sort(Bool_t (*greater)(const TGraph*, Int_t, Int_t)=&TGraph::CompareX,
175  Bool_t ascending=kTRUE, Int_t low=0, Int_t high=-1111);
176  virtual void UseCurrentStyle();
177  void Zero(Int_t &k,Double_t AZ,Double_t BZ,Double_t E2,Double_t &X,Double_t &Y,Int_t maxiterations);
178 
179  ClassDef(TGraph,4) //Graph graphics class
180 };
181 
182 inline Double_t **TGraph::Allocate(Int_t newsize) {
183  return AllocateArrays(2, newsize);
184 }
185 
186 #endif
virtual TFitResultPtr Fit(const char *formula, Option_t *option="", Option_t *goption="", Axis_t xmin=0, Axis_t xmax=0)
Fit this graph with function with name fname.
Definition: TGraph.cxx:1050
virtual Bool_t IsEditable() const
Definition: TGraph.h:153
void PaintGrapHist(Int_t npoints, const Double_t *x, const Double_t *y, Option_t *chopt)
Draw the (x,y) as a histogram.
Definition: TGraph.cxx:1977
Int_t fNpoints
Number of points <= fMaxSize.
Definition: TGraph.h:46
virtual Double_t GetErrorYhigh(Int_t bin) const
This function is called by GraphFitChisquare.
Definition: TGraph.cxx:1436
float xmin
Definition: THbookFile.cxx:93
Double_t * fX
[fNpoints] array of X points
Definition: TGraph.h:47
virtual Double_t * GetEX() const
Definition: TGraph.h:131
virtual void FitPanel()
Display a GUI panel with all graph fit options.
Definition: TGraph.cxx:1309
virtual Double_t GetErrorY(Int_t bin) const
This function is called by GraphFitChisquare.
Definition: TGraph.cxx:1406
static Bool_t CompareRadius(const TGraph *gr, Int_t left, Int_t right)
Return kTRUE if point number "left"&#39;s distance to origin is bigger than that of point number "right"...
Definition: TGraph.cxx:636
auto * m
Definition: textangle.C:8
TGraph()
Graph default constructor.
Definition: TGraph.cxx:86
TF1 * GetFunction(const char *name) const
Return pointer to function with name.
Definition: TGraph.cxx:1457
virtual Double_t ** Allocate(Int_t newsize)
Definition: TGraph.h:182
void PaintGraph(Int_t npoints, const Double_t *x, const Double_t *y, Option_t *chopt)
Draw the (x,y) as a graph.
Definition: TGraph.cxx:1968
float Float_t
Definition: RtypesCore.h:53
const char Option_t
Definition: RtypesCore.h:62
float ymin
Definition: THbookFile.cxx:93
virtual void InitPolynom(Double_t xmin=0, Double_t xmax=0)
Compute Initial values of parameters for a polynom.
Definition: TGraph.cxx:1671
virtual Double_t * GetEYlow() const
Definition: TGraph.h:136
double Axis_t
Definition: RtypesCore.h:72
virtual void SetMinimum(Double_t minimum=-1111)
Set the minimum of the graph.
Definition: TGraph.cxx:2175
#define BIT(n)
Definition: Rtypes.h:78
TH1 * h
Definition: legend2.C:5
static Bool_t CompareX(const TGraph *gr, Int_t left, Int_t right)
Return kTRUE if fX[left] > fX[right]. Can be used by Sort.
Definition: TGraph.cxx:619
Base class for spline implementation containing the Draw/Paint methods.
Definition: TSpline.h:20
virtual Double_t * GetEXhighd() const
Definition: TGraph.h:138
TVectorT.
Definition: TMatrixTBase.h:77
TList * GetListOfFunctions() const
Definition: TGraph.h:116
TAxis * GetYaxis() const
Get y axis of the graph.
Definition: TGraph.cxx:1602
virtual Double_t * GetEY() const
Definition: TGraph.h:132
R__ALWAYS_INLINE Bool_t TestBit(UInt_t f) const
Definition: TObject.h:172
virtual TObject * FindObject(const char *name) const
Search object named name in the list of functions.
Definition: TGraph.cxx:1023
1-D histogram with a float per channel (see TH1 documentation)}
Definition: TH1.h:567
virtual void DrawPanel()
Display a panel with all graph drawing options.
Definition: TGraph.cxx:842
virtual void LeastSquareFit(Int_t m, Double_t *a, Double_t xmin=0, Double_t xmax=0)
Least squares polynomial fitting without weights.
Definition: TGraph.cxx:1838
int Int_t
Definition: RtypesCore.h:41
bool Bool_t
Definition: RtypesCore.h:59
virtual Double_t GetCovariance() const
Return covariance of vectors x,y.
Definition: TGraph.cxx:1343
TList * fFunctions
Pointer to list of functions (fits and user)
Definition: TGraph.h:49
virtual void SetTitle(const char *title="")
Set graph title.
Definition: TGraph.cxx:2208
TH1F * fHistogram
Pointer to histogram used for drawing axis.
Definition: TGraph.h:50
virtual void RecursiveRemove(TObject *obj)
Recursively remove object from the list of functions.
Definition: TGraph.cxx:2005
virtual Double_t Integral(Int_t first=0, Int_t last=-1) const
Integrate the TGraph data within a given (index) range.
Definition: TGraph.cxx:1790
virtual Double_t GetErrorYlow(Int_t bin) const
This function is called by GraphFitChisquare.
Definition: TGraph.cxx:1446
virtual void Apply(TF1 *f)
Apply function f to all the data points f may be a 1-D function TF1 or 2-d function TF2 The Y values ...
Definition: TGraph.cxx:552
virtual void Draw(Option_t *chopt="")
Draw this graph with its current attributes.
Definition: TGraph.cxx:745
virtual Int_t Merge(TCollection *list)
Adds all graphs from the collection to this graph.
Definition: TGraph.cxx:2411
Marker Attributes class.
Definition: TAttMarker.h:19
virtual Bool_t CopyPoints(Double_t **newarrays, Int_t ibegin, Int_t iend, Int_t obegin)
Copy points from fX and fY to arrays[0] and arrays[1] or to fX and fY if arrays == 0 and ibegin != ie...
Definition: TGraph.cxx:693
Double_t ** ShrinkAndCopy(Int_t size, Int_t iend)
if size*2 <= fMaxSize allocate new arrays of size points, copy points [0,oend).
Definition: TGraph.cxx:2220
Fill Area Attributes class.
Definition: TAttFill.h:19
Double_t x[n]
Definition: legend1.C:17
virtual void Paint(Option_t *chopt="")
Draw this graph with its current attributes.
Definition: TGraph.cxx:1959
#define ClassDef(name, id)
Definition: Rtypes.h:320
virtual Double_t Chisquare(TF1 *f1, Option_t *option="") const
Return the chisquare of this graph with respect to f1.
Definition: TGraph.cxx:591
TGraph & operator=(const TGraph &)
Equal operator for this graph.
Definition: TGraph.cxx:187
The TNamed class is the base class for all named ROOT classes.
Definition: TNamed.h:29
virtual void Sort(Bool_t(*greater)(const TGraph *, Int_t, Int_t)=&TGraph::CompareX, Bool_t ascending=kTRUE, Int_t low=0, Int_t high=-1111)
Sorts the points of this TGraph using in-place quicksort (see e.g.
Definition: TGraph.cxx:2253
virtual void Print(Option_t *chopt="") const
Print graph values.
Definition: TGraph.cxx:1995
virtual void SetMaximum(Double_t maximum=-1111)
Set the maximum of the graph.
Definition: TGraph.cxx:2166
void Zero(Int_t &k, Double_t AZ, Double_t BZ, Double_t E2, Double_t &X, Double_t &Y, Int_t maxiterations)
Find zero of a continuous function.
Definition: TGraph.cxx:2443
virtual Double_t GetErrorX(Int_t bin) const
This function is called by GraphFitChisquare.
Definition: TGraph.cxx:1397
Double_t fMinimum
Minimum value for plotting along y.
Definition: TGraph.h:51
virtual Double_t Eval(Double_t x, TSpline *spline=0, Option_t *option="") const
Interpolate points in this graph at x using a TSpline.
Definition: TGraph.cxx:863
virtual Int_t RemovePoint()
Delete point close to the mouse position.
Definition: TGraph.cxx:2016
virtual void ExecuteEvent(Int_t event, Int_t px, Int_t py)
Execute action corresponding to one event.
Definition: TGraph.cxx:966
A doubly linked list.
Definition: TList.h:44
virtual void Expand(Int_t newsize)
If array sizes <= newsize, expand storage to 2*newsize.
Definition: TGraph.cxx:975
Bool_t CtorAllocate()
In constructors set fNpoints than call this method.
Definition: TGraph.cxx:719
virtual Double_t * GetEYhighd() const
Definition: TGraph.h:140
Using a TBrowser one can browse all ROOT objects.
Definition: TBrowser.h:37
virtual void SavePrimitive(std::ostream &out, Option_t *option="")
Save primitive as a C++ statement(s) on output stream out.
Definition: TGraph.cxx:2053
float ymax
Definition: THbookFile.cxx:93
virtual Double_t GetErrorXlow(Int_t bin) const
This function is called by GraphFitChisquare.
Definition: TGraph.cxx:1426
virtual Int_t GetPoint(Int_t i, Double_t &x, Double_t &y) const
Get x and y values for point number i.
Definition: TGraph.cxx:1580
virtual void SwapPoints(Int_t pos1, Int_t pos2)
Swap points.
Definition: TGraph.cxx:2355
Class to manage histogram axis.
Definition: TAxis.h:30
auto * a
Definition: textangle.C:12
Provides an indirection to the TFitResult class and with a semantics identical to a TFitResult pointe...
Definition: TFitResultPtr.h:31
static void SwapValues(Double_t *arr, Int_t pos1, Int_t pos2)
Swap values.
Definition: TGraph.cxx:2364
Collection abstract base class.
Definition: TCollection.h:63
virtual Bool_t DoMerge(const TGraph *g)
protected function to perform the merge operation of a graph
Definition: TGraph.cxx:2428
fHistogram must be reset in GetHistogram
Definition: TGraph.h:71
virtual Int_t InsertPoint()
Insert a new point at the mouse position.
Definition: TGraph.cxx:1691
Int_t GetN() const
Definition: TGraph.h:122
float xmax
Definition: THbookFile.cxx:93
Bool_t GetEditable() const
Return kTRUE if kNotEditable bit is not set, kFALSE otherwise.
Definition: TGraph.cxx:2148
virtual Double_t GetRMS(Int_t axis=1) const
Return RMS of X (axis=1) or Y (axis=2)
Definition: TGraph.cxx:1374
Double_t GetMaximum() const
Definition: TGraph.h:141
TGraphErrors * gr
Definition: legend1.C:25
TAxis * GetXaxis() const
Get x axis of the graph.
Definition: TGraph.cxx:1592
Double_t * GetX() const
Definition: TGraph.h:129
virtual Double_t * GetEXlowd() const
Definition: TGraph.h:137
virtual void InsertPointBefore(Int_t ipoint, Double_t x, Double_t y)
Insert a new point with coordinates (x,y) before the point number ipoint.
Definition: TGraph.cxx:1736
virtual void InitGaus(Double_t xmin=0, Double_t xmax=0)
Compute Initial values of parameters for a gaussian.
Definition: TGraph.cxx:1612
virtual Double_t * GetEYlowd() const
Definition: TGraph.h:139
virtual Double_t GetMean(Int_t axis=1) const
Return mean value of X (axis=1) or Y (axis=2)
Definition: TGraph.cxx:1359
TH1F * GetHistogram() const
Returns a pointer to the histogram used to draw the axis Takes into account the two following cases...
Definition: TGraph.cxx:1469
double Double_t
Definition: RtypesCore.h:55
virtual void PaintStats(TF1 *fit)
Draw the stats.
Definition: TGraph.cxx:1986
virtual Double_t * GetEXlow() const
Definition: TGraph.h:134
EStatusBits
Definition: TObject.h:57
virtual Int_t DistancetoPrimitive(Int_t px, Int_t py)
Compute distance from point px,py to a graph.
Definition: TGraph.cxx:789
graph is sorted in X points
Definition: TGraph.h:73
Double_t y[n]
Definition: legend1.C:17
The TH1 histogram class.
Definition: TH1.h:56
virtual ~TGraph()
Graph default destructor.
Definition: TGraph.cxx:505
Double_t fMaximum
Maximum value for plotting along y.
Definition: TGraph.h:52
Double_t ** ExpandAndCopy(Int_t size, Int_t iend)
if size > fMaxSize allocate new arrays of 2*size points and copy iend first points.
Definition: TGraph.cxx:1000
Mother of all ROOT objects.
Definition: TObject.h:37
virtual void UseCurrentStyle()
Set current style settings in this graph This function is called when either TCanvas::UseCurrentStyle...
Definition: TGraph.cxx:2376
virtual void Browse(TBrowser *b)
Browse.
Definition: TGraph.cxx:565
virtual void FillZero(Int_t begin, Int_t end, Bool_t from_ctor=kTRUE)
Set zero values for point arrays in the range [begin, end) Should be redefined in descendant classes...
Definition: TGraph.cxx:1014
virtual void SetPoint(Int_t i, Double_t x, Double_t y)
Set x and y values for point number i.
Definition: TGraph.cxx:2184
Double_t * fY
[fNpoints] array of Y points
Definition: TGraph.h:48
Double_t * GetY() const
Definition: TGraph.h:130
virtual void InitExpo(Double_t xmin=0, Double_t xmax=0)
Compute Initial values of parameters for an exponential.
Definition: TGraph.cxx:1650
virtual void LeastSquareLinearFit(Int_t n, Double_t &a0, Double_t &a1, Int_t &ifail, Double_t xmin=0, Double_t xmax=0)
Least square linear fit without weights.
Definition: TGraph.cxx:1913
static Bool_t CompareArg(const TGraph *gr, Int_t left, Int_t right)
Return kTRUE if point number "left"&#39;s argument (angle with respect to positive x-axis) is bigger than...
Definition: TGraph.cxx:608
1-Dim function class
Definition: TF1.h:211
A Graph is a graphics object made of two arrays X and Y with npoints each.
Definition: TGraph.h:41
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
virtual void CopyAndRelease(Double_t **newarrays, Int_t ibegin, Int_t iend, Int_t obegin)
Copy points from fX and fY to arrays[0] and arrays[1] or to fX and fY if arrays == 0 and ibegin != ie...
Definition: TGraph.cxx:676
virtual void SetHistogram(TH1F *h)
Definition: TGraph.h:168
Int_t GetMaxSize() const
Definition: TGraph.h:121
virtual void DrawGraph(Int_t n, const Int_t *x, const Int_t *y, Option_t *option="")
Draw this graph with new attributes.
Definition: TGraph.cxx:799
virtual Double_t GetCorrelationFactor() const
Return graph correlation factor.
Definition: TGraph.cxx:1331
Definition: first.py:1
Int_t fMaxSize
!Current dimension of arrays fX and fY
Definition: TGraph.h:45
virtual Int_t IsInside(Double_t x, Double_t y) const
Return 1 if the point (x,y) is inside the polygon defined by the graph vertices 0 otherwise...
Definition: TGraph.cxx:1823
virtual Double_t * GetEYhigh() const
Definition: TGraph.h:135
virtual void ComputeRange(Double_t &xmin, Double_t &ymin, Double_t &xmax, Double_t &ymax) const
Compute the x/y range of the points in this graph.
Definition: TGraph.cxx:645
virtual void Set(Int_t n)
Set number of points in the graph Existing coordinates are preserved New coordinates above fNpoints a...
Definition: TGraph.cxx:2133
Double_t GetMinimum() const
Definition: TGraph.h:142
virtual void SetEditable(Bool_t editable=kTRUE)
if editable=kFALSE, the graph cannot be modified with the mouse by default a TGraph is editable ...
Definition: TGraph.cxx:2157
const Bool_t kTRUE
Definition: RtypesCore.h:87
Double_t ** AllocateArrays(Int_t Narrays, Int_t arraySize)
Allocate arrays.
Definition: TGraph.cxx:529
const Int_t n
Definition: legend1.C:16
virtual Double_t GetErrorXhigh(Int_t bin) const
This function is called by GraphFitChisquare.
Definition: TGraph.cxx:1416
Line Attributes class.
Definition: TAttLine.h:18
clip to the frame boundary
Definition: TGraph.h:70
char name[80]
Definition: TGX11.cxx:109
virtual Double_t * GetEXhigh() const
Definition: TGraph.h:133
bit set if graph is non editable
Definition: TGraph.h:72
static Bool_t CompareY(const TGraph *gr, Int_t left, Int_t right)
Return kTRUE if fY[left] > fY[right]. Can be used by Sort.
Definition: TGraph.cxx:627
static constexpr double g