This macro generates a small V7 TH2D, fills it with random values and draw it in a V7 canvas, using configured web browser.
#include "ROOT/RFrameTitle.hxx"
void draw_rh2_colz()
{
RAxisConfig xaxis("x", 20, 0., 10.);
RAxisConfig yaxis("y", 20, 0., 10.);
auto pHist = std::make_shared<RH2D>(xaxis, yaxis);
for (
int n=0;
n<10000;
n++)
pHist->Fill({gRandom->Gaus(5.,2.), gRandom->Gaus(5.,2.)});
auto canvas = RCanvas::Create("Canvas Title");
auto frame = canvas->GetOrCreateFrame();
frame->Margins().SetRight(0.2_normal);
frame->SetGridX(true).SetGridY(false);
frame->AttrX().SetZoomMinMax(2.,8.);
frame->AttrY().SetZoomMinMax(2.,8.);
canvas->Draw<RFrameTitle>("2D histogram with color palette");
canvas->Draw<RPaletteDrawable>(RPalette::GetPalette(), true);
canvas->Draw(pHist);
auto stat = canvas->Draw<RHist2StatBox>(pHist, "hist2");
canvas->SetSize(1000, 700);
canvas->Show();
}
#define R__LOAD_LIBRARY(LIBRARY)
- Date
- 2020-03-04
- Warning
- This is part of the ROOT 7 prototype! It will change without notice. It might trigger earthquakes. Feedback is welcome!
- Author
- Sergey Linev s.lin.nosp@m.ev@g.nosp@m.si.de
Definition in file draw_rh2_colz.cxx.