MIDI Pipeline Reference Manual  2.8.3
procDetRon.h
1 /**********************************************************
2 ***********************************************************
3 * European Southern Observatory
4 * VLTI MIDI Maintenance Templates Software
5 *
6 * Module name: procDetRon.h
7 * Description:
8 *
9 *
10 * History:
11 * 16-Jun-04 (csabet) created
12 ***********************************************************
13 **********************************************************/
14 #ifndef _PROC_DET_RON_H
15 #define _PROC_DET_RON_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 procDetRon (
41  MidiFiles *fileNames,
42  int *error);
43 
44 void computeDetRon (
45  int numOfFiles,
46  ImageFormat *maxFormat,
47  MidiFiles *fileNames,
48  DetRonNoise *noiseProfile,
49  int *error);
50 
51 void compressDetRon (
52  int fileNumber,
53  int numOfFiles,
54  int maxNumOfFrames,
55  char *fileName,
56  int extensionNumber,
57  ImageFormat *format,
58  float *arrayPixel,
59  DetRonNoise *noiseProfile,
60  int *error);
61 
62 void createNoisePattern (
63  int fileNumber,
64  char *inFile,
65  ImageFormat *format,
66  DetRonNoise *noise,
67  int *error);
68 
69 /*********************************************************/
70 #endif
71 /*********************************************************/
72 /*********************************************************/
73