Changeset 83
- Timestamp:
- 09/07/04 11:31:02 (20 years ago)
- Location:
- trunk/src
- Files:
-
- 22 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/Makefile
r82 r83 1 TARGET := ../lib/a tnf_sd.so1 TARGET := ../lib/asap.so 2 2 3 3 CXX := g++-3.2.3 -
trunk/src/SDContainer.cc
r81 r83 37 37 #include "SDContainer.h" 38 38 39 using namespace a tnf_sd;39 using namespace asap; 40 40 41 41 void SDHeader::print() const { -
trunk/src/SDContainer.h
r81 r83 41 41 template<class T> class Matrix; 42 42 43 namespace a tnf_sd{43 namespace asap { 44 44 45 45 -
trunk/src/SDMath.cc
r81 r83 61 61 #include "SDMath.h" 62 62 63 using namespace a tnf_sd;64 //using namespace a tnf_sd::SDMath;63 using namespace asap; 64 //using namespace asap::SDMath; 65 65 66 66 CountedPtr<SDMemTable> SDMath::average(const CountedPtr<SDMemTable>& in) { -
trunk/src/SDMath.h
r81 r83 36 36 #include <casa/Utilities/CountedPtr.h> 37 37 38 namespace a tnf_sd{38 namespace asap { 39 39 40 40 class SDMemTable; -
trunk/src/SDMathWrapper.h
r81 r83 40 40 #include "SDMath.h" 41 41 42 namespace a tnf_sd{42 namespace asap { 43 43 44 44 namespace SDMathWrapper { -
trunk/src/SDMemTable.cc
r80 r83 56 56 #include "SDContainer.h" 57 57 58 using namespace a tnf_sd;58 using namespace asap; 59 59 60 60 SDMemTable::SDMemTable() : -
trunk/src/SDMemTable.h
r80 r83 43 43 #include <coordinates/Coordinates/SpectralCoordinate.h> 44 44 45 namespace a tnf_sd{45 namespace asap { 46 46 47 47 class SDContainer; -
trunk/src/SDMemTableWrapper.h
r80 r83 37 37 #include "SDMemTable.h" 38 38 39 namespace a tnf_sd{39 namespace asap { 40 40 41 41 class SDMemTableWrapper { -
trunk/src/SDReader.cc
r79 r83 33 33 #include "SDReader.h" 34 34 35 using namespace a tnf_sd;35 using namespace asap; 36 36 37 37 SDReader::SDReader() : -
trunk/src/SDReader.h
r81 r83 46 46 class PKSreader; 47 47 48 namespace a tnf_sd{48 namespace asap { 49 49 50 50 class SDReader { -
trunk/src/SDReaderWrapper.h
r81 r83 38 38 #include "SDReader.h" 39 39 40 namespace a tnf_sd{40 namespace asap { 41 41 42 42 class SDReaderWrapper : public SDReader { -
trunk/src/SDTemplates.cc
r81 r83 37 37 #include "SDMemTable.h" 38 38 39 namespace a tnf_sd{39 namespace asap { 40 40 template class CountedConstPtr<SDMemTable>; 41 41 template class CountedPtr<SDMemTable>; … … 45 45 template class Block<CountedPtr<SDMemTable> >; 46 46 } 47 template void objcopy(CountedPtr<a tnf_sd::SDMemTable> *, CountedPtr<atnf_sd::SDMemTable> const *, uInt);48 template void objmove(CountedPtr<a tnf_sd::SDMemTable> *, CountedPtr<atnf_sd::SDMemTable> const *, uInt);49 template void objset(CountedPtr<a tnf_sd::SDMemTable> *, CountedPtr<atnf_sd::SDMemTable>, uInt);47 template void objcopy(CountedPtr<asap::SDMemTable> *, CountedPtr<asap::SDMemTable> const *, uInt); 48 template void objmove(CountedPtr<asap::SDMemTable> *, CountedPtr<asap::SDMemTable> const *, uInt); 49 template void objset(CountedPtr<asap::SDMemTable> *, CountedPtr<asap::SDMemTable>, uInt); 50 50 51 51 #include <casa/Arrays/ArrayLogical.cc> -
trunk/src/SDWriter.cc
r81 r83 44 44 #include "SDWriter.h" 45 45 46 using namespace a tnf_sd;46 using namespace asap; 47 47 48 48 //--------------------------------------------------------- SDWriter::SDWriter -
trunk/src/SDWriter.h
r81 r83 42 42 class PKSwriter; 43 43 44 namespace a tnf_sd{44 namespace asap { 45 45 46 46 class SDWriter { -
trunk/src/SDWriterWrapper.h
r81 r83 38 38 #include "SDWriter.h" 39 39 40 namespace a tnf_sd{40 namespace asap { 41 41 42 42 class SDWriterWrapper : public SDWriter { … … 49 49 }; 50 50 51 } // namespace a tnf_sd51 } // namespace asap 52 52 #endif -
trunk/src/python_SD.cc
r42 r83 38 38 using namespace boost::python; 39 39 40 BOOST_PYTHON_MODULE(a tnf_sd) {41 a tnf_sd::python::python_SDMemTable();42 a tnf_sd::python::python_SDReader();43 a tnf_sd::python::python_SDWriter();44 a tnf_sd::python::python_SDMath();40 BOOST_PYTHON_MODULE(asap) { 41 asap::python::python_SDMemTable(); 42 asap::python::python_SDReader(); 43 asap::python::python_SDWriter(); 44 asap::python::python_SDMath(); 45 45 46 46 std_vector_to_tuple < int > (); -
trunk/src/python_SD.h
r81 r83 32 32 #define _PYTHON_SD_H 33 33 34 namespace a tnf_sd{34 namespace asap { 35 35 namespace python { 36 36 … … 41 41 42 42 } // python 43 } //a tnf_sd43 } //asap 44 44 45 45 #endif -
trunk/src/python_SDMath.cc
r69 r83 35 35 using namespace boost::python; 36 36 37 namespace a tnf_sd{37 namespace asap { 38 38 namespace SDMathWrapper { 39 39 SDMemTableWrapper SDMathWrapper::averages(boost::python::tuple tp, … … 41 41 int n; 42 42 n = extract<int>(tp.attr("__len__")()); 43 Block<CountedPtr<a tnf_sd::SDMemTable> > b(n);43 Block<CountedPtr<asap::SDMemTable> > b(n); 44 44 for (int i=0;i< n;++i) { 45 45 SDMemTableWrapper sdmw = … … 67 67 68 68 } // python 69 } // a tnf_sd69 } // asap 70 70 -
trunk/src/python_SDMemTable.cc
r80 r83 37 37 using namespace boost::python; 38 38 39 namespace a tnf_sd{39 namespace asap { 40 40 namespace python { 41 41 … … 82 82 83 83 } // python 84 } // a tnf_sd84 } // asap -
trunk/src/python_SDReader.cc
r57 r83 35 35 using namespace boost::python; 36 36 37 namespace a tnf_sd{37 namespace asap { 38 38 namespace python { 39 39 … … 50 50 51 51 } //namespace python 52 } // namespace a tnf_sd52 } // namespace asap 53 53 -
trunk/src/python_SDWriter.cc
r58 r83 35 35 using namespace boost::python; 36 36 37 namespace a tnf_sd{37 namespace asap { 38 38 namespace python { 39 39 … … 49 49 50 50 } // namespace python 51 } // namespace a tnf_sd51 } // namespace asap
Note:
See TracChangeset
for help on using the changeset viewer.