IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 5057 for trunk/psLib/src/sys


Ignore:
Timestamp:
Sep 15, 2005, 11:22:22 AM (21 years ago)
Author:
drobbin
Message:

Minor changes from new SDRS, prototype code for psArguments

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

Legend:

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

    r4979 r5057  
    1111 *  @author GLG, MHPCC
    1212 *
    13  *  @version $Revision: 1.32 $ $Name: not supported by cvs2svn $
    14  *  @date $Date: 2005-09-09 01:11:22 $
     13 *  @version $Revision: 1.33 $ $Name: not supported by cvs2svn $
     14 *  @date $Date: 2005-09-15 21:22:22 $
    1515 *
    1616 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    107107///< Destinations for log messages
    108108enum {
    109     PS_LOG_NONE,                       ///< turn off logging
    110     PS_LOG_TO_STDERR,                  ///< log to system's stderr
    111     PS_LOG_TO_STDOUT                   ///< log to system's stdout
     109    PS_LOG_TO_NONE = 0,                ///< turn off logging
     110    PS_LOG_TO_STDERR = 1,              ///< log to system's stderr
     111    PS_LOG_TO_STDOUT = 2               ///< log to system's stdout
    112112};
    113113
  • trunk/psLib/src/sys/psTrace.h

    r5012 r5057  
    99 *  @author GLG, MHPCC
    1010 *
    11  *  @version $Revision: 1.39 $ $Name: not supported by cvs2svn $
    12  *  @date $Date: 2005-09-13 00:54:15 $
     11 *  @version $Revision: 1.40 $ $Name: not supported by cvs2svn $
     12 *  @date $Date: 2005-09-15 21:22:22 $
    1313 *
    1414 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    2525 *  \{
    2626 */
     27
     28enum {
     29    PS_TRACE_TO_NONE = 0,             ///< turn off all traces
     30    PS_TRACE_TO_STDOUT = 1,           ///< trace to system's stdout
     31    PS_TRACE_TO_STDERR = 2,           ///< trace to system's stderr
     32};
    2733
    2834/** Functions **************************************************************/
     
    137143 *  @return FILE*:      File Destination
    138144 */
    139 int psTraceGetDestination(void);
     145int psTraceGetDestination();
    140146
    141147/* \} */// End of SystemGroup Functions
  • trunk/psLib/src/sys/psType.h

    r4920 r5057  
    1010*  @author Ross Harman, MHPCC
    1111*
    12 *  @version $Revision: 1.39 $ $Name: not supported by cvs2svn $
    13 *  @date $Date: 2005-08-31 02:07:11 $
     12*  @version $Revision: 1.40 $ $Name: not supported by cvs2svn $
     13*  @date $Date: 2005-09-15 21:22:22 $
    1414*
    1515*  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    105105    PS_DATA_ARRAY,                     ///< psArray
    106106    PS_DATA_BITSET,                    ///< psBitSet
    107     PS_DATA_CELL,                      ///< psCell
    108     PS_DATA_CHIP,                      ///< psChip
     107    //    PS_DATA_CELL,                      ///< psCell
     108    //    PS_DATA_CHIP,                      ///< psChip
    109109    PS_DATA_CUBE,                      ///< psCube
    110110    PS_DATA_FITS,                      ///< psFits
     
    127127    PS_DATA_POLYNOMIAL4D,              ///< psPolynomial4D
    128128    PS_DATA_PROJECTION,                ///< psProjection
    129     PS_DATA_READOUT,                   ///< psReadout
    130     PS_DATA_REGION,                    ///< psRegion
     129    //    PS_DATA_READOUT,                   ///< psReadout
     130    //    PS_DATA_REGION,                    ///< psRegion
    131131    PS_DATA_SCALAR,                    ///< psScalar
    132132    PS_DATA_SPHERE,                    ///< psSphere
Note: See TracChangeset for help on using the changeset viewer.