Skip to content
Snippets Groups Projects
Commit 39b7da09 authored by Joe Ramsay's avatar Joe Ramsay Committed by Joseph Ramsay
Browse files

Re #22468 Undo accidental change to calibrate.py

parent c6ddc960
No related branches found
No related tags found
No related merge requests found
...@@ -21,18 +21,9 @@ def create_van(instrument, run_details, absorb): ...@@ -21,18 +21,9 @@ def create_van(instrument, run_details, absorb):
input_batching=INPUT_BATCHING.Summed) input_batching=INPUT_BATCHING.Summed)
input_van_ws = input_van_ws_list[0] # As we asked for a summed ws there should only be one returned input_van_ws = input_van_ws_list[0] # As we asked for a summed ws there should only be one returned
print("hasattr(instrument._inst_settings, \"subtract_empty_inst\") = {}\n" corrected_van_ws = common.subtract_summed_runs(ws_to_correct=input_van_ws,
"instrument._inst_settings.subtract_empty_inst = {}". empty_sample_ws_string=run_details.empty_runs,
format(hasattr(instrument._inst_settings, "subtract_empty_inst"), instrument=instrument)
instrument._inst_settings.subtract_empty_inst))
if not hasattr(instrument._inst_settings, "subtract_empty_inst") or instrument._inst_settings.subtract_empty_inst:
print("subtracting")
corrected_van_ws = common.subtract_summed_runs(ws_to_correct=input_van_ws,
empty_sample_ws_string=run_details.empty_runs,
instrument=instrument)
else:
print("not subtracting")
corrected_van_ws = input_van_ws
# Crop the tail end of the data on PEARL if they are not capturing slow neutrons # Crop the tail end of the data on PEARL if they are not capturing slow neutrons
corrected_van_ws = instrument._crop_raw_to_expected_tof_range(ws_to_crop=corrected_van_ws) corrected_van_ws = instrument._crop_raw_to_expected_tof_range(ws_to_crop=corrected_van_ws)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment