MIDI Pipeline Reference Manual  2.8.3
preProcKappa.h
1 /**********************************************************
2 ***********************************************************
3 * European Southern Observatory
4 * VLTI MIDI Data Reduction Software
5 *
6 * Module name: preProcKappa.h
7 * Description:
8 *
9 *
10 * History:
11 * 05-Dec-05 (csabet) Created
12 ***********************************************************
13 **********************************************************/
14 #ifndef _PREPROC_KAPPA_H
15 #define _PREPROC_KAPPA_H
16 
17 /**********************************************************
18 * Include files
19 **********************************************************/
20 
21 /**********************************************************
22 * Constant definitions
23 **********************************************************/
24 
25 /**********************************************************
26 * Type definitions
27 **********************************************************/
28 
29 /**********************************************************
30 * Global Variables
31 **********************************************************/
32 
33 /**********************************************************
34 * Function Prototypes
35 **********************************************************/
36 void preProcKappa (
37  UserOptions *options,
38  FilterData *filterInfo,
39  MidiFiles *fileNames,
40  CompressedData *compressedInterfA,
41  CompressedData *compressedInterfB,
42  CompressedData *compressedPhotomA,
43  CompressedData *compressedPhotomB,
44  ImageFormat *formatInterfA,
45  ImageFormat *formatInterfB,
46  ImageFormat *formatPhotomA,
47  ImageFormat *formatPhotomB,
48  int *error);
49 
50 void organiseKappa (
51  const char *shutter,
52  int newFile,
53  int extNumOfImagingDataFile,
54  MidiFiles *fileNames,
55  int extNumOfImagingDataMask,
56  char *maskFile,
57  ImageFormat *localFormat,
58  ImageFormat *formatInterf,
59  CompressedData *compressedInterf,
60  CompressedData *compressedPhotom,
61  int *error);
62 
63 int compressKappa (
64  const char *shutter,
65  char *inFitsFile,
66  char *maskFile,
67  int extNumOfImagingDataFile,
68  int extNumOfImagingDataMask,
69  CompressedData *compressedInterf,
70  CompressedData *compressedPhotom,
71  int newSet,
72  ImageFormat *format,
73  int numOfFramesMax,
74  int *error);
75 
76 /*********************************************************/
77 #endif
78 /*********************************************************/
79 /*********************************************************/
80