65 x(
"x",
"Observable",this,_x),
66 gamma(
"gamma",
"Mean",this,_gamma),
67 beta(
"beta",
"Width",this,_beta),
68 mu(
"mu",
"Para",this,_mu)
76 RooAbsPdf(other,
name),
x(
"x",this,other.
x), gamma(
"gamma",this,other.gamma),
77 beta(
"beta",this,other.beta), mu(
"mu",this,other.mu)
100 {ctx.at(x), ctx.at(gamma), ctx.at(beta), ctx.at(mu)});
127 return a +
" - " +
b;
132inline double randomGamma(
double gamma,
double beta,
double mu,
double xmin,
double xmax)
136 double d = gamma - 1. / 3.;
137 double c = 1. / std::sqrt(9. *
d);
147 if (u < 1. - .0331 * (xgen * xgen) * (xgen * xgen)) {
148 double x = ((
d *
v) * beta + mu);
153 if (std::log(u) < 0.5 * xgen * xgen +
d * (1. -
v +
TMath::Log(
v))) {
154 double x = ((
d *
v) * beta + mu);
190 bool accepted =
false;
194 double tmp = randomGamma(1 +
gamma,
beta,
mu, 0, std::numeric_limits<double>::infinity());
195 xVal = tmp * std::pow(u, 1.0 /
gamma);
196 accepted = xVal <
x.
max() && xVal >
x.
min();
Abstract interface for all probability density functions.
Abstract base class for objects that represent a real value and implements functionality common to al...
bool matchArgs(const RooArgSet &allDeps, RooArgSet &numDeps, const RooArgProxy &a) const
Utility function for use in getAnalyticalIntegral().
RooArgSet is a container object that can hold multiple RooAbsArg objects.
A class to maintain the context for squashing of RooFit models into code.
std::string buildCall(std::string const &funcname, Args_t const &...args)
Build the code to call the function with name funcname, passing some arguments.
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.
std::span< double > output()
RooBatchCompute::Config config(RooAbsArg const *arg) const
Implementation of the Gamma PDF for RooFit/RooStats.
std::string buildCallToAnalyticIntegral(Int_t code, const char *rangeName, RooFit::Detail::CodeSquashContext &ctx) const override
This function defines the analytical integral translation for the class.
Int_t getGenerator(const RooArgSet &directVars, RooArgSet &generateVars, bool staticInitOK=true) const override
Load generatedVars with the subset of directVars that we can generate events for, and return a code t...
void doEval(RooFit::EvalContext &) const override
Compute multiple values of Gamma PDF.
double analyticalIntegral(Int_t code, const char *rangeName=nullptr) const override
Implements the actual analytical integral(s) advertised by getAnalyticalIntegral.
double evaluate() const override
Evaluate this PDF / function / constant. Needs to be overridden by all derived classes.
void translate(RooFit::Detail::CodeSquashContext &ctx) const override
This function defines a translation for each RooAbsReal based object that can be used to express the ...
void generateEvent(Int_t code) override
algorithm adapted from code example in: Marsaglia, G.
Int_t getAnalyticalIntegral(RooArgSet &allVars, RooArgSet &analVars, const char *rangeName=nullptr) const override
Interface function getAnalyticalIntergral advertises the analytical integrals that are supported.
static TRandom * randomGenerator()
Return a pointer to a singleton random-number generator implementation.
double max(const char *rname=nullptr) const
Query upper limit of range. This requires the payload to be RooAbsRealLValue or derived.
double min(const char *rname=nullptr) const
Query lower limit of range. This requires the payload to be RooAbsRealLValue or derived.
virtual Double_t Gaus(Double_t mean=0, Double_t sigma=1)
Samples a random number from the standard Normal (Gaussian) Distribution with the given mean and sigm...
virtual Double_t Uniform(Double_t x1=1)
Returns a uniform deviate on the interval (0, x1).
double gamma_cdf(double x, double alpha, double theta, double x0=0)
Cumulative distribution function of the gamma distribution (lower tail).
void compute(Config cfg, Computer comp, std::span< double > output, VarSpan vars, ArgSpan extraArgs={})
void checkRangeOfParameters(const RooAbsReal *callingClass, std::initializer_list< const RooAbsReal * > pars, double min=-std::numeric_limits< double >::max(), double max=std::numeric_limits< double >::max(), bool limitsInAllowedRange=false, std::string const &extraMessage="")
Check if the parameters have a range, and warn if the range extends below / above the set limits.
Double_t Log(Double_t x)
Returns the natural logarithm of x.
Double_t GammaDist(Double_t x, Double_t gamma, Double_t mu=0, Double_t beta=1)
Computes the density function of Gamma distribution at point x.