Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
rf514_RooCustomizer.py File Reference

Detailed Description

View in nbviewer Open in SWAN
Using the RooCustomizer to create multiple PDFs that share a lot of properties, but have unique parameters for each category.

As an extra complication, some of the new parameters need to be functions of a mass parameter.

import ROOT
E = ROOT.RooRealVar("Energy", "Energy", 0, 3000)
meanG = ROOT.RooRealVar("meanG", "meanG", 100.0, 0.0, 3000.0)
sigmaG = ROOT.RooRealVar("sigmaG", "sigmaG", 3.0)
gauss = ROOT.RooGaussian("gauss", "gauss", E, meanG, sigmaG)
pol1 = ROOT.RooRealVar("pol1", "Constant of the polynomial", 1, -10, 10)
linear = ROOT.RooPolynomial("linear", "linear", E, pol1)
yieldSig = ROOT.RooRealVar("yieldSig", "yieldSig", 1, 0, 1.0e4)
yieldBkg = ROOT.RooRealVar("yieldBkg", "yieldBkg", 1, 0, 1.0e4)
model = ROOT.RooAddPdf("model", "S + B model", [gauss, linear], [yieldSig, yieldBkg])
print("The proto model before customisation:\n")
model.Print("T") # "T" prints the model as a tree
# Build the categories
sample = ROOT.RooCategory("sample", "sample", {"Sample1": 1, "Sample2": 2, "Sample3": 3})
# Start to customise the proto model that was defined above.
# ---------------------------------------------------------------------------
# We need two sets for bookkeeping of PDF nodes:
newLeafs = ROOT.RooArgSet()
allCustomiserNodes = ROOT.RooArgSet()
# 1. Each sample should have its own mean for the gaussian
# The customiser will make copies of `meanG` for each category.
# These will all appear in the set `newLeafs`, which will own the new nodes.
cust = ROOT.RooCustomizer(model, sample, newLeafs, allCustomiserNodes)
cust.splitArg(meanG, sample)
# 2. Each sample should have its own signal yield, but there is an extra complication:
# We need the yields 1 and 2 to be a function of the variable "mass".
# For this, we pre-define nodes with exactly the names that the customiser would have created automatically,
# that is, "<nodeName>_<categoryName>", and we register them in the set of customiser nodes.
# The customiser will pick them up instead of creating new ones.
# If we don't provide one (e.g. for "yieldSig_Sample3"), it will be created automatically by cloning `yieldSig`.
mass = ROOT.RooRealVar("M", "M", 1, 0, 12000)
yield1 = ROOT.RooFormulaVar("yieldSig_Sample1", "Signal yield in the first sample", "M/3.360779", mass)
yield2 = ROOT.RooFormulaVar("yieldSig_Sample2", "Signal yield in the second sample", "M/2", mass)
allCustomiserNodes.add(yield1)
allCustomiserNodes.add(yield2)
# Instruct the customiser to replace all yieldSig nodes for each sample:
cust.splitArg(yieldSig, sample)
# Now we can start building the PDFs for all categories:
pdf1 = cust.build("Sample1")
pdf2 = cust.build("Sample2")
pdf3 = cust.build("Sample3")
# And we inspect the two PDFs
print("\nPDF 1 with a yield depending on M:\n")
pdf1.Print("T")
print("\nPDF 2 with a yield depending on M:\n")
pdf2.Print("T")
print("\nPDF 3 with a free yield:\n")
pdf3.Print("T")
print("\nThe following leafs have been created automatically while customising:\n")
newLeafs.Print("V")
# If we needed to set reasonable values for the means of the gaussians, this could be done as follows:
meanG1 = allCustomiserNodes["meanG_Sample1"]
meanG1.setVal(200)
meanG2 = allCustomiserNodes["meanG_Sample2"]
meanG2.setVal(300)
print(
"\nThe following leafs have been used while customising\n\t(partial overlap with the set of automatically created leaves.\n\ta new customiser for a different PDF could reuse them if necessary.):"
)
allCustomiserNodes.Print("V")
[#0] WARNING:InputArguments -- The parameter 'sigmaG' with range [-inf, inf] of the RooGaussian 'gauss' exceeds the safe range of (0, inf). Advise to limit its range.
0x7d82c30 RooAddPdf::model = 750.5/1 [Auto,Clean]
0x78ede60/V- RooGaussian::gauss = 0 [Auto,Dirty]
0x7237a50/V- RooRealVar::Energy = 1500
0x7205750/V- RooRealVar::meanG = 100
0x76ac090/V- RooRealVar::sigmaG = 3
0x5e4af40/V- RooRealVar::yieldSig = 1
0x79f09e0/V- RooPolynomial::linear = 1501 [Auto,Dirty]
0x7237a50/V- RooRealVar::Energy = 1500
0x713de30/V- RooRealVar::pol1 = 1
0x5d48c80/V- RooRealVar::yieldBkg = 1
0x7c30210 RooAddPdf::model_Sample1 = 1156.8/1 [Auto,Clean]
0x823d8a0/V- RooGaussian::gauss_Sample1 = 0 [Auto,Dirty]
0x7237a50/V- RooRealVar::Energy = 1500
0x82c26f0/V- RooRealVar::meanG_Sample1 = 100
0x76ac090/V- RooRealVar::sigmaG = 3
0x82cef40/V- RooFormulaVar::yieldSig_Sample1 = 0.29755 [Auto,Clean]
0x5132480/V- RooRealVar::M = 1
0x79f09e0/V- RooPolynomial::linear = 1501 [Auto,Dirty]
0x7237a50/V- RooRealVar::Energy = 1500
0x713de30/V- RooRealVar::pol1 = 1
0x5d48c80/V- RooRealVar::yieldBkg = 1
0x82afbf0 RooAddPdf::model_Sample2 = 1000.67/1 [Auto,Clean]
0x8352bc0/V- RooGaussian::gauss_Sample2 = 0 [Auto,Dirty]
0x7237a50/V- RooRealVar::Energy = 1500
0x82c3780/V- RooRealVar::meanG_Sample2 = 100
0x76ac090/V- RooRealVar::sigmaG = 3
0x7c39fd0/V- RooFormulaVar::yieldSig_Sample2 = 0.5 [Auto,Clean]
0x5132480/V- RooRealVar::M = 1
0x79f09e0/V- RooPolynomial::linear = 1501 [Auto,Dirty]
0x7237a50/V- RooRealVar::Energy = 1500
0x713de30/V- RooRealVar::pol1 = 1
0x5d48c80/V- RooRealVar::yieldBkg = 1
0x82480d0 RooAddPdf::model_Sample3 = 750.5/1 [Auto,Clean]
0x82c4600/V- RooGaussian::gauss_Sample3 = 0 [Auto,Dirty]
0x7237a50/V- RooRealVar::Energy = 1500
0x832e120/V- RooRealVar::meanG_Sample3 = 100
0x76ac090/V- RooRealVar::sigmaG = 3
0x8343c50/V- RooRealVar::yieldSig_Sample3 = 1
0x79f09e0/V- RooPolynomial::linear = 1501 [Auto,Dirty]
0x7237a50/V- RooRealVar::Energy = 1500
0x713de30/V- RooRealVar::pol1 = 1
0x5d48c80/V- RooRealVar::yieldBkg = 1
1) RooRealVar:: meanG_Sample1 = 100
2) RooRealVar:: meanG_Sample2 = 100
3) RooRealVar:: meanG_Sample3 = 100
4) RooRealVar:: yieldSig_Sample3 = 1
1) RooFormulaVar:: yieldSig_Sample1 = 0.29755
2) RooFormulaVar:: yieldSig_Sample2 = 0.5
3) RooRealVar:: meanG_Sample1 = 200
4) RooRealVar:: meanG_Sample2 = 300
5) RooRealVar:: meanG_Sample3 = 100
6) RooRealVar:: yieldSig_Sample3 = 1
The proto model before customisation:
PDF 1 with a yield depending on M:
PDF 2 with a yield depending on M:
PDF 3 with a free yield:
The following leafs have been created automatically while customising:
The following leafs have been used while customising
(partial overlap with the set of automatically created leaves.
a new customiser for a different PDF could reuse them if necessary.):
Date
June 2021
Author
Harshal Shende, Stephan Hageboeck (C++ version)

Definition in file rf514_RooCustomizer.py.