Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
RooParamHistFunc.cxx
Go to the documentation of this file.
1/*
2 * Project: RooFit
3 *
4 * Copyright (c) 2023, CERN
5 *
6 * Redistribution and use in source and binary forms,
7 * with or without modification, are permitted according to the terms
8 * listed in LICENSE (http://roofit.sourceforge.net/license.txt)
9 */
10
11/** \class RooParamHistFunc
12 * \ingroup Roofit
13 * A histogram function that assigns scale parameters to every bin. Instead of the bare bin contents,
14 * it therefore yields:
15 * \f[
16 * \gamma_{i} * \mathrm{bin}_i
17 * \f]
18 *
19 * The \f$ \gamma_i \f$ can therefore be used to parametrise statistical uncertainties of the histogram
20 * template. In conjunction with a constraint term, this can be used to implement the Barlow-Beeston method.
21 * The constraint can be implemented using RooHistConstraint.
22 *
23 * See also the tutorial rf709_BarlowBeeston.C
24 */
25
26#include <RooParamHistFunc.h>
27#include <RooRealVar.h>
28#include <RooFitImplHelpers.h>
29
31
32RooParamHistFunc::RooParamHistFunc(const char *name, const char *title, RooDataHist &dh, const RooAbsArg &x,
33 const RooParamHistFunc *paramSource, bool paramRelative)
34 : RooAbsReal(name, title), _x("x", "x", this), _p("p", "p", this), _dh(dh), _relParam(paramRelative)
35{
36 // Populate x with observables
37 _x.add(x);
38
39 if (paramSource) {
40 // Now populate p with existing parameters
41 _p.add(paramSource->_p);
42 return;
43 }
44
45 // Now populate p with parameters
46 RooArgSet allVars;
47 for (Int_t i = 0; i < _dh.numEntries(); i++) {
48 _dh.get(i);
49 const char *vname = Form("%s_gamma_bin_%i", GetName(), i);
50 RooRealVar *var = new RooRealVar(vname, vname, 0, 1000);
51 var->setVal(_relParam ? 1 : _dh.weight());
52 var->setError(_relParam ? 1 / sqrt(_dh.weight()) : sqrt(_dh.weight()));
53 var->setConstant(true);
54 allVars.add(*var);
55 _p.add(*var);
56 }
57 addOwnedComponents(allVars);
58}
59
60////////////////////////////////////////////////////////////////////////////////
61
63 RooAbsReal(other,name),
64 _x("x",this,other._x),
65 _p("p",this,other._p),
66 _dh(other._dh),
67 _relParam(other._relParam)
68{
69}
70
71////////////////////////////////////////////////////////////////////////////////
72
74{
75 Int_t idx = ((RooDataHist&)_dh).getIndex(_x,true) ;
76 double ret = (static_cast<RooAbsReal*>(_p.at(idx)))->getVal() ;
77 return _relParam ? ret * getNominal(idx) : ret;
78}
79
81{
82 std::string const &idx = _dh.calculateTreeIndexForCodeSquash(this, ctx, _x);
83 std::string arrName = ctx.buildArg(_p);
84 std::string result = arrName + "[" + idx + "]";
85 if (_relParam) {
86 // get weight[idx] * binv[idx]. Here we get the bin volume for the first element as we assume the distribution to
87 // be binned uniformly.
88 double binV = _dh.binVolume(0);
89 std::string const &weightName = _dh.declWeightArrayForCodeSquash(this, ctx, false);
90 std::string nominalVal = weightName;
91 if (weightName[0] == '_')
92 nominalVal += "[" + idx + "] * " + (binV == 1 ? "" : std::to_string(binV));
93
94 result += " * " + nominalVal;
95 }
96 ctx.addResult(this, result);
97}
98
99////////////////////////////////////////////////////////////////////////////////
100
102{
103 return (static_cast<RooAbsReal&>(_p[ibin])).getVal() ;
104}
105
106////////////////////////////////////////////////////////////////////////////////
107
108void RooParamHistFunc::setActual(Int_t ibin, double newVal)
109{
110 (static_cast<RooRealVar&>(_p[ibin])).setVal(newVal) ;
111}
112
113////////////////////////////////////////////////////////////////////////////////
114
116{
117 _dh.get(ibin) ;
118 return _dh.weight() ;
119}
120
121////////////////////////////////////////////////////////////////////////////////
122
124{
125 _dh.get(ibin) ;
126 return _dh.weightError() ;
127}
128
129////////////////////////////////////////////////////////////////////////////////
130/// Return sampling hint for making curves of (projections) of this function
131/// as the recursive division strategy of RooCurve cannot deal efficiently
132/// with the vertical lines that occur in a non-interpolated histogram
133
134std::list<double>* RooParamHistFunc::plotSamplingHint(RooAbsRealLValue& obs, double xlo, double xhi) const
135{
136 // Check that observable is in dataset, if not no hint is generated
137 RooAbsLValue* lvarg = dynamic_cast<RooAbsLValue*>(_dh.get()->find(obs.GetName())) ;
138 if (!lvarg) {
139 return nullptr ;
140 }
141
142 // Retrieve position of all bin boundaries
143 const RooAbsBinning* binning = lvarg->getBinningPtr(nullptr);
144 double* boundaries = binning->array() ;
145
146 std::list<double>* hint = new std::list<double> ;
147
148 // Widen range slightly
149 xlo = xlo - 0.01*(xhi-xlo) ;
150 xhi = xhi + 0.01*(xhi-xlo) ;
151
152 double delta = (xhi-xlo)*1e-8 ;
153
154 // Construct array with pairs of points positioned epsilon to the left and
155 // right of the bin boundaries
156 for (Int_t i=0 ; i<binning->numBoundaries() ; i++) {
157 if (boundaries[i]>=xlo && boundaries[i]<=xhi) {
158 hint->push_back(boundaries[i]-delta) ;
159 hint->push_back(boundaries[i]+delta) ;
160 }
161 }
162
163 return hint ;
164}
165
166////////////////////////////////////////////////////////////////////////////////
167/// Return sampling hint for making curves of (projections) of this function
168/// as the recursive division strategy of RooCurve cannot deal efficiently
169/// with the vertical lines that occur in a non-interpolated histogram
170
171std::list<double>* RooParamHistFunc::binBoundaries(RooAbsRealLValue& obs, double xlo, double xhi) const
172{
173 // Check that observable is in dataset, if not no hint is generated
174 RooAbsLValue* lvarg = dynamic_cast<RooAbsLValue*>(_dh.get()->find(obs.GetName())) ;
175 if (!lvarg) {
176 return nullptr ;
177 }
178
179 // Retrieve position of all bin boundaries
180 const RooAbsBinning* binning = lvarg->getBinningPtr(nullptr);
181 double* boundaries = binning->array() ;
182
183 std::list<double>* hint = new std::list<double> ;
184
185 // Construct array with pairs of points positioned epsilon to the left and
186 // right of the bin boundaries
187 for (Int_t i=0 ; i<binning->numBoundaries() ; i++) {
188 if (boundaries[i]>=xlo && boundaries[i]<=xhi) {
189 hint->push_back(boundaries[i]) ;
190 }
191 }
192
193 return hint ;
194}
195
196////////////////////////////////////////////////////////////////////////////////
197/// Advertise that all integrals can be handled internally.
198
200 const RooArgSet* /*normSet*/, const char* /*rangeName*/) const
201{
202 // Simplest scenario, integrate over all dependents
203 std::unique_ptr<RooAbsCollection> allVarsCommon{allVars.selectCommon(_x)};
204 bool intAllObs = (allVarsCommon->size()==_x.size()) ;
205 if (intAllObs && matchArgs(allVars,analVars,_x)) {
206 return 1 ;
207 }
208
209 return 0 ;
210}
211
212////////////////////////////////////////////////////////////////////////////////
213/// Implement analytical integrations by doing appropriate weighting from component integrals
214/// functions to integrators of components
215
216double RooParamHistFunc::analyticalIntegralWN(Int_t code, const RooArgSet* /*normSet2*/,const char* rangeName) const
217{
218 // Supports only the scenario of integration over all dependents
219 R__ASSERT(code==1) ;
220
221 // The logic for summing over the histogram is borrowed from RooHistPdf with some differences:
222 //
223 // - a lambda function is used to inject the parameters for bin scaling into the RooDataHist::sum method
224 //
225 // - for simplicity, there is no check for the possibility of full-range integration with another overload of
226 // RooDataHist::sum
227 std::map<const RooAbsArg*, std::pair<double, double> > ranges;
228 for (const auto obs : _x) {
229 ranges[obs] = RooHelpers::getRangeOrBinningInterval(obs, rangeName);
230 }
231
232 auto getBinScale = [&](int iBin){ return static_cast<const RooAbsReal&>(_p[iBin]).getVal(); };
233
234 RooArgSet sliceSet{};
235 return const_cast<RooDataHist&>(_dh).sum(_x, sliceSet, true, false, ranges, getBinScale);
236}
#define e(i)
Definition RSha256.hxx:103
#define ClassImp(name)
Definition Rtypes.h:377
#define R__ASSERT(e)
Checks condition e and reports a fatal error if it's false.
Definition TError.h:125
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t result
char name[80]
Definition TGX11.cxx:110
char * Form(const char *fmt,...)
Formats a string in a circular formatting buffer.
Definition TString.cxx:2489
Common abstract base class for objects that represent a value and a "shape" in RooFit.
Definition RooAbsArg.h:77
bool addOwnedComponents(const RooAbsCollection &comps)
Take ownership of the contents of 'comps'.
Abstract base class for RooRealVar binning definitions.
virtual Int_t numBoundaries() const =0
virtual double * array() const =0
virtual bool add(const RooAbsArg &var, bool silent=false)
Add the specified argument to list.
Storage_t::size_type size() const
bool selectCommon(const RooAbsCollection &refColl, RooAbsCollection &outColl) const
Create a subset of the current collection, consisting only of those elements that are contained as we...
RooAbsArg * find(const char *name) const
Find object with given name in list.
virtual Int_t numEntries() const
Return number of entries in dataset, i.e., count unweighted entries.
Abstract base class for objects that are lvalues, i.e.
virtual const RooAbsBinning * getBinningPtr(const char *rangeName) const =0
Abstract base class for objects that represent a real value that may appear on the left hand side of ...
void setConstant(bool value=true)
Abstract base class for objects that represent a real value and implements functionality common to al...
Definition RooAbsReal.h:59
double getVal(const RooArgSet *normalisationSet=nullptr) const
Evaluate object.
Definition RooAbsReal.h:103
bool matchArgs(const RooArgSet &allDeps, RooArgSet &numDeps, const RooArgProxy &a) const
Utility function for use in getAnalyticalIntegral().
RooAbsArg * at(Int_t idx) const
Return object at given index, or nullptr if index is out of range.
Definition RooArgList.h:110
RooArgSet is a container object that can hold multiple RooAbsArg objects.
Definition RooArgSet.h:55
bool add(const RooAbsArg &var, bool valueServer, bool shapeServer, bool silent)
Overloaded RooCollection_t::add() method insert object into set and registers object as server to own...
Container class to hold N-dimensional binned data.
Definition RooDataHist.h:39
std::string calculateTreeIndexForCodeSquash(RooAbsArg const *klass, RooFit::Detail::CodeSquashContext &ctx, const RooAbsCollection &coords, bool reverse=false) const
double weight(std::size_t i) const
Return weight of i-th bin.
void weightError(double &lo, double &hi, ErrorType etype=Poisson) const override
Return the asymmetric errors on the current weight.
std::string declWeightArrayForCodeSquash(RooAbsArg const *klass, RooFit::Detail::CodeSquashContext &ctx, bool correctForBinSize) const
double binVolume(std::size_t i) const
Return bin volume of i-th bin.
const RooArgSet * get() const override
Get bin centre of current bin.
Definition RooDataHist.h:76
A class to maintain the context for squashing of RooFit models into code.
void addResult(RooAbsArg const *key, std::string const &value)
A function to save an expression that includes/depends on the result of the input node.
std::string buildArg(RooAbsCollection const &x)
Function to save a RooListProxy as an array in the squashed code.
A histogram function that assigns scale parameters to every bin.
void setActual(Int_t ibin, double newVal)
double evaluate() const override
Evaluate this PDF / function / constant. Needs to be overridden by all derived classes.
double getNominalError(Int_t ibin) const
double getActual(Int_t ibin)
double analyticalIntegralWN(Int_t code, const RooArgSet *normSet, const char *rangeName=nullptr) const override
Implement analytical integrations by doing appropriate weighting from component integrals functions t...
double getNominal(Int_t ibin) const
void translate(RooFit::Detail::CodeSquashContext &ctx) const override
This function defines a translation for each RooAbsReal based object that can be used to express the ...
std::list< double > * plotSamplingHint(RooAbsRealLValue &obs, double xlo, double xhi) const override
Return sampling hint for making curves of (projections) of this function as the recursive division st...
std::list< double > * binBoundaries(RooAbsRealLValue &, double, double) const override
Return sampling hint for making curves of (projections) of this function as the recursive division st...
Int_t getAnalyticalIntegralWN(RooArgSet &allVars, RooArgSet &analVars, const RooArgSet *normSet, const char *rangeName=nullptr) const override
Advertise that all integrals can be handled internally.
Variable that can be changed from the outside.
Definition RooRealVar.h:37
void setVal(double value) override
Set value of variable to 'value'.
void setError(double value)
Definition RooRealVar.h:60
const char * GetName() const override
Returns name of object.
Definition TNamed.h:47
Double_t x[n]
Definition legend1.C:17
std::pair< double, double > getRangeOrBinningInterval(RooAbsArg const *arg, const char *rangeName)
static uint64_t sum(uint64_t i)
Definition Factory.cxx:2345