12#ifndef ROOT_TGraphPainter 
   13#define ROOT_TGraphPainter 
#define ClassDefOverride(name, id)
 
void PaintGraphPolar(TGraph *theGraph, Option_t *option)
Paint this TGraphPolar with its current attributes.
 
void PaintGraph(TGraph *theGraph, Int_t npoints, const Double_t *x, const Double_t *y, Option_t *chopt) override
Control function to draw a graph.
 
void PaintGraphErrors(TGraph *theGraph, Option_t *option)
Paint this TGraphErrors with its current attributes.
 
void PaintGraphAsymmErrors(TGraph *theGraph, Option_t *option)
Paint this TGraphAsymmErrors with its current attributes.
 
void PaintGraphMultiErrors(TGraph *theGraph, Option_t *option)
Paint this TGraphMultiErrors with its current attributes.
 
virtual void PaintHighlightPoint(TGraph *theGraph, Option_t *option)
Paint highlight point as TMarker object (open circle)
 
void PaintGraphReverse(TGraph *theGraph, Option_t *option)
Paint theGraph reverting values along X and/or Y axis. a new graph is created.
 
void PaintGrapHist(TGraph *theGraph, Int_t npoints, const Double_t *x, const Double_t *y, Option_t *chopt) override
This is a service method used by THistPainter to paint 1D histograms.
 
static Int_t fgMaxPointsPerLine
Number of points per chunks' line when drawing a graph.
 
void PaintStats(TGraph *theGraph, TF1 *fit) override
Paint the statistics box with the fit info.
 
void PaintPolyLineHatches(TGraph *theGraph, Int_t n, const Double_t *x, const Double_t *y)
Paint a polyline with hatches on one side showing an exclusion zone.
 
void DrawPanelHelper(TGraph *theGraph) override
Display a panel with all histogram drawing options.
 
char * GetObjectInfoHelper(TGraph *theGraph, Int_t px, Int_t py) const override
 
void ExecuteEventHelper(TGraph *theGraph, Int_t event, Int_t px, Int_t py) override
Execute action corresponding to one event.
 
virtual void HighlightPoint(TGraph *theGraph, Int_t hpoint, Int_t distance)
Check on highlight point.
 
void ComputeLogs(Int_t npoints, Int_t opt)
Compute the logarithm of variables gxwork and gywork according to the value of Options and put the re...
 
std::vector< Double_t > gxworkl
 
Int_t DistancetoPrimitiveHelper(TGraph *theGraph, Int_t px, Int_t py) override
Compute distance from point px,py to a graph.
 
std::vector< Double_t > gxwork
 
std::vector< Double_t > gywork
 
void PaintScatter(TScatter *theScatter, Option_t *option) override
Paint a scatter plot.
 
void Smooth(TGraph *theGraph, Int_t npoints, Double_t *x, Double_t *y, Int_t drawtype)
Smooth a curve given by N points.
 
std::vector< Double_t > gyworkl
Internal buffers for coordinates. Used for graphs painting.
 
void SetHighlight(TGraph *theGraph) override
Set highlight (enable/disable) mode for theGraph.
 
virtual Int_t GetHighlightPoint(TGraph *theGraph) const
Return the highlighted point for theGraph.
 
void PaintGraphSimple(TGraph *theGraph, Option_t *option)
Paint a simple graph, without errors bars.
 
void PaintGraphQQ(TGraph *theGraph, Option_t *option)
Paint this graphQQ. No options for the time being.
 
~TGraphPainter() override
Destructor.
 
static void SetMaxPointsPerLine(Int_t maxp=50)
Static function to set fgMaxPointsPerLine for graph painting.
 
void PaintGraphBentErrors(TGraph *theGraph, Option_t *option)
Paint this TGraphBentErrors with its current attributes.
 
TGraphPainter()
Default constructor.
 
void PaintHelper(TGraph *theGraph, Option_t *option) override
Paint a any kind of TGraph.
 
A TGraph is an object made of two arrays X and Y with npoints each.
 
A TScatter is able to draw four variables scatter plot on a single plot.
 
Abstract interface to a histogram painter.