Addition and convolution: composite pdf with signal and background component
pdf = f_bkg * bkg(x,a0,a1) + (1-fbkg) * (f_sig1 * sig1(x,m,s1 + (1-f_sig1) * sig2(x,m,s2)))
import ROOT
x = ROOT.RooRealVar("x", "x", 0, 10)
mean = ROOT.RooRealVar("mean", "mean of gaussians", 5)
sigma1 = ROOT.RooRealVar("sigma1", "width of gaussians", 0.5)
sigma2 = ROOT.RooRealVar("sigma2", "width of gaussians", 1)
sig1 = ROOT.RooGaussian("sig1", "Signal component 1", x, mean, sigma1)
sig2 = ROOT.RooGaussian("sig2", "Signal component 2", x, mean, sigma2)
a0 = ROOT.RooRealVar("a0", "a0", 0.5, 0.0, 1.0)
a1 = ROOT.RooRealVar("a1", "a1", -0.2, 0.0, 1.0)
bkg = ROOT.RooChebychev("bkg", "Background", x, [a0, a1])
sig1frac = ROOT.RooRealVar("sig1frac", "fraction of component 1 in signal", 0.8, 0.0, 1.0)
sig = ROOT.RooAddPdf("sig", "Signal", [sig1, sig2], [sig1frac])
bkgfrac = ROOT.RooRealVar("bkgfrac", "fraction of background", 0.5, 0.0, 1.0)
model = ROOT.RooAddPdf("model", "g1+g2+a", [bkg, sig], [bkgfrac])
data = model.generate({x}, 1000)
model.fitTo(data, PrintLevel=-1)
xframe = x.frame(Title="Example of composite pdf=(sig1+sig2)+bkg")
data.plotOn(xframe)
model.plotOn(xframe)
model.plotOn(xframe, Components={bkg}, LineStyle="--")
model.plotOn(xframe, Components={bkg, sig2}, LineStyle=":")
model.Print("t")
model2 = ROOT.RooAddPdf("model", "g1+g2+a", [bkg, sig1, sig2], [bkgfrac, sig1frac], True)
model2.plotOn(xframe, LineColor="r", LineStyle="--")
model2.plotOn(xframe, Components={bkg, sig2}, LineColor="r", LineStyle="--")
model2.Print("t")
c = ROOT.TCanvas("rf201_composite", "rf201_composite", 600, 600)
ROOT.gPad.SetLeftMargin(0.15)
xframe.GetYaxis().SetTitleOffset(1.4)
xframe.Draw()
c.SaveAs("rf201_composite.png")
[#0] WARNING:InputArguments -- The parameter 'sigma1' with range [-1e+30, 1e+30] of the RooGaussian 'sig1' exceeds the safe range of (0, inf). Advise to limit its range.
[#0] WARNING:InputArguments -- The parameter 'sigma2' with range [-1e+30, 1e+30] of the RooGaussian 'sig2' exceeds the safe range of (0, inf). Advise to limit its range.
[#1] INFO:Minimization -- RooAbsMinimizerFcn::setOptimizeConst: activating const optimization
[#1] INFO:Minimization -- The following expressions have been identified as constant and will be precalculated and cached: (sig1,sig2)
[#1] INFO:Minimization -- The following expressions will be evaluated in cache-and-track mode: (bkg)
[#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)
0x6cc2ca0 RooAddPdf::model = 0.885987/1 [Auto,Clean]
0x6aed360/V- RooChebychev::bkg = 0.733485 [Auto,Dirty]
0x6458d90/V- RooRealVar::x = 5
0x643c6b0/V- RooRealVar::a0 = 0.507642 +/- 0.0795738
0x6816c20/V- RooRealVar::a1 = 0.266515 +/- 0.13378
0x6d592b0/V- RooRealVar::bkgfrac = 0.427793 +/- 0.0355511
0x6cdac10/V- RooAddPdf::sig = 1/1 [Auto,Clean]
0x6853300/V- RooGaussian::sig1 = 1 [Auto,Dirty]
0x6458d90/V- RooRealVar::x = 5
0x6521180/V- RooRealVar::mean = 5
0x64668d0/V- RooRealVar::sigma1 = 0.5
0x135c0a0/V- RooRealVar::sig1frac = 0.641234 +/- 0.0967457
0x68489d0/V- RooGaussian::sig2 = 1 [Auto,Dirty]
0x6458d90/V- RooRealVar::x = 5
0x6521180/V- RooRealVar::mean = 5
0x4fa4f70/V- RooRealVar::sigma2 = 1
[#1] INFO:Plotting -- RooAbsPdf::plotOn(model) directly selected PDF components: (bkg,sig2)
[#1] INFO:Plotting -- RooAbsPdf::plotOn(model) indirectly selected PDF components: ()
0x75f3b20 RooAddPdf::model = 0.885987/1 [Auto,Clean]
0x6aed360/V- RooChebychev::bkg = 0.733485 [Auto,Dirty]
0x6458d90/V- RooRealVar::x = 5
0x643c6b0/V- RooRealVar::a0 = 0.507642 +/- 0.0795738
0x6816c20/V- RooRealVar::a1 = 0.266515 +/- 0.13378
0x6d592b0/V- RooRealVar::bkgfrac = 0.427793 +/- 0.0355511
0x6853300/V- RooGaussian::sig1 = 1 [Auto,Dirty]
0x6458d90/V- RooRealVar::x = 5
0x6521180/V- RooRealVar::mean = 5
0x64668d0/V- RooRealVar::sigma1 = 0.5
0x77748e0/V- RooRecursiveFraction::model_recursive_fraction_sig1_2 = 0.366918 [Auto,Clean]
0x135c0a0/V- RooRealVar::sig1frac = 0.641234 +/- 0.0967457
0x6d592b0/V- RooRealVar::bkgfrac = 0.427793 +/- 0.0355511
0x68489d0/V- RooGaussian::sig2 = 1 [Auto,Dirty]
0x6458d90/V- RooRealVar::x = 5
0x6521180/V- RooRealVar::mean = 5
0x4fa4f70/V- RooRealVar::sigma2 = 1
0x7685a30/V- RooRecursiveFraction::model_recursive_fraction_sig2_3 = 0.205289 [Auto,Clean]
0x745d180/V- RooConstVar::1 = 1
0x135c0a0/V- RooRealVar::sig1frac = 0.641234 +/- 0.0967457
0x6d592b0/V- RooRealVar::bkgfrac = 0.427793 +/- 0.0355511
- Date
- February 2018
- Authors
- Clemens Lange, Wouter Verkerke (C++ version)
Definition in file rf201_composite.py.