gtool5 Fortran 90/95 ライブラリ 1.0.0-rc5
English
Loading...
Searching...
No Matches
hsaati.f90
Go to the documentation of this file.
1!> @file hsaati.f90
2!>
3!> @author Shin-ichi TAKEHIRO, Yasuhiro MORIKAWA
4!> @copyright Copyright (C) GFD Dennou Club, 2000-2026. All rights reserved. <br/>
5!> License is BSD-2-Clause. See [COPYRIGHT](@ref COPYRIGHT) in detail
6!>
7!> @en
8!> @brief Fortran 77 compatible interface for gtool_history HistoryAddAttr (integer)
9!> @enden
10!>
11!> @ja
12!> @brief gtool_history Fortran 77 用インターフェース (整数型属性付加)
13!> @endja
14
15!>
16!> @en
17!> @brief Add an attribute to a history or variable.
18!>
19!> If VNAME is empty, the attribute is treated as a global attribute of the history.
20!> @enden
21!> @ja
22!> @brief ヒストリー, 変数に属性をつける.
23!>
24!> VNAME が空の場合にはヒストリーのグローバル属性として扱われる.
25!> @endja
26!>
27subroutine hsaati(vname, atname, value,i)
28 !
30 character(len=*), intent(in):: vname ! 変数名
31 character(len=*), intent(in):: atname ! 属性名
32 integer, intent(in):: value(i) ! 変数
33 integer :: i ! 属性の次元数
34
35 call historyaddattr(vname, atname, value)
36
37end subroutine hsaati
subroutine hsaati(vname, atname, value, i)
Definition hsaati.f90:28