#include "ROOT/RText.hxx"
#include "ROOT/RMarker.hxx"
#include <string>
void markerStyle()
{
auto canvas = RCanvas::Create("Canvas Title");
double num = 0.3;
double dx = 1/16.0;
for (int i=1;i<16;i++) {
for (int row=0;row<3;++row) {
if (row==1)
style+=19;
else if (row==2)
style+=34;
RPadPos
pt(RPadLength::Normal(
x), .12_normal + 0.3_normal*row);
canvas->Draw<RText>(
pt, std::to_string(
style));
RPadPos pm(RPadLength::Normal(
x), .25_normal + 0.3_normal*row);
canvas->Draw<RMarker>(pm)->AttrMarker().SetStyle(
style).SetSize(2.5);
}
}
canvas->Show();
}
- Date
- 2018-03-18
- Warning
- This is part of the ROOT 7 prototype! It will change without notice. It might trigger earthquakes. Feedback is welcome!
- Author
- Iliana Betsou
Definition in file markerStyle.cxx.