Mantid
Loading...
Searching...
No Matches
LessThanMD.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(LessThanMD)
16
17//----------------------------------------------------------------------------------------------
19const std::string LessThanMD::name() const { return "LessThanMD"; }
20
22int LessThanMD::version() const { return 1; }
23
24//----------------------------------------------------------------------------------------------
30
31//----------------------------------------------------------------------------------------------
37
38} // namespace Mantid::MDAlgorithms
std::string name
Definition Run.cpp:60
#define DECLARE_ALGORITHM(classname)
Definition Algorithm.h:538
LessThanMD : boolean operation on MDHistoWorkspaces.
Definition LessThanMD.h:19
void execHistoHisto(Mantid::DataObjects::MDHistoWorkspace_sptr out, Mantid::DataObjects::MDHistoWorkspace_const_sptr operand) override
Run the algorithm with a MDHisotWorkspace as output and operand.
int version() const override
Algorithm's version for identification.
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.
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.