#include <Gamma.hh>
Definition at line 46 of file Gamma.hh.
double MyGamma::Gamma |
( |
double |
z | ) |
|
Definition at line 42 of file Gamma.cc.
55 double v = LnGamma(z);
double MyGamma::Gamma |
( |
double |
a, |
|
|
double |
x |
|
) |
| |
Definition at line 60 of file Gamma.cc.
69 if (a <= 0 || x <= 0)
return 0;
71 if (x < (a+1))
return GamSer(a,x);
72 else return GamCf(a,x);
The documentation for this class was generated from the following files:
- geant4.10.03.p01/source/parameterisations/gflash/include/Gamma.hh
- geant4.10.03.p01/source/parameterisations/gflash/src/Gamma.cc