00001 ! ---------------------------------------------------------------------- 00002 ! Copy array 00003 ! ---------------------------------------------------------------------- 00004 module copy_int_array_static_0dto1d_mpt 00005 use phys_constant, only : long, nnmpt 00006 implicit none 00007 contains 00008 ! - - - - - 00009 ! 00010 subroutine copy_int_arraystatic_0dto1d_mpt(impt,array1,array2) 00011 implicit none 00012 integer, intent(in) :: impt 00013 integer :: array1, array2(1:nnmpt) 00014 array2(impt) & 00015 & = array1 00016 end subroutine copy_int_arraystatic_0dto1d_mpt 00017 end module copy_int_array_static_0dto1d_mpt