psmile_trs_finalize.F90
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 subroutine psmile_trs_finalize(id_trs_rank, id_err)
00011
00012
00013
00014
00015 use PRISM_constants
00016 USE PSMILe, dummy_interface => PSMILe_Trs_finalize
00017
00018 IMPLICIT NONE
00019
00020
00021
00022
00023 INTEGER, INTENT (IN) :: id_trs_rank
00024
00025
00026
00027 INTEGER, INTENT (Out) :: id_err
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046 INTEGER, DIMENSION(PSMILe_trans_Header_length) :: ila_args
00047
00048
00049
00050 #ifdef VERBOSE
00051 print *, trim(ch_id), ': PSMILe_Trs_finalize: start'
00052 call psmile_flushstd
00053 #endif /* VERBOSE */
00054
00055
00056
00057
00058
00059
00060 ila_args = 999999
00061
00062
00063
00064
00065 ila_args(1) = PSMILe_trans_Finalize
00066 ila_args(2) = global_rank
00067
00068
00069
00070 call psmile_trs_inform(ila_args, id_trs_rank, id_err)
00071
00072
00073 #ifdef VERBOSE
00074 print *, trim(ch_id), ': PSMILe_Trs_finalize: eof ierror =', id_err
00075 call psmile_flushstd
00076 #endif /* VERBOSE */
00077
00078 END SUBROUTINE PSMILe_Trs_finalize
00079
00080
00081