41 static const double erflim = 5.0;
56 m(
"m",
"Dependent", this, _m),
57 m0(
"m0",
"M0", this, _m0),
58 sigma(
"sigma",
"Sigma", this, _sigma),
59 alpha(
"alpha",
"Alpha", this, _alpha),
60 n(
"n",
"Order", this, _n)
67 RooAbsPdf(other,
name),
m(
"m", this, other.
m), m0(
"m0", this, other.m0),
68 sigma(
"sigma", this, other.
sigma), alpha(
"alpha", this, other.alpha),
77 if (
alpha < 0) t = -t;
79 double absAlpha = std::abs((
double)
alpha);
86 double b=
n/absAlpha - absAlpha;
115 static const double sqrtPiOver2 = 1.2533141373;
116 static const double sqrt2 = 1.4142135624;
122 if( std::abs(
n-1.0) < 1.0e-05 )
125 double sig = std::abs((
double)
sigma);
127 double tmin = (
m.
min(rangeName)-
m0)/sig;
128 double tmax = (
m.
max(rangeName)-
m0)/sig;
136 double absAlpha = std::abs((
double)
alpha);
138 if( tmin >= -absAlpha ) {
142 else if( tmax <= -absAlpha ) {
144 double b =
n/absAlpha - absAlpha;
147 result +=
a*sig*( log(
b-tmin) - log(
b-tmax) );
156 double b =
n/absAlpha - absAlpha;
160 term1 =
a*sig*( log(
b-tmin) - log(
n/absAlpha));
167 double term2 = sig*sqrtPiOver2*(
ApproxErf(tmax/sqrt2)
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
RooAbsReal is the common abstract base class for objects that represent a real value and implements f...
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.
virtual void compute(cudaStream_t *, Computer, RestrictArr, size_t, const VarVector &, ArgVector &)=0
PDF implementing the Crystal Ball line shape.
double ApproxErf(double arg) const
Int_t getAnalyticalIntegral(RooArgSet &allVars, RooArgSet &analVars, const char *rangeName=nullptr) const override
Interface function getAnalyticalIntergral advertises the analytical integrals that are supported.
void computeBatch(cudaStream_t *, double *output, size_t nEvents, RooFit::Detail::DataMap const &) const override
Compute multiple values of Crystal ball Shape distribution.
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.
Int_t getMaxVal(const RooArgSet &vars) const override
Advertise that we know the maximum of self for given (m0,alpha,n,sigma)
double maxVal(Int_t code) const override
Return maximum value for set of observables identified by code assigned in getMaxVal.
RooSpan< const double > at(RooAbsArg const *arg, RooAbsArg const *caller=nullptr)
static std::complex< double > erf(const std::complex< double > z)
complex erf function
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.
R__EXTERN RooBatchComputeInterface * dispatchCUDA
R__EXTERN RooBatchComputeInterface * dispatchCPU
This dispatch pointer points to an implementation of the compute library, provided one has been loade...
LongDouble_t Power(LongDouble_t x, LongDouble_t y)
Returns x raised to the power y.