Skip to content
Snippets Groups Projects
ConvertToPointData.cpp 1.7 KiB
Newer Older
//------------------------------------------------------------------------------
// Includes
//------------------------------------------------------------------------------
#include "MantidAlgorithms/ConvertToPointData.h"
namespace Mantid {
namespace Algorithms {

DECLARE_ALGORITHM(ConvertToPointData)

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
Peterson, Peter's avatar
Peterson, Peter committed
 * @param ySize pointer to input workspace
 * @returns An integer giving the size of the new X vector
 */
Peterson, Peter's avatar
Peterson, Peter committed
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();