IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 15, 2005, 3:10:36 PM (21 years ago)
Author:
gusciora
Message:

There are a lot of changes here required by the new SDRS. Most changes
involve the new definitions of the psAstrometry types. Not all tests work
correctly.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/pmReadoutCombine.c

    r4425 r4770  
    55 *  @author GLG, MHPCC
    66 *
    7  *  @version $Revision: 1.24 $ $Name: not supported by cvs2svn $
    8  *  @date $Date: 2005-06-29 01:39:10 $
     7 *  @version $Revision: 1.25 $ $Name: not supported by cvs2svn $
     8 *  @date $Date: 2005-08-16 01:10:34 $
    99 *
    1010 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    7272    psS32 minInputRows = PS_MAX_S32;
    7373    psListElem *tmpInput = NULL;
    74     psReadout *tmpReadout = NULL;
     74    pmReadout *tmpReadout = NULL;
    7575    psS32 numInputs = 0;
    7676    psS32 tmpI;
     
    9898    tmpInput = (psListElem *) inputs->head;
    9999    while (NULL != tmpInput) {
    100         tmpReadout = (psReadout *) tmpInput->data;
     100        tmpReadout = (pmReadout *) tmpInput->data;
    101101        PS_ASSERT_READOUT_NON_NULL(tmpReadout, output);
    102102        PS_ASSERT_READOUT_NON_EMPTY(tmpReadout, output);
     
    182182    psVector *outColLower = psVectorAlloc(numInputs, PS_TYPE_U32);
    183183    psVector *outColUpper = psVectorAlloc(numInputs, PS_TYPE_U32);
    184     psReadout **tmpReadouts = (psReadout **) psAlloc(numInputs * sizeof(psReadout *));
     184    pmReadout **tmpReadouts = (pmReadout **) psAlloc(numInputs * sizeof(pmReadout *));
    185185
    186186    // For each input readout, we create a pointer to that readout in
     
    191191    tmpInput = (psListElem *) inputs->head;
    192192    while (NULL != tmpInput) {
    193         tmpReadouts[i] = (psReadout *) tmpInput->data;
     193        tmpReadouts[i] = (pmReadout *) tmpInput->data;
    194194        outRowLower->data.U32[i] = tmpReadouts[i]->row0 + tmpReadouts[i]->image->row0;
    195195        outColLower->data.U32[i] = tmpReadouts[i]->col0 + tmpReadouts[i]->image->col0;
Note: See TracChangeset for help on using the changeset viewer.