IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 7701


Ignore:
Timestamp:
Jun 26, 2006, 5:48:35 PM (20 years ago)
Author:
jhoblitt
Message:

remove commented code

File:
1 edited

Legend:

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

    r7700 r7701  
    1010 *  @author Ross Harman, MHPCC
    1111 *
    12  *  @version $Revision: 1.87 $ $Name: not supported by cvs2svn $
    13  *  @date $Date: 2006-06-27 03:45:25 $
     12 *  @version $Revision: 1.88 $ $Name: not supported by cvs2svn $
     13 *  @date $Date: 2006-06-27 03:48:35 $
    1414 *
    1515 *  Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii
     
    16141614    // days to adjust from Mar 1, year 0-relative to Jan 1, year 1-relative. Add hours, minutes, and seconds.
    16151615    day += (month * 367 - 1094) / 12 + year % 100 * 1461 / 4 + (year/100 * 36524 + year/400) - 306;
    1616     //outTime->sec = (((day - 1) * SEC_PER_DAY) - 62135596800) + hour*SEC_PER_HOUR
     1616
    16171617    outTime->sec = ((day - 1) * SEC_PER_DAY - 62135596800)
    16181618                   + (hour * SEC_PER_HOUR)
Note: See TracChangeset for help on using the changeset viewer.