IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 9, 2004, 1:34:58 PM (22 years ago)
Author:
desonia
Message:

cleanup of some indent-induced madness.

File:
1 edited

Legend:

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

    r1426 r1440  
    1010 *  @author George Gusciora, MHPCC
    1111 *
    12  *  @version $Revision: 1.22 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2004-08-09 22:44:25 $
     12 *  @version $Revision: 1.23 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2004-08-09 23:34:57 $
    1414 *
    1515 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    7777
    7878/** Do Statistics on an array.  Returns a status value. \ingroup MathGroup */
    79 psStats *psVectorStats(psStats * stats, ///< stats structure defines stats to be calculated and how
    80                        psVector * in,   ///< Vector to be analysed: must be F32
    81                        psVector * mask, ///< Ignore elements where (maskVector & maskVal) != 0: must be INT
     79psStats* psVectorStats(psStats* stats, ///< stats structure defines stats to be calculated and how
     80                       psVector* in,   ///< Vector to be analysed: must be F32
     81                       psVector* mask, ///< Ignore elements where (maskVector & maskVal) != 0: must be INT
    8282                       // or NULL
    8383                       unsigned int maskVal     ///< Only mask elements with one of these bits set in
     
    8686
    8787/** A constructor for the stats structure.*/
    88 psStats *psStatsAlloc(psStatsOptions options);  ///< Statistics to measure
     88psStats* psStatsAlloc(psStatsOptions options);  ///< Statistics to measure
    8989
    9090/******************************************************************************
     
    9595typedef struct
    9696{
    97     psVector *bounds;           ///< Bounds for the bins (type F32)
    98     psVector *nums;             ///< Number in each of the bins (INT)
     97    psVector* bounds;           ///< Bounds for the bins (type F32)
     98    psVector* nums;             ///< Number in each of the bins (INT)
    9999    int minNum;                 ///< Number below the minimum
    100100    int maxNum;                 ///< Number above the maximum
     
    104104
    105105/** Constructor \ingroup MathGroup */
    106 psHistogram *psHistogramAlloc(float lower,      ///< Lower limit for the bins
     106psHistogram* psHistogramAlloc(float lower,      ///< Lower limit for the bins
    107107                              float upper,      ///< Upper limit for the bins
    108108                              int n);   ///< Number of bins
    109109
    110110/** Generic constructor \ingroup MathGroup */
    111 psHistogram *psHistogramAllocGeneric(const psVector * restrict bounds); ///< Bounds for the bins
     111psHistogram* psHistogramAllocGeneric(const psVector* restrict bounds); ///< Bounds for the bins
    112112
    113113/** Calculate a histogram \ingroup MathGroup **/
    114 psHistogram *psVectorHistogram(psHistogram * out,       ///< Histogram data
    115                                const psVector * restrict in,    ///< Vector to analyse
    116                                const psVector * restrict mask,  ///< Mask dat for input vector
     114psHistogram* psVectorHistogram(psHistogram* out,       ///< Histogram data
     115                               const psVector* restrict in,    ///< Vector to analyse
     116                               const psVector* restrict mask,  ///< Mask dat for input vector
    117117                               unsigned int maskVal);   ///< Mask value
    118118
    119 bool p_psGetStatValue(const psStats * stats, double *value);
     119bool p_psGetStatValue(const psStats* stats, double *value);
    120120
    121121/// @}
Note: See TracChangeset for help on using the changeset viewer.