-
Campbell, Stuart authoredCampbell, Stuart authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
LoadRawBin0Test.h 6.05 KiB
#ifndef LoadRawBin0Test123_H_
#define LoadRawBin0Test123_H_
#include <cxxtest/TestSuite.h>
#include "MantidDataHandling/LoadRawBin0.h"
#include "MantidAPI/WorkspaceFactory.h"
#include "MantidAPI/AnalysisDataService.h"
#include "MantidAPI/FrameworkManager.h"
#include "MantidKernel/ConfigService.h"
#include "MantidKernel/TimeSeriesProperty.h"
#include "MantidAPI/WorkspaceGroup.h"
#include "MantidGeometry/Instrument.h"
#include <Poco/Path.h>
using namespace Mantid::API;
using namespace Mantid::Kernel;
using namespace Mantid::DataHandling;
using namespace Mantid::DataObjects;
class LoadRawBin0Test : public CxxTest::TestSuite {
public:
static LoadRawBin0Test *createSuite() { return new LoadRawBin0Test(); }
static void destroySuite(LoadRawBin0Test *suite) { delete suite; }
LoadRawBin0Test() {
// Path to test input file assumes Test directory checked out from SVN
inputFile = "LOQ48127.raw";
}
void testInit() {
TS_ASSERT_THROWS_NOTHING(loader.initialize());
TS_ASSERT(loader.isInitialized());
}
void testExec() {
/* std::string s;
std::getline(std::cin,s);*/
if (!loader.isInitialized())
loader.initialize();
// Should fail because mandatory parameter has not been set
TS_ASSERT_THROWS(loader.execute(), std::runtime_error);
// Now set it...
loader.setPropertyValue("Filename", inputFile);
outputSpace = "bin0";
loader.setPropertyValue("OutputWorkspace", outputSpace);
TS_ASSERT_THROWS_NOTHING(loader.execute());
TS_ASSERT(loader.isExecuted());
// Get back the saved workspace
Workspace_sptr output;
TS_ASSERT_THROWS_NOTHING(
output = AnalysisDataService::Instance().retrieve(outputSpace));
Workspace2D_sptr output2D =
boost::dynamic_pointer_cast<Workspace2D>(output);
// Should be 2584 for file LOQ48127.RAW
TS_ASSERT_EQUALS(output2D->getNumberHistograms(), 8);
// Check two X vectors are the same
TS_ASSERT((output2D->dataX(2)) == (output2D->dataX(6)));
// Check two Y arrays have the same number of elements
TS_ASSERT_EQUALS(output2D->dataY(2).size(), output2D->dataY(6).size());
// Check one particular value
TS_ASSERT_EQUALS(output2D->dataY(3)[0], 0.);
// Check that the error on that value is correct
TS_ASSERT_EQUALS(output2D->dataE(2)[0], std::sqrt(output2D->dataY(2)[0]));
// Check the unit has been set correctly
TS_ASSERT_EQUALS(output2D->getAxis(0)->unit()->unitID(), "TOF")
TS_ASSERT(!output2D->isDistribution())
// Check the proton charge has been set correctly
TS_ASSERT_DELTA(output2D->run().getProtonCharge(), 10.0409, 0.0001)
AnalysisDataService::Instance().remove(outputSpace);
}
void testMultiPeriod() {
LoadRawBin0 loader5;
loader5.initialize();
loader5.setPropertyValue("Filename", "CSP78173.raw");
loader5.setPropertyValue("OutputWorkspace", "multiperiod");
// loader5.setPropertyValue("SpectrumList", "0,1,2,3");
TS_ASSERT_THROWS_NOTHING(loader5.execute())
TS_ASSERT(loader5.isExecuted())
WorkspaceGroup_sptr work_out;
TS_ASSERT_THROWS_NOTHING(
work_out = AnalysisDataService::Instance().retrieveWS<WorkspaceGroup>(
"multiperiod"));
Workspace_sptr wsSptr =
AnalysisDataService::Instance().retrieve("multiperiod");
WorkspaceGroup_sptr sptrWSGrp =
boost::dynamic_pointer_cast<WorkspaceGroup>(wsSptr);
std::vector<std::string> wsNamevec;
wsNamevec = sptrWSGrp->getNames();
int period = 1;
std::vector<std::string>::const_iterator it = wsNamevec.begin();
for (; it != wsNamevec.end(); it++) {
std::stringstream count;
count << period;
std::string wsName = "multiperiod_" + count.str();
TS_ASSERT_EQUALS(*it, wsName)
period++;
}
std::vector<std::string>::const_iterator itr1 = wsNamevec.begin();
int periodNumber = 0;
const int nHistograms = 4;
for (; itr1 != wsNamevec.end(); itr1++) {
MatrixWorkspace_sptr outsptr;
TS_ASSERT_THROWS_NOTHING(
outsptr = AnalysisDataService::Instance().retrieveWS<MatrixWorkspace>(
(*itr1)));
doTestMultiPeriodWorkspace(outsptr, nHistograms, ++periodNumber);
}
std::vector<std::string>::const_iterator itr = wsNamevec.begin();
MatrixWorkspace_sptr outsptr1;
TS_ASSERT_THROWS_NOTHING(
outsptr1 = AnalysisDataService::Instance().retrieveWS<MatrixWorkspace>(
(*itr)));
MatrixWorkspace_sptr outsptr2;
TS_ASSERT_THROWS_NOTHING(
outsptr2 = AnalysisDataService::Instance().retrieveWS<MatrixWorkspace>(
(*++itr)));
TS_ASSERT_EQUALS(outsptr1->dataX(0), outsptr2->dataX(0))
TS_ASSERT_EQUALS(&(outsptr1->sample()), &(outsptr2->sample()))
TS_ASSERT_DIFFERS(&(outsptr1->run()), &(outsptr2->run()))
itr1 = wsNamevec.begin();
for (; itr1 != wsNamevec.end(); ++itr1) {
AnalysisDataService::Instance().remove(*itr);
}
}
private:
/// Helper method to run common set of tests on a workspace in a multi-period
/// group.
void doTestMultiPeriodWorkspace(MatrixWorkspace_sptr workspace,
const size_t &nHistograms,
int expected_period) {
// Check the number of histograms.
TS_ASSERT_EQUALS(workspace->getNumberHistograms(), nHistograms);
// Check the current period property.
const Mantid::API::Run &run = workspace->run();
Property *prop = run.getLogData("current_period");
PropertyWithValue<int> *current_period_property =
dynamic_cast<PropertyWithValue<int> *>(prop);
TS_ASSERT(current_period_property != NULL);
int actual_period;
Mantid::Kernel::toValue<int>(current_period_property->value(),
actual_period);
TS_ASSERT_EQUALS(expected_period, actual_period);
// Check the period n property.
std::stringstream stream;
stream << "period " << actual_period;
TSM_ASSERT_THROWS_NOTHING("period number series could not be found.",
run.getLogData(stream.str()));
}
LoadRawBin0 loader;
std::string inputFile;
std::string outputSpace;
};
#endif /*LoadRawBin0Test_H_*/