From c56ea83d58788637deb88c20ff2d2c4a56b548a9 Mon Sep 17 00:00:00 2001 From: Harriet Brown <harriet.brown@stfc.ac.uk> Date: Thu, 21 Nov 2019 10:09:09 +0000 Subject: [PATCH] Move code for reading qlims into its own function This commit moves the code for reading the supplies q limits into its own function. This also fixes a bug that cause an error when trying to read a lim file path that is in a unicode format. Re #27444 --- .../polaris_routines/polaris_algs.py | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/scripts/Diffraction/isis_powder/polaris_routines/polaris_algs.py b/scripts/Diffraction/isis_powder/polaris_routines/polaris_algs.py index e10b37b959e..ce213fcc465 100644 --- a/scripts/Diffraction/isis_powder/polaris_routines/polaris_algs.py +++ b/scripts/Diffraction/isis_powder/polaris_routines/polaris_algs.py @@ -205,6 +205,29 @@ def _load_qlims(q_lims): return q_min, q_max +def _load_qlims(q_lims): + if type(q_lims) == str or type(q_lims) == unicode: + q_min = [] + q_max = [] + try: + with open(q_lims, 'r') as f: + line_list = [line.rstrip('\n') for line in f] + for line in line_list[1:]: + value_list = line.split() + q_min.append(float(value_list[2])) + q_max.append(float(value_list[3])) + q_min = np.array(q_min) + q_max = np.array(q_max) + except IOError: + raise RuntimeError("q_lims directory is not valid") + elif type(q_lims) == list or type(q_lims) == np.ndarray: + q_min = q_lims[0, :] + q_max = q_lims[1, :] + else: + raise RuntimeError("q_lims type is not valid") + return q_min, q_max + + def _calculate_self_scattering_correction(run_number, cal_file_name, sample_details): raw_ws = mantid.Load(Filename='POLARIS'+str(run_number)+'.nxs') mantid.SetSample(InputWorkspace=raw_ws, -- GitLab