IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 3704


Ignore:
Timestamp:
Apr 18, 2005, 1:13:39 PM (21 years ago)
Author:
evanalst
Message:

Change name psTimeLeapseconds to psTimeLeapSecondDelta. (SDR-13)

Location:
trunk/psLib
Files:
5 edited

Legend:

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

    r3341 r3704  
    1010 *  @author Ross Harman, MHPCC
    1111 *
    12  *  @version $Revision: 1.54 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2005-02-28 23:34:10 $
     12 *  @version $Revision: 1.55 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2005-04-18 23:13:37 $
    1414 *
    1515 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    760760
    761761
    762 psS64 psTimeLeapseconds(const psTime *time1, const psTime *time2)
     762psS64 psTimeLeapSecondDelta(const psTime *time1, const psTime *time2)
    763763{
    764764    psS64 diff = 0;
  • trunk/psLib/src/astro/psTime.h

    r3264 r3704  
    1010 *  @author Ross Harman, MHPCC
    1111 *
    12  *  @version $Revision: 1.22 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2005-02-17 19:26:23 $
     12 *  @version $Revision: 1.23 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2005-04-18 23:13:37 $
    1414 *
    1515 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    155155 *  @return  psS64: leapseconds added between given times
    156156 */
    157 psS64 psTimeLeapseconds(
     157psS64 psTimeLeapSecondDelta(
    158158    const psTime* time1,                ///< First input time.
    159159    const psTime* time2                 ///< Second input time.
  • trunk/psLib/src/astronomy/psTime.c

    r3341 r3704  
    1010 *  @author Ross Harman, MHPCC
    1111 *
    12  *  @version $Revision: 1.54 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2005-02-28 23:34:10 $
     12 *  @version $Revision: 1.55 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2005-04-18 23:13:37 $
    1414 *
    1515 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    760760
    761761
    762 psS64 psTimeLeapseconds(const psTime *time1, const psTime *time2)
     762psS64 psTimeLeapSecondDelta(const psTime *time1, const psTime *time2)
    763763{
    764764    psS64 diff = 0;
  • trunk/psLib/src/astronomy/psTime.h

    r3264 r3704  
    1010 *  @author Ross Harman, MHPCC
    1111 *
    12  *  @version $Revision: 1.22 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2005-02-17 19:26:23 $
     12 *  @version $Revision: 1.23 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2005-04-18 23:13:37 $
    1414 *
    1515 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    155155 *  @return  psS64: leapseconds added between given times
    156156 */
    157 psS64 psTimeLeapseconds(
     157psS64 psTimeLeapSecondDelta(
    158158    const psTime* time1,                ///< First input time.
    159159    const psTime* time2                 ///< Second input time.
  • trunk/psLib/test/astronomy/tst_psTime_03.c

    r3682 r3704  
    1919 *  @author  Ross Harman, MHPCC
    2020 *
    21  *  @version $Revision: 1.13 $  $Name: not supported by cvs2svn $
    22  *  @date  $Date: 2005-04-07 20:27:41 $
     21 *  @version $Revision: 1.14 $  $Name: not supported by cvs2svn $
     22 *  @date  $Date: 2005-04-18 23:13:39 $
    2323 *
    2424 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    170170    time8a = psTimeFromISOTime("2004-12-18T1:00:00.00");
    171171    time8b = psTimeFromISOTime("1972-1-1T1:00:00.00");
    172     out = psTimeLeapseconds(time8a, time8b);
     172    out = psTimeLeapSecondDelta(time8a, time8b);
    173173    printf("%lld\n", (long long int)out);
    174174    printFooter(stdout, "psTime", "Test H - Find number of leapseconds added between two times", true);
Note: See TracChangeset for help on using the changeset viewer.