12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
-
-
-
-
-
-
- #ifndef __hankeltransform_h
- #define __hankeltransform_h
-
- #include "KernelEM1DSpec.h"
- #include "KernelEM1DManager.h"
-
- namespace Lemma {
-
- class KernelEM1DBase;
-
-
-
-
-
-
- class HankelTransform : public LemmaObject {
-
- public:
-
-
- friend std::ostream &operator<<(std::ostream &stream,
- const HankelTransform &ob);
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- virtual Complex Zgauss(const int &ikk, const EMMODE &imode,
- const int &itype, const Real &rho,
- const Real &wavef, KernelEM1DBase* Kernel)=0;
-
-
-
- virtual void ComputeRelated(const Real& rho, std::shared_ptr<KernelEM1DBase> Kernel);
-
- virtual void ComputeRelated(const Real& rho, std::vector< std::shared_ptr<KernelEM1DBase> > KernelVec);
-
- virtual void ComputeRelated(const Real& rho, std::shared_ptr<KernelEM1DManager> KernelManager);
-
-
-
-
-
- virtual inline std::string GetName() const {
- return CName;
- }
-
-
-
- protected:
-
-
-
-
- HankelTransform ( );
-
-
- HankelTransform ( const YAML::Node& node );
-
-
- ~HankelTransform ( );
-
- private:
-
-
- static constexpr auto CName = "HankelTransform";
-
- };
-
- }
-
- #endif
|