Skip to content
Snippets Groups Projects
Commit b3ba2713 authored by David Fairbrother's avatar David Fairbrother
Browse files

Re #19494 Fixed range using 0 based index

parent 45df9e51
No related branches found
No related tags found
No related merge requests found
...@@ -9,7 +9,7 @@ from isis_powder.polaris_routines import polaris_advanced_config ...@@ -9,7 +9,7 @@ from isis_powder.polaris_routines import polaris_advanced_config
def calculate_absorb_corrections(ws_to_correct, multiple_scattering): def calculate_absorb_corrections(ws_to_correct, multiple_scattering):
mantid.MaskDetectors(ws_to_correct, SpectraList=list(range(0, 55))) mantid.MaskDetectors(ws_to_correct, SpectraList=list(range(1, 55)))
absorb_dict = polaris_advanced_config.absorption_correction_params absorb_dict = polaris_advanced_config.absorption_correction_params
ws_to_correct = absorb_corrections.run_cylinder_absorb_corrections( ws_to_correct = absorb_corrections.run_cylinder_absorb_corrections(
......
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