Newer
Older
#ifndef MANTID_DATAOBJECTS_MDEVENTFACTORY_H_
#define MANTID_DATAOBJECTS_MDEVENTFACTORY_H_
#include "MantidAPI/IMDEventWorkspace_fwd.h"
#include "MantidDataObjects/MDBin.h"
#include "MantidDataObjects/MDEvent.h"
#include "MantidDataObjects/MDLeanEvent.h"
#include "MantidDataObjects/MDEventFactory.h"
#include "MantidDataObjects/MDEventWorkspace.h"
Janik Zikovsky
committed
#include <boost/shared_ptr.hpp>
namespace DataObjects {
/** MDEventFactory : collection of methods
* to create MDLeanEvent* instances, by specifying the number
* of dimensions as a parameter.
*
* @author Janik Zikovsky
* @date 2011-02-24 15:08:43.105134
*/
// preliminary definition to satisfy gcc
template <size_t nd> class LOOP;
class DLLExport MDEventFactory {
/** definition which states how many dimensions to generate. This defines the
*number of dimensions in MD wokspace supported by Mantid
*IF THIS NUMBER CHANGES, ONE HAS TO RUN generate_mdevent_declarations.py
*located with MDEventFactory.cpp file TO REINSTANTIATE AUTOGENERATED CODE
*/
enum { MAX_MD_DIMENSIONS_NUM = 9 };
public:
/** enum defines fifferent box types generated by createBox factory
* We will use typecast from integer to these types so it is important to
* define consisten numbers to these types */
enum BoxType {
MDBoxWithLean = 0, //< MDBox generated for MDLeanEvent
MDGridBoxWithLean = 1, //< MDGridBox generated for MDLeanEvent
MDBoxWithFat = 2, //< MDBox generated for MDEvent
MDGridBoxWithFat = 3, //< MDGridBox generated for MDEvent
NumBoxTypes =
4 //< Number of different types of the events, used as metaloop splitter
};
// create MD workspace factory call
static API::IMDEventWorkspace_sptr CreateMDWorkspace(
size_t nd, const std::string &eventType = "MDLeanEvent",
const Mantid::API::MDNormalization &preferredNormalization =
Mantid::API::MDNormalization::VolumeNormalization,
const Mantid::API::MDNormalization &preferredNormalizationHisto =
Mantid::API::MDNormalization::VolumeNormalization);
static API::IMDNode *createBox(
size_t nDimensions, BoxType Type, API::BoxController_sptr &splitter,
const std::vector<Mantid::Geometry::MDDimensionExtents<coord_t>> &
extentsVector =
std::vector<Mantid::Geometry::MDDimensionExtents<coord_t>>(),
const uint32_t depth = 0, const size_t nBoxEvents = UNDEF_SIZET,
const size_t boxID = UNDEF_SIZET);
/** Returns max number of MD dimensions allowed by current Mantid version*/
static size_t getMaxNumDim() { return size_t(MAX_MD_DIMENSIONS_NUM); }
private:
typedef API::IMDNode *(*fpCreateBox)(
API::BoxController *,
const std::vector<Mantid::Geometry::MDDimensionExtents<coord_t>> &,
const uint32_t, const size_t, const size_t);
// vector of function pointers to the functions which create MDBox or
// MDGridBox;
static std::vector<fpCreateBox> boxCreatorFP;
// typedef for the class function pointer to the function, which creates MD
// Workspaces
typedef API::IMDEventWorkspace *(*fpCreateMDWS)(
const std::string &eventType,
const Mantid::API::MDNormalization &preferredNormalization,
const Mantid::API::MDNormalization &preferredNormalizationHisto);
// vector of function pointers to the funcions
static std::vector<fpCreateMDWS> wsCreatorFP;
// local wrapper around the MDWorkspace constructor as the constructor's
// address can not be taken . This can also help in a future when writing
// custom memory allocator
template <size_t nd>
static API::IMDEventWorkspace *createMDWorkspaceND(
const std::string &eventType,
const Mantid::API::MDNormalization &preferredNormalization,
const Mantid::API::MDNormalization &preferredNormalizationHisto);
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
// local wrappers around the MDBox/MDGridBox constructors as the constructor's
// address can not be taken. This can also help in a future when writing
// custom memory allocator
template <size_t nd>
static API::IMDNode *createMDBoxLean(
API::BoxController *splitter,
const std::vector<Mantid::Geometry::MDDimensionExtents<coord_t>> &
extentsVector,
const uint32_t depth, const size_t nBoxEvents, const size_t boxID);
template <size_t nd>
static API::IMDNode *createMDBoxFat(
API::BoxController *splitter,
const std::vector<Mantid::Geometry::MDDimensionExtents<coord_t>> &
extentsVector,
const uint32_t depth, const size_t nBoxEvents, const size_t boxID);
template <size_t nd>
static API::IMDNode *createMDGridBoxLean(
API::BoxController *splitter,
const std::vector<Mantid::Geometry::MDDimensionExtents<coord_t>> &
extentsVector,
const uint32_t depth, const size_t nBoxEvents = 0,
const size_t boxID = 0);
template <size_t nd>
static API::IMDNode *createMDGridBoxFat(
API::BoxController *splitter,
const std::vector<Mantid::Geometry::MDDimensionExtents<coord_t>> &
extentsVector,
const uint32_t depth, const size_t nBoxEvents = 0,
const size_t boxID = 0);
// 0-dimensions terminator
static API::IMDNode *createMDBoxWrong(
API::BoxController *,
const std::vector<Mantid::Geometry::MDDimensionExtents<coord_t>> &,
const uint32_t, const size_t, const size_t);
// helper class to generate methaloop on MD workspaces dimensions:
template <size_t nd> friend class LOOP;
static LOOP<MAX_MD_DIMENSIONS_NUM> CODE_GENERATOR;
};
//### BEGIN AUTO-GENERATED CODE
/* Code below Auto-generated by 'generate_mdevent_declarations.py'
* on 2016-06-03 10:28:44.608989
/** Macro that makes it possible to call a templated method for
* a MDEventWorkspace using a IMDEventWorkspace_sptr as the input.
*
* @param funcname :: name of the function that will be called.
* @param workspace :: IMDEventWorkspace_sptr input workspace.
*/
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
240
241
#define CALL_MDEVENT_FUNCTION(funcname, workspace) \
{ \
MDEventWorkspace<MDLeanEvent<1>, 1>::sptr MDEW_MDLEANEVENT_1 = \
boost::dynamic_pointer_cast<MDEventWorkspace<MDLeanEvent<1>, 1>>( \
workspace); \
if (MDEW_MDLEANEVENT_1) \
funcname<MDLeanEvent<1>, 1>(MDEW_MDLEANEVENT_1); \
MDEventWorkspace<MDLeanEvent<2>, 2>::sptr MDEW_MDLEANEVENT_2 = \
boost::dynamic_pointer_cast<MDEventWorkspace<MDLeanEvent<2>, 2>>( \
workspace); \
if (MDEW_MDLEANEVENT_2) \
funcname<MDLeanEvent<2>, 2>(MDEW_MDLEANEVENT_2); \
MDEventWorkspace<MDLeanEvent<3>, 3>::sptr MDEW_MDLEANEVENT_3 = \
boost::dynamic_pointer_cast<MDEventWorkspace<MDLeanEvent<3>, 3>>( \
workspace); \
if (MDEW_MDLEANEVENT_3) \
funcname<MDLeanEvent<3>, 3>(MDEW_MDLEANEVENT_3); \
MDEventWorkspace<MDLeanEvent<4>, 4>::sptr MDEW_MDLEANEVENT_4 = \
boost::dynamic_pointer_cast<MDEventWorkspace<MDLeanEvent<4>, 4>>( \
workspace); \
if (MDEW_MDLEANEVENT_4) \
funcname<MDLeanEvent<4>, 4>(MDEW_MDLEANEVENT_4); \
MDEventWorkspace<MDLeanEvent<5>, 5>::sptr MDEW_MDLEANEVENT_5 = \
boost::dynamic_pointer_cast<MDEventWorkspace<MDLeanEvent<5>, 5>>( \
workspace); \
if (MDEW_MDLEANEVENT_5) \
funcname<MDLeanEvent<5>, 5>(MDEW_MDLEANEVENT_5); \
MDEventWorkspace<MDLeanEvent<6>, 6>::sptr MDEW_MDLEANEVENT_6 = \
boost::dynamic_pointer_cast<MDEventWorkspace<MDLeanEvent<6>, 6>>( \
workspace); \
if (MDEW_MDLEANEVENT_6) \
funcname<MDLeanEvent<6>, 6>(MDEW_MDLEANEVENT_6); \
MDEventWorkspace<MDLeanEvent<7>, 7>::sptr MDEW_MDLEANEVENT_7 = \
boost::dynamic_pointer_cast<MDEventWorkspace<MDLeanEvent<7>, 7>>( \
workspace); \
if (MDEW_MDLEANEVENT_7) \
funcname<MDLeanEvent<7>, 7>(MDEW_MDLEANEVENT_7); \
MDEventWorkspace<MDLeanEvent<8>, 8>::sptr MDEW_MDLEANEVENT_8 = \
boost::dynamic_pointer_cast<MDEventWorkspace<MDLeanEvent<8>, 8>>( \
workspace); \
if (MDEW_MDLEANEVENT_8) \
funcname<MDLeanEvent<8>, 8>(MDEW_MDLEANEVENT_8); \
MDEventWorkspace<MDLeanEvent<9>, 9>::sptr MDEW_MDLEANEVENT_9 = \
boost::dynamic_pointer_cast<MDEventWorkspace<MDLeanEvent<9>, 9>>( \
workspace); \
if (MDEW_MDLEANEVENT_9) \
funcname<MDLeanEvent<9>, 9>(MDEW_MDLEANEVENT_9); \
MDEventWorkspace<MDEvent<1>, 1>::sptr MDEW_MDEVENT_1 = \
boost::dynamic_pointer_cast<MDEventWorkspace<MDEvent<1>, 1>>( \
workspace); \
if (MDEW_MDEVENT_1) \
funcname<MDEvent<1>, 1>(MDEW_MDEVENT_1); \
MDEventWorkspace<MDEvent<2>, 2>::sptr MDEW_MDEVENT_2 = \
boost::dynamic_pointer_cast<MDEventWorkspace<MDEvent<2>, 2>>( \
workspace); \
if (MDEW_MDEVENT_2) \
funcname<MDEvent<2>, 2>(MDEW_MDEVENT_2); \
MDEventWorkspace<MDEvent<3>, 3>::sptr MDEW_MDEVENT_3 = \
boost::dynamic_pointer_cast<MDEventWorkspace<MDEvent<3>, 3>>( \
workspace); \
if (MDEW_MDEVENT_3) \
funcname<MDEvent<3>, 3>(MDEW_MDEVENT_3); \
MDEventWorkspace<MDEvent<4>, 4>::sptr MDEW_MDEVENT_4 = \
boost::dynamic_pointer_cast<MDEventWorkspace<MDEvent<4>, 4>>( \
workspace); \
if (MDEW_MDEVENT_4) \
funcname<MDEvent<4>, 4>(MDEW_MDEVENT_4); \
MDEventWorkspace<MDEvent<5>, 5>::sptr MDEW_MDEVENT_5 = \
boost::dynamic_pointer_cast<MDEventWorkspace<MDEvent<5>, 5>>( \
workspace); \
if (MDEW_MDEVENT_5) \
funcname<MDEvent<5>, 5>(MDEW_MDEVENT_5); \
MDEventWorkspace<MDEvent<6>, 6>::sptr MDEW_MDEVENT_6 = \
boost::dynamic_pointer_cast<MDEventWorkspace<MDEvent<6>, 6>>( \
workspace); \
if (MDEW_MDEVENT_6) \
funcname<MDEvent<6>, 6>(MDEW_MDEVENT_6); \
MDEventWorkspace<MDEvent<7>, 7>::sptr MDEW_MDEVENT_7 = \
boost::dynamic_pointer_cast<MDEventWorkspace<MDEvent<7>, 7>>( \
workspace); \
if (MDEW_MDEVENT_7) \
funcname<MDEvent<7>, 7>(MDEW_MDEVENT_7); \
MDEventWorkspace<MDEvent<8>, 8>::sptr MDEW_MDEVENT_8 = \
boost::dynamic_pointer_cast<MDEventWorkspace<MDEvent<8>, 8>>( \
workspace); \
if (MDEW_MDEVENT_8) \
funcname<MDEvent<8>, 8>(MDEW_MDEVENT_8); \
MDEventWorkspace<MDEvent<9>, 9>::sptr MDEW_MDEVENT_9 = \
boost::dynamic_pointer_cast<MDEventWorkspace<MDEvent<9>, 9>>( \
workspace); \
if (MDEW_MDEVENT_9) \
funcname<MDEvent<9>, 9>(MDEW_MDEVENT_9); \
}
/** Macro that makes it possible to call a templated method for
* a MDEventWorkspace using a IMDEventWorkspace_sptr as the input.
*
* @param funcname :: name of the function that will be called.
* @param workspace :: IMDEventWorkspace_sptr input workspace.
*/
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
#define CALL_MDEVENT_FUNCTION3(funcname, workspace) \
{ \
MDEventWorkspace<MDLeanEvent<3>, 3>::sptr MDEW_MDLEANEVENT_3 = \
boost::dynamic_pointer_cast<MDEventWorkspace<MDLeanEvent<3>, 3>>( \
workspace); \
if (MDEW_MDLEANEVENT_3) \
funcname<MDLeanEvent<3>, 3>(MDEW_MDLEANEVENT_3); \
MDEventWorkspace<MDLeanEvent<4>, 4>::sptr MDEW_MDLEANEVENT_4 = \
boost::dynamic_pointer_cast<MDEventWorkspace<MDLeanEvent<4>, 4>>( \
workspace); \
if (MDEW_MDLEANEVENT_4) \
funcname<MDLeanEvent<4>, 4>(MDEW_MDLEANEVENT_4); \
MDEventWorkspace<MDLeanEvent<5>, 5>::sptr MDEW_MDLEANEVENT_5 = \
boost::dynamic_pointer_cast<MDEventWorkspace<MDLeanEvent<5>, 5>>( \
workspace); \
if (MDEW_MDLEANEVENT_5) \
funcname<MDLeanEvent<5>, 5>(MDEW_MDLEANEVENT_5); \
MDEventWorkspace<MDLeanEvent<6>, 6>::sptr MDEW_MDLEANEVENT_6 = \
boost::dynamic_pointer_cast<MDEventWorkspace<MDLeanEvent<6>, 6>>( \
workspace); \
if (MDEW_MDLEANEVENT_6) \
funcname<MDLeanEvent<6>, 6>(MDEW_MDLEANEVENT_6); \
MDEventWorkspace<MDLeanEvent<7>, 7>::sptr MDEW_MDLEANEVENT_7 = \
boost::dynamic_pointer_cast<MDEventWorkspace<MDLeanEvent<7>, 7>>( \
workspace); \
if (MDEW_MDLEANEVENT_7) \
funcname<MDLeanEvent<7>, 7>(MDEW_MDLEANEVENT_7); \
MDEventWorkspace<MDLeanEvent<8>, 8>::sptr MDEW_MDLEANEVENT_8 = \
boost::dynamic_pointer_cast<MDEventWorkspace<MDLeanEvent<8>, 8>>( \
workspace); \
if (MDEW_MDLEANEVENT_8) \
funcname<MDLeanEvent<8>, 8>(MDEW_MDLEANEVENT_8); \
MDEventWorkspace<MDLeanEvent<9>, 9>::sptr MDEW_MDLEANEVENT_9 = \
boost::dynamic_pointer_cast<MDEventWorkspace<MDLeanEvent<9>, 9>>( \
workspace); \
if (MDEW_MDLEANEVENT_9) \
funcname<MDLeanEvent<9>, 9>(MDEW_MDLEANEVENT_9); \
MDEventWorkspace<MDEvent<3>, 3>::sptr MDEW_MDEVENT_3 = \
boost::dynamic_pointer_cast<MDEventWorkspace<MDEvent<3>, 3>>( \
workspace); \
if (MDEW_MDEVENT_3) \
funcname<MDEvent<3>, 3>(MDEW_MDEVENT_3); \
MDEventWorkspace<MDEvent<4>, 4>::sptr MDEW_MDEVENT_4 = \
boost::dynamic_pointer_cast<MDEventWorkspace<MDEvent<4>, 4>>( \
workspace); \
if (MDEW_MDEVENT_4) \
funcname<MDEvent<4>, 4>(MDEW_MDEVENT_4); \
MDEventWorkspace<MDEvent<5>, 5>::sptr MDEW_MDEVENT_5 = \
boost::dynamic_pointer_cast<MDEventWorkspace<MDEvent<5>, 5>>( \
workspace); \
if (MDEW_MDEVENT_5) \
funcname<MDEvent<5>, 5>(MDEW_MDEVENT_5); \
MDEventWorkspace<MDEvent<6>, 6>::sptr MDEW_MDEVENT_6 = \
boost::dynamic_pointer_cast<MDEventWorkspace<MDEvent<6>, 6>>( \
workspace); \
if (MDEW_MDEVENT_6) \
funcname<MDEvent<6>, 6>(MDEW_MDEVENT_6); \
MDEventWorkspace<MDEvent<7>, 7>::sptr MDEW_MDEVENT_7 = \
boost::dynamic_pointer_cast<MDEventWorkspace<MDEvent<7>, 7>>( \
workspace); \
if (MDEW_MDEVENT_7) \
funcname<MDEvent<7>, 7>(MDEW_MDEVENT_7); \
MDEventWorkspace<MDEvent<8>, 8>::sptr MDEW_MDEVENT_8 = \
boost::dynamic_pointer_cast<MDEventWorkspace<MDEvent<8>, 8>>( \
workspace); \
if (MDEW_MDEVENT_8) \
funcname<MDEvent<8>, 8>(MDEW_MDEVENT_8); \
MDEventWorkspace<MDEvent<9>, 9>::sptr MDEW_MDEVENT_9 = \
boost::dynamic_pointer_cast<MDEventWorkspace<MDEvent<9>, 9>>( \
workspace); \
if (MDEW_MDEVENT_9) \
funcname<MDEvent<9>, 9>(MDEW_MDEVENT_9); \
}
/** Macro that makes it possible to call a templated method for
* a MDEventWorkspace using a IMDEventWorkspace_sptr as the input.
*
* @param funcname :: name of the function that will be called.
* @param workspace :: IMDEventWorkspace_sptr input workspace.
*/
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
#define CONST_CALL_MDEVENT_FUNCTION(funcname, workspace) \
{ \
const MDEventWorkspace<MDLeanEvent<1>, 1>::sptr CONST_MDEW_MDLEANEVENT_1 = \
boost::dynamic_pointer_cast< \
const MDEventWorkspace<MDLeanEvent<1>, 1>>(workspace); \
if (CONST_MDEW_MDLEANEVENT_1) \
funcname<MDLeanEvent<1>, 1>(CONST_MDEW_MDLEANEVENT_1); \
const MDEventWorkspace<MDLeanEvent<2>, 2>::sptr CONST_MDEW_MDLEANEVENT_2 = \
boost::dynamic_pointer_cast< \
const MDEventWorkspace<MDLeanEvent<2>, 2>>(workspace); \
if (CONST_MDEW_MDLEANEVENT_2) \
funcname<MDLeanEvent<2>, 2>(CONST_MDEW_MDLEANEVENT_2); \
const MDEventWorkspace<MDLeanEvent<3>, 3>::sptr CONST_MDEW_MDLEANEVENT_3 = \
boost::dynamic_pointer_cast< \
const MDEventWorkspace<MDLeanEvent<3>, 3>>(workspace); \
if (CONST_MDEW_MDLEANEVENT_3) \
funcname<MDLeanEvent<3>, 3>(CONST_MDEW_MDLEANEVENT_3); \
const MDEventWorkspace<MDLeanEvent<4>, 4>::sptr CONST_MDEW_MDLEANEVENT_4 = \
boost::dynamic_pointer_cast< \
const MDEventWorkspace<MDLeanEvent<4>, 4>>(workspace); \
if (CONST_MDEW_MDLEANEVENT_4) \
funcname<MDLeanEvent<4>, 4>(CONST_MDEW_MDLEANEVENT_4); \
const MDEventWorkspace<MDLeanEvent<5>, 5>::sptr CONST_MDEW_MDLEANEVENT_5 = \
boost::dynamic_pointer_cast< \
const MDEventWorkspace<MDLeanEvent<5>, 5>>(workspace); \
if (CONST_MDEW_MDLEANEVENT_5) \
funcname<MDLeanEvent<5>, 5>(CONST_MDEW_MDLEANEVENT_5); \
const MDEventWorkspace<MDLeanEvent<6>, 6>::sptr CONST_MDEW_MDLEANEVENT_6 = \
boost::dynamic_pointer_cast< \
const MDEventWorkspace<MDLeanEvent<6>, 6>>(workspace); \
if (CONST_MDEW_MDLEANEVENT_6) \
funcname<MDLeanEvent<6>, 6>(CONST_MDEW_MDLEANEVENT_6); \
const MDEventWorkspace<MDLeanEvent<7>, 7>::sptr CONST_MDEW_MDLEANEVENT_7 = \
boost::dynamic_pointer_cast< \
const MDEventWorkspace<MDLeanEvent<7>, 7>>(workspace); \
if (CONST_MDEW_MDLEANEVENT_7) \
funcname<MDLeanEvent<7>, 7>(CONST_MDEW_MDLEANEVENT_7); \
const MDEventWorkspace<MDLeanEvent<8>, 8>::sptr CONST_MDEW_MDLEANEVENT_8 = \
boost::dynamic_pointer_cast< \
const MDEventWorkspace<MDLeanEvent<8>, 8>>(workspace); \
if (CONST_MDEW_MDLEANEVENT_8) \
funcname<MDLeanEvent<8>, 8>(CONST_MDEW_MDLEANEVENT_8); \
const MDEventWorkspace<MDLeanEvent<9>, 9>::sptr CONST_MDEW_MDLEANEVENT_9 = \
boost::dynamic_pointer_cast< \
const MDEventWorkspace<MDLeanEvent<9>, 9>>(workspace); \
if (CONST_MDEW_MDLEANEVENT_9) \
funcname<MDLeanEvent<9>, 9>(CONST_MDEW_MDLEANEVENT_9); \
const MDEventWorkspace<MDEvent<1>, 1>::sptr CONST_MDEW_MDEVENT_1 = \
boost::dynamic_pointer_cast<const MDEventWorkspace<MDEvent<1>, 1>>( \
workspace); \
if (CONST_MDEW_MDEVENT_1) \
funcname<MDEvent<1>, 1>(CONST_MDEW_MDEVENT_1); \
const MDEventWorkspace<MDEvent<2>, 2>::sptr CONST_MDEW_MDEVENT_2 = \
boost::dynamic_pointer_cast<const MDEventWorkspace<MDEvent<2>, 2>>( \
workspace); \
if (CONST_MDEW_MDEVENT_2) \
funcname<MDEvent<2>, 2>(CONST_MDEW_MDEVENT_2); \
const MDEventWorkspace<MDEvent<3>, 3>::sptr CONST_MDEW_MDEVENT_3 = \
boost::dynamic_pointer_cast<const MDEventWorkspace<MDEvent<3>, 3>>( \
workspace); \
if (CONST_MDEW_MDEVENT_3) \
funcname<MDEvent<3>, 3>(CONST_MDEW_MDEVENT_3); \
const MDEventWorkspace<MDEvent<4>, 4>::sptr CONST_MDEW_MDEVENT_4 = \
boost::dynamic_pointer_cast<const MDEventWorkspace<MDEvent<4>, 4>>( \
workspace); \
if (CONST_MDEW_MDEVENT_4) \
funcname<MDEvent<4>, 4>(CONST_MDEW_MDEVENT_4); \
const MDEventWorkspace<MDEvent<5>, 5>::sptr CONST_MDEW_MDEVENT_5 = \
boost::dynamic_pointer_cast<const MDEventWorkspace<MDEvent<5>, 5>>( \
workspace); \
if (CONST_MDEW_MDEVENT_5) \
funcname<MDEvent<5>, 5>(CONST_MDEW_MDEVENT_5); \
const MDEventWorkspace<MDEvent<6>, 6>::sptr CONST_MDEW_MDEVENT_6 = \
boost::dynamic_pointer_cast<const MDEventWorkspace<MDEvent<6>, 6>>( \
workspace); \
if (CONST_MDEW_MDEVENT_6) \
funcname<MDEvent<6>, 6>(CONST_MDEW_MDEVENT_6); \
const MDEventWorkspace<MDEvent<7>, 7>::sptr CONST_MDEW_MDEVENT_7 = \
boost::dynamic_pointer_cast<const MDEventWorkspace<MDEvent<7>, 7>>( \
workspace); \
if (CONST_MDEW_MDEVENT_7) \
funcname<MDEvent<7>, 7>(CONST_MDEW_MDEVENT_7); \
const MDEventWorkspace<MDEvent<8>, 8>::sptr CONST_MDEW_MDEVENT_8 = \
boost::dynamic_pointer_cast<const MDEventWorkspace<MDEvent<8>, 8>>( \
workspace); \
if (CONST_MDEW_MDEVENT_8) \
funcname<MDEvent<8>, 8>(CONST_MDEW_MDEVENT_8); \
const MDEventWorkspace<MDEvent<9>, 9>::sptr CONST_MDEW_MDEVENT_9 = \
boost::dynamic_pointer_cast<const MDEventWorkspace<MDEvent<9>, 9>>( \
workspace); \
if (CONST_MDEW_MDEVENT_9) \
funcname<MDEvent<9>, 9>(CONST_MDEW_MDEVENT_9); \
}
// ------------- Typedefs for MDBox ------------------
/// Typedef for a MDBox with 1 dimension
typedef MDBox<MDLeanEvent<1>, 1> MDBox1Lean;
/// Typedef for a MDBox with 2 dimensions
typedef MDBox<MDLeanEvent<2>, 2> MDBox2Lean;
/// Typedef for a MDBox with 3 dimensions
typedef MDBox<MDLeanEvent<3>, 3> MDBox3Lean;
/// Typedef for a MDBox with 4 dimensions
typedef MDBox<MDLeanEvent<4>, 4> MDBox4Lean;
/// Typedef for a MDBox with 5 dimensions
typedef MDBox<MDLeanEvent<5>, 5> MDBox5Lean;
/// Typedef for a MDBox with 6 dimensions
typedef MDBox<MDLeanEvent<6>, 6> MDBox6Lean;
/// Typedef for a MDBox with 7 dimensions
typedef MDBox<MDLeanEvent<7>, 7> MDBox7Lean;
/// Typedef for a MDBox with 8 dimensions
typedef MDBox<MDLeanEvent<8>, 8> MDBox8Lean;
/// Typedef for a MDBox with 9 dimensions
typedef MDBox<MDLeanEvent<9>, 9> MDBox9Lean;
/// Typedef for a MDBox with 1 dimension
typedef MDBox<MDEvent<1>, 1> MDBox1;
/// Typedef for a MDBox with 2 dimensions
typedef MDBox<MDEvent<2>, 2> MDBox2;
/// Typedef for a MDBox with 3 dimensions
typedef MDBox<MDEvent<3>, 3> MDBox3;
/// Typedef for a MDBox with 4 dimensions
typedef MDBox<MDEvent<4>, 4> MDBox4;
/// Typedef for a MDBox with 5 dimensions
typedef MDBox<MDEvent<5>, 5> MDBox5;
/// Typedef for a MDBox with 6 dimensions
typedef MDBox<MDEvent<6>, 6> MDBox6;
/// Typedef for a MDBox with 7 dimensions
typedef MDBox<MDEvent<7>, 7> MDBox7;
/// Typedef for a MDBox with 8 dimensions
typedef MDBox<MDEvent<8>, 8> MDBox8;
/// Typedef for a MDBox with 9 dimensions
typedef MDBox<MDEvent<9>, 9> MDBox9;
// ------------- Typedefs for MDBoxBase ------------------
/// Typedef for a MDBoxBase with 1 dimension
typedef MDBoxBase<MDLeanEvent<1>, 1> MDBoxBase1Lean;
/// Typedef for a MDBoxBase with 2 dimensions
typedef MDBoxBase<MDLeanEvent<2>, 2> MDBoxBase2Lean;
/// Typedef for a MDBoxBase with 3 dimensions
typedef MDBoxBase<MDLeanEvent<3>, 3> MDBoxBase3Lean;
/// Typedef for a MDBoxBase with 4 dimensions
typedef MDBoxBase<MDLeanEvent<4>, 4> MDBoxBase4Lean;
/// Typedef for a MDBoxBase with 5 dimensions
typedef MDBoxBase<MDLeanEvent<5>, 5> MDBoxBase5Lean;
/// Typedef for a MDBoxBase with 6 dimensions
typedef MDBoxBase<MDLeanEvent<6>, 6> MDBoxBase6Lean;
/// Typedef for a MDBoxBase with 7 dimensions
typedef MDBoxBase<MDLeanEvent<7>, 7> MDBoxBase7Lean;
/// Typedef for a MDBoxBase with 8 dimensions
typedef MDBoxBase<MDLeanEvent<8>, 8> MDBoxBase8Lean;
/// Typedef for a MDBoxBase with 9 dimensions
typedef MDBoxBase<MDLeanEvent<9>, 9> MDBoxBase9Lean;
/// Typedef for a MDBoxBase with 1 dimension
typedef MDBoxBase<MDEvent<1>, 1> MDBoxBase1;
/// Typedef for a MDBoxBase with 2 dimensions
typedef MDBoxBase<MDEvent<2>, 2> MDBoxBase2;
/// Typedef for a MDBoxBase with 3 dimensions
typedef MDBoxBase<MDEvent<3>, 3> MDBoxBase3;
/// Typedef for a MDBoxBase with 4 dimensions
typedef MDBoxBase<MDEvent<4>, 4> MDBoxBase4;
/// Typedef for a MDBoxBase with 5 dimensions
typedef MDBoxBase<MDEvent<5>, 5> MDBoxBase5;
/// Typedef for a MDBoxBase with 6 dimensions
typedef MDBoxBase<MDEvent<6>, 6> MDBoxBase6;
/// Typedef for a MDBoxBase with 7 dimensions
typedef MDBoxBase<MDEvent<7>, 7> MDBoxBase7;
/// Typedef for a MDBoxBase with 8 dimensions
typedef MDBoxBase<MDEvent<8>, 8> MDBoxBase8;
/// Typedef for a MDBoxBase with 9 dimensions
typedef MDBoxBase<MDEvent<9>, 9> MDBoxBase9;
// ------------- Typedefs for MDGridBox ------------------
/// Typedef for a MDGridBox with 1 dimension
typedef MDGridBox<MDLeanEvent<1>, 1> MDGridBox1Lean;
/// Typedef for a MDGridBox with 2 dimensions
typedef MDGridBox<MDLeanEvent<2>, 2> MDGridBox2Lean;
/// Typedef for a MDGridBox with 3 dimensions
typedef MDGridBox<MDLeanEvent<3>, 3> MDGridBox3Lean;
/// Typedef for a MDGridBox with 4 dimensions
typedef MDGridBox<MDLeanEvent<4>, 4> MDGridBox4Lean;
/// Typedef for a MDGridBox with 5 dimensions
typedef MDGridBox<MDLeanEvent<5>, 5> MDGridBox5Lean;
/// Typedef for a MDGridBox with 6 dimensions
typedef MDGridBox<MDLeanEvent<6>, 6> MDGridBox6Lean;
/// Typedef for a MDGridBox with 7 dimensions
typedef MDGridBox<MDLeanEvent<7>, 7> MDGridBox7Lean;
/// Typedef for a MDGridBox with 8 dimensions
typedef MDGridBox<MDLeanEvent<8>, 8> MDGridBox8Lean;
/// Typedef for a MDGridBox with 9 dimensions
typedef MDGridBox<MDLeanEvent<9>, 9> MDGridBox9Lean;
/// Typedef for a MDGridBox with 1 dimension
typedef MDGridBox<MDEvent<1>, 1> MDGridBox1;
/// Typedef for a MDGridBox with 2 dimensions
typedef MDGridBox<MDEvent<2>, 2> MDGridBox2;
/// Typedef for a MDGridBox with 3 dimensions
typedef MDGridBox<MDEvent<3>, 3> MDGridBox3;
/// Typedef for a MDGridBox with 4 dimensions
typedef MDGridBox<MDEvent<4>, 4> MDGridBox4;
/// Typedef for a MDGridBox with 5 dimensions
typedef MDGridBox<MDEvent<5>, 5> MDGridBox5;
/// Typedef for a MDGridBox with 6 dimensions
typedef MDGridBox<MDEvent<6>, 6> MDGridBox6;
/// Typedef for a MDGridBox with 7 dimensions
typedef MDGridBox<MDEvent<7>, 7> MDGridBox7;
/// Typedef for a MDGridBox with 8 dimensions
typedef MDGridBox<MDEvent<8>, 8> MDGridBox8;
/// Typedef for a MDGridBox with 9 dimensions
typedef MDGridBox<MDEvent<9>, 9> MDGridBox9;
// ------------- Typedefs for MDEventWorkspace ------------------
/// Typedef for a MDEventWorkspace with 1 dimension
typedef MDEventWorkspace<MDLeanEvent<1>, 1> MDEventWorkspace1Lean;
/// Typedef for a MDEventWorkspace with 2 dimensions
typedef MDEventWorkspace<MDLeanEvent<2>, 2> MDEventWorkspace2Lean;
/// Typedef for a MDEventWorkspace with 3 dimensions
typedef MDEventWorkspace<MDLeanEvent<3>, 3> MDEventWorkspace3Lean;
/// Typedef for a MDEventWorkspace with 4 dimensions
typedef MDEventWorkspace<MDLeanEvent<4>, 4> MDEventWorkspace4Lean;
/// Typedef for a MDEventWorkspace with 5 dimensions
typedef MDEventWorkspace<MDLeanEvent<5>, 5> MDEventWorkspace5Lean;
/// Typedef for a MDEventWorkspace with 6 dimensions
typedef MDEventWorkspace<MDLeanEvent<6>, 6> MDEventWorkspace6Lean;
/// Typedef for a MDEventWorkspace with 7 dimensions
typedef MDEventWorkspace<MDLeanEvent<7>, 7> MDEventWorkspace7Lean;
/// Typedef for a MDEventWorkspace with 8 dimensions
typedef MDEventWorkspace<MDLeanEvent<8>, 8> MDEventWorkspace8Lean;
/// Typedef for a MDEventWorkspace with 9 dimensions
typedef MDEventWorkspace<MDLeanEvent<9>, 9> MDEventWorkspace9Lean;
/// Typedef for a MDEventWorkspace with 1 dimension
typedef MDEventWorkspace<MDEvent<1>, 1> MDEventWorkspace1;
/// Typedef for a MDEventWorkspace with 2 dimensions
typedef MDEventWorkspace<MDEvent<2>, 2> MDEventWorkspace2;
/// Typedef for a MDEventWorkspace with 3 dimensions
typedef MDEventWorkspace<MDEvent<3>, 3> MDEventWorkspace3;
/// Typedef for a MDEventWorkspace with 4 dimensions
typedef MDEventWorkspace<MDEvent<4>, 4> MDEventWorkspace4;
/// Typedef for a MDEventWorkspace with 5 dimensions
typedef MDEventWorkspace<MDEvent<5>, 5> MDEventWorkspace5;
/// Typedef for a MDEventWorkspace with 6 dimensions
typedef MDEventWorkspace<MDEvent<6>, 6> MDEventWorkspace6;
/// Typedef for a MDEventWorkspace with 7 dimensions
typedef MDEventWorkspace<MDEvent<7>, 7> MDEventWorkspace7;
/// Typedef for a MDEventWorkspace with 8 dimensions
typedef MDEventWorkspace<MDEvent<8>, 8> MDEventWorkspace8;
/// Typedef for a MDEventWorkspace with 9 dimensions
typedef MDEventWorkspace<MDEvent<9>, 9> MDEventWorkspace9;
// ------------- Typedefs for MDBin ------------------
/// Typedef for a MDBin with 1 dimension
typedef MDBin<MDLeanEvent<1>, 1> MDBin1Lean;
/// Typedef for a MDBin with 2 dimensions
typedef MDBin<MDLeanEvent<2>, 2> MDBin2Lean;
/// Typedef for a MDBin with 3 dimensions
typedef MDBin<MDLeanEvent<3>, 3> MDBin3Lean;
/// Typedef for a MDBin with 4 dimensions
typedef MDBin<MDLeanEvent<4>, 4> MDBin4Lean;
/// Typedef for a MDBin with 5 dimensions
typedef MDBin<MDLeanEvent<5>, 5> MDBin5Lean;
/// Typedef for a MDBin with 6 dimensions
typedef MDBin<MDLeanEvent<6>, 6> MDBin6Lean;
/// Typedef for a MDBin with 7 dimensions
typedef MDBin<MDLeanEvent<7>, 7> MDBin7Lean;
/// Typedef for a MDBin with 8 dimensions
typedef MDBin<MDLeanEvent<8>, 8> MDBin8Lean;
/// Typedef for a MDBin with 9 dimensions
typedef MDBin<MDLeanEvent<9>, 9> MDBin9Lean;
/// Typedef for a MDBin with 1 dimension
typedef MDBin<MDEvent<1>, 1> MDBin1;
/// Typedef for a MDBin with 2 dimensions
typedef MDBin<MDEvent<2>, 2> MDBin2;
/// Typedef for a MDBin with 3 dimensions
typedef MDBin<MDEvent<3>, 3> MDBin3;
/// Typedef for a MDBin with 4 dimensions
typedef MDBin<MDEvent<4>, 4> MDBin4;
/// Typedef for a MDBin with 5 dimensions
typedef MDBin<MDEvent<5>, 5> MDBin5;
/// Typedef for a MDBin with 6 dimensions
typedef MDBin<MDEvent<6>, 6> MDBin6;
/// Typedef for a MDBin with 7 dimensions
typedef MDBin<MDEvent<7>, 7> MDBin7;
/// Typedef for a MDBin with 8 dimensions
typedef MDBin<MDEvent<8>, 8> MDBin8;
/// Typedef for a MDBin with 9 dimensions
typedef MDBin<MDEvent<9>, 9> MDBin9;
/* CODE ABOWE WAS AUTO-GENERATED BY generate_mdevent_declarations.py - DO NOT
* EDIT! */
//### END AUTO-GENERATED CODE
//##################################################################
} // namespace Mantid
} // namespace DataObjects
Janik Zikovsky
committed
#endif /* MANTID_DATAOBJECTS_MDEVENTFACTORY_H_ */