Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
RooAddition.cxx
Go to the documentation of this file.
1/*****************************************************************************
2 * Project: RooFit *
3 * Package: RooFitCore *
4 * @(#)root/roofitcore:$Id$
5 * Authors: *
6 * WV, Wouter Verkerke, UC Santa Barbara, verkerke@slac.stanford.edu *
7 * DK, David Kirkby, UC Irvine, dkirkby@uci.edu *
8 * *
9 * Copyright (c) 2000-2005, Regents of the University of California *
10 * and Stanford University. All rights reserved. *
11 * *
12 * Redistribution and use in source and binary forms, *
13 * with or without modification, are permitted according to the terms *
14 * listed in LICENSE (http://roofit.sourceforge.net/license.txt) *
15 *****************************************************************************/
16
17/**
18\file RooAddition.cxx
19\class RooAddition
20\ingroup Roofitcore
21
22RooAddition calculates the sum of a set of RooAbsReal terms, or
23when constructed with two sets, it sums the product of the terms
24in the two sets.
25**/
26
27
28#include "Riostream.h"
29#include "RooAddition.h"
30#include "RooRealSumFunc.h"
31#include "RooRealSumPdf.h"
32#include "RooProduct.h"
33#include "RooErrorHandler.h"
34#include "RooArgSet.h"
35#include "RooNameReg.h"
36#include "RooNLLVar.h"
37#include "RooNLLVarNew.h"
38#include "RooChi2Var.h"
39#include "RooMsgService.h"
40#include "RooBatchCompute.h"
41
42#include <algorithm>
43#include <cmath>
44
46
47
48////////////////////////////////////////////////////////////////////////////////
49/// Constructor with a single set consisting of RooAbsReal.
50/// \param[in] name Name of the PDF
51/// \param[in] title Title
52/// \param[in] sumSet The value of the function will be the sum of the values in this set
53/// \param[in] takeOwnership If true, the RooAddition object will take ownership of the arguments in `sumSet`
54
55RooAddition::RooAddition(const char* name, const char* title, const RooArgList& sumSet
56#ifndef ROOFIT_MEMORY_SAFE_INTERFACES
57 , bool takeOwnership
58#endif
59 )
60 : RooAbsReal(name, title)
61 , _set("!set","set of components",this)
62 , _cacheMgr(this,10)
63{
64 for (RooAbsArg *comp : sumSet) {
65 if (!dynamic_cast<RooAbsReal*>(comp)) {
66 coutE(InputArguments) << "RooAddition::ctor(" << GetName() << ") ERROR: component " << comp->GetName()
67 << " is not of type RooAbsReal" << std::endl;
69 }
70 _set.add(*comp) ;
71#ifndef ROOFIT_MEMORY_SAFE_INTERFACES
72 if (takeOwnership) _ownedList.addOwned(std::unique_ptr<RooAbsArg>{comp});
73#endif
74 }
75
76}
77
78
79
80////////////////////////////////////////////////////////////////////////////////
81/// Constructor with two sets of RooAbsReals.
82///
83/// The sum of pair-wise products of elements in the sets will be computed:
84/// \f[
85/// A = \sum_i \mathrm{Set1}[i] * \mathrm{Set2}[i]
86/// \f]
87///
88/// \param[in] name Name of the PDF
89/// \param[in] title Title
90/// \param[in] sumSet1 Left-hand element of the pair-wise products
91/// \param[in] sumSet2 Right-hand element of the pair-wise products
92/// \param[in] takeOwnership If true, the RooAddition object will take ownership of the arguments in the `sumSets`
93///
94RooAddition::RooAddition(const char* name, const char* title, const RooArgList& sumSet1, const RooArgList& sumSet2
95#ifndef ROOFIT_MEMORY_SAFE_INTERFACES
96 , bool takeOwnership
97#endif
98 )
99 : RooAbsReal(name, title)
100 , _set("!set","set of components",this)
101 , _cacheMgr(this,10)
102{
103 if (sumSet1.getSize() != sumSet2.getSize()) {
104 coutE(InputArguments) << "RooAddition::ctor(" << GetName() << ") ERROR: input lists should be of equal length" << std::endl;
106 }
107
108 for (unsigned int i = 0; i < sumSet1.size(); ++i) {
109 const auto comp1 = &sumSet1[i];
110 const auto comp2 = &sumSet2[i];
111
112 if (!dynamic_cast<RooAbsReal*>(comp1)) {
113 coutE(InputArguments) << "RooAddition::ctor(" << GetName() << ") ERROR: component " << comp1->GetName()
114 << " in first list is not of type RooAbsReal" << std::endl;
116 }
117
118 if (!dynamic_cast<RooAbsReal*>(comp2)) {
119 coutE(InputArguments) << "RooAddition::ctor(" << GetName() << ") ERROR: component " << comp2->GetName()
120 << " in first list is not of type RooAbsReal" << std::endl;
122 }
123 TString _name(name);
124 _name.Append( "_[");
125 _name.Append(comp1->GetName());
126 _name.Append( "_x_");
127 _name.Append(comp2->GetName());
128 _name.Append( "]");
129 auto prod = std::make_unique<RooProduct>( _name, _name , RooArgSet(*comp1, *comp2));
130 _set.add(*prod);
131 _ownedList.addOwned(std::move(prod));
132#ifndef ROOFIT_MEMORY_SAFE_INTERFACES
133 if (takeOwnership) {
134 _ownedList.addOwned(std::unique_ptr<RooAbsArg>{comp1});
135 _ownedList.addOwned(std::unique_ptr<RooAbsArg>{comp2});
136 }
137#endif
138 }
139}
140
141
142
143////////////////////////////////////////////////////////////////////////////////
144/// Copy constructor
145
146RooAddition::RooAddition(const RooAddition& other, const char* name)
147 : RooAbsReal(other, name)
148 , _set("!set",this,other._set)
149 , _cacheMgr(other._cacheMgr,this)
150{
151 // Member _ownedList is intentionally not copy-constructed -- ownership is not transferred
152}
153
154////////////////////////////////////////////////////////////////////////////////
155/// Calculate and return current value of self
156
158{
159 double sum(0);
160 const RooArgSet* nset = _set.nset() ;
161
162 for (auto* comp : static_range_cast<RooAbsReal*>(_set)) {
163 const double tmp = comp->getVal(nset);
164 sum += tmp ;
165 }
166 return sum ;
167}
168
169
170////////////////////////////////////////////////////////////////////////////////
171/// Compute addition of PDFs in batches.
172void RooAddition::computeBatch(cudaStream_t* stream, double* output, size_t nEvents, RooFit::Detail::DataMap const& dataMap) const
173{
176 pdfs.reserve(_set.size());
177 coefs.reserve(_set.size());
178 for (const auto arg : _set)
179 {
180 pdfs.push_back(dataMap.at(arg));
181 coefs.push_back(1.0);
182 }
184 dispatch->compute(stream, RooBatchCompute::AddPdf, output, nEvents, pdfs, coefs);
185}
186
187
188////////////////////////////////////////////////////////////////////////////////
189/// Return the default error level for MINUIT error analysis
190/// If the addition contains one or more RooNLLVars and
191/// no RooChi2Vars, return the defaultErrorLevel() of
192/// RooNLLVar. If the addition contains one ore more RooChi2Vars
193/// and no RooNLLVars, return the defaultErrorLevel() of
194/// RooChi2Var. If the addition contains neither or both
195/// issue a warning message and return a value of 1
196
198{
199 RooAbsReal* nllArg(0) ;
200 RooAbsReal* chi2Arg(0) ;
201
202 std::unique_ptr<RooArgSet> comps{getComponents()};
203 for(RooAbsArg * arg : *comps) {
204 if (dynamic_cast<RooNLLVar*>(arg) || dynamic_cast<ROOT::Experimental::RooNLLVarNew*>(arg)) {
205 nllArg = (RooAbsReal*)arg ;
206 }
207 if (dynamic_cast<RooChi2Var*>(arg)) {
208 chi2Arg = (RooAbsReal*)arg ;
209 }
210 }
211
212 if (nllArg && !chi2Arg) {
213 coutI(Fitting) << "RooAddition::defaultErrorLevel(" << GetName()
214 << ") Summation contains a RooNLLVar, using its error level" << std::endl;
215 return nllArg->defaultErrorLevel() ;
216 } else if (chi2Arg && !nllArg) {
217 coutI(Fitting) << "RooAddition::defaultErrorLevel(" << GetName()
218 << ") Summation contains a RooChi2Var, using its error level" << std::endl;
219 return chi2Arg->defaultErrorLevel() ;
220 } else if (!nllArg && !chi2Arg) {
221 coutI(Fitting) << "RooAddition::defaultErrorLevel(" << GetName() << ") WARNING: "
222 << "Summation contains neither RooNLLVar nor RooChi2Var server, using default level of 1.0" << std::endl;
223 } else {
224 coutI(Fitting) << "RooAddition::defaultErrorLevel(" << GetName() << ") WARNING: "
225 << "Summation contains BOTH RooNLLVar and RooChi2Var server, using default level of 1.0" << std::endl;
226 }
227
228 return 1.0 ;
229}
230
231
232
233////////////////////////////////////////////////////////////////////////////////
234
236{
237 for (const auto arg : _set) {
238 static_cast<RooAbsReal*>(arg)->setData(data,cloneData) ;
239 }
240 return true ;
241}
242
243
244
245////////////////////////////////////////////////////////////////////////////////
246
247void RooAddition::printMetaArgs(std::ostream& os) const
248{
249 // We can use the implementation of RooRealSumPdf with an empy coefficient list.
250 static const RooArgList coefs{};
252}
253
254////////////////////////////////////////////////////////////////////////////////
255
256Int_t RooAddition::getAnalyticalIntegral(RooArgSet& allVars, RooArgSet& analVars, const char* rangeName) const
257{
258 // we always do things ourselves -- actually, always delegate further down the line ;-)
259 analVars.add(allVars);
260
261 // check if we already have integrals for this combination of factors
262 Int_t sterileIndex(-1);
263 CacheElem* cache = (CacheElem*) _cacheMgr.getObj(&analVars,&analVars,&sterileIndex,RooNameReg::ptr(rangeName));
264 if (cache!=0) {
265 Int_t code = _cacheMgr.lastIndex();
266 return code+1;
267 }
268
269 // we don't, so we make it right here....
270 cache = new CacheElem;
271 for (auto *arg : static_range_cast<RooAbsReal const*>(_set)) {// checked in c'tor that this will work...
272 cache->_I.addOwned(std::unique_ptr<RooAbsReal>{arg->createIntegral(analVars,rangeName)});
273 }
274
275 Int_t code = _cacheMgr.setObj(&analVars,&analVars,(RooAbsCacheElement*)cache,RooNameReg::ptr(rangeName));
276 return 1+code;
277}
278
279////////////////////////////////////////////////////////////////////////////////
280/// Calculate integral internally from appropriate integral cache
281
282double RooAddition::analyticalIntegral(Int_t code, const char* rangeName) const
283{
284 // note: rangeName implicit encoded in code: see _cacheMgr.setObj in getPartIntList...
285 CacheElem *cache = (CacheElem*) _cacheMgr.getObjByIndex(code-1);
286 if (cache==0) {
287 // cache got sterilized, trigger repopulation of this slot, then try again...
288 std::unique_ptr<RooArgSet> vars( getParameters(RooArgSet()) );
289 RooArgSet iset = _cacheMgr.selectFromSet2(*vars, code-1);
290 RooArgSet dummy;
291 Int_t code2 = getAnalyticalIntegral(iset,dummy,rangeName);
292 assert(code==code2); // must have revived the right (sterilized) slot...
293 return analyticalIntegral(code2,rangeName);
294 }
295 assert(cache!=0);
296
297 // loop over cache, and sum...
298 double result(0);
299 for (auto I : cache->_I) {
300 result += static_cast<const RooAbsReal*>(I)->getVal();
301 }
302 return result;
303
304}
305
306
307////////////////////////////////////////////////////////////////////////////////
308
309std::list<double>* RooAddition::binBoundaries(RooAbsRealLValue& obs, double xlo, double xhi) const
310{
311 return RooRealSumPdf::binBoundaries(_set, obs, xlo, xhi);
312}
313
314
316{
318}
319
320
321////////////////////////////////////////////////////////////////////////////////
322
323std::list<double>* RooAddition::plotSamplingHint(RooAbsRealLValue& obs, double xlo, double xhi) const
324{
325 return RooRealSumPdf::plotSamplingHint(_set, obs, xlo, xhi);
326}
#define coutI(a)
#define coutE(a)
#define ClassImp(name)
Definition Rtypes.h:377
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void data
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
RooAbsArg is the common abstract base class for objects that represent a value and a "shape" in RooFi...
Definition RooAbsArg.h:74
RooFit::OwningPtr< RooArgSet > getParameters(const RooAbsData *data, bool stripDisconnected=true) const
Create a list of leaf nodes in the arg tree starting with ourself as top node that don't match any of...
RooFit::OwningPtr< RooArgSet > getComponents() const
Create a RooArgSet with all components (branch nodes) of the expression tree headed by this object.
RooAbsCacheElement is the abstract base class for objects to be stored in RooAbsCache cache manager o...
Int_t getSize() const
Return the number of elements in the collection.
const char * GetName() const override
Returns name of object.
virtual bool add(const RooAbsArg &var, bool silent=false)
Add the specified argument to list.
Storage_t::size_type size() const
virtual bool addOwned(RooAbsArg &var, bool silent=false)
Add an argument and transfer the ownership to the collection.
RooAbsData is the common abstract base class for binned and unbinned datasets.
Definition RooAbsData.h:59
const RooArgSet * nset() const
Definition RooAbsProxy.h:52
RooAbsRealLValue is the common abstract base class for objects that represent a real value that may a...
RooAbsReal is the common abstract base class for objects that represent a real value and implements f...
Definition RooAbsReal.h:62
double getVal(const RooArgSet *normalisationSet=nullptr) const
Evaluate object.
Definition RooAbsReal.h:91
virtual double defaultErrorLevel() const
Definition RooAbsReal.h:253
RooAddition calculates the sum of a set of RooAbsReal terms, or when constructed with two sets,...
Definition RooAddition.h:27
RooArgList _ownedList
List of owned components.
Definition RooAddition.h:69
Int_t getAnalyticalIntegral(RooArgSet &allVars, RooArgSet &numVars, const char *rangeName=nullptr) const override
Interface function getAnalyticalIntergral advertises the analytical integrals that are supported.
void computeBatch(cudaStream_t *, double *output, size_t nEvents, RooFit::Detail::DataMap const &) const override
Compute addition of PDFs in batches.
std::list< double > * binBoundaries(RooAbsRealLValue &, double, double) const override
Retrieve bin boundaries if this distribution is binned in obs.
RooListProxy _set
set of terms to be summed
Definition RooAddition.h:70
void printMetaArgs(std::ostream &os) const override
bool setData(RooAbsData &data, bool cloneData=true) override
double analyticalIntegral(Int_t code, const char *rangeName=nullptr) const override
Calculate integral internally from appropriate integral cache.
RooObjCacheManager _cacheMgr
! The cache manager
Definition RooAddition.h:78
double defaultErrorLevel() const override
Return the default error level for MINUIT error analysis If the addition contains one or more RooNLLV...
double evaluate() const override
Calculate and return current value of self.
std::list< double > * plotSamplingHint(RooAbsRealLValue &, double, double) const override
Interface for returning an optional hint for initial sampling points when constructing a curve projec...
bool isBinnedDistribution(const RooArgSet &obs) const override
Tests if the distribution is binned. Unless overridden by derived classes, this always returns false.
RooArgList is a container object that can hold multiple RooAbsArg objects.
Definition RooArgList.h:22
RooArgSet is a container object that can hold multiple RooAbsArg objects.
Definition RooArgSet.h:55
virtual void compute(cudaStream_t *, Computer, RestrictArr, size_t, const VarVector &, ArgVector &)=0
Int_t setObj(const RooArgSet *nset, T *obj, const TNamed *isetRangeName=nullptr)
Setter function without integration set.
T * getObjByIndex(Int_t index) const
Retrieve payload object by slot index.
RooArgSet selectFromSet2(RooArgSet const &argSet, int index) const
Create RooArgSet contatining the objects that are both in the cached set 2.
Int_t lastIndex() const
Return index of slot used in last get or set operation.
T * getObj(const RooArgSet *nset, Int_t *sterileIndex=nullptr, const TNamed *isetRangeName=nullptr)
Getter function without integration set.
RooChi2Var implements a simple calculation from a binned dataset and a PDF.
Definition RooChi2Var.h:25
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...
static void softAbort()
Soft abort function that interrupts macro execution but doesn't kill ROOT.
RooSpan< const double > at(RooAbsArg const *arg, RooAbsArg const *caller=nullptr)
Definition DataMap.cxx:21
Class RooNLLVar implements a -log(likelihood) calculation from a dataset and a PDF.
Definition RooNLLVar.h:30
static const TNamed * ptr(const char *stringPtr)
Return a unique TNamed pointer for given C++ string.
std::list< double > * plotSamplingHint(RooAbsRealLValue &, double, double) const override
Interface for returning an optional hint for initial sampling points when constructing a curve projec...
std::list< double > * binBoundaries(RooAbsRealLValue &, double, double) const override
Retrieve bin boundaries if this distribution is binned in obs.
void printMetaArgs(std::ostream &os) const override
Customized printing of arguments of a RooRealSumPdf to more intuitively reflect the contents of the p...
bool isBinnedDistribution(const RooArgSet &obs) const override
Check if all components that depend on obs are binned.
const char * GetName() const override
Returns name of object.
Definition TNamed.h:47
Basic string class.
Definition TString.h:139
TString & Append(const char *cs)
Definition TString.h:576
#define I(x, y, z)
std::vector< RooSpan< const double > > VarVector
R__EXTERN RooBatchComputeInterface * dispatchCUDA
R__EXTERN RooBatchComputeInterface * dispatchCPU
This dispatch pointer points to an implementation of the compute library, provided one has been loade...
std::vector< double > ArgVector
static uint64_t sum(uint64_t i)
Definition Factory.cxx:2345
static void output()