source: trunk/python/CMakeLists.txt@ 2646

Last change on this file since 2646 was 2613, checked in by Takeshi Nakazato, 12 years ago

New Development: Yes

JIRA Issue: Yes CAS-2825

Ready for Test: No

Interface Changes: Yes

What Interface Changed: added new python module sd.edgemarker

Test Programs: not available

Put in Release Notes: Yes

Module(s): Module Names change impacts.

Description: Describe your changes here...

New python module edgemarker is available. The edgemarker is a tool to
detect edge of observed area and mark data near edge as OFF. It can be
used to calibrate OTF data without explicit OFF scan.


File size: 1.3 KB
RevLine 
[1954]1###
2# CMakeLists.txt for python modules
3###
4
5# root for python
6set( PYTHONROOT ${ASAP_SOURCE_DIR} )
7set( PYTHONDIR ${PYTHONROOT}/python )
8
9# python modules
10set( PYTHON_MODULES
[2587]11 ${PYTHONDIR}/__init__.py
[1954]12 ${PYTHONDIR}/asapfit.py
13 ${PYTHONDIR}/asapfitter.py
[2587]14 ${PYTHONDIR}/asapgrid.py
[1954]15 ${PYTHONDIR}/asaplinefind.py
[2587]16 ${PYTHONDIR}/asaplot.py
[1954]17 ${PYTHONDIR}/asaplotbase.py
[2587]18 ${PYTHONDIR}/asaplotgui.py
[1954]19 ${PYTHONDIR}/asaplotgui_gtk.py
20 ${PYTHONDIR}/asaplotgui_qt4.py
21 ${PYTHONDIR}/asapmath.py
22 ${PYTHONDIR}/asapplotter.py
23 ${PYTHONDIR}/compatibility.py
24 ${PYTHONDIR}/coordinate.py
[2155]25 ${PYTHONDIR}/customgui_base.py
[2587]26 ${PYTHONDIR}/customgui_qt4agg.py
[2155]27 ${PYTHONDIR}/customgui_tkagg.py
[1954]28 ${PYTHONDIR}/env.py
[1996]29 ${PYTHONDIR}/flagplotter.py
[1954]30 ${PYTHONDIR}/interactivemask.py
31 ${PYTHONDIR}/ipysupport.py
32 ${PYTHONDIR}/lagflagger.py
33 ${PYTHONDIR}/linecatalog.py
34 ${PYTHONDIR}/logging.py
35 ${PYTHONDIR}/opacity.py
36 ${PYTHONDIR}/parameters.py
[2587]37# ${PYTHONDIR}/plotter2.py
[1954]38 ${PYTHONDIR}/scantable.py
39 ${PYTHONDIR}/selector.py
40 ${PYTHONDIR}/simplelinefinder.py
[2613]41 ${PYTHONDIR}/edgemarker.py
[2587]42 ${PYTHONDIR}/svninfo.txt
43 ${PYTHONDIR}/utils.py )
[1954]44
45install( PROGRAMS ${PYTHON_MODULES}
46 DESTINATION ${PYTHON_INSTALL_DIR} )
Note: See TracBrowser for help on using the repository browser.