Newer
Older
//----------------------------------------------------------------------
// Includes
//----------------------------------------------------------------------
#include "MantidAPI/Sample.h"
Gigg, Martyn Anthony
committed
#include "MantidAPI/SampleEnvironment.h"
#include "MantidGeometry/IComponent.h"
Russell Taylor
committed
Gigg, Martyn Anthony
committed
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
namespace API
{
using Geometry::Object;
using Geometry::Material;
using Geometry::IComponent;
using Geometry::V3D;
using Geometry::Quat;
/**
* Default constructor
*/
Sample::Sample() :
m_name(), m_shape(), m_material(), m_environment(), m_positionComp(NULL),
m_geom_id(0), m_thick(0.0), m_height(0.0), m_width(0.0)
{
}
/**
* Copy constructor
* @param copy const reference to the sample object
*/
Sample::Sample(const Sample& copy) :
m_name(copy.m_name), m_shape(copy.m_shape), m_material(copy.m_material),
m_environment(copy.m_environment), m_positionComp(copy.m_positionComp),
m_geom_id(copy.m_geom_id), m_thick(copy.m_thick), m_height(copy.m_height),
m_width(copy.m_width)
{
}
/** Assignment operator
* @param rhs const reference to the sample object
* @return A reference to this object, which will have the same
* state as the argument
*/
Sample& Sample::operator=(const Sample&rhs)
{
if (this == &rhs) return *this;
m_name = rhs.m_name;
m_shape = rhs.m_shape;
m_material = rhs.m_material;
m_environment = rhs.m_environment;
m_positionComp = rhs.m_positionComp;
m_geom_id = rhs.m_geom_id;
m_thick = rhs.m_thick;
m_height = rhs.m_height;
m_width = rhs.m_width;
return *this;
}
Russell Taylor
committed
Gigg, Martyn Anthony
committed
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
/**
* Returns the name of the sample
* @returns The name of this sample
*/
const std::string & Sample::getName() const
{
return m_name;
}
/**
* Update the name of the sample
* @param name The name of the sample
*/
void Sample::setName(const std::string & name)
{
m_name = name;
}
/**
* Get a pointer to the sample shape object
* @returns A reference to the object describing the shape
*/
const Object& Sample::getShape() const
{
return m_shape;
}
/**
* Set the object that describes the sample shape
* @param object The object describing the shape
* @throws An std::invalid_argument error if the object does
* not have a valid shape
*/
void Sample::setShape(const Object & object)
{
if( object.hasValidShape() )
{
m_shape = object;
}
else
{
throw std::invalid_argument("Sample::setShape - Object has an invalid shape.");
}
}
/**
* Return a reference to the sample environment that this sample is attached to
* @returns A const reference to a SampleEnvironment object
* @throws std::runtime_error If the environment has not been defined
*/
const SampleEnvironment & Sample::getEnvironment() const
{
if( !m_environment )
{
throw std::runtime_error("Sample::getEnvironment - No sample enviroment has been defined.");
}
return *m_environment;
}
/**
* Attach an environment oto this sample
* @param env A pointer to a created sample environment. This takes
* ownership of the object.
*/
void Sample::setEnvironment(SampleEnvironment * env)
{
m_environment = boost::shared_ptr<SampleEnvironment>(env);
}
/**
* Returns the absolute position of the sample
* @returns A V3D object containing the absolute position of the sample
*/
V3D Sample::getPos() const
{
if( !m_positionComp )
{
throw std::runtime_error("Sample::getPos - Position component not defined.");
}
return m_positionComp->getPos();
}
/**
* Returns the absolute rotation of the sample
* @returns A Quaternion containin the absolute rotation of the sample
*/
Quat Sample::getRotation() const
{
if( !m_positionComp )
{
throw std::runtime_error("Sample::getRoations - Position component not defined.");
}
return m_positionComp->getRotation();
}
/**
* Attach the sample to a position defined by the given component.
* @param positionComp The component defining the sample position
*/
void Sample::attachToPosition(const Geometry::IComponent * const positionComp)
{
m_positionComp = positionComp;
}
/**
* Set the geometry flag that is specfied in the raw file within the SPB_STRUCT
* 1 = cylinder, 2 = flat plate, 3 = disc, 4 = single crystal
* @param geom_id The flag for the geometry
*/
void Sample::setGeometryFlag(int geom_id)
{
m_geom_id = geom_id;
}
/**
* Get the geometry flag that is specified in the raw file within the SPB_STRUCT
* 1 = cylinder, 2 = flat plate, 3 = disc, 4 = single crystal
* @returns The flag for the sample geometry
*/
int Sample::getGeometryFlag() const
{
return m_geom_id;
}
/**
* Set the thickness value
* @param thick The parameter e_thick in the SPB_STRUCT
*/
void Sample::setThickness(double thick)
{
m_thick = thick;
}
/**
* Get the thickness value
* @returns The parameter thickness parameter
*/
double Sample::getThickness() const
{
return m_thick;
}
/**
* Set the height value
* @param height The parameter e_height in the SPB_STRUCT
*/
void Sample::setHeight(double height)
{
m_height = height;
}
/**
* Get the height value
* @returns The parameter height parameter
*/
double Sample::getHeight() const
{
return m_height;
}
/**
* Set the width value
* @param width The parameter e_width in the SPB_STRUCT
*/
void Sample::setWidth(double width)
{
m_width = width;
}
/**
* Get the height value
* @returns The parameter height parameter
*/
double Sample::getWidth() const
{
return m_width;
}
}