Newer
Older
Russell Taylor
committed
//----------------------------------------------------------------------
// Includes
//----------------------------------------------------------------------
#include "MantidAlgorithms/ConvertToDistribution.h"
#include "MantidAPI/HistogramValidator.h"
#include "MantidAPI/RawCountValidator.h"
#include "MantidKernel/CompositeValidator.h"
Russell Taylor
committed
namespace Mantid {
namespace Algorithms {
Russell Taylor
committed
// Register the algorithm into the AlgorithmFactory
DECLARE_ALGORITHM(ConvertToDistribution)
using namespace API;
void ConvertToDistribution::init() {
auto wsValidator = boost::make_shared<Kernel::CompositeValidator>();
wsValidator->add<HistogramValidator>();
wsValidator->add<RawCountValidator>();
declareProperty(Kernel::make_unique<WorkspaceProperty<>>(
"Workspace", "", Kernel::Direction::InOut, wsValidator),
"The name of the workspace to convert.");
Russell Taylor
committed
}
void ConvertToDistribution::exec() {
Roman Tolchenov
committed
MatrixWorkspace_sptr workspace = getProperty("Workspace");
Russell Taylor
committed
WorkspaceHelpers::makeDistribution(workspace);
}
std::map<std::string, std::string> ConvertToDistribution::validateInputs() {
std::map<std::string, std::string> errors;
MatrixWorkspace_sptr workspace = getProperty("Workspace");
if (workspace && workspace->id() == "EventWorkspace") {
errors["Workspace"] = "Event workspaces cannot be directly converted to "
"distributions.";
return errors;
}
Russell Taylor
committed
} // namespace Algorithms
} // namespace Mantid