File: WrapperData.h

package info (click to toggle)
casacore 3.8.0-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 51,908 kB
  • sloc: cpp: 471,569; fortran: 16,372; ansic: 7,416; yacc: 4,714; lex: 2,346; sh: 1,865; python: 629; perl: 531; sed: 499; csh: 201; makefile: 32
file content (473 lines) | stat: -rw-r--r-- 12,331 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
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
60
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
240
241
242
243
244
245
246
247
248
249
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
323
324
325
326
327
328
329
330
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
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
//# WrapperData.h: Aid in constructing function objects from C++ functions 
//# Copyright (C) 2001,2002
//# Associated Universities, Inc. Washington DC, USA.
//#
//# This library is free software; you can redistribute it and/or modify it
//# under the terms of the GNU Library General Public License as published by
//# the Free Software Foundation; either version 2 of the License, or (at your
//# option) any later version.
//#
//# This library is distributed in the hope that it will be useful, but WITHOUT
//# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
//# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Library General Public
//# License for more details.
//#
//# You should have received a copy of the GNU Library General Public License
//# along with this library; if not, write to the Free Software Foundation,
//# Inc., 675 Massachusetts Ave, Cambridge, MA 02139, USA.
//#
//# Correspondence concerning AIPS++ should be addressed as follows:
//#        Internet email: casa-feedback@nrao.edu.
//#        Postal address: AIPS++ Project Office
//#                        National Radio Astronomy Observatory
//#                        520 Edgemont Road
//#                        Charlottesville, VA 22903-2475 USA

#ifndef SCIMATH_WRAPPERDATA_H
#define SCIMATH_WRAPPERDATA_H

//# Includes
#include <casacore/casa/aips.h>
#include <casacore/scimath/Functionals/WrapperBase.h>

namespace casacore { //# NAMESPACE CASACORE - BEGIN

//# Forward declarations

// <summary> Aid in constructing function objects from C++ functions 
// </summary>
//
// <use visibility=local>
//
// <reviewed reviewer="UNKNOWN" date="before2004/08/25" tests="" demos="">
// </reviewed>
//
// <prerequisite>
//   <li> <linkto class="Function">Function</linkto> class
//   <li> <linkto class="FunctionParam">FunctionParam</linkto>
// </prerequisite>
//
// <synopsis>
// This class is provided to enable compile time selection of the
// appropriate function call. Each template incarnation represent a
// function call interface definition.
// </synopsis>
//
// <example>
// <srcblock>
// Float func(const Vector<Float>& x) {return x(0)*x(1);}        // x*y
// // Convert C++ functions to Functionals
// FunctionWrapper<Float> Func(func, 2);
// </srcblock>
//

template <class T, class U, class V, Bool hasX, Bool hasParam>
class WrapperData : public WrapperBase<T>
{
public:
  //# Constructors
  // Default constructor: to allow arrays of functions
  WrapperData();

  // Destructor
  virtual ~WrapperData() {}

  //# Operators    
  // Evaluate the function at <src>x</src>.
  // <group>
  virtual T eval(typename Function<T>::FunctionArg, const V&) const {}
  // </group>

  //# Member functions

protected:
  //# Make members of parent classes known.
  using WrapperBase<T>::ndim_p;
  using WrapperBase<T>::arg_p;
};


#define WrapperData_TT WrapperData

// <summary> Specialization for calls with argument and parameter
// </summary>
// <synopsis> Note that the actual name of the class is
// <src>WrapperData</src>. The special name is only for the use of 
// cxx2html.
// </synopsis>

template <class T>
class WrapperData_TT<T,T,T,True,True> : public WrapperBase<T>
{
  typedef WrapperData_TT<T,T,T,True,True> myData;

public:
  //# Constructors
  // Standard constructor
  explicit WrapperData_TT(T(*f)(const T&, const T&), uInt dim=1) :
    WrapperBase<T>(dim), pf_p(f) {}

  // Destructor
  virtual ~WrapperData_TT() {}

  //# Operators    
  // Evaluate the function at <src>x</src>.
  virtual T eval(typename Function<T>::FunctionArg x,
		 const Vector<T> &par) const {
    if (pf_p) {
      return
	pf_p((*static_cast<const typename Function<T>::FunctionArg>(x)),
	     par[0]);
    }
    return T(0); }

  //# Member functions

protected:
  //# Data
  // Function to call
  T (*pf_p)(const T&, const T&);
 
private:
  // Copy constructor and assignment (not implemented)
  // <group>
  WrapperData_TT(const myData &other);
  myData &operator=(const myData &other);
  // </group>

protected:
  //# Make members of parent classes known.
  using WrapperBase<T>::ndim_p;
  using WrapperBase<T>::arg_p;
};

#undef WrapperData_TT


#define WrapperData_VT WrapperData

// <summary> Specialization for calls with argument and parameter
// </summary>
// <synopsis> Note that the actual name of the class is
// <src>WrapperData</src>. The special name is only for the use of 
// cxx2html.
// </synopsis>

template <class T>
class WrapperData_VT<T,Vector<T>,T,True,True> : public WrapperBase<T>
{
  typedef WrapperData_VT<T,Vector<T>,T,True,True> myData;

public:
  explicit WrapperData_VT(T(*f)(const Vector<T>&, const T&), uInt dim=1) :
    WrapperBase<T>(dim), pf_p(f) {}
  virtual ~WrapperData_VT() {}
  virtual T eval(typename Function<T>::FunctionArg x,
		 const Vector<T> &par) const {
    if (pf_p) {
      for (uInt i=0; i<ndim_p; ++i) arg_p[i] = x[i];
      return pf_p(arg_p, par[0]); }
    return T(0); }

protected:
  T (*pf_p)(const Vector<T>&, const T&);

private:
  WrapperData_VT(const myData &other);
  myData &operator=(const myData &other);

protected:
  //# Make members of parent classes known.
  using WrapperBase<T>::ndim_p;
  using WrapperBase<T>::arg_p;
};

#undef WrapperData_VT


#define WrapperData_TV WrapperData

// <summary> Specialization for calls with argument and parameters
// </summary>
// <synopsis> Note that the actual name of the class is
// <src>WrapperData</src>. The special name is only for the use of 
// cxx2html.
// </synopsis>

template <class T>
class WrapperData_TV<T,T,Vector<T>,True,True> : public WrapperBase<T>
{
  typedef WrapperData_TV<T,T,Vector<T>,True,True> myData;

public:
  explicit WrapperData_TV(T(*f)(const T&, const Vector<T>&), uInt dim=1) :
    WrapperBase<T>(dim), pf_p(f) {}
  virtual ~WrapperData_TV() {}
  virtual T eval(typename Function<T>::FunctionArg x,
		 const Vector<T> &par) const {
    if (pf_p) {
      return pf_p((*static_cast<const typename Function<T>::FunctionArg>(x)),
		  par);
    }
    return T(0); }

protected:
  T (*pf_p)(const T&, const Vector<T>&);

private:
  WrapperData_TV(const myData &other);
  myData &operator=(const myData &other);

protected:
  //# Make members of parent classes known.
  using WrapperBase<T>::ndim_p;
  using WrapperBase<T>::arg_p;
};

#undef WrapperData_TV


#define WrapperData_VV WrapperData

// <summary> Specialization for calls with argument and parameters
// </summary>
// <synopsis> Note that the actual name of the class is
// <src>WrapperData</src>. The special name is only for the use of 
// cxx2html.
// </synopsis>

template <class T>
class WrapperData_VV<T,Vector<T>,Vector<T>,True,True> :
public WrapperBase<T>
{
  typedef WrapperData_VV<T,Vector<T>,Vector<T>,True,True> myData;

public:
  explicit WrapperData_VV(T(*f)(const Vector<T>&, const Vector<T>&),
			    uInt dim=1) :
    WrapperBase<T>(dim), pf_p(f) {}
  virtual ~WrapperData_VV() {}
  virtual T eval(typename Function<T>::FunctionArg x,
		 const Vector<T> &par) const {
    if (pf_p) {
      for (uInt i=0; i<ndim_p; ++i) arg_p[i] = x[i];
      return pf_p(arg_p, par); }
    return T(0); }

protected:
  T (*pf_p)(const Vector<T>&, const Vector<T>&);

private:
  WrapperData_VV(const myData &other);
  myData &operator=(const myData &other);

protected:
  //# Make members of parent classes known.
  using WrapperBase<T>::ndim_p;
  using WrapperBase<T>::arg_p;
};

#undef WrapperData_VV


#define WrapperData_FT WrapperData

// <summary> Specialization for calls with no arguments and parameter
// </summary>
// <synopsis> Note that the actual name of the class is
// <src>WrapperData</src>. The special name is only for the use of 
// cxx2html.
// </synopsis>

template <class T>
class WrapperData_FT<T,T,T,False,True> : public WrapperBase<T>
{
  typedef WrapperData_FT<T,T,T,False,True> myData;

public:
  explicit WrapperData_FT(T(*f)(const T&)) :
    WrapperBase<T>(0), pf_p(f) {}
  virtual ~WrapperData_FT() {}
  virtual T eval(typename Function<T>::FunctionArg,
		 const Vector<T> &par) const {
    if (pf_p) return pf_p(par[0]);
    return T(0); }

protected:
  T (*pf_p)(const T&);

private:
  WrapperData_FT(const myData &other);
  myData &operator=(const myData &other);

protected:
  //# Make members of parent classes known.
  using WrapperBase<T>::ndim_p;
  using WrapperBase<T>::arg_p;
};

#undef WrapperData_FT


#define WrapperData_FV WrapperData

// <summary> Specialization for calls with no arguments and parameters
// </summary>
// <synopsis> Note that the actual name of the class is
// <src>WrapperData</src>. The special name is only for the use of 
// cxx2html.
// </synopsis>

template <class T>
class WrapperData_FV<T,T,Vector<T>,False,True> : public WrapperBase<T>
{
  typedef WrapperData_FV<T,T,Vector<T>,False,True> myData;

public:
  explicit WrapperData_FV(T(*f)(const Vector<T>&)) :
    WrapperBase<T>(0), pf_p(f) {}
  virtual ~WrapperData_FV() {}
  virtual T eval(typename Function<T>::FunctionArg,
		 const Vector<T> &par) const {
    if (pf_p) return pf_p(par);
    return T(0); }

protected:
  T (*pf_p)(const Vector<T>&);

private:
  WrapperData_FV(const myData &other);
  myData &operator=(const myData &other);

protected:
  //# Make members of parent classes known.
  using WrapperBase<T>::ndim_p;
  using WrapperBase<T>::arg_p;
};

#undef WrapperData_FV


#define WrapperData_TF WrapperData

// <summary> Specialization for calls with argument and no parameters
// </summary>
// <synopsis> Note that the actual name of the class is
// <src>WrapperData</src>. The special name is only for the use of 
// cxx2html.
// </synopsis>

template <class T>
class WrapperData_TF<T,T,T,True,False> : public WrapperBase<T>
{
  typedef WrapperData_TF<T,T,T,True,False> myData;

public:
  explicit WrapperData_TF(T(*f)(const T&), uInt dim=1) :
    WrapperBase<T>(dim), pf_p(f) {}
  virtual ~WrapperData_TF() {}
  virtual T eval(typename Function<T>::FunctionArg x, 
		 const Vector<T>&) const {
    if (pf_p) {
      return pf_p((*static_cast<const typename Function<T>::FunctionArg>(x)));
    }
    return T(0); }

protected:
  T (*pf_p)(const T&);

private:
  WrapperData_TF(const myData &other);
  myData &operator=(const myData &other);

protected:
  //# Make members of parent classes known.
  using WrapperBase<T>::ndim_p;
  using WrapperBase<T>::arg_p;
};

#undef WrapperData_TF


#define WrapperData_VF WrapperData

// <summary> Specialization for calls with argument and no parameters
// </summary>
// <synopsis> Note that the actual name of the class is
// <src>WrapperData</src>. The special name is only for the use of 
// cxx2html.
// </synopsis>

template <class T>
class WrapperData_VF<T,Vector<T>,T,True,False> : public WrapperBase<T>
{
  typedef WrapperData_VF<T,Vector<T>,T,True,False> myData;

public:
  explicit WrapperData_VF(T(*f)(const Vector<T>&), uInt dim=1) :
    WrapperBase<T>(dim), pf_p(f) {}
  virtual ~WrapperData_VF() {}
  virtual T eval(typename Function<T>::FunctionArg x,
		 const Vector<T> &) const {
    if (pf_p) {
      for (uInt i=0; i<ndim_p; ++i) arg_p[i] = x[i];
      return pf_p(arg_p); }
    return T(0); }

protected:
  T (*pf_p)(const Vector<T>&);

private:
  WrapperData_VF(const myData &other);
  myData &operator=(const myData &other);

protected:
  //# Make members of parent classes known.
  using WrapperBase<T>::ndim_p;
  using WrapperBase<T>::arg_p;
};

#undef WrapperData_VF


#define WrapperData_FF WrapperData

// <summary> Specialization for calls with no arguments and no parameters
// </summary>
// <synopsis> Note that the actual name of the class is
// <src>WrapperData</src>. The special name is only for the use of 
// cxx2html.
// </synopsis>

template <class T>
class WrapperData_FF<T,T,T,False,False> : public WrapperBase<T>
{
  typedef WrapperData_FF<T,T,T,True,False> myData;

public:
  explicit WrapperData_FF(T(*f)()) :
    WrapperBase<T>(0), pf_p(f) {}
  virtual ~WrapperData_FF() {}
  virtual T eval(typename Function<T>::FunctionArg,
		 const Vector<T>&) const {
    if (pf_p) return pf_p();
    return T(0); }

protected:
  T (*pf_p)();

private:
  WrapperData_FF(const myData &other);
  myData &operator=(const myData &other);

protected:
  //# Make members of parent classes known.
  using WrapperBase<T>::ndim_p;
  using WrapperBase<T>::arg_p;
};

#undef WrapperData_FF

} //# NAMESPACE CASACORE - END

#endif