Changeset 1814 for branches/newfiller
- Timestamp:
- 08/02/10 14:18:05 (14 years ago)
- Location:
- branches/newfiller/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/newfiller/src/Scantable.cpp
r1804 r1814 1246 1246 } 1247 1247 1248 std::string Scantable::getAntennaName() const1248 String Scantable::getAntennaName() const 1249 1249 { 1250 1250 String out; -
branches/newfiller/src/Scantable.h
r1757 r1814 237 237 238 238 /** 239 * Get flagRow info at the specified row. If true, the whole data 239 * Get flagRow info at the specified row. If true, the whole data 240 240 * at the row should be flagged. 241 241 */ … … 250 250 251 251 /** 252 * Return a list of booleans with the size of nchan for a specified row, to get info 252 * Return a list of booleans with the size of nchan for a specified row, to get info 253 253 * about which channel is clipped. 254 254 */ 255 255 std::vector<bool> getClipMask(int whichrow, const casa::Float uthres, const casa::Float dthres, bool clipoutside, bool unflag); 256 void srchChannelsToClip(casa::uInt whichrow, const casa::Float uthres, const casa::Float dthres, bool clipoutside, bool unflag, 256 void srchChannelsToClip(casa::uInt whichrow, const casa::Float uthres, const casa::Float dthres, bool clipoutside, bool unflag, 257 257 casa::Vector<casa::uChar> flgs); 258 258 … … 441 441 * @return antenna name string 442 442 */ 443 std::string getAntennaName() const;443 casa::String getAntennaName() const; 444 444 445 445 /** … … 470 470 * @param[in] nmin, nmax minimum and maximum channel 471 471 * @param[in] irow row number 472 * 473 * 30/07/2008 Takeshi Nakazato 472 * 473 * 30/07/2008 Takeshi Nakazato 474 474 **/ 475 475 void reshapeSpectrum( int nmin, int nmax ) throw( casa::AipsError ); … … 486 486 void regridChannel( int nchan, double dnu, int irow ) ; 487 487 488 488 489 489 private: 490 490 … … 583 583 584 584 /** 585 * Add an auxiliary column to the main table and attach it to a 585 * Add an auxiliary column to the main table and attach it to a 586 586 * cached column. Use for adding new columns that the original asap2 587 * tables do not have. 587 * tables do not have. 588 588 * @param[in] col reference to the cached column to be attached 589 589 * @param[in] colName column name in asap table
Note:
See TracChangeset
for help on using the changeset viewer.