'ORGANIZATION AND SIMULTANEOUS FITS' RooFit tutorial macro #503
Reading and using a workspace
The input file for self macro is generated by rf502_wspaceread.py
áî`‰aU
import ROOT
f = ROOT.TFile("rf502_workspace_py.root")
w = f.Get("w")
x = w["x"]
model = w["model"]
data = w["modelData"]
model.Print("t")
model.fitTo(data, PrintLevel=-1)
xframe = x.frame(Title="Model and data read from workspace")
data.plotOn(xframe)
model.plotOn(xframe)
model.plotOn(xframe, Components="bkg", LineStyle="--")
model.plotOn(xframe, Components="bkg,sig2", LineStyle=":")
c = ROOT.TCanvas("rf503_wspaceread", "rf503_wspaceread", 600, 600)
ROOT.gPad.SetLeftMargin(0.15)
xframe.GetYaxis().SetTitleOffset(1.4)
xframe.Draw()
c.SaveAs("rf503_wspaceread.png")
0x55d6cc0e7ed0 RooAddPdf::model = 1/1 [Auto,Clean]
0x55d6cc29c490/V- RooChebychev::bkg = 1 [Auto,Dirty]
0x55d6cbd0ef10/V- RooRealVar::x = 5
0x55d6cbc713c0/V- RooRealVar::a0 = 0.5
0x55d6cbc24710/V- RooRealVar::a1 = 0
0x55d6cbbfda30/V- RooRealVar::bkgfrac = 0.5
0x55d6cc32c320/V- RooAddPdf::sig = 1/1 [Auto,Clean]
0x55d6cc2f2620/V- RooGaussian::sig1 = 1 [Auto,Dirty]
0x55d6cbd0ef10/V- RooRealVar::x = 5
0x55d6cbd09c10/V- RooRealVar::mean = 5
0x55d6cbc79590/V- RooRealVar::sigma1 = 0.5
0x55d6cbc7d3b0/V- RooRealVar::sig1frac = 0.8
0x55d6cc2ff920/V- RooGaussian::sig2 = 1 [Auto,Dirty]
0x55d6cbd0ef10/V- RooRealVar::x = 5
0x55d6cbd09c10/V- RooRealVar::mean = 5
0x55d6cbcf9c40/V- RooRealVar::sigma2 = 1
[#1] INFO:Fitting -- RooAbsPdf::fitTo(model) fixing normalization set for coefficient determination to observables in data
[#1] INFO:Fitting -- using generic CPU library compiled with no vectorizations
[#1] INFO:Fitting -- Creation of NLL object took 12.0569 ms
[#1] INFO:Fitting -- RooAddition::defaultErrorLevel(nll_model_modelData) Summation contains a RooNLLVar, using its error level
[#1] INFO:Minimization -- RooAbsMinimizerFcn::setOptimizeConst: activating const optimization
[#1] INFO:Minimization -- [fitFCN] No discrete parameters, performing continuous minimization only
[#1] INFO:Minimization -- RooAbsMinimizerFcn::setOptimizeConst: deactivating const optimization
[#1] INFO:Plotting -- RooAbsPdf::plotOn(model) directly selected PDF components: (bkg)
[#1] INFO:Plotting -- RooAbsPdf::plotOn(model) indirectly selected PDF components: ()
[#1] INFO:Plotting -- RooAbsPdf::plotOn(model) directly selected PDF components: (bkg,sig2)
[#1] INFO:Plotting -- RooAbsPdf::plotOn(model) indirectly selected PDF components: (sig)
- Date
- February 2018
- Authors
- Clemens Lange, Wouter Verkerke (C version)
Definition in file rf503_wspaceread.py.