From e8339e75f9b2e3f6dc0448cf47125cdb72d80743 Mon Sep 17 00:00:00 2001 From: Mathieu Doucet Date: Fri, 27 Sep 2024 18:53:13 -0400 Subject: [PATCH] fix launcher --- launcher/apps/reduction.py | 2 +- scripts/autoreduce/reduce_REF_L.py | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/launcher/apps/reduction.py b/launcher/apps/reduction.py index 9a017f7..0b42a57 100644 --- a/launcher/apps/reduction.py +++ b/launcher/apps/reduction.py @@ -170,7 +170,7 @@ def reduce(self): options.append(self.template_path.text()) options.append(str(self.average_overlapp_check.isChecked())) options.append(str(self.const_q_check.isChecked())) - options.append(False) # Was fit first peak option + options.append('False') # Was fit first peak option if self.fix_offset_check.isChecked(): options.append(str(self.fix_offset_ledit.text())) diff --git a/scripts/autoreduce/reduce_REF_L.py b/scripts/autoreduce/reduce_REF_L.py index 45a2561..7227b82 100644 --- a/scripts/autoreduce/reduce_REF_L.py +++ b/scripts/autoreduce/reduce_REF_L.py @@ -124,8 +124,6 @@ from lr_reduction import workflow first_run_of_set = workflow.reduce(ws, template_file, output_dir, - offset_from_first=fit_first_peak, - fixed_offset=theta_offset, average_overlap=avg_overlap, theta_offset=theta_offset, q_summing=const_q, bck_in_q=False)