Changeset 11618
- Timestamp:
- Feb 2, 2007, 8:01:42 PM (19 years ago)
- Location:
- trunk/psLib/src
- Files:
-
- 5 edited
-
astro/psCoord.c (modified) (2 diffs)
-
astro/psEarthOrientation.c (modified) (3 diffs)
-
sys/psLine.c (modified) (1 diff)
-
sys/psLine.h (modified) (2 diffs)
-
sys/psString.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/psLib/src/astro/psCoord.c
r11616 r11618 10 10 * @author GLG, MHPCC 11 11 * 12 * @version $Revision: 1.13 1$ $Name: not supported by cvs2svn $13 * @date $Date: 2007-02-03 0 5:35:30$12 * @version $Revision: 1.132 $ $Name: not supported by cvs2svn $ 13 * @date $Date: 2007-02-03 06:01:42 $ 14 14 * 15 15 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 531 531 psF64 theta = 0.0; 532 532 psF64 phi = 0.0; 533 psF64 x , y, R;533 psF64 x = 0, y = 0, R = 0; 534 534 535 535 psProjectionClass class = PS_PROJ_NONE; -
trunk/psLib/src/astro/psEarthOrientation.c
r10999 r11618 8 8 * @author Robert Daniel DeSonia, MHPCC 9 9 * 10 * @version $Revision: 1.4 3$ $Name: not supported by cvs2svn $11 * @date $Date: 2007-0 1-09 22:38:52 $10 * @version $Revision: 1.44 $ $Name: not supported by cvs2svn $ 11 * @date $Date: 2007-02-03 06:01:42 $ 12 12 * 13 13 * Copyright 2005 Maui High Performance Computing Center, University of Hawaii … … 1056 1056 SEC_TO_RAD(0.00001149)*t4; 1057 1057 1058 // L â Omega (L = Mean Longitude of the Moon, Omega = F4)1058 // L â Omega (L = Mean Longitude of the Moon, Omega = F4) 1059 1059 F[2] = DEG_TO_RAD(93.27209062) + 1060 1060 SEC_TO_RAD(1739527262.8478)*t - … … 1175 1175 1176 1176 //Implementation adapted from PM_GRAVI in interp.f from hpiers.obspm.fr/eop-pc/models/interp.f 1177 double arg[6] ;1177 double arg[6] = {0.0, 0.0, 0.0, 0.0, 0.0, 0.0}; 1178 1178 arg[0] = (67310.54841 + 1179 1179 (876600.0*3600.0 + 8640184.812866)*t -
trunk/psLib/src/sys/psLine.c
r11617 r11618 9 9 #include "psConstants.h" 10 10 #include "psLine.h" 11 #include "psString.h" 11 12 #include "psMemory.h" 12 13 -
trunk/psLib/src/sys/psLine.h
r11248 r11618 9 9 * @author David Robbins, MHPCC 10 10 * 11 * @version $Revision: 1. 5$ $Name: not supported by cvs2svn $12 * @date $Date: 2007-0 1-23 22:47:23$11 * @version $Revision: 1.6 $ $Name: not supported by cvs2svn $ 12 * @date $Date: 2007-02-03 06:01:42 $ 13 13 * 14 14 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 20 20 /// @addtogroup SysUtils System Utilities 21 21 /// @{ 22 23 #include "psString.h"24 22 25 23 /** Structure to carry a dynamic string */ -
trunk/psLib/src/sys/psString.c
r11617 r11618 13 13 * @author David Robbins, MHPCC 14 14 * 15 * @version $Revision: 1. 49$ $Name: not supported by cvs2svn $16 * @date $Date: 2007-02-03 0 5:54:08$15 * @version $Revision: 1.50 $ $Name: not supported by cvs2svn $ 16 * @date $Date: 2007-02-03 06:01:42 $ 17 17 * 18 18 * Copyright 2004-2005 Maui High Performance Computing Center, University of Hawaii … … 118 118 PS_ASSERT_PTR_NON_NULL(format, 0); 119 119 120 size_t length ; // complete string length (sans \0)121 size_t oldLength ; // original string length (sans \0)122 ssize_t tailLength ; // length of string to append120 size_t length = 0; // complete string length (sans \0) 121 size_t oldLength = 0; // original string length (sans \0) 122 ssize_t tailLength = 0; // length of string to append 123 123 124 124 if (*dest) {
Note:
See TracChangeset
for help on using the changeset viewer.
