123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
-
-
-
-
-
-
-
- #ifndef FHTKEY_INC
- #define FHTKEY_INC
-
- #include "hankeltransform.h"
-
- namespace Lemma {
-
-
-
- class FHTKey : public HankelTransform {
-
- friend std::ostream &operator<<(std::ostream &stream,
- const FHTKey &ob);
-
- public:
-
-
-
-
-
- static FHTKey* New();
-
-
-
- void Delete();
-
-
-
-
-
- Complex Zgauss(const int &ikk, const EMMODE &imode,
- const int &itype, const Real &rho,
- const Real &wavef, KernelEm1DBase *Kernel);
-
-
-
- void ComputeRelated(const Real& rho, KernelEm1DBase* Kernel);
-
- void ComputeRelated(const Real& rho, std::vector< KernelEm1DBase* > KernelVec);
-
- void ComputeRelated(const Real& rho, KernelEM1DManager* KernelManager);
-
-
-
-
-
- protected:
-
-
-
-
- FHTKey (const std::string& name);
-
-
- ~FHTKey ();
-
-
-
- void Release();
-
- private:
-
-
-
-
- static const Eigen::Matrix<Real, 201, 3> WT201;
-
-
- Eigen::Matrix<Complex, Eigen::Dynamic, Eigen::Dynamic> Zans;
-
- };
-
- }
-
- #endif
|