import ROOT
import numpy as np

n = 20
x = np.arange(0,2,0.1)
y = x**2+2

gr = ROOT.TGraph(n,x,y)

gr.SetMarkerStyle(21);
gr.SetMarkerColor(2);
gr.SetMarkerSize(1.3);
gr.Draw("APL");

input("Press Enter to continue...")
