]> SALOME platform Git repositories - tools/medcoupling.git/blob - doc/MEDMEM/MESHgeneral.cxx
Salome HOME
Copyrights update
[tools/medcoupling.git] / doc / MEDMEM / MESHgeneral.cxx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 // 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either 
7 // version 2.1 of the License.
8 // 
9 // This library is distributed in the hope that it will be useful 
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public  
15 // License along with this library; if not, write to the Free Software 
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/
19 //
20 using namespace std;
21 #include "MEDMEM_Mesh.hxx"
22
23 using namespace MEDMEM ;
24
25 int main (int argc, char ** argv) {
26
27   const string MedFile = "pointe.med" ;
28   const string MeshName = "maa1" ;
29   
30   // create a MESH object by reading it on file :
31   MESH myMesh(MED_DRIVER,MedFile,MeshName) ;
32
33   string Name = myMesh.getName() ;
34   if (Name != MeshName) {
35     cout << "Error when reading mesh name : We ask for mesh #"
36          << MeshName <<"# and we get mesh #"<< Name <<"#"<< endl << endl ;
37     return -1;
38   }
39
40   cout << "Mesh name : " << Name  << endl << endl ; 
41
42   int SpaceDimension = myMesh.getSpaceDimension() ;
43   int MeshDimension = myMesh.getMeshDimension() ;
44   
45   cout << "Space Dimension : " << SpaceDimension << endl << endl ; 
46   cout << "Mesh Dimension : " << MeshDimension << endl << endl ; 
47
48   return 0 ;
49 }