Skip to content
Snippets Groups Projects
Unverified Commit 9bf5b0b7 authored by Pete Peterson's avatar Pete Peterson Committed by GitHub
Browse files

Merge pull request #21398 from mantidproject/mr_reduction_automation

MR algorithm to determine reduction params
parents 51961c23 24af8e35
No related branches found
No related tags found
No related merge requests found
This diff is collapsed.
...@@ -38,3 +38,15 @@ class MagnetismReflectometryReductionTest(stresstesting.MantidStressTest): ...@@ -38,3 +38,15 @@ class MagnetismReflectometryReductionTest(stresstesting.MantidStressTest):
self.disableChecking.append('SpectraMap') self.disableChecking.append('SpectraMap')
self.disableChecking.append('Axes') self.disableChecking.append('Axes')
return "r_24949", 'MagnetismReflectometryReductionTest.nxs' return "r_24949", 'MagnetismReflectometryReductionTest.nxs'
class MRInspectionTest(stresstesting.MantidStressTest):
def runTest(self):
nxs_data = LoadEventNexus(Filename="REF_M_24949",
NXentryName="entry-Off_Off",
OutputWorkspace="r_24949")
MRInspectData(Workspace=nxs_data)
def validate(self):
# Simple test to verify that we flagged the data correctly
return mtd["r_24949"].getRun().getProperty("is_direct_beam").value == "False"
.. algorithm::
.. summary::
.. alias::
.. properties::
Description
-----------
Use by the Magnetism Reflectometer reduction. The algorithm takes in raw event data
and determines various parameters such as the reflectivity peak position, the
pixel range of the data in the low-resolution direction, the TOF range, etc...
This information is stored in the sample logs.
.. categories::
.. sourcelink::
...@@ -11,5 +11,6 @@ Reflectometry Changes ...@@ -11,5 +11,6 @@ Reflectometry Changes
- The new algorithm :ref:`algm-LoadILLPolarizationFactors` can load the polarization efficiency files used on D17 at ILL. - The new algorithm :ref:`algm-LoadILLPolarizationFactors` can load the polarization efficiency files used on D17 at ILL.
- The *BraggAngle* property of :ref:`algm-LoadILLReflectometry` now works as expected: the detector will be rotated such that the reflected peak will be at twice *BraggAngle*. - The *BraggAngle* property of :ref:`algm-LoadILLReflectometry` now works as expected: the detector will be rotated such that the reflected peak will be at twice *BraggAngle*.
- The new algorithm :ref:`algm-MRInspectData` takes in raw event data and determines reduction parameters.
:ref:`Release 3.12.0 <v3.12.0>` :ref:`Release 3.12.0 <v3.12.0>`
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