libtime++: Date and time calculation
time_util_warning_report_time.f
Go to the documentation of this file.
1 c this is <time_util_warning_report_time.f>
2 c ----------------------------------------------------------------------------
3 c
4 c Copyright (c) 2012 by Thomas Forbriger (BFO Schiltach)
5 c
6 c report time through warning interface
7 c
8 c ----
9 c libtime is free software; you can redistribute it and/or modify
10 c it under the terms of the GNU General Public License as published by
11 c the Free Software Foundation; either version 2 of the License, or
12 c (at your option) any later version.
13 c
14 c This program is distributed in the hope that it will be useful,
15 c but WITHOUT ANY WARRANTY; without even the implied warranty of
16 c MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 c GNU General Public License for more details.
18 c
19 c You should have received a copy of the GNU General Public License
20 c along with this program; if not, write to the Free Software
21 c Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22 c ----
23 c
24 c REVISIONS and CHANGES
25 c 25/12/2012 V1.0 Thomas Forbriger
26 c
27 c ============================================================================
28 cS
29 c
30  subroutine time_util_warning_report_time(caller,date)
31 c
32 c declare parameters
33  character*(*) caller
34  integer date(7)
35 c
36 cE
37 c
38 c------------------------------------------------------------------------------
39 c go
40  call time_util_warning_n(caller, "year", date(1))
41  call time_util_warning_n(caller, "doy", date(2))
42  call time_util_warning_n(caller, "hour", date(3))
43  call time_util_warning_n(caller, "minute", date(4))
44  call time_util_warning_n(caller, "second", date(5))
45  call time_util_warning_n(caller, "milsec", date(6))
46  call time_util_warning_n(caller, "micsec", date(7))
47  end
48 c
49 c ----- END OF time_util_warning_report_time.f -----
subroutine time_util_warning_report_time(caller, date)
subroutine time_util_warning_n(caller, text, n)