123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
-
-
-
-
-
-
- #ifndef SINTRANSINTEGRATIONKERNEL_INC
- #define SINTRANSINTEGRATIONKERNEL_INC
-
- #include "integrationkernel.h"
-
- namespace Lemma {
-
-
-
-
-
-
- class SinTransIntegrationKernel : public IntegrationKernel<Real> {
-
- public:
-
-
-
-
-
- static SinTransIntegrationKernel* New();
-
-
-
- void Delete();
-
-
-
- Real Argument(const Real&x, const int& iRelated);
-
- int GetNumRel();
-
-
- void SetA(const Real& A);
-
-
-
- void SetIntegral(const int& i);
-
-
- Real GetAnalytical(const Real& B);
-
-
-
-
-
-
- protected:
-
-
-
-
-
- void Release();
-
-
- SinTransIntegrationKernel (const std::string& name);
-
-
- ~SinTransIntegrationKernel ();
-
-
-
-
- Real A;
-
-
- int Integral;
-
- private:
-
- };
-
-
- }
-
- #endif
|