10 typedef std::complex<double> complex;
12 static const int FF_LEN = 7;
13 static const int FS_LEN = 4;
25 static const int NA = 101;
28 complex FFa[NA][FF_LEN];
29 double FSa[NA][FS_LEN];
32 static const int NB = 121;
33 static const int MB = 15;
36 complex FFb[NB][MB][FF_LEN];
37 double FSb[NB][FS_LEN];
40 static const int NC = 146;
41 static const int MC = 31;
45 complex FFc[NC][MC][FF_LEN];
46 double FSc[NC][FS_LEN];
49 static const int ND = 81;
50 static const int MD = 15;
54 complex FFd[ND][MD][FF_LEN];
55 double FSd[ND][FS_LEN];
58 bool FillFromTable(
const char *tableLocation);