Changeset 297
- Timestamp:
- 01/25/05 17:16:46 (20 years ago)
- Location:
- trunk
- Files:
-
- 4 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/bin/install.sh
r289 r297 7 7 ######################################## 8 8 9 # temporary check to allow the same file for Narrabri and Epping 10 if [ x"$NARRABRI_ASAP" = xyes ]; 11 then 12 ASAPDIR='/DATA/KAPUTAR_2/vor010/ASAP/site-packages/asap' 13 SRCDIR='/DATA/KAPUTAR_2/vor010/ASAP/asap' 14 else 9 15 ASAPDIR='/usr/local/lib/python2.3/site-packages/asap' 10 16 SRCDIR='/u/mar637/brage/singledish/asap' 17 fi 18 # 11 19 12 20 # where the source python files are … … 15 23 libdir='lib' 16 24 # the python files to install 17 srcfiles="__init__.py asapmath.py scantable.py asapreader.py asaplot.py asapfitter.py asapplotter.py "25 srcfiles="__init__.py asapmath.py scantable.py asapreader.py asaplot.py asapfitter.py asapplotter.py asaplinefind.py" 18 26 # the libraries to install 19 27 libfiles='_asap.so' -
trunk/python/__init__.py
r285 r297 214 214 from asapmath import * 215 215 from scantable import * 216 from asaplinefind import * 216 217 217 218 if rcParams['useplotter']: -
trunk/src/Makefile
r260 r297 53 53 SDFITSImageWriter.o \ 54 54 SDAsciiWriter.o \ 55 SDLineFinder.o \ 55 56 python_SDMemTable.o \ 56 57 python_SDReader.o \ … … 58 59 python_SDMath.o \ 59 60 python_SDFitter.o \ 61 python_SDLineFinder.o \ 60 62 python_SD.o 61 63 … … 74 76 SDFITSImageWriter.h \ 75 77 SDAsciiWriter.h \ 78 SDLineFinder.h \ 76 79 python_SD.h 77 80 -
trunk/src/python_SD.cc
r125 r297 59 59 asap::python::python_SDMath(); 60 60 asap::python::python_SDFitter(); 61 asap::python::python_SDLineFinder(); 61 62 62 63 register_exception_translator<casa::AipsError>(&asap::python::translate_ex); -
trunk/src/python_SD.h
r125 r297 42 42 void python_SDMath(); 43 43 void python_SDFitter(); 44 void python_SDLineFinder(); 44 45 45 46 } // python
Note:
See TracChangeset
for help on using the changeset viewer.