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

Detailed Description

View in nbviewer Open in SWAN
Create and draw a polar graph with PI axis

{
TCanvas * CPol = new TCanvas("CPol","TGraphPolar Example",500,500);
Double_t theta[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;
}
grP1->SetTitle("");
grP1->SetMarkerStyle(20);
grP1->SetMarkerSize(2.);
grP1->SetMarkerColor(4);
grP1->SetLineColor(2);
grP1->SetLineWidth(3);
grP1->Draw("PE");
CPol->Update();
if (grP1->GetPolargram())
grP1->GetPolargram()->SetToRadian();
}
double Double_t
Definition RtypesCore.h:59
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
The Canvas class.
Definition TCanvas.h:23
To draw a polar graph.
Definition TGraphPolar.h:23
constexpr Double_t Pi()
Definition TMath.h:37
Author
Olivier Couet

Definition in file graphpolar2.C.