ROOT  6.06/09
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 #ifndef ROOT_TNamed
25 #include "TNamed.h"
26 #endif
27 #ifndef ROOT_TAttLine
28 #include "TAttLine.h"
29 #endif
30 #ifndef ROOT_TAttFill
31 #include "TAttFill.h"
32 #endif
33 #ifndef ROOT_TAttMarker
34 #include "TAttMarker.h"
35 #endif
36 #ifndef ROOT_TVectorFfwd
37 #include "TVectorFfwd.h"
38 #endif
39 #ifndef ROOT_TVectorDfwd
40 #include "TVectorDfwd.h"
41 #endif
42 
43 class TBrowser;
44 class TAxis;
45 class TH1;
46 class TH1F;
47 class TCollection;
48 class TF1;
49 class TSpline;
50 
51 #include "TFitResultPtr.h"
52 
53 class TGraph : public TNamed, public TAttLine, public TAttFill, public TAttMarker {
54 
55 protected:
56 
57  Int_t fMaxSize; //!Current dimension of arrays fX and fY
58  Int_t fNpoints; //Number of points <= fMaxSize
59  Double_t *fX; //[fNpoints] array of X points
60  Double_t *fY; //[fNpoints] array of Y points
61  TList *fFunctions; //Pointer to list of functions (fits and user)
62  TH1F *fHistogram; //Pointer to histogram used for drawing axis
63  Double_t fMinimum; //Minimum value for plotting along y
64  Double_t fMaximum; //Maximum value for plotting along y
65 
66  static void SwapValues(Double_t* arr, Int_t pos1, Int_t pos2);
67  virtual void SwapPoints(Int_t pos1, Int_t pos2);
68 
69  virtual Double_t **Allocate(Int_t newsize);
70  Double_t **AllocateArrays(Int_t Narrays, Int_t arraySize);
71  virtual Bool_t CopyPoints(Double_t **newarrays, Int_t ibegin, Int_t iend, Int_t obegin);
72  virtual void CopyAndRelease(Double_t **newarrays, Int_t ibegin, Int_t iend, Int_t obegin);
74  Double_t **ExpandAndCopy(Int_t size, Int_t iend);
75  virtual void FillZero(Int_t begin, Int_t end, Bool_t from_ctor = kTRUE);
76  Double_t **ShrinkAndCopy(Int_t size, Int_t iend);
77  virtual Bool_t DoMerge(const TGraph * g);
78 
79 public:
80  // TGraph status bits
81  enum {
82  kClipFrame = BIT(10), // clip to the frame boundary
83  kNotEditable = BIT(18) // bit set if graph is non editable
84  };
85 
86  TGraph();
87  TGraph(Int_t n);
88  TGraph(Int_t n, const Int_t *x, const Int_t *y);
89  TGraph(Int_t n, const Float_t *x, const Float_t *y);
90  TGraph(Int_t n, const Double_t *x, const Double_t *y);
91  TGraph(const TGraph &gr);
92  TGraph& operator=(const TGraph&);
93  TGraph(const TVectorF &vx, const TVectorF &vy);
94  TGraph(const TVectorD &vx, const TVectorD &vy);
95  TGraph(const TH1 *h);
96  TGraph(const TF1 *f, Option_t *option="");
97  TGraph(const char *filename, const char *format="%lg %lg", Option_t *option="");
98  virtual ~TGraph();
99 
100  virtual void Apply(TF1 *f);
101  virtual void Browse(TBrowser *b);
102  virtual Double_t Chisquare(TF1 *f1, Option_t *option="") const;
103  static Bool_t CompareArg(const TGraph* gr, Int_t left, Int_t right);
104  static Bool_t CompareX(const TGraph* gr, Int_t left, Int_t right);
105  static Bool_t CompareY(const TGraph* gr, Int_t left, Int_t right);
106  static Bool_t CompareRadius(const TGraph* gr, Int_t left, Int_t right);
107  virtual void ComputeRange(Double_t &xmin, Double_t &ymin, Double_t &xmax, Double_t &ymax) const;
108  virtual Int_t DistancetoPrimitive(Int_t px, Int_t py);
109  virtual void Draw(Option_t *chopt="");
110  virtual void DrawGraph(Int_t n, const Int_t *x, const Int_t *y, Option_t *option="");
111  virtual void DrawGraph(Int_t n, const Float_t *x, const Float_t *y, Option_t *option="");
112  virtual void DrawGraph(Int_t n, const Double_t *x=0, const Double_t *y=0, Option_t *option="");
113  virtual void DrawPanel(); // *MENU*
114  virtual Double_t Eval(Double_t x, TSpline *spline=0, Option_t *option="") const;
115  virtual void ExecuteEvent(Int_t event, Int_t px, Int_t py);
116  virtual void Expand(Int_t newsize);
117  virtual void Expand(Int_t newsize, Int_t step);
118  virtual TObject *FindObject(const char *name) const;
119  virtual TObject *FindObject(const TObject *obj) const;
120  virtual TFitResultPtr Fit(const char *formula ,Option_t *option="" ,Option_t *goption="", Axis_t xmin=0, Axis_t xmax=0); // *MENU*
121  virtual TFitResultPtr Fit(TF1 *f1 ,Option_t *option="" ,Option_t *goption="", Axis_t xmin=0, Axis_t xmax=0);
122  virtual void FitPanel(); // *MENU*
123  Bool_t GetEditable() const;
124  TF1 *GetFunction(const char *name) const;
125  TH1F *GetHistogram() const;
126  TList *GetListOfFunctions() const { return fFunctions; }
127  virtual Double_t GetCorrelationFactor() const;
128  virtual Double_t GetCovariance() const;
129  virtual Double_t GetMean(Int_t axis=1) const;
130  virtual Double_t GetRMS(Int_t axis=1) const;
131  Int_t GetMaxSize() const {return fMaxSize;}
132  Int_t GetN() const {return fNpoints;}
133  virtual Double_t GetErrorX(Int_t bin) const;
134  virtual Double_t GetErrorY(Int_t bin) const;
135  virtual Double_t GetErrorXhigh(Int_t bin) const;
136  virtual Double_t GetErrorXlow(Int_t bin) const;
137  virtual Double_t GetErrorYhigh(Int_t bin) const;
138  virtual Double_t GetErrorYlow(Int_t bin) const;
139  Double_t *GetX() const {return fX;}
140  Double_t *GetY() const {return fY;}
141  virtual Double_t *GetEX() const {return 0;}
142  virtual Double_t *GetEY() const {return 0;}
143  virtual Double_t *GetEXhigh() const {return 0;}
144  virtual Double_t *GetEXlow() const {return 0;}
145  virtual Double_t *GetEYhigh() const {return 0;}
146  virtual Double_t *GetEYlow() const {return 0;}
147  virtual Double_t *GetEXlowd() const {return 0;}
148  virtual Double_t *GetEXhighd() const {return 0;}
149  virtual Double_t *GetEYlowd() const {return 0;}
150  virtual Double_t *GetEYhighd() const {return 0;}
151  Double_t GetMaximum() const {return fMaximum;}
152  Double_t GetMinimum() const {return fMinimum;}
153  TAxis *GetXaxis() const ;
154  TAxis *GetYaxis() const ;
155  virtual Int_t GetPoint(Int_t i, Double_t &x, Double_t &y) const;
156 
157  virtual void InitExpo(Double_t xmin=0, Double_t xmax=0);
158  virtual void InitGaus(Double_t xmin=0, Double_t xmax=0);
159  virtual void InitPolynom(Double_t xmin=0, Double_t xmax=0);
160  virtual Int_t InsertPoint(); // *MENU*
161  virtual Double_t Integral(Int_t first=0, Int_t last=-1) const;
162  virtual Bool_t IsEditable() const {return !TestBit(kNotEditable);}
163  virtual Int_t IsInside(Double_t x, Double_t y) const;
164  virtual void LeastSquareFit(Int_t m, Double_t *a, Double_t xmin=0, Double_t xmax=0);
165  virtual void LeastSquareLinearFit(Int_t n, Double_t &a0, Double_t &a1, Int_t &ifail, Double_t xmin=0, Double_t xmax=0);
166  virtual Int_t Merge(TCollection* list);
167  virtual void Paint(Option_t *chopt="");
168  void PaintGraph(Int_t npoints, const Double_t *x, const Double_t *y, Option_t *chopt);
169  void PaintGrapHist(Int_t npoints, const Double_t *x, const Double_t *y, Option_t *chopt);
170  virtual void PaintStats(TF1 *fit);
171  virtual void Print(Option_t *chopt="") const;
172  virtual void RecursiveRemove(TObject *obj);
173  virtual Int_t RemovePoint(); // *MENU*
174  virtual Int_t RemovePoint(Int_t ipoint);
175  virtual void SavePrimitive(std::ostream &out, Option_t *option = "");
176  virtual void SetEditable(Bool_t editable=kTRUE); // *TOGGLE* *GETTER=GetEditable
177  virtual void SetHistogram(TH1F *h) {fHistogram = h;}
178  virtual void SetMaximum(Double_t maximum=-1111); // *MENU*
179  virtual void SetMinimum(Double_t minimum=-1111); // *MENU*
180  virtual void Set(Int_t n);
181  virtual void SetPoint(Int_t i, Double_t x, Double_t y);
182  virtual void SetTitle(const char *title=""); // *MENU*
183  virtual void Sort(Bool_t (*greater)(const TGraph*, Int_t, Int_t)=&TGraph::CompareX,
184  Bool_t ascending=kTRUE, Int_t low=0, Int_t high=-1111);
185  virtual void UseCurrentStyle();
186  void Zero(Int_t &k,Double_t AZ,Double_t BZ,Double_t E2,Double_t &X,Double_t &Y,Int_t maxiterations);
187 
188  ClassDef(TGraph,4) //Graph graphics class
189 };
190 
191 inline Double_t **TGraph::Allocate(Int_t newsize) {
192  return AllocateArrays(2, newsize);
193 }
194 
195 #endif
virtual Double_t GetErrorX(Int_t bin) const
This function is called by GraphFitChisquare.
Definition: TGraph.cxx:1371
virtual Double_t * GetEYlow() const
Definition: TGraph.h:146
virtual Double_t * GetEYhighd() const
Definition: TGraph.h:150
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:1024
virtual TObject * FindObject(const char *name) const
Search object named name in the list of functions.
Definition: TGraph.cxx:997
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:1925
Int_t fNpoints
Current dimension of arrays fX and fY.
Definition: TGraph.h:58
float xmin
Definition: THbookFile.cxx:93
Double_t * fX
Definition: TGraph.h:59
virtual void FitPanel()
Display a GUI panel with all graph fit options.
Definition: TGraph.cxx:1283
virtual Double_t GetErrorYhigh(Int_t bin) const
This function is called by GraphFitChisquare.
Definition: TGraph.cxx:1410
static Bool_t CompareRadius(const TGraph *gr, Int_t left, Int_t right)
Return kTRUE if point number "left"'s distance to origin is bigger than that of point number "right"...
Definition: TGraph.cxx:631
virtual Double_t ** Allocate(Int_t newsize)
Definition: TGraph.h:191
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:1916
float Float_t
Definition: RtypesCore.h:53
const char Option_t
Definition: RtypesCore.h:62
virtual Double_t * GetEYlowd() const
Definition: TGraph.h:149
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:1642
double Axis_t
Definition: RtypesCore.h:72
virtual void SetMinimum(Double_t minimum=-1111)
Set the minimum of the graph.
Definition: TGraph.cxx:2118
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:1771
#define BIT(n)
Definition: Rtypes.h:120
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:614
Base class for spline implementation containing the Draw/Paint methods //.
Definition: TSpline.h:22
virtual Bool_t IsEditable() const
Definition: TGraph.h:162
static const char * filename()
virtual Double_t * GetEXlowd() const
Definition: TGraph.h:147
1-D histogram with a float per channel (see TH1 documentation)}
Definition: TH1.h:570
virtual void DrawPanel()
Display a panel with all graph drawing options.
Definition: TGraph.cxx:834
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:1786
int Int_t
Definition: RtypesCore.h:41
bool Bool_t
Definition: RtypesCore.h:59
TArc * a
Definition: textangle.C:12
TList * fFunctions
Definition: TGraph.h:61
virtual void SetTitle(const char *title="")
Set graph title.
Definition: TGraph.cxx:2153
virtual Double_t Chisquare(TF1 *f1, Option_t *option="") const
Return the chisquare of this graph with respect to f1.
Definition: TGraph.cxx:586
TH1F * GetHistogram() const
Returns a pointer to the histogram used to draw the axis Takes into account the two following cases...
Definition: TGraph.cxx:1443
TH1F * fHistogram
Definition: TGraph.h:62
static std::string format(double x, double y, int digits, int width)
virtual void RecursiveRemove(TObject *obj)
Recursively remove object from the list of functions.
Definition: TGraph.cxx:1953
Int_t GetN() const
Definition: TGraph.h:132
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:545
virtual void Draw(Option_t *chopt="")
Draw this graph with its current attributes.
Definition: TGraph.cxx:740
virtual Double_t * GetEY() const
Definition: TGraph.h:142
virtual Double_t GetErrorXhigh(Int_t bin) const
This function is called by GraphFitChisquare.
Definition: TGraph.cxx:1390
virtual Int_t Merge(TCollection *list)
Adds all graphs from the collection to this graph.
Definition: TGraph.cxx:2351
Marker Attributes class.
Definition: TAttMarker.h:32
Double_t * GetY() const
Definition: TGraph.h:140
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:688
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:2165
Fill Area Attributes class.
Definition: TAttFill.h:32
Double_t x[n]
Definition: legend1.C:17
virtual void Paint(Option_t *chopt="")
Draw this graph with its current attributes.
Definition: TGraph.cxx:1907
TGraph & operator=(const TGraph &)
Equal operator for this graph.
Definition: TGraph.cxx:180
virtual Double_t * GetEXhigh() const
Definition: TGraph.h:143
The TNamed class is the base class for all named ROOT classes.
Definition: TNamed.h:33
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:2198
TList * GetListOfFunctions() const
Definition: TGraph.h:126
virtual void SetMaximum(Double_t maximum=-1111)
Set the maximum of the graph.
Definition: TGraph.cxx:2109
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:2383
Double_t fMinimum
Definition: TGraph.h:63
Double_t GetMinimum() const
Definition: TGraph.h:152
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:640
ClassDef(TAttLine, 2)
virtual Int_t RemovePoint()
Delete point close to the mouse position.
Definition: TGraph.cxx:1964
char * out
Definition: TBase64.cxx:29
virtual void ExecuteEvent(Int_t event, Int_t px, Int_t py)
Execute action corresponding to one event.
Definition: TGraph.cxx:940
A doubly linked list.
Definition: TList.h:47
virtual void Expand(Int_t newsize)
If array sizes <= newsize, expand storage to 2*newsize.
Definition: TGraph.cxx:949
Bool_t CtorAllocate()
In constructors set fNpoints than call this method.
Definition: TGraph.cxx:714
virtual Double_t GetErrorXlow(Int_t bin) const
This function is called by GraphFitChisquare.
Definition: TGraph.cxx:1400
Using a TBrowser one can browse all ROOT objects.
Definition: TBrowser.h:41
virtual void SavePrimitive(std::ostream &out, Option_t *option="")
Save primitive as a C++ statement(s) on output stream out.
Definition: TGraph.cxx:2001
virtual Double_t * GetEYhigh() const
Definition: TGraph.h:145
float ymax
Definition: THbookFile.cxx:93
Double_t * GetX() const
Definition: TGraph.h:139
virtual void SwapPoints(Int_t pos1, Int_t pos2)
Swap points.
Definition: TGraph.cxx:2295
TAxis * GetXaxis() const
Get x axis of the graph.
Definition: TGraph.cxx:1563
Class to manage histogram axis.
Definition: TAxis.h:36
Int_t GetMaxSize() const
Definition: TGraph.h:131
Provides an indirection to the TFitResult class and with a semantics identical to a TFitResult pointe...
Definition: TFitResultPtr.h:33
static void SwapValues(Double_t *arr, Int_t pos1, Int_t pos2)
Swap values.
Definition: TGraph.cxx:2304
Collection abstract base class.
Definition: TCollection.h:48
virtual Bool_t DoMerge(const TGraph *g)
protected function to perform the merge operation of a graph
Definition: TGraph.cxx:2368
TF1 * GetFunction(const char *name) const
Return pointer to function with name.
Definition: TGraph.cxx:1431
Bool_t TestBit(UInt_t f) const
Definition: TObject.h:173
TMarker * m
Definition: textangle.C:8
virtual Double_t GetRMS(Int_t axis=1) const
Return RMS of X (axis=1) or Y (axis=2)
Definition: TGraph.cxx:1348
virtual Int_t InsertPoint()
Insert a new point at the mouse position.
Definition: TGraph.cxx:1662
float xmax
Definition: THbookFile.cxx:93
virtual Double_t Eval(Double_t x, TSpline *spline=0, Option_t *option="") const
Interpolate points in this graph at x using a TSpline -if spline==0 and option="" a linear interpolat...
Definition: TGraph.cxx:850
TGraphErrors * gr
Definition: legend1.C:25
Double_t GetMaximum() const
Definition: TGraph.h:151
virtual Double_t GetCovariance() const
Return covariance of vectors x,y.
Definition: TGraph.cxx:1317
virtual void Print(Option_t *chopt="") const
Print graph values.
Definition: TGraph.cxx:1943
virtual void InitGaus(Double_t xmin=0, Double_t xmax=0)
Compute Initial values of parameters for a gaussian.
Definition: TGraph.cxx:1583
virtual Double_t GetErrorYlow(Int_t bin) const
This function is called by GraphFitChisquare.
Definition: TGraph.cxx:1420
double f(double x)
double Double_t
Definition: RtypesCore.h:55
virtual void PaintStats(TF1 *fit)
Draw the stats.
Definition: TGraph.cxx:1934
virtual Int_t DistancetoPrimitive(Int_t px, Int_t py)
Compute distance from point px,py to a graph.
Definition: TGraph.cxx:781
Double_t y[n]
Definition: legend1.C:17
The TH1 histogram class.
Definition: TH1.h:80
virtual ~TGraph()
Graph default destructor.
Definition: TGraph.cxx:498
Double_t fMaximum
Definition: TGraph.h:64
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:1551
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:974
#define name(a, b)
Definition: linkTestLib0.cpp:5
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:1738
Mother of all ROOT objects.
Definition: TObject.h:58
virtual void UseCurrentStyle()
Set current style settings in this graph This function is called when either TCanvas::UseCurrentStyle...
Definition: TGraph.cxx:2316
TAxis * GetYaxis() const
Get y axis of the graph.
Definition: TGraph.cxx:1573
virtual void Browse(TBrowser *b)
Browse.
Definition: TGraph.cxx:560
virtual Double_t * GetEXlow() const
Definition: TGraph.h:144
virtual Double_t GetErrorY(Int_t bin) const
This function is called by GraphFitChisquare.
Definition: TGraph.cxx:1380
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:988
virtual void SetPoint(Int_t i, Double_t x, Double_t y)
Set x and y values for point number i.
Definition: TGraph.cxx:2127
Double_t * fY
Definition: TGraph.h:60
virtual void InitExpo(Double_t xmin=0, Double_t xmax=0)
Compute Initial values of parameters for an exponential.
Definition: TGraph.cxx:1621
virtual Double_t GetMean(Int_t axis=1) const
Return mean value of X (axis=1) or Y (axis=2)
Definition: TGraph.cxx:1333
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:1861
static Bool_t CompareArg(const TGraph *gr, Int_t left, Int_t right)
Return kTRUE if point number "left"'s argument (angle with respect to positive x-axis) is bigger than...
Definition: TGraph.cxx:603
1-Dim function class
Definition: TF1.h:149
A Graph is a graphics object made of two arrays X and Y with npoints each.
Definition: TGraph.h:53
TF1 * f1
Definition: legend1.C:11
Bool_t GetEditable() const
Return kTRUE if kNotEditable bit is not set, kFALSE otherwise.
Definition: TGraph.cxx:2091
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:671
virtual void SetHistogram(TH1F *h)
Definition: TGraph.h:177
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:791
virtual Double_t * GetEX() const
Definition: TGraph.h:141
virtual Double_t * GetEXhighd() const
Definition: TGraph.h:148
Int_t fMaxSize
Definition: TGraph.h:57
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:2076
const Bool_t kTRUE
Definition: Rtypes.h:91
TObject * obj
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:2100
Double_t ** AllocateArrays(Int_t Narrays, Int_t arraySize)
Allocate arrays.
Definition: TGraph.cxx:522
const Int_t n
Definition: legend1.C:16
Line Attributes class.
Definition: TAttLine.h:32
virtual Double_t GetCorrelationFactor() const
Return graph correlation factor.
Definition: TGraph.cxx:1305
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:622