| Type | Visibility | Attributes | Name | Initial | |||
|---|---|---|---|---|---|---|---|
| character(len=1), | public | :: | source | = | 'D' | ||
| character(len=max_paramter_name_len), | public | :: | name | = | "" | ||
| real(kind=real_8), | public | :: | val | = | -1 | ||
| real(kind=real_8), | public | :: | defval | = | -1 |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(CONF_PAR), | intent(inout) | :: | this | |||
| class(*), | intent(out) | :: | env_val |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(CONF_PAR), | intent(in) | :: | this |
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| class(CONF_PAR_REAL), | intent(inout) | :: | this | |||
| real(kind=real_8), | intent(in), | optional | :: | real_val |
TYPE, EXTENDS(CONF_PAR) :: CONF_PAR_REAL REAL(KIND=real_8) :: val = -1, defval = -1 CONTAINS PROCEDURE :: set => set_conf_par_real END TYPE CONF_PAR_REAL