123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112 |
-
-
-
-
-
-
-
- #ifndef FHTKEY51_INC
- #define FHTKEY51_INC
-
- #include "hankeltransform.h"
-
- namespace Lemma {
-
-
-
- class FHTKey51 : public HankelTransform {
-
- friend std::ostream &operator<<(std::ostream &stream,
- const FHTKey51 &ob);
-
- public:
-
-
-
-
-
- static FHTKey51* 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:
-
-
-
-
- FHTKey51 (const std::string& name);
-
-
- ~FHTKey51 ();
-
-
-
- void Release();
-
- private:
-
-
-
-
- static const Eigen::Matrix<Real, 51, 3> WT51;
-
-
- Eigen::Matrix<Complex, Eigen::Dynamic, Eigen::Dynamic> Zans;
-
- };
-
- }
-
- #endif
|