Changeset 927
- Timestamp:
- 03/24/06 13:35:55 (19 years ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/STMath.h
r917 r927 116 116 casa::CountedPtr<Scantable> 117 117 frequencyAlign( const casa::CountedPtr<Scantable>& in, 118 const std::string& refTime ,119 const std::string& method , bool perfreqid);118 const std::string& refTime = "", 119 const std::string& method = "cubic" ); 120 120 121 121 private: -
trunk/src/STMathWrapper.h
r912 r927 117 117 { return ScantableWrapper(STMath::swapPolarisations(in.getCP())); } 118 118 119 ScantableWrapper frequencyAlign( const ScantableWrapper& in, 120 const std::string& refTime, 121 const std::string& method ) 122 { return ScantableWrapper(STMath::frequencyAlign(in.getCP())); } 123 119 124 }; 120 125 -
trunk/src/python_STMath.cpp
r912 r927 60 60 .def("_invert_phase", &STMathWrapper::invertPhase) 61 61 .def("_swap_linears", &STMathWrapper::swapPolarisations) 62 .def("_freq_align", &STMathWrapper::frequencyAlign) 62 63 ; 63 64 };
Note:
See TracChangeset
for help on using the changeset viewer.