15 type (type_param
),
intent(in) :: code_parameters
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
32 call euitm_xml_parse(code_parameters, nparm, parameter_list)
36 temp_pointer => parameter_list%first
39 cname = char2str(temp_pointer%cname)
43 temp_pointer => temp_pointer%child
47 case (
"symmetry_coords")
48 if (
allocated(temp_pointer%cvalue)) &
49 call char2num(temp_pointer%cvalue, symmetry_coords)
51 if (
allocated(temp_pointer%cvalue)) &
52 call char2num(temp_pointer%cvalue, write_cpos)
54 if (
allocated(temp_pointer%cvalue)) &
55 call char2num(temp_pointer%cvalue, write_diags)
57 if (
allocated(temp_pointer%cvalue)) &
58 call char2num(temp_pointer%cvalue, nr_eq)
60 if (
allocated(temp_pointer%cvalue)) &
61 call char2num(temp_pointer%cvalue, neta_eq)
63 write(*, *)
'ERROR: invalid parameter', cname
68 if (
associated(temp_pointer%sibling))
then
69 temp_pointer => temp_pointer%sibling
72 if (
associated(temp_pointer%parent, parameter_list%first )) &
74 if (
associated(temp_pointer%parent))
then
75 temp_pointer => temp_pointer%parent
77 write(*, *)
'ERROR: broken list.'
84 call destroy_xml_tree(parameter_list)
subroutine assign_equil_parameters(code_parameters, return_status)