00001 /********************************************************** 00002 *********************************************************** 00003 * European Southern Observatory 00004 * VLTI MIDI Data Reduction Software 00005 * 00006 * Module name: geometry.h 00007 * Description: 00008 * 00009 * 00010 * History: 00011 * 14-NOV-03 (csabet) Created 00012 *********************************************************** 00013 **********************************************************/ 00014 #ifndef _GEOMETRY_H 00015 #define _GEOMETRY_H 00016 00017 /********************************************************** 00018 * Include files 00019 **********************************************************/ 00020 #include "midiLib.h" 00021 00022 /********************************************************** 00023 * Constant definitions 00024 **********************************************************/ 00025 00026 /********************************************************** 00027 * Type definitions 00028 **********************************************************/ 00029 00030 /********************************************************** 00031 * Global Variables 00032 **********************************************************/ 00033 00034 /********************************************************** 00035 * Function Prototypes 00036 **********************************************************/ 00037 void computeUVW ( 00038 double t1x, 00039 double t1y, 00040 double t1z, 00041 double t2x, 00042 double t2y, 00043 double t2z, 00044 double time, 00045 double RA, 00046 double Dec, 00047 UVW *uvw); 00048 00049 /*********************************************************/ 00050 #endif 00051 /*********************************************************/ 00052 /*********************************************************/ 00053