This ROOT 7 example demonstrates how to create a ROOT 7 canvas (RCanvas) and and divide it in 9 sub-pads.
#include "ROOT/RLine.hxx"
{
auto canvas = RCanvas::Create("RCanvas::Divide example");
auto pads = canvas->Divide(3, 3);
for (int i = 0; i < 3; ++i)
for (
int j = 0;
j < 3; ++
j) {
}
canvas->Show();
}
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
- Date
- 2015-03-22
- Warning
- This is part of the ROOT 7 prototype! It will change without notice. It might trigger earthquakes. Feedback is welcome!
- Author
- Axel Naumann axel@.nosp@m.cern.nosp@m..ch
Definition in file rpad.cxx.