MIDI Pipeline Reference Manual  2.8.3
procAcq.h
1 /**********************************************************
2 ***********************************************************
3 * European Southern Observatory
4 * VLTI MIDI Data Reduction Image Quality Software
5 *
6 * Module name: procAcq.h
7 * Description:
8 *
9 *
10 * History:
11 * 25-Apr-05 (csabet) created
12 ***********************************************************
13 **********************************************************/
14 #ifndef _PROC_ACQ_H
15 #define _PROC_ACQ_H
16 
17 /**********************************************************
18 * Include files
19 **********************************************************/
20 
21 /**********************************************************
22 * Constant definitions
23 **********************************************************/
24 
25 /**********************************************************
26 * Enumeration definitions
27 **********************************************************/
28 
29 /**********************************************************
30 * Type definitions
31 **********************************************************/
32 
33 /**********************************************************
34 * Global Variables
35 **********************************************************/
36 
37 /**********************************************************
38 * Function Prototypes
39 **********************************************************/
40 void procAcq (
41  MidiFiles *fileNames,
42  int *error);
43 
44 void compressAcq (
45  char *inFitsFile,
46  int extNumOfImagingDataFile,
47  ImageQuality *compressed,
48  ImageFormat *format,
49  int *error);
50 
51 void assessImageQuality (
52  char *fileName,
53  ImageQuality *compressed,
54  ImageFormat *format,
55  int *error);
56 
57 /*****************************************************************************/
58 
59 /*********************************************************/
60 #endif
61 /*********************************************************/
62 /*********************************************************/
63