68#include <unordered_set>
78 ss << std::setprecision(std::numeric_limits<double>::max_digits10) << val;
84 return "RooFit::Detail::MathFuncs::" +
name;
92 <<
") ERROR: codegen currently only supports non-interpolation cases."
114 std::string
const &funcName = ctx.buildArg(funcList);
115 std::string
const &
coeffName = ctx.buildArg(coefList);
116 std::string
const &
coeffSize = std::to_string(coefList.
size());
118 std::string
sum = ctx.getTmpVarName();
119 std::string
coeffSum = ctx.getTmpVarName();
120 ctx.addToCodeBody(&arg,
"double " +
sum +
" = 0;\ndouble " +
coeffSum +
"= 0;\n");
122 std::string iterator =
"i_" + ctx.getTmpVarName();
125 std::string code =
"for(int " + iterator +
" = 0; " + iterator +
" < " +
coeffSize +
"; " + iterator +
"++) {\n" +
132 }
else if (normalize) {
135 ctx.addToCodeBody(&arg, code);
166 for (std::size_t i = 0; i <
n; ++i) {
169 <<
"FlexibleInterpVar::evaluate ERROR: Code Squashing AD does not yet support having "
170 "different interpolation codes for the same class object "
185 int nBins =
nomHist.numEntries();
189 for (
int i = 0; i < nBins; ++i) {
192 for (
int i = 0; i < nBins; ++i) {
202 std::string
nStr = std::to_string(
n);
209 "unsigned int " +
idxName +
" = " +
240 errorMsg <<
"Translate function for class \"" << arg.
ClassName() <<
"\" has not yet been implemented.";
253 std::span<const double>
covISpan{
covI.GetMatrixArray(),
static_cast<size_t>(
covI.GetNoElements())};
269 std::cout <<
"MathFunc call used\n";
279 for (
int i = 0; i <
numPdfs; ++i) {
290 std::cout <<
"Ternary expression call used \n";
310 if (arg.
list().empty()) {
314 if (arg.
list().size() > 1)
320 if (!
dynamic_cast<RooFit::Detail::RooNLLVarNew *
>(
component) || arg.
list().size() == 1) {
323 if (i < arg.
list().size())
329 if (i < arg.
list().size())
332 if (arg.
list().size() > 1)
381template <
class RooArg_t>
384 if (!arg.function()->HasGradient()) {
386 errorMsg <<
"Functor wrapped by \"" << arg.GetName() <<
"\" doesn't provide a gradient function."
387 <<
" RooFit codegen is therefore not supported.";
389 throw std::runtime_error(
errorMsg.str());
402 std::string
nStr = std::to_string(std::size(variables));
405 if constexpr (std::is_same_v<RooArg_t, RooFunctor1DBinding> || std::is_same_v<RooArg_t, RooFunctor1DPdfBinding>)
406 type =
"::ROOT::Math::IGradientFunctionOneDim";
408 type =
"::ROOT::Math::IGradientFunctionMultiDim";
415 "(double const *x) {\n"
420 "namespace clad::custom_derivatives {\n\n"
423 "(double const* x, double d_y, double *d_x) {\n"
429 "->Gradient(x, output);\n"
430 " for (int i = 0; i < " +
433 " d_x[i] += output[i] * d_y;\n"
436 "} // namespace clad::custom_derivatives\n";
551 if (arg.binnedL() && !arg.pdf().getAttribute(
"BinnedLikelihoodActiveYields")) {
553 errorMsg <<
"codegen: binned likelihood optimization is only supported when raw pdf "
554 "values can be interpreted as yields."
555 <<
" This is not the case for HistFactory models written with ROOT versions before 6.26.00";
557 throw std::runtime_error(
errorMsg.str());
566 const bool needWeightSum = arg.expectedEvents() || arg.simCount() > 1;
572 if (arg.simCount() > 1) {
573 std::string
simCountStr = std::to_string(
static_cast<double>(arg.simCount()));
585 if (arg.expectedEvents()) {
586 std::string expected = ctx.
getResult(*arg.expectedEvents());
599 std::string
const &idx = arg.
dataHist().calculateTreeIndexForCodeSquash(ctx, arg.
xList());
658 using Func = std::string (*)(
RooAbsReal &,
int,
const char *, CodegenContext &);
665 static std::unordered_map<TClass *, Func>
dispatchMap;
670 func = found->second;
673 std::stringstream
cmd;
674 cmd <<
"&RooFit::Experimental::CodegenIntegralImplCaller<" << tclass->
GetName() <<
">::call;";
675 func =
reinterpret_cast<Func
>(
gInterpreter->ProcessLine(
cmd.str().c_str()));
693 errorMsg <<
"Only analytical integrals and 1D numeric integrals are supported for AD for class"
696 throw std::runtime_error(
errorMsg.str().c_str());
707 std::stringstream
ss;
719 <<
" const int n = 1000; // number of sampling points\n"
721 <<
" double eps = d / n;\n"
722 <<
" #pragma clad checkpoint loop\n"
723 <<
" for (int i = 0; i < n; ++i) {\n"
725 <<
" double tmpA = " << funcName <<
"(params, " <<
obsName <<
", xlArr);\n"
727 <<
" double tmpB = " << funcName <<
"(params, " <<
obsName <<
", xlArr);\n"
728 <<
" " <<
resName <<
" += (tmpA + tmpB) * 0.5 * eps;\n"
772 for (
unsigned int i = 1; i <
n; i++) {
775 <<
"FlexibleInterpVar::evaluate ERROR: Code Squashing AD does not yet support having "
776 "different interpolation codes for the same class object "
807 errorMsg <<
"An analytical integral function for class \"" << arg.
ClassName() <<
"\" has not yet been implemented.";
809 throw std::runtime_error(
errorMsg.str().c_str());
865 double max = integrand.getMax(
rangeName);
879 const std::string
a =
881 const std::string
b =
883 return a +
" - " +
b;
900 if (((2 << obs.
size()) - 1) != code) {
902 <<
") ERROR: AD currently only supports integrating over all histogram observables."
942 errorMsg <<
"Partial integrals over RooMultiVarGaussian are not supported.";
944 throw std::runtime_error(
errorMsg.str().c_str());
952 std::stringstream
ss;
967 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
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 Atom_t Int_t ULong_t ULong_t unsigned char prop_list Atom_t Atom_t Atom_t Time_t type
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.
RooArgSet const * partList() const
bool isRearranged() const
RooAbsReal const * rearrangedDen() const
RooAbsReal const * rearrangedNum() 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.
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 buildArg(RooAbsCollection const &x, std::string const &arrayType="double")
Function to save a RooListProxy as an array in the squashed code.
std::string buildFunction(RooAbsArg const &arg, std::unordered_set< RooFit::Detail::DataKey > const &dependsOnData={})
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.
auto const & dependsOnData() const
RooCFunction1Binding is a templated implementation of class RooAbsReal that binds generic C(++) funct...
RooAbsReal const & variable() const
RooAbsReal const & variable() const
RooFunctorBinding makes math functions from ROOT usable in RooFit.
RooArgList const & variables() const
RooFunctorPdfBinding makes math functions from ROOT usable as PDFs in RooFit.
RooArgList const & variables() const
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
RooONNXFunction wraps an ONNX model as a RooAbsReal, allowing it to be used as a building block in li...
RooArgList const & inputTensorList(int iTensor) const
std::size_t nInputTensors() const
std::string outerWrapperName() 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.
RooArgList const & coefList() const
RooAbsReal const & x() 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.
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.
static TString Format(const char *fmt,...)
Static method which formats a string using a printf style format descriptor and return a TString.
std::string makeValidVarName(std::string const &in)
void codegenImpl(RooFit::Detail::RooFixedProdPdf &arg, CodegenContext &ctx)
void functorCodegenImpl(RooArg_t &arg, RooArgList const &variables, CodegenContext &ctx)
std::string codegenIntegralImpl(RooAbsReal &arg, int code, const char *rangeName, CodegenContext &ctx)
This function defines the analytical integral translation for the class.
static uint64_t sum(uint64_t i)