IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Nov 8, 2004, 2:36:13 PM (22 years ago)
Author:
harman
Message:

Time config files updates

File:
1 edited

Legend:

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

    r2204 r2301  
    5454 *  @author Ross Harman, MHPCC
    5555 *
    56  *  @version $Revision: 1.17 $ $Name: not supported by cvs2svn $
    57  *  @date $Date: 2004-10-27 00:57:30 $
     56 *  @version $Revision: 1.18 $ $Name: not supported by cvs2svn $
     57 *  @date $Date: 2004-11-09 00:36:13 $
    5858 *
    5959 *  Copyright 2004 Maui High Performance Computing Center, University of Hawaii
     
    9494typedef struct psTime
    9595{
    96     psS64 sec;                          ///< Seconds since epoch, Jan 1, 1970.
    97     psU32 usec;                         ///< Microseconds since last second.
    98     psTimeType type;                    ///< Type of time.
     96    psS64 sec;          ///< Seconds since epoch, Jan 1, 1970.
     97    psU32 usec;         ///< Microseconds since last second.
     98    psTimeType type;    ///< Type of time.
    9999}
    100100psTime;
     101
     102
     103/** Initialize time data.
     104 *
     105 * Reads config and data files associated with various time conversions.
     106 *
     107 * @return  bool: True for success, false for failure.
     108 */
     109bool psTimeInit(char *fileName);
     110
     111/** Free memory persistant time data.
     112 *
     113 * Frees time data to be held in memory until the end of successful program execution.
     114 *
     115 * @return  void: void.
     116 */
     117void psTimeFinalize(void);
    101118
    102119/** Allocate time struct.
     
    179196 *  Calculates the number of leapseconds between two times.
    180197 *
    181  *  @return  long: leapseconds added between given times
     198 *  @return  psS64: leapseconds added between given times
    182199 */
    183200psS64 psTimeLeapseconds(
Note: See TracChangeset for help on using the changeset viewer.