next up previous contents index
Next: ncd_iolocal_int_2d Up: Module ncdioMod (File: ncdio.F90) Previous: ncd_iolocal_int_1d   Contents   Index


ncd_iolocal_real_1d


INTERFACE:

   subroutine ncd_iolocal_real_1d(varname, data, datadim1, flag, ncid, &
       nlonxy, nlatxy, nt, readvar)
DESCRIPTION:

   I/O for 1d int field
USES:
   use decompMod, only : map_dc2sn, map_sn2dc
 #ifdef RTM
   use RunoffMod      , only : runoff
 #endif
 #ifdef SPMD
   use spmdGathScatMod, only : scatter_data_from_master, gather_data_to_master
 #endif
ARGUMENTS:
     implicit none
     character(len=*), intent(in)  :: flag               ! 'read' or 'write'
     integer         , intent(in)  :: ncid               ! input unit
     character(len=*), intent(in)  :: varname            ! variable name
     real(r8)        , pointer     :: data(:)            ! local decomposition
     character(len=*), intent(in)  :: datadim1           ! dimension name
     integer         , optional, intent(in) :: nlonxy    ! 2d longitude size
     integer         , optional, intent(in) :: nlatxy    ! 2d latitude size
     integer         , optional, intent(in) :: nt        ! time sample index
     logical         , optional, intent(out):: readvar   ! true => variable is
REVISION HISTORY:




Mariana Vertenstein 2004-06-21