Newer
Older
#include "MantidDataHandling/LoadEmptyInstrument.h"
#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 "MantidDataObjects/EventWorkspace.h"
#include "MantidDataObjects/Workspace2D.h"
#include "MantidDataObjects/WorkspaceCreation.h"
Federico Montesino Pouzols
committed
#include "MantidGeometry/Instrument.h"
#include "MantidKernel/BoundedValidator.h"
#include "MantidKernel/ConfigService.h"
#include "MantidKernel/OptionalBool.h"
#include "MantidIndexing/IndexInfo.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 namespace HistogramData;
/**
* 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.");
}
/** 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() {
// 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");
}
Indexing::IndexInfo indexInfo(number_spectra);
bool MakeEventWorkspace = getProperty("MakeEventWorkspace");
if (MakeEventWorkspace) {
setProperty("OutputWorkspace",
create<EventWorkspace>(*ws, indexInfo, BinEdges(2)));
const double detector_value = getProperty("DetectorValue");
const double monitor_value = getProperty("MonitorValue");
auto ws2D = create<MatrixWorkspace>(
*ws, indexInfo, Histogram(BinEdges(2), Counts(1, detector_value),
CountStandardDeviations(1, detector_value)));
Counts v_monitor_y(1, monitor_value);
CountStandardDeviations v_monitor_e(1, monitor_value);
const auto &spectrumInfo = ws2D->spectrumInfo();
const auto size = static_cast<int64_t>(spectrumInfo->size());
#pragma omp parallel for
for (size_t i = 0; i < size; i++) {
if (spectrumInfo.isMonitor(i)) {
ws2D->setCounts(i, v_monitor_y);
ws2D->setCountStandardDeviations(i, v_monitor_e);
}
setProperty("OutputWorkspace", std::move(ws2D));
}
}
/// 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