IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 7163


Ignore:
Timestamp:
May 22, 2006, 12:46:01 PM (20 years ago)
Author:
Paul Price
Message:

Changing psStats to use "long" for counts.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/math/psStats.h

    r6348 r7163  
    1414 *  @author GLG, MHPCC
    1515 *
    16  *  @version $Revision: 1.51 $ $Name: not supported by cvs2svn $
    17  *  @date $Date: 2006-02-07 23:39:24 $
     16 *  @version $Revision: 1.52 $ $Name: not supported by cvs2svn $
     17 *  @date $Date: 2006-05-22 22:46:01 $
    1818 *
    1919 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    6868    double robustUQ;                   ///< robust upper quartile
    6969    double robustLQ;                   ///< robust lower quartile
    70     int robustN50;                     ///< Number of points in Gaussian fit.  XXX: This is currently never set.
     70    long robustN50;                    ///< Number of points in Gaussian fit; XXX: This is currently unused.
    7171    double fittedMean;                 ///< robust mean of data
    7272    double fittedStdev;                ///< robust standard deviation of data
    73     int fittedNfit;                    ///< Number of points in Gaussian fit
     73    long fittedNfit;                   ///< Number of points in Gaussian fit; XXX: This is currently unused
    7474    double clippedMean;                ///< Nsigma clipped mean
    7575    double clippedStdev;               ///< standard deviation after clipping
    76     int clippedNvalues;                ///< Number of data points used for clipped mean:  This value is never used.
     76    long clippedNvalues;               ///< Number of data points used for clipped mean.
    7777    double clipSigma;                  ///< Nsigma used for clipping; user input
    7878    int clipIter;                      ///< Number of clipping iterations; user input
     
    8080    double max;                        ///< maximum data value in array
    8181    double binsize;                    ///< binsize for robust fit (input/ouput)
    82     int nSubsample;                    ///< maxinum number of measurements (input)
     82    long nSubsample;                   ///< maxinum number of measurements (input)
    8383    psStatsOptions options;            ///< bitmask of calculated values
    8484}
Note: See TracChangeset for help on using the changeset viewer.