15 ROOT.gStyle.SetOptStat(0)
17 c1 = ROOT.TCanvas(
"c1",
"fit residual simple")
18 h1 = ROOT.TH1D(
"h1",
"h1", 50, -5, 5)
19 h1.FillRandom(
"gaus", 2000)
21 h1.GetXaxis().SetTitle(
"x")
22 h1.GetYaxis().SetTitle(
"y")
24 rp1 = ROOT.TRatioPlot(h1)
25 rp1.SetConfidenceIntervalColors(ROOT.kBlue, ROOT.kRed)