Salome HOME
Merge from BR_V5_DEV 16Feb09
[tools/medcoupling.git] / src / ParaMEDMEM / ICoCoTrioField.hxx
1 //  Copyright (C) 2007-2008  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 __ICOCOTRIOFIELD_HXX__
20 #define __ICOCOTRIOFIELD_HXX__
21
22 #include "ICoCoField.hxx"
23
24 #include <string>
25
26 namespace ICoCo
27 {
28   /*!
29     \brief structure for coupling Trio codes via the ICoCo interface
30
31     This structure contains all the necessary information 
32     for constructing a ParaMEDMEM::ParaFIELD (with the addition of the MPI
33     communicator). The ICoCo API specifies two kinds of calls for
34     the ICoCo::Field : either with the mesh only or with the entire information (mesh and field).
35     This structure can therefore be left without _time, _nb_field_components, _field
36     information, which are related to the field values.
37   */
38   class TrioField : public Field
39   {
40   public:
41     TrioField() { _connectivity=0; _coords=0; _field=0; _has_field_ownership=false; }
42     ~TrioField() { delete[] _connectivity; delete[] _coords; if (_has_field_ownership) delete[] _field; }
43   public:
44     int _mesh_dim;
45     int _space_dim;
46     int _nbnodes;
47     int _nodes_per_elem;
48     int _nb_elems;
49     int _itnumber;
50     int* _connectivity;
51     double* _coords;
52     double _time1,_time2;
53     int _nb_field_components;
54     double* _field;
55     bool _has_field_ownership;
56   };
57 }
58
59 #endif