File indexing completed on 2025-01-18 09:54:35
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #ifndef ReverseExponential_h
0011 #define ReverseExponential_h 1
0012 #include "CLHEP/GenericFunctions/AbsFunction.hh"
0013 #include "CLHEP/GenericFunctions/Parameter.hh"
0014 namespace Genfun {
0015
0016
0017
0018
0019
0020 class ReverseExponential : public AbsFunction {
0021
0022 FUNCTION_OBJECT_DEF(ReverseExponential)
0023
0024 public:
0025
0026
0027 ReverseExponential();
0028
0029
0030 ReverseExponential(const ReverseExponential &right);
0031
0032
0033 virtual ~ReverseExponential();
0034
0035
0036 virtual double operator ()(double argument) const override;
0037 virtual double operator ()(const Argument & a) const override {return operator() (a[0]);}
0038
0039
0040 Parameter & decayConstant();
0041
0042
0043 Derivative partial (unsigned int) const override;
0044
0045
0046 virtual bool hasAnalyticDerivative() const override {return true;}
0047
0048 private:
0049
0050
0051 const ReverseExponential & operator=(const ReverseExponential &right);
0052
0053
0054 Parameter _decayConstant;
0055
0056 };
0057 }
0058
0059 #endif