source: trunk/python/CMakeLists.txt@ 2005

Last change on this file since 2005 was 1996, checked in by Kana Sugimoto, 14 years ago

New Development: Yes

JIRA Issue: Yes (CAS-1306)

Ready for Test: Yes

Interface Changes: Yes

What Interface Changed: New plotter and toolbar for graphical flagging

Test Programs:

scan = asap.scantable(filename=sdfile,average=False)
guiflagger = asap.flagplotter(visible=True)
guiflagger.plot(scan)
## modify flag on the plot
scan.save(name='flagged_file.asap',format='ASAP')

Put in Release Notes: Yes

Module(s): itself

Description:

A new flagplotter module is added for graphical flagging.
A new flagtoolbar module is added for the plotter.

File size: 1.2 KB
Line 
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
11 ${PYTHONDIR}/asapfit.py
12 ${PYTHONDIR}/asapfitter.py
13 ${PYTHONDIR}/asaplinefind.py
14 ${PYTHONDIR}/asaplotbase.py
15 ${PYTHONDIR}/asaplotgui_gtk.py
16 ${PYTHONDIR}/asaplotgui.py
17 ${PYTHONDIR}/asaplotgui_qt4.py
18 ${PYTHONDIR}/asaplot.py
19 ${PYTHONDIR}/asapmath.py
20 ${PYTHONDIR}/asapplotter.py
21 ${PYTHONDIR}/casatoolbar.py
22 ${PYTHONDIR}/compatibility.py
23 ${PYTHONDIR}/coordinate.py
24 ${PYTHONDIR}/env.py
25 ${PYTHONDIR}/flagplotter.py
26 ${PYTHONDIR}/flagtoolbar.py
27 ${PYTHONDIR}/__init__.py
28 ${PYTHONDIR}/interactivemask.py
29 ${PYTHONDIR}/ipysupport.py
30 ${PYTHONDIR}/lagflagger.py
31 ${PYTHONDIR}/linecatalog.py
32 ${PYTHONDIR}/logging.py
33 ${PYTHONDIR}/notationwindow.py
34 ${PYTHONDIR}/opacity.py
35 ${PYTHONDIR}/parameters.py
36 ${PYTHONDIR}/scantable.py
37 ${PYTHONDIR}/selector.py
38 ${PYTHONDIR}/simplelinefinder.py
39 ${PYTHONDIR}/utils.py )
40
41install( PROGRAMS ${PYTHON_MODULES}
42 DESTINATION ${PYTHON_INSTALL_DIR} )
Note: See TracBrowser for help on using the repository browser.