Salome HOME
Final version of the V2_2_0 in the main trunk of the CVS tree.
[modules/med.git] / src / MEDMEM / tests / testUGeoNameMeshEntities.cxx
1 //  Copyright (C) 2003  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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
19 //
20 //
21 //
22 //  File   : testUGeoNameMeshEntities.cxx
23 //  Module : MED
24
25 #include "MEDMEM_DriversDef.hxx"
26
27 using namespace std;
28 void usage(char * name)
29 {
30   cout << "    " << name << endl;
31   cout << "    " << "displays all avalaible geometry elements" << endl;
32   cout << "    " << "display then all avalaible entities, and for each" << endl;
33   cout << "    " << "all possible geomety element" << endl;
34   cout << endl;
35   exit(-1);
36 }
37
38 int main (int argc, char ** argv) 
39 {
40   
41   if (argc < 1) usage(argv[0]);
42
43
44   cout << "GEO_NAME Test" << endl ;
45   cout << "-------------" << endl << endl;
46   MED_EN::GEO_NAME::const_iterator currentGeom;
47   for (currentGeom  = MED_EN::geoNames.begin();
48        currentGeom != MED_EN::geoNames.end(); 
49        currentGeom++) 
50   {
51                 cout << (*currentGeom).second << endl;
52   };
53
54   MED_EN::MESH_ENTITIES::const_iterator currentEntity;
55   list<MED_EN::medGeometryElement>::const_iterator currentGeometry;
56
57   cout << endl; 
58   cout << "MESH_ENTITIES Test" << endl ;
59   cout << "------------------" << endl << endl;
60   for (currentEntity  = MED_EN::meshEntities.begin();
61        currentEntity != MED_EN::meshEntities.end(); 
62        currentEntity++) 
63   {
64         cout << (*((MED_EN::entNames).find((*currentEntity).first))).second <<endl;
65         for (currentGeometry  = (*currentEntity).second.begin();
66              currentGeometry != (*currentEntity).second.end(); 
67              currentGeometry++) 
68         {
69         cout << MED_EN::geoNames[(MED_EN::medGeometryElement)(*currentGeometry)] << endl;
70         }
71         cout << endl;
72   }
73
74 }