Skip to content

Commit

Permalink
give loaded ws better name
Browse files Browse the repository at this point in the history
  • Loading branch information
mdoucet committed Mar 26, 2024
1 parent 338fa3b commit f3d85fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion reduction/lr_reduction/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '2.0.20'
__version__ = '2.0.21'
2 changes: 1 addition & 1 deletion reduction/lr_reduction/template.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def process_from_template(run_number, template_path, q_summing=False, normalize=
list_of_runs = str(run_number).split(',')
run_number = '+'.join(list_of_runs)
# Load data
ws_sc = api.Load("REF_L_%s" % run_number)
ws_sc = api.Load("REF_L_%s" % run_number, OutputWorkspace="REF_L_%s" % run_number)
return process_from_template_ws(ws_sc, template_path, q_summing=q_summing,
tof_weighted=tof_weighted, bck_in_q=bck_in_q,
clean=clean, info=info, normalize=normalize)
Expand Down

0 comments on commit f3d85fe

Please sign in to comment.