Changeset 1375 for trunk/src/Scantable.h


Ignore:
Timestamp:
07/12/07 11:57:05 (17 years ago)
Author:
mar637
Message:

export WCS info to ASCII file, this required returng const& of STSubTables. This partly addresses Ticket #110

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/Scantable.h

    r1360 r1375  
    361361
    362362  STFrequencies& frequencies() { return freqTable_; }
     363  const STFrequencies& frequencies() const { return freqTable_; }
    363364  STWeather& weather() { return weatherTable_; }
     365  const STWeather& weather() const { return weatherTable_; }
    364366  STFocus& focus() { return focusTable_; }
     367  const STFocus& focus() const { return focusTable_; }
    365368  STTcal& tcal() { return tcalTable_; }
     369  const STTcal& tcal() const { return tcalTable_; }
    366370  STMolecules& molecules() { return moleculeTable_; }
     371  const STMolecules& molecules() const { return moleculeTable_; }
    367372  STHistory& history() { return historyTable_; }
     373  const STHistory& history() const { return historyTable_; }
    368374  STFit& fit() { return fitTable_; }
     375  const STFit& fit() const { return fitTable_; }
    369376
    370377  std::vector<std::string> columnNames() const;
Note: See TracChangeset for help on using the changeset viewer.