Changeset 2902


Ignore:
Timestamp:
03/12/14 16:00:54 (10 years ago)
Author:
Takeshi Nakazato
Message:

New Development: No

JIRA Issue: Yes CAS-5875

Ready for Test: Yes

Interface Changes: No

What Interface Changed: Please list interface changes

Test Programs: test_sdcoadd

Put in Release Notes: Yes/No?

Module(s): Module Names change impacts.

Description: Describe your changes here...

Another possible fix for broken build of standalone asap which may
be more reasonable and more robust than before.


Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/python/scantable.py

    r2901 r2902  
    51465146                tbl = self._math._average((tbl, ), (), 'NONE', 'SCAN')
    51475147            if not first:
    5148                 tbl = self._math._merge([self, tbl], "")
     5148                tbl = self._math._merge([self, tbl])
    51495149            Scantable.__init__(self, tbl)
    51505150            r.close()
  • trunk/src/python_STMath.cpp

    r2526 r2902  
    7070        .def("_convertpol", &STMathWrapper::convertPolarisation)
    7171        .def("_opacity", &STMathWrapper::opacity)
    72         .def("_merge", &STMathWrapper::merge)
     72        .def("_merge", &STMathWrapper::merge,
     73             (boost::python::arg("freqTol")=std::string("")) )
    7374        .def("_rotate_xyphase", &STMathWrapper::rotateXYPhase)
    7475        .def("_rotate_linpolphase", &STMathWrapper::rotateLinPolPhase)
Note: See TracChangeset for help on using the changeset viewer.