MED fichier
MEDfilterAllocate.c
Aller à la documentation de ce fichier.
1 /* This file is part of MED.
2  *
3  * COPYRIGHT (C) 1999 - 2023 EDF R&D, CEA/DEN
4  * MED is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU Lesser General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * MED 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
12  * GNU Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public License
15  * along with MED. If not, see <http://www.gnu.org/licenses/>.
16  */
17 
18 
19 #include <med.h>
20 #include <med_config.h>
21 #include <med_outils.h>
22 
35 med_filter* MEDfilterAllocate(const int nfilter) {
36 
37  med_err _ret=0;
38  med_filter * _filter=NULL;
39  int _i=0;
42 
43  _filter=(med_filter*)calloc(nfilter,sizeof(med_filter));
44 
45  for (_i=0;_i<nfilter;++_i) {
46  if ( _MEDsetFilter(MED_MAX_FILTER_SPACES,_memspace, _diskspace,
47  0, 0, 0, 0, MED_UNDEF_INTERLACE,
49  MED_UNDEF_STMODE, MED_NO_PROFILE, &_filter[_i] ) <0) {
51  }
52  _filter[_i].nspaces=0;
53  }
54 
55 
56  return _filter;
57 
58 }
MED_MAX_FILTER_SPACES
#define MED_MAX_FILTER_SPACES
Definition: med.h:351
MED_UNDEF_STMODE
Definition: med.h:110
med_idt
hid_t med_idt
Definition: med.h:333
MED_ERR_
#define MED_ERR_(rt, r1, r2, r3)
Definition: med_utils.h:160
med_err
herr_t med_err
Definition: med.h:334
MED_UNDEF_INTERLACE
Definition: med.h:102
med_outils.h
MED_ERR_FILTER
#define MED_ERR_FILTER
Definition: med_err.h:93
MED_NO_FILTER_SIZE
#define MED_NO_FILTER_SIZE
Definition: med.h:381
med_filter
Filtre de sélection.
Definition: med.h:357
med_config.h
_MEDsetFilter
MEDC_EXPORT med_err _MEDsetFilter(const med_int nspaces, const med_idt *const memspace, const med_idt *const diskspace, const med_int nentity, const med_int nvaluesperentity, const med_int nconstituentpervalue, const med_int constituentselect, const med_switch_mode switchmode, const med_int filterarraysize, const med_int profilearraysize, const med_storage_mode storagemode, const char *const profilename, med_filter *const filter)
MEDfilterAllocate
med_filter * MEDfilterAllocate(const int nfilter)
Alloue un tableau de filtres de taille nfilter.
Definition: MEDfilterAllocate.c:35
MED_NO_PROFILE_SIZE
#define MED_NO_PROFILE_SIZE
Definition: med.h:309
MED_NO_PROFILE
#define MED_NO_PROFILE
Definition: med.h:283
med.h
MED_MAX_FILTER_SPACES_INIT
#define MED_MAX_FILTER_SPACES_INIT
Definition: med.h:352
med_filter::nspaces
med_int nspaces
Definition: med.h:359
MED_ERR_INIT
#define MED_ERR_INIT
Definition: med_err.h:33