gtool5 Fortran 90/95 ライブラリ 1.0.0-rc5
English
Loading...
Searching...
No Matches
historyaxisclear.f90
Go to the documentation of this file.
1
14
32 subroutine historyaxisclear(axis)
34 use dc_trace, only: beginsub, endsub
35 implicit none
36 type(gt_history_axis),intent(inout) :: axis
37 character(len = *), parameter:: subname = "HistoryAxisClear1"
38 call beginsub(subname)
39 axis % name = ""
40 axis % length = 0
41 axis % longname = ""
42 axis % units = ""
43 axis % xtype = ""
44 if (associated(axis % attrs)) then
45 deallocate(axis % attrs)
46 end if
47 call endsub(subname)
48 end subroutine historyaxisclear
subroutine historyaxisclear(axis)
デバッグ時の追跡用モジュール
Definition dc_trace.f90:150
subroutine, public beginsub(name, fmt, i, r, d, l, n, c1, c2, c3, ca, version)
Definition dc_trace.f90:476
subroutine, public endsub(name, fmt, i, r, d, l, n, c1, c2, c3, ca)
Definition dc_trace.f90:599