IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 3682


Ignore:
Timestamp:
Apr 7, 2005, 10:27:42 AM (21 years ago)
Author:
desonia
Message:

changed name of p_psMemSetDeallocator/p_psMemGetDeallocator to
psMemSetDeallocator/psMemGetDeallocator.

-rdd

Location:
trunk/psLib
Files:
1 added
175 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/Makefile.am

    r3662 r3682  
    1414
    1515$(prefix)/docs/pslib:
    16         mkdir -p $(prefix)/docs/pslib
     16        mkdir -p -m 755 $(prefix)/docs/pslib
    1717
    1818$(mandir)/man3:
    19         mkdir -p $(mandir)/man3
     19        mkdir -p -m 755 $(mandir)/man3
    2020
    2121$(datadir)/pslib:
    22         mkdir -p $(datadir)/pslib
     22        mkdir -p -m 755 $(datadir)/pslib
    2323
    2424install-data-hook: $(datadir)/pslib
     
    2626
    2727uninstall-hook:
    28         if [ `pwd`/share != $(datadir) ] ; then rm -rf $(datadir)/pslib ; fi
     28        if [ `pwd`/share/pslib != $(datadir) ] ; then rm -rf $(datadir) ; fi
    2929        rm -rf $(prefix)/docs/pslib/*
    3030
     
    3232
    3333test: check
     34
     35distuninstallcheck_listfiles = \
     36        `find . -name .packlist -or -name perllocal.pod -or -name pslib.bs -or -name pslib.so -or -name pslib.pm`
     37
     38distuninstallcheck:
     39        @:
  • trunk/psLib/configure.ac

    r3662 r3682  
    1 AC_INIT([pslib],[0.5.0],[www.pan-starrs.org/bugzilla])
     1AC_INIT([pslib],[0.5.1],[www.pan-starrs.org/bugzilla])
    22AM_CONFIG_HEADER(src/config.h)
    3 AM_INIT_AUTOMAKE(pslib, 0.5.0)
     3AM_INIT_AUTOMAKE(pslib, 0.5.1)
    44
    55PSLIB_LT_VERSION="0:5:0"
  • trunk/psLib/etc/pslib/Makefile.am

    r3601 r3682  
    1111
    1212$(sysconfdir)/pslib:
    13         mkdir -p $(sysconfdir)/pslib
    14    
    15 install-data-hook: psTime.config $(sysconfdir)/pslib
     13        mkdir -p -m 755 $(sysconfdir)/pslib
     14
     15install-exec-hook: psTime.config $(sysconfdir)/pslib
    1616        if [ `pwd` != $(sysconfdir)/pslib ] ; then  $(INSTALL) $(srcdir)/psTime.xml psTime.config $(sysconfdir)/pslib ; fi
    1717
    18 uninstall-hook:
    19         if [ `pwd` != $(sysconfdir)/pslib ] ; then  rm -rf $(sysconfdir)/pslib ; fi
     18uninstall-local:
     19        if [ `pwd` != $(sysconfdir) ] ; then  rm -rf $(sysconfdir) ; fi
    2020
    2121       
  • trunk/psLib/pslib.kdevses

    r3662 r3682  
    22<!DOCTYPE KDevPrjSession>
    33<KDevPrjSession>
    4  <DocsAndViews NumberOfDocuments="4" >
    5   <Doc0 NumberOfViews="1" URL="file:///home/desonia/panstarrs/psLib/src/fileUtils/psFits.h" >
    6    <View0 Type="Source" />
    7   </Doc0>
    8   <Doc1 NumberOfViews="1" URL="file:///home/desonia/panstarrs/psLib/src/fileUtils/psFits.c" >
    9    <View0 line="538" Type="Source" />
    10   </Doc1>
    11   <Doc2 NumberOfViews="1" URL="file:///home/desonia/panstarrs/psLib/test/fileUtils/tst_psFits.c" >
    12    <View0 line="647" Type="Source" />
    13   </Doc2>
    14   <Doc3 NumberOfViews="1" URL="file:///home/desonia/panstarrs/psLib/src/astronomy/psMetadata.h" >
    15    <View0 line="76" Type="Source" />
    16   </Doc3>
    17  </DocsAndViews>
     4 <DocsAndViews NumberOfDocuments="0" />
    185 <pluginList>
    196  <kdevdebugger>
  • trunk/psLib/src/Makefile.am

    r3240 r3682  
    2828pslibinclude_HEADERS = \
    2929        psTest.h \
    30         pslib.h
     30        pslib.h \
     31        pslib_strict.h
    3132
    3233install-exec-hook: libpslib.la
  • trunk/psLib/src/astro/psCoord.c

    r3598 r3682  
    1010*  @author GLG, MHPCC
    1111*
    12 *  @version $Revision: 1.61 $ $Name: not supported by cvs2svn $
    13 *  @date $Date: 2005-03-31 23:01:46 $
     12*  @version $Revision: 1.62 $ $Name: not supported by cvs2svn $
     13*  @date $Date: 2005-04-07 20:27:41 $
    1414*
    1515*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    214214    psPlane *p = psAlloc(sizeof(psPlane));
    215215
    216     p_psMemSetDeallocator(p, (psFreeFcn) planeFree);
     216    psMemSetDeallocator(p, (psFreeFcn) planeFree);
    217217    return(p);
    218218}
     
    228228    psSphere *s = psAlloc(sizeof(psSphere));
    229229
    230     p_psMemSetDeallocator(s, (psFreeFcn) sphereFree);
     230    psMemSetDeallocator(s, (psFreeFcn) sphereFree);
    231231    return(s);
    232232}
     
    247247    pt->y = psDPolynomial2DAlloc(n1, n2, PS_POLYNOMIAL_ORD);
    248248
    249     p_psMemSetDeallocator(pt, (psFreeFcn) planeTransformFree);
     249    psMemSetDeallocator(pt, (psFreeFcn) planeTransformFree);
    250250    return(pt);
    251251}
     
    293293    pt->y = psDPolynomial4DAlloc(n1, n2, n3, n4, PS_POLYNOMIAL_ORD);
    294294
    295     p_psMemSetDeallocator(pt, (psFreeFcn) planeDistortFree);
     295    psMemSetDeallocator(pt, (psFreeFcn) planeDistortFree);
    296296    return(pt);
    297297}
     
    508508    p->type = type;
    509509
    510     p_psMemSetDeallocator(p, (psFreeFcn) projectionFree);
     510    psMemSetDeallocator(p, (psFreeFcn) projectionFree);
    511511    return(p);
    512512}
  • trunk/psLib/src/astronomy/psAstrometry.c

    r3598 r3682  
    88 *  @author GLG, MHPCC
    99 *
    10  *  @version $Revision: 1.63 $ $Name: not supported by cvs2svn $
    11  *  @date $Date: 2005-03-31 23:01:46 $
     10 *  @version $Revision: 1.64 $ $Name: not supported by cvs2svn $
     11 *  @date $Date: 2005-04-07 20:27:41 $
    1212 *
    1313 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    191191    }
    192192
    193     p_psMemSetDeallocator(tmp,(psFreeFcn)fixedPatternFree);
     193    psMemSetDeallocator(tmp,(psFreeFcn)fixedPatternFree);
    194194
    195195    return(tmp);
     
    238238    exp->telescopeName = NULL;
    239239
    240     p_psMemSetDeallocator(exp,(psFreeFcn)exposureFree);
     240    psMemSetDeallocator(exp,(psFreeFcn)exposureFree);
    241241
    242242    return exp;
     
    263263    *(double *)&obs->tlr = tlr;
    264264
    265     p_psMemSetDeallocator(obs,(psFreeFcn)observatoryFree);
     265    psMemSetDeallocator(obs,(psFreeFcn)observatoryFree);
    266266
    267267    return obs;
     
    304304    newFPA->chi2 = 0.0f;
    305305
    306     p_psMemSetDeallocator(newFPA,(psFreeFcn)FPAFree);
     306    psMemSetDeallocator(newFPA,(psFreeFcn)FPAFree);
    307307
    308308    return newFPA;
     
    338338    chip->parent = parentFPA;
    339339
    340     p_psMemSetDeallocator(chip,(psFreeFcn)chipFree);
     340    psMemSetDeallocator(chip,(psFreeFcn)chipFree);
    341341
    342342    return chip;
     
    376376    cell->parent = parentChip;
    377377
    378     p_psMemSetDeallocator(cell,(psFreeFcn)cellFree);
     378    psMemSetDeallocator(cell,(psFreeFcn)cellFree);
    379379
    380380    return cell;
     
    399399    readout->metadata = NULL;
    400400
    401     p_psMemSetDeallocator(readout,(psFreeFcn)readoutFree);
     401    psMemSetDeallocator(readout,(psFreeFcn)readoutFree);
    402402
    403403    return readout;
  • trunk/psLib/src/astronomy/psCoord.c

    r3598 r3682  
    1010*  @author GLG, MHPCC
    1111*
    12 *  @version $Revision: 1.61 $ $Name: not supported by cvs2svn $
    13 *  @date $Date: 2005-03-31 23:01:46 $
     12*  @version $Revision: 1.62 $ $Name: not supported by cvs2svn $
     13*  @date $Date: 2005-04-07 20:27:41 $
    1414*
    1515*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    214214    psPlane *p = psAlloc(sizeof(psPlane));
    215215
    216     p_psMemSetDeallocator(p, (psFreeFcn) planeFree);
     216    psMemSetDeallocator(p, (psFreeFcn) planeFree);
    217217    return(p);
    218218}
     
    228228    psSphere *s = psAlloc(sizeof(psSphere));
    229229
    230     p_psMemSetDeallocator(s, (psFreeFcn) sphereFree);
     230    psMemSetDeallocator(s, (psFreeFcn) sphereFree);
    231231    return(s);
    232232}
     
    247247    pt->y = psDPolynomial2DAlloc(n1, n2, PS_POLYNOMIAL_ORD);
    248248
    249     p_psMemSetDeallocator(pt, (psFreeFcn) planeTransformFree);
     249    psMemSetDeallocator(pt, (psFreeFcn) planeTransformFree);
    250250    return(pt);
    251251}
     
    293293    pt->y = psDPolynomial4DAlloc(n1, n2, n3, n4, PS_POLYNOMIAL_ORD);
    294294
    295     p_psMemSetDeallocator(pt, (psFreeFcn) planeDistortFree);
     295    psMemSetDeallocator(pt, (psFreeFcn) planeDistortFree);
    296296    return(pt);
    297297}
     
    508508    p->type = type;
    509509
    510     p_psMemSetDeallocator(p, (psFreeFcn) projectionFree);
     510    psMemSetDeallocator(p, (psFreeFcn) projectionFree);
    511511    return(p);
    512512}
  • trunk/psLib/src/astronomy/psMetadata.c

    r3541 r3682  
    1212*  @author Ross Harman, MHPCC
    1313*
    14 *  @version $Revision: 1.57 $ $Name: not supported by cvs2svn $
    15 *  @date $Date: 2005-03-29 21:31:54 $
     14*  @version $Revision: 1.58 $ $Name: not supported by cvs2svn $
     15*  @date $Date: 2005-04-07 20:27:41 $
    1616*
    1717*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    183183
    184184    // Set deallocator
    185     p_psMemSetDeallocator(metadataItem, (psFreeFcn) metadataItemFree);
     185    psMemSetDeallocator(metadataItem, (psFreeFcn) metadataItemFree);
    186186
    187187    // Allocate and set metadata item comment
     
    252252    metadata = (psMetadata*) psAlloc(sizeof(psMetadata));
    253253    // Set deallocator
    254     p_psMemSetDeallocator(metadata, (psFreeFcn) metadataFree);
     254    psMemSetDeallocator(metadata, (psFreeFcn) metadataFree);
    255255
    256256    // Allocate metadata's internal containers
     
    598598
    599599    // Set deallocator
    600     p_psMemSetDeallocator(newIter, (psFreeFcn) metadataIteratorFree);
     600    psMemSetDeallocator(newIter, (psFreeFcn) metadataIteratorFree);
    601601
    602602    if (regex == NULL) {
  • trunk/psLib/src/collections/psArray.c

    r3286 r3682  
    99 *  @author Ross Harman, MHPCC
    1010 *
    11  *  @version $Revision: 1.26 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2005-02-18 22:17:20 $
     11 *  @version $Revision: 1.27 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2005-04-07 20:27:41 $
    1313 *
    1414 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    5555    // Create vector struct
    5656    psArr = (psArray* ) psAlloc(sizeof(psArray));
    57     p_psMemSetDeallocator(psArr, (psFreeFcn) arrayFree);
     57    psMemSetDeallocator(psArr, (psFreeFcn) arrayFree);
    5858
    5959    psArr->nalloc = nalloc;
  • trunk/psLib/src/collections/psBitSet.c

    r3298 r3682  
    1111 *  @author Robert DeSonia, MHPCC
    1212 *
    13  *  @version $Revision: 1.23 $ $Name: not supported by cvs2svn $
    14  *  @date $Date: 2005-02-22 19:25:52 $
     13 *  @version $Revision: 1.24 $ $Name: not supported by cvs2svn $
     14 *  @date $Date: 2005-04-07 20:27:41 $
    1515 *
    1616 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    8080    numBytes = ceil(n / 8.0);
    8181    newObj = psAlloc(sizeof(psBitSet));
    82     p_psMemSetDeallocator(newObj, (psFreeFcn) bitSetFree);
     82    psMemSetDeallocator(newObj, (psFreeFcn) bitSetFree);
    8383    newObj->n = numBytes;
    8484
  • trunk/psLib/src/collections/psHash.c

    r3286 r3682  
    1212*  @author Robert DeSonia, MHPCC
    1313*
    14 *  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
    15 *  @date $Date: 2005-02-18 22:17:20 $
     14*  @version $Revision: 1.14 $ $Name: not supported by cvs2svn $
     15*  @date $Date: 2005-04-07 20:27:41 $
    1616*
    1717*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    9090    psHashBucket* bucket = psAlloc(sizeof(psHashBucket));
    9191
    92     p_psMemSetDeallocator(bucket, (psFreeFcn) hashBucketFree);
     92    psMemSetDeallocator(bucket, (psFreeFcn) hashBucketFree);
    9393
    9494    // Initialize the bucket.
     
    141141    psHash* table = psAlloc(sizeof(psHash));
    142142
    143     p_psMemSetDeallocator(table, (psFreeFcn) hashFree);
     143    psMemSetDeallocator(table, (psFreeFcn) hashFree);
    144144
    145145    // Allocate memory for the buckets.
  • trunk/psLib/src/collections/psList.c

    r3264 r3682  
    66 *  @author Robert Daniel DeSonia, MHPCC
    77 *
    8  *  @version $Revision: 1.34 $ $Name: not supported by cvs2svn $
    9  *  @date $Date: 2005-02-17 19:26:23 $
     8 *  @version $Revision: 1.35 $ $Name: not supported by cvs2svn $
     9 *  @date $Date: 2005-04-07 20:27:41 $
    1010 *
    1111 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    4545    psArray* iterators = list->iterators;
    4646    for (int i = 0; i < iterators->n; i++) {
    47         p_psMemSetDeallocator(iterators->data[i], NULL);
     47        psMemSetDeallocator(iterators->data[i], NULL);
    4848    }
    4949
     
    129129    psList* list = psAlloc(sizeof(psList));
    130130
    131     p_psMemSetDeallocator(list, (psFreeFcn) listFree);
     131    psMemSetDeallocator(list, (psFreeFcn) listFree);
    132132
    133133    list->size = 0;
     
    153153    psListIterator* iter = psAlloc(sizeof(psListIterator));
    154154
    155     p_psMemSetDeallocator(iter, (psFreeFcn) listIteratorFree);
     155    psMemSetDeallocator(iter, (psFreeFcn) listIteratorFree);
    156156
    157157    // initialize the attributes
  • trunk/psLib/src/collections/psMetadata.c

    r3541 r3682  
    1212*  @author Ross Harman, MHPCC
    1313*
    14 *  @version $Revision: 1.57 $ $Name: not supported by cvs2svn $
    15 *  @date $Date: 2005-03-29 21:31:54 $
     14*  @version $Revision: 1.58 $ $Name: not supported by cvs2svn $
     15*  @date $Date: 2005-04-07 20:27:41 $
    1616*
    1717*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    183183
    184184    // Set deallocator
    185     p_psMemSetDeallocator(metadataItem, (psFreeFcn) metadataItemFree);
     185    psMemSetDeallocator(metadataItem, (psFreeFcn) metadataItemFree);
    186186
    187187    // Allocate and set metadata item comment
     
    252252    metadata = (psMetadata*) psAlloc(sizeof(psMetadata));
    253253    // Set deallocator
    254     p_psMemSetDeallocator(metadata, (psFreeFcn) metadataFree);
     254    psMemSetDeallocator(metadata, (psFreeFcn) metadataFree);
    255255
    256256    // Allocate metadata's internal containers
     
    598598
    599599    // Set deallocator
    600     p_psMemSetDeallocator(newIter, (psFreeFcn) metadataIteratorFree);
     600    psMemSetDeallocator(newIter, (psFreeFcn) metadataIteratorFree);
    601601
    602602    if (regex == NULL) {
  • trunk/psLib/src/collections/psVector.c

    r3476 r3682  
    99*  @author Robert DeSonia, MHPCC
    1010*
    11 *  @version $Revision: 1.36 $ $Name: not supported by cvs2svn $
    12 *  @date $Date: 2005-03-22 21:52:49 $
     11*  @version $Revision: 1.37 $ $Name: not supported by cvs2svn $
     12*  @date $Date: 2005-04-07 20:27:41 $
    1313*
    1414*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    5151    // Create vector struct
    5252    psVec = (psVector* ) psAlloc(sizeof(psVector));
    53     p_psMemSetDeallocator(psVec, (psFreeFcn) vectorFree);
     53    psMemSetDeallocator(psVec, (psFreeFcn) vectorFree);
    5454
    5555    psVec->type.dimen = PS_DIMEN_VECTOR;
  • trunk/psLib/src/dataIO/psFits.c

    r3671 r3682  
    77 *  @author Robert DeSonia, MHPCC
    88 *
    9  *  @version $Revision: 1.26 $ $Name: not supported by cvs2svn $
    10  *  @date $Date: 2005-04-06 01:12:58 $
     9 *  @version $Revision: 1.27 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2005-04-07 20:27:41 $
    1111 *
    1212 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    249249    fits->p_fd = fptr;
    250250    strcpy((char*)fits->filename,name);
    251     p_psMemSetDeallocator(fits,(psFreeFcn)fitsFree);
     251    psMemSetDeallocator(fits,(psFreeFcn)fitsFree);
    252252
    253253    return fits;
  • trunk/psLib/src/dataIO/psLookupTable.c

    r3586 r3682  
    77*  @author Ross Harman, MHPCC
    88*
    9 *  @version $Revision: 1.11 $ $Name: not supported by cvs2svn $
    10 *  @date $Date: 2005-03-31 02:33:17 $
     9*  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
     10*  @date $Date: 2005-04-07 20:27:41 $
    1111*
    1212*  Copyright 2004-5 Maui High Performance Computing Center, University of Hawaii
     
    421421
    422422    // Set deallocator
    423     p_psMemSetDeallocator(outTable, (psFreeFcn)lookupTableFree);
     423    psMemSetDeallocator(outTable, (psFreeFcn)lookupTableFree);
    424424
    425425    // Allocate and set metadata item comment
  • trunk/psLib/src/dataManip/psFunctions.c

    r3671 r3682  
    77 *  polynomials.  It also contains a Gaussian functions.
    88 *
    9  *  @version $Revision: 1.95 $ $Name: not supported by cvs2svn $
    10  *  @date $Date: 2005-04-06 01:12:58 $
     9 *  @version $Revision: 1.96 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2005-04-07 20:27:41 $
    1111 *
    1212 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    10481048
    10491049    newPoly = (psPolynomial1D* ) psAlloc(sizeof(psPolynomial1D));
    1050     p_psMemSetDeallocator(newPoly, (psFreeFcn) polynomial1DFree);
     1050    psMemSetDeallocator(newPoly, (psFreeFcn) polynomial1DFree);
    10511051
    10521052    newPoly->type = type;
     
    10751075
    10761076    newPoly = (psPolynomial2D* ) psAlloc(sizeof(psPolynomial2D));
    1077     p_psMemSetDeallocator(newPoly, (psFreeFcn) polynomial2DFree);
     1077    psMemSetDeallocator(newPoly, (psFreeFcn) polynomial2DFree);
    10781078
    10791079    newPoly->type = type;
     
    11131113
    11141114    newPoly = (psPolynomial3D* ) psAlloc(sizeof(psPolynomial3D));
    1115     p_psMemSetDeallocator(newPoly, (psFreeFcn) polynomial3DFree);
     1115    psMemSetDeallocator(newPoly, (psFreeFcn) polynomial3DFree);
    11161116
    11171117    newPoly->type = type;
     
    11611161
    11621162    newPoly = (psPolynomial4D* ) psAlloc(sizeof(psPolynomial4D));
    1163     p_psMemSetDeallocator(newPoly, (psFreeFcn) polynomial4DFree);
     1163    psMemSetDeallocator(newPoly, (psFreeFcn) polynomial4DFree);
    11641164
    11651165    newPoly->type = type;
     
    14101410
    14111411    newPoly = (psDPolynomial1D* ) psAlloc(sizeof(psDPolynomial1D));
    1412     p_psMemSetDeallocator(newPoly, (psFreeFcn) dPolynomial1DFree);
     1412    psMemSetDeallocator(newPoly, (psFreeFcn) dPolynomial1DFree);
    14131413
    14141414    newPoly->type = type;
     
    14371437
    14381438    newPoly = (psDPolynomial2D* ) psAlloc(sizeof(psDPolynomial2D));
    1439     p_psMemSetDeallocator(newPoly, (psFreeFcn) dPolynomial2DFree);
     1439    psMemSetDeallocator(newPoly, (psFreeFcn) dPolynomial2DFree);
    14401440
    14411441    newPoly->type = type;
     
    14751475
    14761476    newPoly = (psDPolynomial3D* ) psAlloc(sizeof(psDPolynomial3D));
    1477     p_psMemSetDeallocator(newPoly, (psFreeFcn) dPolynomial3DFree);
     1477    psMemSetDeallocator(newPoly, (psFreeFcn) dPolynomial3DFree);
    14781478
    14791479    newPoly->type = type;
     
    15231523
    15241524    newPoly = (psDPolynomial4D* ) psAlloc(sizeof(psDPolynomial4D));
    1525     p_psMemSetDeallocator(newPoly, (psFreeFcn) dPolynomial4DFree);
     1525    psMemSetDeallocator(newPoly, (psFreeFcn) dPolynomial4DFree);
    15261526
    15271527    newPoly->type = type;
     
    18291829    tmp->knots->data.F32[numSplines] = max;
    18301830
    1831     p_psMemSetDeallocator(tmp,(psFreeFcn)spline1DFree);
     1831    psMemSetDeallocator(tmp,(psFreeFcn)spline1DFree);
    18321832    return(tmp);
    18331833}
     
    18721872    }
    18731873
    1874     p_psMemSetDeallocator(tmp,(psFreeFcn)spline1DFree);
     1874    psMemSetDeallocator(tmp,(psFreeFcn)spline1DFree);
    18751875    return(tmp);
    18761876}
  • trunk/psLib/src/dataManip/psStats.c

    r3551 r3682  
    99 *  @author GLG, MHPCC
    1010 *
    11  *  @version $Revision: 1.124 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2005-03-29 22:51:24 $
     11 *  @version $Revision: 1.125 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2005-04-07 20:27:41 $
    1313 *
    1414 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    18331833    // bins, then there are N+1 bounds to those bins.
    18341834    newHist = (psHistogram* ) psAlloc(sizeof(psHistogram));
    1835     p_psMemSetDeallocator(newHist, (psFreeFcn) histogramFree);
     1835    psMemSetDeallocator(newHist, (psFreeFcn) histogramFree);
    18361836    newHist->bounds = psVectorAlloc(n + 1, PS_TYPE_F32);
    18371837    newHist->bounds->n = newHist->bounds->nalloc;
     
    18801880    // Allocate memory for the new histogram structure.
    18811881    newHist = (psHistogram* ) psAlloc(sizeof(psHistogram));
    1882     p_psMemSetDeallocator(newHist, (psFreeFcn) histogramFree);
     1882    psMemSetDeallocator(newHist, (psFreeFcn) histogramFree);
    18831883    newHist->bounds = psVectorAlloc(bounds->n, PS_TYPE_F32);
    18841884    newHist->bounds->n = newHist->bounds->nalloc;
  • trunk/psLib/src/fileUtils/psFits.c

    r3671 r3682  
    77 *  @author Robert DeSonia, MHPCC
    88 *
    9  *  @version $Revision: 1.26 $ $Name: not supported by cvs2svn $
    10  *  @date $Date: 2005-04-06 01:12:58 $
     9 *  @version $Revision: 1.27 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2005-04-07 20:27:41 $
    1111 *
    1212 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    249249    fits->p_fd = fptr;
    250250    strcpy((char*)fits->filename,name);
    251     p_psMemSetDeallocator(fits,(psFreeFcn)fitsFree);
     251    psMemSetDeallocator(fits,(psFreeFcn)fitsFree);
    252252
    253253    return fits;
  • trunk/psLib/src/fileUtils/psLookupTable.c

    r3586 r3682  
    77*  @author Ross Harman, MHPCC
    88*
    9 *  @version $Revision: 1.11 $ $Name: not supported by cvs2svn $
    10 *  @date $Date: 2005-03-31 02:33:17 $
     9*  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
     10*  @date $Date: 2005-04-07 20:27:41 $
    1111*
    1212*  Copyright 2004-5 Maui High Performance Computing Center, University of Hawaii
     
    421421
    422422    // Set deallocator
    423     p_psMemSetDeallocator(outTable, (psFreeFcn)lookupTableFree);
     423    psMemSetDeallocator(outTable, (psFreeFcn)lookupTableFree);
    424424
    425425    // Allocate and set metadata item comment
  • trunk/psLib/src/fits/psFits.c

    r3671 r3682  
    77 *  @author Robert DeSonia, MHPCC
    88 *
    9  *  @version $Revision: 1.26 $ $Name: not supported by cvs2svn $
    10  *  @date $Date: 2005-04-06 01:12:58 $
     9 *  @version $Revision: 1.27 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2005-04-07 20:27:41 $
    1111 *
    1212 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    249249    fits->p_fd = fptr;
    250250    strcpy((char*)fits->filename,name);
    251     p_psMemSetDeallocator(fits,(psFreeFcn)fitsFree);
     251    psMemSetDeallocator(fits,(psFreeFcn)fitsFree);
    252252
    253253    return fits;
  • trunk/psLib/src/image/psImage.c

    r3671 r3682  
    99 *  @author Ross Harman, MHPCC
    1010 *
    11  *  @version $Revision: 1.62 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2005-04-06 01:12:58 $
     11 *  @version $Revision: 1.63 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2005-04-07 20:27:41 $
    1313 *
    1414 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    6767    psImage* image = (psImage* ) psAlloc(sizeof(psImage));
    6868
    69     p_psMemSetDeallocator(image, (psFreeFcn) imageFree);
     69    psMemSetDeallocator(image, (psFreeFcn) imageFree);
    7070
    7171    image->data.V = psAlloc(sizeof(psPtr ) * numRows);
  • trunk/psLib/src/image/psImageConvolve.c

    r3191 r3682  
    55 *  @author Robert DeSonia, MHPCC
    66 *
    7  *  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
    8  *  @date $Date: 2005-02-11 20:27:34 $
     7 *  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
     8 *  @date $Date: 2005-04-07 20:27:41 $
    99 *
    1010 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    7575    result->kernel = kernelRows - yMin;
    7676
    77     p_psMemSetDeallocator(result,(psFreeFcn)freeKernel);
     77    psMemSetDeallocator(result,(psFreeFcn)freeKernel);
    7878
    7979    return result;
  • trunk/psLib/src/image/psImageExtraction.c

    r3476 r3682  
    99 *  @author Robert DeSonia, MHPCC
    1010 *
    11  *  @version $Revision: 1.33 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2005-03-22 21:52:49 $
     11 *  @version $Revision: 1.34 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2005-04-07 20:27:41 $
    1313 *
    1414 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    105105
    106106    // set the new psImage's deallocator to the same as the input image
    107     p_psMemSetDeallocator(out,p_psMemGetDeallocator(image));
     107    psMemSetDeallocator(out,psMemGetDeallocator(image));
    108108
    109109    inputColOffset = elementSize * col0;
  • trunk/psLib/src/imageops/psImageConvolve.c

    r3191 r3682  
    55 *  @author Robert DeSonia, MHPCC
    66 *
    7  *  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
    8  *  @date $Date: 2005-02-11 20:27:34 $
     7 *  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
     8 *  @date $Date: 2005-04-07 20:27:41 $
    99 *
    1010 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    7575    result->kernel = kernelRows - yMin;
    7676
    77     p_psMemSetDeallocator(result,(psFreeFcn)freeKernel);
     77    psMemSetDeallocator(result,(psFreeFcn)freeKernel);
    7878
    7979    return result;
  • trunk/psLib/src/math/psPolynomial.c

    r3671 r3682  
    77 *  polynomials.  It also contains a Gaussian functions.
    88 *
    9  *  @version $Revision: 1.95 $ $Name: not supported by cvs2svn $
    10  *  @date $Date: 2005-04-06 01:12:58 $
     9 *  @version $Revision: 1.96 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2005-04-07 20:27:41 $
    1111 *
    1212 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    10481048
    10491049    newPoly = (psPolynomial1D* ) psAlloc(sizeof(psPolynomial1D));
    1050     p_psMemSetDeallocator(newPoly, (psFreeFcn) polynomial1DFree);
     1050    psMemSetDeallocator(newPoly, (psFreeFcn) polynomial1DFree);
    10511051
    10521052    newPoly->type = type;
     
    10751075
    10761076    newPoly = (psPolynomial2D* ) psAlloc(sizeof(psPolynomial2D));
    1077     p_psMemSetDeallocator(newPoly, (psFreeFcn) polynomial2DFree);
     1077    psMemSetDeallocator(newPoly, (psFreeFcn) polynomial2DFree);
    10781078
    10791079    newPoly->type = type;
     
    11131113
    11141114    newPoly = (psPolynomial3D* ) psAlloc(sizeof(psPolynomial3D));
    1115     p_psMemSetDeallocator(newPoly, (psFreeFcn) polynomial3DFree);
     1115    psMemSetDeallocator(newPoly, (psFreeFcn) polynomial3DFree);
    11161116
    11171117    newPoly->type = type;
     
    11611161
    11621162    newPoly = (psPolynomial4D* ) psAlloc(sizeof(psPolynomial4D));
    1163     p_psMemSetDeallocator(newPoly, (psFreeFcn) polynomial4DFree);
     1163    psMemSetDeallocator(newPoly, (psFreeFcn) polynomial4DFree);
    11641164
    11651165    newPoly->type = type;
     
    14101410
    14111411    newPoly = (psDPolynomial1D* ) psAlloc(sizeof(psDPolynomial1D));
    1412     p_psMemSetDeallocator(newPoly, (psFreeFcn) dPolynomial1DFree);
     1412    psMemSetDeallocator(newPoly, (psFreeFcn) dPolynomial1DFree);
    14131413
    14141414    newPoly->type = type;
     
    14371437
    14381438    newPoly = (psDPolynomial2D* ) psAlloc(sizeof(psDPolynomial2D));
    1439     p_psMemSetDeallocator(newPoly, (psFreeFcn) dPolynomial2DFree);
     1439    psMemSetDeallocator(newPoly, (psFreeFcn) dPolynomial2DFree);
    14401440
    14411441    newPoly->type = type;
     
    14751475
    14761476    newPoly = (psDPolynomial3D* ) psAlloc(sizeof(psDPolynomial3D));
    1477     p_psMemSetDeallocator(newPoly, (psFreeFcn) dPolynomial3DFree);
     1477    psMemSetDeallocator(newPoly, (psFreeFcn) dPolynomial3DFree);
    14781478
    14791479    newPoly->type = type;
     
    15231523
    15241524    newPoly = (psDPolynomial4D* ) psAlloc(sizeof(psDPolynomial4D));
    1525     p_psMemSetDeallocator(newPoly, (psFreeFcn) dPolynomial4DFree);
     1525    psMemSetDeallocator(newPoly, (psFreeFcn) dPolynomial4DFree);
    15261526
    15271527    newPoly->type = type;
     
    18291829    tmp->knots->data.F32[numSplines] = max;
    18301830
    1831     p_psMemSetDeallocator(tmp,(psFreeFcn)spline1DFree);
     1831    psMemSetDeallocator(tmp,(psFreeFcn)spline1DFree);
    18321832    return(tmp);
    18331833}
     
    18721872    }
    18731873
    1874     p_psMemSetDeallocator(tmp,(psFreeFcn)spline1DFree);
     1874    psMemSetDeallocator(tmp,(psFreeFcn)spline1DFree);
    18751875    return(tmp);
    18761876}
  • trunk/psLib/src/math/psSpline.c

    r3671 r3682  
    77 *  polynomials.  It also contains a Gaussian functions.
    88 *
    9  *  @version $Revision: 1.95 $ $Name: not supported by cvs2svn $
    10  *  @date $Date: 2005-04-06 01:12:58 $
     9 *  @version $Revision: 1.96 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2005-04-07 20:27:41 $
    1111 *
    1212 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    10481048
    10491049    newPoly = (psPolynomial1D* ) psAlloc(sizeof(psPolynomial1D));
    1050     p_psMemSetDeallocator(newPoly, (psFreeFcn) polynomial1DFree);
     1050    psMemSetDeallocator(newPoly, (psFreeFcn) polynomial1DFree);
    10511051
    10521052    newPoly->type = type;
     
    10751075
    10761076    newPoly = (psPolynomial2D* ) psAlloc(sizeof(psPolynomial2D));
    1077     p_psMemSetDeallocator(newPoly, (psFreeFcn) polynomial2DFree);
     1077    psMemSetDeallocator(newPoly, (psFreeFcn) polynomial2DFree);
    10781078
    10791079    newPoly->type = type;
     
    11131113
    11141114    newPoly = (psPolynomial3D* ) psAlloc(sizeof(psPolynomial3D));
    1115     p_psMemSetDeallocator(newPoly, (psFreeFcn) polynomial3DFree);
     1115    psMemSetDeallocator(newPoly, (psFreeFcn) polynomial3DFree);
    11161116
    11171117    newPoly->type = type;
     
    11611161
    11621162    newPoly = (psPolynomial4D* ) psAlloc(sizeof(psPolynomial4D));
    1163     p_psMemSetDeallocator(newPoly, (psFreeFcn) polynomial4DFree);
     1163    psMemSetDeallocator(newPoly, (psFreeFcn) polynomial4DFree);
    11641164
    11651165    newPoly->type = type;
     
    14101410
    14111411    newPoly = (psDPolynomial1D* ) psAlloc(sizeof(psDPolynomial1D));
    1412     p_psMemSetDeallocator(newPoly, (psFreeFcn) dPolynomial1DFree);
     1412    psMemSetDeallocator(newPoly, (psFreeFcn) dPolynomial1DFree);
    14131413
    14141414    newPoly->type = type;
     
    14371437
    14381438    newPoly = (psDPolynomial2D* ) psAlloc(sizeof(psDPolynomial2D));
    1439     p_psMemSetDeallocator(newPoly, (psFreeFcn) dPolynomial2DFree);
     1439    psMemSetDeallocator(newPoly, (psFreeFcn) dPolynomial2DFree);
    14401440
    14411441    newPoly->type = type;
     
    14751475
    14761476    newPoly = (psDPolynomial3D* ) psAlloc(sizeof(psDPolynomial3D));
    1477     p_psMemSetDeallocator(newPoly, (psFreeFcn) dPolynomial3DFree);
     1477    psMemSetDeallocator(newPoly, (psFreeFcn) dPolynomial3DFree);
    14781478
    14791479    newPoly->type = type;
     
    15231523
    15241524    newPoly = (psDPolynomial4D* ) psAlloc(sizeof(psDPolynomial4D));
    1525     p_psMemSetDeallocator(newPoly, (psFreeFcn) dPolynomial4DFree);
     1525    psMemSetDeallocator(newPoly, (psFreeFcn) dPolynomial4DFree);
    15261526
    15271527    newPoly->type = type;
     
    18291829    tmp->knots->data.F32[numSplines] = max;
    18301830
    1831     p_psMemSetDeallocator(tmp,(psFreeFcn)spline1DFree);
     1831    psMemSetDeallocator(tmp,(psFreeFcn)spline1DFree);
    18321832    return(tmp);
    18331833}
     
    18721872    }
    18731873
    1874     p_psMemSetDeallocator(tmp,(psFreeFcn)spline1DFree);
     1874    psMemSetDeallocator(tmp,(psFreeFcn)spline1DFree);
    18751875    return(tmp);
    18761876}
  • trunk/psLib/src/math/psStats.c

    r3551 r3682  
    99 *  @author GLG, MHPCC
    1010 *
    11  *  @version $Revision: 1.124 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2005-03-29 22:51:24 $
     11 *  @version $Revision: 1.125 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2005-04-07 20:27:41 $
    1313 *
    1414 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    18331833    // bins, then there are N+1 bounds to those bins.
    18341834    newHist = (psHistogram* ) psAlloc(sizeof(psHistogram));
    1835     p_psMemSetDeallocator(newHist, (psFreeFcn) histogramFree);
     1835    psMemSetDeallocator(newHist, (psFreeFcn) histogramFree);
    18361836    newHist->bounds = psVectorAlloc(n + 1, PS_TYPE_F32);
    18371837    newHist->bounds->n = newHist->bounds->nalloc;
     
    18801880    // Allocate memory for the new histogram structure.
    18811881    newHist = (psHistogram* ) psAlloc(sizeof(psHistogram));
    1882     p_psMemSetDeallocator(newHist, (psFreeFcn) histogramFree);
     1882    psMemSetDeallocator(newHist, (psFreeFcn) histogramFree);
    18831883    newHist->bounds = psVectorAlloc(bounds->n, PS_TYPE_F32);
    18841884    newHist->bounds->n = newHist->bounds->nalloc;
  • trunk/psLib/src/mathtypes/psImage.c

    r3671 r3682  
    99 *  @author Ross Harman, MHPCC
    1010 *
    11  *  @version $Revision: 1.62 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2005-04-06 01:12:58 $
     11 *  @version $Revision: 1.63 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2005-04-07 20:27:41 $
    1313 *
    1414 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    6767    psImage* image = (psImage* ) psAlloc(sizeof(psImage));
    6868
    69     p_psMemSetDeallocator(image, (psFreeFcn) imageFree);
     69    psMemSetDeallocator(image, (psFreeFcn) imageFree);
    7070
    7171    image->data.V = psAlloc(sizeof(psPtr ) * numRows);
  • trunk/psLib/src/mathtypes/psVector.c

    r3476 r3682  
    99*  @author Robert DeSonia, MHPCC
    1010*
    11 *  @version $Revision: 1.36 $ $Name: not supported by cvs2svn $
    12 *  @date $Date: 2005-03-22 21:52:49 $
     11*  @version $Revision: 1.37 $ $Name: not supported by cvs2svn $
     12*  @date $Date: 2005-04-07 20:27:41 $
    1313*
    1414*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    5151    // Create vector struct
    5252    psVec = (psVector* ) psAlloc(sizeof(psVector));
    53     p_psMemSetDeallocator(psVec, (psFreeFcn) vectorFree);
     53    psMemSetDeallocator(psVec, (psFreeFcn) vectorFree);
    5454
    5555    psVec->type.dimen = PS_DIMEN_VECTOR;
  • trunk/psLib/src/pslib.h

    r3598 r3682  
    1 
    21/** @file  pslib.h
    32*
     
    98*  @author Eric Van Alst, MHPCC
    109*
    11 *  @version $Revision: 1.34 $ $Name: not supported by cvs2svn $
    12 *  @date $Date: 2005-03-31 23:01:46 $
     10*  @version $Revision: 1.35 $ $Name: not supported by cvs2svn $
     11*  @date $Date: 2005-04-07 20:27:41 $
    1312*
    1413*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    1817#define PS_LIB_H
    1918
    20 /******************************************************************************/
    21 
    22 /*  INCLUDE FILES                                                             */
    23 
    24 /******************************************************************************/
    25 
    26 // // System Utilities
    27 
    28 /// @defgroup SysUtils System Utilities
    29 /// @{
    30 
    31 /** @defgroup MemoryManagement Memory Management Utilities
    32  *
    33  *  This is the generic memory management system put inbetween the user's high level code and the OS-level
    34  *  memory allocation routines.  This system adds such features as callback routines for memory error events,
    35  *  tracing capabilities, and reference counting.
    36  *
    37  *  @ingroup SysUtils
    38  */
    39 
    40 #include "fitsio.h"
    41 
    42 #include "psMemory.h"
    43 
    44 /// @defgroup LogTrace Tracing and Logging
    45 /// @ingroup SysUtils
    46 #include "psLogMsg.h"
    47 #include "psTrace.h"
    48 
    49 /// @defgroup ErrorHandling Error Handling
    50 /// @ingroup SysUtils
    51 #include "psAbort.h"
    52 #include "psError.h"
    53 
    54 #include "psString.h"
    55 
    56 /// @defgroup Configure Configure psLib
    57 /// @ingroup SysUtils
    58 #include "psConfigure.h"
    59 
    60 /// @}
    61 
    62 // Collections
    63 /// @defgroup DataContainer Data Containers
    64 /// @{
    65 
    66 #include "psType.h"
    67 
    68 /// @defgroup LinkedList Linked List
    69 /// @ingroup DataContainer
    70 #include "psList.h"
    71 
    72 /// @defgroup HashTable Hash Table
    73 /// @ingroup DataContainer
    74 #include "psHash.h"
    75 
    76 /// @defgroup Scalar Scalar
    77 /// @ingroup DataContainer
    78 #include "psScalar.h"
    79 
    80 /// @defgroup Vector Vector Container
    81 /// @ingroup DataContainer
    82 #include "psVector.h"
    83 
    84 /// @defgroup Array Array Container
    85 /// @ingroup DataContainer
    86 #include "psArray.h"
    87 
    88 /// @defgroup Image Image Container
    89 /// @ingroup DataContainer
    90 /// @{
    91 #include "psImage.h"
    92 #include "psImageExtraction.h"
    93 #include "psImageManip.h"
    94 #include "psImageConvolve.h"
    95 
    96 /// @defgroup ImageIO Image File I/O Functions
    97 /// @ingroup Image
    98 #include "psImageIO.h"
    99 
    100 /// @defgroup ImageStats Image Statistical Functions
    101 /// @ingroup Image
    102 #include "psImageStats.h"
    103 
    104 /// @}
    105 
    106 /// @defgroup BitSet Bit Set Container
    107 /// @ingroup DataContainer
    108 #include "psBitSet.h"
    109 
    110 /// @}
    111 
    112 // Data Manipulation
    113 /// @defgroup DataManip Data Manipulation
    114 /// @{
    115 
    116 /// @defgroup Compare Comparison Functions
    117 /// @ingroup DataManip
    118 #include "psCompare.h"
    119 
    120 /// @defgroup Stats Statistic Functions
    121 /// @ingroup DataManip
    122 #include "psStats.h"
    123 
    124 /// @defgroup Matrix Matrix Operations
    125 /// @ingroup DataManip
    126 #include "psMatrix.h"
    127 
    128 /// @defgroup MatrixArithmetic Matrix Arithmetic Operations
    129 /// @ingroup DataManip
    130 #include "psBinaryOp.h"
    131 #include "psUnaryOp.h"
    132 
    133 #include "psRandom.h"
    134 
    135 /// @defgroup Transform Fourier Transform Operations
    136 /// @ingroup DataManip
    137 #include "psVectorFFT.h"
    138 #include "psImageFFT.h"
    139 
    140 #include "psFunctions.h"
    141 #include "psMinimize.h"
    142 
    143 /// @}
    144 
    145 // Astronomy
    146 /// @defgroup Astronomy Astronomy Functions
    147 /// @{
    148 
    149 /// @defgroup CoordinateTransform Coordinate Functions
    150 /// @ingroup Astronomy
    151 #include "psCoord.h"
    152 
    153 /// @defgroup Photometry Photometry
    154 /// @ingroup Astronomy
    155 #include "psPhotometry.h"
    156 
    157 /// @defgroup Time Time Functions
    158 /// @ingroup Astronomy
    159 #include "psTime.h"
    160 
    161 /// @defgroup Metadata Metadata Functions
    162 /// @ingroup Astronomy
    163 #include "psMetadata.h"
    164 #include "psMetadataIO.h"
    165 
    166 /// @defgroup AstroImage Astrometry Functions
    167 /// @ingroup Astronomy
    168 #include "psAstrometry.h"
    169 #include "psConstants.h"
    170 #include "psDB.h"
    171 
    172 /// @}
    173 
    174 // FileUtils
    175 /// @defgroup FileUtils File Utilities
    176 /// @{
    177 #include "psFits.h"
    178 
    179 /// @defgroup LookupTable Lookup Table
    180 /// @ingroup FileUtils
    181 #include "psLookupTable.h"
    182 
    183 /// @}
     19#include "pslib_strict.h"
    18420
    18521#endif
  • trunk/psLib/src/sys/psError.c

    r3476 r3682  
    1010 *  @author Eric Van Alst, MHPCC
    1111 *
    12  *  @version $Revision: 1.23 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2005-03-22 21:52:49 $
     12 *  @version $Revision: 1.24 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2005-04-07 20:27:41 $
    1414 *
    1515 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    6262    err->code = code;
    6363
    64     p_psMemSetDeallocator(err,(psFreeFcn)errFree);
     64    psMemSetDeallocator(err,(psFreeFcn)errFree);
    6565
    6666    return err;
  • trunk/psLib/src/sys/psErrorCodes.c

    r3264 r3682  
    77 *  @author Robert DeSonia, MHPCC
    88 *
    9  *  @version $Revision: 1.16 $ $Name: not supported by cvs2svn $
    10  *  @date $Date: 2005-02-17 19:26:24 $
     9 *  @version $Revision: 1.17 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2005-04-07 20:27:41 $
    1111 *
    1212 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    105105    }
    106106
    107     p_psMemSetDeallocator(err,(psFreeFcn)freeErrorDescription);
     107    psMemSetDeallocator(err,(psFreeFcn)freeErrorDescription);
    108108    return err;
    109109}
  • trunk/psLib/src/sys/psMemory.c

    r3585 r3682  
    88*  @author Robert Lupton, Princeton University
    99*
    10 *  @version $Revision: 1.49 $ $Name: not supported by cvs2svn $
    11 *  @date $Date: 2005-03-31 02:32:20 $
     10*  @version $Revision: 1.50 $ $Name: not supported by cvs2svn $
     11*  @date $Date: 2005-04-07 20:27:41 $
    1212*
    1313*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    641641}
    642642
    643 void p_psMemSetDeallocator(psPtr vptr, psFreeFcn freeFcn)
     643void psMemSetDeallocator(psPtr vptr, psFreeFcn freeFcn)
    644644{
    645645    if (vptr == NULL) {
     
    656656
    657657}
    658 psFreeFcn p_psMemGetDeallocator(psPtr vptr)
     658psFreeFcn psMemGetDeallocator(psPtr vptr)
    659659{
    660660    if (vptr == NULL) {
  • trunk/psLib/src/sys/psMemory.h

    r3264 r3682  
    1212 *  @ingroup MemoryManagement
    1313 *
    14  *  @version $Revision: 1.35 $ $Name: not supported by cvs2svn $
    15  *  @date $Date: 2005-02-17 19:26:24 $
     14 *  @version $Revision: 1.36 $ $Name: not supported by cvs2svn $
     15 *  @date $Date: 2005-04-07 20:27:41 $
    1616 *
    1717 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    150150 *
    151151 */
    152 void p_psMemSetDeallocator(
     152void psMemSetDeallocator(
    153153    psPtr ptr,                         ///< the memory block to operate on
    154154    psFreeFcn freeFcn                  ///< the function to be executed at deallocation
     
    164164 *  @return psFreeFcn    the routine to be called at deallocation.
    165165 */
    166 psFreeFcn p_psMemGetDeallocator(
     166psFreeFcn psMemGetDeallocator(
    167167    psPtr ptr                          ///< the memory block
    168168);
  • trunk/psLib/src/sys/psTrace.c

    r3541 r3682  
    99 *  @author GLG, MHPCC
    1010 *
    11  *  @version $Revision: 1.44 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2005-03-29 21:31:54 $
     11 *  @version $Revision: 1.45 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2005-04-07 20:27:41 $
    1313 *
    1414 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    6767
    6868    p_psMemSetPersistent(comp,true);
    69     p_psMemSetDeallocator(comp, (psFreeFcn) componentFree);
     69    psMemSetDeallocator(comp, (psFreeFcn) componentFree);
    7070    comp->name = psStringCopy(name);
    7171    p_psMemSetPersistent((psPtr)comp->name,true);
  • trunk/psLib/src/sysUtils/psError.c

    r3476 r3682  
    1010 *  @author Eric Van Alst, MHPCC
    1111 *
    12  *  @version $Revision: 1.23 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2005-03-22 21:52:49 $
     12 *  @version $Revision: 1.24 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2005-04-07 20:27:41 $
    1414 *
    1515 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    6262    err->code = code;
    6363
    64     p_psMemSetDeallocator(err,(psFreeFcn)errFree);
     64    psMemSetDeallocator(err,(psFreeFcn)errFree);
    6565
    6666    return err;
  • trunk/psLib/src/sysUtils/psErrorCodes.c

    r3264 r3682  
    77 *  @author Robert DeSonia, MHPCC
    88 *
    9  *  @version $Revision: 1.16 $ $Name: not supported by cvs2svn $
    10  *  @date $Date: 2005-02-17 19:26:24 $
     9 *  @version $Revision: 1.17 $ $Name: not supported by cvs2svn $
     10 *  @date $Date: 2005-04-07 20:27:41 $
    1111 *
    1212 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    105105    }
    106106
    107     p_psMemSetDeallocator(err,(psFreeFcn)freeErrorDescription);
     107    psMemSetDeallocator(err,(psFreeFcn)freeErrorDescription);
    108108    return err;
    109109}
  • trunk/psLib/src/sysUtils/psMemory.c

    r3585 r3682  
    88*  @author Robert Lupton, Princeton University
    99*
    10 *  @version $Revision: 1.49 $ $Name: not supported by cvs2svn $
    11 *  @date $Date: 2005-03-31 02:32:20 $
     10*  @version $Revision: 1.50 $ $Name: not supported by cvs2svn $
     11*  @date $Date: 2005-04-07 20:27:41 $
    1212*
    1313*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    641641}
    642642
    643 void p_psMemSetDeallocator(psPtr vptr, psFreeFcn freeFcn)
     643void psMemSetDeallocator(psPtr vptr, psFreeFcn freeFcn)
    644644{
    645645    if (vptr == NULL) {
     
    656656
    657657}
    658 psFreeFcn p_psMemGetDeallocator(psPtr vptr)
     658psFreeFcn psMemGetDeallocator(psPtr vptr)
    659659{
    660660    if (vptr == NULL) {
  • trunk/psLib/src/sysUtils/psMemory.h

    r3264 r3682  
    1212 *  @ingroup MemoryManagement
    1313 *
    14  *  @version $Revision: 1.35 $ $Name: not supported by cvs2svn $
    15  *  @date $Date: 2005-02-17 19:26:24 $
     14 *  @version $Revision: 1.36 $ $Name: not supported by cvs2svn $
     15 *  @date $Date: 2005-04-07 20:27:41 $
    1616 *
    1717 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    150150 *
    151151 */
    152 void p_psMemSetDeallocator(
     152void psMemSetDeallocator(
    153153    psPtr ptr,                         ///< the memory block to operate on
    154154    psFreeFcn freeFcn                  ///< the function to be executed at deallocation
     
    164164 *  @return psFreeFcn    the routine to be called at deallocation.
    165165 */
    166 psFreeFcn p_psMemGetDeallocator(
     166psFreeFcn psMemGetDeallocator(
    167167    psPtr ptr                          ///< the memory block
    168168);
  • trunk/psLib/src/sysUtils/psTrace.c

    r3541 r3682  
    99 *  @author GLG, MHPCC
    1010 *
    11  *  @version $Revision: 1.44 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2005-03-29 21:31:54 $
     11 *  @version $Revision: 1.45 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2005-04-07 20:27:41 $
    1313 *
    1414 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    6767
    6868    p_psMemSetPersistent(comp,true);
    69     p_psMemSetDeallocator(comp, (psFreeFcn) componentFree);
     69    psMemSetDeallocator(comp, (psFreeFcn) componentFree);
    7070    comp->name = psStringCopy(name);
    7171    p_psMemSetPersistent((psPtr)comp->name,true);
  • trunk/psLib/src/types/psArray.c

    r3286 r3682  
    99 *  @author Ross Harman, MHPCC
    1010 *
    11  *  @version $Revision: 1.26 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2005-02-18 22:17:20 $
     11 *  @version $Revision: 1.27 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2005-04-07 20:27:41 $
    1313 *
    1414 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    5555    // Create vector struct
    5656    psArr = (psArray* ) psAlloc(sizeof(psArray));
    57     p_psMemSetDeallocator(psArr, (psFreeFcn) arrayFree);
     57    psMemSetDeallocator(psArr, (psFreeFcn) arrayFree);
    5858
    5959    psArr->nalloc = nalloc;
  • trunk/psLib/src/types/psBitSet.c

    r3298 r3682  
    1111 *  @author Robert DeSonia, MHPCC
    1212 *
    13  *  @version $Revision: 1.23 $ $Name: not supported by cvs2svn $
    14  *  @date $Date: 2005-02-22 19:25:52 $
     13 *  @version $Revision: 1.24 $ $Name: not supported by cvs2svn $
     14 *  @date $Date: 2005-04-07 20:27:41 $
    1515 *
    1616 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    8080    numBytes = ceil(n / 8.0);
    8181    newObj = psAlloc(sizeof(psBitSet));
    82     p_psMemSetDeallocator(newObj, (psFreeFcn) bitSetFree);
     82    psMemSetDeallocator(newObj, (psFreeFcn) bitSetFree);
    8383    newObj->n = numBytes;
    8484
  • trunk/psLib/src/types/psHash.c

    r3286 r3682  
    1212*  @author Robert DeSonia, MHPCC
    1313*
    14 *  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
    15 *  @date $Date: 2005-02-18 22:17:20 $
     14*  @version $Revision: 1.14 $ $Name: not supported by cvs2svn $
     15*  @date $Date: 2005-04-07 20:27:41 $
    1616*
    1717*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    9090    psHashBucket* bucket = psAlloc(sizeof(psHashBucket));
    9191
    92     p_psMemSetDeallocator(bucket, (psFreeFcn) hashBucketFree);
     92    psMemSetDeallocator(bucket, (psFreeFcn) hashBucketFree);
    9393
    9494    // Initialize the bucket.
     
    141141    psHash* table = psAlloc(sizeof(psHash));
    142142
    143     p_psMemSetDeallocator(table, (psFreeFcn) hashFree);
     143    psMemSetDeallocator(table, (psFreeFcn) hashFree);
    144144
    145145    // Allocate memory for the buckets.
  • trunk/psLib/src/types/psList.c

    r3264 r3682  
    66 *  @author Robert Daniel DeSonia, MHPCC
    77 *
    8  *  @version $Revision: 1.34 $ $Name: not supported by cvs2svn $
    9  *  @date $Date: 2005-02-17 19:26:23 $
     8 *  @version $Revision: 1.35 $ $Name: not supported by cvs2svn $
     9 *  @date $Date: 2005-04-07 20:27:41 $
    1010 *
    1111 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    4545    psArray* iterators = list->iterators;
    4646    for (int i = 0; i < iterators->n; i++) {
    47         p_psMemSetDeallocator(iterators->data[i], NULL);
     47        psMemSetDeallocator(iterators->data[i], NULL);
    4848    }
    4949
     
    129129    psList* list = psAlloc(sizeof(psList));
    130130
    131     p_psMemSetDeallocator(list, (psFreeFcn) listFree);
     131    psMemSetDeallocator(list, (psFreeFcn) listFree);
    132132
    133133    list->size = 0;
     
    153153    psListIterator* iter = psAlloc(sizeof(psListIterator));
    154154
    155     p_psMemSetDeallocator(iter, (psFreeFcn) listIteratorFree);
     155    psMemSetDeallocator(iter, (psFreeFcn) listIteratorFree);
    156156
    157157    // initialize the attributes
  • trunk/psLib/src/types/psLookupTable.c

    r3586 r3682  
    77*  @author Ross Harman, MHPCC
    88*
    9 *  @version $Revision: 1.11 $ $Name: not supported by cvs2svn $
    10 *  @date $Date: 2005-03-31 02:33:17 $
     9*  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
     10*  @date $Date: 2005-04-07 20:27:41 $
    1111*
    1212*  Copyright 2004-5 Maui High Performance Computing Center, University of Hawaii
     
    421421
    422422    // Set deallocator
    423     p_psMemSetDeallocator(outTable, (psFreeFcn)lookupTableFree);
     423    psMemSetDeallocator(outTable, (psFreeFcn)lookupTableFree);
    424424
    425425    // Allocate and set metadata item comment
  • trunk/psLib/src/types/psMetadata.c

    r3541 r3682  
    1212*  @author Ross Harman, MHPCC
    1313*
    14 *  @version $Revision: 1.57 $ $Name: not supported by cvs2svn $
    15 *  @date $Date: 2005-03-29 21:31:54 $
     14*  @version $Revision: 1.58 $ $Name: not supported by cvs2svn $
     15*  @date $Date: 2005-04-07 20:27:41 $
    1616*
    1717*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    183183
    184184    // Set deallocator
    185     p_psMemSetDeallocator(metadataItem, (psFreeFcn) metadataItemFree);
     185    psMemSetDeallocator(metadataItem, (psFreeFcn) metadataItemFree);
    186186
    187187    // Allocate and set metadata item comment
     
    252252    metadata = (psMetadata*) psAlloc(sizeof(psMetadata));
    253253    // Set deallocator
    254     p_psMemSetDeallocator(metadata, (psFreeFcn) metadataFree);
     254    psMemSetDeallocator(metadata, (psFreeFcn) metadataFree);
    255255
    256256    // Allocate metadata's internal containers
     
    598598
    599599    // Set deallocator
    600     p_psMemSetDeallocator(newIter, (psFreeFcn) metadataIteratorFree);
     600    psMemSetDeallocator(newIter, (psFreeFcn) metadataIteratorFree);
    601601
    602602    if (regex == NULL) {
  • trunk/psLib/swig/Makefile.am

    r3601 r3682  
    4848
    4949install-exec-hook: swig-install
    50 
    51 uninstall-local: psLibModule/Makefile
    52         cd psLibModule && make uninstall && make clean
  • trunk/psLib/test/astronomy/builddir/tst_psMetadata_01.d

    r1391 r3682  
    1 builddir/tst_psMetadata_01.o: tst_psMetadata_01.c ../../include/pslib.h \
     1builddir/tst_psMetadata_01.o: tst_psMetadata_01.c ../../include/pslib_strict.h \
    22  ../../include/psMemory.h ../../include/psLogMsg.h \
    33  ../../include/psTrace.h ../../include/psAbort.h ../../include/psError.h \
  • trunk/psLib/test/astronomy/builddir/tst_psMetadata_02.d

    r1402 r3682  
    1 builddir/tst_psMetadata_02.o: tst_psMetadata_02.c ../../include/pslib.h \
     1builddir/tst_psMetadata_02.o: tst_psMetadata_02.c ../../include/pslib_strict.h \
    22  ../../include/psMemory.h ../../include/psLogMsg.h \
    33  ../../include/psTrace.h ../../include/psAbort.h ../../include/psError.h \
  • trunk/psLib/test/astronomy/builddir/tst_psMetadata_03.d

    r1412 r3682  
    1 builddir/tst_psMetadata_03.o: tst_psMetadata_03.c ../../include/pslib.h \
     1builddir/tst_psMetadata_03.o: tst_psMetadata_03.c ../../include/pslib_strict.h \
    22  ../../include/psMemory.h ../../include/psLogMsg.h \
    33  ../../include/psTrace.h ../../include/psAbort.h ../../include/psError.h \
  • trunk/psLib/test/astronomy/builddir/tst_psMetadata_04.d

    r1428 r3682  
    1 builddir/tst_psMetadata_04.o: tst_psMetadata_04.c ../../include/pslib.h \
     1builddir/tst_psMetadata_04.o: tst_psMetadata_04.c ../../include/pslib_strict.h \
    22  ../../include/psMemory.h ../../include/psLogMsg.h \
    33  ../../include/psTrace.h ../../include/psAbort.h ../../include/psError.h \
  • trunk/psLib/test/astronomy/builddir/tst_psMetadata_05.d

    r1444 r3682  
    1 builddir/tst_psMetadata_05.o: tst_psMetadata_05.c ../../include/pslib.h \
     1builddir/tst_psMetadata_05.o: tst_psMetadata_05.c ../../include/pslib_strict.h \
    22  ../../include/psMemory.h ../../include/psLogMsg.h \
    33  ../../include/psTrace.h ../../include/psAbort.h ../../include/psError.h \
  • trunk/psLib/test/astronomy/builddir/tst_psMetadata_06.d

    r1457 r3682  
    1 builddir/tst_psMetadata_06.o: tst_psMetadata_06.c ../../include/pslib.h \
     1builddir/tst_psMetadata_06.o: tst_psMetadata_06.c ../../include/pslib_strict.h \
    22  ../../include/psMemory.h ../../include/psLogMsg.h \
    33  ../../include/psTrace.h ../../include/psAbort.h ../../include/psError.h \
  • trunk/psLib/test/astronomy/builddir/tst_psTime_01.d

    r1434 r3682  
    1 builddir/tst_psTime_01.o: tst_psTime_01.c ../../include/pslib.h \
     1builddir/tst_psTime_01.o: tst_psTime_01.c ../../include/pslib_strict.h \
    22  ../../include/psMemory.h ../../include/psLogMsg.h \
    33  ../../include/psTrace.h ../../include/psAbort.h ../../include/psError.h \
  • trunk/psLib/test/astronomy/builddir/tst_psTime_02.d

    r1434 r3682  
    1 builddir/tst_psTime_02.o: tst_psTime_02.c ../../include/pslib.h \
     1builddir/tst_psTime_02.o: tst_psTime_02.c ../../include/pslib_strict.h \
    22  ../../include/psMemory.h ../../include/psLogMsg.h \
    33  ../../include/psTrace.h ../../include/psAbort.h ../../include/psError.h \
  • trunk/psLib/test/astronomy/tst_psAstrometry.c

    r3341 r3682  
    55 *  @author Robert DeSonia, MHPCC
    66 *
    7  *  @version $Revision: 1.16 $ $Name: not supported by cvs2svn $
    8  *  @date $Date: 2005-02-28 23:34:10 $
     7 *  @version $Revision: 1.17 $ $Name: not supported by cvs2svn $
     8 *  @date $Date: 2005-04-07 20:27:41 $
    99 *
    1010 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    1717
    1818#include "psTest.h"
    19 #include "pslib.h"
     19#include "pslib_strict.h"
    2020
    2121static psS32 testExposureAlloc(void);
     
    4040    psLogSetLevel(PS_LOG_INFO);
    4141
    42     return ! runTestSuite(stderr,"psImage",tests,argc,argv);
     42    return ! runTestSuite(stderr,"psAstrometry",tests,argc,argv);
    4343}
    4444
  • trunk/psLib/test/astronomy/tst_psAstrometry01.c

    r3638 r3682  
    55*  @author GLG, MHPCC
    66*
    7 *  @version $Revision: 1.17 $ $Name: not supported by cvs2svn $
    8 *  @date $Date: 2005-04-01 22:22:17 $
     7*  @version $Revision: 1.18 $ $Name: not supported by cvs2svn $
     8*  @date $Date: 2005-04-07 20:27:41 $
    99*
    1010* XXX: Must test
     
    2323
    2424#include "psTest.h"
    25 #include "pslib.h"
     25#include "pslib_strict.h"
    2626
    2727static psS32 test1( void );
  • trunk/psLib/test/astronomy/tst_psCoord.c

    r3471 r3682  
    66*  @author GLG, MHPCC
    77*
    8 *  @version $Revision: 1.27 $ $Name: not supported by cvs2svn $
    9 *  @date $Date: 2005-03-22 01:36:47 $
     8*  @version $Revision: 1.28 $ $Name: not supported by cvs2svn $
     9*  @date $Date: 2005-04-07 20:27:41 $
    1010*
    1111*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    1313
    1414#include "psTest.h"
    15 #include "pslib.h"
     15#include "pslib_strict.h"
    1616static psS32 testSphereTransformAlloc(void);
    1717static psS32 testPlaneTransformAlloc(void);
  • trunk/psLib/test/astronomy/tst_psCoord01.c

    r3472 r3682  
    66*    @author Eric Van Alst, MHPCC
    77*
    8 *    @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
    9 *    @date  $Date: 2005-03-22 01:37:31 $
     8*    @version $Revision: 1.4 $ $Name: not supported by cvs2svn $
     9*    @date  $Date: 2005-04-07 20:27:41 $
    1010*
    1111*    Copyright 2005 Maui High Performance Computing Center, Univ. of Hawaii
    1212*/
    1313
    14 #include "pslib.h"
     14#include "pslib_strict.h"
    1515#include "psTest.h"
    1616
  • trunk/psLib/test/astronomy/tst_psDB.c

    r3598 r3682  
    99 *  @author Aaron Culliney, MHPCC
    1010 *
    11  *  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2005-03-31 23:01:46 $
     11 *  @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2005-04-07 20:27:41 $
    1313 *
    1414 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    2525
    2626#include "psTest.h"
    27 #include "pslib.h"
     27#include "pslib_strict.h"
    2828
    2929#define STR_1 "hello world!"
  • trunk/psLib/test/astronomy/tst_psMetadataIO.c

    r3407 r3682  
    1414 *  @author  Robert DeSonia, MHPCC
    1515 *
    16  *  @version $Revision: 1.12 $  $Name: not supported by cvs2svn $
    17  *  @date  $Date: 2005-03-11 20:38:56 $
     16 *  @version $Revision: 1.13 $  $Name: not supported by cvs2svn $
     17 *  @date  $Date: 2005-04-07 20:27:41 $
    1818 *
    1919 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    2222
    2323#include <string.h>
    24 #include "pslib.h"
     24#include "pslib_strict.h"
    2525#include "psTest.h"
    2626
  • trunk/psLib/test/astronomy/tst_psMetadata_01.c

    r3407 r3682  
    1818*  @author  Ross Harman, MHPCC
    1919*
    20 *  @version $Revision: 1.23 $  $Name: not supported by cvs2svn $
    21 *  @date  $Date: 2005-03-11 20:38:56 $
     20*  @version $Revision: 1.24 $  $Name: not supported by cvs2svn $
     21*  @date  $Date: 2005-04-07 20:27:41 $
    2222*
    2323*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    2626
    2727#include <string.h>
    28 #include "pslib.h"
     28#include "pslib_strict.h"
    2929#include "psTest.h"
    3030
  • trunk/psLib/test/astronomy/tst_psMetadata_02.c

    r3407 r3682  
    1515 *  @author  Robert DeSonia, MHPCC
    1616 *
    17  *  @version $Revision: 1.14 $  $Name: not supported by cvs2svn $
    18  *  @date  $Date: 2005-03-11 20:38:56 $
     17 *  @version $Revision: 1.15 $  $Name: not supported by cvs2svn $
     18 *  @date  $Date: 2005-04-07 20:27:41 $
    1919 *
    2020 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    2323
    2424#include <string.h>
    25 #include "pslib.h"
     25#include "pslib_strict.h"
    2626#include "psTest.h"
    2727
  • trunk/psLib/test/astronomy/tst_psMetadata_03.c

    r3407 r3682  
    1818*  @author  Ross Harman, MHPCC
    1919*
    20 *  @version $Revision: 1.16 $  $Name: not supported by cvs2svn $
    21 *  @date  $Date: 2005-03-11 20:38:56 $
     20*  @version $Revision: 1.17 $  $Name: not supported by cvs2svn $
     21*  @date  $Date: 2005-04-07 20:27:41 $
    2222*
    2323*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    2626
    2727#include <string.h>
    28 #include "pslib.h"
     28#include "pslib_strict.h"
    2929#include "psTest.h"
    3030
  • trunk/psLib/test/astronomy/tst_psMetadata_04.c

    r3407 r3682  
    2323*  @author  Ross Harman, MHPCC
    2424*
    25 *  @version $Revision: 1.17 $  $Name: not supported by cvs2svn $
    26 *  @date  $Date: 2005-03-11 20:38:56 $
     25*  @version $Revision: 1.18 $  $Name: not supported by cvs2svn $
     26*  @date  $Date: 2005-04-07 20:27:41 $
    2727*
    2828*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    3131
    3232#include <string.h>
    33 #include "pslib.h"
     33#include "pslib_strict.h"
    3434#include "psTest.h"
    3535
  • trunk/psLib/test/astronomy/tst_psMetadata_05.c

    r3445 r3682  
    2222*  @author  Ross Harman, MHPCC
    2323*
    24 *  @version $Revision: 1.23 $  $Name: not supported by cvs2svn $
    25 *  @date  $Date: 2005-03-17 19:44:44 $
     24*  @version $Revision: 1.24 $  $Name: not supported by cvs2svn $
     25*  @date  $Date: 2005-04-07 20:27:41 $
    2626*
    2727*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    3030
    3131#include <string.h>
    32 #include "pslib.h"
     32#include "pslib_strict.h"
    3333#include "psTest.h"
    3434
  • trunk/psLib/test/astronomy/tst_psMetadata_06.c

    r3407 r3682  
    1313*  @author  Ross Harman, MHPCC
    1414*
    15 *  @version $Revision: 1.12 $  $Name: not supported by cvs2svn $
    16 *  @date  $Date: 2005-03-11 20:38:56 $
     15*  @version $Revision: 1.13 $  $Name: not supported by cvs2svn $
     16*  @date  $Date: 2005-04-07 20:27:41 $
    1717*
    1818*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    2121
    2222#include <string.h>
    23 #include "pslib.h"
     23#include "pslib_strict.h"
    2424#include "psTest.h"
    2525
  • trunk/psLib/test/astronomy/tst_psMetadata_07.c

    r3341 r3682  
    99*  @author  Ross Harman, MHPCC
    1010*
    11 *  @version $Revision: 1.9 $  $Name: not supported by cvs2svn $
    12 *  @date  $Date: 2005-02-28 23:34:10 $
     11*  @version $Revision: 1.10 $  $Name: not supported by cvs2svn $
     12*  @date  $Date: 2005-04-07 20:27:41 $
    1313*
    1414*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    1616*/
    1717#include "config.h"
    18 #include "pslib.h"
     18#include "pslib_strict.h"
    1919#include "psTest.h"
    2020
  • trunk/psLib/test/astronomy/tst_psTime_01.c

    r3264 r3682  
    2323 *  @author  Ross Harman, MHPCC
    2424 *
    25  *  @version $Revision: 1.20 $  $Name: not supported by cvs2svn $
    26  *  @date  $Date: 2005-02-17 19:26:24 $
     25 *  @version $Revision: 1.21 $  $Name: not supported by cvs2svn $
     26 *  @date  $Date: 2005-04-07 20:27:41 $
    2727 *
    2828 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    3131
    3232#include <string.h>
    33 #include "pslib.h"
     33#include "pslib_strict.h"
    3434#include "psTest.h"
    3535
  • trunk/psLib/test/astronomy/tst_psTime_02.c

    r3264 r3682  
    1010 *  @author  Ross Harman, MHPCC
    1111 *
    12  *  @version $Revision: 1.9 $  $Name: not supported by cvs2svn $
    13  *  @date  $Date: 2005-02-17 19:26:24 $
     12 *  @version $Revision: 1.10 $  $Name: not supported by cvs2svn $
     13 *  @date  $Date: 2005-04-07 20:27:41 $
    1414 *
    1515 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    1717 */
    1818
    19 #include "pslib.h"
     19#include "pslib_strict.h"
    2020#include "psTest.h"
    2121
  • trunk/psLib/test/astronomy/tst_psTime_03.c

    r3264 r3682  
    1919 *  @author  Ross Harman, MHPCC
    2020 *
    21  *  @version $Revision: 1.12 $  $Name: not supported by cvs2svn $
    22  *  @date  $Date: 2005-02-17 19:26:24 $
     21 *  @version $Revision: 1.13 $  $Name: not supported by cvs2svn $
     22 *  @date  $Date: 2005-04-07 20:27:41 $
    2323 *
    2424 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    2626 */
    2727
    28 #include "pslib.h"
     28#include "pslib_strict.h"
    2929#include "psTest.h"
    3030
  • trunk/psLib/test/astronomy/tst_psTime_04.c

    r3264 r3682  
    1414 *  @author  Ross Harman, MHPCC
    1515 *
    16  *  @version $Revision: 1.10 $  $Name: not supported by cvs2svn $
    17  *  @date  $Date: 2005-02-17 19:26:24 $
     16 *  @version $Revision: 1.11 $  $Name: not supported by cvs2svn $
     17 *  @date  $Date: 2005-04-07 20:27:41 $
    1818 *
    1919 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    2222#include "config.h"
    2323
    24 #include "pslib.h"
     24#include "pslib_strict.h"
    2525#include "psTest.h"
    2626
  • trunk/psLib/test/astronomy/verified/tst_psAstrometry.stderr

    r2063 r3682  
    11/***************************** TESTPOINT ******************************************\
    22*             TestFile: tst_psAstrometry.c                                         *
    3 *            TestPoint: psImage{psExposureAlloc}                                   *
     3*            TestPoint: psAstrometry{psExposureAlloc}                              *
    44*             TestType: Positive                                                   *
    55\**********************************************************************************/
    66
    77
    8 ---> TESTPOINT PASSED (psImage{psExposureAlloc} | tst_psAstrometry.c)
     8---> TESTPOINT PASSED (psAstrometry{psExposureAlloc} | tst_psAstrometry.c)
    99
    1010/***************************** TESTPOINT ******************************************\
    1111*             TestFile: tst_psAstrometry.c                                         *
    12 *            TestPoint: psImage{psObservatoryAlloc}                                *
     12*            TestPoint: psAstrometry{psObservatoryAlloc}                           *
    1313*             TestType: Positive                                                   *
    1414\**********************************************************************************/
    1515
    1616
    17 ---> TESTPOINT PASSED (psImage{psObservatoryAlloc} | tst_psAstrometry.c)
     17---> TESTPOINT PASSED (psAstrometry{psObservatoryAlloc} | tst_psAstrometry.c)
    1818
    1919/***************************** TESTPOINT ******************************************\
    2020*             TestFile: tst_psAstrometry.c                                         *
    21 *            TestPoint: psImage{psFPAAlloc}                                        *
     21*            TestPoint: psAstrometry{psFPAAlloc}                                   *
    2222*             TestType: Positive                                                   *
    2323\**********************************************************************************/
    2424
    2525
    26 ---> TESTPOINT PASSED (psImage{psFPAAlloc} | tst_psAstrometry.c)
     26---> TESTPOINT PASSED (psAstrometry{psFPAAlloc} | tst_psAstrometry.c)
    2727
    2828/***************************** TESTPOINT ******************************************\
    2929*             TestFile: tst_psAstrometry.c                                         *
    30 *            TestPoint: psImage{psChipAlloc}                                       *
     30*            TestPoint: psAstrometry{psChipAlloc}                                  *
    3131*             TestType: Positive                                                   *
    3232\**********************************************************************************/
    3333
    3434
    35 ---> TESTPOINT PASSED (psImage{psChipAlloc} | tst_psAstrometry.c)
     35---> TESTPOINT PASSED (psAstrometry{psChipAlloc} | tst_psAstrometry.c)
    3636
    3737/***************************** TESTPOINT ******************************************\
    3838*             TestFile: tst_psAstrometry.c                                         *
    39 *            TestPoint: psImage{psCellAlloc}                                       *
     39*            TestPoint: psAstrometry{psCellAlloc}                                  *
    4040*             TestType: Positive                                                   *
    4141\**********************************************************************************/
    4242
    4343
    44 ---> TESTPOINT PASSED (psImage{psCellAlloc} | tst_psAstrometry.c)
     44---> TESTPOINT PASSED (psAstrometry{psCellAlloc} | tst_psAstrometry.c)
    4545
    4646/***************************** TESTPOINT ******************************************\
    4747*             TestFile: tst_psAstrometry.c                                         *
    48 *            TestPoint: psImage{psReadoutAlloc}                                    *
     48*            TestPoint: psAstrometry{psReadoutAlloc}                               *
    4949*             TestType: Positive                                                   *
    5050\**********************************************************************************/
    5151
    5252
    53 ---> TESTPOINT PASSED (psImage{psReadoutAlloc} | tst_psAstrometry.c)
     53---> TESTPOINT PASSED (psAstrometry{psReadoutAlloc} | tst_psAstrometry.c)
    5454
  • trunk/psLib/test/collections/tst_psArray.c

    r3286 r3682  
    1717 *  @author  Ross Harman, MHPCC
    1818 *
    19  *  @version $Revision: 1.12 $  $Name: not supported by cvs2svn $
    20  *  @date  $Date: 2005-02-18 22:17:20 $
     19 *  @version $Revision: 1.13 $  $Name: not supported by cvs2svn $
     20 *  @date  $Date: 2005-04-07 20:27:41 $
    2121 *
    2222 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    2626#include <math.h>
    2727
    28 #include "pslib.h"
     28#include "pslib_strict.h"
    2929#include "psTest.h"
    3030
  • trunk/psLib/test/collections/tst_psBitSet.c

    r3289 r3682  
    1717 *  @author  Ross Harman, MHPCC
    1818 *
    19  *  @version $Revision: 1.7 $  $Name: not supported by cvs2svn $
    20  *  @date  $Date: 2005-02-18 22:46:50 $
     19 *  @version $Revision: 1.8 $  $Name: not supported by cvs2svn $
     20 *  @date  $Date: 2005-04-07 20:27:41 $
    2121 *
    2222 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    2424 */
    2525
    26 #include "pslib.h"
     26#include "pslib_strict.h"
    2727#include "psTest.h"
    2828
  • trunk/psLib/test/collections/tst_psHash00.c

    r2392 r3682  
    44 *****************************************************************************/
    55#include <stdio.h>
    6 #include "pslib.h"
     6#include "pslib_strict.h"
    77#include "psTest.h"
    88#include "psHash.h"
  • trunk/psLib/test/collections/tst_psHash01.c

    r2620 r3682  
    44#include <stdio.h>
    55#include <string.h>
    6 #include "pslib.h"
     6#include "pslib_strict.h"
    77#include "psTest.h"
    88#include "psHash.h"
  • trunk/psLib/test/collections/tst_psHash02.c

    r2622 r3682  
    88#include <stdio.h>
    99#include <string.h>
    10 #include "pslib.h"
     10#include "pslib_strict.h"
    1111#include "psTest.h"
    1212#include "psHash.h"
  • trunk/psLib/test/collections/tst_psHash03.c

    r2624 r3682  
    66#include <stdio.h>
    77#include <string.h>
    8 #include "pslib.h"
     8#include "pslib_strict.h"
    99#include "psTest.h"
    1010#include "psHash.h"
  • trunk/psLib/test/collections/tst_psHash04.c

    r2626 r3682  
    33 *****************************************************************************/
    44#include <stdio.h>
    5 #include "pslib.h"
     5#include "pslib_strict.h"
    66#include "psTest.h"
    77#include "psHash.h"
  • trunk/psLib/test/collections/tst_psHash05.c

    r3264 r3682  
    66*  @author Robert DeSonia, MHPCC
    77*
    8 *  @version $Revision: 1.2 $ $Name: not supported by cvs2svn $
    9 *  @date $Date: 2005-02-17 19:26:24 $
     8*  @version $Revision: 1.3 $ $Name: not supported by cvs2svn $
     9*  @date $Date: 2005-04-07 20:27:41 $
    1010*
    1111*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    1313
    1414#include "psTest.h"
    15 #include "pslib.h"
     15#include "pslib_strict.h"
    1616
    1717static psS32 hashToArray( void );
  • trunk/psLib/test/collections/tst_psList.c

    r3264 r3682  
    66 *  @author Robert DeSonia, MHPCC
    77 *
    8  *  @version $Revision: 1.29 $ $Name: not supported by cvs2svn $
    9  *  @date $Date: 2005-02-17 19:26:24 $
     8 *  @version $Revision: 1.30 $ $Name: not supported by cvs2svn $
     9 *  @date $Date: 2005-04-07 20:27:41 $
    1010 *
    1111 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    1313
    1414#include "psTest.h"
    15 #include "pslib.h"
     15#include "pslib_strict.h"
    1616
    1717void printListInt(psList* list);
  • trunk/psLib/test/collections/tst_psMetadataIO.c

    r3407 r3682  
    1414 *  @author  Robert DeSonia, MHPCC
    1515 *
    16  *  @version $Revision: 1.12 $  $Name: not supported by cvs2svn $
    17  *  @date  $Date: 2005-03-11 20:38:56 $
     16 *  @version $Revision: 1.13 $  $Name: not supported by cvs2svn $
     17 *  @date  $Date: 2005-04-07 20:27:41 $
    1818 *
    1919 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    2222
    2323#include <string.h>
    24 #include "pslib.h"
     24#include "pslib_strict.h"
    2525#include "psTest.h"
    2626
  • trunk/psLib/test/collections/tst_psMetadata_01.c

    r3407 r3682  
    1818*  @author  Ross Harman, MHPCC
    1919*
    20 *  @version $Revision: 1.23 $  $Name: not supported by cvs2svn $
    21 *  @date  $Date: 2005-03-11 20:38:56 $
     20*  @version $Revision: 1.24 $  $Name: not supported by cvs2svn $
     21*  @date  $Date: 2005-04-07 20:27:41 $
    2222*
    2323*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    2626
    2727#include <string.h>
    28 #include "pslib.h"
     28#include "pslib_strict.h"
    2929#include "psTest.h"
    3030
  • trunk/psLib/test/collections/tst_psMetadata_02.c

    r3407 r3682  
    1515 *  @author  Robert DeSonia, MHPCC
    1616 *
    17  *  @version $Revision: 1.14 $  $Name: not supported by cvs2svn $
    18  *  @date  $Date: 2005-03-11 20:38:56 $
     17 *  @version $Revision: 1.15 $  $Name: not supported by cvs2svn $
     18 *  @date  $Date: 2005-04-07 20:27:41 $
    1919 *
    2020 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    2323
    2424#include <string.h>
    25 #include "pslib.h"
     25#include "pslib_strict.h"
    2626#include "psTest.h"
    2727
  • trunk/psLib/test/collections/tst_psMetadata_03.c

    r3407 r3682  
    1818*  @author  Ross Harman, MHPCC
    1919*
    20 *  @version $Revision: 1.16 $  $Name: not supported by cvs2svn $
    21 *  @date  $Date: 2005-03-11 20:38:56 $
     20*  @version $Revision: 1.17 $  $Name: not supported by cvs2svn $
     21*  @date  $Date: 2005-04-07 20:27:41 $
    2222*
    2323*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    2626
    2727#include <string.h>
    28 #include "pslib.h"
     28#include "pslib_strict.h"
    2929#include "psTest.h"
    3030
  • trunk/psLib/test/collections/tst_psMetadata_04.c

    r3407 r3682  
    2323*  @author  Ross Harman, MHPCC
    2424*
    25 *  @version $Revision: 1.17 $  $Name: not supported by cvs2svn $
    26 *  @date  $Date: 2005-03-11 20:38:56 $
     25*  @version $Revision: 1.18 $  $Name: not supported by cvs2svn $
     26*  @date  $Date: 2005-04-07 20:27:41 $
    2727*
    2828*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    3131
    3232#include <string.h>
    33 #include "pslib.h"
     33#include "pslib_strict.h"
    3434#include "psTest.h"
    3535
  • trunk/psLib/test/collections/tst_psMetadata_05.c

    r3445 r3682  
    2222*  @author  Ross Harman, MHPCC
    2323*
    24 *  @version $Revision: 1.23 $  $Name: not supported by cvs2svn $
    25 *  @date  $Date: 2005-03-17 19:44:44 $
     24*  @version $Revision: 1.24 $  $Name: not supported by cvs2svn $
     25*  @date  $Date: 2005-04-07 20:27:41 $
    2626*
    2727*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    3030
    3131#include <string.h>
    32 #include "pslib.h"
     32#include "pslib_strict.h"
    3333#include "psTest.h"
    3434
  • trunk/psLib/test/collections/tst_psMetadata_06.c

    r3407 r3682  
    1313*  @author  Ross Harman, MHPCC
    1414*
    15 *  @version $Revision: 1.12 $  $Name: not supported by cvs2svn $
    16 *  @date  $Date: 2005-03-11 20:38:56 $
     15*  @version $Revision: 1.13 $  $Name: not supported by cvs2svn $
     16*  @date  $Date: 2005-04-07 20:27:41 $
    1717*
    1818*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    2121
    2222#include <string.h>
    23 #include "pslib.h"
     23#include "pslib_strict.h"
    2424#include "psTest.h"
    2525
  • trunk/psLib/test/collections/tst_psMetadata_07.c

    r3341 r3682  
    99*  @author  Ross Harman, MHPCC
    1010*
    11 *  @version $Revision: 1.9 $  $Name: not supported by cvs2svn $
    12 *  @date  $Date: 2005-02-28 23:34:10 $
     11*  @version $Revision: 1.10 $  $Name: not supported by cvs2svn $
     12*  @date  $Date: 2005-04-07 20:27:41 $
    1313*
    1414*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    1616*/
    1717#include "config.h"
    18 #include "pslib.h"
     18#include "pslib_strict.h"
    1919#include "psTest.h"
    2020
  • trunk/psLib/test/collections/tst_psScalar.c

    r3264 r3682  
    55 *  @author Eric Van Alst, MHPCC
    66 *
    7  *  @version $Revision: 1.3 $
     7 *  @version $Revision: 1.4 $
    88 *           $Name: not supported by cvs2svn $
    9  *  @date $Date: 2005-02-17 19:26:24 $
     9 *  @date $Date: 2005-04-07 20:27:41 $
    1010 *
    1111 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    1313
    1414#include "psTest.h"
    15 #include "pslib.h"
     15#include "pslib_strict.h"
    1616
    1717static psS32 testScalarAlloc(void);
  • trunk/psLib/test/collections/tst_psVector.c

    r3264 r3682  
    1414 *  @author  Ross Harman, MHPCC
    1515 *
    16  *  @version $Revision: 1.7 $  $Name: not supported by cvs2svn $
    17  *  @date  $Date: 2005-02-17 19:26:24 $
     16 *  @version $Revision: 1.8 $  $Name: not supported by cvs2svn $
     17 *  @date  $Date: 2005-04-07 20:27:41 $
    1818 *
    1919 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    2121 */
    2222
    23 #include "pslib.h"
     23#include "pslib_strict.h"
    2424#include "psTest.h"
    2525
  • trunk/psLib/test/collections/tst_psVectorSort_01.c

    r3444 r3682  
    1212 *  @author  Ross Harman, MHPCC
    1313 *
    14  *  @version $Revision: 1.7 $  $Name: not supported by cvs2svn $
    15  *  @date  $Date: 2005-03-17 19:26:19 $
     14 *  @version $Revision: 1.8 $  $Name: not supported by cvs2svn $
     15 *  @date  $Date: 2005-04-07 20:27:41 $
    1616 *
    1717 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    1919 */
    2020
    21 #include "pslib.h"
     21#include "pslib_strict.h"
    2222#include "psTest.h"
    2323
  • trunk/psLib/test/collections/tst_psVectorSort_02.c

    r3264 r3682  
    1414 *  @author  Ross Harman, MHPCC
    1515 *
    16  *  @version $Revision: 1.7 $  $Name: not supported by cvs2svn $
    17  *  @date  $Date: 2005-02-17 19:26:24 $
     16 *  @version $Revision: 1.8 $  $Name: not supported by cvs2svn $
     17 *  @date  $Date: 2005-04-07 20:27:41 $
    1818 *
    1919 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    2121 */
    2222
    23 #include "pslib.h"
     23#include "pslib_strict.h"
    2424#include "psTest.h"
    2525
  • trunk/psLib/test/collections/tst_psVectorSort_03.c

    r3264 r3682  
    1212 *  @author  Ross Harman, MHPCC
    1313 *
    14  *  @version $Revision: 1.7 $  $Name: not supported by cvs2svn $
    15  *  @date  $Date: 2005-02-17 19:26:24 $
     14 *  @version $Revision: 1.8 $  $Name: not supported by cvs2svn $
     15 *  @date  $Date: 2005-04-07 20:27:41 $
    1616 *
    1717 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    1919 */
    2020
    21 #include "pslib.h"
     21#include "pslib_strict.h"
    2222#include "psTest.h"
    2323
  • trunk/psLib/test/collections/tst_psVectorSort_04.c

    r3264 r3682  
    99 *  @author  Ross Harman, MHPCC
    1010 *
    11  *  @version $Revision: 1.6 $  $Name: not supported by cvs2svn $
    12  *  @date  $Date: 2005-02-17 19:26:24 $
     11 *  @version $Revision: 1.7 $  $Name: not supported by cvs2svn $
     12 *  @date  $Date: 2005-04-07 20:27:41 $
    1313 *
    1414 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    1616 */
    1717
    18 #include "pslib.h"
     18#include "pslib_strict.h"
    1919#include "psTest.h"
    2020
  • trunk/psLib/test/dataIO/tst_psDB.c

    r3598 r3682  
    99 *  @author Aaron Culliney, MHPCC
    1010 *
    11  *  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2005-03-31 23:01:46 $
     11 *  @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2005-04-07 20:27:41 $
    1313 *
    1414 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    2525
    2626#include "psTest.h"
    27 #include "pslib.h"
     27#include "pslib_strict.h"
    2828
    2929#define STR_1 "hello world!"
  • trunk/psLib/test/dataIO/tst_psFits.c

    r3495 r3682  
    66*  @author Robert DeSonia, MHPCC
    77*
    8 *  @version $Revision: 1.23 $ $Name: not supported by cvs2svn $
    9 *  @date $Date: 2005-03-24 22:21:17 $
     8*  @version $Revision: 1.24 $ $Name: not supported by cvs2svn $
     9*  @date $Date: 2005-04-07 20:27:42 $
    1010*
    1111*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    1818
    1919#include "psTest.h"
    20 #include "pslib.h"
     20#include "pslib_strict.h"
    2121
    2222#define GENIMAGE(img,c,r,TYP, valueFcn) \
  • trunk/psLib/test/dataIO/tst_psLookupTable_01.c

    r3598 r3682  
    1212*  @author  Ross Harman, MHPCC
    1313*
    14 *  @version $Revision: 1.13 $  $Name: not supported by cvs2svn $
    15 *  @date  $Date: 2005-03-31 23:01:46 $
     14*  @version $Revision: 1.14 $  $Name: not supported by cvs2svn $
     15*  @date  $Date: 2005-04-07 20:27:42 $
    1616*
    1717*  Copyright 2004-5 Maui High Performance Computing Center, University of Hawaii
     
    1919*/
    2020
    21 #include "pslib.h"
     21#include "pslib_strict.h"
    2222#include "psTest.h"
    2323#include <string.h>
  • trunk/psLib/test/dataManip/tst_psFunc00.c

    r3549 r3682  
    1414*    orders are created.
    1515*
    16 *    @version $Revision: 1.20 $  $Name: not supported by cvs2svn $
    17 *    @date $Date: 2005-03-29 22:50:16 $
     16*    @version $Revision: 1.21 $  $Name: not supported by cvs2svn $
     17*    @date $Date: 2005-04-07 20:27:41 $
    1818*
    1919*  Copyright 2004-2005 Maui High Performance Computing Center, Univ. of Hawaii
     
    2121*****************************************************************************/
    2222#include <stdio.h>
    23 #include "pslib.h"
     23#include "pslib_strict.h"
    2424#include "psTest.h"
    2525
  • trunk/psLib/test/dataManip/tst_psFunc01.c

    r2436 r3682  
    66 *****************************************************************************/
    77#include <stdio.h>
    8 #include "pslib.h"
     8#include "pslib_strict.h"
    99#include "psTest.h"
    1010#include "psMemory.h"
  • trunk/psLib/test/dataManip/tst_psFunc02.c

    r3096 r3682  
    55 *****************************************************************************/
    66#include <stdio.h>
    7 #include "pslib.h"
     7#include "pslib_strict.h"
    88#include "psTest.h"
    99#include "psMemory.h"
  • trunk/psLib/test/dataManip/tst_psFunc03.c

    r3096 r3682  
    66 *****************************************************************************/
    77#include <stdio.h>
    8 #include "pslib.h"
     8#include "pslib_strict.h"
    99#include "psTest.h"
    1010#include "psMemory.h"
  • trunk/psLib/test/dataManip/tst_psFunc04.c

    r3096 r3682  
    1010#include <stdio.h>
    1111#include <math.h>
    12 #include "pslib.h"
     12#include "pslib_strict.h"
    1313#include "psTest.h"
    1414#include "psMemory.h"
  • trunk/psLib/test/dataManip/tst_psFunc05.c

    r3096 r3682  
    1111#include <stdio.h>
    1212#include <math.h>
    13 #include "pslib.h"
     13#include "pslib_strict.h"
    1414#include "psTest.h"
    1515#include "psMemory.h"
  • trunk/psLib/test/dataManip/tst_psFunc07.c

    r3096 r3682  
    1212#include <stdio.h>
    1313#include <math.h>
    14 #include "pslib.h"
     14#include "pslib_strict.h"
    1515#include "psTest.h"
    1616#include "psMemory.h"
  • trunk/psLib/test/dataManip/tst_psFunc08.c

    r3379 r3682  
    44*  ORD and CHEB type polynomials.
    55*
    6 *  @version  $Revision: 1.1 $  $Name: not supported by cvs2svn $
    7 *  @date  $Date: 2005-03-07 20:31:06 $
     6*  @version  $Revision: 1.2 $  $Name: not supported by cvs2svn $
     7*  @date  $Date: 2005-04-07 20:27:42 $
    88*
    99* Copyright 2004-2005 Maui High Performance Computing Center, Univ. of Hawaii
     
    1111***************************************************************************/
    1212
    13 #include "pslib.h"
     13#include "pslib_strict.h"
    1414#include "psTest.h"
    1515
  • trunk/psLib/test/dataManip/tst_psFunc09.c

    r3385 r3682  
    44*  ORD and CHEB type polynomials.
    55*
    6 *  @version  $Revision: 1.1 $  $Name: not supported by cvs2svn $
    7 *  @date  $Date: 2005-03-08 02:46:20 $
     6*  @version  $Revision: 1.2 $  $Name: not supported by cvs2svn $
     7*  @date  $Date: 2005-04-07 20:27:42 $
    88*
    99* Copyright 2004-2005 Maui High Performance Computing Center, Univ. of Hawaii
     
    1111***************************************************************************/
    1212
    13 #include "pslib.h"
     13#include "pslib_strict.h"
    1414#include "psTest.h"
    1515
  • trunk/psLib/test/dataManip/tst_psFunc10.c

    r3398 r3682  
    44*  ORD and CHEB type polynomials.
    55*
    6 *  @version  $Revision: 1.1 $  $Name: not supported by cvs2svn $
    7 *  @date  $Date: 2005-03-10 01:14:11 $
     6*  @version  $Revision: 1.2 $  $Name: not supported by cvs2svn $
     7*  @date  $Date: 2005-04-07 20:27:42 $
    88*
    99* Copyright 2004-2005 Maui High Performance Computing Center, Univ. of Hawaii
     
    1111***************************************************************************/
    1212
    13 #include "pslib.h"
     13#include "pslib_strict.h"
    1414#include "psTest.h"
    1515
  • trunk/psLib/test/dataManip/tst_psFunc11.c

    r3406 r3682  
    44*  ORD and CHEB type polynomials.
    55*
    6 *  @version  $Revision: 1.1 $  $Name: not supported by cvs2svn $
    7 *  @date  $Date: 2005-03-10 22:36:09 $
     6*  @version  $Revision: 1.2 $  $Name: not supported by cvs2svn $
     7*  @date  $Date: 2005-04-07 20:27:42 $
    88*
    99* Copyright 2004-2005 Maui High Performance Computing Center, Univ. of Hawaii
     
    1111***************************************************************************/
    1212
    13 #include "pslib.h"
     13#include "pslib_strict.h"
    1414#include "psTest.h"
    1515
  • trunk/psLib/test/dataManip/tst_psHist00.c

    r2782 r3682  
    44 *****************************************************************************/
    55#include <stdio.h>
    6 #include "pslib.h"
     6#include "pslib_strict.h"
    77#include "psTest.h"
    88#include "psMemory.h"
  • trunk/psLib/test/dataManip/tst_psHist01.c

    r2782 r3682  
    44 *****************************************************************************/
    55#include <stdio.h>
    6 #include "pslib.h"
     6#include "pslib_strict.h"
    77#include "psTest.h"
    88#include "psMemory.h"
  • trunk/psLib/test/dataManip/tst_psHist02.c

    r2782 r3682  
    55*****************************************************************************/
    66#include <stdio.h>
    7 #include "pslib.h"
     7#include "pslib_strict.h"
    88#include "psTest.h"
    99#include "psMemory.h"
  • trunk/psLib/test/dataManip/tst_psHist03.c

    r2782 r3682  
    55 *****************************************************************************/
    66#include <stdio.h>
    7 #include "pslib.h"
     7#include "pslib_strict.h"
    88#include "psTest.h"
    99#include "psMemory.h"
  • trunk/psLib/test/dataManip/tst_psMatrix01.c

    r3264 r3682  
    1111*  @author  Ross Harman, MHPCC
    1212*
    13 *  @version $Revision: 1.12 $  $Name: not supported by cvs2svn $
    14 *  @date  $Date: 2005-02-17 19:26:25 $
     13*  @version $Revision: 1.13 $  $Name: not supported by cvs2svn $
     14*  @date  $Date: 2005-04-07 20:27:42 $
    1515*
    1616*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    1818*/
    1919
    20 #include "pslib.h"
     20#include "pslib_strict.h"
    2121#include "psTest.h"
    2222
  • trunk/psLib/test/dataManip/tst_psMatrix02.c

    r3313 r3682  
    1212 *  @author  Ross Harman, MHPCC
    1313 *
    14  *  @version $Revision: 1.6 $  $Name: not supported by cvs2svn $
    15  *  @date  $Date: 2005-02-24 00:19:51 $
     14 *  @version $Revision: 1.7 $  $Name: not supported by cvs2svn $
     15 *  @date  $Date: 2005-04-07 20:27:42 $
    1616 *
    1717 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    1919 */
    2020
    21 #include "pslib.h"
     21#include "pslib_strict.h"
    2222#include "psTest.h"
    2323
  • trunk/psLib/test/dataManip/tst_psMatrix03.c

    r3313 r3682  
    1414 *  @author  Ross Harman, MHPCC
    1515 *
    16  *  @version $Revision: 1.15 $  $Name: not supported by cvs2svn $
    17  *  @date  $Date: 2005-02-24 00:19:51 $
     16 *  @version $Revision: 1.16 $  $Name: not supported by cvs2svn $
     17 *  @date  $Date: 2005-04-07 20:27:42 $
    1818 *
    1919 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    2121 */
    2222
    23 #include "pslib.h"
     23#include "pslib_strict.h"
    2424#include "psTest.h"
    2525
  • trunk/psLib/test/dataManip/tst_psMatrix04.c

    r3264 r3682  
    1313 *  @author  Ross Harman, MHPCC
    1414 *
    15  *  @version $Revision: 1.8 $  $Name: not supported by cvs2svn $
    16  *  @date  $Date: 2005-02-17 19:26:25 $
     15 *  @version $Revision: 1.9 $  $Name: not supported by cvs2svn $
     16 *  @date  $Date: 2005-04-07 20:27:42 $
    1717 *
    1818 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    2020 */
    2121
    22 #include "pslib.h"
     22#include "pslib_strict.h"
    2323#include "psTest.h"
    2424
  • trunk/psLib/test/dataManip/tst_psMatrix05.c

    r3264 r3682  
    1010*  @author  Ross Harman, MHPCC
    1111*
    12 *  @version $Revision: 1.8 $  $Name: not supported by cvs2svn $
    13 *  @date  $Date: 2005-02-17 19:26:25 $
     12*  @version $Revision: 1.9 $  $Name: not supported by cvs2svn $
     13*  @date  $Date: 2005-04-07 20:27:42 $
    1414*
    1515*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    1717*/
    1818
    19 #include "pslib.h"
     19#include "pslib_strict.h"
    2020#include "psTest.h"
    2121
  • trunk/psLib/test/dataManip/tst_psMatrix06.c

    r3264 r3682  
    1010*  @author  Ross Harman, MHPCC
    1111*
    12 *  @version $Revision: 1.8 $  $Name: not supported by cvs2svn $
    13 *  @date  $Date: 2005-02-17 19:26:25 $
     12*  @version $Revision: 1.9 $  $Name: not supported by cvs2svn $
     13*  @date  $Date: 2005-04-07 20:27:42 $
    1414*
    1515*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    1717*/
    1818
    19 #include "pslib.h"
     19#include "pslib_strict.h"
    2020#include "psTest.h"
    2121
  • trunk/psLib/test/dataManip/tst_psMatrix07.c

    r3313 r3682  
    1616 *  @author  Ross Harman, MHPCC
    1717 *
    18  *  @version $Revision: 1.11 $  $Name: not supported by cvs2svn $
    19  *  @date  $Date: 2005-02-24 00:19:51 $
     18 *  @version $Revision: 1.12 $  $Name: not supported by cvs2svn $
     19 *  @date  $Date: 2005-04-07 20:27:42 $
    2020 *
    2121 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    2323 */
    2424
    25 #include "pslib.h"
     25#include "pslib_strict.h"
    2626#include "psTest.h"
    2727
  • trunk/psLib/test/dataManip/tst_psMatrixVectorArithmetic01.c

    r3264 r3682  
    1010 *  @author  Ross Harman, MHPCC
    1111 *
    12  *  @version $Revision: 1.7 $  $Name: not supported by cvs2svn $
    13  *  @date  $Date: 2005-02-17 19:26:25 $
     12 *  @version $Revision: 1.8 $  $Name: not supported by cvs2svn $
     13 *  @date  $Date: 2005-04-07 20:27:42 $
    1414 *
    1515 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    1717 */
    1818
    19 #include "pslib.h"
     19#include "pslib_strict.h"
    2020#include "psTest.h"
    2121
  • trunk/psLib/test/dataManip/tst_psMatrixVectorArithmetic02.c

    r3264 r3682  
    1010 *  @author  Ross Harman, MHPCC
    1111 *
    12  *  @version $Revision: 1.11 $  $Name: not supported by cvs2svn $
    13  *  @date  $Date: 2005-02-17 19:26:25 $
     12 *  @version $Revision: 1.12 $  $Name: not supported by cvs2svn $
     13 *  @date  $Date: 2005-04-07 20:27:42 $
    1414 *
    1515 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    1717 */
    1818
    19 #include "pslib.h"
     19#include "pslib_strict.h"
    2020#include "psTest.h"
    2121
  • trunk/psLib/test/dataManip/tst_psMatrixVectorArithmetic03.c

    r3264 r3682  
    1515 *  @author  Ross Harman, MHPCC
    1616 *
    17  *  @version $Revision: 1.9 $  $Name: not supported by cvs2svn $
    18  *  @date  $Date: 2005-02-17 19:26:25 $
     17 *  @version $Revision: 1.10 $  $Name: not supported by cvs2svn $
     18 *  @date  $Date: 2005-04-07 20:27:42 $
    1919 *
    2020 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    2222 */
    2323
    24 #include "pslib.h"
     24#include "pslib_strict.h"
    2525#include "psTest.h"
    2626
  • trunk/psLib/test/dataManip/tst_psMatrixVectorArithmetic04.c

    r3264 r3682  
    99 * @author  Eric Van Alst, MHPCC
    1010 *
    11  * @version $Revision: 1.2 $  $Name: not supported by cvs2svn $
    12  * @date  $Date: 2005-02-17 19:26:25 $
     11 * @version $Revision: 1.3 $  $Name: not supported by cvs2svn $
     12 * @date  $Date: 2005-04-07 20:27:42 $
    1313 *
    1414 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    1616 */
    1717
    18 #include "pslib.h"
     18#include "pslib_strict.h"
    1919#include "psTest.h"
    2020
  • trunk/psLib/test/dataManip/tst_psMinimize00.c

    r2204 r3682  
    44 *****************************************************************************/
    55#include <stdio.h>
    6 #include "pslib.h"
     6#include "pslib_strict.h"
    77#include "psTest.h"
    88#include "psMemory.h"
  • trunk/psLib/test/dataManip/tst_psMinimize01.c

    r2204 r3682  
    44 *****************************************************************************/
    55#include <stdio.h>
    6 #include "pslib.h"
     6#include "pslib_strict.h"
    77#include "psTest.h"
    88#include "psMemory.h"
  • trunk/psLib/test/dataManip/tst_psMinimize02.c

    r2204 r3682  
    44 *****************************************************************************/
    55#include <stdio.h>
    6 #include "pslib.h"
     6#include "pslib_strict.h"
    77#include "psTest.h"
    88#include "psMemory.h"
  • trunk/psLib/test/dataManip/tst_psMinimize03.c

    r2204 r3682  
    44 *****************************************************************************/
    55#include <stdio.h>
    6 #include "pslib.h"
     6#include "pslib_strict.h"
    77#include "psTest.h"
    88#include "psMemory.h"
  • trunk/psLib/test/dataManip/tst_psMinimize04.c

    r2436 r3682  
    1313 *****************************************************************************/
    1414#include <stdio.h>
    15 #include "pslib.h"
     15#include "pslib_strict.h"
    1616#include "psTest.h"
    1717#include "psMemory.h"
  • trunk/psLib/test/dataManip/tst_psMinimize04_F32.c

    r2436 r3682  
    1313 *****************************************************************************/
    1414#include <stdio.h>
    15 #include "pslib.h"
     15#include "pslib_strict.h"
    1616#include "psTest.h"
    1717#include "psMemory.h"
  • trunk/psLib/test/dataManip/tst_psMinimize04b.c

    r2740 r3682  
    33 *****************************************************************************/
    44#include <stdio.h>
    5 #include "pslib.h"
     5#include "pslib_strict.h"
    66#include "psTest.h"
    77#include "psMemory.h"
  • trunk/psLib/test/dataManip/tst_psMinimize04b_F32.c

    r2740 r3682  
    33 *****************************************************************************/
    44#include <stdio.h>
    5 #include "pslib.h"
     5#include "pslib_strict.h"
    66#include "psTest.h"
    77#include "psMemory.h"
  • trunk/psLib/test/dataManip/tst_psMinimize05.c

    r2743 r3682  
    77 *****************************************************************************/
    88#include <stdio.h>
    9 #include "pslib.h"
     9#include "pslib_strict.h"
    1010#include "psTest.h"
    1111#include <math.h>
  • trunk/psLib/test/dataManip/tst_psMinimize06.c

    r2392 r3682  
    33 *****************************************************************************/
    44#include <stdio.h>
    5 #include "pslib.h"
     5#include "pslib_strict.h"
    66#include "psTest.h"
    77#include <math.h>
  • trunk/psLib/test/dataManip/tst_psMinimize07.c

    r2393 r3682  
    33 *****************************************************************************/
    44#include <stdio.h>
    5 #include "pslib.h"
     5#include "pslib_strict.h"
    66#include "psTest.h"
    77#include <math.h>
  • trunk/psLib/test/dataManip/tst_psRandom.c

    r3299 r3682  
    1919#include <stdio.h>
    2020#include <math.h>
    21 #include "pslib.h"
     21#include "pslib_strict.h"
    2222#include "psTest.h"
    2323
  • trunk/psLib/test/dataManip/tst_psStats00.c

    r3502 r3682  
    55*  @author George Gusciora, MHPCC
    66*
    7 *  @version $Revision: 1.16 $  $Name: not supported by cvs2svn $
    8 *  @date $Date: 2005-03-24 23:57:13 $
     7*  @version $Revision: 1.17 $  $Name: not supported by cvs2svn $
     8*  @date $Date: 2005-04-07 20:27:42 $
    99*
    1010*  Copyright 2004-2005 Maui High Performance Computing Center, Univ. of Hawaii
    1111*/
    1212
    13 #include "pslib.h"
     13#include "pslib_strict.h"
    1414#include "psTest.h"
    1515
  • trunk/psLib/test/dataManip/tst_psStats01.c

    r3530 r3682  
    55*  @author George Gusciora, MHPCC
    66*
    7 *  @version $Revision: 1.10 $  $Name: not supported by cvs2svn $
    8 *  @date $Date: 2005-03-28 22:50:59 $
     7*  @version $Revision: 1.11 $  $Name: not supported by cvs2svn $
     8*  @date $Date: 2005-04-07 20:27:42 $
    99*
    1010* Copyright 2004-2005 Maui High Performance Computing Center, Univ. of Hawaii
    1111*/
    1212
    13 #include "pslib.h"
     13#include "pslib_strict.h"
    1414#include "psTest.h"
    1515
  • trunk/psLib/test/dataManip/tst_psStats02.c

    r3535 r3682  
    55*  @author George Gusciora, MHPCC
    66*
    7 *  @version $Revision: 1.10 $  $Name: not supported by cvs2svn $
    8 *  @date $Date: 2005-03-28 23:54:14 $
     7*  @version $Revision: 1.11 $  $Name: not supported by cvs2svn $
     8*  @date $Date: 2005-04-07 20:27:42 $
    99*
    1010* Copyright 2004-2005 Maui High Performance Computing Center, Univ. of Hawaii
    1111*/
    1212
    13 #include "pslib.h"
     13#include "pslib_strict.h"
    1414#include "psTest.h"
    1515
  • trunk/psLib/test/dataManip/tst_psStats03.c

    r2780 r3682  
    44 *****************************************************************************/
    55#include <stdio.h>
    6 #include "pslib.h"
     6#include "pslib_strict.h"
    77#include "psTest.h"
    88#define N1 1029   // This should be an odd number.
  • trunk/psLib/test/dataManip/tst_psStats04.c

    r2204 r3682  
    77 *****************************************************************************/
    88#include <stdio.h>
    9 #include "pslib.h"
     9#include "pslib_strict.h"
    1010#include "psTest.h"
    1111#define N1 1029
  • trunk/psLib/test/dataManip/tst_psStats05.c

    r2392 r3682  
    44 *****************************************************************************/
    55#include <stdio.h>
    6 #include "pslib.h"
     6#include "pslib_strict.h"
    77#include "psTest.h"
    88#define MISC_FLOAT_NUMBER 345.0
  • trunk/psLib/test/dataManip/tst_psStats06.c

    r2780 r3682  
    44 *****************************************************************************/
    55#include <stdio.h>
    6 #include "pslib.h"
     6#include "pslib_strict.h"
    77#include "psTest.h"
    88#include "psTest.h"
  • trunk/psLib/test/dataManip/tst_psStats07.c

    r3549 r3682  
    44*****************************************************************************/
    55#include <stdio.h>
    6 #include "pslib.h"
     6#include "pslib_strict.h"
    77#include "psTest.h"
    88#include "psTest.h"
  • trunk/psLib/test/dataManip/tst_psStats08.c

    r2780 r3682  
    44 *****************************************************************************/
    55#include <stdio.h>
    6 #include "pslib.h"
     6#include "pslib_strict.h"
    77#include "psTest.h"
    88#include "psTest.h"
  • trunk/psLib/test/dataManip/tst_psStats09.c

    r3160 r3682  
    55 *****************************************************************************/
    66#include <stdio.h>
    7 #include "pslib.h"
     7#include "pslib_strict.h"
    88#include "psTest.h"
    99#include "psTest.h"
  • trunk/psLib/test/dataManip/tst_psVectorFFT.c

    r3264 r3682  
    66*  @author Robert DeSonia, MHPCC
    77*
    8 *  @version $Revision: 1.14 $ $Name: not supported by cvs2svn $
    9 *  @date $Date: 2005-02-17 19:26:25 $
     8*  @version $Revision: 1.15 $ $Name: not supported by cvs2svn $
     9*  @date $Date: 2005-04-07 20:27:42 $
    1010*
    1111*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    1616
    1717#include "psTest.h"
    18 #include "pslib.h"
     18#include "pslib_strict.h"
    1919
    2020#define GENIMAGE(img,c,r,TYP, valueFcn) \
  • trunk/psLib/test/fileUtils/tst_psDB.c

    r3598 r3682  
    99 *  @author Aaron Culliney, MHPCC
    1010 *
    11  *  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2005-03-31 23:01:46 $
     11 *  @version $Revision: 1.7 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2005-04-07 20:27:41 $
    1313 *
    1414 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    2525
    2626#include "psTest.h"
    27 #include "pslib.h"
     27#include "pslib_strict.h"
    2828
    2929#define STR_1 "hello world!"
  • trunk/psLib/test/fileUtils/tst_psFits.c

    r3495 r3682  
    66*  @author Robert DeSonia, MHPCC
    77*
    8 *  @version $Revision: 1.23 $ $Name: not supported by cvs2svn $
    9 *  @date $Date: 2005-03-24 22:21:17 $
     8*  @version $Revision: 1.24 $ $Name: not supported by cvs2svn $
     9*  @date $Date: 2005-04-07 20:27:42 $
    1010*
    1111*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    1818
    1919#include "psTest.h"
    20 #include "pslib.h"
     20#include "pslib_strict.h"
    2121
    2222#define GENIMAGE(img,c,r,TYP, valueFcn) \
  • trunk/psLib/test/fileUtils/tst_psLookupTable_01.c

    r3598 r3682  
    1212*  @author  Ross Harman, MHPCC
    1313*
    14 *  @version $Revision: 1.13 $  $Name: not supported by cvs2svn $
    15 *  @date  $Date: 2005-03-31 23:01:46 $
     14*  @version $Revision: 1.14 $  $Name: not supported by cvs2svn $
     15*  @date  $Date: 2005-04-07 20:27:42 $
    1616*
    1717*  Copyright 2004-5 Maui High Performance Computing Center, University of Hawaii
     
    1919*/
    2020
    21 #include "pslib.h"
     21#include "pslib_strict.h"
    2222#include "psTest.h"
    2323#include <string.h>
  • trunk/psLib/test/image/tst_psImage.c

    r3264 r3682  
    66 *  @author Robert DeSonia, MHPCC
    77 *
    8  *  @version $Revision: 1.31 $ $Name: not supported by cvs2svn $
    9  *  @date $Date: 2005-02-17 19:26:25 $
     8 *  @version $Revision: 1.32 $ $Name: not supported by cvs2svn $
     9 *  @date $Date: 2005-04-07 20:27:42 $
    1010 *
    1111 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    1818
    1919#include "psTest.h"
    20 #include "pslib.h"
     20#include "pslib_strict.h"
    2121#include "psType.h"
    2222
     
    5151                          0,1,100,1,150,100
    5252                      };
    53     psU32 types = 13;
     53    psU32 types = 12;
    5454    psElemType type[] = { PS_TYPE_S8, PS_TYPE_S16, PS_TYPE_S32, PS_TYPE_S64,
    5555                          PS_TYPE_U8, PS_TYPE_U16, PS_TYPE_U32, PS_TYPE_U64,
    56                           PS_TYPE_F32, PS_TYPE_F64, PS_TYPE_C32, PS_TYPE_C64,
    57                           PS_TYPE_PTR };
     56                          PS_TYPE_F32, PS_TYPE_F64, PS_TYPE_C32, PS_TYPE_C64};
    5857
    5958    psLogMsg(__func__,PS_LOG_INFO,"#546 - psImageAlloc shall allocate memory for a psImage structure");
     
    193192                        }
    194193                    }
    195                 }
    196                 break;
    197             case PS_TYPE_PTR: {
    198                     psU32 rows = numRows[i];
    199                     psU32 cols = numCols[i];
    200                     psImage* temp = psImageAlloc(1,1,PS_TYPE_F32);
    201 
    202                     for (psS32 r=0;r<rows;r++) {
    203                         for (psS32 c=0;c<cols;c++) {
    204                             image->data.PTR[r][c] = psMemIncrRefCounter(temp);
    205                         }
    206                     }
    207                     for (psS32 r=0;r<rows;r++) {
    208                         for (psS32 c=0;c<cols;c++) {
    209                             if (image->data.PTR[r][c] != temp) {
    210                                 psError(PS_ERR_UNKNOWN, true, "Could not set pixel in pointer image at (%d,%d): %x %x",
    211                                         c,r,image->data.PTR[r][c],temp);
    212                                 psFree(image);
    213                                 psFree(temp);
    214                                 return 8;
    215                             }
    216                         }
    217                     }
    218                     psFree(temp);
    219194                }
    220195                break;
  • trunk/psLib/test/image/tst_psImageConvolve.c

    r2911 r3682  
    55 *  @author Robert DeSonia, MHPCC
    66 *
    7  *  @version $Revision: 1.8 $ $Name: not supported by cvs2svn $
    8  *  @date $Date: 2005-01-05 21:16:15 $
     7 *  @version $Revision: 1.9 $ $Name: not supported by cvs2svn $
     8 *  @date $Date: 2005-04-07 20:27:42 $
    99 *
    1010 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    1717
    1818#include "psTest.h"
    19 #include "pslib.h"
     19#include "pslib_strict.h"
    2020#include "psType.h"
    2121
  • trunk/psLib/test/image/tst_psImageExtraction.c

    r3311 r3682  
    66*  @author Robert DeSonia, MHPCC
    77*
    8 *  @version $Revision: 1.21 $ $Name: not supported by cvs2svn $
    9 *  @date $Date: 2005-02-23 21:36:57 $
     8*  @version $Revision: 1.22 $ $Name: not supported by cvs2svn $
     9*  @date $Date: 2005-04-07 20:27:42 $
    1010*
    1111*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    1515
    1616#include "psTest.h"
    17 #include "pslib.h"
     17#include "pslib_strict.h"
    1818#include "psType.h"
    1919
  • trunk/psLib/test/image/tst_psImageFFT.c

    r3264 r3682  
    66 *  @author Robert DeSonia, MHPCC
    77 *
    8  *  @version $Revision: 1.16 $ $Name: not supported by cvs2svn $
    9  *  @date $Date: 2005-02-17 19:26:25 $
     8 *  @version $Revision: 1.17 $ $Name: not supported by cvs2svn $
     9 *  @date $Date: 2005-04-07 20:27:42 $
    1010 *
    1111 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    1616
    1717#include "psTest.h"
    18 #include "pslib.h"
     18#include "pslib_strict.h"
    1919
    2020#define GENIMAGE(img,c,r,TYP, valueFcn) \
  • trunk/psLib/test/image/tst_psImageIO.c

    r3264 r3682  
    66 *  @author Robert DeSonia, MHPCC
    77 *
    8  *  @version $Revision: 1.13 $ $Name: not supported by cvs2svn $
    9  *  @date $Date: 2005-02-17 19:26:25 $
     8 *  @version $Revision: 1.14 $ $Name: not supported by cvs2svn $
     9 *  @date $Date: 2005-04-07 20:27:42 $
    1010 *
    1111 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    2121
    2222#include "psTest.h"
    23 #include "pslib.h"
     23#include "pslib_strict.h"
    2424
    2525#define GENIMAGE(img,c,r,TYP, valueFcn) \
  • trunk/psLib/test/image/tst_psImageInterpolate.c

    r3446 r3682  
    55 * @author Eric Van Alst, MHPCC
    66 *
    7  * @version $Revision: 1.5 $
     7 * @version $Revision: 1.6 $
    88 *          $Name: not supported by cvs2svn $
    9  * @date $Date: 2005-03-18 02:35:15 $
     9 * @date $Date: 2005-04-07 20:27:42 $
    1010 *
    1111 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    1414
    1515#include "psTest.h"
    16 #include "pslib.h"
     16#include "pslib_strict.h"
    1717
    1818#define GENIMAGE(img,c,r,TYP,valueFcn) \
     
    100100
    101101    // Perform interpolation with invalid input image type
    102     img1 = psImageAlloc(10,10,PS_TYPE_PTR);
     102    img1 = psImageAlloc(10,10,PS_TYPE_BOOL);
    103103    psLogMsg(__func__,PS_LOG_INFO,"Following should generate an error message");
    104104    val = psImagePixelInterpolate(img1,1.2,1.2,NULL,0,10.0,PS_INTERPOLATE_FLAT);
  • trunk/psLib/test/image/tst_psImageManip.c

    r3446 r3682  
    66 *  @author Robert DeSonia, MHPCC
    77 *
    8  *  @version $Revision: 1.40 $ $Name: not supported by cvs2svn $
    9  *  @date $Date: 2005-03-18 02:35:15 $
     8 *  @version $Revision: 1.41 $ $Name: not supported by cvs2svn $
     9 *  @date $Date: 2005-04-07 20:27:42 $
    1010 *
    1111 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    2222
    2323#include "psTest.h"
    24 #include "pslib.h"
     24#include "pslib_strict.h"
    2525#include "psType.h"
    2626
     
    17881788    // Verify that that an invalid image type is handled properly
    17891789    psErrorClear();
    1790     psImage* invImage = psImageAlloc(cols,rows,PS_TYPE_PTR);
    1791     memset(invImage->rawDataBuffer,0,cols*rows*sizeof(psPtr)); // make sure the image is of all NULLs
     1790    psImage* invImage = psImageAlloc(cols,rows,PS_TYPE_BOOL);
     1791    memset(invImage->rawDataBuffer,0,cols*rows*sizeof(psBool)); // make sure the image is of all NULLs
    17921792    result = psImageResample(result,invImage,2,PS_INTERPOLATE_FLAT);
    17931793    if (result != NULL) {
  • trunk/psLib/test/image/tst_psImageStats.c

    r3310 r3682  
    1515#include <math.h>
    1616
    17 #include "pslib.h"
     17#include "pslib_strict.h"
    1818#include "psTest.h"
    1919
  • trunk/psLib/test/image/verified/tst_psImage.stderr

    r3127 r3682  
    7979<DATE><TIME>|<HOST>|E|psImageAlloc (FILE:LINENO)
    8080    Specified number of rows (0) or columns (0) is invalid.
    81 <DATE><TIME>|<HOST>|I|testImageAlloc
    82     Testing psImage with type 0h
    83 <DATE><TIME>|<HOST>|I|testImageAlloc
    84     Following should be an error.
    85 <DATE><TIME>|<HOST>|E|psImageAlloc (FILE:LINENO)
    86     Specified number of rows (0) or columns (0) is invalid.
    8781
    8882---> TESTPOINT PASSED (psImage{psImageAlloc} | tst_psImage.c)
  • trunk/psLib/test/image/verified/tst_psImageInterpolate.stderr

    r3127 r3682  
    2121    Following should generate an error message
    2222<DATE><TIME>|<HOST>|E|psImagePixelInterpolate (FILE:LINENO)
    23     Specified psImage type, psPtr, is not supported.
     23    Specified psImage type, psBool, is not supported.
    2424<DATE><TIME>|<HOST>|I|testInterpolateError
    2525    Following should generate an error message
    2626<DATE><TIME>|<HOST>|E|psImagePixelInterpolate (FILE:LINENO)
    27     Specified psImage type, psPtr, is not supported.
     27    Specified psImage type, psBool, is not supported.
    2828
    2929---> TESTPOINT PASSED (psImagePixelInterpolate{psImagePixelInterpolate} | tst_psImageInterpolate.c)
  • trunk/psLib/test/image/verified/tst_psImageManip.stderr

    r3446 r3682  
    424424    Specified interpolation mode, -1, is unsupported.
    425425<DATE><TIME>|<HOST>|E|psImageResample (FILE:LINENO)
    426     Specified psImage type, psPtr, is not supported.
     426    Specified psImage type, psBool, is not supported.
    427427
    428428---> TESTPOINT PASSED (psImage{psImageResample} | tst_psImageManip.c)
  • trunk/psLib/test/runTest

    r3599 r3682  
    2626#
    2727#  $Revison:  $  $Name: not supported by cvs2svn $
    28 #  $Date: 2005-03-31 23:37:09 $
     28#  $Date: 2005-04-07 20:27:41 $
    2929#
    3030#  Copyright 2004 Maui High Performance Computering Center, University of Hawaii
     
    144144            s/v\d+.\d+.\d+/vX.X.X/g;
    145145
     146            if (m/TestPoint:\s*([^\*]+)/) {
     147                $testfile = $1;
     148            }
     149            if (m/^---> TESTPOINT\s(\S+)/) {
     150                print "\t$testfile- $1\n";
     151            }
     152
    146153            # Filter lines with malloc.  This is an artifact of memory testing
    147154            # with the Mac testbed
     
    177184            s/v\d+.\d+.\d+/vX.X.X/g;
    178185
     186            if (m/ TestPoint:\s*([^\*]+)/) {
     187                $testfile = $1;
     188            }
     189            if (m/^---> TESTPOINT\s(\S+)/) {
     190                print "\t$testfile- $1\n";
     191            }
     192
    179193            # Filter lines with malloc.  This is an artifact of memory testing
    180194            # with the Mac testbed
     195
    181196            if ( !m/\*\*\*\smalloc/ ) {
    182197                print MODFILE ($_);
  • trunk/psLib/test/sysUtils/tst_psAbort.c

    r3264 r3682  
    88 *  @author  Eric Van Alst, MHPCC
    99 *
    10  *  @version $Revision: 1.4 $  $Name: not supported by cvs2svn $
    11  *  @date  $Date: 2005-02-17 19:26:25 $
     10 *  @version $Revision: 1.5 $  $Name: not supported by cvs2svn $
     11 *  @date  $Date: 2005-04-07 20:27:42 $
    1212 *
    1313 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
    1414 */
    1515
    16 #include "pslib.h"
     16#include "pslib_strict.h"
    1717#include "psTest.h"
    1818
  • trunk/psLib/test/sysUtils/tst_psConfigure.c

    r3264 r3682  
    1111 *  @author  Ross Harman, MHPCC
    1212 *
    13  *  @version $Revision: 1.2 $  $Name: not supported by cvs2svn $
    14  *  @date  $Date: 2005-02-17 19:26:25 $
     13 *  @version $Revision: 1.3 $  $Name: not supported by cvs2svn $
     14 *  @date  $Date: 2005-04-07 20:27:42 $
    1515 *
    1616 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    1818 */
    1919
    20 #include "pslib.h"
     20#include "pslib_strict.h"
    2121#include "psTest.h"
    2222
  • trunk/psLib/test/sysUtils/tst_psError.c

    r3264 r3682  
    1313 *  @author  Eric Van Alst, MHPCC
    1414 *
    15  *  @version $Revision: 1.17 $  $Name: not supported by cvs2svn $
    16  *  @date  $Date: 2005-02-17 19:26:25 $
     15 *  @version $Revision: 1.18 $  $Name: not supported by cvs2svn $
     16 *  @date  $Date: 2005-04-07 20:27:42 $
    1717 *
    1818 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    2323#include <stdlib.h>
    2424#include <string.h>
    25 #include "pslib.h"
     25#include "pslib_strict.h"
    2626#include "psTest.h"
    2727
  • trunk/psLib/test/sysUtils/tst_psLogMsg.c

    r2204 r3682  
    55 *****************************************************************************/
    66#include <stdio.h>
    7 #include "pslib.h"
     7#include "pslib_strict.h"
    88#include "psTest.h"
    99
  • trunk/psLib/test/sysUtils/tst_psMemory.c

    r3264 r3682  
    66*  @author Robert DeSonia, MHPCC
    77*
    8 *  @version $Revision: 1.31 $ $Name: not supported by cvs2svn $
    9 *  @date $Date: 2005-02-17 19:26:25 $
     8*  @version $Revision: 1.32 $ $Name: not supported by cvs2svn $
     9*  @date $Date: 2005-04-07 20:27:42 $
    1010*
    1111*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
    1212*/
    13 
    14 // need to allow malloc for callback use
    15 #define PS_ALLOW_MALLOC 1
    1613
    1714#include <unistd.h>
     
    2421
    2522#include "psTest.h"
    26 #include "pslib.h"
     23#include "pslib.h" // need to allow malloc for callback use
    2724
    2825static psS32 TPFreeReferencedMemory( void );
  • trunk/psLib/test/sysUtils/tst_psString.c

    r3264 r3682  
    1717 *  @author  Eric Van Alst, MHPCC
    1818 *
    19  *  @version $Revision: 1.12 $  $Name: not supported by cvs2svn $
    20  *  @date  $Date: 2005-02-17 19:26:25 $
     19 *  @version $Revision: 1.13 $  $Name: not supported by cvs2svn $
     20 *  @date  $Date: 2005-04-07 20:27:42 $
    2121 *
    2222 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    2525
    2626#include <string.h>
    27 #include "pslib.h"
     27#include "pslib_strict.h"
    2828#include "psTest.h"
    2929
  • trunk/psLib/test/sysUtils/tst_psStringCopy.c

    r3264 r3682  
    1717 *  @author  Eric Van Alst, MHPCC
    1818 *
    19  *  @version $Revision: 1.12 $  $Name: not supported by cvs2svn $
    20  *  @date  $Date: 2005-02-17 19:26:25 $
     19 *  @version $Revision: 1.13 $  $Name: not supported by cvs2svn $
     20 *  @date  $Date: 2005-04-07 20:27:42 $
    2121 *
    2222 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    2525
    2626#include <string.h>
    27 #include "pslib.h"
     27#include "pslib_strict.h"
    2828#include "psTest.h"
    2929
  • trunk/psLib/test/sysUtils/tst_psTrace.c

    r3541 r3682  
    66 *****************************************************************************/
    77#include <stdio.h>
    8 #include "pslib.h"
     8#include "pslib_strict.h"
    99#include "psTest.h"
    1010
  • trunk/psLib/test/tst_template.c

    r3533 r3682  
    66*  @author Robert DeSonia, MHPCC
    77*
    8 *  @version $Revision: 1.5 $ $Name: not supported by cvs2svn $
    9 *  @date $Date: 2005-03-28 22:54:59 $
     8*  @version $Revision: 1.6 $ $Name: not supported by cvs2svn $
     9*  @date $Date: 2005-04-07 20:27:41 $
    1010*
    1111*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    1313
    1414#include "psTest.h"
    15 #include "pslib.h"
     15#include "pslib_strict.h"
    1616
    1717static psS32 test1( void );
Note: See TracChangeset for help on using the changeset viewer.