]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - RALICE/AliMath.h
New version of RALICE introduced
[u/mrichter/AliRoot.git] / RALICE / AliMath.h
index f29aaaced11f42c0443753edf3d0aa4420f4986e..4b3485da5d04dc78c500a7e0aa786fab65878463 100644 (file)
@@ -5,24 +5,6 @@
 
 /* $Id$ */
 
-///////////////////////////////////////////////////////////////////////////
-// Class AliMath
-// Various mathematical tools which may be very convenient while
-// performing physics analysis.
-//
-// Example : Probability of a Chi-squared value
-// =========
-//
-// AliMath M;
-// Float_t chi2=20  ;          // The chi-squared value
-// Int_t ndf=12;               // The number of degrees of freedom
-// Float_t p=M.Prob(chi2,ndf); // The probability that at least a Chi-squared
-//                             // value of chi2 will be observed, even for a
-//                             // correct model
-//
-//--- NvE 14-nov-1998 UU-SAP Utrecht
-///////////////////////////////////////////////////////////////////////////
 #include <iostream.h>
 #include <math.h>
  
@@ -44,7 +26,7 @@ class AliMath : public TObject
   Float_t GamSer(Float_t a,Float_t x);  // Compute P(a,x) via serial representation
   Float_t GamCf(Float_t a,Float_t x);   // Compute P(a,x) via continued fractions
  
- ClassDef(AliMath,1) // Class definition to enable ROOT I/O
+ ClassDef(AliMath,1) // Various mathematical tools for physics analysis.
  
 };
 #endif