palOne2One.c   palOne2One.c 
skipping to change at line 39 skipping to change at line 39
* - palDcs2c * - palDcs2c
* - palDd2tf * - palDd2tf
* - palDimxv * - palDimxv
* - palDm2av * - palDm2av
* - palDjcl * - palDjcl
* - palDmxm * - palDmxm
* - palDmxv * - palDmxv
* - palDpav * - palDpav
* - palDr2af * - palDr2af
* - palDr2tf * - palDr2tf
* - palDrange
* - palDranrm * - palDranrm
* - palDsep * - palDsep
* - palDsepv * - palDsepv
* - palDtf2d * - palDtf2d
* - palDtf2r * - palDtf2r
* - palDvdv * - palDvdv
* - palDvn * - palDvn
* - palDvxv * - palDvxv
* - palEpb * - palEpb
* - palEpb2d * - palEpb2d
* - palEpj * - palEpj
* - palEpj2d * - palEpj2d
* - palEqeqx * - palEqeqx
* - palFk5hz * - palFk5hz
* - palGmst * - palGmst
* - palGmsta * - palGmsta
* - palHfk5z * - palHfk5z
* Authors: * Authors:
* TIMJ: Tim Jenness (JAC, Hawaii) * TIMJ: Tim Jenness (JAC, Hawaii)
* DSB: David S Berry (JAC, Hawaii)
* {enter_new_authors_here} * {enter_new_authors_here}
* Notes: * Notes:
* - Do not call these functions from other PAL functions. Always use * - Do not call these functions from other PAL functions. Always use
* the SOFA routines directly in new code. * the SOFA routines directly in new code.
* - These are implemented as real functions rather than C preprocessor * - These are implemented as real functions rather than C preprocessor
* macros so there may be a performance penalty in using the PAL * macros so there may be a performance penalty in using the PAL
* version instead of the SOFA version. * version instead of the SOFA version.
* - Routines that take MJDs have SOFA equivalents that have an explicit * - Routines that take MJDs have SOFA equivalents that have an explicit
* MJD offset included. * MJD offset included.
* - palEqeqx, palGmst and palGmsta use the IAU 2006 precession model. * - palEqeqx, palGmst and palGmsta use the IAU 2006 precession model.
* History: * History:
* 2012-02-10 (TIMJ): * 2012-02-10 (TIMJ):
* Initial version * Initial version
* 2012-03-23 (TIMJ): * 2012-03-23 (TIMJ):
* Update prologue. * Update prologue.
* 2012-05-09 (DSBJ):
* Move palDrange into a separate file.
* {enter_further_changes_here} * {enter_further_changes_here}
* Copyright: * Copyright:
* Copyright (C) 2012 Science and Technology Facilities Council. * Copyright (C) 2012 Science and Technology Facilities Council.
* All Rights Reserved. * All Rights Reserved.
* Licence: * Licence:
* This program is free software; you can redistribute it and/or * This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as * modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 3 of * published by the Free Software Foundation; either version 3 of
skipping to change at line 172 skipping to change at line 174
} }
void palDr2af ( int ndp, double angle, char *sign, int idmsf[4] ) { void palDr2af ( int ndp, double angle, char *sign, int idmsf[4] ) {
iauA2af( ndp, angle, sign, idmsf ); iauA2af( ndp, angle, sign, idmsf );
} }
void palDr2tf( int ndp, double angle, char *sign, int ihmsf[4] ) { void palDr2tf( int ndp, double angle, char *sign, int ihmsf[4] ) {
iauA2tf( ndp, angle, sign, ihmsf ); iauA2tf( ndp, angle, sign, ihmsf );
} }
double palDrange ( double angle ) {
return iauAnpm( angle );
}
double palDranrm ( double angle ) { double palDranrm ( double angle ) {
return iauAnp( angle ); return iauAnp( angle );
} }
double palDsep ( double a1, double b1, double a2, double b2 ) { double palDsep ( double a1, double b1, double a2, double b2 ) {
return iauSeps( a1, b1, a2, b2 ); return iauSeps( a1, b1, a2, b2 );
} }
double palDsepv ( double v1[3], double v2[3] ) { double palDsepv ( double v1[3], double v2[3] ) {
return iauSepp( v1, v2 ); return iauSepp( v1, v2 );
 End of changes. 4 change blocks. 
5 lines changed or deleted 3 lines changed or added

This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/