mds_w_int_5 Subroutine

private subroutine mds_w_int_5(name, value)

FIXME : Add documentation

Arguments

Type IntentOptional Attributes Name
character(len=*), intent(in) :: name
integer, intent(in), dimension(:,:,:,:,:) :: value

Contents

Source Code


Source Code

  subroutine mds_w_int_5(name,value)
    implicit none
    character(*), intent(in) :: name 
    integer , dimension(:,:,:,:,:), intent(in) :: value
# ifdef MDSPLUS
    logical :: status
    integer :: len
    integer :: descr
    integer :: dim1,dim2,dim3,dim4,dim5
    dim1 = size(value,1)
    dim2 = size(value,2)
    dim3 = size(value,3)
    dim4 = size(value,4)
    dim5 = size(value,5)
    status = mdsput(name//char(0),&
         &"$",descr(IDTYPE_LONG,value,dim1,dim2,dim3,dim4,dim5,0),0,len)
    call checkmds(status,"error writing "//name)
    return
# endif
  end subroutine mds_w_int_5