Newer
Older
Janik Zikovsky
committed
#include "MantidAlgorithms/ConvertToEventWorkspace.h"
#include "MantidDataObjects/EventWorkspace.h"
#include "MantidDataObjects/Events.h"
#include "MantidDataObjects/WorkspaceCreation.h"
Janik Zikovsky
committed
using namespace Mantid::Kernel;
using namespace Mantid::API;
using namespace Mantid::DataObjects;
namespace Mantid {
namespace Algorithms {
// Register the algorithm into the AlgorithmFactory
DECLARE_ALGORITHM(ConvertToEventWorkspace)
/** Initialize the algorithm's properties.
*/
void ConvertToEventWorkspace::init() {
declareProperty(make_unique<WorkspaceProperty<Workspace2D>>(
"InputWorkspace", "", Direction::Input),
"An input Workspace2D.");
declareProperty("GenerateZeros", false,
"Generate an event even for empty bins\n"
"Warning! This may use significantly more memory.");
declareProperty("GenerateMultipleEvents", false,
"Generate a number of evenly spread events in each bin. See "
"the help for details.\n"
"Warning! This may use significantly more memory.");
declareProperty(
"MaxEventsPerBin", 10,
"If GenerateMultipleEvents is true, specifies a maximum number of events "
"to generate in a single bin.\n"
"Use a value that matches your instrument's TOF resolution. Default 10.");
declareProperty(make_unique<WorkspaceProperty<EventWorkspace>>(
"OutputWorkspace", "", Direction::Output),
"Name of the output EventWorkspace.");
}
/** Execute the algorithm.
*/
void ConvertToEventWorkspace::exec() {
Workspace2D_const_sptr inWS = getProperty("InputWorkspace");
bool GenerateMultipleEvents = getProperty("GenerateMultipleEvents");
bool GenerateZeros = getProperty("GenerateZeros");
int MaxEventsPerBin = getProperty("MaxEventsPerBin");
auto outWS = create<EventWorkspace>(*inWS);
Progress prog(this, 0.0, 1.0, inWS->getNumberHistograms());
PARALLEL_FOR_IF(Kernel::threadSafe(*inWS))
for (int iwi = 0; iwi < int(inWS->getNumberHistograms()); iwi++) {
PARALLEL_START_INTERUPT_REGION
size_t wi = size_t(iwi);
// The input spectrum (a histogram)
const auto &inSpec = inWS->getSpectrum(wi);
EventList &el = outWS->getSpectrum(wi);
// This method fills in the events
el.createFromHistogram(&inSpec, GenerateZeros, GenerateMultipleEvents,
MaxEventsPerBin);
prog.report("Converting");
PARALLEL_END_INTERUPT_REGION
Janik Zikovsky
committed
}
Janik Zikovsky
committed
setProperty("OutputWorkspace", std::move(outWS));
Janik Zikovsky
committed
} // namespace Algorithms