Changeset 894
- Timestamp:
- 03/08/06 14:03:25 (19 years ago)
- Location:
- trunk/src
- Files:
-
- 17 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/Logger.cpp
r891 r894 1 #include " SDLog.h"1 #include "Logger.h" 2 2 3 3 using namespace asap; -
trunk/src/Makefile
r882 r894 80 80 CCOBJECTS := MathUtils.o \ 81 81 MathUtils2.o \ 82 SDLog.o \82 Logger.o \ 83 83 STAttr.o \ 84 84 SDContainer.o \ 85 85 Scantable.o \ 86 86 STFiller.o \ 87 STTemplates.o \87 Templates.o \ 88 88 STMath.o \ 89 89 STSubTable.o \ … … 97 97 RowAccumulator.o \ 98 98 STSelector.o \ 99 S DLineFinder.o \100 S DFitter.o99 STLineFinder.o \ 100 STFitter.o 101 101 PYOBJECTS := python_Scantable.o \ 102 102 python_STFiller.o \ 103 103 python_STSelector.o \ 104 104 python_STMath.o \ 105 python_ SDFitter.o \106 python_ SDLog.o \107 python_S DLineFinder.o \105 python_Fitter.o \ 106 python_Logger.o \ 107 python_STLineFinder.o \ 108 108 python_asap.o 109 109 … … 111 111 112 112 HEADERS := MathUtils.h \ 113 SDLog.h \113 Logger.h \ 114 114 STAttr.h \ 115 115 SDContainer.h \ … … 128 128 STWriter.h \ 129 129 STSelector.h \ 130 SDLineFinder.h 130 STFitter.h \ 131 STLineFinder.h 131 132 132 133 STATICCCLIB := libasap.a -
trunk/src/SDFITSImageWriter.h
r890 r894 36 36 #include <SDMemTable.h> 37 37 38 #include " SDLog.h"38 #include "Logger.h" 39 39 40 40 namespace asap { -
trunk/src/STAttr.h
r890 r894 36 36 #include <casa/Utilities/CountedPtr.h> 37 37 38 #include " SDLog.h"38 #include "Logger.h" 39 39 #include "STDefs.h" 40 40 -
trunk/src/STFiller.h
r890 r894 24 24 #include "Scantable.h" 25 25 #include "SDContainer.h" 26 #include " SDLog.h"26 #include "Logger.h" 27 27 28 28 class PKSreader; -
trunk/src/STFitter.cpp
r891 r894 43 43 #include <components/SpectralComponents/SpectralEstimate.h> 44 44 45 #include "SDFitter.h" 45 #include "STFitter.h" 46 46 47 using namespace asap; 47 48 using namespace casa; -
trunk/src/STLineFinder.cpp
r893 r894 32 32 33 33 // ASAP 34 #include "S DLineFinder.h"35 #include "S DFitter.h"34 #include "STLineFinder.h" 35 #include "STFitter.h" 36 36 37 37 // STL -
trunk/src/STMath.h
r890 r894 24 24 #include "Scantable.h" 25 25 #include "STDefs.h" 26 #include " SDLog.h"26 #include "Logger.h" 27 27 28 28 namespace asap { -
trunk/src/STSubTable.h
r890 r894 16 16 #include <tables/Tables/ScalarColumn.h> 17 17 18 #include " SDLog.h"18 #include "Logger.h" 19 19 20 20 namespace asap { -
trunk/src/STWriter.h
r890 r894 37 37 #include <casa/Utilities/CountedPtr.h> 38 38 39 #include " SDLog.h"39 #include "Logger.h" 40 40 #include "Scantable.h" 41 41 … … 48 48 * such as "SDFITS", "FITS", "MS2" or "ASCII" 49 49 * 50 * @brief Export of ASAP data container into for ign formats50 * @brief Export of ASAP data container into foreign formats 51 51 * @author Malte Marquarding 52 52 * @date $Date$ -
trunk/src/Scantable.h
r890 r894 30 30 #include <measures/TableMeasures/ScalarMeasColumn.h> 31 31 32 #include " SDLog.h"32 #include "Logger.h" 33 33 #include "SDContainer.h" 34 34 #include "STFrequencies.h" -
trunk/src/Templates.cpp
r891 r894 103 103 104 104 #include "MathUtils2.cc" 105 #include "SDPol2.cc"105 //#include "SDPol2.cc" 106 106 namespace mathutil { 107 107 template void hanning(Vector<Float>&, Vector<Bool>&, -
trunk/src/python_Fitter.cpp
r892 r894 31 31 #include <boost/python.hpp> 32 32 33 #include "S DFitter.h"33 #include "STFitter.h" 34 34 35 35 using namespace boost::python; -
trunk/src/python_Logger.cpp
r892 r894 31 31 #include <boost/python.hpp> 32 32 33 #include " SDLog.h"33 #include "Logger.h" 34 34 35 35 using namespace boost::python; -
trunk/src/python_STLineFinder.cpp
r892 r894 31 31 #include <boost/python.hpp> 32 32 33 #include "S DLineFinder.h"33 #include "STLineFinder.h" 34 34 35 35 using namespace boost::python; -
trunk/src/python_asap.cpp
r881 r894 60 60 asap::python::python_STSelector(); 61 61 asap::python::python_STMath(); 62 asap::python::python_ SDFitter();62 asap::python::python_Fitter(); 63 63 asap::python::python_STLineFinder(); 64 64 /* … … 66 66 asap::python::python_SDFitTable(); 67 67 */ 68 asap::python::python_ SDLog();68 asap::python::python_Logger(); 69 69 register_exception_translator<casa::AipsError>(&asap::python::translate_ex); 70 70 -
trunk/src/python_asap.h
r881 r894 41 41 void python_STSelector(); 42 42 void python_STMath(); 43 void python_ SDFitter();43 void python_Fitter(); 44 44 void python_STLineFinder(); 45 45 /* … … 47 47 void python_SDFitTable(); 48 48 */ 49 void python_ SDLog();49 void python_Logger(); 50 50 51 51 } // python
Note:
See TracChangeset
for help on using the changeset viewer.