Mantid
Loading...
Searching...
No Matches
IntegrateEllipsoids.h
Go to the documentation of this file.
1// Mantid Repository : https://github.com/mantidproject/mantid
2//
3// Copyright © 2018 ISIS Rutherford Appleton Laboratory UKRI,
4// NScD Oak Ridge National Laboratory, European Spallation Source,
5// Institut Laue - Langevin & CSNS, Institute of High Energy Physics, CAS
6// SPDX - License - Identifier: GPL - 3.0 +
7#pragma once
8
10#include "MantidMDAlgorithms/DllConfig.h"
11
12namespace Mantid::MDAlgorithms {
13
14// Detect and pass to the correct version
15class MANTID_MDALGORITHMS_DLL IntegrateEllipsoids final : public API::DataProcessorAlgorithm {
16public:
17 const std::string name() const override;
19 const std::string summary() const override {
20 return "Integrate Single Crystal Diffraction Bragg peaks using 3D "
21 "ellipsoids.";
22 }
23
24 int version() const override;
25 const std::vector<std::string> seeAlso() const override { return {"IntegrateEllipsoidsTwoStep"}; }
26 const std::string category() const override;
27
28private:
29 void init() override;
30 void exec() override;
31};
32
33} // namespace Mantid::MDAlgorithms
Data processor algorithm to be used as a parent to workflow algorithms.
const std::string summary() const override
Summary of algorithm's purpose.
const std::vector< std::string > seeAlso() const override