MIDI Pipeline Reference Manual  2.8.3
geometry.h
1 /**********************************************************
2 ***********************************************************
3 * European Southern Observatory
4 * VLTI MIDI Data Reduction Software
5 *
6 * Module name: geometry.h
7 * Description:
8 *
9 *
10 * History:
11 * 14-NOV-03 (csabet) Created
12 ***********************************************************
13 **********************************************************/
14 #ifndef _GEOMETRY_H
15 #define _GEOMETRY_H
16 
17 /**********************************************************
18 * Include files
19 **********************************************************/
20 #include "midiLib.h"
21 
22 /**********************************************************
23 * Constant definitions
24 **********************************************************/
25 
26 /**********************************************************
27 * Type definitions
28 **********************************************************/
29 
30 /**********************************************************
31 * Global Variables
32 **********************************************************/
33 
34 /**********************************************************
35 * Function Prototypes
36 **********************************************************/
37 void computeUVW (
38  double t1x,
39  double t1y,
40  double t1z,
41  double t2x,
42  double t2y,
43  double t2z,
44  double time,
45  double RA,
46  double Dec,
47  UVW *uvw);
48 
49 /*********************************************************/
50 #endif
51 /*********************************************************/
52 /*********************************************************/
53