From f98dca325cd958e69909e5a01a61d7a12acbcc57 Mon Sep 17 00:00:00 2001 From: Owen Arnold <owen.arnold@stfc.ac.uk> Date: Wed, 7 Oct 2015 12:52:38 +0100 Subject: [PATCH] refs #13874. Algorithm not registered. --- .../algorithms/WorkflowAlgorithms/DetectorFloodWeighting.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Framework/PythonInterface/plugins/algorithms/WorkflowAlgorithms/DetectorFloodWeighting.py b/Framework/PythonInterface/plugins/algorithms/WorkflowAlgorithms/DetectorFloodWeighting.py index fe35222ca73..1e8a2e0b614 100644 --- a/Framework/PythonInterface/plugins/algorithms/WorkflowAlgorithms/DetectorFloodWeighting.py +++ b/Framework/PythonInterface/plugins/algorithms/WorkflowAlgorithms/DetectorFloodWeighting.py @@ -2,8 +2,7 @@ from mantid.api import DataProcessorAlgorithm, AlgorithmFactory, MatrixWorkspace from mantid.kernel import Direction, FloatArrayProperty, FloatArrayBoundedValidator -import numpy as np - +import numpy as np class DetectorFloodWeighting(DataProcessorAlgorithm): @@ -110,4 +109,5 @@ class DetectorFloodWeighting(DataProcessorAlgorithm): self.setProperty('OutputWorkspace', normalized) -# Register alg \ No newline at end of file +# Register alg +AlgorithmFactory.subscribe(DetectorFloodWeighting) -- GitLab