import ROOT
x = ROOT.RooRealVar("x", "x", -5, 5)
y = ROOT.RooRealVar("y", "y", -5, 5)
a0 = ROOT.RooRealVar("a0", "a0", -3.5, -5, 5)
a1 = ROOT.RooRealVar("a1", "a1", -1.5, -1, 1)
sigma = ROOT.RooRealVar("sigma", "width of gaussian", 1.5)
fy = ROOT.RooFormulaVar("fy", "a0-a1*sqrt(10*abs(y))",
ROOT.RooArgList(y, a0, a1))
model = ROOT.RooGaussian(
"model", "Gaussian with shifting mean", x, fy, sigma)
data = model.generate(ROOT.RooArgSet(x, y), 10000)
hh_data = ROOT.RooAbsData.createHistogram(data, "x,y", x, ROOT.RooFit.Binning(
20), ROOT.RooFit.YVar(y, ROOT.RooFit.Binning(20)))
hh_pdf = model.createHistogram("x,y", 50, 50)
hh_pdf.SetLineColor(ROOT.kBlue)
z = ROOT.RooRealVar("z", "z", -5, 5)
gz = ROOT.RooGaussian(
"gz", "gz", z, ROOT.RooFit.RooConst(0), ROOT.RooFit.RooConst(2))
model3 = ROOT.RooProdPdf("model3", "model3", ROOT.RooArgList(model, gz))
data3 = model3.generate(ROOT.RooArgSet(x, y, z), 10000)
hh_data3 = ROOT.RooAbsData.createHistogram(
data3, "hh_data3", x, ROOT.RooFit.Binning(8), ROOT.RooFit.YVar(
y, ROOT.RooFit.Binning(8)), ROOT.RooFit.ZVar(
z, ROOT.RooFit.Binning(8)))
hh_pdf3 = model3.createHistogram(
"hh_model3", x, ROOT.RooFit.Binning(20), ROOT.RooFit.YVar(
y, ROOT.RooFit.Binning(20)), ROOT.RooFit.ZVar(
z, ROOT.RooFit.Binning(20)))
hh_pdf3.SetFillColor(ROOT.kBlue)
c1 = ROOT.TCanvas("rf309_2dimplot", "rf309_2dimplot", 800, 800)
c1.Divide(2, 2)
c1.cd(1)
ROOT.gPad.SetLeftMargin(0.15)
hh_data.GetZaxis().SetTitleOffset(1.4)
hh_data.Draw("lego")
c1.cd(2)
ROOT.gPad.SetLeftMargin(0.20)
hh_pdf.GetZaxis().SetTitleOffset(2.5)
hh_pdf.Draw("surf")
c1.cd(3)
ROOT.gPad.SetLeftMargin(0.15)
hh_data.GetZaxis().SetTitleOffset(1.4)
hh_data.Draw("box")
c1.cd(4)
ROOT.gPad.SetLeftMargin(0.15)
hh_pdf.GetZaxis().SetTitleOffset(2.5)
hh_pdf.Draw("cont3")
c1.SaveAs("rf309_2dimplot.png")
c2 = ROOT.TCanvas("rf309_3dimplot", "rf309_3dimplot", 800, 400)
c2.Divide(2)
c2.cd(1)
ROOT.gPad.SetLeftMargin(0.15)
hh_data3.GetZaxis().SetTitleOffset(1.4)
hh_data3.Draw("lego")
c2.cd(2)
ROOT.gPad.SetLeftMargin(0.15)
hh_pdf3.GetZaxis().SetTitleOffset(1.4)
hh_pdf3.Draw("iso")
c2.SaveAs("rf309_3dimplot.png")