Changeset 158 for trunk/src


Ignore:
Timestamp:
12/26/04 21:57:09 (19 years ago)
Author:
kil064
Message:

Correct spelling 'abscissa' -> 'abcissa'

Location:
trunk/src
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/SDMemTable.cc

    r148 r158  
    321321}
    322322
    323 std::vector<double> SDMemTable::getAbscissa(Int whichRow) {
     323std::vector<double> SDMemTable::getAbcissa(Int whichRow) {
    324324  std::vector<double> absc(nChan());
    325325  Vector<Double> absc1(nChan());
     
    416416}
    417417
    418 std::string SDMemTable::getAbscissaString(Int whichRow)
     418std::string SDMemTable::getAbcissaString(Int whichRow)
    419419{
    420420  ROArrayColumn<uInt> fid(table_, "FREQID");
     
    864864      oss << "None set" << endl;
    865865  }
    866   oss << setw(15) << "Abscissa:" << getAbscissaString() << endl;
     866  oss << setw(15) << "Abcissa:" << getAbcissaString() << endl;
    867867  oss << setw(15) << "Cursor:" << "Beam[" << getBeam() << "] "
    868868      << "IF[" << getIF() << "] " << "Pol[" << getPol() << "]" << endl;
  • trunk/src/SDMemTable.h

    r154 r158  
    152152  casa::Int nCoordinates() const;
    153153
    154   std::vector<double> getAbscissa(int whichRow=0);
    155   std::string getAbscissaString(casa::Int whichRow=0);
     154  std::vector<double> getAbcissa(int whichRow=0);
     155  std::string getAbcissaString(casa::Int whichRow=0);
    156156
    157157private:
  • trunk/src/SDMemTableWrapper.h

    r157 r158  
    7676  }
    7777
    78   std::vector<double> getAbscissa(int whichRow=0) const {
    79     return table_->getAbscissa(whichRow);
     78  std::vector<double> getAbcissa(int whichRow=0) const {
     79    return table_->getAbcissa(whichRow);
    8080  }
    81   std::string getAbscissaString(int whichRow=0) const {
    82     return table_->getAbscissaString(whichRow);
     81  std::string getAbcissaString(int whichRow=0) const {
     82    return table_->getAbcissaString(whichRow);
    8383  }
    8484
  • trunk/src/python_SDMemTable.cc

    r157 r158  
    5252    .def("getspectrum", &SDMemTableWrapper::getSpectrum,
    5353         (boost::python::arg("whichRow")=0) )
    54     .def("getabscissa", &SDMemTableWrapper::getAbscissa,
     54    .def("getabcissa", &SDMemTableWrapper::getAbcissa,
    5555         (boost::python::arg("whichRow")=0) )
    56     .def("getabscissalabel", &SDMemTableWrapper::getAbscissaString,
     56    .def("getabcissalabel", &SDMemTableWrapper::getAbcissaString,
    5757         (boost::python::arg("whichRow")=0) )
    5858    .def("getmask", &SDMemTableWrapper::getMask,
Note: See TracChangeset for help on using the changeset viewer.