- Timestamp:
- 07/05/12 18:47:48 (12 years ago)
- Location:
- trunk/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/CMakeLists.txt
r2580 r2587 7 7 set( SRCDIR ${ASAPROOT}/src ) 8 8 9 # include QT_USE_FILE 10 include( ${QT_USE_FILE} ) 11 9 12 # include path 10 13 include_directories( ${SRCDIR} 11 14 ${Boost_INCLUDE_DIR} 15 ${QT4_INCLUDE_DIRS} 12 16 ${ASAPROOT}/external-alma 13 17 ${ASAPROOT}/external/libpyrap/pyrap-0.3.2 ) … … 21 25 # source files for libpyrap 22 26 set( ASAP_SRCS 27 # ${SRCDIR}/Plotter2.cpp 23 28 ${SRCDIR}/concurrent.cpp 24 29 ${SRCDIR}/MathUtils.cpp … … 64 69 65 70 set( ASAP_PYSRCS 71 # ${SRCDIR}/python_Plotter2.cpp 66 72 ${SRCDIR}/python_Scantable.cpp 67 73 ${SRCDIR}/python_STFiller.cpp … … 96 102 target_link_libraries( ${ASAPLIB} 97 103 #${Boost_LIBRARIES} 104 ${QT4_LIBRARIES} 98 105 ${PYRAPLIB} 99 106 ${ATNFLIB} -
trunk/src/ScantableWrapper.h
r2435 r2587 13 13 #define ASAPSCANTABLEWRAPPER_H 14 14 15 #include <iostream> 16 #include <string> 15 17 #include <vector> 16 #include <string> 18 17 19 #include <casa/Arrays/Vector.h> 18 20 19 21 #include "MathUtils.h" 22 #include "Scantable.h" 23 #include "STCoordinate.h" 20 24 #include "STFit.h" 21 25 #include "STFitEntry.h" 22 #include "Scantable.h"23 #include "STCoordinate.h"24 26 25 27 namespace asap { … … 58 60 table_(mt.getCP()) {;} 59 61 62 ~ScantableWrapper() 63 { 64 } 65 60 66 void assign(const ScantableWrapper& mt) 61 67 { table_= mt.getCP(); } … … 312 318 } // namespace 313 319 #endif 314 -
trunk/src/python_asap.cpp
r2580 r2587 68 68 69 69 BOOST_PYTHON_MODULE(_asap) { 70 //asap::python::python_Plotter2(); 70 71 asap::python::python_Scantable(); 71 72 asap::python::python_STFiller(); -
trunk/src/python_asap.h
r2580 r2587 35 35 namespace python { 36 36 void translate_ex(const casa::AipsError& e); 37 //void python_Plotter2(); 37 38 void python_Scantable(); 38 39 void python_STFiller();
Note:
See TracChangeset
for help on using the changeset viewer.