99 _refCoefNorm(
"!refCoefNorm",
"Reference coefficient normalization set",this,
kFALSE,
kFALSE),
100 _refCoefRangeName(0),
116 _refCoefNorm(
"!refCoefNorm",
"Reference coefficient normalization set",this,
kFALSE,
kFALSE),
117 _refCoefRangeName(0),
119 _projCacheMgr(this,10),
121 _pdfList(
"!pdfs",
"List of PDFs",this),
122 _coefList(
"!coefficients",
"List of coefficients",this),
140 _refCoefNorm(
"!refCoefNorm",
"Reference coefficient normalization set",this,
kFALSE,
kFALSE),
141 _refCoefRangeName(0),
143 _projCacheMgr(this,10),
145 _pdfList(
"!pdfs",
"List of PDFs",this),
146 _coefList(
"!coefficients",
"List of coefficients",this),
175 _refCoefNorm(
"!refCoefNorm",
"Reference coefficient normalization set",this,
kFALSE,
kFALSE),
176 _refCoefRangeName(0),
178 _projCacheMgr(this,10),
180 _pdfList(
"!pdfs",
"List of PDFs",this),
181 _coefList(
"!coefficients",
"List of coefficients",this),
188 <<
") number of pdfs and coefficients inconsistent, must have Npdf=Ncoef or Npdf=Ncoef+1" << endl ;
192 if (recursiveFractions && inPdfList.
getSize()!=inCoefList.
getSize()+1) {
194 <<
") WARNING inconsistent input: recursive fractions options can only be used if Npdf=Ncoef+1, ignoring recursive fraction setting" << endl ;
202 for (
auto i = 0u; i < inCoefList.
size(); ++i) {
203 auto coef =
dynamic_cast<RooAbsReal*
>(inCoefList.
at(i));
204 auto pdf =
dynamic_cast<RooAbsPdf*
>(inPdfList.
at(i));
205 if (inPdfList.
at(i) ==
nullptr) {
207 <<
") number of pdfs and coefficients inconsistent, must have Npdf=Ncoef or Npdf=Ncoef+1" << endl ;
211 coutE(
InputArguments) <<
"RooAddPdf::RooAddPdf(" <<
GetName() <<
") coefficient " << (coef ? coef->GetName() :
"") <<
" is not of type RooAbsReal, ignored" << endl ;
215 coutE(
InputArguments) <<
"RooAddPdf::RooAddPdf(" <<
GetName() <<
") pdf " << (pdf ? pdf->GetName() :
"") <<
" is not of type RooAbsPdf, ignored" << endl ;
221 if (recursiveFractions) {
222 partinCoefList.
add(*coef) ;
243 if (inPdfList.
size() == inCoefList.
size() + 1) {
247 coutF(
InputArguments) <<
"RooAddPdf::RooAddPdf(" <<
GetName() <<
") last pdf " << pdf->GetName() <<
" is not of type RooAbsPdf, fatal error" << endl ;
248 throw std::invalid_argument(
"Last argument for RooAddPdf is not a PDF.");
253 if (recursiveFractions) {
287 _refCoefNorm(
"!refCoefNorm",
"Reference coefficient normalization set",this,
kFALSE,
kFALSE),
288 _refCoefRangeName(0),
290 _projCacheMgr(this,10),
291 _pdfList(
"!pdfs",
"List of PDFs",this),
292 _coefList(
"!coefficients",
"List of coefficients",this),
294 _allExtendable(
kTRUE),
298 for (
const auto pdfArg : inPdfList) {
299 auto pdf =
dynamic_cast<const RooAbsPdf*
>(pdfArg);
302 coutE(
InputArguments) <<
"RooAddPdf::RooAddPdf(" <<
GetName() <<
") pdf " << (pdf ? pdf->GetName() :
"") <<
" is not of type RooAbsPdf, ignored" << endl ;
305 if (!pdf->canBeExtended()) {
306 coutE(
InputArguments) <<
"RooAddPdf::RooAddPdf(" <<
GetName() <<
") pdf " << pdf->GetName() <<
" is not extendable, ignored" << endl ;
325 _refCoefNorm(
"!refCoefNorm",this,other._refCoefNorm),
326 _refCoefRangeName((
TNamed*)other._refCoefRangeName),
327 _projectCoefs(other._projectCoefs),
328 _projCacheMgr(other._projCacheMgr,this),
329 _codeReg(other._codeReg),
330 _pdfList(
"!pdfs",this,other._pdfList),
331 _coefList(
"!coefficients",this,other._coefList),
332 _haveLastCoef(other._haveLastCoef),
333 _allExtendable(other._allExtendable),
334 _recursive(other._recursive)
365 if (refCoefNorm.
getSize()==0) {
438 RooArgSet* pdfDeps = pdf->getObservables(nset) ;
445 RooArgSet* coefDeps = coef ? coef->getObservables(nset) : 0 ;
454 name.Append(pdf->GetName()) ;
455 name.Append(
"_SupNorm") ;
459 cxcoutD(
Caching) <<
"RooAddPdf " <<
GetName() <<
" making supplemental normalization set " << supNSet <<
" for pdf component " << pdf->
GetName() << endl ;
462 snorm =
new RooRealVar(
name,
"Unit Supplemental normalization integral",1.0) ;
470 cxcoutD(
Caching) <<
"RooAddPdf::syncSuppNormList(" <<
GetName() <<
") synching supplemental normalization list for norm" << (nset?*nset:
RooArgSet()) << endl ;
510 cxcoutD(
Caching) <<
"ALEX: RooAddPdf::syncCoefProjList(" <<
GetName() <<
") projecting coefficients from "
511 << *nset2 << (rangeName?
":":
"") << (rangeName?rangeName:
"")
516 auto thePdf =
static_cast<const RooAbsPdf*
>(arg);
527 name.Append(thePdf->GetName()) ;
528 name.Append(
"_ProjectNorm") ;
529 pdfProj =
new RooRealVar(
name,
"Unit Projection normalization integral",1.0) ;
545 name.Append(thePdf->GetName()) ;
546 name.Append(
"_ProjSupNorm") ;
551 snorm =
new RooRealVar(
name,
"Unit Projection Supplemental normalization integral",1.0) ;
598 theName.
Append(thePdf->GetName()) ;
599 theName.
Append(
"_RangeNorm1") ;
600 rangeProj1 =
new RooRealVar(theName,
"Unit range normalization integral",1.0) ;
609 cxcoutD(
Caching) <<
"RooAddPdf::syncCoefProjList(" <<
GetName() <<
") rangename = " << (rangeName?rangeName:
"<null>")
610 <<
" nset = " << (nset?*nset:
RooArgSet()) << endl ;
626 theName.
Append(thePdf->GetName()) ;
627 theName.
Append(
"_RangeNorm2") ;
628 rangeProj2 =
new RooRealVar(theName,
"Unit range normalization integral",1.0) ;
655 auto& myCoefCache =
const_cast<std::vector<double>&
>(
_coefCache);
667 coefSum += myCoefCache[i] ;
672 coutW(
Eval) <<
"RooAddPdf::updateCoefCache(" <<
GetName() <<
") WARNING: total number of expected events is 0" << endl ;
675 myCoefCache[j] /= coefSum ;
686 auto coef =
static_cast<RooAbsReal*
>(coefArg);
687 myCoefCache[i] = coef->
getVal(nset) ;
688 coefSum += myCoefCache[i++];
691 coutW(
Eval) <<
"RooAddPdf::updateCoefCache(" <<
GetName() <<
") WARNING: sum of coefficients is zero 0" << endl ;
694 myCoefCache[j] /= coefSum;
703 auto coef =
static_cast<RooAbsReal*
>(coefArg);
704 myCoefCache[i] = coef->
getVal(nset) ;
706 lastCoef -= myCoefCache[i++];
715 <<
" WARNING: sum of PDF coefficients not in range [0-1], value="
718 coutW(
Eval) <<
" (no more will be printed)" ;
762 myCoefCache[i] *= proj ;
763 coefSum += myCoefCache[i] ;
770 ccoutD(
Caching) <<
" ALEX: POST-SYNC coef[" << i <<
"] = " << myCoefCache[i]
771 <<
" ( _coefCache[i]/coefSum = " << myCoefCache[i]*coefSum <<
"/" << coefSum <<
" ) "<< endl ;
776 coutE(
Eval) <<
"RooAddPdf::updateCoefCache(" <<
GetName() <<
") sum of coefficients is zero." << endl ;
780 myCoefCache[i] /= coefSum ;
791 if (nset==0 || nset->
getSize()==0) {
800 return {nset, cache};
819 double snormVal = 1.;
825 if (pdf.isSelectedComp()) {
846 const std::size_t
n =
output.size();
849 for (
unsigned int pdfNo = 0; pdfNo <
_pdfList.
size(); ++pdfNo) {
851 auto pdfOutputs = pdf.
getValBatch(begin, batchSize, nset);
852 assert(pdfOutputs.size() ==
output.size());
858 if (pdf.isSelectedComp()) {
859 for (std::size_t i = 0; i <
n; ++i) {
860 output[i] += pdfOutputs[i] * coef;
892 for (
int i = 0; i <
end; ++i) {
895 if (pdf->observableOverlaps(nset,*coef)) {
897 <<
" and PDF " << pdf->GetName() <<
" have one or more dependents in common" << endl ;
917 const RooArgSet* normSet,
const char* rangeName)
const
927 for (
const auto pdfArg :
_pdfList) {
928 auto pdf =
static_cast<const RooAbsPdf *
>(pdfArg);
930 pdf->getAnalyticalIntegralWN(allVars,subAnalVars,normSet,rangeName) ;
933 for (
const auto arg : allVars) {
934 if (!subAnalVars.
find(arg->GetName()) && pdf->
dependsOn(*arg)) {
942 if (allAnalVars.
getSize()==0) {
952 auto pdf =
static_cast<const RooAbsPdf *
>(arg);
954 RooArgSet* allAnalVars2 = pdf->getObservables(allAnalVars) ;
955 subCode[
n] = pdf->getAnalyticalIntegralWN(*allAnalVars2,subAnalVars,normSet,rangeName) ;
956 if (subCode[
n]==0 && allAnalVars2->
getSize()>0) {
958 <<
" advertises inconsistent set of integrals (e.g. (X,Y) but not X or Y individually."
959 <<
" Distributed analytical integration disabled. Please fix PDF" << endl ;
962 delete allAnalVars2 ;
970 analVars.
add(allAnalVars) ;
994 if (subCode.empty()) {
995 coutE(
InputArguments) <<
"RooAddPdf::analyticalIntegral(" <<
GetName() <<
"): ERROR unrecognized integration code, " << code << endl ;
1024 Double_t val = pdf->analyticalIntegralWN(subCode[i],normSet,rangeName) ;
1025 if (pdf->isSelectedComp()) {
1095 expectedTotal += ncomp ;
1101 return expectedTotal ;
1177 list<Double_t>* sumHint = 0 ;
1182 auto pdf =
static_cast<const RooAbsPdf*
>(arg);
1195 list<Double_t>* newSumHint =
new list<Double_t>(sumHint->size()+pdfHint->size()) ;
1198 merge(pdfHint->begin(),pdfHint->end(),sumHint->begin(),sumHint->end(),newSumHint->begin()) ;
1202 sumHint = newSumHint ;
1209 list<Double_t>::iterator new_end = unique(sumHint->begin(),sumHint->end()) ;
1210 sumHint->erase(new_end,sumHint->end()) ;
1222 list<Double_t>* sumBinB = 0 ;
1227 auto pdf =
static_cast<const RooAbsPdf *
>(arg);
1239 list<Double_t>* newSumBinB =
new list<Double_t>(sumBinB->size()+pdfBinB->size()) ;
1242 merge(pdfBinB->begin(),pdfBinB->end(),sumBinB->begin(),sumBinB->end(),newSumBinB->begin()) ;
1247 sumBinB = newSumBinB ;
1255 list<Double_t>::iterator new_end = unique(sumBinB->begin(),sumBinB->end()) ;
1256 sumBinB->erase(new_end,sumBinB->end()) ;
1269 auto pdf =
static_cast<const RooAbsPdf*
>(arg);
1270 if (pdf->dependsOn(obs) && !pdf->isBinnedDistribution(obs)) {
1286 while ((aarg=aiter.
next())) {
1288 trackNodes.
add(*aarg) ;
1317 os <<
"[%] * " << pdf->
GetName();
1328 os << pdf->GetName() ;
char * Form(const char *fmt,...)
RooSpan< double > makeWritableBatchInit(std::size_t begin, std::size_t batchSize, double value)
Make a batch and return a span pointing to the pdf-local memory.
const std::vector< Int_t > & retrieve(Int_t masterCode) const
Retrieve the array of integer codes associated with the given master code.
Int_t store(const std::vector< Int_t > &codeList, RooArgSet *set1=0, RooArgSet *set2=0, RooArgSet *set3=0, RooArgSet *set4=0)
Store given arrays of integer codes, and up to four RooArgSets in the registry (each setX pointer may...
RooAbsArg is the common abstract base class for objects that represent a value (of arbitrary type) an...
RooArgSet * getObservables(const RooArgSet &set, Bool_t valueOnly=kTRUE) const
Return the observables of this pdf given a set of observables.
Bool_t dependsOn(const RooAbsCollection &serverList, const RooAbsArg *ignoreArg=0, Bool_t valueOnly=kFALSE) const
Test whether we depend on (ie, are served by) any object in the specified collection.
virtual CacheMode canNodeBeCached() const
TIterator end() or range-based loops.")
void setOperMode(OperMode mode, Bool_t recurseADirty=kTRUE)
Change cache operation mode to given mode.
Bool_t addOwnedComponents(const RooArgSet &comps)
Take ownership of the contents of 'comps'.
OperMode operMode() const
RooFIter fwdIterator() const R__SUGGEST_ALTERNATIVE("begin()
One-time forward iterator.
virtual Bool_t addOwned(RooAbsArg &var, Bool_t silent=kFALSE)
Add the specified argument to list.
virtual Bool_t add(const RooAbsArg &var, Bool_t silent=kFALSE)
Add the specified argument to list.
Storage_t::size_type size() const
RooAbsArg * first() const
virtual void Print(Option_t *options=0) const
This method must be overridden when a class wants to print itself.
Bool_t equals(const RooAbsCollection &otherColl) const
Check if this and other collection have identically-named contents.
const char * GetName() const
Returns name of object.
TIterator * createIterator(Bool_t dir=kIterForward) const R__SUGGEST_ALTERNATIVE("begin()
TIterator-style iteration over contained elements.
virtual Bool_t remove(const RooAbsArg &var, Bool_t silent=kFALSE, Bool_t matchByNameOnly=kFALSE)
Remove the specified argument from our list.
RooAbsArg * find(const char *name) const
Find object with given name in list.
RooAbsGenContext is the abstract base class for generator contexts of RooAbsPdf objects.
virtual void resetErrorCounters(Int_t resetValue=10)
Reset error counter to given value, limiting the number of future error messages for this pdf to 'res...
TString _normRange
MC generator configuration specific for this object.
virtual RooSpan< const double > getValBatch(std::size_t begin, std::size_t batchSize, const RooArgSet *normSet=nullptr) const
Compute batch of values for given range, and normalise by integrating over the observables in nset.
friend class RooRealIntegral
virtual Double_t expectedEvents(const RooArgSet *nset) const
Return expected number of events from this p.d.f for use in extended likelihood calculations.
RooArgSet * _normSet
Normalization integral (owned by _normMgr)
static Int_t _verboseEval
RooAbsRealLValue is the common abstract base class for objects that represent a real value that may a...
virtual Double_t getMax(const char *name=0) const
Get maximum of currently defined range.
virtual Double_t getMin(const char *name=0) const
Get miniminum of currently defined range.
RooAbsReal is the common abstract base class for objects that represent a real value and implements f...
virtual std::list< Double_t > * plotSamplingHint(RooAbsRealLValue &, Double_t, Double_t) const
virtual std::list< Double_t > * binBoundaries(RooAbsRealLValue &, Double_t, Double_t) const
Double_t getVal(const RooArgSet *normalisationSet=nullptr) const
Evaluate object.
RooAbsReal * createIntegral(const RooArgSet &iset, const RooCmdArg &arg1, const RooCmdArg &arg2=RooCmdArg::none(), const RooCmdArg &arg3=RooCmdArg::none(), const RooCmdArg &arg4=RooCmdArg::none(), const RooCmdArg &arg5=RooCmdArg::none(), const RooCmdArg &arg6=RooCmdArg::none(), const RooCmdArg &arg7=RooCmdArg::none(), const RooCmdArg &arg8=RooCmdArg::none()) const
Create an object that represents the integral of the function over one or more observables listed in ...
BatchHelpers::BatchData _batchData
Transient cache with transformed values of coefficients.
virtual RooArgList containedArgs(Action)
List all RooAbsArg derived contents in this cache element.
RooArgList _rangeProjList
RooArgList _refRangeProjList
RooAddPdf is an efficient implementation of a sum of PDFs of the form.
virtual void resetErrorCounters(Int_t resetValue=10)
Reset error counter to given value, limiting the number of future error messages for this pdf to 'res...
friend class RooAddGenContext
virtual void setCacheAndTrackHints(RooArgSet &)
Label OK'ed components of a RooAddPdf with cache-and-track.
virtual Double_t expectedEvents(const RooArgSet *nset) const
Return the number of expected events, which is either the sum of all coefficients or the sum of the c...
Bool_t isBinnedDistribution(const RooArgSet &obs) const
If all components that depend on obs are binned that so is the product.
virtual RooSpan< double > evaluateBatch(std::size_t begin, std::size_t batchSize) const
Compute addition of PDFs in batches.
virtual void selectNormalizationRange(const char *rangeName=0, Bool_t force=kFALSE)
Interface function used by test statistics to freeze choice of range for interpretation of fraction c...
Double_t evaluate() const
Calculate and return the current value.
void updateCoefficients(CacheElem &cache, const RooArgSet *nset) const
Update the coefficient values in the given cache element: calculate new remainder fraction,...
virtual ~RooAddPdf()
Destructor.
CacheElem * getProjCache(const RooArgSet *nset, const RooArgSet *iset=0, const char *rangeName=0) const
Retrieve cache element for the computation of the PDF normalisation.
std::pair< const RooArgSet *, CacheElem * > getNormAndCache() const
Coefficient error counter.
RooObjCacheManager _projCacheMgr
void printMetaArgs(std::ostream &os) const
Customized printing of arguments of a RooAddPdf to more intuitively reflect the contents of the produ...
RooAddPdf()
Default constructor used for persistence.
virtual std::list< Double_t > * plotSamplingHint(RooAbsRealLValue &obs, Double_t xlo, Double_t xhi) const
Loop over components for plot sampling hints and merge them if there are multiple.
virtual std::list< Double_t > * binBoundaries(RooAbsRealLValue &, Double_t, Double_t) const
Loop over components for plot sampling hints and merge them if there are multiple.
void fixCoefNormalization(const RooArgSet &refCoefNorm)
By default the interpretation of the fraction coefficients is performed in the contextual choice of o...
virtual RooAbsGenContext * genContext(const RooArgSet &vars, const RooDataSet *prototype=0, const RooArgSet *auxProto=0, Bool_t verbose=kFALSE) const
Return specialized context to efficiently generate toy events from RooAddPdfs return RooAbsPdf::genCo...
Double_t analyticalIntegralWN(Int_t code, const RooArgSet *normSet, const char *rangeName=0) const
Return analytical integral defined by given scenario code.
virtual void selectNormalization(const RooArgSet *depSet=0, Bool_t force=kFALSE)
Interface function used by test statistics to freeze choice of observables for interpretation of frac...
void fixCoefRange(const char *rangeName)
By default, fraction coefficients are assumed to refer to the default fit range.
RooListProxy _pdfList
Registry of component analytical integration codes.
TNamed * _refCoefRangeName
const RooArgList & pdfList() const
Int_t getAnalyticalIntegralWN(RooArgSet &allVars, RooArgSet &numVars, const RooArgSet *normSet, const char *rangeName=0) const
Determine which part (if any) of given integral can be performed analytically.
std::vector< double > _coefCache
Bool_t _haveLastCoef
List of supplemental normalization factors.
virtual Bool_t checkObservables(const RooArgSet *nset) const
Check if PDF is valid for given normalization set.
RooArgList is a container object that can hold multiple RooAbsArg objects.
RooAbsArg * at(Int_t idx) const
Return object at given index, or nullptr if index is out of range.
RooArgSet is a container object that can hold multiple RooAbsArg objects.
virtual Bool_t add(const RooAbsCollection &col, Bool_t silent=kFALSE)
Add a collection of arguments to this collection by calling add() for each element in the source coll...
T * getObj(const RooArgSet *nset, Int_t *sterileIndex=0, const TNamed *isetRangeName=0)
void reset()
Clear the cache.
Int_t setObj(const RooArgSet *nset, T *obj, const TNamed *isetRangeName=0)
RooDataSet is a container class to hold unbinned data.
A one-time forward iterator working on RooLinkedList or RooAbsCollection.
RooAbsArg * next()
Return next element or nullptr if at end.
virtual Bool_t add(const RooAbsArg &var, Bool_t silent=kFALSE)
Reimplementation of standard RooArgList::add()
static RooMsgService & instance()
Return reference to singleton instance.
Bool_t isActive(const RooAbsArg *self, RooFit::MsgTopic facility, RooFit::MsgLevel level)
Check if logging is active for given object/topic/RooFit::MsgLevel combination.
static const char * str(const TNamed *ptr)
Return C++ string corresponding to given TNamed pointer.
static const TNamed * ptr(const char *stringPtr)
Return a unique TNamed pointer for given C++ string.
static RooConstVar & value(Double_t value)
Return a constant value object with given value.
RooRealVar represents a variable that can be changed from the outside.
Class RooRecursiveFraction is a RooAbsReal implementation that calculates the plain fraction of sum o...
virtual Bool_t add(const RooAbsArg &var, Bool_t silent=kFALSE)
Overloaded RooArgSet::add() method inserts 'var' into set and registers 'var' as server to owner with...
virtual void removeAll()
Remove all argument inset using remove(const RooAbsArg&).
A simple container to hold a batch of data values.
Iterator abstract base class.
virtual TObject * Next()=0
The TNamed class is the base class for all named ROOT classes.
virtual const char * GetName() const
Returns name of object.
const char * Data() const
TString & Append(const char *cs)
RooConstVar & RooConst(Double_t val)
static void output(int code)