1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
-
-
-
-
-
-
- #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 = 0 ;
-
-
-
- protected:
-
-
-
-
- HankelTransform ( );
-
-
- HankelTransform ( const YAML::Node& node );
-
-
- ~HankelTransform ( );
-
- private:
-
-
- static constexpr auto CName = "HankelTransform";
-
- };
-
- }
-
- #endif
|