Logo ROOT  
Reference Guide
Loading...
Searching...
No Matches
gr013_polar2.C File Reference

Detailed Description

View in nbviewer Open in SWAN
Create and draw a polar graph with errors and polar axis in radians (PI fractions).

See the TGraphPolar documentation

Since TGraphPolar is a TGraphErrors, it is painted with TGraphPainter options.

With GetPolargram we retrieve the polar axis to format it; see the TGraphPolargram documentation

void gr013_polar2()
{
TCanvas * CPol = new TCanvas("CPol","TGraphPolar Example",500,500);
Double_t theta[8];
Double_t radius[8];
Double_t etheta[8];
Double_t eradius[8];
for (int i=0; i<8; i++) {
theta[i] = (i+1)*(TMath::Pi()/4.);
radius[i] = (i+1)*0.05;
etheta[i] = TMath::Pi()/8.;
eradius[i] = 0.05;
}
TGraphPolar * grP1 = new TGraphPolar(8, theta, radius, etheta, eradius);
grP1->SetTitle("");
grP1->SetMarkerStyle(20);
grP1->SetMarkerSize(2.);
grP1->SetMarkerColor(4);
grP1->SetLineColor(2);
grP1->SetLineWidth(3);
// Draw with polymarker and errors
grP1->Draw("PE");
// To format the polar axis, we retrieve the TGraphPolargram.
// First update the canvas, otherwise GetPolargram returns 0
CPol->Update();
if (grP1->GetPolargram())
grP1->GetPolargram()->SetToRadian(); // tell ROOT that the theta values are in radians
}
double Double_t
Double 8 bytes.
Definition RtypesCore.h:73
virtual void SetLineWidth(Width_t lwidth)
Set the line width.
Definition TAttLine.h:47
virtual void SetLineColor(Color_t lcolor)
Set the line color.
Definition TAttLine.h:44
virtual void SetMarkerColor(Color_t mcolor=1)
Set the marker color.
Definition TAttMarker.h:41
virtual void SetMarkerStyle(Style_t mstyle=1)
Set the marker style.
Definition TAttMarker.h:43
virtual void SetMarkerSize(Size_t msize=1)
Set the marker size.
Definition TAttMarker.h:48
The Canvas class.
Definition TCanvas.h:23
void Update() override
Update canvas pad buffers.
Definition TCanvas.cxx:2486
TGraphPolargram * GetPolargram()
Definition TGraphPolar.h:39
void Draw(Option_t *options="") override
Default Draw method for all objects.
void SetTitle(const char *title="") override
Set the title of the TNamed.
constexpr Double_t Pi()
Definition TMath.h:40
Author
Olivier Couet

Definition in file gr013_polar2.C.