Changeset 448


Ignore:
Timestamp:
02/15/05 18:39:54 (19 years ago)
Author:
kil064
Message:

track change to SDmemTable::rowAsMaskedArray interface

Location:
trunk/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/SDAsciiWriter.cc

    r443 r448  
    112112// Get data
    113113
    114       const MaskedArray<Float>& dataIn(sdTable.rowAsMaskedArray(iRow,False,toStokes));
     114      const MaskedArray<Float>& dataIn(sdTable.rowAsMaskedArray(iRow,toStokes));
    115115      const Array<Float>& values = dataIn.getArray();
    116116      const Array<Bool>& mask = dataIn.getMask();
  • trunk/src/SDFITSImageWriter.cc

    r443 r448  
    156156// Get data converted to Stokes
    157157
    158       const MaskedArray<Float>& dataIn(sdTable.rowAsMaskedArray(iRow,False,toStokes));
     158      const MaskedArray<Float>& dataIn(sdTable.rowAsMaskedArray(iRow,toStokes));
    159159      const Array<Float>& values = dataIn.getArray();
    160160      const Array<Bool>& mask = dataIn.getMask();
  • trunk/src/SDMath.cc

    r434 r448  
    812812// Shape of input and output data
    813813
    814   const IPosition& shapeIn = in.rowAsMaskedArray(0u, False).shape();
     814  const IPosition& shapeIn = in.rowAsMaskedArray(0).shape();
    815815  IPosition shapeOut(shapeIn);
    816816  shapeOut(asap::PolAxis) = 1;                          // Average all polarizations
Note: See TracChangeset for help on using the changeset viewer.