1 |
|
// $Id$ |
2 |
/* |
/* |
3 |
****************************************************************************** |
****************************************************************************** |
4 |
* * |
* * |
13 |
****************************************************************************** |
****************************************************************************** |
14 |
*/ |
*/ |
15 |
|
|
16 |
#if !defined escript_DataExpanded_20040323_H |
#if !defined escript_DataExpanded_20040323_H |
17 |
#define escript_DataExpanded_20040323_H |
#define escript_DataExpanded_20040323_H |
18 |
|
|
19 |
#include "DataAbstract.h" |
#include "DataAbstract.h" |
25 |
|
|
26 |
namespace escript { |
namespace escript { |
27 |
|
|
28 |
class DataConstant; |
class DataEmpty; |
29 |
class DataTagged; |
class DataConstant; |
30 |
|
class DataTagged; |
31 |
|
|
32 |
/** |
/** |
33 |
\brief |
\brief |
53 |
|
|
54 |
/** |
/** |
55 |
\brief |
\brief |
56 |
Construct a DataExpanded from a DataConstant |
Construct a DataExpanded from a DataConstant. |
57 |
*/ |
*/ |
58 |
DataExpanded(const DataConstant& other); |
DataExpanded(const DataConstant& other); |
59 |
|
|
60 |
/** |
/** |
61 |
\brief |
\brief |
62 |
Construct a DataExpanded from a DataTagged |
Construct a DataExpanded from a DataTagged. |
63 |
*/ |
*/ |
64 |
DataExpanded(const DataTagged& other); |
DataExpanded(const DataTagged& other); |
65 |
|
|
72 |
\param value - Input - Data value for a single point. |
\param value - Input - Data value for a single point. |
73 |
\param what - Input - A description of what this data represents. |
\param what - Input - A description of what this data represents. |
74 |
*/ |
*/ |
75 |
DataExpanded(const boost::python::numeric::array& value, const FunctionSpace& what); |
DataExpanded(const boost::python::numeric::array& value, |
76 |
|
const FunctionSpace& what); |
77 |
|
|
78 |
/** |
/** |
79 |
\brief |
\brief |
80 |
Alternative constructor for DataExpanded |
Alternative constructor for DataExpanded |
81 |
|
|
82 |
Description: |
Description: |
83 |
Alternative Constructor for DataExpanded |
Alternative Constructor for DataExpanded. |
84 |
\param value - Input - Data value for a single point. |
\param value - Input - Data value for a single point. |
85 |
\param what - Input - A description of what this data represents. |
\param what - Input - A description of what this data represents. |
86 |
|
|
87 |
*/ |
*/ |
88 |
DataExpanded(const DataArrayView& value, const FunctionSpace& what); |
DataExpanded(const DataArrayView& value, |
89 |
|
const FunctionSpace& what); |
90 |
|
|
91 |
/** |
/** |
92 |
\brief |
\brief |
93 |
Alternative constructor for DataExpanded that copies a slice from |
Alternative constructor for DataExpanded that copies a slice from |
94 |
another DataExpanded. |
another DataExpanded. |
95 |
|
|
96 |
\param other - Input - DataExpanded object to slice from |
\param other - Input - DataExpanded object to slice from. |
97 |
\param region - Input - region to copy |
\param region - Input - region to copy. |
98 |
*/ |
*/ |
99 |
DataExpanded(const DataExpanded& other, const DataArrayView::RegionType& region); |
DataExpanded(const DataExpanded& other, |
100 |
|
const DataArrayView::RegionType& region); |
101 |
|
|
102 |
/** |
/** |
103 |
\brief |
\brief |
104 |
Destructor |
Destructor |
105 |
*/ |
*/ |
106 |
virtual ~DataExpanded(); |
virtual |
107 |
|
~DataExpanded(); |
108 |
|
|
109 |
/** |
/** |
110 |
\brief |
\brief |
111 |
Return a textual representation of the data |
Return a textual representation of the data |
112 |
*/ |
*/ |
113 |
virtual std::string toString() const; |
virtual |
114 |
|
std::string |
115 |
|
toString() const; |
116 |
|
|
117 |
/** |
/** |
118 |
\brief |
\brief |
120 |
The original data point value is used for all values of the new |
The original data point value is used for all values of the new |
121 |
data point. |
data point. |
122 |
*/ |
*/ |
123 |
void reshapeDataPoint(const DataArrayView::ShapeType& shape); |
void |
124 |
|
reshapeDataPoint(const DataArrayView::ShapeType& shape); |
125 |
|
|
126 |
/** |
/** |
127 |
\brief |
\brief |
131 |
\param sampleNo - Input - number of samples. |
\param sampleNo - Input - number of samples. |
132 |
\param dataPointNo - Input - Input. |
\param dataPointNo - Input - Input. |
133 |
*/ |
*/ |
134 |
virtual DataArrayView::ValueType::size_type getPointOffset(int sampleNo, int dataPointNo) const; |
virtual |
135 |
|
DataArrayView::ValueType::size_type |
136 |
|
getPointOffset(int sampleNo, |
137 |
|
int dataPointNo) const; |
138 |
|
|
139 |
/** |
/** |
140 |
\brief |
\brief |
141 |
Return a view into the data for the data point specified. |
Return a view into the data for the data point specified. |
142 |
NOTE: Construction of the DataArrayView is a relatively expensive |
NOTE: Construction of the DataArrayView is a relatively expensive |
143 |
operation |
operation. |
144 |
\param sampleNo - Input |
\param sampleNo - Input |
145 |
\param dataPointNo - Input |
\param dataPointNo - Input |
146 |
\return DataArrayView of the data point. |
\return DataArrayView of the data point. |
147 |
*/ |
*/ |
148 |
DataArrayView getDataPoint(int sampleNo, int dataPointNo); |
DataArrayView |
149 |
|
getDataPoint(int sampleNo, |
150 |
|
int dataPointNo); |
151 |
|
|
152 |
/** |
/** |
153 |
\brief |
\brief |
154 |
Return the number of doubles stored for the Data |
Return the number of doubles stored for the Data. |
155 |
*/ |
*/ |
156 |
virtual ValueType::size_type getLength() const; |
virtual |
157 |
|
ValueType::size_type |
158 |
|
getLength() const; |
159 |
|
|
160 |
/** |
/** |
161 |
\brief |
\brief |
163 |
The caller is reponsible for managing the object created. |
The caller is reponsible for managing the object created. |
164 |
\param region - Input - Region to copy. |
\param region - Input - Region to copy. |
165 |
*/ |
*/ |
166 |
virtual DataAbstract* getSlice(const DataArrayView::RegionType& region) const; |
virtual |
167 |
|
DataAbstract* |
168 |
|
getSlice(const DataArrayView::RegionType& region) const; |
169 |
|
|
170 |
/** |
/** |
171 |
\brief |
\brief |
173 |
\param value - Input - Data to copy from |
\param value - Input - Data to copy from |
174 |
\param region - Input - Region to copy. |
\param region - Input - Region to copy. |
175 |
*/ |
*/ |
176 |
virtual void setSlice(const DataAbstract* value, const DataArrayView::RegionType& region); |
virtual |
177 |
|
void |
178 |
|
setSlice(const DataAbstract* value, |
179 |
|
const DataArrayView::RegionType& region); |
180 |
|
|
181 |
protected: |
protected: |
182 |
|
|
192 |
\param noSamples - Input - number of samples. |
\param noSamples - Input - number of samples. |
193 |
\param noDataPointsPerSample - Input - |
\param noDataPointsPerSample - Input - |
194 |
*/ |
*/ |
195 |
void initialise(const DataArrayView::ShapeType& shape, int noSamples, int noDataPointsPerSample); |
void |
196 |
|
initialise(const DataArrayView::ShapeType& shape, |
197 |
|
int noSamples, |
198 |
|
int noDataPointsPerSample); |
199 |
|
|
200 |
/** |
/** |
201 |
\brief |
\brief |
203 |
|
|
204 |
Description: |
Description: |
205 |
Copy the given data point to all data points. |
Copy the given data point to all data points. |
206 |
\param value Input - Value for a single data point |
\param value Input - Value for a single data point. |
207 |
*/ |
*/ |
208 |
void copy(const DataArrayView& value); |
void |
209 |
void copy(const boost::python::numeric::array& value); |
copy(const DataArrayView& value); |
210 |
|
|
211 |
|
void |
212 |
|
copy(const boost::python::numeric::array& value); |
213 |
|
|
214 |
// |
// |
215 |
// The main data storage, a 2D array of data blocks |
// The main data storage, a 2D array of data blocks. |
216 |
DataBlocks2D m_data; |
DataBlocks2D m_data; |
217 |
|
|
218 |
}; |
}; |
219 |
|
|
220 |
} // end of namespace |
} // end of namespace |
|
#endif |
|
|
|
|
|
|
|
|
|
|
221 |
|
|
222 |
|
#endif |