source: codes/icosagcm/trunk/src/netcdf_mod.F90 @ 398

Last change on this file since 398 was 398, checked in by ymipsl, 8 years ago

solve some issue when compiling with som non parallel netcdf4 library

YM

File size: 528 bytes
Line 
1MODULE netcdf_mod
2  USE netcdf
3#ifndef CPP_NETCDF4
4  INTEGER ::  NF90_NETCDF4
5  INTEGER ::  NF90_MPIIO
6  INTEGER ::  NF90_CHUNKED
7 
8  INTEGER,EXTERNAL :: NF90_CREATE_PAR
9  INTEGER,EXTERNAL :: NF90_DEF_VAR_CHUNKING 
10#endif
11
12#ifdef CPP_NF90_DEF_VAR_CHUNKING
13  INTEGER,EXTERNAL :: NF90_DEF_VAR_CHUNKING 
14#endif
15
16END MODULE netcdf_mod
17
18#ifndef CPP_NETCDF4
19   SUBROUTINE NF90_CREATE_PAR
20   END
21   
22   SUBROUTINE NF90_DEF_VAR_CHUNKING
23   END
24#endif
25
26#ifdef CPP_NF90_DEF_VAR_CHUNKING
27   SUBROUTINE NF90_DEF_VAR_CHUNKING
28   END
29#endif
Note: See TracBrowser for help on using the repository browser.