Changeset 297


Ignore:
Timestamp:
01/25/05 17:16:46 (19 years ago)
Author:
vor010
Message:

SDLineFinder: C++ class and python binder
have been added. This is an initial version, but it works in some simple

cases. Makefile and install.sh were updated to account for new source files

Location:
trunk
Files:
4 added
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/bin/install.sh

    r289 r297  
    77########################################
    88
     9# temporary check to allow the same file for Narrabri and Epping
     10if [ x"$NARRABRI_ASAP" = xyes ];
     11then
     12ASAPDIR='/DATA/KAPUTAR_2/vor010/ASAP/site-packages/asap'
     13SRCDIR='/DATA/KAPUTAR_2/vor010/ASAP/asap'
     14else
    915ASAPDIR='/usr/local/lib/python2.3/site-packages/asap'
    1016SRCDIR='/u/mar637/brage/singledish/asap'
     17fi
     18#
    1119
    1220# where the source python files are
     
    1523libdir='lib'
    1624# the python files to install
    17 srcfiles="__init__.py asapmath.py scantable.py asapreader.py asaplot.py asapfitter.py asapplotter.py"
     25srcfiles="__init__.py asapmath.py scantable.py asapreader.py asaplot.py asapfitter.py asapplotter.py asaplinefind.py"
    1826# the libraries to install
    1927libfiles='_asap.so'
  • trunk/python/__init__.py

    r285 r297  
    214214from asapmath import *
    215215from scantable import *
     216from asaplinefind import *
    216217
    217218if rcParams['useplotter']:
  • trunk/src/Makefile

    r260 r297  
    5353             SDFITSImageWriter.o \
    5454             SDAsciiWriter.o \
     55             SDLineFinder.o \
    5556             python_SDMemTable.o \
    5657             python_SDReader.o \
     
    5859             python_SDMath.o \
    5960             python_SDFitter.o \
     61             python_SDLineFinder.o \
    6062             python_SD.o
    6163
     
    7476             SDFITSImageWriter.h \
    7577             SDAsciiWriter.h \
     78             SDLineFinder.h \
    7679             python_SD.h
    7780
  • trunk/src/python_SD.cc

    r125 r297  
    5959  asap::python::python_SDMath();
    6060  asap::python::python_SDFitter();
     61  asap::python::python_SDLineFinder();
    6162
    6263  register_exception_translator<casa::AipsError>(&asap::python::translate_ex);
  • trunk/src/python_SD.h

    r125 r297  
    4242    void python_SDMath();
    4343    void python_SDFitter();
     44    void python_SDLineFinder();
    4445
    4546  } // python
Note: See TracChangeset for help on using the changeset viewer.