Skip to content

Commit

Permalink
Merge pull request #48 from neutrons/tweak_IS_code
Browse files Browse the repository at this point in the history
fix launcher
  • Loading branch information
mdoucet authored Sep 27, 2024
2 parents 647ba16 + e8339e7 commit 14f23f0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion launcher/apps/reduction.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()))

Expand Down
2 changes: 0 additions & 2 deletions scripts/autoreduce/reduce_REF_L.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 14f23f0

Please sign in to comment.