source: trunk/src/python_SDMath.cc@ 194

Last change on this file since 194 was 178, checked in by kil064, 20 years ago

remove 'hanning' functions and add 'smooth' functions

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 3.1 KB
RevLine 
[2]1//#---------------------------------------------------------------------------
2//# python_SDMath.cc: python exposure of c++ SDMath class
3//#---------------------------------------------------------------------------
4//# Copyright (C) 2004
[125]5//# ATNF
[2]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
[125]33#include <casa/aips.h>
34#include <casa/Containers/Block.h>
35#include <casa/Utilities/CountedPtr.cc>
36
[55]37#include "SDMathWrapper.h"
[170]38#include "SDMath.h"
[2]39
[125]40using namespace casa;
[2]41using namespace boost::python;
42
[83]43namespace asap {
[69]44 namespace SDMathWrapper {
[145]45 SDMemTableWrapper SDMathWrapper::average(boost::python::tuple tp,
46 const std::vector<bool>& mask,
47 bool scanAv,
48 const std::string& weightStr) {
[69]49 int n;
50 n = extract<int>(tp.attr("__len__")());
[83]51 Block<CountedPtr<asap::SDMemTable> > b(n);
[69]52 for (int i=0;i< n;++i) {
[86]53 SDMemTableWrapper sdmw =
54 extract<SDMemTableWrapper>( tp.attr("__getitem__")(i) );
55 b[i] = sdmw.getCP();
[69]56 }
57 Vector<Bool> msk(mask);
[170]58//
59 SDMath sdm;
60 return SDMemTableWrapper(sdm.average(b, msk, Bool(scanAv), weightStr));
[69]61 };
62 } // namespace SDMathWrapper
63
[2]64 namespace python {
[69]65 void python_SDMath() {
66 def("quotient", &SDMathWrapper::quotient);
[167]67//
[86]68 def("scale", &SDMathWrapper::scale);
[140]69 def("scale_insitu", &SDMathWrapper::scaleInSitu);
[167]70//
[107]71 def("add", &SDMathWrapper::add);
[153]72 def("add_insitu", &SDMathWrapper::addInSitu);
[167]73//
[178]74 def("smooth", &SDMathWrapper::smooth);
75 def("smooth_insitu", &SDMathWrapper::smoothInSitu);
[167]76//
[145]77 def("average", &SDMathWrapper::average);
[167]78//
[69]79 def("averagepol", &SDMathWrapper::averagePol);
[165]80 def("averagepol_insitu", &SDMathWrapper::averagePolInSitu);
[167]81//
[69]82 def("bin", &SDMathWrapper::bin);
[167]83 def("bin_insitu", &SDMathWrapper::binInSitu);
84//
[133]85 def("stats", &SDMathWrapper::statistic);
[69]86 };
[86]87
[2]88 } // python
[83]89} // asap
[55]90
Note: See TracBrowser for help on using the repository browser.