66namespace Experimental {
74 ss << std::setprecision(std::numeric_limits<double>::max_digits10) << val;
80 return "RooFit::Detail::MathFuncs::" +
name;
88 <<
") ERROR: codegen currently only supports non-interpolation cases."
110 std::string
const &
funcName = ctx.buildArg(funcList);
111 std::string
const &
coeffName = ctx.buildArg(coefList);
112 std::string
const &
coeffSize = std::to_string(coefList.
size());
114 std::string
sum = ctx.getTmpVarName();
115 std::string
coeffSum = ctx.getTmpVarName();
116 ctx.addToCodeBody(&arg,
"double " +
sum +
" = 0;\ndouble " +
coeffSum +
"= 0;\n");
118 std::string iterator =
"i_" + ctx.getTmpVarName();
121 std::string code =
"for(int " + iterator +
" = 0; " + iterator +
" < " +
coeffSize +
"; " + iterator +
"++) {\n" +
128 }
else if (normalize) {
131 ctx.addToCodeBody(&arg, code);
162 for (std::size_t i = 0; i <
n; ++i) {
165 <<
"FlexibleInterpVar::evaluate ERROR: Code Squashing AD does not yet support having "
166 "different interpolation codes for the same class object "
181 int nBins =
nomHist.numEntries();
185 for (
int i = 0; i < nBins; ++i) {
188 for (
int i = 0; i < nBins; ++i) {
198 std::string
nStr = std::to_string(
n);
205 "unsigned int " +
idxName +
" = " +
236 errorMsg <<
"Translate function for class \"" << arg.
ClassName() <<
"\" has not yet been implemented.";
249 std::span<const double>
covISpan{
covI.GetMatrixArray(),
static_cast<size_t>(
covI.GetNoElements())};
265 std::cout <<
"MathFunc call used\n";
275 for (
int i = 0; i <
numPdfs; ++i) {
286 std::cout <<
"Ternary expression call used \n";
306 if (arg.
list().empty()) {
310 if (arg.
list().size() > 1)
316 if (!
dynamic_cast<RooFit::Detail::RooNLLVarNew *
>(
component) || arg.
list().size() == 1) {
319 if (i < arg.
list().size())
325 if (i < arg.
list().size())
328 if (arg.
list().size() > 1)
455 if (arg.binnedL() && !arg.pdf().getAttribute(
"BinnedLikelihoodActiveYields")) {
457 errorMsg <<
"codegen: binned likelihood optimization is only supported when raw pdf "
458 "values can be interpreted as yields."
459 <<
" This is not the case for HistFactory models written with ROOT versions before 6.26.00";
461 throw std::runtime_error(
errorMsg.str());
470 const bool needWeightSum = arg.expectedEvents() || arg.simCount() > 1;
476 if (arg.simCount() > 1) {
477 std::string
simCountStr = std::to_string(
static_cast<double>(arg.simCount()));
489 if (arg.expectedEvents()) {
503 std::string
const &idx = arg.
dataHist().calculateTreeIndexForCodeSquash(ctx, arg.
xList());
562 using Func = std::string (*)(
RooAbsReal &,
int,
const char *, CodegenContext &);
569 static std::unordered_map<TClass *, Func>
dispatchMap;
574 func = found->second;
577 std::stringstream
cmd;
578 cmd <<
"&RooFit::Experimental::CodegenIntegralImplCaller<" << tclass->
GetName() <<
">::call;";
579 func =
reinterpret_cast<Func
>(
gInterpreter->ProcessLine(
cmd.str().c_str()));
597 errorMsg <<
"Only analytical integrals and 1D numeric integrals are supported for AD for class"
600 throw std::runtime_error(
errorMsg.str().c_str());
611 std::stringstream
ss;
623 <<
" const int n = 1000; // number of sampling points\n"
625 <<
" double eps = d / n;\n"
626 <<
" for (int i = 0; i < n; ++i) {\n"
628 <<
" double tmpA = " <<
funcName <<
"(params, " <<
obsName <<
", xlArr);\n"
630 <<
" double tmpB = " <<
funcName <<
"(params, " <<
obsName <<
", xlArr);\n"
631 <<
" " <<
resName <<
" += (tmpA + tmpB) * 0.5 * eps;\n"
675 for (
unsigned int i = 1; i <
n; i++) {
678 <<
"FlexibleInterpVar::evaluate ERROR: Code Squashing AD does not yet support having "
679 "different interpolation codes for the same class object "
710 errorMsg <<
"An analytical integral function for class \"" << arg.
ClassName() <<
"\" has not yet been implemented.";
712 throw std::runtime_error(
errorMsg.str().c_str());
768 double max = integrand.getMax(
rangeName);
782 const std::string
a =
784 const std::string
b =
786 return a +
" - " +
b;
803 if (((2 << obs.
size()) - 1) != code) {
805 <<
") ERROR: AD currently only supports integrating over all histogram observables."
845 errorMsg <<
"Partial integrals over RooMultiVarGaussian are not supported.";
847 throw std::runtime_error(
errorMsg.str().c_str());
855 assert(code == 1 || code == 2);
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
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 Int_t Int_t Window_t TString Int_t GCValues_t GetPrimarySelectionOwner GetDisplay GetScreen GetColormap GetNativeEvent const char const char dpyName wid window const char font_name cursor keysym reg const char only_if_exist regb h Point_t winding char text const char depth char const char Int_t count const char ColorStruct_t color const char Pixmap_t Pixmap_t PictureAttributes_t attr const char char ret_data h unsigned char height h offset
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
A class which maps the current values of a RooRealVar (or a set of RooRealVars) to one of a number of...
const RooArgList & paramList() const
const RooArgList & dataVars() const
RooDataHist const & dataHist() const
The PiecewiseInterpolation is a class that can morph distributions into each other,...
const RooArgList & highList() const
const RooAbsReal * nominalHist() const
Return pointer to the nominal hist function.
bool positiveDefinite() const
const RooArgList & lowList() const
const RooArgList & paramList() const
const std::vector< int > & interpolationCodes() const
const_iterator end() const
Common abstract base class for objects that represent a value and a "shape" in RooFit.
bool isConstant() const
Check if the "Constant" attribute is set.
Abstract base class for RooRealVar binning definitions.
Int_t numBins() const
Return number of bins.
virtual double highBound() const =0
virtual double lowBound() const =0
A space to attach TBranches.
value_type lookupIndex(const std::string &stateName) const
Find the index number corresponding to the state name.
Storage_t::size_type size() const
Abstract interface for all probability density functions.
Abstract base class for objects that represent a real value that may appear on the left hand side of ...
virtual double getMin(const char *name=nullptr) const
Get minimum of currently defined range.
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.
TClass * IsA() const override
Efficient implementation of a sum of PDFs of the form.
const RooArgList & coefList() const
const RooArgList & pdfList() const
Calculates the sum of a set of RooAbsReal terms, or when constructed with two sets,...
const RooArgList & list() const
RooArgList is a container object that can hold multiple RooAbsArg objects.
RooArgSet is a container object that can hold multiple RooAbsArg objects.
Bernstein basis polynomials are positive-definite in the range [0,1].
RooAbsRealLValue const & x() const
RooArgList const & coefList() const
Bifurcated Gaussian p.d.f with different widths on left and right side of maximum value.
RooAbsReal const & getSigmaL() const
Get the left sigma parameter.
RooAbsReal const & getSigmaR() const
Get the right sigma parameter.
RooAbsReal const & getX() const
Get the x variable.
RooAbsReal const & getMean() const
Get the mean parameter.
PDF implementing the Crystal Ball line shape.
RooAbsReal const & getSigma() const
RooAbsReal const & getM() const
RooAbsReal const & getN() const
RooAbsReal const & getM0() const
RooAbsReal const & getAlpha() const
Object to represent discrete states.
value_type getCurrentIndex() const final
Return current index.
Chebychev polynomial p.d.f.
RooAbsReal const & x() const
RooArgList const & coefList() const
const char * refRangeName() const
Represents a constant real-valued object.
Calculates the sum of the -(log) likelihoods of a set of RooAbsPfs that represent constraint function...
const RooArgList & list()
Container class to hold N-dimensional binned data.
double sum(bool correctForBinSize, bool inverseCorr=false) const
Return the sum of the weights of all bins in the histogram.
std::vector< std::unique_ptr< const RooAbsBinning > > const & getBinnings() const
std::string declWeightArrayForCodeSquash(RooFit::Experimental::CodegenContext &ctx, bool correctForBinSize) const
double weight(std::size_t i) const
Return weight of i-th bin.
std::string calculateTreeIndexForCodeSquash(RooFit::Experimental::CodegenContext &ctx, const RooAbsCollection &coords, bool reverse=false) const
The class RooEffProd implements the product of a PDF with an efficiency function.
RooAbsReal const & pdf() const
RooAbsReal const & eff() const
A PDF helper class to fit efficiencies parameterized by a supplied function F.
RooAbsCategory const & cat() const
RooAbsReal const & effFunc() const
std::string sigCatName() const
bool negateCoefficient() const
RooAbsReal const & coefficient() const
Get the coefficient "c".
RooAbsReal const & variable() const
Get the x variable.
RooExtendPdf is a wrapper around an existing PDF that adds a parameteric extended likelihood term to ...
RooAbsPdf const & pdf() const
A RooProdPdf with a fixed normalization set can be replaced by this class.
RooProdPdf::CacheElem const & cache() const
RooAbsReal const & normIntegral() const
RooAbsPdf const & pdf() const
A class to maintain the context for squashing of RooFit models into code.
void addToGlobalScope(std::string const &str)
Adds the given string to the string block that will be emitted at the top of the squashed function.
std::string const & getResult(RooAbsArg const &arg)
Gets the result for the given node using the node name.
std::string getTmpVarName() const
Get a unique variable name to be used in the generated 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.
auto const & outputSizes() const
void addToCodeBody(RooAbsArg const *klass, std::string const &in)
Adds the input string to the squashed code body.
std::unique_ptr< LoopScope > beginLoop(RooAbsArg const *in)
Create a RAII scope for iterating over vector observables.
void collectFunction(std::string const &name)
Register a function that is only know to the interpreter to the context.
void addVecObs(const char *key, int idx)
Since the squashed code represents all observables as a single flattened array, it is important to ke...
int observableIndexOf(const RooAbsArg &arg) const
std::string buildFunction(RooAbsArg const &arg, std::map< RooFit::Detail::DataKey, std::size_t > const &outputSizes={})
Assemble and return the final code with the return expression and global statements.
std::string buildCall(std::string const &funcname, Args_t const &...args)
Build the code to call the function with name funcname, passing some arguments.
std::string buildArg(RooAbsCollection const &x)
Function to save a RooListProxy as an array in the squashed code.
Implementation of the Gamma PDF for RooFit/RooStats.
RooAbsReal const & getX() const
RooAbsReal const & getGamma() const
RooAbsReal const & getBeta() const
RooAbsReal const & getMu() const
RooAbsReal const & getX() const
Get the x variable.
RooAbsReal const & getMean() const
Get the mean parameter.
RooAbsReal const & getSigma() const
Get the sigma parameter.
Implementation of a probability density function that takes a RooArgList of servers and a C++ express...
const RooArgList & dependents() const
std::string getUniqueFuncName() const
A real-valued function sampled from a multidimensional histogram.
Int_t getInterpolationOrder() const
Return histogram interpolation order.
bool getCdfBoundaries() const
If true, special boundary conditions for c.d.f.s are used.
RooDataHist & dataHist()
Return RooDataHist that is represented.
RooArgSet const & variables() const
A probability density function sampled from a multidimensional histogram.
Int_t getInterpolationOrder() const
bool haveUnitNorm() const
bool getCdfBoundaries() const
RooArgSet const & variables() const
Landau distribution p.d.f.
RooAbsReal const & getSigma() const
RooAbsReal const & getMean() const
RooAbsReal const & getX() const
bool useStandardParametrization() const
RooAbsReal const & getMedian() const
Get the median parameter.
RooAbsReal const & getShapeK() const
Get the shape parameter.
RooAbsReal const & getX() const
Get the x variable.
The class RooMultiPdf allows for the creation of a RooMultiPdf object, which can switch between previ...
const RooCategoryProxy & indexCategory() const
RooAbsPdf * getPdf(int index) const
const RooListProxy & getPdfList() const
Multivariate Gaussian p.d.f.
double analyticalIntegral(Int_t code, const char *rangeName=nullptr) const override
Handle full integral here.
const RooArgList & xVec() const
const TMatrixDSym & covarianceMatrixInverse() const
const RooArgList & muVec() const
A histogram function that assigns scale parameters to every bin.
const RooArgList & paramList() const
const RooArgList & xList() const
const RooDataHist & dataHist() const
RooAbsReal const & getX() const
Get the x variable.
bool getProtectNegativeMean() const
bool getNoRounding() const
RooAbsReal const & getMean() const
Get the mean parameter.
A RooAbsReal implementing a polynomial in terms of a list of RooAbsReal coefficients.
RooRealProxy const & x() const
RooArgList const & coefList() const
RooPolynomial implements a polynomial p.d.f of the form.
RooAbsReal const & x() const
Get the x variable.
int lowestOrder() const
Return the order for the first coefficient in the list.
RooArgList const & coefList() const
Get the coefficient list.
std::unique_ptr< RooAbsReal > _rearrangedNum
std::unique_ptr< RooAbsReal > _rearrangedDen
Represents the product of a given set of RooAbsReal objects.
const RooArgList & realComponents() const
Represents the ratio of two RooAbsReal objects.
RooAbsReal const & numerator() const
RooAbsReal const & denominator() const
Performs hybrid numerical/analytical integrals of RooAbsReal objects.
const RooArgSet & numIntRealVars() const
RooArgSet intVars() const
const RooAbsReal & integrand() const
const RooArgSet & numIntCatVars() const
const char * intRange() const
const RooArgList & coefList() const
const RooArgList & funcList() const
Implements a PDF constructed from a sum of functions:
const RooArgList & funcList() const
const RooArgList & funcIntListFromCache(Int_t code, const char *rangeName=nullptr) const
Collect the list of functions to be integrated from the cache.
const RooArgList & coefList() const
Variable that can be changed from the outside.
A RooAbsReal implementation that calculates the plain fraction of sum of RooAddPdf components from a ...
RooArgList const & variables() const
const std::vector< int > & interpolationCodes() const
double globalBoundary() const
const RooListProxy & variables() const
const std::vector< double > & high() const
const std::vector< double > & low() const
The RooWrapperPdf is a class that can be used to convert a function into a PDF.
RooAbsReal const & function() const
TClass instances represent classes, structs and namespaces in the ROOT type system.
const char * GetName() const override
Returns name of object.
virtual const char * ClassName() const
Returns name of class to which the object belongs.
std::string makeValidVarName(std::string const &in)
void codegenImpl(RooFit::Detail::RooFixedProdPdf &arg, CodegenContext &ctx)
std::string codegenIntegralImpl(RooAbsReal &arg, int code, const char *rangeName, CodegenContext &ctx)
This function defines the analytical integral translation for the class.
The namespace RooFit contains mostly switches that change the behaviour of functions of PDFs (or othe...
static uint64_t sum(uint64_t i)