psmile_trs_inform.F90
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 subroutine psmile_trs_inform(ida_args, id_trans_rank, id_err)
00011
00012
00013
00014
00015 use PRISM_constants
00016 USE PSMILe, dummy_interface => PSMILe_Trs_inform
00017
00018 IMPLICIT NONE
00019
00020
00021
00022 INTEGER, DIMENSION(PSMILe_trans_Header_length), INTENT (In) :: ida_args
00023 INTEGER, INTENT (In) :: id_trans_rank
00024
00025
00026
00027
00028 INTEGER, INTENT (Out) :: id_err
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045 CHARACTER(LEN=len_cvs_string), SAVE :: mycvs = '$Id: psmile_trs_inform.F90 2325 2010-04-21 15:00:07Z valcke $'
00046
00047
00048
00049 #ifdef VERBOSE
00050 print *, trim(ch_id), ': PSMILe_Trs_inform: start'
00051 call psmile_flushstd
00052 #endif /* VERBOSE */
00053
00054
00055
00056
00057 CALL MPI_Send(ida_args(1), PSMILe_trans_Header_length, MPI_Integer, &
00058 id_trans_rank, 0, comm_trans, id_err)
00059
00060 #ifdef VERBOSE
00061 print *, trim(ch_id), ': PSMILe_Trs_inform: eof ierror =', &
00062 id_err
00063 call psmile_flushstd
00064 #endif /* VERBOSE */
00065
00066 END SUBROUTINE PSMILe_Trs_inform
00067
00068