IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jan 17, 2005, 10:58:22 AM (22 years ago)
Author:
desonia
Message:

added test for psFitsReadTable.

Location:
trunk/psLib/src/collections
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/collections/psMetadata.c

    r2985 r3025  
    1212*  @author Ross Harman, MHPCC
    1313*
    14 *  @version $Revision: 1.48 $ $Name: not supported by cvs2svn $
    15 *  @date $Date: 2005-01-13 23:27:06 $
     14*  @version $Revision: 1.49 $ $Name: not supported by cvs2svn $
     15*  @date $Date: 2005-01-17 20:58:20 $
    1616*
    1717*  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    495495psMetadataLookupNumTYPE(F64)
    496496psMetadataLookupNumTYPE(S32)
     497psMetadataLookupNumTYPE(Bool)
    497498
    498499psMetadataItem* psMetadataGet(psMetadata *md, psS32 where)
  • trunk/psLib/src/collections/psMetadata.h

    r2975 r3025  
    1111*  @author Ross Harman, MHPCC
    1212*
    13 *  @version $Revision: 1.33 $ $Name: not supported by cvs2svn $
    14 *  @date $Date: 2005-01-13 21:09:39 $
     13*  @version $Revision: 1.34 $ $Name: not supported by cvs2svn $
     14*  @date $Date: 2005-01-17 20:58:20 $
    1515*
    1616*  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    240240);
    241241
     242/** Find an item in the metadata collection based on key name and return its boolean value.
     243 *
     244 *  Items may be found in the metadata by providing a key. If the key is
     245 *  non-unique, the value of the first item is returned. If the item is not found, zero is
     246 *  returned.
     247 *
     248 * @return psBool : Value of metadata item.
     249 */
     250psBool psMetadataLookupBool(
     251    psMetadata *md,            ///< Metadata collection to lookup metadata item.
     252    const char *key,           ///< Name of metadata key.
     253    psBool *status              ///< Status of lookup.
     254);
     255
    242256/** Find an item in the metadata collection based on key name and return its integer value.
    243257 *
  • trunk/psLib/src/collections/psVector.h

    r2204 r3025  
    1111 *  @author Ross Harman, MHPCC
    1212 *
    13  *  @version $Revision: 1.25 $ $Name: not supported by cvs2svn $
    14  *  @date $Date: 2004-10-27 00:57:31 $
     13 *  @version $Revision: 1.26 $ $Name: not supported by cvs2svn $
     14 *  @date $Date: 2005-01-17 20:58:21 $
    1515 *
    1616 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    3737
    3838    union {
     39        psBool B;               ///< Boolean data.
    3940        psU8* U8;               ///< Unsigned 8-bit integer data.
    4041        psU16* U16;             ///< Unsigned 16-bit integer data.
     
    6364/** Allocate a vector.
    6465 *
    65  *  Uses psLib memory allocation functions to create a vector collection of 
     66 *  Uses psLib memory allocation functions to create a vector collection of
    6667 *  data as defined by the psType type.
    6768 *
     
    7576/** Reallocate a vector.
    7677 *
    77  *  Uses psLib memory allocation functions to reallocate a vector collection 
    78  *  of data. The vector is reallocated according to the psType type member 
     78 *  Uses psLib memory allocation functions to reallocate a vector collection
     79 *  of data. The vector is reallocated according to the psType type member
    7980 *  contained within the vector.
    8081 *
     
    8990/** Recycle a vector.
    9091 *
    91  *  Uses psLib memory allocation functions to reallocate a vector collection 
    92  *  of data. The vector is reallocated according to the psElemType type 
     92 *  Uses psLib memory allocation functions to reallocate a vector collection
     93 *  of data. The vector is reallocated according to the psElemType type
    9394 *  parameter.
    9495 *
     
    107108/** Copy a vector, converting types.
    108109 *
    109  *  Performs a deep copy of the elements of one psVector to a new psVector, 
     110 *  Performs a deep copy of the elements of one psVector to a new psVector,
    110111 *  converting numeric types to a specified type.
    111112 *
     
    133134/** Creates an array of indices based on sort ordered of array.
    134135 *
    135  *  Sorts a vector and creates an integer array holding indices of 
    136  *  sorted float values based on pre-sort index positions. 
     136 *  Sorts a vector and creates an integer array holding indices of
     137 *  sorted float values based on pre-sort index positions.
    137138 *
    138139 *  @return  psVector*     vector of the indices of sort.
Note: See TracChangeset for help on using the changeset viewer.