11
12
13
14
15
16
17
18
20 use gtool_history_internal,
only:
default
21 use dc_trace, only: beginsub, endsub, dbgmessage
23 implicit none
24 type(GT_HISTORY_AXIS),intent(inout) :: axis
25 character(len = *), parameter:: subname = "HistoryAxisClear1"
26 call beginsub(subname)
27 axis % name = ""
28 axis % length = 0
29 axis % longname = ""
30 axis % units = ""
31 axis % xtype = ""
32 if (associated(axis % attrs)) then
33 deallocate(axis % attrs)
34 end if
35 call endsub(subname)
Provides kind type parameter values.
integer, parameter, public token
Character length for word, token
integer, parameter, public string
Character length for string
integer, parameter, public dp
Double Precision Real number
type(gt_history), target, save default