1#if defined(STACK_SIZE) && (STACK_SIZE < 65536)
2# define HISTO_SIZE 9
3#else
4# define HISTO_SIZE 36
5#endif
6
7extern int N;
8extern int nrows;
9extern int or_num_angles;
10
11typedef struct
12{
13  double value;
14  int count;
15}Histo;
16
17Histo add_histo[10][2][HISTO_SIZE][HISTO_SIZE];
18
19void cmd_connection_statistics( )
20{
21  int i,j,k,m;
22
23  for(i=0; i<nrows; i++){
24      for(j=0; j< 2; j++)
25	for(k=0; k< or_num_angles; k++)
26	;
27  }
28}
29