Skip to content
Snippets Groups Projects
Commit ab2f50b0 authored by Sam Jenkins's avatar Sam Jenkins
Browse files

Re #23449 Made multiple scattering an optional flag

The multiple_scattering flag was required if absorption_corrections was true, despite multiple_scattering not being available.
This changes multiple scattering to be optional.
parent 03b76e4b
No related branches found
No related tags found
No related merge requests found
...@@ -20,7 +20,7 @@ attr_mapping = \ ...@@ -20,7 +20,7 @@ attr_mapping = \
ParamMapEntry(ext_name="input_mode", int_name="input_mode", enum_class=INPUT_BATCHING), ParamMapEntry(ext_name="input_mode", int_name="input_mode", enum_class=INPUT_BATCHING),
ParamMapEntry(ext_name="merge_banks", int_name="merge_banks"), ParamMapEntry(ext_name="merge_banks", int_name="merge_banks"),
ParamMapEntry(ext_name="mode", int_name="mode", enum_class=POLARIS_CHOPPER_MODES), ParamMapEntry(ext_name="mode", int_name="mode", enum_class=POLARIS_CHOPPER_MODES),
ParamMapEntry(ext_name="multiple_scattering", int_name="multiple_scattering"), ParamMapEntry(ext_name="multiple_scattering", int_name="multiple_scattering", optional=True),
ParamMapEntry(ext_name="raw_data_cropping_values", int_name="raw_data_crop_values"), ParamMapEntry(ext_name="raw_data_cropping_values", int_name="raw_data_crop_values"),
ParamMapEntry(ext_name="run_number", int_name="run_number"), ParamMapEntry(ext_name="run_number", int_name="run_number"),
ParamMapEntry(ext_name="sample_empty", int_name="sample_empty", optional=True), ParamMapEntry(ext_name="sample_empty", int_name="sample_empty", optional=True),
......
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