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/test/tst_pmReadoutCombine.c

    r2945 r4770  
    55 *  @author GLG, MHPCC
    66 *
    7  *  @version $Revision: 1.11 $ $Name: not supported by cvs2svn $
    8  *  @date $Date: 2005-01-10 22:22:52 $
     7 *  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
     8 *  @date $Date: 2005-08-16 01:10:36 $
    99 *
    1010 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    5656int main(int argc, char* argv[])
    5757{
     58    psLogSetFormat("HLNM");
    5859    return !runTestSuite(stderr, "Test Point Driver", tests, argc, argv);
    5960}
     
    118119        *(int *) (& (tmpImage->col0)) = baseCols[r];
    119120        /*
    120                 psReadout *tmpReadout = psReadoutAlloc(baseColsReadout[r],
     121                pmReadout *tmpReadout = pmReadoutAlloc(baseColsReadout[r],
    121122                                                       baseRowsReadout[r],
    122123                                                       tmpImage);
    123124        */
    124         psReadout *tmpReadout = psReadoutAlloc();
     125        pmReadout *tmpReadout = pmReadoutAlloc(NULL);
    125126        tmpReadout->image = tmpImage;
    126127
     
    154155    psListElem *tmpInput = (psListElem *) list->head;
    155156    while (NULL != tmpInput) {
    156         psReadout *tmpReadout = (psReadout *) tmpInput->data;
     157        pmReadout *tmpReadout = (pmReadout *) tmpInput->data;
    157158        psFree(tmpReadout);
    158159        tmpInput = tmpInput->next;
     
    236237        *(int *) (& (tmpImage->col0)) = baseCols[r];
    237238        /*
    238                 psReadout *tmpReadout = psReadoutAlloc(baseColsReadout[r],
     239                pmReadout *tmpReadout = pmReadoutAlloc(baseColsReadout[r],
    239240                                                       baseRowsReadout[r],
    240241                                                       tmpImage);
    241242        */
    242         psReadout *tmpReadout = psReadoutAlloc();
     243        pmReadout *tmpReadout = pmReadoutAlloc(NULL);
    243244        tmpReadout->image = tmpImage;
    244245        minOutRow = PS_MIN(minOutRow, (baseRowsReadout[r] + baseRows[r]));
     
    441442    psListElem *tmpInput = (psListElem *) list->head;
    442443    while (NULL != tmpInput) {
    443         psReadout *tmpReadout = (psReadout *) tmpInput->data;
     444        pmReadout *tmpReadout = (pmReadout *) tmpInput->data;
    444445        psFree(tmpReadout);
    445446        tmpInput = tmpInput->next;
Note: See TracChangeset for help on using the changeset viewer.