19ROOT.gStyle.SetOptStat(0)
 
   21c1 = ROOT.TCanvas(
"c1", 
"fit residual simple")
 
   22h1 = ROOT.TH1D(
"h1", 
"h1", 50, -5, 5)
 
   24h1.FillRandom(
"gaus", 2000)
 
   26h1.GetXaxis().SetTitle(
"x")
 
   28rp1 = ROOT.TRatioPlot(h1)
 
   30rp1.GetLowerRefYaxis().SetTitle(
"ratio")
 
   31rp1.GetUpperRefYaxis().SetTitle(
"entries")