[2707] | 1 | //#---------------------------------------------------------------------------
|
---|
| 2 | //# python_STSideBandSep.cpp: python exposure of c++ STSideBandSep class
|
---|
| 3 | //#---------------------------------------------------------------------------
|
---|
| 4 | //# Author: Kanako Sugimoto, (C) 2012
|
---|
| 5 | //#
|
---|
| 6 | //# Copyright: See COPYING file that comes with this distribution
|
---|
| 7 | //#
|
---|
| 8 | //#---------------------------------------------------------------------------
|
---|
| 9 | #include <boost/python.hpp>
|
---|
| 10 | #include <boost/python/args.hpp>
|
---|
| 11 |
|
---|
| 12 |
|
---|
| 13 | #include "STSideBandSep.h"
|
---|
| 14 |
|
---|
| 15 | using namespace boost::python;
|
---|
| 16 |
|
---|
| 17 | namespace asap {
|
---|
| 18 | namespace python {
|
---|
| 19 |
|
---|
| 20 | void python_STSideBandSep() {
|
---|
| 21 | class_<STSideBandSep>("SBSeparator")
|
---|
| 22 | .def( init <> () )
|
---|
| 23 | .def( "set_freq", &STSideBandSep::setFrequency,
|
---|
| 24 | (boost::python::arg("frame")="") )
|
---|
| 25 | .def( "set_lo1", &STSideBandSep::setLO1,
|
---|
| 26 | (boost::python::arg("frame")="TOPO",
|
---|
| 27 | boost::python::arg("reftime")=-1,
|
---|
| 28 | boost::python::arg("refdir")="") )
|
---|
[2711] | 29 | .def( "set_lo1root", &STSideBandSep::setLO1Root )
|
---|
[2707] | 30 | // temporal methods
|
---|
| 31 | .def( "set_imgtable", &STSideBandSep::setImageTable )
|
---|
| 32 | .def( "solve_imgfreq", &STSideBandSep::solveImageFreqency )
|
---|
[2712] | 33 | .def( "_get_asistb_from_scantb", &STSideBandSep::setScanTb0 )
|
---|
[2707] | 34 | ;
|
---|
| 35 | };
|
---|
| 36 |
|
---|
| 37 | } // python
|
---|
| 38 | } // asap
|
---|