IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 19, 2006, 2:17:21 PM (20 years ago)
Author:
jhoblitt
Message:

rename p_psTimeCopy() -> psTimeCopy() as it should be a public interface

File:
1 edited

Legend:

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

    r8776 r9665  
    88 *  @author Robert Daniel DeSonia, MHPCC
    99 *
    10  *  @version $Revision: 1.39 $ $Name: not supported by cvs2svn $
    11  *  @date $Date: 2006-09-08 02:33:23 $
     10 *  @version $Revision: 1.40 $ $Name: not supported by cvs2svn $
     11 *  @date $Date: 2006-10-20 00:17:21 $
    1212 *
    1313 *  Copyright 2005 Maui High Performance Computing Center, University of Hawaii
     
    756756    PS_ASSERT_PTR_NON_NULL(time,NULL);
    757757    //Create a copy of the input time that can be manipulated/changed (input time is const).
    758     psTime *in = p_psTimeCopy(time);
     758    psTime *in = psTimeCopy(time);
    759759    if (in->type != PS_TIME_UT1) {
    760760        in = psTimeConvert(in, PS_TIME_UT1);
     
    13011301            from = psTimeFromMJD(fromMJD);
    13021302        } else {
    1303             from = p_psTimeCopy(fromTime);
     1303            from = psTimeCopy(fromTime);
    13041304        }
    13051305        if (toTime == NULL) {
    13061306            to = psTimeFromMJD(toMJD);
    13071307        } else {
    1308             to = p_psTimeCopy(toTime);
     1308            to = psTimeCopy(toTime);
    13091309        }
    13101310        //Calculate the earthpoles and quaternions corresponding to each time (from, to).
     
    13341334            from = psTimeFromMJD(fromMJD);
    13351335        } else {
    1336             from = p_psTimeCopy(fromTime);
     1336            from = psTimeCopy(fromTime);
    13371337        }
    13381338        if (toTime == NULL) {
    13391339            to = psTimeFromMJD(toMJD);
    13401340        } else {
    1341             to = p_psTimeCopy(toTime);
     1341            to = psTimeCopy(toTime);
    13421342        }
    13431343        //Calculate the earthpoles and quaternions corresponding to each time (from, to).
     
    13761376            from = psTimeFromMJD(fromMJD);
    13771377        } else {
    1378             from = p_psTimeCopy(fromTime);
     1378            from = psTimeCopy(fromTime);
    13791379        }
    13801380        if (toTime == NULL) {
    13811381            to = psTimeFromMJD(toMJD);
    13821382        } else {
    1383             to = p_psTimeCopy(toTime);
     1383            to = psTimeCopy(toTime);
    13841384        }
    13851385
Note: See TracChangeset for help on using the changeset viewer.