Changeset 2830 for trunk/src


Ignore:
Timestamp:
07/31/13 17:37:40 (11 years ago)
Author:
WataruKawasaki
Message:

New Development: Yes

JIRA Issue: Yes (CAS-3620)

Ready for Test: Yes

Interface Changes: No

What Interface Changed:

Test Programs:

Put in Release Notes: Yes

Module(s): sd

Description: a new simple plotter based on PGPLOT. the module name is sd.plotter2. only available on casapy (unavailable in the standalone ASAP)


Location:
trunk/src
Files:
3 added
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/CMakeLists.txt

    r2757 r2830  
    77set( SRCDIR ${ASAPROOT}/src )
    88
    9 # include QT_USE_FILE
    10 include( ${QT_USE_FILE} )
    11 
    129# include path
    1310include_directories( ${SRCDIR}
    1411                     ${Boost_INCLUDE_DIR}
    15                      ${QT4_INCLUDE_DIRS}
    1612                     ${ASAPROOT}/external-alma
    1713                     ${ASAPROOT}/external/libpyrap/pyrap-0.3.2 )
     
    2521# source files for libpyrap
    2622set( ASAP_SRCS
    27 #     ${SRCDIR}/Plotter2.cpp
     23     ${SRCDIR}/Plotter2.cpp
    2824     ${SRCDIR}/concurrent.cpp
    2925     ${SRCDIR}/MathUtils.cpp
     
    8581
    8682set( ASAP_PYSRCS
    87 #     ${SRCDIR}/python_Plotter2.cpp
     83     ${SRCDIR}/python_Plotter2.cpp
    8884     ${SRCDIR}/python_Scantable.cpp
    8985     ${SRCDIR}/python_STFiller.cpp
     
    121117target_link_libraries( ${ASAPLIB}
    122118                       #${Boost_LIBRARIES}
    123                        ${QT4_LIBRARIES}
     119                       ${X11_LIBRARIES}
     120                       ${PGPLOT_LIBRARIES}
    124121                       ${PYRAPLIB}
    125122                       ${ATNFLIB}
  • trunk/src/SConscript

    r2643 r2830  
    77# gather cpp files
    88cpps = env.SGlob("*.cpp")
     9cpps.remove("Plotter2.cpp")
    910pycpps = env.SGlob("python_*.cpp")
    1011for pf in pycpps:
    1112    cpps.remove(pf)
     13pycpps.remove("python_Plotter2.cpp")
    1214
    1315# location of libcasav.a
  • trunk/src/python_asap.cpp

    r2742 r2830  
    6868
    6969BOOST_PYTHON_MODULE(_asap) {
    70   //asap::python::python_Plotter2();
     70  asap::python::python_Plotter2();
    7171  asap::python::python_Scantable();
    7272  asap::python::python_STFiller();
  • trunk/src/python_asap.h

    r2742 r2830  
    3535  namespace python {
    3636    void translate_ex(const casa::AipsError& e);
    37     //void python_Plotter2();
     37    void python_Plotter2();
    3838    void python_Scantable();
    3939    void python_STFiller();
Note: See TracChangeset for help on using the changeset viewer.