Skip to content
Snippets Groups Projects
Commit c6e0b3f6 authored by Zhou, Wenduo's avatar Zhou, Wenduo
Browse files

Refs #11288. Fixed unit test due to new feature.

parent 53372fdf
No related branches found
No related tags found
No related merge requests found
......@@ -10,6 +10,7 @@
#include "MantidMDEvents/MDEventFactory.h"
#include "MantidMDEvents/MDEventInserter.h"
#include "MantidGeometry/MDGeometry/MDHistoDimension.h"
#include "MantidGeometry/MDGeometry/IMDDimension.h"
#include "MantidMDEvents/MDEventWorkspace.h"
#include "MantidMDEvents/MDEvent.h"
// #include "MantidMDEvents/ImportMDEventWorkspace.h"
......@@ -151,7 +152,7 @@ void ConvertSpiceDataToRealSpace::exec() {
// Convert to MD workspaces
g_log.debug("About to converting to workspaces done!");
IMDEventWorkspace_sptr m_mdEventWS = convertToMDEventWS(vec_ws2d);
IMDEventWorkspace_sptr m_mdEventWS = convertToMDEventWS2(vec_ws2d);
std::string monitorlogname = getProperty("MonitorCountsLogName");
IMDEventWorkspace_sptr mdMonitorWS =
createMonitorMDWorkspace(vec_ws2d, logvecmap[monitorlogname]);
......@@ -305,6 +306,7 @@ MatrixWorkspace_sptr ConvertSpiceDataToRealSpace::loadRunToMatrixWS(
// Import data
for (size_t i = 0; i < m_numSpec; ++i) {
// get detector
Geometry::IDetector_const_sptr tmpdet = tempws->getDetector(i);
tempws->dataX(i)[0] = tmpdet->getPos().X();
tempws->dataX(i)[0] = tmpdet->getPos().X() + 0.01;
......@@ -314,6 +316,8 @@ MatrixWorkspace_sptr ConvertSpiceDataToRealSpace::loadRunToMatrixWS(
tempws->dataE(i)[0] = sqrt(yvalue);
else
tempws->dataE(i)[0] = 1;
// TODO/FIXME : update X-range, Y-range and Z-range
g_log.error("Should find X-range, Y-range and Z-range!");
}
// Return duration
......@@ -411,6 +415,10 @@ void ConvertSpiceDataToRealSpace::readTableInfo(
*/
IMDEventWorkspace_sptr ConvertSpiceDataToRealSpace::convertToMDEventWS(
const std::vector<MatrixWorkspace_sptr> &vec_ws2d) {
// FIXME - This should be deleted!
throw std::runtime_error("Remove it! Replaced!");
// Write the lsit of workspacs to a file to be loaded to an MD workspace
Poco::TemporaryFile tmpFile;
std::string tempFileName = tmpFile.path();
......
......@@ -149,9 +149,9 @@ public:
Mantid::detid_t detid43 = mditer->getInnerDetectorID(43);
TS_ASSERT_EQUALS(detid43, 44);
Mantid::detid_t detid44 = mditer->getInnerDetectorID(44);
TS_ASSERT_EQUALS(detid44, 45);
TS_ASSERT_EQUALS(detid44, 1);
Mantid::detid_t detid61 = mditer->getInnerDetectorID(61);
TS_ASSERT_EQUALS(detid61, 62);
TS_ASSERT_EQUALS(detid61, 18);
// Run index
uint16_t run0 = mditer->getInnerRunIndex(0);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment