Chi2Dist.h
Go to the documentation of this file.
1 /* -*- mode: c++ -*- */
2 
13 #ifndef _Chi2Dist_H_
14 #define _Chi2Dist_H_
15 
16 #include "FunctionBase.h"
17 
18 namespace hippodraw {
19 
29 {
30 
31 protected:
32 
34  virtual void initialize ();
35 
36 public:
37 
39  Chi2Dist ();
40 
42  Chi2Dist ( double norm, double nu, double scale );
43 
44  virtual FunctionBase * clone () const;
45 
47  virtual double operator () ( double x ) const;
48 
49  virtual void initialParameters ( const FunctionHelper * helper );
50 
51 protected:
52 
53  virtual double derivByParm ( int i, double x ) const;
54 
55 };
56 
57 } // namespace hippodraw
58 
59 #endif // _Chi2Dist_H_

Generated for HippoDraw Class Library by doxygen