CMS 3D CMS Logo

Macros | Functions
GammaSeries.cc File Reference
#include "CommonTools/Statistics/src/GammaSeries.h"
#include <iostream>
#include <cmath>

Go to the source code of this file.

Macros

#define EPS   3.0e-7
 
#define ITMAX   100
 

Functions

float GammaSeries (float a, float x)
 

Macro Definition Documentation

◆ EPS

#define EPS   3.0e-7

Definition at line 6 of file GammaSeries.cc.

Referenced by GammaSeries().

◆ ITMAX

#define ITMAX   100

Definition at line 5 of file GammaSeries.cc.

Referenced by GammaSeries().

Function Documentation

◆ GammaSeries()

float GammaSeries ( float  a,
float  x 
)

Returns the series summation of the series representation of the incomplete gamma function P(a,x). source: Numerical Recipes

Definition at line 8 of file GammaSeries.cc.

References a, DMR_cfg::cerr, EPS, ITMAX, and x.

Referenced by IncompleteGammaComplement::ln(), and IncompleteGammaComplement::value().

8  {
9  if (x < 0.0)
10  std::cerr << "GammaSeries::negative argument x" << std::endl;
11 
12  if (x == 0.)
13  return 0.;
14 
15  if (a == 0.) // this happens at the end, but save all the iterations
16  return 0.;
17 
18  // coefficient c_n of x^n is Gamma(a)/Gamma(a+1+n), which leads to the
19  // recurrence relation c_n = c_(n-1) / (a+n-1) with c_0 = 1/a
20  double term = 1 / a;
21  double sum = term;
22  double aplus = a;
23  for (int index = 1; index <= ITMAX; index++) {
24  ++aplus;
25  term *= x / aplus;
26  sum += term;
27  if (fabs(term) < fabs(sum) * EPS)
28  // global coefficient e^-x * x^a / Gamma(a)
29  return sum;
30  }
31  std::cerr << "GammaSeries::a too large, ITMAX too small" << std::endl;
32  return 0.;
33 }
#define ITMAX
Definition: GammaSeries.cc:5
#define EPS
Definition: GammaSeries.cc:6
double a
Definition: hdecay.h:119
float x