Newer
Older
Russell Taylor
committed
//----------------------------------------------------------------------
// Includes
//----------------------------------------------------------------------
#include "MantidDataHandling/GroupDetectors.h"
Russell Taylor
committed
#include "MantidAPI/WorkspaceValidators.h"
#include "MantidAPI/WorkspaceOpOverloads.h"
Russell Taylor
committed
#include "MantidKernel/ArrayProperty.h"
Russell Taylor
committed
#include <set>
Russell Taylor
committed
namespace Mantid {
namespace DataHandling {
Russell Taylor
committed
// Register the algorithm into the algorithm factory
DECLARE_ALGORITHM(GroupDetectors)
using namespace Kernel;
using namespace API;
/// (Empty) Constructor
GroupDetectors::GroupDetectors() {}
/// Destructor
GroupDetectors::~GroupDetectors() {}
void GroupDetectors::init() {
declareProperty(
new WorkspaceProperty<>("Workspace", "", Direction::InOut,
boost::make_shared<CommonBinsValidator>()),
"The name of the workspace2D on which to perform the algorithm");
Janik Zikovsky
committed
declareProperty(
new ArrayProperty<specid_t>("SpectraList"),
"An array containing a list of the indexes of the spectra to combine\n"
"(DetectorList and WorkspaceIndexList are ignored if this is set)");
Janik Zikovsky
committed
declareProperty(
new ArrayProperty<detid_t>("DetectorList"),
"An array of detector ID's (WorkspaceIndexList is ignored if this is\n"
"set)");
Janik Zikovsky
committed
Gigg, Martyn Anthony
committed
declareProperty(new ArrayProperty<size_t>("WorkspaceIndexList"),
"An array of workspace indices to combine");
Janik Zikovsky
committed
Steve Williams
committed
declareProperty("ResultIndex", -1,
"The workspace index of the summed spectrum (or -1 on error)",
Direction::Output);
Russell Taylor
committed
}
Russell Taylor
committed
// Get the input workspace
Russell Taylor
committed
const MatrixWorkspace_sptr WS = getProperty("Workspace");
Russell Taylor
committed
std::vector<size_t> indexList = getProperty("WorkspaceIndexList");
std::vector<specid_t> spectraList = getProperty("SpectraList");
const std::vector<detid_t> detectorList = getProperty("DetectorList");
Roman Tolchenov
committed
Russell Taylor
committed
// Could create a Validator to replace the below
if (indexList.empty() && spectraList.empty() && detectorList.empty()) {
g_log.information(name() + ": WorkspaceIndexList, SpectraList, and "
"DetectorList properties are all empty, no "
"grouping done");
Steve Williams
committed
return;
Russell Taylor
committed
}
// Bin boundaries need to be the same, so check if they actually are
if (!API::WorkspaceHelpers::commonBoundaries(WS)) {
g_log.error("Can only group if the histograms have common bin boundaries");
throw std::runtime_error(
"Can only group if the histograms have common bin boundaries");
Russell Taylor
committed
}
// If the spectraList property has been set, need to loop over the workspace
// looking for the
// appropriate spectra number and adding the indices they are linked to the
// list to be processed
if (!spectraList.empty()) {
WS->getIndicesFromSpectra(spectraList, indexList);
} // End dealing with spectraList
else if (!detectorList.empty()) {
// Dealing with DetectorList
// convert from detectors to workspace indices
WS->getIndicesFromDetectorIDs(detectorList, indexList);
if (indexList.empty()) {
g_log.warning("Nothing to group");
return;
Russell Taylor
committed
}
Janik Zikovsky
committed
const specid_t firstIndex = static_cast<specid_t>(indexList[0]);
ISpectrum *firstSpectrum = WS->getSpectrum(firstIndex);
MantidVec &firstY = WS->dataY(firstIndex);
Janik Zikovsky
committed
setProperty("ResultIndex", firstIndex);
Gigg, Martyn Anthony
committed
// loop over the spectra to group
Progress progress(this, 0.0, 1.0, static_cast<int>(indexList.size() - 1));
for (size_t i = 0; i < indexList.size() - 1; ++i) {
Janik Zikovsky
committed
// The current spectrum
const size_t currentIndex = indexList[i + 1];
ISpectrum *spec = WS->getSpectrum(currentIndex);
Janik Zikovsky
committed
// Add the current detector to belong to the first spectrum
firstSpectrum->addDetectorIDs(spec->getDetectorIDs());
Russell Taylor
committed
// Add up all the Y spectra and store the result in the first one
Janik Zikovsky
committed
MantidVec::iterator fEit = firstSpectrum->dataE().begin();
MantidVec::iterator Yit = spec->dataY().begin();
MantidVec::iterator Eit = spec->dataE().begin();
for (auto fYit = firstY.begin(); fYit != firstY.end();
++fYit, ++fEit, ++Yit, ++Eit) {
*fYit += *Yit;
// Assume 'normal' (i.e. Gaussian) combination of errors
*fEit = sqrt((*fEit) * (*fEit) + (*Eit) * (*Eit));
Janik Zikovsky
committed
// Now zero the now redundant spectrum and set its spectraNo to indicate
// this (using -1)
spec->dataY().assign(vectorSize, 0.0);
spec->dataE().assign(vectorSize, 0.0);
Janik Zikovsky
committed
spec->setSpectrumNo(-1);
spec->clearDetectorIDs();
Gigg, Martyn Anthony
committed
progress.report();
Russell Taylor
committed
}
}
} // namespace DataHandling
} // namespace Mantid