#ifndef TRANSFELEC_SEEN #define TRANSFELEC_SEEN //#include // D. Yvon, CE Saclay, DAPNIA/SPP, 08/99 #ifdef __MWERKS__ #include #else #include #endif typedef complex Dcomplex; class TransFuncElec{ public: TransFuncElec() { Dcomplex Imag((double)0.,(double)1.); jImagPur=Imag; } ~TransFuncElec(){ } Dcomplex TsFunc(double Omega); // Omega en radian/s private: Dcomplex H1(double w); Dcomplex H2(double w); Dcomplex H3(double w); Dcomplex H4(double w); Dcomplex jImagPur; }; #endif