MEDnoeudsEcr.c

Aller à la documentation de ce fichier.
00001 /*  This file is part of MED.
00002  *
00003  *  COPYRIGHT (C) 1999 - 2015  EDF R&D, CEA/DEN
00004  *  MED is free software: you can redistribute it and/or modify
00005  *  it under the terms of the GNU Lesser General Public License as published by
00006  *  the Free Software Foundation, either version 3 of the License, or
00007  *  (at your option) any later version.
00008  *
00009  *  MED is distributed in the hope that it will be useful,
00010  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
00011  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00012  *  GNU Lesser General Public License for more details.
00013  *
00014  *  You should have received a copy of the GNU Lesser General Public License
00015  *  along with MED.  If not, see <http://www.gnu.org/licenses/>.
00016  */
00017 
00018 
00019 #include <med.h>
00020 #include <med_config.h>
00021 
00022 med_err
00023 MEDnoeudsEcr(med_idt fid,char *maa,med_int mdim,med_float *coord,
00024              med_mode_switch mode_coo,
00025              med_repere repere,char *nomcoo, char *unicoo,char *nom,
00026              med_booleen inom,med_int *num,med_booleen inum,med_int *fam,
00027              med_int nnoeuds)
00028 {
00029   med_err ret;
00030 
00031   /* ecriture des coordonnees */
00032   if ((ret = MEDcoordEcr(fid,maa,mdim,coord,mode_coo,
00033                          nnoeuds,repere,nomcoo,
00034                          unicoo)) < 0)
00035     return -1;
00036 
00037   /* ecriture des noms (facultatifs) */
00038   if (inom == MED_VRAI)
00039     if ((ret = MEDnomEcr(fid,maa,nom,nnoeuds,MED_NOEUD,MED_POINT1)) < 0)
00040       return -1;
00041 
00042   /* ecriture des numeros (facultatifs) */
00043   if (inum == MED_VRAI)
00044     if ((ret = MEDnumEcr(fid,maa,num,nnoeuds,MED_NOEUD,MED_POINT1)) < 0)
00045       return -1;
00046 
00047   /* ecriture des numeros de familles */
00048   if ((ret = MEDfamEcr(fid,maa,fam,nnoeuds,MED_NOEUD,MED_POINT1)) < 0)
00049     return -1;
00050 
00051   return 0;
00052 }

Généré le Thu Oct 8 14:26:16 2015 pour MED fichier par  doxygen 1.6.1