Closed czimmerli closed 7 months ago
ioutils.total_dose_load is missing the return stement for total_dose when reading the dose from a warp .xml file:
lines 379-381:
elif input_dose.endswith(".xml"): total_dose = get_data_from_warp_xml(input_dose, "Dose", node_level=1) else:
should be
elif input_dose.endswith(".xml"): total_dose = get_data_from_warp_xml(input_dose, "Dose", node_level=1) return total_dose else:
This was fixed by Marta
ioutils.total_dose_load is missing the return stement for total_dose when reading the dose from a warp .xml file:
lines 379-381:
should be