Mantid
Loading...
Searching...
No Matches
SetBeam.h
Go to the documentation of this file.
1// Mantid Repository : https://github.com/mantidproject/mantid
2//
3// Copyright © 2016 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 "MantidDataHandling/DllConfig.h"
11namespace Mantid {
12namespace DataHandling {
13
17class MANTID_DATAHANDLING_DLL SetBeam final : public API::Algorithm {
18public:
19 const std::string name() const override final;
20 int version() const override final;
21 const std::vector<std::string> seeAlso() const override { return {"SetSample"}; }
22 const std::string category() const override final;
23 const std::string summary() const override final;
24
25private:
26 std::map<std::string, std::string> validateInputs() override final;
27 void init() override final;
28 void exec() override final;
29};
30
31} // namespace DataHandling
32} // namespace Mantid
Base class from which all concrete algorithm classes should be derived.
Definition: Algorithm.h:85
Set properties of the beam.
Definition: SetBeam.h:17
const std::vector< std::string > seeAlso() const override
Function to return all of the seeAlso (these are not validated) algorithms related to this algorithm....
Definition: SetBeam.h:21
Helper class which provides the Collimation Length for SANS instruments.
STL namespace.