1 |
francois |
979 |
#ifndef _POLYCRISTAL_
|
2 |
|
|
#define _POLYCRISTAL_
|
3 |
|
|
|
4 |
|
|
#include <vector>
|
5 |
francois |
983 |
#include <string>
|
6 |
francois |
979 |
|
7 |
|
|
class Poly_Point;
|
8 |
|
|
|
9 |
|
|
class Polycristal
|
10 |
|
|
{
|
11 |
|
|
public:
|
12 |
|
|
Polycristal(char *fichier);
|
13 |
|
|
Polycristal(int nbParticules);
|
14 |
francois |
983 |
Polycristal(std::vector<double> &listepoint,std::string nom);
|
15 |
francois |
979 |
|
16 |
|
|
Polycristal(Polycristal& mdd);
|
17 |
|
|
~Polycristal();
|
18 |
|
|
|
19 |
|
|
std::vector<Poly_Point*> random_particules(int nbParticules);
|
20 |
|
|
|
21 |
|
|
protected:
|
22 |
francois |
983 |
std::string nomfichier;
|
23 |
francois |
979 |
|
24 |
|
|
|
25 |
|
|
};
|
26 |
|
|
|
27 |
|
|
#endif // _POLYCRISTAL_
|