15 type (type_param
),
intent(in) :: codeparameters
16 integer(ITM_I4),
intent(out) :: return_status
18 type(tree
) :: parameter_list
19 type(element
),
pointer :: temp_pointer
20 integer(ITM_I4) :: i, nparm, n_values
21 character(len = 132) :: cname
27 call euitm_xml_parse(codeparameters, nparm, parameter_list)
31 temp_pointer => parameter_list%first
34 cname = char2str(temp_pointer%cname)
38 temp_pointer => temp_pointer%child
42 temp_pointer => temp_pointer%child
45 temp_pointer => temp_pointer%child
49 if (
allocated(temp_pointer%cvalue)) &
50 call char2num(temp_pointer%cvalue, thresh)
52 if (
allocated(temp_pointer%cvalue)) &
53 call char2num(temp_pointer%cvalue, tfloor)
54 case (
"beta_reduction")
55 if (
allocated(temp_pointer%cvalue)) &
56 call char2num(temp_pointer%cvalue, beta_reduction)
58 if (
allocated(temp_pointer%cvalue)) &
59 call char2num(temp_pointer%cvalue, etae_pinch)
61 if (
allocated(temp_pointer%cvalue)) &
62 call char2num(temp_pointer%cvalue, chi_d)
64 if (
allocated(temp_pointer%cvalue)) &
65 call char2num(temp_pointer%cvalue, nrho_transp)
67 if (
allocated(temp_pointer%cvalue)) &
68 call char2num(temp_pointer%cvalue, nion)
70 write(*, *)
'ERROR: invalid parameter', cname
75 if (
associated(temp_pointer%sibling))
then
76 temp_pointer => temp_pointer%sibling
79 if (
associated(temp_pointer%parent, parameter_list%first )) &
81 if (
associated(temp_pointer%parent))
then
82 temp_pointer => temp_pointer%parent
84 write(*, *)
'ERROR: broken list.'
91 call destroy_xml_tree(parameter_list)
subroutine assign_etaigb_parameters(codeparameters, return_status)