Skip to content
Snippets Groups Projects
ConvertToMatrixWorkspace.cpp 2.65 KiB
Newer Older
//----------------------------------------------------------------------
// Includes
//----------------------------------------------------------------------
#include "MantidAlgorithms/ConvertToMatrixWorkspace.h"
#include "MantidDataObjects/EventWorkspace.h"
namespace Mantid {
namespace Algorithms {

// Register the algorithm into the AlgorithmFactory
DECLARE_ALGORITHM(ConvertToMatrixWorkspace)

using namespace Kernel;
using namespace API;
Peterson, Peter's avatar
Peterson, Peter committed
using std::size_t;
void ConvertToMatrixWorkspace::init() {
  declareProperty(
      make_unique<WorkspaceProperty<>>("InputWorkspace", "", Direction::Input),
      "An input EventWorkspace.");
  declareProperty(make_unique<WorkspaceProperty<>>("OutputWorkspace", "",
                                                   Direction::Output),
                  "An output Workspace2D.");
void ConvertToMatrixWorkspace::exec() {
  MatrixWorkspace_const_sptr inputWorkspace = getProperty("InputWorkspace");
  // Let's see if we have to do anything first. Basically we want to avoid the
  // data copy if we can
  DataObjects::EventWorkspace_const_sptr eventW =
      boost::dynamic_pointer_cast<const DataObjects::EventWorkspace>(
          inputWorkspace);
  if (eventW) {
    g_log.information() << "Converting EventWorkspace to Workspace2D.\n";
Peterson, Peter's avatar
Peterson, Peter committed
    const size_t numHists = inputWorkspace->getNumberHistograms();
    Progress prog(this, 0.0, 1.0, numHists * 2);
    // Sort the input workspace in-place by TOF. This can be faster if there are
    // few event lists.
    // Create the output workspace. This will copy many aspects fron the input
    // one.
Peterson, Peter's avatar
Peterson, Peter committed
    outputWorkspace = WorkspaceFactory::Instance().create(inputWorkspace);
    PARALLEL_FOR_IF(Kernel::threadSafe(*inputWorkspace, *outputWorkspace))
    for (int64_t i = 0; i < static_cast<int64_t>(numHists); ++i) {
      const auto &inSpec = inputWorkspace->getSpectrum(i);
      auto &outSpec = outputWorkspace->getSpectrum(i);
      outSpec.copyInfoFrom(inSpec);
Moore's avatar
Moore committed
      outSpec.setHistogram(inSpec.histogram());

      PARALLEL_END_INTERUPT_REGION
    }
    PARALLEL_CHECK_INTERUPT_REGION
  } else {
    g_log.information() << "Input workspace does not need converting. Pointing "
                           "OutputWorkspace property to input.\n";
    outputWorkspace =
        boost::const_pointer_cast<MatrixWorkspace>(inputWorkspace);
  }

  setProperty("OutputWorkspace", outputWorkspace);
}

} // namespace Algorithms
} // namespace Mantid