- Timestamp:
- 03/06/06 11:32:22 (19 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/python_asap.cpp
r873 r875 1 1 //#--------------------------------------------------------------------------- 2 //# python_ SD.cc: python module for single dish package2 //# python_asap.cc: python module for single dish package asap 3 3 //#--------------------------------------------------------------------------- 4 4 //# Copyright (C) 2004 … … 37 37 #include <casa/aips.h> 38 38 #include <casa/Exceptions/Error.h> 39 #include "ScantableWrapper.h" 40 39 41 40 42 #include "pyconversions.h" 41 #include "python_ SD.h"43 #include "python_asap.h" 42 44 43 45 namespace asap { … … 54 56 55 57 BOOST_PYTHON_MODULE(_asap) { 56 asap::python::python_SDMemTable(); 57 asap::python::python_SDReader(); 58 asap::python::python_Scantable(); 59 asap::python::python_STFiller(); 60 asap::python::python_STSelector(); 61 asap::python::python_STMath(); 62 asap::python::python_SDFitter(); 63 /* 58 64 asap::python::python_SDWriter(); 59 asap::python::python_SDMath();60 asap::python::python_SDFitter();61 65 asap::python::python_SDFitTable(); 62 66 asap::python::python_SDLineFinder(); 67 */ 63 68 asap::python::python_SDLog(); 69 register_exception_translator<casa::AipsError>(&asap::python::translate_ex); 64 70 65 register_exception_translator<casa::AipsError>(&asap::python::translate_ex); 71 //std_vector_to_tuple < > (); 72 from_python_sequence < std::vector< asap::ScantableWrapper >, 73 variable_capacity_policy > (); 66 74 67 75 std_vector_to_tuple < int > (); -
trunk/src/python_asap.h
r873 r875 1 1 //#--------------------------------------------------------------------------- 2 //# python_ SD.h: python module for single dish package2 //# python_asap.h: python module for single dish package asap 3 3 //#--------------------------------------------------------------------------- 4 4 //# Copyright (C) 2004 … … 29 29 //# $Id$ 30 30 //#--------------------------------------------------------------------------- 31 #ifndef PYTHON_ SD_H32 #define PYTHON_ SD_H31 #ifndef PYTHON_ASAP_H 32 #define PYTHON_ASAP_H 33 33 34 34 class casa::AipsError; … … 37 37 namespace python { 38 38 void translate_ex(const casa::AipsError& e); 39 void python_SDMemTable(); 40 void python_SDReader(); 39 void python_Scantable(); 40 void python_STFiller(); 41 void python_STSelector(); 42 void python_STMath(); 43 void python_SDFitter(); 44 /* 41 45 void python_SDWriter(); 42 46 void python_SDMath(); 43 void python_SDFitter();44 47 void python_SDFitTable(); 45 48 void python_SDLineFinder(); 49 */ 46 50 void python_SDLog(); 47 51
Note:
See TracChangeset
for help on using the changeset viewer.