Main Page | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Class Members

plNormalRandomTable.h

00001 #ifndef _plRandomTable_h_
00002 #define  _plRandomTable_h_
00003 
00004 /* This is a tabulation of the inverse of repartition function of the Gaussian:
00005     u = F(x) = 0.5 + 0.5 * erf( x/sqrt(2) ).
00006     So, x = F^{-1}(u). This function is tabulated for u in [0.5, 1.0[.
00007     For u in ]0, 0.5], F^{-1}(u) = - F^{-1}(1-u) ). 
00008     We use it to draw from a Gaussian distribution */
00009    
00010  
00011 static const int pl_dim_gauss_table = 2048;
00012 
00013 static const plFloat pl_gauss_table[pl_dim_gauss_table]={
00014 0.0000,0.0003,0.0009,0.0015,0.0022,0.0028,0.0034,0.0040,0.0046,0.0052,0.0058,
00015 0.0064,0.0070,0.0077,0.0083,0.0089,0.0095,0.0101,0.0107,0.0113,0.0119,0.0126,
00016 0.0132,0.0138,0.0144,0.0150,0.0156,0.0162,0.0168,0.0175,0.0181,0.0187,0.0193,
00017 0.0199,0.0205,0.0211,0.0217,0.0223,0.0230,0.0236,0.0242,0.0248,0.0254,0.0260,
00018 0.0266,0.0272,0.0279,0.0285,0.0291,0.0297,0.0303,0.0309,0.0315,0.0321,0.0328,
00019 0.0334,0.0340,0.0346,0.0352,0.0358,0.0364,0.0371,0.0377,0.0383,0.0389,0.0395,
00020 0.0401,0.0407,0.0413,0.0420,0.0426,0.0432,0.0438,0.0444,0.0450,0.0456,0.0463,
00021 0.0469,0.0475,0.0481,0.0487,0.0493,0.0499,0.0505,0.0512,0.0518,0.0524,0.0530,
00022 0.0536,0.0542,0.0548,0.0554,0.0561,0.0567,0.0573,0.0579,0.0585,0.0591,0.0597,
00023 0.0604,0.0610,0.0616,0.0622,0.0628,0.0634,0.0640,0.0646,0.0653,0.0659,0.0665,
00024 0.0671,0.0677,0.0683,0.0689,0.0696,0.0702,0.0708,0.0714,0.0720,0.0726,0.0732,
00025 0.0739,0.0745,0.0751,0.0757,0.0763,0.0769,0.0775,0.0782,0.0788,0.0794,0.0800,
00026 0.0806,0.0812,0.0818,0.0825,0.0831,0.0837,0.0843,0.0849,0.0855,0.0861,0.0867,
00027 0.0874,0.0880,0.0886,0.0892,0.0898,0.0904,0.0910,0.0917,0.0923,0.0929,0.0935,
00028 0.0941,0.0947,0.0954,0.0960,0.0966,0.0972,0.0978,0.0984,0.0990,0.0997,0.1003,
00029 0.1009,0.1015,0.1021,0.1027,0.1034,0.1040,0.1046,0.1052,0.1058,0.1064,0.1070,
00030 0.1077,0.1083,0.1089,0.1095,0.1101,0.1107,0.1114,0.1120,0.1126,0.1132,0.1138,
00031 0.1144,0.1151,0.1157,0.1163,0.1169,0.1175,0.1181,0.1188,0.1194,0.1200,0.1206,
00032 0.1212,0.1218,0.1225,0.1231,0.1237,0.1243,0.1249,0.1255,0.1262,0.1268,0.1274,
00033 0.1280,0.1286,0.1292,0.1299,0.1305,0.1311,0.1317,0.1323,0.1329,0.1336,0.1342,
00034 0.1348,0.1354,0.1360,0.1367,0.1373,0.1379,0.1385,0.1391,0.1397,0.1404,0.1410,
00035 0.1416,0.1422,0.1428,0.1435,0.1441,0.1447,0.1453,0.1459,0.1466,0.1472,0.1478,
00036 0.1484,0.1490,0.1497,0.1503,0.1509,0.1515,0.1521,0.1528,0.1534,0.1540,0.1546,
00037 0.1552,0.1558,0.1565,0.1571,0.1577,0.1583,0.1589,0.1596,0.1602,0.1608,0.1614,
00038 0.1620,0.1627,0.1633,0.1639,0.1645,0.1652,0.1658,0.1664,0.1670,0.1676,0.1683,
00039 0.1689,0.1695,0.1701,0.1707,0.1714,0.1720,0.1726,0.1732,0.1738,0.1745,0.1751,
00040 0.1757,0.1763,0.1770,0.1776,0.1782,0.1788,0.1794,0.1801,0.1807,0.1813,0.1819,
00041 0.1826,0.1832,0.1838,0.1844,0.1850,0.1857,0.1863,0.1869,0.1875,0.1882,0.1888,
00042 0.1894,0.1900,0.1907,0.1913,0.1919,0.1925,0.1932,0.1938,0.1944,0.1950,0.1956,
00043 0.1963,0.1969,0.1975,0.1981,0.1988,0.1994,0.2000,0.2006,0.2013,0.2019,0.2025,
00044 0.2031,0.2038,0.2044,0.2050,0.2056,0.2063,0.2069,0.2075,0.2081,0.2088,0.2094,
00045 0.2100,0.2106,0.2113,0.2119,0.2125,0.2132,0.2138,0.2144,0.2150,0.2157,0.2163,
00046 0.2169,0.2175,0.2182,0.2188,0.2194,0.2200,0.2207,0.2213,0.2219,0.2226,0.2232,
00047 0.2238,0.2244,0.2251,0.2257,0.2263,0.2270,0.2276,0.2282,0.2288,0.2295,0.2301,
00048 0.2307,0.2314,0.2320,0.2326,0.2332,0.2339,0.2345,0.2351,0.2358,0.2364,0.2370,
00049 0.2376,0.2383,0.2389,0.2395,0.2402,0.2408,0.2414,0.2421,0.2427,0.2433,0.2439,
00050 0.2446,0.2452,0.2458,0.2465,0.2471,0.2477,0.2484,0.2490,0.2496,0.2503,0.2509,
00051 0.2515,0.2522,0.2528,0.2534,0.2541,0.2547,0.2553,0.2560,0.2566,0.2572,0.2578,
00052 0.2585,0.2591,0.2597,0.2604,0.2610,0.2616,0.2623,0.2629,0.2635,0.2642,0.2648,
00053 0.2655,0.2661,0.2667,0.2674,0.2680,0.2686,0.2693,0.2699,0.2705,0.2712,0.2718,
00054 0.2724,0.2731,0.2737,0.2743,0.2750,0.2756,0.2762,0.2769,0.2775,0.2782,0.2788,
00055 0.2794,0.2801,0.2807,0.2813,0.2820,0.2826,0.2833,0.2839,0.2845,0.2852,0.2858,
00056 0.2864,0.2871,0.2877,0.2884,0.2890,0.2896,0.2903,0.2909,0.2915,0.2922,0.2928,
00057 0.2935,0.2941,0.2947,0.2954,0.2960,0.2967,0.2973,0.2979,0.2986,0.2992,0.2999,
00058 0.3005,0.3011,0.3018,0.3024,0.3031,0.3037,0.3043,0.3050,0.3056,0.3063,0.3069,
00059 0.3076,0.3082,0.3088,0.3095,0.3101,0.3108,0.3114,0.3121,0.3127,0.3133,0.3140,
00060 0.3146,0.3153,0.3159,0.3166,0.3172,0.3178,0.3185,0.3191,0.3198,0.3204,0.3211,
00061 0.3217,0.3224,0.3230,0.3236,0.3243,0.3249,0.3256,0.3262,0.3269,0.3275,0.3282,
00062 0.3288,0.3295,0.3301,0.3308,0.3314,0.3320,0.3327,0.3333,0.3340,0.3346,0.3353,
00063 0.3359,0.3366,0.3372,0.3379,0.3385,0.3392,0.3398,0.3405,0.3411,0.3418,0.3424,
00064 0.3431,0.3437,0.3444,0.3450,0.3457,0.3463,0.3470,0.3476,0.3483,0.3489,0.3496,
00065 0.3502,0.3509,0.3515,0.3522,0.3528,0.3535,0.3541,0.3548,0.3554,0.3561,0.3567,
00066 0.3574,0.3580,0.3587,0.3593,0.3600,0.3607,0.3613,0.3620,0.3626,0.3633,0.3639,
00067 0.3646,0.3652,0.3659,0.3665,0.3672,0.3678,0.3685,0.3692,0.3698,0.3705,0.3711,
00068 0.3718,0.3724,0.3731,0.3737,0.3744,0.3751,0.3757,0.3764,0.3770,0.3777,0.3783,
00069 0.3790,0.3797,0.3803,0.3810,0.3816,0.3823,0.3830,0.3836,0.3843,0.3849,0.3856,
00070 0.3863,0.3869,0.3876,0.3882,0.3889,0.3896,0.3902,0.3909,0.3915,0.3922,0.3929,
00071 0.3935,0.3942,0.3948,0.3955,0.3962,0.3968,0.3975,0.3982,0.3988,0.3995,0.4001,
00072 0.4008,0.4015,0.4021,0.4028,0.4035,0.4041,0.4048,0.4055,0.4061,0.4068,0.4075,
00073 0.4081,0.4088,0.4094,0.4101,0.4108,0.4114,0.4121,0.4128,0.4134,0.4141,0.4148,
00074 0.4154,0.4161,0.4168,0.4175,0.4181,0.4188,0.4195,0.4201,0.4208,0.4215,0.4221,
00075 0.4228,0.4235,0.4241,0.4248,0.4255,0.4262,0.4268,0.4275,0.4282,0.4288,0.4295,
00076 0.4302,0.4308,0.4315,0.4322,0.4329,0.4335,0.4342,0.4349,0.4356,0.4362,0.4369,
00077 0.4376,0.4383,0.4389,0.4396,0.4403,0.4409,0.4416,0.4423,0.4430,0.4436,0.4443,
00078 0.4450,0.4457,0.4464,0.4470,0.4477,0.4484,0.4491,0.4497,0.4504,0.4511,0.4518,
00079 0.4524,0.4531,0.4538,0.4545,0.4552,0.4558,0.4565,0.4572,0.4579,0.4586,0.4592,
00080 0.4599,0.4606,0.4613,0.4620,0.4626,0.4633,0.4640,0.4647,0.4654,0.4661,0.4667,
00081 0.4674,0.4681,0.4688,0.4695,0.4702,0.4708,0.4715,0.4722,0.4729,0.4736,0.4743,
00082 0.4749,0.4756,0.4763,0.4770,0.4777,0.4784,0.4791,0.4798,0.4804,0.4811,0.4818,
00083 0.4825,0.4832,0.4839,0.4846,0.4853,0.4859,0.4866,0.4873,0.4880,0.4887,0.4894,
00084 0.4901,0.4908,0.4915,0.4922,0.4928,0.4935,0.4942,0.4949,0.4956,0.4963,0.4970,
00085 0.4977,0.4984,0.4991,0.4998,0.5005,0.5012,0.5019,0.5025,0.5032,0.5039,0.5046,
00086 0.5053,0.5060,0.5067,0.5074,0.5081,0.5088,0.5095,0.5102,0.5109,0.5116,0.5123,
00087 0.5130,0.5137,0.5144,0.5151,0.5158,0.5165,0.5172,0.5179,0.5186,0.5193,0.5200,
00088 0.5207,0.5214,0.5221,0.5228,0.5235,0.5242,0.5249,0.5256,0.5263,0.5270,0.5277,
00089 0.5284,0.5291,0.5298,0.5305,0.5312,0.5319,0.5326,0.5334,0.5341,0.5348,0.5355,
00090 0.5362,0.5369,0.5376,0.5383,0.5390,0.5397,0.5404,0.5411,0.5418,0.5426,0.5433,
00091 0.5440,0.5447,0.5454,0.5461,0.5468,0.5475,0.5482,0.5489,0.5497,0.5504,0.5511,
00092 0.5518,0.5525,0.5532,0.5539,0.5547,0.5554,0.5561,0.5568,0.5575,0.5582,0.5589,
00093 0.5597,0.5604,0.5611,0.5618,0.5625,0.5632,0.5640,0.5647,0.5654,0.5661,0.5668,
00094 0.5676,0.5683,0.5690,0.5697,0.5704,0.5712,0.5719,0.5726,0.5733,0.5740,0.5748,
00095 0.5755,0.5762,0.5769,0.5776,0.5784,0.5791,0.5798,0.5805,0.5813,0.5820,0.5827,
00096 0.5834,0.5842,0.5849,0.5856,0.5863,0.5871,0.5878,0.5885,0.5893,0.5900,0.5907,
00097 0.5914,0.5922,0.5929,0.5936,0.5944,0.5951,0.5958,0.5966,0.5973,0.5980,0.5987,
00098 0.5995,0.6002,0.6009,0.6017,0.6024,0.6031,0.6039,0.6046,0.6054,0.6061,0.6068,
00099 0.6076,0.6083,0.6090,0.6098,0.6105,0.6112,0.6120,0.6127,0.6135,0.6142,0.6149,
00100 0.6157,0.6164,0.6172,0.6179,0.6186,0.6194,0.6201,0.6209,0.6216,0.6224,0.6231,
00101 0.6238,0.6246,0.6253,0.6261,0.6268,0.6276,0.6283,0.6291,0.6298,0.6306,0.6313,
00102 0.6320,0.6328,0.6335,0.6343,0.6350,0.6358,0.6365,0.6373,0.6380,0.6388,0.6395,
00103 0.6403,0.6410,0.6418,0.6425,0.6433,0.6441,0.6448,0.6456,0.6463,0.6471,0.6478,
00104 0.6486,0.6493,0.6501,0.6508,0.6516,0.6524,0.6531,0.6539,0.6546,0.6554,0.6562,
00105 0.6569,0.6577,0.6584,0.6592,0.6600,0.6607,0.6615,0.6622,0.6630,0.6638,0.6645,
00106 0.6653,0.6661,0.6668,0.6676,0.6684,0.6691,0.6699,0.6707,0.6714,0.6722,0.6730,
00107 0.6737,0.6745,0.6753,0.6760,0.6768,0.6776,0.6783,0.6791,0.6799,0.6807,0.6814,
00108 0.6822,0.6830,0.6837,0.6845,0.6853,0.6861,0.6868,0.6876,0.6884,0.6892,0.6899,
00109 0.6907,0.6915,0.6923,0.6931,0.6938,0.6946,0.6954,0.6962,0.6970,0.6977,0.6985,
00110 0.6993,0.7001,0.7009,0.7016,0.7024,0.7032,0.7040,0.7048,0.7056,0.7063,0.7071,
00111 0.7079,0.7087,0.7095,0.7103,0.7111,0.7119,0.7126,0.7134,0.7142,0.7150,0.7158,
00112 0.7166,0.7174,0.7182,0.7190,0.7198,0.7206,0.7214,0.7222,0.7229,0.7237,0.7245,
00113 0.7253,0.7261,0.7269,0.7277,0.7285,0.7293,0.7301,0.7309,0.7317,0.7325,0.7333,
00114 0.7341,0.7349,0.7357,0.7365,0.7373,0.7381,0.7389,0.7397,0.7406,0.7414,0.7422,
00115 0.7430,0.7438,0.7446,0.7454,0.7462,0.7470,0.7478,0.7486,0.7494,0.7503,0.7511,
00116 0.7519,0.7527,0.7535,0.7543,0.7551,0.7559,0.7568,0.7576,0.7584,0.7592,0.7600,
00117 0.7608,0.7617,0.7625,0.7633,0.7641,0.7649,0.7658,0.7666,0.7674,0.7682,0.7690,
00118 0.7699,0.7707,0.7715,0.7723,0.7732,0.7740,0.7748,0.7756,0.7765,0.7773,0.7781,
00119 0.7790,0.7798,0.7806,0.7814,0.7823,0.7831,0.7839,0.7848,0.7856,0.7864,0.7873,
00120 0.7881,0.7889,0.7898,0.7906,0.7915,0.7923,0.7931,0.7940,0.7948,0.7957,0.7965,
00121 0.7973,0.7982,0.7990,0.7999,0.8007,0.8015,0.8024,0.8032,0.8041,0.8049,0.8058,
00122 0.8066,0.8075,0.8083,0.8092,0.8100,0.8109,0.8117,0.8126,0.8134,0.8143,0.8151,
00123 0.8160,0.8168,0.8177,0.8185,0.8194,0.8203,0.8211,0.8220,0.8228,0.8237,0.8246,
00124 0.8254,0.8263,0.8271,0.8280,0.8289,0.8297,0.8306,0.8315,0.8323,0.8332,0.8341,
00125 0.8349,0.8358,0.8367,0.8375,0.8384,0.8393,0.8401,0.8410,0.8419,0.8428,0.8436,
00126 0.8445,0.8454,0.8463,0.8471,0.8480,0.8489,0.8498,0.8506,0.8515,0.8524,0.8533,
00127 0.8542,0.8550,0.8559,0.8568,0.8577,0.8586,0.8595,0.8604,0.8612,0.8621,0.8630,
00128 0.8639,0.8648,0.8657,0.8666,0.8675,0.8684,0.8693,0.8701,0.8710,0.8719,0.8728,
00129 0.8737,0.8746,0.8755,0.8764,0.8773,0.8782,0.8791,0.8800,0.8809,0.8818,0.8827,
00130 0.8836,0.8845,0.8854,0.8864,0.8873,0.8882,0.8891,0.8900,0.8909,0.8918,0.8927,
00131 0.8936,0.8945,0.8955,0.8964,0.8973,0.8982,0.8991,0.9000,0.9010,0.9019,0.9028,
00132 0.9037,0.9046,0.9056,0.9065,0.9074,0.9083,0.9093,0.9102,0.9111,0.9120,0.9130,
00133 0.9139,0.9148,0.9158,0.9167,0.9176,0.9186,0.9195,0.9204,0.9214,0.9223,0.9232,
00134 0.9242,0.9251,0.9260,0.9270,0.9279,0.9289,0.9298,0.9308,0.9317,0.9326,0.9336,
00135 0.9345,0.9355,0.9364,0.9374,0.9383,0.9393,0.9402,0.9412,0.9421,0.9431,0.9441,
00136 0.9450,0.9460,0.9469,0.9479,0.9489,0.9498,0.9508,0.9517,0.9527,0.9537,0.9546,
00137 0.9556,0.9566,0.9575,0.9585,0.9595,0.9604,0.9614,0.9624,0.9634,0.9643,0.9653,
00138 0.9663,0.9673,0.9682,0.9692,0.9702,0.9712,0.9722,0.9731,0.9741,0.9751,0.9761,
00139 0.9771,0.9781,0.9791,0.9800,0.9810,0.9820,0.9830,0.9840,0.9850,0.9860,0.9870,
00140 0.9880,0.9890,0.9900,0.9910,0.9920,0.9930,0.9940,0.9950,0.9960,0.9970,0.9980,
00141 0.9990,1.0000,1.0010,1.0021,1.0031,1.0041,1.0051,1.0061,1.0071,1.0081,1.0092,
00142 1.0102,1.0112,1.0122,1.0132,1.0143,1.0153,1.0163,1.0173,1.0184,1.0194,1.0204,
00143 1.0215,1.0225,1.0235,1.0246,1.0256,1.0266,1.0277,1.0287,1.0298,1.0308,1.0318,
00144 1.0329,1.0339,1.0350,1.0360,1.0371,1.0381,1.0392,1.0402,1.0413,1.0423,1.0434,
00145 1.0444,1.0455,1.0465,1.0476,1.0487,1.0497,1.0508,1.0519,1.0529,1.0540,1.0551,
00146 1.0561,1.0572,1.0583,1.0593,1.0604,1.0615,1.0626,1.0636,1.0647,1.0658,1.0669,
00147 1.0680,1.0690,1.0701,1.0712,1.0723,1.0734,1.0745,1.0756,1.0767,1.0778,1.0788,
00148 1.0799,1.0810,1.0821,1.0832,1.0843,1.0854,1.0866,1.0877,1.0888,1.0899,1.0910,
00149 1.0921,1.0932,1.0943,1.0954,1.0965,1.0977,1.0988,1.0999,1.1010,1.1022,1.1033,
00150 1.1044,1.1055,1.1067,1.1078,1.1089,1.1101,1.1112,1.1123,1.1135,1.1146,1.1157,
00151 1.1169,1.1180,1.1192,1.1203,1.1215,1.1226,1.1238,1.1249,1.1261,1.1272,1.1284,
00152 1.1295,1.1307,1.1319,1.1330,1.1342,1.1354,1.1365,1.1377,1.1389,1.1400,1.1412,
00153 1.1424,1.1436,1.1447,1.1459,1.1471,1.1483,1.1495,1.1506,1.1518,1.1530,1.1542,
00154 1.1554,1.1566,1.1578,1.1590,1.1602,1.1614,1.1626,1.1638,1.1650,1.1662,1.1674,
00155 1.1686,1.1698,1.1711,1.1723,1.1735,1.1747,1.1759,1.1772,1.1784,1.1796,1.1808,
00156 1.1821,1.1833,1.1845,1.1858,1.1870,1.1883,1.1895,1.1907,1.1920,1.1932,1.1945,
00157 1.1957,1.1970,1.1982,1.1995,1.2007,1.2020,1.2033,1.2045,1.2058,1.2071,1.2083,
00158 1.2096,1.2109,1.2122,1.2134,1.2147,1.2160,1.2173,1.2186,1.2199,1.2211,1.2224,
00159 1.2237,1.2250,1.2263,1.2276,1.2289,1.2302,1.2315,1.2328,1.2341,1.2355,1.2368,
00160 1.2381,1.2394,1.2407,1.2421,1.2434,1.2447,1.2460,1.2474,1.2487,1.2500,1.2514,
00161 1.2527,1.2541,1.2554,1.2568,1.2581,1.2595,1.2608,1.2622,1.2635,1.2649,1.2663,
00162 1.2676,1.2690,1.2704,1.2717,1.2731,1.2745,1.2759,1.2772,1.2786,1.2800,1.2814,
00163 1.2828,1.2842,1.2856,1.2870,1.2884,1.2898,1.2912,1.2926,1.2940,1.2955,1.2969,
00164 1.2983,1.2997,1.3012,1.3026,1.3040,1.3054,1.3069,1.3083,1.3098,1.3112,1.3127,
00165 1.3141,1.3156,1.3170,1.3185,1.3199,1.3214,1.3229,1.3243,1.3258,1.3273,1.3288,
00166 1.3303,1.3317,1.3332,1.3347,1.3362,1.3377,1.3392,1.3407,1.3422,1.3437,1.3452,
00167 1.3467,1.3483,1.3498,1.3513,1.3528,1.3544,1.3559,1.3574,1.3590,1.3605,1.3621,
00168 1.3636,1.3652,1.3667,1.3683,1.3698,1.3714,1.3730,1.3746,1.3761,1.3777,1.3793,
00169 1.3809,1.3825,1.3841,1.3857,1.3873,1.3889,1.3905,1.3921,1.3937,1.3953,1.3969,
00170 1.3986,1.4002,1.4018,1.4035,1.4051,1.4068,1.4084,1.4101,1.4117,1.4134,1.4150,
00171 1.4167,1.4184,1.4201,1.4217,1.4234,1.4251,1.4268,1.4285,1.4302,1.4319,1.4336,
00172 1.4353,1.4370,1.4388,1.4405,1.4422,1.4440,1.4457,1.4474,1.4492,1.4509,1.4527,
00173 1.4545,1.4562,1.4580,1.4598,1.4615,1.4633,1.4651,1.4669,1.4687,1.4705,1.4723,
00174 1.4741,1.4759,1.4778,1.4796,1.4814,1.4833,1.4851,1.4870,1.4888,1.4907,1.4925,
00175 1.4944,1.4963,1.4981,1.5000,1.5019,1.5038,1.5057,1.5076,1.5095,1.5114,1.5134,
00176 1.5153,1.5172,1.5192,1.5211,1.5231,1.5250,1.5270,1.5289,1.5309,1.5329,1.5349,
00177 1.5369,1.5389,1.5409,1.5429,1.5449,1.5469,1.5489,1.5510,1.5530,1.5551,1.5571,
00178 1.5592,1.5613,1.5633,1.5654,1.5675,1.5696,1.5717,1.5738,1.5759,1.5780,1.5802,
00179 1.5823,1.5845,1.5866,1.5888,1.5909,1.5931,1.5953,1.5975,1.5997,1.6019,1.6041,
00180 1.6063,1.6085,1.6108,1.6130,1.6153,1.6175,1.6198,1.6221,1.6244,1.6267,1.6290,
00181 1.6313,1.6336,1.6359,1.6383,1.6406,1.6430,1.6453,1.6477,1.6501,1.6525,1.6549,
00182 1.6573,1.6597,1.6622,1.6646,1.6671,1.6695,1.6720,1.6745,1.6770,1.6795,1.6820,
00183 1.6845,1.6870,1.6896,1.6921,1.6947,1.6973,1.6999,1.7025,1.7051,1.7077,1.7104,
00184 1.7130,1.7157,1.7183,1.7210,1.7237,1.7264,1.7292,1.7319,1.7347,1.7374,1.7402,
00185 1.7430,1.7458,1.7486,1.7514,1.7543,1.7571,1.7600,1.7629,1.7658,1.7687,1.7717,
00186 1.7746,1.7776,1.7805,1.7835,1.7866,1.7896,1.7926,1.7957,1.7988,1.8019,1.8050,
00187 1.8081,1.8113,1.8144,1.8176,1.8208,1.8240,1.8273,1.8305,1.8338,1.8371,1.8404,
00188 1.8438,1.8471,1.8505,1.8539,1.8573,1.8608,1.8643,1.8678,1.8713,1.8748,1.8784,
00189 1.8820,1.8856,1.8892,1.8929,1.8965,1.9003,1.9040,1.9078,1.9115,1.9154,1.9192,
00190 1.9231,1.9270,1.9309,1.9349,1.9389,1.9429,1.9470,1.9511,1.9552,1.9593,1.9635,
00191 1.9678,1.9720,1.9763,1.9807,1.9850,1.9894,1.9939,1.9984,2.0029,2.0075,2.0121,
00192 2.0168,2.0215,2.0262,2.0310,2.0358,2.0407,2.0457,2.0506,2.0557,2.0608,2.0659,
00193 2.0711,2.0764,2.0817,2.0871,2.0925,2.0980,2.1036,2.1092,2.1149,2.1206,2.1265,
00194 2.1324,2.1384,2.1444,2.1506,2.1568,2.1631,2.1695,2.1760,2.1826,2.1893,2.1960,
00195 2.2029,2.2099,2.2170,2.2242,2.2315,2.2390,2.2465,2.2542,2.2621,2.2701,2.2782,
00196 2.2865,2.2949,2.3035,2.3123,2.3213,2.3304,2.3398,2.3493,2.3591,2.3691,2.3794,
00197 2.3899,2.4007,2.4117,2.4231,2.4348,2.4469,2.4593,2.4721,2.4853,2.4989,2.5131,
00198 2.5277,2.5430,2.5588,2.5753,2.5926,2.6106,2.6296,2.6495,2.6706,2.6929,2.7166,
00199 2.7420,2.7693,2.7988,2.8310,2.8664,2.9057,2.9502,3.0015,3.0621,3.1365,3.2339,
00200 3.3770,3.6682};
00201 
00202 #endif

Generated on Fri Apr 1 10:58:14 2005 for ProBT by  doxygen 1.4.1