12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
-
-
-
-
-
-
- #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
|