Mantid
Loading...
Searching...
No Matches
EqualToMD.cpp
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 +
8
9using namespace Mantid::Kernel;
10using namespace Mantid::API;
11
12namespace Mantid::MDAlgorithms {
13
14// Register the algorithm into the AlgorithmFactory
15DECLARE_ALGORITHM(EqualToMD)
16
17//----------------------------------------------------------------------------------------------
19const std::string EqualToMD::name() const { return "EqualToMD"; }
20
22int EqualToMD::version() const { return 1; }
23
24//----------------------------------------------------------------------------------------------
27 declareProperty("Tolerance", 1e-5, "Tolerance when performing the == comparison. Default 10^-5.");
28}
29
30//----------------------------------------------------------------------------------------------
37
38//----------------------------------------------------------------------------------------------
45
46} // namespace Mantid::MDAlgorithms
std::string name
Definition Run.cpp:60
#define DECLARE_ALGORITHM(classname)
Definition Algorithm.h:538
double tolerance
void declareProperty(std::unique_ptr< Kernel::Property > p, const std::string &doc="") override
Add a property to the list of managed properties.
TypedValue getProperty(const std::string &name) const override
Get the value of a property.
EqualToMD : boolean operation on MDHistoWorkspaces.
Definition EqualToMD.h:19
int version() const override
Algorithm's version for identification.
Definition EqualToMD.cpp:22
void execHistoHisto(Mantid::DataObjects::MDHistoWorkspace_sptr out, Mantid::DataObjects::MDHistoWorkspace_const_sptr operand) override
Run the algorithm with a MDHisotWorkspace as output and operand.
Definition EqualToMD.cpp:32
void initExtraProperties() override
Extra properties.
Definition EqualToMD.cpp:26
void execHistoScalar(Mantid::DataObjects::MDHistoWorkspace_sptr out, Mantid::DataObjects::WorkspaceSingleValue_const_sptr scalar) override
Run the algorithm with a MDHisotWorkspace as output and a scalar on the RHS.
Definition EqualToMD.cpp:40
std::shared_ptr< const WorkspaceSingleValue > WorkspaceSingleValue_const_sptr
std::shared_ptr< MDHistoWorkspace > MDHistoWorkspace_sptr
A shared pointer to a MDHistoWorkspace.
std::shared_ptr< const MDHistoWorkspace > MDHistoWorkspace_const_sptr
A shared pointer to a const MDHistoWorkspace.
STL namespace.