Newer
Older
//------------------------------------------------------------------------------
// Includes
//------------------------------------------------------------------------------
#include "MantidAlgorithms/ConvertToPointData.h"
Federico Montesino Pouzols
committed
#include "MantidAPI/MatrixWorkspace.h"
Gigg, Martyn Anthony
committed
#include "MantidKernel/VectorHelper.h"
namespace Mantid {
namespace Algorithms {
using API::MatrixWorkspace_sptr;
using Mantid::MantidVec;
using std::size_t;
//------------------------------------------------------------------------------
// Private member functions
//------------------------------------------------------------------------------
/**
* Returns true if the algorithm needs to be run.
* @param inputWS pointer to input workspace
* @returns True if the input workspace needs to be run through this algorithm
*/
bool ConvertToPointData::isProcessingRequired(
const MatrixWorkspace_sptr inputWS) const {
if (!inputWS->isHistogramData()) {
g_log.information() << "Input workspace already contains point data. "
<< "OutputWorkspace set to InputWorkspace value.\n";
return false;
}
return true;
}
/**
* Returns the size of the new X vector
* @returns An integer giving the size of the new X vector
*/
size_t ConvertToPointData::getNewXSize(const std::size_t ySize) const {
return ySize;
}
/**
* Calculate the X point values
* @param inputX :: A const reference to the input data
*/
Kernel::cow_ptr<HistogramData::HistogramX> ConvertToPointData::calculateXPoints(
Kernel::cow_ptr<HistogramData::HistogramX> inputX) const {
return HistogramData::Points(HistogramData::BinEdges(std::move(inputX)))
.cowData();