CMS 3D CMS Logo

ChiSquared.h

Go to the documentation of this file.
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

Generated on Tue Jun 9 17:26:02 2009 for CMSSW by  doxygen 1.5.4