MIDI Pipeline Reference Manual  2.8.3
midiGlobal.h
1 /**********************************************************
2 ***********************************************************
3 * European Southern Observatory
4 * VLTI MIDI Data Reduction Software
5 *
6 * Module name: midiGlobal.h
7 * Description:
8 *
9 *
10 * History:
11 * 22-Mar-05 (csabet) Created
12 ***********************************************************
13 **********************************************************/
14 #ifndef _MIDI_GLOBAL_H
15 #define _MIDI_GLOBAL_H
16 
17 /**********************************************************
18 * Include files
19 **********************************************************/
20 #include "midiConst.h"
21 
22 /**********************************************************
23 * Constant definitions
24 **********************************************************/
25 
26 /**********************************************************
27 * Enumeration definitions
28 **********************************************************/
29 
30 /**********************************************************
31 * Type definitions
32 **********************************************************/
33 
34 /**********************************************************
35 * Global Variables
36 **********************************************************/
37 extern FILE *midiReportPtr; // Output report file
38 extern char *midiReportName; // Name of event log file
39 extern FILE *midiQcLogPtr; // File pointer for the QC log file
40 extern char *midiQcLogName; // Name of QC log file
41 extern int batchNumber, diagnostic, plotFile, plotDuration, endOfTemplate;
42 extern char outFileDir[MAX_STRING_LENGTH];
43 extern char outRootName[MAX_STRING_LENGTH];
44 extern char batchTemplate[MAX_STRING_LENGTH];
45 extern int rootName;
46 extern char midiMessage[MAX_STRING_LENGTH];
47 extern int *badChannelList;
48 
49 /**********************************************************
50 * Function Prototypes
51 **********************************************************/
52 
53 /*********************************************************/
54 #endif
55 /*********************************************************/
56 /*********************************************************/