Changeset 1812 for branches


Ignore:
Timestamp:
08/02/10 12:55:43 (14 years ago)
Author:
Takeshi Nakazato
Message:

Makefile is updated to be able to compile codes using make.
Fixed a few things in NROFiller class.

Location:
branches/newfiller/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/newfiller/src/Makefile

    r1792 r1812  
    132132             FillerBase.o \
    133133             NROFiller.o \
     134             PKSFiller.o \
     135             AsapLogSink.o \
    134136             Templates.o
     137
    135138PYOBJECTS := python_Scantable.o \
    136139             python_STFiller.o \
     
    147150             python_STCoordinate.o \
    148151             python_Filler.o \
     152             python_LogSink.o \
    149153             python_asap.o
    150154
     
    152156
    153157HEADERS   := MathUtils.h \
     158             LineCatalog.h \
    154159             Lorentzian1D.h \
    155160             Lorentzian1DParam.h \
     
    186191             IndexedCompare.h \
    187192             STAtmosphere.h \
    188              STCoordinate.h
     193             STCoordinate.h \
     194             FillerBase.h \
     195             NROFiller.h \
     196             PKSFiller.h \
     197             AsapLogSink.h
    189198
    190199STATICCCLIB := libasap.a
  • branches/newfiller/src/NROFiller.cpp

    r1799 r1812  
    122122  for ( Int irow = 0 ; irow < (Int)nRow ; irow++ ) {
    123123    // check scan intent
    124     String scanType = reader_->getScanType( irow ) ;
     124    string scanType = reader_->getScanType( irow ) ;
    125125    SrcType::type srcType = SrcType::NOTYPE ;
    126126
  • branches/newfiller/src/NROFiller.h

    r1792 r1812  
    4242{
    4343  public:
    44     NROFiller(casa::CountedPtr<Scantable> stable);
     44    explicit NROFiller(casa::CountedPtr<Scantable> stable);
    4545    virtual ~NROFiller();
    4646
    47     virtual bool open(const std::string& filename) ;
    48     virtual void fill() ;
    49     virtual void close() ;
     47    bool open(const std::string& filename) ;
     48    void fill() ;
     49    void close() ;
    5050
    5151  protected:
    5252
    5353  private:
     54    NROFiller();
     55    NROFiller(const NROFiller&);
     56    NROFiller& operator=(const NROFiller&);
     57
    5458    // pointer to the reader
    5559    NROReader *reader_ ;
Note: See TracChangeset for help on using the changeset viewer.