Salome HOME
Merge from BR_V5_DEV 16Feb09
[modules/med.git] / src / MEDMEMBinTest / testConvertPolygon.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 #include "MEDMEM_Mesh.hxx"
23
24 int main()
25 {
26   // Get file to convert.
27   string file;
28   // During 'make check' $srcdir exists
29   if ( getenv("srcdir") ) {
30     file = string( getenv("srcdir")) + "/../../resources/";
31   }
32   else if ( getenv( "MED_ROOT_DIR")) {
33     // after installation
34     file = string( getenv( "MED_ROOT_DIR" )) + "/share/salome/resources/med/";
35   }
36   else
37   {
38     return -1;
39   }
40   file += "BoxTetra2.med";
41   cout << "File to cnvert: " << file << endl;
42   // convertion
43   MEDMEM::MESH mesh(MEDMEM::MED_DRIVER, file.c_str(), "BoxTetra2");
44   mesh.convertToPoly();
45
46   // File to store conversion result
47   if ( getenv("TMP") )
48     file = getenv("TMP");
49   else if ( getenv("TMPDIR") )
50     file = getenv("TMPDIR");
51   else
52     file = "/tmp";
53   file += "/pointe_testConvertPolygon.med";
54
55   int id=mesh.addDriver(MEDMEM::MED_DRIVER,file.c_str(),"mesh");
56   mesh.write(id);
57
58   remove(file.c_str());
59
60   return 0;
61 }