]> SALOME platform Git repositories - modules/med.git/blob - src/MEDMEM/duplicateMED.cxx
Salome HOME
NRI : Merge from V1_2.
[modules/med.git] / src / MEDMEM / duplicateMED.cxx
1 //  MED MEDMEM : MED files in memory
2 //
3 //  Copyright (C) 2003  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.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org 
21 //
22 //
23 //
24 //  File   : duplicateMED.cxx
25 //  Module : MED
26
27 using namespace std;
28 #include<string>
29
30 #include "MEDMEM_Exception.hxx"
31 #include "MEDMEM_Med.hxx"
32
33 void usage(char * name)
34 {
35   cout << "  " << name << " <input med file> <output med file> " <<endl ;
36   cout << "    " << "(the two file name are mandatory)" << endl ;
37   exit(-1);
38 }
39
40 int main (int argc, char ** argv) {
41   
42   if (argc != 3) usage(argv[0]);
43   
44   string filenameIN = argv[1] ;
45   string filenameOUT = argv[2] ;
46   
47   try {
48     
49     MED myMed(MED_DRIVER,filenameIN) ; // do readFilestruct !
50
51     // we read all meshes and fields in filenameIN
52     myMed.read() ;
53
54     // we write all in file filenameOUT :
55     int id = myMed.addDriver(MED_DRIVER,filenameOUT) ;
56     myMed.write(id);
57
58   } catch (MEDEXCEPTION& ex) {
59     MESSAGE(ex.what()) ;
60   }
61
62 }