gtool5 Fortran 90/95 ライブラリ 1.0.0-rc5
English
Loading...
Searching...
No Matches
Functions/Subroutines
historyaxisclear.f90 File Reference

GT_HISTORY_AXIS 変数のクリア . More...

Go to the source code of this file.

Functions/Subroutines

subroutine historyaxisclear (axis)
 

Detailed Description

GT_HISTORY_AXIS 変数のクリア .

Author
Yasuhiro MORIKAWA

Definition in file historyaxisclear.f90.

Function/Subroutine Documentation

◆ historyaxisclear()

subroutine historyaxisclear ( type(gt_history_axis), intent(inout)  axis)

GT_HISTORY_AXIS 型変数初期化

axis で与えられた変数を HistoryAxisCreate による初期設定よりも さらに前の状態に初期化します。

Parameters
[in,out]axis座標軸情報

Definition at line 32 of file historyaxisclear.f90.

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)
デバッグ時の追跡用モジュール
Definition dc_trace.f90:150
subroutine, public beginsub(name, fmt, i, r, d, l, n, c1, c2, c3, ca, version)
Definition dc_trace.f90:457
subroutine, public endsub(name, fmt, i, r, d, l, n, c1, c2, c3, ca)
Definition dc_trace.f90:580

References dc_trace::beginsub(), and dc_trace::endsub().

Here is the call graph for this function: