source: PSPA/Interface_Web/trunk/pspaWT/sources/controler/include/carteChamp.h @ 257

Last change on this file since 257 was 257, checked in by garnier, 11 years ago

refactoring

File size: 501 bytes
Line 
1#ifndef CARTECHAMP_SEEN
2#define CARTECHAMP_SEEN
3
4#include <iostream>
5#include <sstream>
6#include <vector>
7#include "mathematicalTools.h"
8
9
10using namespace std;
11
12class carteChamp
13
14{
15
16
17
18 public :
19
20  carteChamp() {;}
21virtual ~carteChamp() {;}
22
23virtual  int numberOfPoint() const
24 {
25   cout << " numberOfPoint() carteChamp appel insolite par CLASSE DE BASE " << endl;
26   return 0;
27 }
28
29// champ en Gauss
30 virtual TRIDVECTOR champ_rthetaz_AtPoint(double r, double theta,  double z ) const = 0;
31
32};
33
34#endif
Note: See TracBrowser for help on using the repository browser.