BALL  1.4.2
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
fermiBaseFunction.h
Go to the documentation of this file.
1 // $Id: fermiBaseFunction.h,v 1.1 2005/11/21 19:27:02 anker Exp $
2 
3 #ifndef BALL_SCORING_COMMON_FERMIBASEFUNCTION
4 #define BALL_SCORING_COMMON_FERMIBASEFUNCTION
5 
7 
8 namespace BALL
9 {
10 
14  : public ScoringBaseFunction
15  {
16 
17  public:
18 
21  ;
22 
27  FermiBaseFunction(float lower, float upper)
28  ;
29 
31  void setLower(float lower)
32  ;
33 
35  void setUpper(float upper)
36  ;
37 
39  float calculate(float x) const
40  ;
41 
43  float calculate(float x, float lower, float upper)
44  ;
45 
46 
47  private:
48 
49  //_
51  ;
52 
53  //_
54  float a_;
55 
56  //_
57  float b_;
58 
59  };
60 
61 }
62 #endif // BALL_SCORING_COMMON_FERMIBASEFUNCTION