IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Apr 28, 2005, 11:17:02 PM (21 years ago)
Author:
magnier
Message:

checking in the versions of the files below, incorporating the changes
I made and have already submitted to bugzilla. these files should be
replaced with the versions contributed on the main trunk by MHPCC.
I will tag this state with eam-psphot-1

src/astronomy/psMetadata.c src/astronomy/psMetadata.h
src/collections/psVector.c src/collections/psVector.h
src/dataManip/psMinimize.c src/dataManip/psMinimize.h
src/image/psImage.c src/image/psImage.h src/sysUtils/psTrace.c
src/sysUtils/psTrace.h

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/eam-psphot-branch/psLib/src/collections/psVector.c

    r3476 r3788  
    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.36.4.1 $ $Name: not supported by cvs2svn $
     12*  @date $Date: 2005-04-29 09:17:02 $
    1313*
    1414*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    540540    }
    541541}
     542
     543// XXX EAM a utility function
     544bool p_psVectorPrint (FILE *f, psVector *a, char *name)
     545{
     546
     547    fprintf (f, "vector: %s\n", name);
     548
     549    for (int i = 0; i < a[0].n; i++) {
     550        fprintf (f, "%f\n", p_psVectorGetElementF64(a, i));
     551    }
     552    fprintf (f, "\n");
     553    return (true);
     554}
     555
Note: See TracChangeset for help on using the changeset viewer.