IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Dec 8, 2006, 1:39:56 AM (19 years ago)
Author:
magnier
Message:

changed psVectorStats return to bool

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psModules/src/objects/pmSource.c

    r10382 r10551  
    66 *  @author EAM, IfA: significant modifications.
    77 *
    8  *  @version $Revision: 1.20 $ $Name: not supported by cvs2svn $
    9  *  @date $Date: 2006-12-01 22:05:51 $
     8 *  @version $Revision: 1.21 $ $Name: not supported by cvs2svn $
     9 *  @date $Date: 2006-12-08 11:39:56 $
    1010 *
    1111 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    367367        stats = psStatsAlloc (PS_STAT_CLIPPED_MEAN | PS_STAT_CLIPPED_STDEV);
    368368
    369         stats = psVectorStats (stats, tmpSx, NULL, NULL, 0);
     369        psVectorStats (stats, tmpSx, NULL, NULL, 0);
    370370        psfClump.X  = stats->clippedMean;
    371371        psfClump.dX = stats->clippedStdev;
    372372
    373         stats = psVectorStats (stats, tmpSy, NULL, NULL, 0);
     373        psVectorStats (stats, tmpSy, NULL, NULL, 0);
    374374        psfClump.Y  = stats->clippedMean;
    375375        psfClump.dY = stats->clippedStdev;
     
    499499    psStats *stats  = NULL;
    500500    stats = psStatsAlloc (PS_STAT_MIN | PS_STAT_MAX);
    501     stats = psVectorStats (stats, starsn, NULL, NULL, 0);
     501    psVectorStats (stats, starsn, NULL, NULL, 0);
     502
    502503    psLogMsg ("pmObjects", 3, "SN range: %f - %f\n", stats[0].min, stats[0].max);
    503504    psFree (stats);
Note: See TracChangeset for help on using the changeset viewer.