Go to the source code of this file.
|
subroutine | historyaxisinquire1 (axis, name, size, longname, units, xtype) |
|
subroutine | historyaxisinquire2 (axis, name, size, longname, units, xtype) |
|
◆ historyaxisinquire1()
subroutine historyaxisinquire1 |
( |
type(gt_history_axis), intent(in) |
axis, |
|
|
character(*), intent(out), optional |
name, |
|
|
integer, intent(out), optional |
size, |
|
|
character(*), intent(out), optional |
longname, |
|
|
character(*), intent(out), optional |
units, |
|
|
character(*), intent(out), optional |
xtype |
|
) |
| |
Definition at line 12 of file historyaxisinquire.f90.
References dc_types::dp, dc_types::string, and dc_types::token.
18 use dc_trace
, only: beginsub, endsub, dbgmessage
19 use gtool_history_types, only: gt_history, gt_history_axis, gt_history_varinfo, gt_history_attr
20 use gtool_history_internal
, only: default
22 type(gt_history_axis),
intent(in) :: axis
23 character(*) ,
intent(out),
optional:: name
24 integer,
intent(out),
optional:: size
25 character(*) ,
intent(out),
optional:: longname
26 character(*) ,
intent(out),
optional:: units
27 character(*) ,
intent(out),
optional:: xtype
28 character(len = *),
parameter:: subname =
"HistoryAxisInquire1" 30 call beginsub(subname)
31 if (
present(name))
then 34 if (
present(size))
then 37 if (
present(longname))
then 38 longname = axis % longname
40 if (
present(units))
then 43 if (
present(xtype))
then integer, parameter, public token
単語やキーワードを保持する文字型変数の種別型パラメタ
integer, parameter, public dp
倍精度実数型変数
integer, parameter, public string
文字列を保持する 文字型変数の種別型パラメタ
◆ historyaxisinquire2()
subroutine historyaxisinquire2 |
( |
type(gt_history_axis), intent(in) |
axis, |
|
|
character(*), intent(out), optional |
name, |
|
|
integer, intent(out), optional |
size, |
|
|
character(*), intent(out), optional |
longname, |
|
|
character(*), intent(out), optional |
units, |
|
|
character(*), intent(out), optional |
xtype |
|
) |
| |
Definition at line 53 of file historyaxisinquire.f90.
63 use dc_trace
, only: beginsub, endsub, dbgmessage
64 use gtool_history_types, only: gt_history, gt_history_axis, gt_history_varinfo, gt_history_attr
65 use gtool_history_generic
, only: historyaxisinquire
67 type(gt_history_axis),
intent(in) :: axis
68 character(*) ,
intent(out),
optional:: name
69 integer,
intent(out),
optional:: size
70 character(*) ,
intent(out),
optional:: longname
71 character(*) ,
intent(out),
optional:: units
72 character(*) ,
intent(out),
optional:: xtype
73 character(len = *),
parameter:: subname =
"HistoryAxisInquire2" 75 call beginsub(subname)
76 call historyaxisinquire( axis, &
77 & name,
size, longname, units, xtype)