Salome HOME
committing the version in the main trunk of the CVS tree the branch
[modules/med.git] / src / MEDWrapper / V2_1 / MEDcoordEcr.cxx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 // 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either 
7 // version 2.1 of the License.
8 // 
9 // This library is distributed in the hope that it will be useful 
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public  
15 // License along with this library; if not, write to the Free Software 
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/
19 //
20 /*************************************************************************
21 * COPYRIGHT (C) 1999 - 2002  EDF R&D
22 * THIS LIBRARY IS FREE SOFTWARE; YOU CAN REDISTRIBUTE IT AND/OR MODIFY
23 * IT UNDER THE TERMS OF THE GNU LESSER GENERAL PUBLIC LICENSE 
24 * AS PUBLISHED BY THE FREE SOFTWARE FOUNDATION; 
25 * EITHER VERSION 2.1 OF THE LICENSE, OR (AT YOUR OPTION) ANY LATER VERSION.
26 *  
27 * THIS LIBRARY IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, BUT
28 * WITHOUT ANY WARRANTY; WITHOUT EVEN THE IMPLIED WARRANTY OF
29 * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. SEE THE GNU
30 * LESSER GENERAL PUBLIC LICENSE FOR MORE DETAILS.
31 *
32 * YOU SHOULD HAVE RECEIVED A COPY OF THE GNU LESSER GENERAL PUBLIC LICENSE
33 * ALONG WITH THIS LIBRARY; IF NOT, WRITE TO THE FREE SOFTWARE FOUNDATION,
34 * INC., 59 TEMPLE PLACE, SUITE 330, BOSTON, MA 02111-1307 USA
35 *
36 *************************************************************************/
37
38 #include "med_outils.hxx"
39 #include "med.hxx"
40
41 #include <stdlib.h>
42 #include <string.h>
43
44 namespace med_2_1{
45
46 med_err 
47 MEDcoordEcr(med_idt fid, char *maa, med_int mdim, med_float *coo, 
48             med_mode_switch mode_coo,med_int n,
49             med_mode_acces mode, med_repere type_rep, char *nom, char *unit)
50 {
51   med_idt maaid, noeid, dataset;
52   med_err ret;
53   med_size dimd[1];
54   char chemin[MED_TAILLE_MAA+MED_TAILLE_NOM+1];
55   med_int type_rep_int; 
56   /*
57    * On inhibe le gestionnaire d'erreur HDF
58    */
59   _MEDmodeErreurVerrouiller();
60
61   /*
62    * Si le maillage n'existe pas => erreur
63    */
64   strcpy(chemin,MED_MAA);
65   strcat(chemin,maa);
66   if ((maaid = _MEDdatagroupOuvrir(fid,chemin)) < 0)
67       return -1;
68
69   /*
70    * Si le Data Group "NOE" n'existe pas
71    * on le cree
72    */
73   /* EF : A faire : gerer le mode MED_REMP*/
74   if ((noeid = _MEDdatagroupOuvrir(maaid,MED_NOM_NOE)) < 0)
75     if ((noeid = _MEDdatagroupCreer(maaid,MED_NOM_NOE)) < 0)
76       return -1;
77
78   /*
79    * Creation du Data Set "COO"
80    */
81   dimd[0] = n*mdim;
82   if ((ret = _MEDdatasetNumEcrire(noeid,MED_NOM_COO,MED_REEL64,mode_coo,mdim,MED_ALL,MED_NOPF,0,MED_NOPG,dimd,
83                                   (unsigned char*) coo,mode)) < 0)
84     return -1;
85   
86   /*
87    * On re-ouvre le Data Set "COO" pour y placer des attributs
88    */
89   if ((dataset = _MEDdatasetOuvrir(noeid,MED_NOM_COO)) < 0)
90     return -1;
91
92   /*
93    * Attribut NBR (nombre de noeuds)
94    */
95   if ((ret = _MEDattrEntierEcrire(dataset,MED_NOM_NBR,&n,mode)) < 0)
96     return -1;
97
98   /*
99    * L'attribut "REP"
100    */
101   type_rep_int = (med_int) type_rep; 
102   if ((ret = _MEDattrEntierEcrire(dataset,MED_NOM_REP,&type_rep_int,mode)) < 0)
103     return -1;
104
105   /*
106    * Attribut "NOM"
107    */
108   if ((ret = _MEDattrStringEcrire(dataset,MED_NOM_NOM,mdim*MED_TAILLE_PNOM,nom,mode)) < 0)
109     return -1;
110
111   /*
112    * Attribut "UNI"
113    */
114   if ((ret = _MEDattrStringEcrire(dataset,MED_NOM_UNI,mdim*MED_TAILLE_PNOM,unit,mode)) < 0)
115     return -1;
116
117   /*
118    * On ferme tout
119    */
120   if ((ret = _MEDdatasetFermer(dataset)) < 0)
121     return -1;
122   if ((ret = _MEDdatagroupFermer(noeid)) < 0)
123     return -1;
124   if ((ret = _MEDdatagroupFermer(maaid)) < 0)
125     return -1;
126
127   return 0; 
128 }
129
130 }