| 1 | //#--------------------------------------------------------------------------- | 
|---|
| 2 | //# python_SDMath.cc: python exposure of c++ SDMath class | 
|---|
| 3 | //#--------------------------------------------------------------------------- | 
|---|
| 4 | //# Copyright (C) 2004 | 
|---|
| 5 | //# 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 | #include <boost/python.hpp> | 
|---|
| 32 |  | 
|---|
| 33 | #include <casa/aips.h> | 
|---|
| 34 | #include <casa/Containers/Block.h> | 
|---|
| 35 | #include <casa/Utilities/CountedPtr.cc> | 
|---|
| 36 |  | 
|---|
| 37 | #include "SDMathWrapper.h" | 
|---|
| 38 | #include "SDMath.h" | 
|---|
| 39 |  | 
|---|
| 40 | using namespace casa; | 
|---|
| 41 | using namespace boost::python; | 
|---|
| 42 |  | 
|---|
| 43 | namespace asap { | 
|---|
| 44 | namespace SDMathWrapper { | 
|---|
| 45 | SDMemTableWrapper SDMathWrapper::average(boost::python::tuple tp, | 
|---|
| 46 | const std::vector<bool>& mask, | 
|---|
| 47 | bool scanAv, | 
|---|
| 48 | const std::string& weightStr) { | 
|---|
| 49 | int n; | 
|---|
| 50 | n = extract<int>(tp.attr("__len__")()); | 
|---|
| 51 | Block<CountedPtr<asap::SDMemTable> > b(n); | 
|---|
| 52 | for (int i=0;i< n;++i) { | 
|---|
| 53 | SDMemTableWrapper sdmw = | 
|---|
| 54 | extract<SDMemTableWrapper>( tp.attr("__getitem__")(i) ); | 
|---|
| 55 | b[i] = sdmw.getCP(); | 
|---|
| 56 | } | 
|---|
| 57 | Vector<Bool> msk(mask); | 
|---|
| 58 | // | 
|---|
| 59 | SDMath sdm; | 
|---|
| 60 | return SDMemTableWrapper(sdm.average(b, msk, Bool(scanAv), weightStr)); | 
|---|
| 61 | }; | 
|---|
| 62 | } // namespace SDMathWrapper | 
|---|
| 63 |  | 
|---|
| 64 | namespace python { | 
|---|
| 65 | void python_SDMath() { | 
|---|
| 66 | def("quotient", &SDMathWrapper::quotient); | 
|---|
| 67 | // | 
|---|
| 68 | def("scale", &SDMathWrapper::scale); | 
|---|
| 69 | def("scale_insitu", &SDMathWrapper::scaleInSitu); | 
|---|
| 70 | // | 
|---|
| 71 | def("add", &SDMathWrapper::add); | 
|---|
| 72 | def("add_insitu", &SDMathWrapper::addInSitu); | 
|---|
| 73 | // | 
|---|
| 74 | def("smooth", &SDMathWrapper::smooth); | 
|---|
| 75 | def("smooth_insitu", &SDMathWrapper::smoothInSitu); | 
|---|
| 76 | // | 
|---|
| 77 | def("convertflux", &SDMathWrapper::convertFlux); | 
|---|
| 78 | def("convertflux_insitu", &SDMathWrapper::convertFluxInSitu); | 
|---|
| 79 | // | 
|---|
| 80 | def("gainel", &SDMathWrapper::gainElevation); | 
|---|
| 81 | def("gainel_insitu", &SDMathWrapper::gainElevationInSitu); | 
|---|
| 82 | // | 
|---|
| 83 | def("average", &SDMathWrapper::average); | 
|---|
| 84 | // | 
|---|
| 85 | def("averagepol", &SDMathWrapper::averagePol); | 
|---|
| 86 | def("averagepol_insitu", &SDMathWrapper::averagePolInSitu); | 
|---|
| 87 | // | 
|---|
| 88 | def("bin", &SDMathWrapper::bin); | 
|---|
| 89 | def("bin_insitu", &SDMathWrapper::binInSitu); | 
|---|
| 90 | // | 
|---|
| 91 | def("stats", &SDMathWrapper::statistic); | 
|---|
| 92 | }; | 
|---|
| 93 |  | 
|---|
| 94 | } // python | 
|---|
| 95 | } // asap | 
|---|
| 96 |  | 
|---|