101 _refCoefNorm(
"!refCoefNorm",
"Reference coefficient normalization set",this,false,false),
103 _pdfList(
"!pdfs",
"List of PDFs",this),
104 _coefList(
"!coefficients",
"List of coefficients",this),
115 using PdfInfo = std::pair<std::string,RooAbsArg*>;
116 std::set<PdfInfo> seen;
118 PdfInfo elem{pdf->GetName(), pdf};
119 auto comp = [&](PdfInfo
const& p){
return p.first == elem.first && p.second != elem.second; };
120 auto found = std::find_if(seen.begin(), seen.end(), comp);
121 if(found != seen.end()) {
122 std::stringstream errorMsg;
123 errorMsg <<
"RooAddPdf::RooAddPdf(" <<
GetName()
124 <<
") pdf list contains pdfs with duplicate name \"" << pdf->GetName() <<
"\".";
125 coutE(InputArguments) << errorMsg.str() << std::endl;
126 throw std::invalid_argument(errorMsg.str().c_str());
160 bool recursiveFractions)
165 if (inPdfList.
size()>inCoefList.
size()+1 || inPdfList.
size()<inCoefList.
size()) {
166 std::stringstream errorMsg;
167 errorMsg <<
"RooAddPdf::RooAddPdf(" << GetName()
168 <<
") number of pdfs and coefficients inconsistent, must have Npdf=Ncoef or Npdf=Ncoef+1.";
169 coutE(InputArguments) << errorMsg.str() << std::endl;
170 throw std::invalid_argument(errorMsg.str().c_str());
173 if (recursiveFractions && inPdfList.
size()!=inCoefList.
size()+1) {
174 std::stringstream errorMsg;
175 errorMsg <<
"RooAddPdf::RooAddPdf(" << GetName()
176 <<
"): Recursive fractions option can only be used if Npdf=Ncoef+1.";
177 coutE(InputArguments) << errorMsg.str() << std::endl;
178 throw std::invalid_argument(errorMsg.str());
185 partinCoefList.add(coef) ;
186 if(partinCoefList.size() == 1) {
191 std::stringstream rfracName;
192 rfracName <<
GetName() <<
"_recursive_fraction_" << pdf.
GetName() <<
"_" << partinCoefList.size();
193 auto rfrac = std::make_unique<RooRecursiveFraction>(rfracName.str().c_str(),
"Recursive Fraction",partinCoefList) ;
194 auto & rfracRef = *rfrac;
199 for (
auto i = 0u; i < inCoefList.size(); ++i) {
200 auto coef =
dynamic_cast<RooAbsReal*
>(inCoefList.at(i));
201 auto pdf =
dynamic_cast<RooAbsPdf*
>(inPdfList.at(i));
202 if (inPdfList.at(i) ==
nullptr) {
203 std::stringstream errorMsg;
204 errorMsg <<
"RooAddPdf::RooAddPdf(" << GetName()
205 <<
") number of pdfs and coefficients inconsistent, must have Npdf=Ncoef or Npdf=Ncoef+1";
206 coutE(InputArguments) << errorMsg.str() << std::endl;
207 throw std::invalid_argument(errorMsg.str());
210 std::stringstream errorMsg;
211 errorMsg <<
"RooAddPdf::RooAddPdf(" << GetName() <<
") coefficient " << (coef ? coef->GetName() :
"") <<
" is not of type RooAbsReal, ignored";
212 coutE(InputArguments) << errorMsg.str() << std::endl;
213 throw std::invalid_argument(errorMsg.str());
216 std::stringstream errorMsg;
217 errorMsg <<
"RooAddPdf::RooAddPdf(" << GetName() <<
") pdf " << (pdf ? pdf->GetName() :
"") <<
" is not of type RooAbsPdf, ignored";
218 coutE(InputArguments) << errorMsg.str() << std::endl;
219 throw std::invalid_argument(errorMsg.str());
224 _coefList.add(recursiveFractions ? addRecursiveCoef(*pdf, *coef) : *coef);
227 if (inPdfList.size() == inCoefList.size() + 1) {
228 auto pdf = dynamic_cast<RooAbsPdf*>(inPdfList.at(inCoefList.size()));
231 coutE(InputArguments) <<
"RooAddPdf::RooAddPdf(" << GetName() <<
") last argument " << inPdfList.at(inCoefList.size())->GetName() <<
" is not of type RooAbsPdf." << std::endl;
232 throw std::invalid_argument(
"Last argument for RooAddPdf is not a PDF.");
237 if (recursiveFractions) {
247 finalizeConstruction();
263 for (
const auto pdfArg : inPdfList) {
264 auto pdf =
dynamic_cast<const RooAbsPdf*
>(pdfArg);
267 std::stringstream errorMsg;
268 errorMsg <<
"RooAddPdf::RooAddPdf(" <<
GetName() <<
") pdf " << (pdf ? pdf->GetName() :
"")
269 <<
" is not of type RooAbsPdf, RooAddPdf constructor call is invalid!";
270 coutE(InputArguments) << errorMsg.str() << std::endl;
271 throw std::invalid_argument(errorMsg.str().c_str());
273 if (!pdf->canBeExtended()) {
274 std::stringstream errorMsg;
275 errorMsg <<
"RooAddPdf::RooAddPdf(" <<
GetName() <<
") pdf " << pdf->GetName()
276 <<
" is not extendable, RooAddPdf constructor call is invalid!";
277 coutE(InputArguments) << errorMsg.str() << std::endl;
278 throw std::invalid_argument(errorMsg.str().c_str());
321 if (refCoefNorm.
empty()) {
351 std::vector<std::string> names;
362 for (std::string
const &
name : names) {
364 refCoefNorm.
add(*arg);
366 throw std::runtime_error(
"Internal logic error in RooAddPdf::materializeRefCoefNormFromAttribute()");
445 if (syncCoefValues) {
446 for (std::size_t i = 0; i <
_coefList.size(); ++i) {
451 for (std::size_t i = 0; i <
_pdfList.size(); ++i) {
468 if(nset && nset->
empty()) nset =
nullptr;
470 if (nset ==
nullptr) {
495 if(nset ==
nullptr) {
503 if (nset ==
nullptr) {
504 coutW(Eval) <<
"Evaluating RooAddPdf " <<
GetName() <<
" without a defined normalization set. This can lead to ambiguous "
505 "coefficients definition and incorrect results."
506 <<
" Use RooAddPdf::fixCoefNormalization(nset) to provide a normalization set for "
507 "defining uniquely RooAddPdf coefficients!"
515 return {nset, cache};
530 bool nsetChanged(
false) ;
539 for (
unsigned int i=0; i <
_pdfList.size(); ++i) {
541 double snormVal = 1.;
542 snormVal = cache->suppNormVal(i);
544 double pdfVal = pdf.getVal(nset);
545 if (pdf.isSelectedComp()) {
559 std::span<double> output = ctx.
output();
564 for(std::size_t i = 0; i <
_coefList.size(); ++i) {
570 if(coefVals.size() > 1) {
572 throw std::runtime_error(
"The RooAddPdf doesn't support per-event coefficients in CUDA mode yet!");
580 std::vector<std::span<const double>> pdfs;
581 std::vector<double> coefs;
586 for (
unsigned int pdfNo = 0; pdfNo <
_pdfList.size(); ++pdfNo)
589 if (pdf->isSelectedComp())
591 pdfs.push_back(ctx.
at(pdf));
592 coefs.push_back(
_coefCache[pdfNo] / cache->suppNormVal(pdfNo) );
633 const RooArgSet* normSet,
const char* rangeName)
const
643 for (
const auto pdfArg :
_pdfList) {
644 auto pdf =
static_cast<const RooAbsPdf *
>(pdfArg);
646 pdf->getAnalyticalIntegralWN(allVars,subAnalVars,normSet,rangeName) ;
649 for (
const auto arg : allVars) {
650 if (!subAnalVars.
find(arg->GetName()) && pdf->
dependsOn(*arg)) {
651 allAnalVars.remove(*arg,
true,
true) ;
658 if (allAnalVars.empty()) {
665 std::vector<Int_t> subCode(
_pdfList.size());
668 auto pdf =
static_cast<const RooAbsPdf *
>(arg);
670 auto allAnalVars2 = std::unique_ptr<RooArgSet>{pdf->getObservables(allAnalVars)} ;
671 subCode[
n] = pdf->getAnalyticalIntegralWN(*allAnalVars2,subAnalVars,normSet,rangeName) ;
672 if (subCode[
n]==0 && !allAnalVars2->empty()) {
673 coutE(InputArguments) <<
"RooAddPdf::getAnalyticalIntegral(" <<
GetName() <<
") WARNING: component PDF " << pdf->GetName()
674 <<
" advertises inconsistent set of integrals (e.g. (X,Y) but not X or Y individually."
675 <<
" Distributed analytical integration disabled. Please fix PDF" << std::endl ;
685 analVars.
add(allAnalVars) ;
708 const std::vector<Int_t>& subCode =
_codeReg.retrieve(code-1,intSet) ;
709 if (subCode.empty()) {
710 std::stringstream errorMsg;
711 errorMsg <<
"RooAddPdf::analyticalIntegral(" <<
GetName() <<
"): ERROR unrecognized integration code, " << code;
712 coutE(InputArguments) << errorMsg.str() << std::endl;
713 throw std::invalid_argument(errorMsg.str().c_str());
716 cxcoutD(Caching) <<
"RooAddPdf::aiWN(" <<
GetName() <<
") calling getProjCache with nset = " << (normSet?*normSet:
RooArgSet()) << std::endl ;
733 for (std::size_t i = 0; i <
_pdfList.size(); ++i ) {
737 snormVal = cache->suppNormVal(i);
740 double val = pdf->analyticalIntegralWN(subCode[i],normSet,rangeName) ;
741 if (pdf->isSelectedComp()) {
759 double expectedTotal{0.0};
761 cxcoutD(Caching) <<
"RooAddPdf::expectedEvents(" <<
GetName() <<
") calling getProjCache with nset = " << (nset?*nset:
RooArgSet()) << std::endl ;
765 if (cache.doProjection()) {
767 for (std::size_t i = 0; i <
_pdfList.size(); ++i) {
770 expectedTotal += cache.rangeProjScaleFactor(i) * ncomp ;
787 return expectedTotal ;
793 std::unique_ptr<RooAbsReal> out;
795 auto name = std::string(
GetName()) +
"_expectedEvents";
799 sumSet.
addOwned(pdf->createExpectedEventsFunc(nset));
801 out = std::make_unique<RooAddition>(
name.c_str(),
name.c_str(), sumSet);
802 out->addOwnedComponents(std::move(sumSet));
823 std::unique_ptr<RooAbsReal> owner;
832 auto integrl = std::unique_ptr<RooAbsReal>{pdf->createIntegral(*nset, *nset)};
833 auto formulaName = std::string(pdf->GetName()) +
"_formulaVar";
834 auto next = std::make_unique<RooFormulaVar>(formulaName.c_str(),
"1./x[0]",
RooArgList{*integrl});
835 next->addOwnedComponents(std::move(integrl));
838 next->addOwnedComponents(std::move(owner));
839 owner = std::move(next);
841 auto fracIntegName = std::string(
GetName()) +
"_integSum";
843 std::make_unique<RooRealSumFunc>(fracIntegName.c_str(), fracIntegName.c_str(),
_coefList, terms);
844 fracInteg->addOwnedComponents(std::move(owner));
846 out = std::move(fracInteg);
850 std::string finalName = std::string(out->GetName()) +
"_finalized";
851 if (prodList.
empty()) {
857 auto finalOut = std::make_unique<RooProduct>(finalName.c_str(), finalName.c_str(), prodList);
858 finalOut->addOwnedComponents(std::move(prodList));
906 const RooArgSet* auxProto,
bool verbose)
const
960 bool nameChange,
bool isRecursiveStep)
969std::unique_ptr<RooAbsArg>
1005 class ResetNormRangesRAII {
1009 _componentPdfs.reserve(pdfs.
size());
1010 _oldNormRanges.reserve(pdfs.
size());
1012 bool isMultiRange =
normRange.find(
',') != std::string::npos;
1018 bool changeRange = !(isMultiRange &&
dynamic_cast<RooProdPdf *
>(componentPdf));
1020 const char *old = componentPdf->normRange();
1021 const char *newVal = changeRange ?
normRange.c_str() : old;
1022 componentPdf->setNormRange(newVal);
1023 _componentPdfs.emplace_back(componentPdf);
1024 _oldNormRanges.emplace_back(old ? old :
"");
1027 ~ResetNormRangesRAII()
1029 for (std::size_t i = 0; i < _componentPdfs.size(); ++i) {
1030 _componentPdfs[i]->setNormRange(_oldNormRanges[i].c_str());
1035 std::vector<RooAbsPdf *> _componentPdfs;
1036 std::vector<std::string> _oldNormRanges;
1070 std::string finalName = std::string(
GetName()) +
"_conditional";
1071 std::unique_ptr<RooAbsReal> denom{newArg->createIntegral(normSet,
_refCoefNorm)};
1072 auto finalArg = std::make_unique<RooGenericPdf>(finalName.c_str(),
"@0/@1",
RooArgList{*newArg, *denom});
1077 finalArg->addOwnedComponents(std::move(newArg));
1078 finalArg->addOwnedComponents(std::move(denom));
ROOT::RRangeCast< T, false, Range_t > static_range_cast(Range_t &&coll)
int Int_t
Signed integer 4 bytes (int).
void clearValueAndShapeDirty() const
bool dependsOn(const RooAbsCollection &serverList, const RooAbsArg *ignoreArg=nullptr, bool valueOnly=false) const
Test whether we depend on (ie, are served by) any object in the specified collection.
void setStringAttribute(const Text_t *key, const Text_t *value)
Associate string 'value' to this object under key 'key'.
RooFit::OwningPtr< RooArgSet > getObservables(const RooArgSet &set, bool valueOnly=true) const
Given a set of possible observables, return the observables that this PDF depends on.
bool addOwnedComponents(const RooAbsCollection &comps)
Take ownership of the contents of 'comps'.
const Text_t * getStringAttribute(const Text_t *key) const
Get string attribute mapped under key 'key'.
bool isValueDirty() const
RooAbsArg()
Default constructor.
friend class RooAbsCollection
bool equals(const RooAbsCollection &otherColl) const
Check if this and other collection have identically-named contents.
RooFit::UniqueId< RooAbsCollection > const & uniqueId() const
Returns a unique ID that is different for every instantiated RooAbsCollection.
virtual bool add(const RooAbsArg &var, bool silent=false)
Add the specified argument to list.
Storage_t::size_type size() const
RooAbsArg * first() const
virtual bool addOwned(RooAbsArg &var, bool silent=false)
Add an argument and transfer the ownership to the collection.
RooAbsArg * find(const char *name) const
Find object with given name in list.
Abstract base class for generator contexts of RooAbsPdf objects.
Abstract interface for all probability density functions.
virtual bool syncNormalization(const RooArgSet *dset, bool adjustProxies=true) const
Verify that the normalization integral cached with this PDF is valid for given set of normalization o...
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...
bool isActiveNormSet(RooArgSet const *normSet) const
Checks if normSet is the currently active normalization set of this PDF, meaning is exactly the same ...
TString _normRange
Normalization range.
RooAbsReal * _norm
! Normalization integral (owned by _normMgr)
Int_t _errorCount
Number of errors remaining to print.
const char * normRange() const
RooAbsPdf()
Default constructor.
bool redirectServersHook(const RooAbsCollection &newServerList, bool mustReplaceAll, bool nameChange, bool isRecursiveStep) override
Hook function intercepting redirectServer calls.
static Int_t _verboseEval
Abstract base class for objects that represent a real value that may appear on the left hand side of ...
Abstract base class for objects that represent a real value and implements functionality common to al...
double getVal(const RooArgSet *normalisationSet=nullptr) const
Evaluate object.
friend class AddCacheElem
double _value
Cache for current value of object.
RooFit::OwningPtr< RooAbsReal > createIntegral(const RooArgSet &iset, const RooCmdArg &arg1, const RooCmdArg &arg2={}, const RooCmdArg &arg3={}, const RooCmdArg &arg4={}, const RooCmdArg &arg5={}, const RooCmdArg &arg6={}, const RooCmdArg &arg7={}, const RooCmdArg &arg8={}) const
Create an object that represents the integral of the function over one or more observables listed in ...
virtual void doEval(RooFit::EvalContext &) const
Base function for computing multiple values of a RooAbsReal.
static std::unique_ptr< RooAbsGenContext > create(const Pdf_t &pdf, const RooArgSet &vars, const RooDataSet *prototype, const RooArgSet *auxProto, bool verbose)
Returns a RooAddGenContext if possible, or, if the RooAddGenContext doesn't support this particular R...
RooListProxy _coefList
List of coefficients.
bool _allExtendable
Flag indicating if all PDF components are extendable.
void doEval(RooFit::EvalContext &) const override
Compute addition of PDFs in batches.
RooAICRegistry _codeReg
! Registry of component analytical integration codes
RooFit::UniqueId< RooArgSet >::Value_t _idOfLastUsedNormSet
!
double analyticalIntegralWN(Int_t code, const RooArgSet *normSet, const char *rangeName=nullptr) const override
Return analytical integral defined by given scenario code.
const char * getCoefRange() const
std::unique_ptr< const RooArgSet > _copyOfLastNormSet
!
void updateCoefficients(AddCacheElem &cache, const RooArgSet *nset, bool syncCoefValues=true) const
Update the coefficient values in the given cache element: calculate new remainder fraction,...
Int_t _coefErrCount
! Coefficient error counter
bool _haveLastCoef
Flag indicating if last PDFs coefficient was supplied in the constructor.
void selectNormalization(const RooArgSet *depSet=nullptr, bool force=false) override
Interface function used by test statistics to freeze choice of observables for interpretation of frac...
void printMetaArgs(std::ostream &os) const override
Customized printing of arguments of a RooAddPdf to more intuitively reflect the contents of the produ...
void finalizeConstruction()
void setCacheAndTrackHints(RooArgSet &) override
Label OK'ed components of a RooAddPdf with cache-and-track.
const RooArgList & coefList() const
bool _recursive
Flag indicating is fractions are treated recursively.
RooObjCacheManager _projCacheMgr
! Manager of cache with coefficient projections and transformations
void materializeRefCoefNormFromAttribute() const
RooAbsGenContext * genContext(const RooArgSet &vars, const RooDataSet *prototype=nullptr, const RooArgSet *auxProto=nullptr, bool verbose=false) const override
Return specialized context to efficiently generate toy events from RooAddPdfs return RooAbsPdf::genCo...
bool checkObservables(const RooArgSet *nset) const override
Check if PDF is valid for given normalization set.
void fixCoefNormalization(const RooArgSet &refCoefNorm)
By default the interpretation of the fraction coefficients is performed in the contextual choice of o...
std::pair< const RooArgSet *, AddCacheElem * > getNormAndCache(const RooArgSet *nset) const
Look up projection cache and per-PDF norm sets.
RooSetProxy _refCoefNorm
Reference observable set for coefficient interpretation.
void selectNormalizationRange(const char *rangeName=nullptr, bool force=false) override
Interface function used by test statistics to freeze choice of range for interpretation of fraction c...
Int_t getAnalyticalIntegralWN(RooArgSet &allVars, RooArgSet &numVars, const RooArgSet *normSet, const char *rangeName=nullptr) const override
Determine which part (if any) of given integral can be performed analytically.
void resetErrorCounters(Int_t resetValue=10) override
Reset error counter to given value, limiting the number of future error messages for this pdf to 'res...
double expectedEvents(const RooArgSet *nset) const override
Return expected number of events for extended likelihood calculation, which is the sum of all coeffic...
double getValV(const RooArgSet *set=nullptr) const override
Calculate and return the current value.
std::unique_ptr< RooAbsArg > compileForNormSet(RooArgSet const &normSet, RooFit::Detail::CompileContext &ctx) const override
void fixCoefRange(const char *rangeName)
By default, fraction coefficients are assumed to refer to the default fit range.
AddCacheElem * getProjCache(const RooArgSet *nset, const RooArgSet *iset=nullptr) const
Retrieve cache element for the computation of the PDF normalisation.
std::list< double > * plotSamplingHint(RooAbsRealLValue &obs, double xlo, double xhi) const override
Loop over components for plot sampling hints and merge them if there are multiple.
RooListProxy _pdfList
List of component PDFs.
TNamed * _refCoefRangeName
Reference range name for coefficient interpretation.
const RooArgList & pdfList() const
std::unique_ptr< RooAbsReal > createExpectedEventsFunc(const RooArgSet *nset) const override
Returns an object that represents the expected number of events for a given normalization set,...
bool isBinnedDistribution(const RooArgSet &obs) const override
If all components that depend on obs are binned, so is their sum.
bool redirectServersHook(const RooAbsCollection &, bool, bool, bool) override
Hook function intercepting redirectServer calls.
std::vector< double > _coefCache
! Transient cache with transformed values of coefficients
const RooArgSet & getCoefNormalization() const
std::list< double > * binBoundaries(RooAbsRealLValue &, double, double) const override
Loop over components for plot sampling hints and merge them if there are multiple.
RooArgList is a container object that can hold multiple RooAbsArg objects.
RooArgSet is a container object that can hold multiple RooAbsArg objects.
Minimal configuration struct to steer the evaluation of a single node with the RooBatchCompute librar...
void markAsCompiled(RooAbsArg &arg) const
void compileServers(RooAbsArg &arg, RooArgSet const &normSet)
std::span< const double > at(RooAbsArg const *arg, RooAbsArg const *caller=nullptr)
std::span< double > output()
RooBatchCompute::Config config(RooAbsArg const *arg) const
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.
Efficient implementation of a product of PDFs of the form.
void setCacheAndTrackHints(RooArgSet &) override
Label OK'ed components of a RooRealSumPdf with cache-and-track.
bool checkObservables(const RooArgSet *nset) const override
Check if FUNC is valid for given normalization set.
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.
The TNamed class is the base class for all named ROOT classes.
const char * GetName() const override
Returns name of object.
const char * GetTitle() const override
Returns title of object.
RooConstVar & RooConst(double val)
std::vector< std::string > Split(std::string_view str, std::string_view delims, bool skipEmpty=false)
Splits a string at each character in delims.
void compute(Config cfg, Computer comp, std::span< double > output, VarSpan vars, ArgSpan extraArgs={})
void getSortedComputationGraph(RooAbsArg const &func, RooArgSet &out)
std::string getColonSeparatedNameString(RooArgSet const &argSet, char delim=':')