123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
-
-
-
-
-
-
- #ifndef __TEMINTEGRATIONKERNEL_H
- #define __TEMINTEGRATIONKERNEL_H
-
- #include "integrationkernel.h"
- #include "emearth1d.h"
-
- namespace Lemma {
-
-
-
-
-
-
-
-
- class TemIntegrationKernel : public IntegrationKernel<Real>{
-
-
-
-
- public:
-
-
-
- static TemIntegrationKernel* New();
-
- void Delete();
-
-
-
-
-
-
-
-
- Real Argument(const Real&x, const int& iRelated);
-
- int GetNumRel();
-
-
- void SetEMEarth1D(EMEarth1D* earth);
-
-
- void SetTransmitter(WireAntenna *antennae);
-
-
- void SetDipole(DipoleSource* dipolesource);
-
-
- void SetReceiver(ReceiverPoints *receiver);
-
-
-
- void SetComponent(const FIELDCOMPONENT& comp);
-
-
-
-
- protected:
-
-
-
-
- TemIntegrationKernel (const std::string& name);
-
-
- ~TemIntegrationKernel ();
-
- void Release();
-
-
-
- FIELDCOMPONENT component;
-
- EMEarth1D* EmEarthInt;
-
- WireAntenna* Trans;
-
- DipoleSource* DipoleS;
-
- ReceiverPoints* Receivers;
-
- private:
-
- };
-
- }
-
- #endif
|