Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
THistPainter.h
Go to the documentation of this file.
1// @(#)root/histpainter:$Id$
2// Author: Rene Brun, Olivier Couet
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#ifndef ROOT_THistPainter
12#define ROOT_THistPainter
13
14
15//////////////////////////////////////////////////////////////////////////
16// //
17// THistPainter //
18// //
19// helper class to draw histograms //
20// //
21//////////////////////////////////////////////////////////////////////////
22
23
24#include "TVirtualHistPainter.h"
25#include "TString.h"
26
27#include <vector>
28#include <utility>
29#include <memory>
30
31
32class TH1;
33class TAxis;
34class TCutG;
35class TGaxis;
37class TGraph2DPainter;
38class TPie;
39class TF3;
40
41const Int_t kMaxCuts = 16;
42
44{
45 std::pair<Int_t, Int_t> fPixelRange;
46 std::pair<Int_t, Int_t> fBinRange;
47};
48
49
51
52protected:
53 TH1 *fH; ///< Pointer to histogram to paint
54 TAxis *fXaxis; ///< Pointer to X axis
55 TAxis *fYaxis; ///< Pointer to Y axis
56 TAxis *fZaxis; ///< Pointer to Z axis
57 TList *fFunctions; ///< Pointer to histogram list of functions
58 std::unique_ptr<TPainter3dAlgorithms> fLego; ///< Pointer to a TPainter3dAlgorithms object
59 std::unique_ptr<TGraph2DPainter> fGraph2DPainter; ///< Pointer to a TGraph2DPainter object
60 std::unique_ptr<TPie> fPie; ///< Pointer to a TPie in case of option PIE
61 std::vector<Double_t> fXbuf; ///< X buffer coordinates
62 std::vector<Double_t> fYbuf; ///< Y buffer coordinates
63 Int_t fNcuts; ///< Number of graphical cuts
64 Int_t fCutsOpt[kMaxCuts]; ///< Sign of each cut
65 TCutG *fCuts[kMaxCuts]; ///< Pointers to graphical cuts
66 TList *fStack; ///< Pointer to stack of histograms (if any)
67 Int_t fShowProjection; ///< True if a projection must be drawn
68 Int_t fShowProjection2; ///< True if a second projection must be drawn (when calling SetShowProjectionXY on a TH2)
69 TString fShowOption; ///< Option to draw the projection
70 Int_t fXHighlightBin; ///< X highlight bin
71 Int_t fYHighlightBin; ///< Y highlight bin
72 TF3 *fCurrentF3; ///< Current TF3 function
73
74private:
76
77public:
79 ~THistPainter() override;
80 virtual void DefineColorLevels(Int_t ndivz);
81 Int_t DistancetoPrimitive(Int_t px, Int_t py) override;
82 void DrawPanel() override;
83 void ExecuteEvent(Int_t event, Int_t px, Int_t py) override;
84 TList *GetContourList(Double_t contour) const override;
85 char *GetObjectInfo(Int_t px, Int_t py) const override;
86 TList *GetStack() const override {return fStack;}
87 virtual Int_t GetXHighlightBin() const { return fXHighlightBin; }
88 virtual Int_t GetYHighlightBin() const { return fYHighlightBin; }
89 virtual void HighlightBin(Int_t px, Int_t py);
90 Bool_t IsInside(Int_t x, Int_t y) override;
93 Int_t MakeCuts(char *cutsopt) override;
94 void Paint(Option_t *option="") override;
95 virtual void PaintArrows(Option_t *option);
96 virtual void PaintAxis(Bool_t drawGridOnly=kFALSE);
97 virtual void PaintBar(Option_t *option);
98 virtual void PaintBarH(Option_t *option);
99 virtual void PaintBoxes(Option_t *option);
100 virtual void PaintCandlePlot(Option_t *option);
101 virtual void PaintColorLevels(Option_t *option);
102 virtual void PaintColorLevelsFast(Option_t *option);
103 virtual std::vector<THistRenderingRegion> ComputeRenderingRegions(TAxis *pAxis, Int_t nPixels, bool isLog);
104
105 virtual void PaintTH2PolyBins(Option_t *option);
108 virtual void PaintTH2PolyText(Option_t *option);
109 virtual void PaintContour(Option_t *option);
110 virtual Int_t PaintContourLine(Double_t elev1, Int_t icont1, Double_t x1, Double_t y1,
111 Double_t elev2, Int_t icont2, Double_t x2, Double_t y2,
112 Double_t *xarr, Double_t *yarr, Int_t *itarr, Double_t *levels);
113 virtual void PaintErrors(Option_t *option);
114 virtual void Paint2DErrors(Option_t *option);
115 virtual void PaintFrame();
116 virtual void PaintFunction(Option_t *option);
117 virtual void PaintHighlightBin(Option_t *option="");
118 virtual void PaintHist(Option_t *option);
119 virtual void PaintH3(Option_t *option="");
120 virtual void PaintH3Box(Int_t iopt);
121 virtual void PaintH3BoxRaster();
122 virtual void PaintH3Iso();
123 virtual Int_t PaintInit();
124 virtual Int_t PaintInitH();
125 virtual void PaintLego(Option_t *option);
126 virtual void PaintLegoAxis(TGaxis *axis, Double_t ang);
127 virtual void PaintPalette();
128 virtual void PaintScatterPlot(Option_t *option);
129 void PaintStat(Int_t dostat, TF1 *fit) override;
130 virtual void PaintStat2(Int_t dostat, TF1 *fit);
131 virtual void PaintStat3(Int_t dostat, TF1 *fit);
132 virtual void PaintSurface(Option_t *option);
133 virtual void PaintTriangles(Option_t *option);
134 virtual void PaintTable(Option_t *option);
135 virtual void PaintText(Option_t *option);
136 virtual void PaintTitle();
137 virtual void PaintTF3();
138 void ProcessMessage(const char *mess, const TObject *obj) override;
144 virtual void RecalculateRange();
145 void RecursiveRemove(TObject *) override {}
146 void SetHighlight() override;
147 void SetHistogram(TH1 *h) override;
148 void SetStack(TList *stack) override {fStack = stack;}
149 void SetShowProjection(const char *option,Int_t nbins) override;
150 void SetShowProjectionXY(const char *option,Int_t nbinsY,Int_t nbinsX) override;
151 virtual void ShowProjectionX(Int_t px, Int_t py);
152 virtual void ShowProjectionY(Int_t px, Int_t py);
153 virtual void ShowProjection3(Int_t px, Int_t py);
154 virtual Int_t TableInit();
155
156 static const char *GetBestFormat(Double_t v, Double_t e, const char *f);
157 static void PaintSpecialObjects(const TObject *obj, Option_t *option);
158
159 ClassDefOverride(THistPainter,0) //Helper class to draw histograms
160};
161
162#endif
#define b(i)
Definition RSha256.hxx:100
#define f(i)
Definition RSha256.hxx:104
#define h(i)
Definition RSha256.hxx:106
#define e(i)
Definition RSha256.hxx:103
bool Bool_t
Definition RtypesCore.h:63
int Int_t
Definition RtypesCore.h:45
constexpr Bool_t kFALSE
Definition RtypesCore.h:101
double Double_t
Definition RtypesCore.h:59
const char Option_t
Definition RtypesCore.h:66
#define ClassDefOverride(name, id)
Definition Rtypes.h:341
Option_t Option_t option
Option_t Option_t TPoint TPoint const char x2
Option_t Option_t TPoint TPoint const char x1
Option_t Option_t TPoint TPoint const char y2
Option_t Option_t TPoint TPoint const char y1
const Int_t kMaxCuts
Class to manage histogram axis.
Definition TAxis.h:31
Graphical cut class.
Definition TCutG.h:20
1-Dim function class
Definition TF1.h:233
A 3-Dim function with parameters.
Definition TF3.h:28
The axis painter class.
Definition TGaxis.h:24
The TGraphDelaunay painting class.
TH1 is the base class of all histogram classes in ROOT.
Definition TH1.h:59
The histogram painter class.
static Int_t ProjectSinusoidal2xy(Double_t l, Double_t b, Double_t &Al, Double_t &Ab)
Static function code for sinusoidal projection from Ernst-Jan Buis Source https://en....
void Paint(Option_t *option="") override
Control routine to paint any kind of histograms
TAxis * fYaxis
Pointer to Y axis.
std::unique_ptr< TPainter3dAlgorithms > fLego
Pointer to a TPainter3dAlgorithms object.
std::vector< Double_t > fXbuf
X buffer coordinates.
Int_t fXHighlightBin
X highlight bin.
TF3 * fCurrentF3
Current TF3 function.
virtual void PaintErrors(Option_t *option)
Draw 1D histograms error bars.
~THistPainter() override
destructor.
Int_t fShowProjection2
True if a second projection must be drawn (when calling SetShowProjectionXY on a TH2)
virtual void PaintTF3()
Control function to draw a 3D implicit functions.
virtual Int_t TableInit()
Initialize various options to draw 2D histograms.
virtual void PaintTH2PolyScatterPlot(Option_t *option)
Control function to draw a TH2Poly as a scatter plot.
static Int_t ProjectMollweide2xy(Double_t l, Double_t b, Double_t &Al, Double_t &Ab)
Static function.
static Int_t ProjectAitoff2xy(Double_t l, Double_t b, Double_t &Al, Double_t &Ab)
Static function.
virtual void PaintText(Option_t *option)
Control function to draw a 1D/2D histograms with the bin values.
Int_t DistancetoPrimitive(Int_t px, Int_t py) override
Compute the distance from the point px,py to a line.
virtual void PaintAxis(Bool_t drawGridOnly=kFALSE)
Draw axis (2D case) of an histogram.
virtual void PaintColorLevelsFast(Option_t *option)
[Rendering scheme for the COL2 and COLZ2 options] (HP14)
virtual Int_t PaintInit()
Compute histogram parameters used by the drawing routines.
virtual void Paint2DErrors(Option_t *option)
Draw 2D histograms errors.
Int_t fYHighlightBin
Y highlight bin.
virtual void PaintCandlePlot(Option_t *option)
Control function to draw a 2D histogram as a candle (box) plot or violin plot
virtual void PaintScatterPlot(Option_t *option)
Control function to draw a 2D histogram as a scatter plot.
void SetShowProjectionXY(const char *option, Int_t nbinsY, Int_t nbinsX) override
virtual void PaintLego(Option_t *option)
Control function to draw a 2D histogram as a lego plot.
virtual void PaintH3(Option_t *option="")
Control function to draw a 3D histograms.
Int_t fNcuts
Number of graphical cuts.
TString fShowOption
Option to draw the projection.
virtual void PaintHighlightBin(Option_t *option="")
Paint highlight bin as TBox object.
virtual void PaintTH2PolyBins(Option_t *option)
Control function to draw a TH2Poly bins' contours.
virtual Int_t PaintContourLine(Double_t elev1, Int_t icont1, Double_t x1, Double_t y1, Double_t elev2, Int_t icont2, Double_t x2, Double_t y2, Double_t *xarr, Double_t *yarr, Int_t *itarr, Double_t *levels)
Fill the matrix xarr and yarr for Contour Plot.
Int_t fShowProjection
True if a projection must be drawn.
virtual void PaintLegoAxis(TGaxis *axis, Double_t ang)
Draw the axis for legos and surface plots.
virtual void PaintTriangles(Option_t *option)
Control function to draw a table using Delaunay triangles.
virtual void HighlightBin(Int_t px, Int_t py)
Check on highlight bin.
virtual void PaintH3Box(Int_t iopt)
Control function to draw a 3D histogram with boxes.
Int_t MakeCuts(char *cutsopt) override
Decode string choptin and fill Graphical cuts structure.
TList * fFunctions
Pointer to histogram list of functions.
void DrawPanel() override
Display a panel with all histogram drawing options.
std::unique_ptr< TPie > fPie
Pointer to a TPie in case of option PIE.
static void PaintSpecialObjects(const TObject *obj, Option_t *option)
Static function to paint special objects like vectors and matrices.
virtual void PaintTitle()
new TGaxis/////////////////// Draw the histogram title
virtual void PaintTH2PolyColorLevels(Option_t *option)
Control function to draw a TH2Poly as a color plot.
TList * GetStack() const override
virtual std::vector< THistRenderingRegion > ComputeRenderingRegions(TAxis *pAxis, Int_t nPixels, bool isLog)
Returns the rendering regions for an axis to use in the COL2 option.
virtual void ShowProjectionX(Int_t px, Int_t py)
Show projection onto X.
virtual void PaintPalette()
Paint the color palette on the right side of the pad.
TAxis * fXaxis
Pointer to X axis.
virtual void PaintStat2(Int_t dostat, TF1 *fit)
Draw the statistics box for 2D histograms.
virtual void PaintArrows(Option_t *option)
Control function to draw a table as an arrow plot
virtual void RecalculateRange()
Recompute the histogram range following graphics operations.
void PaintStat(Int_t dostat, TF1 *fit) override
Draw the statistics box for 1D and profile histograms.
static Int_t ProjectParabolic2xy(Double_t l, Double_t b, Double_t &Al, Double_t &Ab)
Static function code for parabolic projection from Ernst-Jan Buis.
std::unique_ptr< TGraph2DPainter > fGraph2DPainter
Pointer to a TGraph2DPainter object.
virtual void PaintBarH(Option_t *option)
Draw a bar char in a rotated pad (X vertical, Y horizontal)
virtual void PaintStat3(Int_t dostat, TF1 *fit)
Draw the statistics box for 3D histograms.
virtual void PaintSurface(Option_t *option)
Control function to draw a 2D histogram as a surface plot.
TList * fStack
Pointer to stack of histograms (if any)
void SetStack(TList *stack) override
THistPainter()
Default constructor.
TH1 * fH
Pointer to histogram to paint.
virtual void PaintTH2PolyText(Option_t *option)
Control function to draw a TH2Poly as a text plot.
virtual void ShowProjection3(Int_t px, Int_t py)
Show projection (specified by fShowProjection) of a TH3.
TAxis * fZaxis
Pointer to Z axis.
void RecursiveRemove(TObject *) override
Recursively remove this object from a list.
void SetHistogram(TH1 *h) override
Set current histogram to h
virtual void PaintFunction(Option_t *option)
[Paint functions associated to an histogram.](HP28")
virtual void PaintBar(Option_t *option)
Draw a bar-chart in a normal pad.
static Int_t ProjectMercator2xy(Double_t l, Double_t b, Double_t &Al, Double_t &Ab)
Static function.
virtual void PaintBoxes(Option_t *option)
Control function to draw a 2D histogram as a box plot
virtual Int_t MakeChopt(Option_t *option)
Decode string choptin and fill Hoption structure.
char * GetObjectInfo(Int_t px, Int_t py) const override
Display the histogram info (bin number, contents, integral up to bin corresponding to cursor position...
TList * GetContourList(Double_t contour) const override
Get a contour (as a list of TGraphs) using the Delaunay triangulation.
void ProcessMessage(const char *mess, const TObject *obj) override
Process message mess.
void SetShowProjection(const char *option, Int_t nbins) override
Set projection.
virtual void ShowProjectionY(Int_t px, Int_t py)
Show projection onto Y.
static const char * GetBestFormat(Double_t v, Double_t e, const char *f)
This function returns the best format to print the error value (e) knowing the parameter value (v) an...
virtual void PaintContour(Option_t *option)
Control function to draw a 2D histogram as a contour plot.
TCutG * fCuts[kMaxCuts]
Pointers to graphical cuts.
virtual void PaintTable(Option_t *option)
Control function to draw 2D/3D histograms (tables).
void ExecuteEvent(Int_t event, Int_t px, Int_t py) override
Execute the actions corresponding to event.
virtual Int_t PaintInitH()
Compute histogram parameters used by the drawing routines for a rotated pad.
virtual void PaintFrame()
Calculate range and clear pad (canvas).
Int_t fCutsOpt[kMaxCuts]
Sign of each cut.
virtual Int_t GetYHighlightBin() const
virtual void PaintH3Iso()
Control function to draw a 3D histogram with Iso Surfaces.
std::vector< Double_t > fYbuf
Y buffer coordinates.
virtual void PaintH3BoxRaster()
Control function to draw a 3D histogram with boxes.
virtual void PaintHist(Option_t *option)
Control routine to draw 1D histograms
void SetHighlight() override
Set highlight (enable/disable) mode for fH.
virtual void DefineColorLevels(Int_t ndivz)
Define the color levels used to paint legos, surfaces etc..
TString fObjectInfo
virtual Int_t GetXHighlightBin() const
virtual void PaintColorLevels(Option_t *option)
Control function to draw a 2D histogram as a color plot.
Bool_t IsInside(Int_t x, Int_t y) override
Return kTRUE if the cell ix, iy is inside one of the graphical cuts.
A doubly linked list.
Definition TList.h:38
Mother of all ROOT objects.
Definition TObject.h:41
The Legos and Surfaces painter class.
Draw a Pie Chart,.
Definition TPie.h:23
Basic string class.
Definition TString.h:139
Abstract interface to a histogram painter.
Double_t y[n]
Definition legend1.C:17
Double_t x[n]
Definition legend1.C:17
std::pair< Int_t, Int_t > fBinRange
std::pair< Int_t, Int_t > fPixelRange
TLine l
Definition textangle.C:4