Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:01:12

0001 #ifndef GammaSeries_H
0002 #define GammaSeries_H
0003 
0004 /** Returns the series summation of the series representation 
0005  *  of the incomplete gamma function P(a,x). 
0006  *  source: Numerical Recipes
0007  */
0008 extern float GammaSeries(float a, float x);
0009 
0010 #endif