Salome HOME
MEDMEM suppression
[modules/med.git] / src / MEDSPLITTER / MEDSPLITTER_MESHCollectionMedAsciiDriver.H
1 // Copyright (C) 2007-2013  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19 #ifndef MEDSPLITTER_MESHCOLLECTIONMEDASCIIDRIVER_H
20 #define MEDSPLITTER_MESHCOLLECTIONMEDASCIIDRIVER_H
21
22
23 #include <libxml/tree.h>
24 #include <libxml/parser.h>
25 #include <libxml/xpath.h>
26 #include <libxml/xpathInternals.h>
27
28 /*!reads a distributed field
29  * 
30  * \param fields vector of fields (one field per subdomain)
31  * \param fieldname name of the field
32  * \param itnumber number of iteration
33  * \param ordernumber internal number inside the iteration
34  * */
35 template <class T>
36 void MESHCollectionMedAsciiDriver::_readFields(vector<MEDMEM::FIELD<T>* >& fields,char* fieldname, int itnumber, int ordernumber)
37 {
38   for (unsigned i=0; i<_collection->getMesh().size(); i++)
39     {
40       char filename[256];
41       strcpy(filename,_filename[i].c_str());
42       cout << "maillage : " << filename << " champ : " << fieldname << endl;
43       //                MEDMEM::FIELD<T>* field = new MEDMEM::FIELD<T>(MEDMEM::MED_DRIVER,filename,fieldname,itnumber,ordernumber);
44       fields.push_back (new MEDMEM::FIELD<T>(MEDMEM::MED_DRIVER,filename,fieldname,itnumber,ordernumber));
45     }
46 }
47
48
49 /*!writes a distributed field
50  * 
51  * \param fields vector of fields (one field per subdomain)
52  * \param fieldname name of the field
53  * */
54 template <class T>
55 void MESHCollectionMedAsciiDriver::_writeFields(vector<MEDMEM::FIELD<T>* >& fields,char* fieldname)
56 {
57   for (unsigned i=0; i<_collection->getMesh().size(); i++)
58     {
59       char filename[256];
60       strcpy(filename,_filename[i].c_str());
61       int driverid = fields[i]->addDriver(MEDMEM::MED_DRIVER, filename, fieldname);
62       fields[i]->write(driverid);                
63     }
64 }
65
66 #endif