Newer
Older
Gigg, Martyn Anthony
committed
#include "MantidTestHelpers/WorkspaceCreationHelper.h"
#include "MantidAPI/AnalysisDataService.h"
#include "MantidAPI/WorkspaceFactory.h"
Janik Zikovsky
committed
#include "MantidDataObjects/EventWorkspace.h"
Janik Zikovsky
committed
#include "MantidKernel/Timer.h"
Janik Zikovsky
committed
using namespace Mantid::Algorithms;
using namespace Mantid::DataObjects;
using Mantid::DataObjects::Workspace2D_sptr;
Russell Taylor
committed
using Mantid::Geometry::IDetector_const_sptr;
class BinaryOpHelper : public Mantid::Algorithms::BinaryOperation {
Peterson, Peter
committed
public:
/// Default constructor
BinaryOpHelper() : BinaryOperation(){};
Peterson, Peter
committed
/// Destructor
/// function to return a name of the algorithm, must be overridden in all
/// algorithms
virtual const std::string name() const { return "BinaryOpHelper"; }
/// function to return a version of the algorithm, must be overridden in all
/// algorithms
virtual int version() const { return 1; }
/// function to return a category of the algorithm. A default implementation
/// is provided
virtual const std::string category() const { return "Helper"; }
/// function to return the summary of the algorithm. A default implementation
/// is provided.
virtual const std::string summary() const { return "Summary of this test."; }
Janik Zikovsky
committed
std::string checkSizeCompatibility(const MatrixWorkspace_const_sptr ws1,
const MatrixWorkspace_const_sptr ws2) {
Janik Zikovsky
committed
m_lhs = ws1;
m_rhs = ws2;
BinaryOperation::checkRequirements();
return BinaryOperation::checkSizeCompatibility(ws1, ws2);
Peterson, Peter
committed
}
Janik Zikovsky
committed
Peterson, Peter
committed
private:
// Unhide base class method to avoid Intel compiler warning
using BinaryOperation::checkSizeCompatibility;
Peterson, Peter
committed
// Overridden BinaryOperation methods
void performBinaryOperation(const Mantid::MantidVec &,
const Mantid::MantidVec &,
const Mantid::MantidVec &,
const Mantid::MantidVec &,
const Mantid::MantidVec &, Mantid::MantidVec &,
Mantid::MantidVec &) {}
void performBinaryOperation(const Mantid::MantidVec &,
const Mantid::MantidVec &,
const Mantid::MantidVec &, const double,
const double, Mantid::MantidVec &,
Mantid::MantidVec &) {}
class BinaryOperationTest : public CxxTest::TestSuite {
void testcheckSizeCompatibility1D1D() {
Workspace2D_sptr work_in1 =
WorkspaceCreationHelper::Create1DWorkspaceFib(10);
Workspace2D_sptr work_in2 =
WorkspaceCreationHelper::Create1DWorkspaceFib(20);
Workspace2D_sptr work_in3 =
WorkspaceCreationHelper::Create1DWorkspaceFib(10);
Workspace2D_sptr work_in4 =
WorkspaceCreationHelper::Create1DWorkspaceFib(5);
Workspace2D_sptr work_in5 =
WorkspaceCreationHelper::Create1DWorkspaceFib(3);
Workspace2D_sptr work_in6 =
WorkspaceCreationHelper::Create1DWorkspaceFib(1);
Peterson, Peter
committed
BinaryOpHelper helper;
TS_ASSERT(!helper.checkSizeCompatibility(work_in1, work_in2).empty());
TS_ASSERT(helper.checkSizeCompatibility(work_in1, work_in3).empty());
TS_ASSERT(!helper.checkSizeCompatibility(work_in1, work_in4).empty());
TS_ASSERT(!helper.checkSizeCompatibility(work_in1, work_in5).empty());
TS_ASSERT(helper.checkSizeCompatibility(work_in1, work_in6).empty());
void testcheckSizeCompatibility2D1D() {
Workspace2D_sptr work_in1 =
WorkspaceCreationHelper::Create2DWorkspace123(10, 10);
Workspace2D_sptr work_in2 =
WorkspaceCreationHelper::Create1DWorkspaceFib(20);
Workspace2D_sptr work_in3 =
WorkspaceCreationHelper::Create1DWorkspaceFib(10);
Workspace2D_sptr work_in4 =
WorkspaceCreationHelper::Create1DWorkspaceFib(5);
Workspace2D_sptr work_in5 =
WorkspaceCreationHelper::Create1DWorkspaceFib(3);
Workspace2D_sptr work_in6 =
WorkspaceCreationHelper::Create1DWorkspaceFib(1);
MatrixWorkspace_sptr work_inEvent1 =
WorkspaceCreationHelper::CreateEventWorkspace(10, 1);
// will not pass x array does not match
MatrixWorkspace_sptr work_inEvent2 =
WorkspaceCreationHelper::CreateEventWorkspace(1, 10);
Peterson, Peter
committed
BinaryOpHelper helper;
TS_ASSERT(!helper.checkSizeCompatibility(work_in1, work_in2).empty());
TS_ASSERT(helper.checkSizeCompatibility(work_in1, work_in3).empty());
TS_ASSERT(!helper.checkSizeCompatibility(work_in1, work_in4).empty());
TS_ASSERT(!helper.checkSizeCompatibility(work_in1, work_in5).empty());
TS_ASSERT(helper.checkSizeCompatibility(work_in1, work_in6).empty());
TS_ASSERT(helper.checkSizeCompatibility(work_in1, work_inEvent1).empty());
TS_ASSERT(!helper.checkSizeCompatibility(work_in1, work_inEvent2).empty());
void testcheckSizeCompatibility2D2D() {
Janik Zikovsky
committed
Workspace2D_sptr work_in1 =
WorkspaceCreationHelper::Create2DWorkspace(10, 10);
Workspace2D_sptr work_in2 =
WorkspaceCreationHelper::Create2DWorkspace(10, 20);
Workspace2D_sptr work_in3 =
WorkspaceCreationHelper::Create2DWorkspace(10, 10);
Workspace2D_sptr work_in4 =
WorkspaceCreationHelper::Create2DWorkspace(5, 5);
Workspace2D_sptr work_in5 =
WorkspaceCreationHelper::Create2DWorkspace(3, 3);
Workspace2D_sptr work_in6 =
WorkspaceCreationHelper::Create2DWorkspace(100, 1);
MatrixWorkspace_sptr work_inEvent1 =
WorkspaceCreationHelper::CreateEventWorkspace(5, 5);
MatrixWorkspace_sptr work_inEvent2 =
WorkspaceCreationHelper::CreateEventWorkspace(10, 10);
Peterson, Peter
committed
BinaryOpHelper helper;
TS_ASSERT(!helper.checkSizeCompatibility(work_in1, work_in2).empty());
TS_ASSERT(helper.checkSizeCompatibility(work_in1, work_in3).empty());
TS_ASSERT(!helper.checkSizeCompatibility(work_in1, work_in4).empty());
TS_ASSERT(!helper.checkSizeCompatibility(work_in1, work_in5).empty());
TS_ASSERT(!helper.checkSizeCompatibility(work_in1, work_in6).empty());
TS_ASSERT(!helper.checkSizeCompatibility(work_in1, work_inEvent1).empty());
TS_ASSERT(helper.checkSizeCompatibility(work_in1, work_inEvent2).empty());
void testMaskedSpectraPropagation() {
const int nHist = 5, nBins = 10;
masking.insert(0);
masking.insert(2);
masking.insert(4);
Janik Zikovsky
committed
MatrixWorkspace_sptr work_in1 =
WorkspaceCreationHelper::Create2DWorkspace123(nHist, nBins, 0, masking);
MatrixWorkspace_sptr work_in2 =
WorkspaceCreationHelper::Create2DWorkspace154(nHist, nBins);
BinaryOpHelper helper;
helper.initialize();
helper.setProperty("LHSWorkspace", work_in1);
helper.setProperty("RHSWorkspace", work_in2);
const std::string outputSpace("test");
helper.setPropertyValue("OutputWorkspace", outputSpace);
helper.setRethrows(true);
helper.execute();
TS_ASSERT(helper.isExecuted());
MatrixWorkspace_sptr output =
AnalysisDataService::Instance().retrieveWS<MatrixWorkspace>(
outputSpace);
TS_ASSERT(output);
Janik Zikovsky
committed
for (int i = 0; i < nHist; ++i) {
Russell Taylor
committed
IDetector_const_sptr det;
Janik Zikovsky
committed
det = output->getDetector(i);
} catch (Mantid::Kernel::Exception::NotFoundError &) {
Janik Zikovsky
committed
Janik Zikovsky
committed
TSM_ASSERT("Detector was found", det);
if (det) {
if (masking.count(i) == 0) {
Janik Zikovsky
committed
TS_ASSERT_EQUALS(det->isMasked(), false);
Janik Zikovsky
committed
TS_ASSERT_EQUALS(det->isMasked(), true);
}
Janik Zikovsky
committed
}
BinaryOperation::BinaryOperationTable_sptr
do_test_buildBinaryOperationTable(std::vector<std::vector<int>> lhs,
std::vector<std::vector<int>> rhs,
bool expect_throw = false) {
EventWorkspace_sptr lhsWS =
WorkspaceCreationHelper::CreateGroupedEventWorkspace(lhs, 50, 1.0);
EventWorkspace_sptr rhsWS =
WorkspaceCreationHelper::CreateGroupedEventWorkspace(rhs, 50, 1.0);
BinaryOperation::BinaryOperationTable_sptr table;
Janik Zikovsky
committed
Mantid::Kernel::Timer timer1;
if (expect_throw) {
TS_ASSERT_THROWS(
table = BinaryOperation::buildBinaryOperationTable(lhsWS, rhsWS),
std::runtime_error);
} else {
TS_ASSERT_THROWS_NOTHING(
table = BinaryOperation::buildBinaryOperationTable(lhsWS, rhsWS));
// std::cout << timer1.elapsed() << " sec to run
// buildBinaryOperationTable\n";
TS_ASSERT(table);
TS_ASSERT_EQUALS(table->size(), lhsWS->getNumberHistograms());
Janik Zikovsky
committed
}
return table;
}
void test_buildBinaryOperationTable_simpleLHS_by_groupedRHS() {
std::vector<std::vector<int>> lhs(6), rhs(2);
for (int i = 0; i < 6; i++) {
Janik Zikovsky
committed
// one detector per pixel in lhs
lhs[i].push_back(i);
// 3 detectors in each on the rhs
Janik Zikovsky
committed
}
auto table = do_test_buildBinaryOperationTable(lhs, rhs);
for (int i = 0; i < 6; i++) {
TS_ASSERT_EQUALS((*table)[i], i / 3);
Janik Zikovsky
committed
}
}
void
test_buildBinaryOperationTable_simpleLHS_by_groupedRHS_mismatched_throws() {
std::vector<std::vector<int>> lhs(6), rhs(2);
for (int i = 0; i < 6; i++) {
Janik Zikovsky
committed
// one detector per pixel in lhs, but they start at 3
Janik Zikovsky
committed
// 3 detectors in each on the rhs
Janik Zikovsky
committed
}
auto table = do_test_buildBinaryOperationTable(lhs, rhs, false);
TS_ASSERT_EQUALS((*table)[0], 1);
TS_ASSERT_EQUALS((*table)[1], 1);
TS_ASSERT_EQUALS((*table)[2], 1);
TS_ASSERT_EQUALS((*table)[3], -1);
TS_ASSERT_EQUALS((*table)[4], -1);
TS_ASSERT_EQUALS((*table)[5], -1);
Janik Zikovsky
committed
}
void test_buildBinaryOperationTable_groupedLHS_by_groupedRHS() {
std::vector<std::vector<int>> lhs(8), rhs(4);
for (int i = 0; i < 16; i++) {
Janik Zikovsky
committed
// two detectors per pixel in lhs
Janik Zikovsky
committed
// 4 detectors in each on the rhs
Janik Zikovsky
committed
}
auto table = do_test_buildBinaryOperationTable(lhs, rhs);
for (int i = 0; i < 8; i++) {
TS_ASSERT_EQUALS((*table)[i], i / 2);
Janik Zikovsky
committed
}
}
void
test_buildBinaryOperationTable_groupedLHS_by_groupedRHS_bad_overlap_throws() {
std::vector<std::vector<int>> lhs(6), rhs(4);
for (int i = 0; i < 24; i++) {
Janik Zikovsky
committed
// 4 detectors per pixel in lhs
Janik Zikovsky
committed
// 6 detectors in each on the rhs
Janik Zikovsky
committed
}
auto table = do_test_buildBinaryOperationTable(lhs, rhs, false);
TS_ASSERT_EQUALS((*table)[0], 0); // 0-3 go into 0-5
TS_ASSERT_EQUALS((*table)[1], -1); // 4-7 fails to go anywhere
TS_ASSERT_EQUALS((*table)[2], 1); // 8-11 goes into 6-11
Janik Zikovsky
committed
}
void test_buildBinaryOperationTable_simpleLHS_by_groupedRHS_large() {
std::vector<std::vector<int>> lhs(2000, std::vector<int>(1)),
rhs(20, std::vector<int>(100));
for (int i = 0; i < 2000; i++) {
Janik Zikovsky
committed
// 1 detector per pixel in lhs
lhs[i][0] = i;
// 1000 detectors in each on the rhs
Janik Zikovsky
committed
}
auto table = do_test_buildBinaryOperationTable(lhs, rhs);
for (int i = 0; i < 2000; i++) {
TS_ASSERT_EQUALS((*table)[i], i / 100);
Janik Zikovsky
committed
}
}