IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 5, 2004, 9:38:52 AM (22 years ago)
Author:
desonia
Message:

Misc. doxygen polishings.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/psLib/src/astronomy/psTime.c

    r1385 r1393  
    1212 *  @author Ross Harman, MHPCC
    1313 *
    14  *  @version $Revision: 1.11 $ $Name: not supported by cvs2svn $
    15  *  @date $Date: 2004-08-04 23:37:39 $
     14 *  @version $Revision: 1.12 $ $Name: not supported by cvs2svn $
     15 *  @date $Date: 2004-08-05 19:38:51 $
    1616 *
    1717 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    3434/*  DEFINE STATEMENTS                                                         */
    3535/******************************************************************************/
     36
     37/** Number of available leapsecond updates */
     38#define NUM_LEAPSECOND_UPDATES 23
     39
     40/** Maximum length of time string */
     41#define MAX_TIME_STRING_LENGTH 256
     42
     43/** Seconds per minute */
     44#define  SEC_PER_MINUTE 60.0
     45
     46/** Seconds per hour */
     47#define  SEC_PER_HOUR (60.0*SEC_PER_MINUTE)
     48
     49/** Seconds per day */
     50#define  SEC_PER_DAY (24.0*SEC_PER_HOUR)
     51
     52/** Seconds per year */
     53#define  SEC_PER_YEAR (365.0*SEC_PER_DAY)
     54
     55/** Microseconds per day */
     56#define USEC_PER_DAY 86400000000.0
    3657
    3758/** Preprocessor macro to generate error for negative time in struct */
Note: See TracChangeset for help on using the changeset viewer.