Changeset 1812
- Timestamp:
- 08/02/10 12:55:43 (14 years ago)
- Location:
- branches/newfiller/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/newfiller/src/Makefile
r1792 r1812 132 132 FillerBase.o \ 133 133 NROFiller.o \ 134 PKSFiller.o \ 135 AsapLogSink.o \ 134 136 Templates.o 137 135 138 PYOBJECTS := python_Scantable.o \ 136 139 python_STFiller.o \ … … 147 150 python_STCoordinate.o \ 148 151 python_Filler.o \ 152 python_LogSink.o \ 149 153 python_asap.o 150 154 … … 152 156 153 157 HEADERS := MathUtils.h \ 158 LineCatalog.h \ 154 159 Lorentzian1D.h \ 155 160 Lorentzian1DParam.h \ … … 186 191 IndexedCompare.h \ 187 192 STAtmosphere.h \ 188 STCoordinate.h 193 STCoordinate.h \ 194 FillerBase.h \ 195 NROFiller.h \ 196 PKSFiller.h \ 197 AsapLogSink.h 189 198 190 199 STATICCCLIB := libasap.a -
branches/newfiller/src/NROFiller.cpp
r1799 r1812 122 122 for ( Int irow = 0 ; irow < (Int)nRow ; irow++ ) { 123 123 // check scan intent 124 String scanType = reader_->getScanType( irow ) ;124 string scanType = reader_->getScanType( irow ) ; 125 125 SrcType::type srcType = SrcType::NOTYPE ; 126 126 -
branches/newfiller/src/NROFiller.h
r1792 r1812 42 42 { 43 43 public: 44 NROFiller(casa::CountedPtr<Scantable> stable);44 explicit NROFiller(casa::CountedPtr<Scantable> stable); 45 45 virtual ~NROFiller(); 46 46 47 virtualbool open(const std::string& filename) ;48 v irtual void fill() ;49 v irtual void close() ;47 bool open(const std::string& filename) ; 48 void fill() ; 49 void close() ; 50 50 51 51 protected: 52 52 53 53 private: 54 NROFiller(); 55 NROFiller(const NROFiller&); 56 NROFiller& operator=(const NROFiller&); 57 54 58 // pointer to the reader 55 59 NROReader *reader_ ;
Note:
See TracChangeset
for help on using the changeset viewer.