IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 6349


Ignore:
Timestamp:
Feb 7, 2006, 2:00:36 PM (20 years ago)
Author:
gusciora
Message:

Undid the changes to the psElemType.

Location:
trunk/psLib
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/sys/psType.h

    r6348 r6349  
    1010*  @author Ross Harman, MHPCC
    1111*
    12 *  @version $Revision: 1.45 $ $Name: not supported by cvs2svn $
    13 *  @date $Date: 2006-02-07 23:36:15 $
     12*  @version $Revision: 1.46 $ $Name: not supported by cvs2svn $
     13*  @date $Date: 2006-02-08 00:00:35 $
    1414*
    1515*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    7979 */
    8080typedef enum {
    81     PS_TYPE_S8,                         ///< Character.
    82     PS_TYPE_S16,                        ///< Short integer.
    83     PS_TYPE_S32,                        ///< Integer.
    84     PS_TYPE_S64,                        ///< Long integer.
    85     PS_TYPE_U8,                         ///< Unsigned character.
    86     PS_TYPE_U16,                        ///< Unsigned psS16 integer.
    87     PS_TYPE_U32,                        ///< Unsigned integer.
    88     PS_TYPE_U64,                        ///< Unsigned psS64 integer.
    89     PS_TYPE_F32,                        ///< Single-precision Floating point.
    90     PS_TYPE_F64,                        ///< Double-precision floating point.
    91     PS_TYPE_C32,                        ///< Complex numbers consisting of single-precision floating point.
    92     PS_TYPE_C64,                        ///< Complex numbers consisting of double-precision floating point.
    93     PS_TYPE_BOOL                        ///< Boolean.
     81    PS_TYPE_S8   = 0x0101,             ///< Character.
     82    PS_TYPE_S16  = 0x0102,             ///< Short integer.
     83    PS_TYPE_S32  = 0x0104,             ///< Integer.
     84    PS_TYPE_S64  = 0x0108,             ///< Long integer.
     85    PS_TYPE_U8   = 0x0301,             ///< Unsigned character.
     86    PS_TYPE_U16  = 0x0302,             ///< Unsigned psS16 integer.
     87    PS_TYPE_U32  = 0x0304,             ///< Unsigned integer.
     88    PS_TYPE_U64  = 0x0308,             ///< Unsigned psS64 integer.
     89    PS_TYPE_F32  = 0x0404,             ///< Single-precision Floating point.
     90    PS_TYPE_F64  = 0x0408,             ///< Double-precision floating point.
     91    PS_TYPE_C32  = 0x0808,             ///< Complex numbers consisting of single-precision floating point.
     92    PS_TYPE_C64  = 0x0810,             ///< Complex numbers consisting of double-precision floating point.
     93    PS_TYPE_BOOL = 0x1301              ///< Boolean.
    9494} psElemType;
    9595
  • trunk/psLib/test/mathtypes/tst_psVector.c

    r5656 r6349  
    1414 *  @author  Ross Harman, MHPCC
    1515 *
    16  *  @version $Revision: 1.8 $  $Name: not supported by cvs2svn $
    17  *  @date  $Date: 2005-12-02 00:51:48 $
     16 *  @version $Revision: 1.9 $  $Name: not supported by cvs2svn $
     17 *  @date  $Date: 2006-02-08 00:00:36 $
    1818 *
    1919 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    5050{
    5151    psLogSetLevel(PS_LOG_INFO);
     52    psLogSetFormat("HLNM");
    5253
    5354    if ( ! runTestSuite(stderr,"psVector",tests,argc,argv) ) {
Note: See TracChangeset for help on using the changeset viewer.