Newer
Older
#include "MantidAPI/FileProperty.h"
Federico Montesino Pouzols
committed
#include "MantidAPI/RegisterFileLoader.h"
#include "MantidAPI/SpectrumInfo.h"
Federico Montesino Pouzols
committed
#include "MantidAPI/WorkspaceFactory.h"
#include "MantidDataHandling/LoadEmptyInstrument.h"
#include "MantidDataObjects/EventWorkspace.h"
#include "MantidDataObjects/Workspace2D.h"
Federico Montesino Pouzols
committed
#include "MantidGeometry/Instrument.h"
#include "MantidKernel/ConfigService.h"
#include "MantidKernel/BoundedValidator.h"
namespace Mantid {
namespace DataHandling {
// Register the algorithm into the algorithm factory as a file loading algorithm
DECLARE_FILELOADER_ALGORITHM(LoadEmptyInstrument)
using namespace Kernel;
using namespace API;
using namespace Geometry;
using namespace DataObjects;
using HistogramData::Counts;
using HistogramData::CountStandardDeviations;
/// Empty default constructor
LoadEmptyInstrument::LoadEmptyInstrument() {}
/**
* Return the confidence with with this algorithm can load the file
* @param descriptor A descriptor for the file
* @returns An integer specifying the confidence level. 0 indicates it will not
* be used
*/
int LoadEmptyInstrument::confidence(Kernel::FileDescriptor &descriptor) const {
const std::string &filePath = descriptor.filename();
int confidence(0);
if (descriptor.isAscii()) // Only consider an Ascii file
// Filename must contain "Definition"
std::string::size_type stripPath = filePath.find_last_of("\\/");
if (stripPath == std::string::npos)
stripPath = 0;
if (filePath.find("Definition", stripPath) != std::string::npos) {
// We have some confidence and it depends on the filetype.
if (descriptor.extension() == "xml") {
confidence = 80;
} else {
confidence = 20;
} // Has "Definition"
} // Ascii file
return confidence;
}
/// Initialisation method.
void LoadEmptyInstrument::init() {
declareProperty(
make_unique<FileProperty>("Filename", "", FileProperty::OptionalLoad,
".xml"),
"The filename (including its full or relative path) of an instrument "
"definition file. The file extension must either be .xml or .XML when "
"specifying an instrument definition file. Note Filename or "
"InstrumentName must be specified but not both.");
declareProperty(
"InstrumentName", "",
"Name of instrument. Can be used instead of Filename to specify an IDF");
make_unique<WorkspaceProperty<MatrixWorkspace>>("OutputWorkspace", "",
Direction::Output),
"The name of the workspace in which to store the imported instrument");
auto mustBePositive = boost::make_shared<BoundedValidator<double>>();
mustBePositive->setLower(0.0);
declareProperty(
"DetectorValue", 1.0, mustBePositive,
"This value affects the colour of the detectors in the instrument\n"
"display window (default 1)");
declareProperty(
"MonitorValue", 2.0, mustBePositive,
"This value affects the colour of the monitors in the instrument\n"
"display window (default 2)");
declareProperty(
make_unique<PropertyWithValue<bool>>("MakeEventWorkspace", false),
"Set to True to create an EventWorkspace (with no events) "
"instead of a Workspace2D.");
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
}
/** Executes the algorithm. Reading in the file and creating and populating
* the output workspace
*
* @throw std::runtime_error If the instrument cannot be loaded by the
*LoadInstrument ChildAlgorithm
* @throw InstrumentDefinitionError Thrown if issues with the content of XML
*instrument file not covered by LoadInstrument
* @throw std::invalid_argument If the optional properties are set to invalid
*values
*/
void LoadEmptyInstrument::exec() {
// Get other properties
const double detector_value = getProperty("DetectorValue");
const double monitor_value = getProperty("MonitorValue");
// load the instrument into this workspace
MatrixWorkspace_sptr ws = this->runLoadInstrument();
Instrument_const_sptr instrument = ws->getInstrument();
// Get number of detectors stored in instrument
const size_t number_spectra = instrument->getNumberDetectors();
// Check that we have some spectra for the workspace
if (number_spectra == 0) {
g_log.error(
"Instrument has no detectors, unable to create workspace for it");
throw Kernel::Exception::InstrumentDefinitionError(
"No detectors found in instrument");
}
bool MakeEventWorkspace = getProperty("MakeEventWorkspace");
MatrixWorkspace_sptr outWS;
if (MakeEventWorkspace) {
// Make a brand new EventWorkspace
outWS = WorkspaceFactory::Instance().create("EventWorkspace",
number_spectra, 2, 1);
WorkspaceFactory::Instance().initializeFromParent(*ws, *outWS, true);
} else {
// Now create the outputworkspace and copy over the instrument object
outWS = WorkspaceFactory::Instance().create(ws, number_spectra, 2, 1);
}
outWS->rebuildSpectraMapping(true /* include monitors */);
// ---- Set the values ----------
if (!MakeEventWorkspace) {
auto ws2D = boost::dynamic_pointer_cast<Workspace2D>(outWS);
Counts v_y(1, detector_value);
Counts v_monitor_y(1, monitor_value);
CountStandardDeviations v_e(1, detector_value);
CountStandardDeviations v_monitor_e(1, monitor_value);
const auto &spectrumInfo = ws2D->spectrumInfo();
for (size_t i = 0; i < ws2D->getNumberHistograms(); i++) {
if (spectrumInfo.isMonitor(i)) {
ws2D->setCounts(i, v_monitor_y);
ws2D->setCountStandardDeviations(i, v_monitor_e);
} else {
ws2D->setCounts(i, v_y);
ws2D->setCountStandardDeviations(i, v_e);
}
}
// Save in output
this->setProperty("OutputWorkspace", outWS);
}
/// Run the Child Algorithm LoadInstrument (or LoadInstrumentFromRaw)
API::MatrixWorkspace_sptr LoadEmptyInstrument::runLoadInstrument() {
const std::string filename = getPropertyValue("Filename");
const std::string instrumentName = getPropertyValue("InstrumentName");
IAlgorithm_sptr loadInst = createChildAlgorithm("LoadInstrument", 0, 1);
loadInst->setPropertyValue("Filename", filename);
loadInst->setPropertyValue("InstrumentName", instrumentName);
loadInst->setProperty("RewriteSpectraMap", OptionalBool(true));
auto ws = WorkspaceFactory::Instance().create("Workspace2D", 1, 2, 1);
loadInst->setProperty<MatrixWorkspace_sptr>("Workspace", ws);
loadInst->execute();
return ws;
}
} // namespace DataHandling