Newer
Older
//----------------------------------------------------------------------
// Includes
//----------------------------------------------------------------------
#include "MantidAlgorithms/ConvertToMatrixWorkspace.h"
Federico Montesino Pouzols
committed
#include "MantidAPI/WorkspaceFactory.h"
Gigg, Martyn Anthony
committed
#include "MantidDataObjects/EventWorkspace.h"
namespace Mantid {
namespace Algorithms {
// Register the algorithm into the AlgorithmFactory
DECLARE_ALGORITHM(ConvertToMatrixWorkspace)
using namespace Kernel;
using namespace API;
Janik Zikovsky
committed
using namespace DataObjects;
void ConvertToMatrixWorkspace::init() {
declareProperty(
make_unique<WorkspaceProperty<>>("InputWorkspace", "", Direction::Input),
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);
Gigg, Martyn Anthony
committed
MatrixWorkspace_sptr outputWorkspace;
Gigg, Martyn Anthony
committed
g_log.information() << "Converting EventWorkspace to Workspace2D.\n";
Janik Zikovsky
committed
const size_t numHists = inputWorkspace->getNumberHistograms();
Progress prog(this, 0.0, 1.0, numHists * 2);
Janik Zikovsky
committed
// Sort the input workspace in-place by TOF. This can be faster if there are
// few event lists.
Janik Zikovsky
committed
eventW->sortAll(TOF_SORT, &prog);
// Create the output workspace. This will copy many aspects fron the input
// one.
outputWorkspace = WorkspaceFactory::Instance().create(inputWorkspace);
Gigg, Martyn Anthony
committed
// ...but not the data, so do that here.
PARALLEL_FOR_IF(Kernel::threadSafe(*inputWorkspace, *outputWorkspace))
for (int64_t i = 0; i < static_cast<int64_t>(numHists); ++i) {
Gigg, Martyn Anthony
committed
PARALLEL_START_INTERUPT_REGION
const auto &inSpec = inputWorkspace->getSpectrum(i);
auto &outSpec = outputWorkspace->getSpectrum(i);
Janik Zikovsky
committed
Janik Zikovsky
committed
prog.report("Binning");
Gigg, Martyn Anthony
committed
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