Ignore:
Timestamp:
06/30/04 11:00:23 (20 years ago)
Author:
mmarquar
Message:

Updated data container. Changed the axis order in the spectrum/flag arrays to [nBeam,nIF,nPol,nChan]

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/SDMemTableWrapper.h

    r10 r16  
    6161  double getTime(int whichRow) {return table_->getTime(whichRow);}
    6262
    63   std::vector<bool> getMask() const { return table_->getMask(); }
     63  std::vector<bool> getMask(int whichRow) const {
     64    return table_->getMask(whichRow);
     65  }
     66  bool setMask(const std::vector<int> mvals) const {
     67    return table_->setMask(mvals);
     68  }
    6469
    6570  std::string getSourceName(int whichRow) {
     
    111116                                             off.getCP()));
    112117  }
     118  SDMemTableWrapper multiply(const SDMemTableWrapper& in,
     119                             Float factor) {
     120    return SDMemTableWrapper(SDMath::multiply(in.getCP(),factor));
     121  }
    113122};
    114123
Note: See TracChangeset for help on using the changeset viewer.