gtool5 Fortran 90/95 ライブラリ 1.0.0-rc5
English
Loading...
Searching...
No Matches
historyaxiscreate.f90
Go to the documentation of this file.
1
14
47 subroutine historyaxiscreate1( axis, &
48 & name, size, longname, units, xtype)
49 !
50 use dc_trace, only: beginsub, endsub
51 use dc_string, only: cprintft
53 implicit none
54 type(gt_history_axis),intent(out) :: axis
55 character(*) , intent(in):: name ! 次元変数名
56 integer, intent(in):: size ! 次元長 (配列サイズ)
57 character(*) , intent(in):: longname ! 次元変数の記述的名称
58 character(*) , intent(in):: units ! 次元変数の単位
59 character(*) , intent(in):: xtype ! 次元変数の型
60 character(len = *), parameter:: subname = "HistoryAxisCreate1"
61 continue
62 call beginsub(subname)
63 axis % name = cprintft('%c', c1=name)
64 axis % length = size
65 axis % longname = longname
66 axis % units = units
67 axis % xtype = cprintft('%c', c1=xtype)
68 call endsub(subname)
69 end subroutine historyaxiscreate1
70
81 subroutine historyaxiscreate2( axis, &
82 & name, size, longname, units, xtype)
83 use dc_trace, only: beginsub, endsub
84 use dc_string, only: cprintft
86 implicit none
87 type(gt_history_axis),intent(out) :: axis
88 character(*) , intent(in):: name ! 次元変数名
89 integer, intent(in):: size ! 次元長 (配列サイズ)
90 character(*) , intent(in):: longname ! 次元変数の記述的名称
91 character(*) , intent(in):: units ! 次元変数の単位
92 character(*) , intent(in):: xtype ! 次元変数の型
93 character(len = *), parameter:: subname = "HistoryAxisCreate2"
94 continue
95 call beginsub(subname)
96 axis % name = cprintft('%c', c1=name)
97 axis % length = size
98 axis % longname = longname
99 axis % units = units
100 axis % xtype = cprintft('%c', c1=xtype)
101 call endsub(subname)
102 end subroutine historyaxiscreate2
subroutine historyaxiscreate1(axis, name, size, longname, units, xtype)
subroutine historyaxiscreate2(axis, name, size, longname, units, xtype)
文字型変数の操作
Definition dc_string.f90:83
デバッグ時の追跡用モジュール
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