ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/REPOS_ERICCA/poly_occ/src/polycristal.h
Revision: 983
Committed: Wed Oct 24 17:41:40 2018 UTC (6 years, 6 months ago) by francois
Content type: text/plain
File size: 490 byte(s)
Log Message:
integration de poly_occ dans magic

File Contents

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