mds_r_dcmplx_4 Subroutine

private subroutine mds_r_dcmplx_4(name, value)

FIXME : Add documentation

Arguments

Type IntentOptional Attributes Name
character(len=*), intent(in) :: name
complex(kind=kind_rd), intent(out), dimension(:,:,:,:) :: value

Contents

Source Code


Source Code

  subroutine mds_r_dcmplx_4(name,value)
    implicit none
    character(*), intent(in) :: name
    complex(kind=kind_rd), dimension(:,:,:,:), intent(out) :: value
# ifdef MDSPLUS
    logical :: status
    integer :: len
    integer :: descr
    integer :: dim1,dim2,dim3,dim4
    dim1 = size(value,1)
    dim2 = size(value,2)
    dim3 = size(value,3)
    dim4 = size(value,4)
    status = mdsvalue(name//char(0),&
         &descr(IDTYPE_DOUBLE_COMPLEX,value,dim1,dim2,dim3,dim4,0),0,len)
    call checkmds(status,"error reading "//name)
    return
# endif
  end subroutine mds_r_dcmplx_4