HARM
harm and utilities
 All Data Structures Files Functions Variables Typedefs Macros Pages
set_arrays.c
Go to the documentation of this file.
1 
7 #include "decs.h"
8 
9 
10 
11 
12 void set_arrays()
13 {
14  extern void set_arrays_perpoint_perline(void);
15  extern void set_arrays_multidimen(void);
16  extern void reconstructeno_set_arrays(void);
17 
18 
19  set_arrays_perpoint_perline();
20  set_arrays_multidimen();
21 
22  // below is here since no initialilzation routine for reconstructeno.c
23  reconstructeno_set_arrays();
24 
25  // below is here because no initialization routine for reconstruct.c and wouldn't be allowed since need parallel entrance allowed.
26  // reconstructeno_set_vars();
27 
28 }