1 | //#---------------------------------------------------------------------------
|
---|
2 | //# SDMathWrapper.h: Wrapper classes to use CountedPtr
|
---|
3 | //#---------------------------------------------------------------------------
|
---|
4 | //# Copyright (C) 2004
|
---|
5 | //# Malte Marquarding, ATNF
|
---|
6 | //#
|
---|
7 | //# This program is free software; you can redistribute it and/or modify it
|
---|
8 | //# under the terms of the GNU General Public License as published by the Free
|
---|
9 | //# Software Foundation; either version 2 of the License, or (at your option)
|
---|
10 | //# any later version.
|
---|
11 | //#
|
---|
12 | //# This program is distributed in the hope that it will be useful, but
|
---|
13 | //# WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
14 | //# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
|
---|
15 | //# Public License for more details.
|
---|
16 | //#
|
---|
17 | //# You should have received a copy of the GNU General Public License along
|
---|
18 | //# with this program; if not, write to the Free Software Foundation, Inc.,
|
---|
19 | //# 675 Massachusetts Ave, Cambridge, MA 02139, USA.
|
---|
20 | //#
|
---|
21 | //# Correspondence concerning this software should be addressed as follows:
|
---|
22 | //# Internet email: Malte.Marquarding@csiro.au
|
---|
23 | //# Postal address: Malte Marquarding,
|
---|
24 | //# Australia Telescope National Facility,
|
---|
25 | //# P.O. Box 76,
|
---|
26 | //# Epping, NSW, 2121,
|
---|
27 | //# AUSTRALIA
|
---|
28 | //#
|
---|
29 | //# $Id:
|
---|
30 | //#---------------------------------------------------------------------------
|
---|
31 | #ifndef _SDMATHWRAPPER_H_
|
---|
32 | #define _SDMATHWRAPPER_H_
|
---|
33 |
|
---|
34 | #include <vector>
|
---|
35 | #include <string>
|
---|
36 |
|
---|
37 | #include <boost/python/tuple.hpp>
|
---|
38 |
|
---|
39 | #include "SDMemTableWrapper.h"
|
---|
40 | #include "SDMath.h"
|
---|
41 |
|
---|
42 | namespace atnf_sd {
|
---|
43 |
|
---|
44 | class SDMathWrapper {
|
---|
45 | public:
|
---|
46 | SDMemTableWrapper average(const SDMemTableWrapper& sdt) {
|
---|
47 | return SDMemTableWrapper(SDMath::average(sdt.getCP()));
|
---|
48 | }
|
---|
49 |
|
---|
50 | SDMemTableWrapper quotient(const SDMemTableWrapper& on,
|
---|
51 | const SDMemTableWrapper& off) {
|
---|
52 | return SDMemTableWrapper(SDMath::quotient(on.getCP(),
|
---|
53 | off.getCP()));
|
---|
54 | }
|
---|
55 |
|
---|
56 | SDMemTableWrapper multiply(const SDMemTableWrapper& in,
|
---|
57 | Float factor) {
|
---|
58 | return SDMemTableWrapper(SDMath::multiply(in.getCP(),factor));
|
---|
59 | }
|
---|
60 |
|
---|
61 | SDMemTableWrapper hanning(const SDMemTableWrapper& in) {
|
---|
62 | return SDMemTableWrapper(SDMath::hanning(in.getCP()));
|
---|
63 | }
|
---|
64 |
|
---|
65 | SDMemTableWrapper baseline(const SDMemTableWrapper& in,
|
---|
66 | const std::string& fitexpr,
|
---|
67 | const std::vector<bool>& mask) {
|
---|
68 | return SDMath::baseline(in.getCP(), fitexpr, mask);
|
---|
69 | }
|
---|
70 |
|
---|
71 | SDMemTableWrapper averages(boost::python::tuple tpl,
|
---|
72 | const std::vector<bool>& mask);
|
---|
73 |
|
---|
74 | SDMemTableWrapper averagePol(const SDMemTableWrapper& in,
|
---|
75 | const std::vector<bool>& mask) {
|
---|
76 | return SDMath::averagePol(in.getCP(), mask);
|
---|
77 | }
|
---|
78 |
|
---|
79 | SDMemTableWrapper bin(const SDMemTableWrapper& in,
|
---|
80 | int width) {
|
---|
81 | return SDMath::bin(in.getCP(), width);
|
---|
82 | }
|
---|
83 |
|
---|
84 | float rms(const SDMemTableWrapper& in,
|
---|
85 | const std::vector<bool>& mask) {
|
---|
86 | return SDMath::rms(in.getCP(), mask);
|
---|
87 | }
|
---|
88 |
|
---|
89 | };
|
---|
90 |
|
---|
91 | } // namespace
|
---|
92 | #endif
|
---|