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

# User Rev Content
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_