1 |
cafagna |
3.1 |
* |
2 |
|
|
* $Id$ |
3 |
|
|
* |
4 |
|
|
* $Log$ |
5 |
|
|
* |
6 |
|
|
*CMZ : 2.01/00 05/04/2000 14.35.18 by Marialuigia Ambriola |
7 |
|
|
*CMZ : 2.00/00 03/03/2000 15.39.06 by Francesco Cafagna |
8 |
|
|
*CMZ : 1.00/02 21/02/96 19.03.38 by Francesco Cafagna |
9 |
|
|
*-- Author : Paolo Papini 16/02/96 |
10 |
|
|
SUBROUTINE GPSPEMA(XYZ) |
11 |
|
|
************************************************************************ |
12 |
|
|
* * |
13 |
|
|
* * |
14 |
|
|
* Variables definition: * |
15 |
|
|
* IN: * |
16 |
|
|
* XYZ: 3D vector contining the coordinates in spectrometer frame * |
17 |
|
|
* OUT: * |
18 |
|
|
* XYZ: 3D vector contining the coordinates in MARS * |
19 |
|
|
* * |
20 |
|
|
* Called by:<USER> * |
21 |
|
|
* * |
22 |
|
|
* Called by: * |
23 |
|
|
* Author: Paolo Papini, 16/02/96 10.28.24 * |
24 |
|
|
* * |
25 |
|
|
************************************************************************ |
26 |
|
|
#include "gpgeo.inc" |
27 |
|
|
REAL XYZ(3) |
28 |
|
|
DO I=1,3 |
29 |
|
|
XYZ(I) = XYZ(I)+XYZSOR(I) |
30 |
|
|
ENDDO |
31 |
|
|
RETURN |
32 |
|
|
END |