20CPol = ROOT.TCanvas(
"CPol",
"TGraphPolar Example", 500, 500)
28 theta = np.append(theta, (i + 1) * (np.pi / 4.0))
29 radius = np.append(radius, (i + 1) * 0.05)
30 etheta = np.append(etheta, np.pi / 8.0)
31 eradius = np.append(eradius, 0.05)
33grP1 = ROOT.TGraphPolar(8, theta, radius, etheta, eradius)
36grP1.SetMarkerStyle(20)
37grP1.SetMarkerSize(2.0)
47if grP1.GetPolargram():
48 grP1.GetPolargram().SetToRadian()