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/collections/psVector.h

    r1426 r1440  
    1212 *  @author Ross Harman, MHPCC
    1313 *
    14  *  @version $Revision: 1.17 $ $Name: not supported by cvs2svn $
    15  *  @date $Date: 2004-08-09 22:44:25 $
     14 *  @version $Revision: 1.18 $ $Name: not supported by cvs2svn $
     15 *  @date $Date: 2004-08-09 23:34:57 $
    1616 *
    1717 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    3838
    3939    union {
    40         psU8 *U8;               ///< Unsigned 8-bit integer data.
    41         psU16 *U16;             ///< Unsigned 16-bit integer data.
    42         psU32 *U32;             ///< Unsigned 32-bit integer data.
    43         psU64 *U64;             ///< Unsigned 64-bit integer data.
    44         psS8 *S8;               ///< Signed 8-bit integer data.
    45         psS16 *S16;             ///< Signed 16-bit integer data.
    46         psS32 *S32;             ///< Signed 32-bit integer data.
    47         psS64 *S64;             ///< Signed 64-bit integer data.
    48         psF32 *F32;             ///< Single-precision float data.
    49         psF64 *F64;             ///< Double-precision float data.
    50         psC32 *C32;             ///< Single-precision complex data.
    51         psC64 *C64;             ///< Double-precision complex data.
     40        psU8* U8;               ///< Unsigned 8-bit integer data.
     41        psU16* U16;             ///< Unsigned 16-bit integer data.
     42        psU32* U32;             ///< Unsigned 32-bit integer data.
     43        psU64* U64;             ///< Unsigned 64-bit integer data.
     44        psS8* S8;               ///< Signed 8-bit integer data.
     45        psS16* S16;             ///< Signed 16-bit integer data.
     46        psS32* S32;             ///< Signed 32-bit integer data.
     47        psS64* S64;             ///< Signed 64-bit integer data.
     48        psF32* F32;             ///< Single-precision float data.
     49        psF64* F64;             ///< Double-precision float data.
     50        psC32* C32;             ///< Single-precision complex data.
     51        psC64* C64;             ///< Double-precision complex data.
    5252        psPTR V;                ///< Pointer to data.
    5353    } data;                     ///< Union for data types.
     
    6565 * Uses psLib memory allocation functions to create a vector collection of data as defined by the psType type.
    6666 *
    67  * @return psVector*: Pointer to psVector.
     67 * @return psVector* : Pointer to psVector.
    6868 *
    6969 */
    70 psVector *psVectorAlloc(unsigned int nalloc,    ///< Total number of elements to make available.
     70psVector* psVectorAlloc(unsigned int nalloc,    ///< Total number of elements to make available.
    7171                        psElemType dataType     ///< Type of data to be held by vector.
    7272                       );
     
    7777 * according to the psType type member contained within the vector.
    7878 *
    79  * @return psVector*: Pointer to psVector.
     79 * @return psVector* : Pointer to psVector.
    8080 *
    8181 */
    82 psVector *psVectorRealloc(unsigned int nalloc,  ///< Total number of elements to make available.
    83                           psVector * restrict psVec     ///< Vector to reallocate.
     82psVector* psVectorRealloc(unsigned int nalloc,  ///< Total number of elements to make available.
     83                          psVector* restrict psVec     ///< Vector to reallocate.
    8484                         );
    8585
     
    8989 * according to the psElemType type parameter.
    9090 *
    91  * @return psVector*: Pointer to psVector.
     91 * @return psVector* : Pointer to psVector.
    9292 *
    9393 */
    94 psVector *psVectorRecycle(psVector * restrict psVec,
     94psVector* psVectorRecycle(psVector* restrict psVec,
    9595                          ///< Vector to recycle.  If NULL, a new vector is created.  No effort taken to
    9696                          // preserve the values.
     
    104104 *  all non-complex data types.
    105105 *
    106  *  @return  psFloatArray*: Pointer to sorted psFloatArray.
     106 *  @return  psFloatArray* : Pointer to sorted psFloatArray.
    107107 */
    108108
    109 psVector *psVectorSort(psVector * restrict outVector,   ///< the output vector to recycle, or NULL if new
     109psVector* psVectorSort(psVector* restrict outVector,   ///< the output vector to recycle, or NULL if new
    110110                       // vector desired.
    111                        const psVector * restrict inVector       ///< the vector to sort.
     111                       const psVector* restrict inVector       ///< the vector to sort.
    112112                      );
    113113
     
    117117 *  sorted float values based on pre-sort index positions. 
    118118 *
    119  *  @return  psIntArray*: Pointer to psIntArray of sorted indices.
     119 *  @return  psIntArray* : Pointer to psIntArray of sorted indices.
    120120 */
    121121
    122 psVector *psVectorSortIndex(psVector * restrict outVector, const psVector * restrict inVector);
     122psVector* psVectorSortIndex(psVector* restrict outVector, const psVector* restrict inVector);
    123123
    124124/// @}
Note: See TracChangeset for help on using the changeset viewer.