Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
rmarker.cxx File Reference

Detailed Description

This ROOT 7 example shows the various marker styles.

#include "ROOT/RCanvas.hxx"
#include "ROOT/RText.hxx"
#include "ROOT/RMarker.hxx"
#include <string>
void rmarker()
{
using namespace ROOT::Experimental;
auto canvas = RCanvas::Create("RMarker styles");
double num = 0.3;
double x = 0;
double dx = 1/16.0;
for (int i = 1; i < 16; i++) {
x += dx;
for (int row=0;row<3;++row) {
int style = i;
if (row == 1)
style += 19;
else if (row==2)
style += 34;
RPadPos pt(RPadLength::Normal(x), .17_normal + 0.3_normal*row);
auto text = canvas->Draw<RText>(pt, std::to_string(style));
text->text.font = RAttrFont::kVerdana;
text->text.size = 0.05;
text->text.align = RAttrText::kCenterTop;
text->text.color = RColor::kGreen;
RPadPos pm(RPadLength::Normal(x), .25_normal + 0.3_normal*row);
auto draw = canvas->Draw<RMarker>(pm);
draw->marker.style = (RAttrMarker::EStyle) style;
draw->marker.color = RColor::kBlue;
draw->marker.size = 0.1; // relative to pad height
}
}
canvas->Show();
}
Option_t Option_t style
Option_t Option_t TPoint TPoint const char text
A position (horizontal and vertical) in a RPad.
Definition RPadPos.hxx:28
TPaveText * pt
Double_t x[n]
Definition legend1.C:17
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 rmarker.cxx.