00001
00002
00003
00004
00005
00006
00007
00008
00009 #ifndef Exp_h
00010 #define Exp_h 1
00011 #include "CLHEP/GenericFunctions/AbsFunction.hh"
00012 #include "CLHEP/GenericFunctions/Parameter.hh"
00013
00014 namespace Genfun {
00015
00020 class Exp : public AbsFunction {
00021
00022 FUNCTION_OBJECT_DEF(Exp)
00023
00024 public:
00025
00026
00027 Exp();
00028
00029
00030 Exp(const Exp &right);
00031
00032
00033 virtual ~Exp();
00034
00035
00036 virtual double operator ()(double argument) const;
00037 virtual double operator ()(const Argument & a) const {return operator() (a[0]);}
00038
00039
00040 Derivative partial (unsigned int) const;
00041
00042
00043 virtual bool hasAnalyticDerivative() const {return true;}
00044
00045 private:
00046
00047
00048 const Exp & operator=(const Exp &right);
00049
00050 };
00051 }
00052 #endif