Salome HOME
Merge from BR_V5_DEV 16Feb09
[modules/med.git] / src / MEDMEMBinTest / tests / testUGeoNameMeshEntities.cxx
1 //  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 //  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 //  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 //  This library is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU Lesser General Public
8 //  License as published by the Free Software Foundation; either
9 //  version 2.1 of the License.
10 //
11 //  This library is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 //  Lesser General Public License for more details.
15 //
16 //  You should have received a copy of the GNU Lesser General Public
17 //  License along with this library; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 //  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
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 }