This macro generates a small RH3D, fills it with random values and draw it in RCanvas, using configured web browser.
#include "ROOT/RFrameTitle.hxx"
{
for (
int n=0;
n<10000;
n++)
pHist->Fill({gRandom->Gaus(0.,2.), gRandom->Gaus(0.,2.), gRandom->Gaus(0.,2.)});
auto canvas = RCanvas::Create("RH3D drawing options");
auto subpads = canvas->Divide(2,2);
canvas->SetSize(1000, 700);
canvas->Show();
}
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
Drawing fill attributes for different objects.
Objects used to configure the different axis types.
- Date
- 2020-06-18
- 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 rh3.cxx.