20x = ROOT.RooRealVar(
"x",
"x", -5, 5)
21y = ROOT.RooRealVar(
"y",
"y", -5, 5)
24a0 = ROOT.RooRealVar(
"a0",
"a0", -1.5, -5, 5)
25a1 = ROOT.RooRealVar(
"a1",
"a1", -0.5, -1, 1)
26sigma = ROOT.RooRealVar(
"sigma",
"width of gaussian", 0.5)
32fy_1 = ROOT.RooFormulaVar(
"fy_1",
"a0-a1*sqrt(10*abs(y))", [y, a0, a1])
35model_1 = ROOT.RooGaussian(
"model_1",
"Gaussian with shifting mean", x, fy_1, sigma)
41fy_2 = ROOT.RooPolyVar(
"fy_2",
"fy_2", y, [a0, a1])
44model_2 = ROOT.RooGaussian(
"model_2",
"Gaussian with shifting mean", x, fy_2, sigma)
50fy_3 = ROOT.RooAddition(
"fy_3",
"a0+y", [a0, y])
53model_3 = ROOT.RooGaussian(
"model_3",
"Gaussian with shifting mean", x, fy_3, sigma)
59fy_4 = ROOT.RooProduct(
"fy_4",
"a1*y", [a1, y])
62model_4 = ROOT.RooGaussian(
"model_4",
"Gaussian with shifting mean", x, fy_4, sigma)
68hh_model_1 = model_1.createHistogram(
"hh_model_1", x, Binning=50, YVar=dict(var=y, Binning=50))
69hh_model_2 = model_2.createHistogram(
"hh_model_2", x, Binning=50, YVar=dict(var=y, Binning=50))
70hh_model_3 = model_3.createHistogram(
"hh_model_3", x, Binning=50, YVar=dict(var=y, Binning=50))
71hh_model_4 = model_4.createHistogram(
"hh_model_4", x, Binning=50, YVar=dict(var=y, Binning=50))
72hh_model_1.SetLineColor(ROOT.kBlue)
73hh_model_2.SetLineColor(ROOT.kBlue)
74hh_model_3.SetLineColor(ROOT.kBlue)
75hh_model_4.SetLineColor(ROOT.kBlue)
78c = ROOT.TCanvas(
"rf302_utilfuncs",
"rf302_utilfuncs", 800, 800)
81ROOT.gPad.SetLeftMargin(0.20)
82hh_model_1.GetZaxis().SetTitleOffset(2.5)
83hh_model_1.Draw(
"surf")
85ROOT.gPad.SetLeftMargin(0.20)
86hh_model_2.GetZaxis().SetTitleOffset(2.5)
87hh_model_2.Draw(
"surf")
89ROOT.gPad.SetLeftMargin(0.20)
90hh_model_3.GetZaxis().SetTitleOffset(2.5)
91hh_model_3.Draw(
"surf")
93ROOT.gPad.SetLeftMargin(0.20)
94hh_model_4.GetZaxis().SetTitleOffset(2.5)
95hh_model_4.Draw(
"surf")
97c.SaveAs(
"rf302_utilfuncs.png")