psmile_get_initial_date.F90
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 subroutine psmile_get_initial_date ( initial_date, ierror )
00012
00013
00014
00015 use PRISM_constants, only : PRISM_Time_struct, PRISM_Initial_date
00016
00017 use PSMILe, only : ch_id, len_cvs_string
00018
00019 implicit none
00020
00021
00022
00023 Type(PRISM_Time_struct), Intent(Out) :: initial_date
00024
00025 Integer, Intent(Out) :: ierror
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044 Character(len=len_cvs_string), save :: mycvs =
00045 '$Id: psmile_get_initial_date.F90 2325 2010-04-21 15:00:07Z valcke $'
00046
00047
00048
00049 #ifdef VERBOSE
00050 print *, trim(ch_id), ': PSMILe_get_initial_date'
00051
00052 call psmile_flushstd
00053 #endif /* VERBOSE */
00054
00055 initial_date = PRISM_Initial_date
00056
00057 ierror = 0
00058
00059 #ifdef VERBOSE
00060 print *, trim(ch_id), ': PSMILe_get_initial_date: eof ierror', ierror
00061
00062 call psmile_flushstd
00063 #endif /* VERBOSE */
00064
00065 end subroutine PSMILe_get_initial_date