C++ main module for gpm Package  1.0
MATH_EFunction.h
Go to the documentation of this file.
1 #ifndef MATH_EFunction_H
2 #define MATH_EFunction_H
3 
5 
15  SP_OBJECT(MATH_EFunction);
16 
17  // ATTRIBUTES
18 
19 
20 protected:
21  // METHODS
22 
23  // CONSTRUCTORS
24 
28  setSymbol("E");
29  }
30 
31 
32 
33  // DESTRUCTORS
34 
35 
38  virtual ~MATH_EFunction(void) {
39  }
40 
41 
42 private:
43 
44 public:
47  static inline SP::MATH_EFunction New() {
48  SP::MATH_EFunction p(new MATH_EFunction(),MATH_EFunction::Delete());
49  p->setThis(p);
50  return p;
51  }
52 
55  virtual SP::MATH_FunctionNode newInstance() const {
56  return New();
57  }
58 
59 
60  // SET methods
61 
62 
63  // GET methods
64 
65 
66 public:
67  // OTHERS methods
70  virtual double computeFunction(const double* values,const int& n) const {
71  return floor(values[0]);
72  }
73 
74 };
75 
76 #endif
MATH_EFunction(void)
create
Definition: MATH_EFunction.h:27
This class decribes a numerical function.
Definition: MATH_NumericalFunction.h:14
static SP::MATH_EFunction New()
create a node expression
Definition: MATH_EFunction.h:47
virtual ~MATH_EFunction(void)
destroy
Definition: MATH_EFunction.h:38
This class decribes the floor function.
Definition: MATH_EFunction.h:14
virtual SP::MATH_FunctionNode newInstance() const
create a node expression
Definition: MATH_EFunction.h:55
void setSymbol(const tString &tag)
set the symbol
Definition: MATH_LeafExpression.h:86
virtual double computeFunction(const double *values, const int &n) const
compute the function
Definition: MATH_EFunction.h:70
DEFINE_SPTR(MATH_EFunction)
class Free introduced for deleting a smart pointer
Definition: CORE_Object.h:106