added dynamic Gauss KT

This commit is contained in:
nemu
2009-02-27 09:45:52 +00:00
parent 29ab15581e
commit 0fc7f8c4bf
4 changed files with 207 additions and 13 deletions

View File

@ -223,6 +223,8 @@ class PTheory
virtual void CalculateGaussLFIntegral(const double *val) const;
virtual void CalculateLorentzLFIntegral(const double *val) const;
virtual double GetLFIntegralValue(const double t) const;
virtual void CalculateDynKTLF(const double *val, int tag) const;
virtual double GetDynKTLFValue(const double t) const;
// variables
bool fValid;
@ -240,6 +242,8 @@ class PTheory
mutable double fPrevParam[THEORY_MAX_PARAM]; ///< needed for LF-stuff
mutable PDoubleVector fLFIntegral; ///< needed for LF-stuff. Keeps the non-analytic integral values
mutable double fDynLFdt;
mutable PDoubleVector fDynLFFuncValue; ///< needed for LF-stuff. Keeps the dynamic LF KT function values
};
#endif // _PTHEORY_H_