# Basic graphics
import ROOT
fun = ROOT.TF1("f","sin(x)/x",-10,10)
fun.Draw()
input("Press Enter to continue...")
