Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
TGraphBentErrors Class Reference

A TGraphBentErrors is a TGraph with bent, asymmetric error bars.

The TGraphBentErrors painting is performed thanks to the TGraphPainter class. All details about the various painting options are given in this class.

The picture below gives an example:

{
auto c1 = new TCanvas("c1","A Simple Graph with bent error bars",200,10,700,500);
const Int_t n = 10;
Double_t x[n] = {-0.22, 0.05, 0.25, 0.35, 0.5, 0.61,0.7,0.85,0.89,0.95};
Double_t y[n] = {1,2.9,5.6,7.4,9,9.6,8.7,6.3,4.5,1};
Double_t exl[n] = {.05,.1,.07,.07,.04,.05,.06,.07,.08,.05};
Double_t eyl[n] = {.8,.7,.6,.5,.4,.4,.5,.6,.7,.8};
Double_t exh[n] = {.02,.08,.05,.05,.03,.03,.04,.05,.06,.03};
Double_t eyh[n] = {.6,.5,.4,.3,.2,.2,.3,.4,.5,.6};
Double_t exld[n] = {.0,.0,.0,.0,.0,.0,.0,.0,.0,.0};
Double_t eyld[n] = {.0,.0,.05,.0,.0,.0,.0,.0,.0,.0};
Double_t exhd[n] = {.0,.0,.0,.0,.0,.0,.0,.0,.0,.0};
Double_t eyhd[n] = {.0,.0,.0,.0,.0,.0,.0,.0,.05,.0};
auto gr = new TGraphBentErrors(n,x,y,exl,exh,eyl,eyh,exld,exhd,eyld,eyhd);
gr->SetTitle("TGraphBentErrors Example");
gr->Draw("ALP");
}
double Double_t
Definition RtypesCore.h:59
virtual void SetMarkerColor(Color_t mcolor=1)
Set the marker color.
Definition TAttMarker.h:38
virtual void SetMarkerStyle(Style_t mstyle=1)
Set the marker style.
Definition TAttMarker.h:40
The Canvas class.
Definition TCanvas.h:23
TGraphBentErrors()
TGraphBentErrors default constructor.
virtual void SetTitle(const char *title="")
Change (i.e.
Definition TGraph.cxx:2339
virtual void Draw(Option_t *chopt="")
Draw this graph with its current attributes.
Definition TGraph.cxx:769
return c1
Definition legend1.C:41
Double_t y[n]
Definition legend1.C:17
Double_t x[n]
Definition legend1.C:17
const Int_t n
Definition legend1.C:16
TGraphErrors * gr
Definition legend1.C:25

Definition at line 25 of file TGraphBentErrors.h.

Public Member Functions

 TGraphBentErrors ()
 TGraphBentErrors default constructor.
 
 TGraphBentErrors (const TGraphBentErrors &gr)
 TGraphBentErrors copy constructor.
 
 TGraphBentErrors (Int_t n)
 TGraphBentErrors normal constructor.
 
 TGraphBentErrors (Int_t n, const Double_t *x, const Double_t *y, const Double_t *exl=0, const Double_t *exh=0, const Double_t *eyl=0, const Double_t *eyh=0, const Double_t *exld=0, const Double_t *exhd=0, const Double_t *eyld=0, const Double_t *eyhd=0)
 TGraphBentErrors normal constructor.
 
 TGraphBentErrors (Int_t n, const Float_t *x, const Float_t *y, const Float_t *exl=0, const Float_t *exh=0, const Float_t *eyl=0, const Float_t *eyh=0, const Float_t *exld=0, const Float_t *exhd=0, const Float_t *eyld=0, const Float_t *eyhd=0)
 TGraphBentErrors normal constructor.
 
virtual ~TGraphBentErrors ()
 TGraphBentErrors default destructor.
 
virtual void Apply (TF1 *f)
 apply a function to all data points y = f(x,y)
 
virtual void ComputeRange (Double_t &xmin, Double_t &ymin, Double_t &xmax, Double_t &ymax) const
 Compute range.
 
Double_t GetErrorX (Int_t bin) const
 This function is called by GraphFitChisquare.
 
Double_t GetErrorXhigh (Int_t bin) const
 Get high error on X[i].
 
Double_t GetErrorXlow (Int_t bin) const
 Get low error on X[i].
 
Double_t GetErrorY (Int_t bin) const
 This function is called by GraphFitChisquare.
 
Double_t GetErrorYhigh (Int_t bin) const
 Get high error on Y[i].
 
Double_t GetErrorYlow (Int_t bin) const
 Get low error on Y[i].
 
Double_tGetEXhigh () const
 
Double_tGetEXhighd () const
 
Double_tGetEXlow () const
 
Double_tGetEXlowd () const
 
Double_tGetEYhigh () const
 
Double_tGetEYhighd () const
 
Double_tGetEYlow () const
 
Double_tGetEYlowd () const
 
virtual void Print (Option_t *chopt="") const
 Print graph and errors values.
 
virtual void SavePrimitive (std::ostream &out, Option_t *option="")
 Save primitive as a C++ statement(s) on output stream out.
 
virtual void SetPointError (Double_t exl, Double_t exh, Double_t eyl, Double_t eyh, Double_t exld=0, Double_t exhd=0, Double_t eyld=0, Double_t eyhd=0)
 Set ex and ey values for point pointed by the mouse.
 
virtual void SetPointError (Int_t i, Double_t exl, Double_t exh, Double_t eyl, Double_t eyh, Double_t exld=0, Double_t exhd=0, Double_t eyld=0, Double_t eyhd=0)
 Set ex and ey values for point number i.
 
- Public Member Functions inherited from TGraph
 TGraph ()
 Graph default constructor.
 
 TGraph (const char *filename, const char *format="%lg %lg", Option_t *option="")
 Graph constructor reading input from filename.
 
 TGraph (const TF1 *f, Option_t *option="")
 Graph constructor importing its parameters from the TF1 object passed as argument.
 
 TGraph (const TGraph &gr)
 Copy constructor for this graph.
 
 TGraph (const TH1 *h)
 Graph constructor importing its parameters from the TH1 object passed as argument.
 
 TGraph (const TVectorD &vx, const TVectorD &vy)
 Graph constructor with two vectors of doubles in input A graph is build with the X coordinates taken from vx and Y coord from vy The number of points in the graph is the minimum of number of points in vx and vy.
 
 TGraph (const TVectorF &vx, const TVectorF &vy)
 Graph constructor with two vectors of floats in input A graph is build with the X coordinates taken from vx and Y coord from vy The number of points in the graph is the minimum of number of points in vx and vy.
 
 TGraph (Int_t n)
 Constructor with only the number of points set the arrays x and y will be set later.
 
 TGraph (Int_t n, const Double_t *x, const Double_t *y)
 Graph normal constructor with doubles.
 
 TGraph (Int_t n, const Float_t *x, const Float_t *y)
 Graph normal constructor with floats.
 
 TGraph (Int_t n, const Int_t *x, const Int_t *y)
 Graph normal constructor with ints.
 
virtual ~TGraph ()
 Graph default destructor.
 
virtual void AddPoint (Double_t x, Double_t y)
 Append a new point to the graph.
 
virtual void Browse (TBrowser *b)
 Browse.
 
virtual Double_t Chisquare (TF1 *f1, Option_t *option="") const
 Return the chisquare of this graph with respect to f1.
 
virtual Int_t DistancetoPrimitive (Int_t px, Int_t py)
 Compute distance from point px,py to a graph.
 
virtual void Draw (Option_t *chopt="")
 Draw this graph with its current attributes.
 
virtual void DrawGraph (Int_t n, const Double_t *x=nullptr, const Double_t *y=nullptr, Option_t *option="")
 Draw this graph with new attributes.
 
virtual void DrawGraph (Int_t n, const Float_t *x, const Float_t *y, Option_t *option="")
 Draw this graph with new attributes.
 
virtual void DrawGraph (Int_t n, const Int_t *x, const Int_t *y, Option_t *option="")
 Draw this graph with new attributes.
 
virtual void DrawPanel ()
 Display a panel with all graph drawing options.
 
virtual Double_t Eval (Double_t x, TSpline *spline=nullptr, Option_t *option="") const
 Interpolate points in this graph at x using a TSpline.
 
virtual void ExecuteEvent (Int_t event, Int_t px, Int_t py)
 Execute action corresponding to one event.
 
virtual void Expand (Int_t newsize)
 If array sizes <= newsize, expand storage to 2*newsize.
 
virtual void Expand (Int_t newsize, Int_t step)
 If graph capacity is less than newsize points then make array sizes equal to least multiple of step to contain newsize points.
 
virtual TObjectFindObject (const char *name) const
 Search object named name in the list of functions.
 
virtual TObjectFindObject (const TObject *obj) const
 Search object obj in the list of functions.
 
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.
 
virtual TFitResultPtr Fit (TF1 *f1, Option_t *option="", Option_t *goption="", Axis_t xmin=0, Axis_t xmax=0)
 Fit this graph with function f1.
 
virtual void FitPanel ()
 Display a GUI panel with all graph fit options.
 
virtual Double_t GetCorrelationFactor () const
 Return graph correlation factor.
 
virtual Double_t GetCovariance () const
 Return covariance of vectors x,y.
 
Bool_t GetEditable () const
 Return kTRUE if kNotEditable bit is not set, kFALSE otherwise.
 
virtual Double_tGetEX () const
 
virtual Double_tGetEY () const
 
TF1GetFunction (const char *name) const
 Return pointer to function with name.
 
TH1FGetHistogram () const
 Returns a pointer to the histogram used to draw the axis Takes into account the two following cases.
 
TListGetListOfFunctions () const
 
Double_t GetMaximum () const
 
Int_t GetMaxSize () const
 
virtual Double_t GetMean (Int_t axis=1) const
 Return mean value of X (axis=1) or Y (axis=2)
 
Double_t GetMinimum () const
 
Int_t GetN () const
 
virtual char * GetObjectInfo (Int_t px, Int_t py) const
 Implementation to get information on point of graph at cursor position Adapted from class TH1.
 
virtual Int_t GetPoint (Int_t i, Double_t &x, Double_t &y) const
 Get x and y values for point number i.
 
virtual Double_t GetPointX (Int_t i) const
 Get x value for point i.
 
virtual Double_t GetPointY (Int_t i) const
 Get y value for point i.
 
virtual Double_t GetRMS (Int_t axis=1) const
 Return RMS of X (axis=1) or Y (axis=2)
 
Double_tGetX () const
 
TAxisGetXaxis () const
 Get x axis of the graph.
 
Double_tGetY () const
 
TAxisGetYaxis () const
 Get y axis of the graph.
 
virtual void InitExpo (Double_t xmin=0, Double_t xmax=0)
 Compute Initial values of parameters for an exponential.
 
virtual void InitGaus (Double_t xmin=0, Double_t xmax=0)
 Compute Initial values of parameters for a gaussian.
 
virtual void InitPolynom (Double_t xmin=0, Double_t xmax=0)
 Compute Initial values of parameters for a polynom.
 
virtual Int_t InsertPoint ()
 Insert a new point at the mouse position.
 
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.
 
virtual Double_t Integral (Int_t first=0, Int_t last=-1) const
 Integrate the TGraph data within a given (index) range.
 
virtual Bool_t IsEditable () const
 
virtual Bool_t IsHighlight () const
 
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.
 
virtual void LeastSquareFit (Int_t m, Double_t *a, Double_t xmin=0, Double_t xmax=0)
 Least squares polynomial fitting without weights.
 
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.
 
virtual Int_t Merge (TCollection *list)
 Adds all graphs from the collection to this graph.
 
virtual void MovePoints (Double_t dx, Double_t dy, Bool_t logx=kFALSE, Bool_t logy=kFALSE)
 Move all graph points on specified values dx,dy If log argument specified, calculation done in logarithmic scale like: new_value = exp( log(old_value) + delta );.
 
TGraphoperator= (const TGraph &)
 Equal operator for this graph.
 
virtual void Paint (Option_t *chopt="")
 Draw this graph with its current attributes.
 
void PaintGraph (Int_t npoints, const Double_t *x, const Double_t *y, Option_t *chopt)
 Draw the (x,y) as a graph.
 
void PaintGrapHist (Int_t npoints, const Double_t *x, const Double_t *y, Option_t *chopt)
 Draw the (x,y) as a histogram.
 
virtual void PaintStats (TF1 *fit)
 Draw the stats.
 
virtual void RecursiveRemove (TObject *obj)
 Recursively remove object from the list of functions.
 
virtual Int_t RemovePoint ()
 Delete point close to the mouse position.
 
virtual Int_t RemovePoint (Int_t ipoint)
 Delete point number ipoint.
 
virtual void Set (Int_t n)
 Set number of points in the graph Existing coordinates are preserved New coordinates above fNpoints are preset to 0.
 
virtual void SetEditable (Bool_t editable=kTRUE)
 if editable=kFALSE, the graph cannot be modified with the mouse by default a TGraph is editable
 
virtual void SetHighlight (Bool_t set=kTRUE)
 Set highlight (enable/disble) mode for the graph by default highlight mode is disable.
 
virtual void SetHistogram (TH1F *h)
 
virtual void SetMaximum (Double_t maximum=-1111)
 Set the maximum of the graph.
 
virtual void SetMinimum (Double_t minimum=-1111)
 Set the minimum of the graph.
 
virtual void SetName (const char *name="")
 Set graph name.
 
virtual void SetNameTitle (const char *name="", const char *title="")
 Set graph name and title.
 
virtual void SetPoint (Int_t i, Double_t x, Double_t y)
 Set x and y values for point number i.
 
virtual void SetPointX (Int_t i, Double_t x)
 Set x value for point i.
 
virtual void SetPointY (Int_t i, Double_t y)
 Set y value for point i.
 
virtual void SetTitle (const char *title="")
 Change (i.e.
 
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.
 
virtual void UseCurrentStyle ()
 Set current style settings in this graph This function is called when either TCanvas::UseCurrentStyle or TROOT::ForceStyle have been invoked.
 
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.
 
- Public Member Functions inherited from TNamed
 TNamed ()
 
 TNamed (const char *name, const char *title)
 
 TNamed (const TNamed &named)
 TNamed copy ctor.
 
 TNamed (const TString &name, const TString &title)
 
virtual ~TNamed ()
 TNamed destructor.
 
virtual void Clear (Option_t *option="")
 Set name and title to empty strings ("").
 
virtual TObjectClone (const char *newname="") const
 Make a clone of an object using the Streamer facility.
 
virtual Int_t Compare (const TObject *obj) const
 Compare two TNamed objects.
 
virtual void Copy (TObject &named) const
 Copy this to obj.
 
virtual void FillBuffer (char *&buffer)
 Encode TNamed into output buffer.
 
virtual const char * GetName () const
 Returns name of object.
 
virtual const char * GetTitle () const
 Returns title of object.
 
virtual ULong_t Hash () const
 Return hash value for this object.
 
virtual Bool_t IsSortable () const
 
virtual void ls (Option_t *option="") const
 List TNamed name and title.
 
TNamedoperator= (const TNamed &rhs)
 TNamed assignment operator.
 
virtual Int_t Sizeof () const
 Return size of the TNamed part of the TObject.
 
- Public Member Functions inherited from TObject
 TObject ()
 TObject constructor.
 
 TObject (const TObject &object)
 TObject copy ctor.
 
virtual ~TObject ()
 TObject destructor.
 
void AbstractMethod (const char *method) const
 Use this method to implement an "abstract" method that you don't want to leave purely abstract.
 
virtual void AppendPad (Option_t *option="")
 Append graphics object to current pad.
 
ULong_t CheckedHash ()
 Check and record whether this class has a consistent Hash/RecursiveRemove setup (*) and then return the regular Hash value for this object.
 
virtual const char * ClassName () const
 Returns name of class to which the object belongs.
 
virtual void Delete (Option_t *option="")
 Delete this object.
 
virtual void DrawClass () const
 Draw class inheritance tree of the class to which this object belongs.
 
virtual TObjectDrawClone (Option_t *option="") const
 Draw a clone of this object in the current selected pad for instance with: gROOT->SetSelectedPad(gPad).
 
virtual void Dump () const
 Dump contents of object on stdout.
 
virtual void Error (const char *method, const char *msgfmt,...) const
 Issue error message.
 
virtual void Execute (const char *method, const char *params, Int_t *error=0)
 Execute method on this object with the given parameter string, e.g.
 
virtual void Execute (TMethod *method, TObjArray *params, Int_t *error=0)
 Execute method on this object with parameters stored in the TObjArray.
 
virtual void Fatal (const char *method, const char *msgfmt,...) const
 Issue fatal error message.
 
virtual Option_tGetDrawOption () const
 Get option used by the graphics system to draw this object.
 
virtual const char * GetIconName () const
 Returns mime type name of object.
 
virtual Option_tGetOption () const
 
virtual UInt_t GetUniqueID () const
 Return the unique object id.
 
virtual Bool_t HandleTimer (TTimer *timer)
 Execute action in response of a timer timing out.
 
Bool_t HasInconsistentHash () const
 Return true is the type of this object is known to have an inconsistent setup for Hash and RecursiveRemove (i.e.
 
virtual void Info (const char *method, const char *msgfmt,...) const
 Issue info message.
 
virtual Bool_t InheritsFrom (const char *classname) const
 Returns kTRUE if object inherits from class "classname".
 
virtual Bool_t InheritsFrom (const TClass *cl) const
 Returns kTRUE if object inherits from TClass cl.
 
virtual void Inspect () const
 Dump contents of this object in a graphics canvas.
 
void InvertBit (UInt_t f)
 
virtual Bool_t IsEqual (const TObject *obj) const
 Default equal comparison (objects are equal if they have the same address in memory).
 
virtual Bool_t IsFolder () const
 Returns kTRUE in case object contains browsable objects (like containers or lists of other objects).
 
R__ALWAYS_INLINE Bool_t IsOnHeap () const
 
R__ALWAYS_INLINE Bool_t IsZombie () const
 
void MayNotUse (const char *method) const
 Use this method to signal that a method (defined in a base class) may not be called in a derived class (in principle against good design since a child class should not provide less functionality than its parent, however, sometimes it is necessary).
 
virtual Bool_t Notify ()
 This method must be overridden to handle object notification.
 
void Obsolete (const char *method, const char *asOfVers, const char *removedFromVers) const
 Use this method to declare a method obsolete.
 
void operator delete (void *ptr)
 Operator delete.
 
void operator delete[] (void *ptr)
 Operator delete [].
 
voidoperator new (size_t sz)
 
voidoperator new (size_t sz, void *vp)
 
voidoperator new[] (size_t sz)
 
voidoperator new[] (size_t sz, void *vp)
 
TObjectoperator= (const TObject &rhs)
 TObject assignment operator.
 
virtual void Pop ()
 Pop on object drawn in a pad to the top of the display list.
 
virtual Int_t Read (const char *name)
 Read contents of object with specified name from the current directory.
 
void ResetBit (UInt_t f)
 
virtual void SaveAs (const char *filename="", Option_t *option="") const
 Save this object in the file specified by filename.
 
void SetBit (UInt_t f)
 
void SetBit (UInt_t f, Bool_t set)
 Set or unset the user status bits as specified in f.
 
virtual void SetDrawOption (Option_t *option="")
 Set drawing option for object.
 
virtual void SetUniqueID (UInt_t uid)
 Set the unique object id.
 
virtual void SysError (const char *method, const char *msgfmt,...) const
 Issue system error message.
 
R__ALWAYS_INLINE Bool_t TestBit (UInt_t f) const
 
Int_t TestBits (UInt_t f) const
 
virtual void Warning (const char *method, const char *msgfmt,...) const
 Issue warning message.
 
virtual Int_t Write (const char *name=0, Int_t option=0, Int_t bufsize=0)
 Write this object to the current directory.
 
virtual Int_t Write (const char *name=0, Int_t option=0, Int_t bufsize=0) const
 Write this object to the current directory.
 
- Public Member Functions inherited from TAttLine
 TAttLine ()
 AttLine default constructor.
 
 TAttLine (Color_t lcolor, Style_t lstyle, Width_t lwidth)
 AttLine normal constructor.
 
virtual ~TAttLine ()
 AttLine destructor.
 
void Copy (TAttLine &attline) const
 Copy this line attributes to a new TAttLine.
 
Int_t DistancetoLine (Int_t px, Int_t py, Double_t xp1, Double_t yp1, Double_t xp2, Double_t yp2)
 Compute distance from point px,py to a line.
 
virtual Color_t GetLineColor () const
 Return the line color.
 
virtual Style_t GetLineStyle () const
 Return the line style.
 
virtual Width_t GetLineWidth () const
 Return the line width.
 
virtual void Modify ()
 Change current line attributes if necessary.
 
virtual void ResetAttLine (Option_t *option="")
 Reset this line attributes to default values.
 
virtual void SaveLineAttributes (std::ostream &out, const char *name, Int_t coldef=1, Int_t stydef=1, Int_t widdef=1)
 Save line attributes as C++ statement(s) on output stream out.
 
virtual void SetLineAttributes ()
 Invoke the DialogCanvas Line attributes.
 
virtual void SetLineColor (Color_t lcolor)
 Set the line color.
 
virtual void SetLineColorAlpha (Color_t lcolor, Float_t lalpha)
 Set a transparent line color.
 
virtual void SetLineStyle (Style_t lstyle)
 Set the line style.
 
virtual void SetLineWidth (Width_t lwidth)
 Set the line width.
 
- Public Member Functions inherited from TAttFill
 TAttFill ()
 AttFill default constructor.
 
 TAttFill (Color_t fcolor, Style_t fstyle)
 AttFill normal constructor.
 
virtual ~TAttFill ()
 AttFill destructor.
 
void Copy (TAttFill &attfill) const
 Copy this fill attributes to a new TAttFill.
 
virtual Color_t GetFillColor () const
 Return the fill area color.
 
virtual Style_t GetFillStyle () const
 Return the fill area style.
 
virtual Bool_t IsTransparent () const
 
virtual void Modify ()
 Change current fill area attributes if necessary.
 
virtual void ResetAttFill (Option_t *option="")
 Reset this fill attributes to default values.
 
virtual void SaveFillAttributes (std::ostream &out, const char *name, Int_t coldef=1, Int_t stydef=1001)
 Save fill attributes as C++ statement(s) on output stream out.
 
virtual void SetFillAttributes ()
 Invoke the DialogCanvas Fill attributes.
 
virtual void SetFillColor (Color_t fcolor)
 Set the fill area color.
 
virtual void SetFillColorAlpha (Color_t fcolor, Float_t falpha)
 Set a transparent fill color.
 
virtual void SetFillStyle (Style_t fstyle)
 Set the fill area style.
 
- Public Member Functions inherited from TAttMarker
 TAttMarker ()
 TAttMarker default constructor.
 
 TAttMarker (Color_t color, Style_t style, Size_t msize)
 TAttMarker normal constructor.
 
virtual ~TAttMarker ()
 TAttMarker destructor.
 
void Copy (TAttMarker &attmarker) const
 Copy this marker attributes to a new TAttMarker.
 
virtual Color_t GetMarkerColor () const
 Return the marker color.
 
virtual Size_t GetMarkerSize () const
 Return the marker size.
 
virtual Style_t GetMarkerStyle () const
 Return the marker style.
 
virtual void Modify ()
 Change current marker attributes if necessary.
 
virtual void ResetAttMarker (Option_t *toption="")
 Reset this marker attributes to the default values.
 
virtual void SaveMarkerAttributes (std::ostream &out, const char *name, Int_t coldef=1, Int_t stydef=1, Int_t sizdef=1)
 Save line attributes as C++ statement(s) on output stream out.
 
virtual void SetMarkerAttributes ()
 Invoke the DialogCanvas Marker attributes.
 
virtual void SetMarkerColor (Color_t mcolor=1)
 Set the marker color.
 
virtual void SetMarkerColorAlpha (Color_t mcolor, Float_t malpha)
 Set a transparent marker color.
 
virtual void SetMarkerSize (Size_t msize=1)
 Set the marker size.
 
virtual void SetMarkerStyle (Style_t mstyle=1)
 Set the marker style.
 

Protected Member Functions

virtual Double_t ** Allocate (Int_t size)
 Allocate internal data structures for newsize points.
 
virtual void CopyAndRelease (Double_t **newarrays, Int_t ibegin, Int_t iend, Int_t obegin)
 Copy and release.
 
virtual Bool_t CopyPoints (Double_t **arrays, Int_t ibegin, Int_t iend, Int_t obegin)
 Copy errors from fE*** to arrays[] or to f Copy points.
 
Bool_t CtorAllocate ()
 Should be called from ctors after fNpoints has been set.
 
virtual Bool_t DoMerge (const TGraph *g)
 protected function to perform the merge operation of a graph with asymmetric errors
 
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)
 
virtual void SwapPoints (Int_t pos1, Int_t pos2)
 Swap points.
 
- Protected Member Functions inherited from TGraph
Double_t ** AllocateArrays (Int_t Narrays, Int_t arraySize)
 Allocate arrays.
 
Bool_t CtorAllocate ()
 In constructors set fNpoints than call this method.
 
Double_t ** ExpandAndCopy (Int_t size, Int_t iend)
 if size > fMaxSize allocate new arrays of 2*size points and copy iend first points.
 
Double_t ** ShrinkAndCopy (Int_t size, Int_t iend)
 if size*2 <= fMaxSize allocate new arrays of size points, copy points [0,oend).
 
- Protected Member Functions inherited from TObject
virtual void DoError (int level, const char *location, const char *fmt, va_list va) const
 Interface to ErrorHandler (protected).
 
void MakeZombie ()
 

Protected Attributes

Double_tfEXhigh
 [fNpoints] array of X high errors
 
Double_tfEXhighd
 [fNpoints] array of X high displacements
 
Double_tfEXlow
 [fNpoints] array of X low errors
 
Double_tfEXlowd
 [fNpoints] array of X low displacements
 
Double_tfEYhigh
 [fNpoints] array of Y high errors
 
Double_tfEYhighd
 [fNpoints] array of Y high displacements
 
Double_tfEYlow
 [fNpoints] array of Y low errors
 
Double_tfEYlowd
 [fNpoints] array of Y low displacements
 
- Protected Attributes inherited from TGraph
TListfFunctions
 Pointer to list of functions (fits and user)
 
TH1FfHistogram
 Pointer to histogram used for drawing axis.
 
Double_t fMaximum
 Maximum value for plotting along y.
 
Int_t fMaxSize
 !Current dimension of arrays fX and fY
 
Double_t fMinimum
 Minimum value for plotting along y.
 
Int_t fNpoints
 Number of points <= fMaxSize.
 
Double_tfX
 [fNpoints] array of X points
 
Double_tfY
 [fNpoints] array of Y points
 
- Protected Attributes inherited from TNamed
TString fName
 
TString fTitle
 
- Protected Attributes inherited from TAttLine
Color_t fLineColor
 Line color.
 
Style_t fLineStyle
 Line style.
 
Width_t fLineWidth
 Line width.
 
- Protected Attributes inherited from TAttFill
Color_t fFillColor
 Fill area color.
 
Style_t fFillStyle
 Fill area style.
 
- Protected Attributes inherited from TAttMarker
Color_t fMarkerColor
 Marker color.
 
Size_t fMarkerSize
 Marker size.
 
Style_t fMarkerStyle
 Marker style.
 

Additional Inherited Members

- Public Types inherited from TGraph
enum  EStatusBits {
  kClipFrame = BIT(10) , kResetHisto = BIT(17) , kNotEditable = BIT(18) , kIsSortedX = BIT(19) ,
  kIsHighlight = BIT(20)
}
 
- Public Types inherited from TObject
enum  {
  kIsOnHeap = 0x01000000 , kNotDeleted = 0x02000000 , kZombie = 0x04000000 , kInconsistent = 0x08000000 ,
  kBitMask = 0x00ffffff
}
 
enum  { kSingleKey = BIT(0) , kOverwrite = BIT(1) , kWriteDelete = BIT(2) }
 
enum  EDeprecatedStatusBits { kObjInCanvas = BIT(3) }
 
enum  EStatusBits {
  kCanDelete = BIT(0) , kMustCleanup = BIT(3) , kIsReferenced = BIT(4) , kHasUUID = BIT(5) ,
  kCannotPick = BIT(6) , kNoContextMenu = BIT(8) , kInvalidObject = BIT(13)
}
 
- Static Public Member Functions inherited from TGraph
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 that of point number "right".
 
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".
 
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.
 
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.
 
- Static Public Member Functions inherited from TObject
static Long_t GetDtorOnly ()
 Return destructor only flag.
 
static Bool_t GetObjectStat ()
 Get status of object stat flag.
 
static void SetDtorOnly (void *obj)
 Set destructor only flag.
 
static void SetObjectStat (Bool_t stat)
 Turn on/off tracking of objects in the TObjectTable.
 
- Static Public Member Functions inherited from TAttMarker
static Width_t GetMarkerLineWidth (Style_t style)
 Internal helper function that returns the line width of the given marker style (0 = filled marker)
 
static Style_t GetMarkerStyleBase (Style_t style)
 Internal helper function that returns the corresponding marker style with line width 1 for the given style.
 
- Protected Types inherited from TObject
enum  { kOnlyPrepStep = BIT(3) }
 
- Static Protected Member Functions inherited from TGraph
static void SwapValues (Double_t *arr, Int_t pos1, Int_t pos2)
 Swap values.
 

#include <TGraphBentErrors.h>

Inheritance diagram for TGraphBentErrors:
[legend]

Constructor & Destructor Documentation

◆ TGraphBentErrors() [1/5]

TGraphBentErrors::TGraphBentErrors ( )

TGraphBentErrors default constructor.

Definition at line 62 of file TGraphBentErrors.cxx.

◆ TGraphBentErrors() [2/5]

TGraphBentErrors::TGraphBentErrors ( Int_t  n)

TGraphBentErrors normal constructor.

the arrays are preset to zero

Definition at line 92 of file TGraphBentErrors.cxx.

◆ TGraphBentErrors() [3/5]

TGraphBentErrors::TGraphBentErrors ( Int_t  n,
const Float_t x,
const Float_t y,
const Float_t exl = 0,
const Float_t exh = 0,
const Float_t eyl = 0,
const Float_t eyh = 0,
const Float_t exld = 0,
const Float_t exhd = 0,
const Float_t eyld = 0,
const Float_t eyhd = 0 
)

TGraphBentErrors normal constructor.

if exl,h or eyl,h are null, the corresponding arrays are preset to zero

Definition at line 105 of file TGraphBentErrors.cxx.

◆ TGraphBentErrors() [4/5]

TGraphBentErrors::TGraphBentErrors ( Int_t  n,
const Double_t x,
const Double_t y,
const Double_t exl = 0,
const Double_t exh = 0,
const Double_t eyl = 0,
const Double_t eyh = 0,
const Double_t exld = 0,
const Double_t exhd = 0,
const Double_t eyld = 0,
const Double_t eyhd = 0 
)

TGraphBentErrors normal constructor.

if exl,h or eyl,h are null, the corresponding arrays are preset to zero

Definition at line 142 of file TGraphBentErrors.cxx.

◆ TGraphBentErrors() [5/5]

TGraphBentErrors::TGraphBentErrors ( const TGraphBentErrors gr)

TGraphBentErrors copy constructor.

Definition at line 71 of file TGraphBentErrors.cxx.

◆ ~TGraphBentErrors()

TGraphBentErrors::~TGraphBentErrors ( )
virtual

TGraphBentErrors default destructor.

Definition at line 176 of file TGraphBentErrors.cxx.

Member Function Documentation

◆ Allocate()

Double_t ** TGraphBentErrors::Allocate ( Int_t  newsize)
inlineprotectedvirtual

Allocate internal data structures for newsize points.

Reimplemented from TGraph.

Definition at line 100 of file TGraphBentErrors.h.

◆ Apply()

void TGraphBentErrors::Apply ( TF1 f)
virtual

apply a function to all data points y = f(x,y)

Errors are calculated as eyh = f(x,y+eyh)-f(x,y) and eyl = f(x,y)-f(x,y-eyl)

Special treatment has to be applied for the functions where the role of "up" and "down" is reversed. function suggested/implemented by Miroslav Helbich helbi.nosp@m.ch@m.nosp@m.ail.d.nosp@m.esy..nosp@m.de

Reimplemented from TGraph.

Definition at line 201 of file TGraphBentErrors.cxx.

◆ ComputeRange()

void TGraphBentErrors::ComputeRange ( Double_t xmin,
Double_t ymin,
Double_t xmax,
Double_t ymax 
) const
virtual

Compute range.

Reimplemented from TGraph.

Definition at line 240 of file TGraphBentErrors.cxx.

◆ CopyAndRelease()

void TGraphBentErrors::CopyAndRelease ( Double_t **  newarrays,
Int_t  ibegin,
Int_t  iend,
Int_t  obegin 
)
protectedvirtual

Copy and release.

Reimplemented from TGraph.

Definition at line 270 of file TGraphBentErrors.cxx.

◆ CopyPoints()

Bool_t TGraphBentErrors::CopyPoints ( Double_t **  arrays,
Int_t  ibegin,
Int_t  iend,
Int_t  obegin 
)
protectedvirtual

Copy errors from fE*** to arrays[] or to f Copy points.

Reimplemented from TGraph.

Definition at line 304 of file TGraphBentErrors.cxx.

◆ CtorAllocate()

Bool_t TGraphBentErrors::CtorAllocate ( void  )
protected

Should be called from ctors after fNpoints has been set.

Definition at line 338 of file TGraphBentErrors.cxx.

◆ DoMerge()

Bool_t TGraphBentErrors::DoMerge ( const TGraph g)
protectedvirtual

protected function to perform the merge operation of a graph with asymmetric errors

Reimplemented from TGraph.

Definition at line 359 of file TGraphBentErrors.cxx.

◆ FillZero()

void TGraphBentErrors::FillZero ( Int_t  begin,
Int_t  end,
Bool_t  from_ctor = kTRUE 
)
protectedvirtual

Set zero values for point arrays in the range [begin, end)

Reimplemented from TGraph.

Definition at line 468 of file TGraphBentErrors.cxx.

◆ GetErrorX()

Double_t TGraphBentErrors::GetErrorX ( Int_t  i) const
virtual

This function is called by GraphFitChisquare.

It returns the error along X at point i.

Reimplemented from TGraph.

Definition at line 395 of file TGraphBentErrors.cxx.

◆ GetErrorXhigh()

Double_t TGraphBentErrors::GetErrorXhigh ( Int_t  bin) const
virtual

Get high error on X[i].

Reimplemented from TGraph.

Definition at line 424 of file TGraphBentErrors.cxx.

◆ GetErrorXlow()

Double_t TGraphBentErrors::GetErrorXlow ( Int_t  bin) const
virtual

Get low error on X[i].

Reimplemented from TGraph.

Definition at line 435 of file TGraphBentErrors.cxx.

◆ GetErrorY()

Double_t TGraphBentErrors::GetErrorY ( Int_t  i) const
virtual

This function is called by GraphFitChisquare.

It returns the error along Y at point i.

Reimplemented from TGraph.

Definition at line 410 of file TGraphBentErrors.cxx.

◆ GetErrorYhigh()

Double_t TGraphBentErrors::GetErrorYhigh ( Int_t  bin) const
virtual

Get high error on Y[i].

Reimplemented from TGraph.

Definition at line 446 of file TGraphBentErrors.cxx.

◆ GetErrorYlow()

Double_t TGraphBentErrors::GetErrorYlow ( Int_t  bin) const
virtual

Get low error on Y[i].

Reimplemented from TGraph.

Definition at line 457 of file TGraphBentErrors.cxx.

◆ GetEXhigh()

Double_t * TGraphBentErrors::GetEXhigh ( ) const
inlinevirtual

Reimplemented from TGraph.

Definition at line 78 of file TGraphBentErrors.h.

◆ GetEXhighd()

Double_t * TGraphBentErrors::GetEXhighd ( ) const
inlinevirtual

Reimplemented from TGraph.

Definition at line 82 of file TGraphBentErrors.h.

◆ GetEXlow()

Double_t * TGraphBentErrors::GetEXlow ( ) const
inlinevirtual

Reimplemented from TGraph.

Definition at line 77 of file TGraphBentErrors.h.

◆ GetEXlowd()

Double_t * TGraphBentErrors::GetEXlowd ( ) const
inlinevirtual

Reimplemented from TGraph.

Definition at line 81 of file TGraphBentErrors.h.

◆ GetEYhigh()

Double_t * TGraphBentErrors::GetEYhigh ( ) const
inlinevirtual

Reimplemented from TGraph.

Definition at line 80 of file TGraphBentErrors.h.

◆ GetEYhighd()

Double_t * TGraphBentErrors::GetEYhighd ( ) const
inlinevirtual

Reimplemented from TGraph.

Definition at line 84 of file TGraphBentErrors.h.

◆ GetEYlow()

Double_t * TGraphBentErrors::GetEYlow ( ) const
inlinevirtual

Reimplemented from TGraph.

Definition at line 79 of file TGraphBentErrors.h.

◆ GetEYlowd()

Double_t * TGraphBentErrors::GetEYlowd ( ) const
inlinevirtual

Reimplemented from TGraph.

Definition at line 83 of file TGraphBentErrors.h.

◆ Print()

void TGraphBentErrors::Print ( Option_t chopt = "") const
virtual

Print graph and errors values.

Reimplemented from TGraph.

Definition at line 489 of file TGraphBentErrors.cxx.

◆ SavePrimitive()

void TGraphBentErrors::SavePrimitive ( std::ostream &  out,
Option_t option = "" 
)
virtual

Save primitive as a C++ statement(s) on output stream out.

Reimplemented from TGraph.

Definition at line 501 of file TGraphBentErrors.cxx.

◆ SetPointError() [1/2]

void TGraphBentErrors::SetPointError ( Double_t  exl,
Double_t  exh,
Double_t  eyl,
Double_t  eyh,
Double_t  exld = 0,
Double_t  exhd = 0,
Double_t  eyld = 0,
Double_t  eyhd = 0 
)
virtual

Set ex and ey values for point pointed by the mouse.

Definition at line 607 of file TGraphBentErrors.cxx.

◆ SetPointError() [2/2]

void TGraphBentErrors::SetPointError ( Int_t  i,
Double_t  exl,
Double_t  exh,
Double_t  eyl,
Double_t  eyh,
Double_t  exld = 0,
Double_t  exhd = 0,
Double_t  eyld = 0,
Double_t  eyhd = 0 
)
virtual

Set ex and ey values for point number i.

Definition at line 639 of file TGraphBentErrors.cxx.

◆ SwapPoints()

void TGraphBentErrors::SwapPoints ( Int_t  pos1,
Int_t  pos2 
)
protectedvirtual

Swap points.

Reimplemented from TGraph.

Definition at line 661 of file TGraphBentErrors.cxx.

Member Data Documentation

◆ fEXhigh

Double_t* TGraphBentErrors::fEXhigh
protected

[fNpoints] array of X high errors

Definition at line 29 of file TGraphBentErrors.h.

◆ fEXhighd

Double_t* TGraphBentErrors::fEXhighd
protected

[fNpoints] array of X high displacements

Definition at line 34 of file TGraphBentErrors.h.

◆ fEXlow

Double_t* TGraphBentErrors::fEXlow
protected

[fNpoints] array of X low errors

Definition at line 28 of file TGraphBentErrors.h.

◆ fEXlowd

Double_t* TGraphBentErrors::fEXlowd
protected

[fNpoints] array of X low displacements

Definition at line 33 of file TGraphBentErrors.h.

◆ fEYhigh

Double_t* TGraphBentErrors::fEYhigh
protected

[fNpoints] array of Y high errors

Definition at line 31 of file TGraphBentErrors.h.

◆ fEYhighd

Double_t* TGraphBentErrors::fEYhighd
protected

[fNpoints] array of Y high displacements

Definition at line 36 of file TGraphBentErrors.h.

◆ fEYlow

Double_t* TGraphBentErrors::fEYlow
protected

[fNpoints] array of Y low errors

Definition at line 30 of file TGraphBentErrors.h.

◆ fEYlowd

Double_t* TGraphBentErrors::fEYlowd
protected

[fNpoints] array of Y low displacements

Definition at line 35 of file TGraphBentErrors.h.

Libraries for TGraphBentErrors:

The documentation for this class was generated from the following files: