![]() |
![]() |
00001 #ifndef ChiSquared_H 00002 #define ChiSquared_H 00003 00004 00020 class ChiSquared { 00021 00022 public: 00023 00024 ChiSquared(float value, float ndf) : theValue(value), theNDF(ndf) {} 00025 00026 float value() const; 00027 float degreesOfFreedom() const; 00028 float probability() const; 00029 float lnProbability() const; 00030 00031 private: 00032 00033 float theValue, theNDF; 00034 00035 }; 00036 00037 #endif