Ignore:
Timestamp:
01/22/05 16:42:38 (19 years ago)
Author:
vor010
Message:

SDMemTable & SDMemTableWrapper: formatSec and summary are now const functions.
Makefile has been updated to use the same version for both Narrabri and Epping

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/SDMemTable.cc

    r251 r260  
    892892}
    893893
    894 String SDMemTable::formatSec(Double x)
     894String SDMemTable::formatSec(Double x) const
    895895{
    896896  Double xcop = x;
     
    928928}
    929929
    930 std::string SDMemTable::summary()   {
     930std::string SDMemTable::summary() const  {
    931931  ROScalarColumn<Int> scans(table_, "SCANID");
    932932  ROScalarColumn<String> srcs(table_, "SRCNAME");
     
    953953  table_.keywordSet().get("FluxUnit", tmp);
    954954  oss << setw(15) << "Flux Unit:" << tmp << endl;
    955   Table t = table_.rwKeywordSet().asTable("FREQUENCIES");
     955  Table t = table_.keywordSet().asTable("FREQUENCIES");
    956956  Vector<Double> vec;
    957957  t.keywordSet().get("RESTFREQS",vec);
Note: See TracChangeset for help on using the changeset viewer.