Skip to content
Snippets Groups Projects
Commit 85e36eab authored by Simon Heybrock's avatar Simon Heybrock
Browse files

Re #21181. MPI support for ExtractSingleSpectrum.

parent 54cb2e21
No related branches found
No related tags found
No related merge requests found
#ifndef MANTID_ALGORITHMS_EXTRACTSINGLESPECTRUM_H_ #ifndef MANTID_ALGORITHMS_EXTRACTSINGLESPECTRUM_H_
#define MANTID_ALGORITHMS_EXTRACTSINGLESPECTRUM_H_ #define MANTID_ALGORITHMS_EXTRACTSINGLESPECTRUM_H_
//---------------------------------------------------------------------- #include "MantidAPI/ParallelAlgorithm.h"
// Includes
//----------------------------------------------------------------------
#include "MantidAPI/Algorithm.h"
namespace Mantid { namespace Mantid {
namespace Algorithms { namespace Algorithms {
...@@ -43,7 +40,7 @@ namespace Algorithms { ...@@ -43,7 +40,7 @@ namespace Algorithms {
File change history is stored at: <https://github.com/mantidproject/mantid> File change history is stored at: <https://github.com/mantidproject/mantid>
Code Documentation is available at: <http://doxygen.mantidproject.org> Code Documentation is available at: <http://doxygen.mantidproject.org>
*/ */
class DLLExport ExtractSingleSpectrum : public API::Algorithm { class DLLExport ExtractSingleSpectrum : public API::ParallelAlgorithm {
public: public:
/// Algorithm's name /// Algorithm's name
const std::string name() const override { return "ExtractSingleSpectrum"; } const std::string name() const override { return "ExtractSingleSpectrum"; }
......
//----------------------------------------------------------------------
// Includes
//----------------------------------------------------------------------
#include "MantidAlgorithms/ExtractSingleSpectrum.h" #include "MantidAlgorithms/ExtractSingleSpectrum.h"
#include "MantidAPI/MatrixWorkspace.h" #include "MantidAPI/MatrixWorkspace.h"
#include "MantidAPI/TextAxis.h" #include "MantidAPI/TextAxis.h"
......
...@@ -462,6 +462,7 @@ CropToComponent all ...@@ -462,6 +462,7 @@ CropToComponent all
CropWorkspace all see ExtractSpectra regarding X cropping CropWorkspace all see ExtractSpectra regarding X cropping
ExtractSpectra2 all currently not available via algorithm factory or Python ExtractSpectra2 all currently not available via algorithm factory or Python
ExtractSpectra all not supported with ``DetectorList``, cropping in X may exhibit inconsistent behavior in case spectra have common boundaries within some ranks but not within all ranks or across ranks ExtractSpectra all not supported with ``DetectorList``, cropping in X may exhibit inconsistent behavior in case spectra have common boundaries within some ranks but not within all ranks or across ranks
ExtractSingleSpectrum all in practice ``ExecutionMode::Distributed`` not supported due to current nonzero-spectrum-count limitation
FilterBadPulses all FilterBadPulses all
FilterByLogValue all FilterByLogValue all
FilterByTime all FilterByTime all
......
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