Changeset 894


Ignore:
Timestamp:
03/08/06 14:03:25 (18 years ago)
Author:
mar637
Message:

asap2 naming changes

Location:
trunk/src
Files:
17 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/Logger.cpp

    r891 r894  
    1 #include "SDLog.h"
     1#include "Logger.h"
    22
    33using namespace asap;
  • trunk/src/Makefile

    r882 r894  
    8080CCOBJECTS := MathUtils.o \
    8181             MathUtils2.o \
    82              SDLog.o \
     82             Logger.o \
    8383             STAttr.o \
    8484             SDContainer.o \
    8585             Scantable.o \
    8686             STFiller.o \
    87              STTemplates.o \
     87             Templates.o \
    8888             STMath.o \
    8989             STSubTable.o \
     
    9797             RowAccumulator.o \
    9898             STSelector.o \
    99              SDLineFinder.o \
    100              SDFitter.o
     99             STLineFinder.o \
     100             STFitter.o
    101101PYOBJECTS := python_Scantable.o \
    102102             python_STFiller.o \
    103103             python_STSelector.o \
    104104             python_STMath.o \
    105              python_SDFitter.o \
    106              python_SDLog.o \
    107              python_SDLineFinder.o \
     105             python_Fitter.o \
     106             python_Logger.o \
     107             python_STLineFinder.o \
    108108             python_asap.o
    109109
     
    111111
    112112HEADERS   := MathUtils.h \
    113              SDLog.h \
     113             Logger.h \
    114114             STAttr.h \
    115115             SDContainer.h \
     
    128128             STWriter.h \
    129129             STSelector.h \
    130              SDLineFinder.h
     130             STFitter.h \
     131             STLineFinder.h
    131132
    132133STATICCCLIB := libasap.a
  • trunk/src/SDFITSImageWriter.h

    r890 r894  
    3636#include <SDMemTable.h>
    3737
    38 #include "SDLog.h"
     38#include "Logger.h"
    3939
    4040namespace asap {
  • trunk/src/STAttr.h

    r890 r894  
    3636#include <casa/Utilities/CountedPtr.h>
    3737
    38 #include "SDLog.h"
     38#include "Logger.h"
    3939#include "STDefs.h"
    4040
  • trunk/src/STFiller.h

    r890 r894  
    2424#include "Scantable.h"
    2525#include "SDContainer.h"
    26 #include "SDLog.h"
     26#include "Logger.h"
    2727
    2828class PKSreader;
  • trunk/src/STFitter.cpp

    r891 r894  
    4343#include <components/SpectralComponents/SpectralEstimate.h>
    4444
    45 #include "SDFitter.h"
     45#include "STFitter.h"
     46
    4647using namespace asap;
    4748using namespace casa;
  • trunk/src/STLineFinder.cpp

    r893 r894  
    3232
    3333// ASAP
    34 #include "SDLineFinder.h"
    35 #include "SDFitter.h"
     34#include "STLineFinder.h"
     35#include "STFitter.h"
    3636
    3737// STL
  • trunk/src/STMath.h

    r890 r894  
    2424#include "Scantable.h"
    2525#include "STDefs.h"
    26 #include "SDLog.h"
     26#include "Logger.h"
    2727
    2828namespace asap {
  • trunk/src/STSubTable.h

    r890 r894  
    1616#include <tables/Tables/ScalarColumn.h>
    1717
    18 #include "SDLog.h"
     18#include "Logger.h"
    1919
    2020namespace asap {
  • trunk/src/STWriter.h

    r890 r894  
    3737#include <casa/Utilities/CountedPtr.h>
    3838
    39 #include "SDLog.h"
     39#include "Logger.h"
    4040#include "Scantable.h"
    4141
     
    4848  * such as "SDFITS", "FITS", "MS2" or "ASCII"
    4949  *
    50   * @brief Export of ASAP data container into forign formats
     50  * @brief Export of ASAP data container into foreign formats
    5151  * @author Malte Marquarding
    5252  * @date $Date$
  • trunk/src/Scantable.h

    r890 r894  
    3030#include <measures/TableMeasures/ScalarMeasColumn.h>
    3131
    32 #include "SDLog.h"
     32#include "Logger.h"
    3333#include "SDContainer.h"
    3434#include "STFrequencies.h"
  • trunk/src/Templates.cpp

    r891 r894  
    103103
    104104#include "MathUtils2.cc"
    105 #include "SDPol2.cc"
     105//#include "SDPol2.cc"
    106106namespace mathutil {
    107107  template void hanning(Vector<Float>&, Vector<Bool>&,
  • trunk/src/python_Fitter.cpp

    r892 r894  
    3131#include <boost/python.hpp>
    3232
    33 #include "SDFitter.h"
     33#include "STFitter.h"
    3434
    3535using namespace boost::python;
  • trunk/src/python_Logger.cpp

    r892 r894  
    3131#include <boost/python.hpp>
    3232
    33 #include "SDLog.h"
     33#include "Logger.h"
    3434
    3535using namespace boost::python;
  • trunk/src/python_STLineFinder.cpp

    r892 r894  
    3131#include <boost/python.hpp>
    3232
    33 #include "SDLineFinder.h"
     33#include "STLineFinder.h"
    3434
    3535using namespace boost::python;
  • trunk/src/python_asap.cpp

    r881 r894  
    6060  asap::python::python_STSelector();
    6161  asap::python::python_STMath();
    62   asap::python::python_SDFitter();
     62  asap::python::python_Fitter();
    6363  asap::python::python_STLineFinder();
    6464  /*
     
    6666  asap::python::python_SDFitTable();
    6767  */
    68   asap::python::python_SDLog();
     68  asap::python::python_Logger();
    6969  register_exception_translator<casa::AipsError>(&asap::python::translate_ex);
    7070
  • trunk/src/python_asap.h

    r881 r894  
    4141    void python_STSelector();
    4242    void python_STMath();
    43     void python_SDFitter();
     43    void python_Fitter();
    4444    void python_STLineFinder();
    4545    /*
     
    4747    void python_SDFitTable();
    4848    */
    49     void python_SDLog();
     49    void python_Logger();
    5050
    5151  } // python
Note: See TracChangeset for help on using the changeset viewer.