IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 1, 2004, 12:42:57 PM (22 years ago)
Author:
desonia
Message:

renamed data.v to data.V in psImage struct to be same as psVector.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/image/psImageIO.c

    r817 r824  
    77 *  @author Robert DeSonia, MHPCC
    88 *
    9  *  @version $Revision: 1.1 $ $Name: not supported by cvs2svn $
    10  *  @date $Date: 2004-05-29 01:42:44 $
     9 *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2004-06-01 22:42:57 $
    1111 *
    1212 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    135135        psImageRecycle(output,numCols,numRows,PS_TYPE_U8);
    136136        (void)fits_read_subset(fptr, TBYTE, firstPixel, lastPixel, increment,
    137                                NULL, output->data.v, &anynull, &status);
     137                               NULL, output->data.V, &anynull, &status);
    138138        break;
    139139    case SHORT_IMG:
    140140        psImageRecycle(output,numCols,numRows,PS_TYPE_S16);
    141141        (void)fits_read_subset(fptr, TSHORT, firstPixel, lastPixel, increment,
    142                                NULL, output->data.v, &anynull, &status);
     142                               NULL, output->data.V, &anynull, &status);
    143143        break;
    144144    case LONG_IMG:
    145145        psImageRecycle(output,numCols,numRows,PS_TYPE_S32);
    146146        (void)fits_read_subset(fptr, TINT, firstPixel, lastPixel, increment,
    147                                NULL, output->data.v, &anynull, &status);
     147                               NULL, output->data.V, &anynull, &status);
    148148        break;
    149149    case FLOAT_IMG:
    150150        psImageRecycle(output,numCols,numRows,PS_TYPE_F32);
    151151        (void)fits_read_subset(fptr, TFLOAT, firstPixel, lastPixel, increment,
    152                                NULL, output->data.v, &anynull, &status);
     152                               NULL, output->data.V, &anynull, &status);
    153153        break;
    154154    case DOUBLE_IMG:
    155155        psImageRecycle(output,numCols,numRows,PS_TYPE_F64);
    156156        (void)fits_read_subset(fptr, TDOUBLE, firstPixel, lastPixel, increment,
    157                                NULL, output->data.v, &anynull, &status);
     157                               NULL, output->data.V, &anynull, &status);
    158158        break;
    159159    default:
     
    323323
    324324
    325     if ( fits_write_subset(fptr, datatype, firstPixel, lastPixel, input->data.v, &status) != 0) {
     325    if ( fits_write_subset(fptr, datatype, firstPixel, lastPixel, input->data.V, &status) != 0) {
    326326        (void)fits_get_errstatus(status, fitsErr);
    327327        status = 0;
Note: See TracChangeset for help on using the changeset viewer.