Newer
Older
#ifndef APPLYCALIBRATIONTEST_H_
#define APPLYCALIBRATIONTEST_H_
#include <cxxtest/TestSuite.h>
#include "MantidDataHandling/LoadInstrument.h"
#include "MantidAPI/IAlgorithm.h"
#include "MantidAlgorithms/ApplyCalibration.h"
#include "MantidAPI/Workspace.h"
#include "MantidDataObjects/Workspace2D.h"
#include "MantidAPI/MatrixWorkspace.h"
#include "WorkspaceCreationHelperTest.h"
#include "MantidAPI/AnalysisDataService.h"
#include "MantidAPI/ITableWorkspace.h"
#include "MantidAPI/TableRow.h"
#include "MantidKernel/V3D.h"
#include "MantidGeometry/Instrument.h"
#include "MantidGeometry/Instrument/Component.h"
#include "MantidDataHandling/LoadEmptyInstrument.h"
#include <stdexcept>
using namespace Mantid::Algorithms;
using namespace Mantid::API;
using namespace Mantid::Kernel;
using namespace Mantid::DataObjects;
using Mantid::Geometry::IDetector_const_sptr;
class ApplyCalibrationTest : public CxxTest::TestSuite {
void testName() { TS_ASSERT_EQUALS(appCalib.name(), "ApplyCalibration") }
TS_ASSERT(appCalib.isInitialized())
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
void testSimple() {
int ndets = 3;
// Create workspace with paremeterised instrument and put into data store
Workspace2D_sptr ws =
WorkspaceCreationHelper::create2DWorkspaceWithFullInstrument(ndets, 10,
true);
const std::string wsName("ApplyCabrationWs");
AnalysisDataServiceImpl &dataStore = AnalysisDataService::Instance();
dataStore.add(wsName, ws);
// Create Calibration Table
ITableWorkspace_sptr posTableWs =
WorkspaceFactory::Instance().createTable();
posTableWs->addColumn("int", "Detector ID");
posTableWs->addColumn("V3D", "Detector Position");
for (int i = 0; i < ndets; ++i) {
TableRow row = posTableWs->appendRow();
row << i + 1 << V3D(1.0, 0.01 * i, 2.0);
}
TS_ASSERT_THROWS_NOTHING(appCalib.setPropertyValue("Workspace", wsName));
TS_ASSERT_THROWS_NOTHING(appCalib.setProperty<ITableWorkspace_sptr>(
"PositionTable", posTableWs));
TS_ASSERT_THROWS_NOTHING(appCalib.execute());
TS_ASSERT(appCalib.isExecuted());
IDetector_const_sptr det = ws->getDetector(0);
int id = det->getID();
V3D newPos = det->getPos();
TS_ASSERT_EQUALS(id, 1);
TS_ASSERT_DELTA(newPos.X(), 1.0, 0.0001);
TS_ASSERT_DELTA(newPos.Y(), 0.0, 0.0001);
TS_ASSERT_DELTA(newPos.Z(), 2.0, 0.0001);
det = ws->getDetector(ndets - 1);
id = det->getID();
newPos = det->getPos();
TS_ASSERT_EQUALS(id, ndets);
TS_ASSERT_DELTA(newPos.X(), 1.0, 0.0001);
TS_ASSERT_DELTA(newPos.Y(), 0.01 * (ndets - 1), 0.0001);
TS_ASSERT_DELTA(newPos.Z(), 2.0, 0.0001);
dataStore.remove(wsName);
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
void testComplex() {
/* The purpse of this test is to test the algorithm when the relative
* positioning and rotation
* of components is complicated. This is the case for the MAPS instrument
* and so here we
* load the IDF of a MAPS instrument where the number of detectors has been
* reduced.
*/
int ndets = 3;
// Create workspace with a reduced MAPS instrument (parametrised) and
// retrieve vfrom data store.
const std::string wsName("ApplyCabrationWs");
Mantid::DataHandling::LoadEmptyInstrument loader;
loader.initialize();
loader.setPropertyValue(
"Filename", "IDFs_for_UNIT_TESTING/MAPS_Definition_Reduced.xml");
loader.setPropertyValue("OutputWorkspace", wsName);
loader.execute();
AnalysisDataServiceImpl &dataStore = AnalysisDataService::Instance();
MatrixWorkspace_sptr ws = dataStore.retrieveWS<MatrixWorkspace>(wsName);
// Create Calibration Table
int firstDetectorID = 34208002;
ITableWorkspace_sptr posTableWs =
WorkspaceFactory::Instance().createTable();
posTableWs->addColumn("int", "Detector ID");
posTableWs->addColumn("V3D", "Detector Position");
for (int i = 0; i < ndets; ++i) {
TableRow row = posTableWs->appendRow();
row << firstDetectorID + 10 * i << V3D(1.0, 0.01 * i, 2.0);
}
TS_ASSERT_THROWS_NOTHING(appCalib.setPropertyValue("Workspace", wsName));
TS_ASSERT_THROWS_NOTHING(appCalib.setProperty<ITableWorkspace_sptr>(
"PositionTable", posTableWs));
TS_ASSERT_THROWS_NOTHING(appCalib.execute());
TS_ASSERT(appCalib.isExecuted());
IDetector_const_sptr det = ws->getDetector(1830);
int id = det->getID();
V3D newPos = det->getPos();
TS_ASSERT_EQUALS(id, firstDetectorID);
TS_ASSERT_DELTA(newPos.X(), 1.0, 0.0001);
TS_ASSERT_DELTA(newPos.Y(), 0.0, 0.0001);
TS_ASSERT_DELTA(newPos.Z(), 2.0, 0.0001);
det = ws->getDetector(1840);
id = det->getID();
newPos = det->getPos();
TS_ASSERT_EQUALS(id, firstDetectorID + 10);
TS_ASSERT_DELTA(newPos.X(), 1.0, 0.0001);
TS_ASSERT_DELTA(newPos.Y(), 0.01, 0.0001);
TS_ASSERT_DELTA(newPos.Z(), 2.0, 0.0001);
det = ws->getDetector(1850);
id = det->getID();
newPos = det->getPos();
TS_ASSERT_EQUALS(id, firstDetectorID + 20);
TS_ASSERT_DELTA(newPos.X(), 1.0, 0.0001);
TS_ASSERT_DELTA(newPos.Y(), 0.02, 0.0001);
TS_ASSERT_DELTA(newPos.Z(), 2.0, 0.0001);
dataStore.remove(wsName);
private:
ApplyCalibration appCalib;
};
#endif /*APPLYCALIBRATIONTEST_H_*/