IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Dec 30, 2004, 11:35:04 AM (22 years ago)
Author:
gusciora
Message:

Modified calls to psReadoutAlloc().

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/test/tst_pmReadoutCombine.c

    r2851 r2856  
    55 *  @author GLG, MHPCC
    66 *
    7  *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
    8  *  @date $Date: 2004-12-30 01:42:04 $
     7 *  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
     8 *  @date $Date: 2004-12-30 21:35:04 $
    99 *
    1010 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    115115        *(int *) (& (tmpImage->row0)) = baseRows[r];
    116116        *(int *) (& (tmpImage->col0)) = baseCols[r];
    117         psReadout *tmpReadout = psReadoutAlloc(baseColsReadout[r],
    118                                                baseRowsReadout[r],
    119                                                tmpImage);
     117        /*
     118                psReadout *tmpReadout = psReadoutAlloc(baseColsReadout[r],
     119                                                       baseRowsReadout[r],
     120                                                       tmpImage);
     121        */
     122        psReadout *tmpReadout = psReadoutAlloc();
     123        tmpReadout->image = tmpImage;
     124
    120125        minOutRow = PS_MIN(minOutRow, (baseRowsReadout[r] + baseRows[r]));
    121126        minOutCol = PS_MIN(minOutCol, (baseColsReadout[r] + baseCols[r]));
     
    226231        *(int *) (& (tmpImage->row0)) = baseRows[r];
    227232        *(int *) (& (tmpImage->col0)) = baseCols[r];
    228         psReadout *tmpReadout = psReadoutAlloc(baseColsReadout[r],
    229                                                baseRowsReadout[r],
    230                                                tmpImage);
     233        /*
     234                psReadout *tmpReadout = psReadoutAlloc(baseColsReadout[r],
     235                                                       baseRowsReadout[r],
     236                                                       tmpImage);
     237        */
     238        psReadout *tmpReadout = psReadoutAlloc();
     239        tmpReadout->image = tmpImage;
    231240        minOutRow = PS_MIN(minOutRow, (baseRowsReadout[r] + baseRows[r]));
    232241        minOutCol = PS_MIN(minOutCol, (baseColsReadout[r] + baseCols[r]));
Note: See TracChangeset for help on using the changeset viewer.