#ifndef CARTECHAMP_SEEN #define CARTECHAMP_SEEN #include #include #include #include "mathematicalTools.h" using namespace std; class carteChamp { public : carteChamp() {;} virtual ~carteChamp() {;} virtual int numberOfPoint() const { cout << " numberOfPoint() carteChamp appel insolite par CLASSE DE BASE " << endl; return 0; } // champ en Gauss virtual TRIDVECTOR champ_rthetaz_AtPoint(double r, double theta, double z ) const = 0; }; #endif