Mantid
Loading...
Searching...
No Matches
FindReflectometryLines3.h
Go to the documentation of this file.
1// Mantid Repository : https://github.com/mantidproject/mantid
2//
3// Copyright © 2026 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
11#include "MantidAlgorithms/DllConfig.h"
12
13namespace Mantid::Algorithms {
14
17class MANTID_ALGORITHMS_DLL FindReflectometryLines3 final : public API::Algorithm {
18public:
19 const std::string name() const override;
20 int version() const override;
21 const std::string category() const override;
22 const std::string summary() const override;
23 const std::vector<std::string> seeAlso() const override;
24
25 static bool fitStatusIsAccepted(const std::string &fitStatus, bool acceptChangesInFunction,
26 bool acceptChangesInParameters);
27
28private:
29 void init() override;
30 std::map<std::string, std::string> validateInputs() override;
31 void exec() override;
32
33 API::MatrixWorkspace_sptr createProfile(const API::MatrixWorkspace_sptr &inputWorkspace);
34};
35
36} // namespace Mantid::Algorithms
std::string name
Definition Run.cpp:60
Base class from which all concrete algorithm classes should be derived.
Definition Algorithm.h:76
FindReflectometryLines3: Finds a fractional workspace index corresponding to a reflected or direct li...
std::shared_ptr< MatrixWorkspace > MatrixWorkspace_sptr
shared pointer to the matrix workspace base class