Hi,
To my understanding "first" and "last" are integers referring to the
graph index and form the source it looks like that you put them wrong they
are set to the first and last element of the graph.
I reduced my code to a simple example, (the input file is attached):
#include <stdlib.h>
#include <iostream.h>
#include <fstream.h>
#include <TGraph.h>
#include <TObject.h>
#include <stdio.h>
#include <math.h>
#include <TROOT.h>
#include <TCanvas.h>
#include <TApplication.h>
int main(int argc, char **argv) {
ifstream finput;
Char_t line[200];
Int_t i,n;
TGraph *g=new TGraph();
Double_t x,y;
TApplication theApp("App", &argc, argv);
finput.open("fake.in",ios::in);
i=0;
while(1) {
finput.getline(line,900,'\n');
if(!finput.good()) break;
finput >> x >> y;
cout << x << " " << y << endl;
g->SetPoint(i++,x,y);
}
n=g->GetN();
cout << "N=" << n << endl;
g->InitGaus(0,n-1);
finput.close();
g->Draw("AP");
//delete g;
theApp.Run();
}
It stops before the InitGaus, returning:
Breakpoint 1 at 0x4082fa80
(gdb) bt
#0 0x4082fa80 in TGraph::InitGaus () from /vol2/root/lib/libGraf.so
#1 0x08048ea9 in main ()
#2 0x40cf2657 in __libc_start_main (main=0x8048ca0 <main>, argc=1,
ubp_av=0xbfffdea4, init=0x8048a00 <_init>, fini=0x8049090 <_fini>,
rtld_fini=0x4000dcd4 <_dl_fini>, stack_end=0xbfffde9c)
at ../sysdeps/generic/libc-start.c:129
Federico
On Tue, 10 Sep 2002, Rene Brun wrote:
> My guess is that you have wrong values for the arguments first and last
>
> Rene Brun
>
> On Tue, 10 Sep 2002, Federico Roncarolo wrote:
>
> > Hello,
> >
> > I'm using version 3.03/08, RH 7.2.
> >
> > I get an error while using TGraph::InitGaus,
> > the debugger returns:
> >
> > #0 0x4082fa80 in TGraph::InitGaus () from /vol2/root/lib/libGraf.so
> > #1 0x0804b8c4 in TGaussian::EvalInPar ()
> > #2 0x0804db44 in ws_fitlist ()
> > #3 0x0805055a in main ()
> > #4 0x40cf2657 in __libc_start_main (main=0x805050c <main>, argc=1,
> > ubp_av=0xbfffe314, init=0x804aa88 <_init>,
> > fini=0x8050940 <_fini>, rtld_fini=0x4000dcd4 <_dl_fini>,
> > stack_end=0xbfffe30c)
> > at ../sysdeps/generic/libc-start.c:129
> >
> >
> >
> > Can anybody guess the problem or do you need my complete code?
> >
> > Thanks a lot,
> > Federico
> >
>
>
-64361.875 8.0000
-64219.453 11.0000
-64076.992 11.0000
-63934.496 12.0000
-63791.965 3.0000
-63649.398 8.0000
-63506.793 1.0000
-63364.156 8.0000
-63221.480 10.0000
-63078.770 8.0000
-62936.023 10.0000
-62793.238 11.0000
-62650.422 8.0000
-62507.566 8.0000
-62364.680 14.0000
-62221.754 9.0000
-62078.797 8.0000
-61935.801 13.0000
-61792.773 8.0000
-61649.707 8.0000
-61506.609 8.0000
-61363.477 10.0000
-61220.309 5.0000
-61077.105 9.0000
-60933.867 10.0000
-60790.594 7.0000
-60647.289 12.0000
-60503.945 7.0000
-60360.570 10.0000
-60217.164 8.0000
-60073.719 11.0000
-59930.242 12.0000
-59786.730 8.0000
-59643.188 10.0000
-59499.609 9.0000
-59355.996 10.0000
-59212.352 12.0000
-59068.672 10.0000
-58924.957 4.0000
-58781.211 10.0000
-58637.434 10.0000
-58493.621 7.0000
-58349.773 8.0000
-58205.895 8.0000
-58061.984 9.0000
-57918.039 8.0000
-57774.062 10.0000
-57630.055 10.0000
-57486.012 7.0000
-57341.938 12.0000
-57197.828 10.0000
-57053.688 7.0000
-56909.516 10.0000
-56765.312 8.0000
-56621.078 1.0000
-56476.809 10.0000
-56332.508 9.0000
-56188.176 7.0000
-56043.812 9.0000
-55899.418 9.0000
-55754.988 10.0000
-55610.531 10.0000
-55466.043 13.0000
-55321.520 8.0000
-55176.969 11.0000
-55032.383 12.0000
-54887.770 9.0000
-54743.121 7.0000
-54598.445 9.0000
-54453.738 9.0000
-54308.996 5.0000
-54164.230 7.0000
-54019.430 8.0000
-53874.598 5.0000
-53729.738 8.0000
-53584.844 12.0000
-53439.922 11.0000
-53294.973 9.0000
-53149.988 13.0000
-53004.977 8.0000
-52859.934 8.0000
-52714.863 11.0000
-52569.762 9.0000
-52424.629 8.0000
-52279.469 6.0000
-52134.277 8.0000
-51989.059 5.0000
-51843.809 8.0000
-51698.527 7.0000
-51553.219 7.0000
-51407.883 8.0000
-51262.516 9.0000
-51117.121 8.0000
-50971.695 8.0000
-50826.242 13.0000
-50680.762 10.0000
-50535.250 9.0000
-50389.711 3.0000
-50244.145 12.0000
-50098.547 9.0000
-49952.922 2.0000
-49807.270 9.0000
-49661.590 5.0000
-49515.879 8.0000
-49370.145 10.0000
-49224.379 7.0000
-49078.586 8.0000
-48932.766 10.0000
-48786.918 8.0000
-48641.039 10.0000
-48495.137 12.0000
-48349.207 10.0000
-48203.250 6.0000
-48057.262 4.0000
-47911.250 11.0000
-47765.211 7.0000
-47619.145 9.0000
-47473.051 8.0000
-47326.930 6.0000
-47180.785 10.0000
-47034.609 9.0000
-46888.410 8.0000
-46742.184 8.0000
-46595.930 12.0000
-46449.648 11.0000
-46303.344 7.0000
-46157.012 11.0000
-46010.652 10.0000
-45864.270 10.0000
-45717.859 7.0000
-45571.422 9.0000
-45424.961 6.0000
-45278.473 11.0000
-45131.961 10.0000
-44985.422 7.0000
-44838.855 7.0000
-44692.266 11.0000
-44545.652 6.0000
-44399.012 9.0000
-44252.348 12.0000
-44105.656 10.0000
-43958.941 9.0000
-43812.203 13.0000
-43665.438 8.0000
-43518.648 8.0000
-43371.836 10.0000
-43224.996 10.0000
-43078.133 6.0000
-42931.246 8.0000
-42784.332 10.0000
-42637.398 2.0000
-42490.438 8.0000
-42343.453 8.0000
-42196.445 10.0000
-42049.414 8.0000
-41902.359 10.0000
-41755.281 10.0000
-41608.176 9.0000
-41461.051 14.0000
-41313.902 7.0000
-41166.727 7.0000
-41019.531 9.0000
-40872.312 11.0000
-40725.070 2.0000
-40577.805 10.0000
-40430.516 11.0000
-40283.203 7.0000
-40135.867 8.0000
-39988.512 7.0000
-39841.133 10.0000
-39693.730 8.0000
-39546.305 10.0000
-39398.855 7.0000
-39251.387 7.0000
-39103.895 12.0000
-38956.383 8.0000
-38808.848 9.0000
-38661.289 9.0000
-38513.711 9.0000
-38366.109 6.0000
-38218.484 9.0000
-38070.840 10.0000
-37923.176 6.0000
-37775.488 11.0000
-37627.777 12.0000
-37480.047 8.0000
-37332.297 8.0000
-37184.523 13.0000
-37036.730 8.0000
-36888.914 10.0000
-36741.082 12.0000
-36593.223 11.0000
-36445.348 9.0000
-36297.449 8.0000
-36149.531 8.0000
-36001.594 7.0000
-35853.633 9.0000
-35705.656 8.0000
-35557.656 7.0000
-35409.637 10.0000
-35261.598 10.0000
-35113.539 11.0000
-34965.457 8.0000
-34817.359 12.0000
-34669.242 12.0000
-34521.102 8.0000
-34372.945 11.0000
-34224.770 8.0000
-34076.570 10.0000
-33928.355 9.0000
-33780.121 12.0000
-33631.867 7.0000
-33483.594 10.0000
-33335.301 9.0000
-33186.988 8.0000
-33038.660 14.0000
-32890.312 10.0000
-32741.945 9.0000
-32593.559 7.0000
-32445.156 15.0000
-32296.732 12.0000
-32148.293 9.0000
-31999.834 10.0000
-31851.357 9.0000
-31702.861 7.0000
-31554.350 8.0000
-31405.818 8.0000
-31257.270 4.0000
-31108.703 11.0000
-30960.121 9.0000
-30811.520 8.0000
-30662.900 9.0000
-30514.264 11.0000
-30365.611 10.0000
-30216.941 8.0000
-30068.254 12.0000
-29919.549 13.0000
-29770.828 10.0000
-29622.090 5.0000
-29473.334 11.0000
-29324.562 8.0000
-29175.773 10.0000
-29026.969 10.0000
-28878.148 0.0000
-28729.311 11.0000
-28580.457 10.0000
-28431.588 8.0000
-28282.701 9.0000
-28133.799 10.0000
-27984.881 9.0000
-27835.947 10.0000
-27686.998 13.0000
-27538.033 10.0000
-27389.053 11.0000
-27240.057 11.0000
-27091.045 11.0000
-26942.018 7.0000
-26792.975 7.0000
-26643.918 7.0000
-26494.846 2.0000
-26345.758 9.0000
-26196.656 10.0000
-26047.539 18.0000
-25898.408 15.0000
-25749.262 21.0000
-25600.100 19.0000
-25450.924 30.0000
-25301.734 35.0000
-25152.531 41.0000
-25003.312 48.0000
-24854.080 60.0000
-24704.832 59.0000
-24555.572 77.0000
-24406.297 93.0000
-24257.010 89.0000
-24107.707 112.0000
-23958.393 121.0000
-23809.062 141.0000
-23659.721 152.0000
-23510.363 163.0000
-23360.994 184.0000
-23211.611 203.0000
-23062.217 231.0000
-22912.809 255.0000
-22763.387 288.0000
-22613.951 310.0000
-22464.504 357.0000
-22315.045 386.0000
-22165.572 430.0000
-22016.086 470.0000
-21866.588 525.0000
-21717.078 555.0000
-21567.557 610.0000
-21418.021 660.0000
-21268.475 726.0000
-21118.916 802.0000
-20969.346 845.0000
-20819.764 960.0000
-20670.170 999.0000
-20520.564 1066.0000
-20370.945 1186.0000
-20221.316 1238.0000
-20071.678 1324.0000
-19922.025 1434.0000
-19772.361 1502.0000
-19622.688 1607.0000
-19473.002 1679.0000
-19323.307 1831.0000
-19173.600 1855.0000
-19023.881 1946.0000
-18874.152 2074.0000
-18724.412 2162.0000
-18574.662 2237.0000
-18424.900 2293.0000
-18275.131 2356.0000
-18125.350 2448.0000
-17975.557 2477.0000
-17825.756 2623.0000
-17675.943 2639.0000
-17526.121 2707.0000
-17376.289 2715.0000
-17226.447 2772.0000
-17076.596 2803.0000
-16926.736 2861.0000
-16776.865 2820.0000
-16626.984 2842.0000
-16477.096 2878.0000
-16327.196 2872.0000
-16177.288 2870.0000
-16027.371 2883.0000
-15877.445 2855.0000
-15727.510 2841.0000
-15577.565 2794.0000
-15427.612 2789.0000
-15277.651 2799.0000
-15127.681 2752.0000
-14977.702 2664.0000
-14827.714 2633.0000
-14677.719 2599.0000
-14527.715 2514.0000
-14377.702 2506.0000
-14227.682 2396.0000
-14077.653 2310.0000
-13927.617 2316.0000
-13777.573 2221.0000
-13627.521 2152.0000
-13477.461 2073.0000
-13327.394 2006.0000
-13177.318 1940.0000
-13027.236 1843.0000
-12877.146 1789.0000
-12727.050 1696.0000
-12576.945 1597.0000
-12426.834 1517.0000
-12276.716 1428.0000
-12126.590 1299.0000
-11976.458 1255.0000
-11826.319 1132.0000
-11676.174 1099.0000
-11526.021 1036.0000
-11375.862 929.0000
-11225.697 848.0000
-11075.525 826.0000
-10925.348 736.0000
-10775.164 669.0000
-10624.974 619.0000
-10474.778 561.0000
-10324.576 495.0000
-10174.368 451.0000
-10024.154 413.0000
-9873.936 370.0000
-9723.710 347.0000
-9573.479 296.0000
-9423.244 275.0000
-9273.003 242.0000
-9122.757 214.0000
-8972.505 205.0000
-8822.249 177.0000
-8671.987 158.0000
-8521.721 136.0000
-8371.449 126.0000
-8221.173 126.0000
-8070.893 115.0000
-7920.607 98.0000
-7770.318 80.0000
-7620.023 91.0000
-7469.725 71.0000
-7319.422 59.0000
-7169.116 48.0000
-7018.805 47.0000
-6868.490 37.0000
-6718.171 33.0000
-6567.849 26.0000
-6417.523 21.0000
-6267.193 23.0000
-6116.859 14.0000
-5966.522 13.0000
-5816.183 10.0000
-5665.839 13.0000
-5515.492 11.0000
-5365.143 6.0000
-5214.790 7.0000
-5064.434 12.0000
-4914.075 7.0000
-4763.714 11.0000
-4613.350 13.0000
-4462.983 7.0000
-4312.613 9.0000
-4162.242 15.0000
-4011.868 10.0000
-3861.491 12.0000
-3711.113 9.0000
-3560.732 10.0000
-3410.350 10.0000
-3259.965 7.0000
-3109.579 10.0000
-2959.190 7.0000
-2808.801 10.0000
-2658.409 7.0000
-2508.016 8.0000
-2357.622 10.0000
-2207.226 11.0000
-2056.829 10.0000
-1906.431 9.0000
-1756.032 14.0000
-1605.632 11.0000
-1455.231 9.0000
-1304.829 7.0000
-1154.426 10.0000
-1004.023 8.0000
-853.619 8.0000
-703.215 11.0000
-552.810 2.0000
-402.405 10.0000
-252.000 10.0000
-101.594 9.0000
48.811 6.0000
199.217 11.0000
349.622 10.0000
500.027 11.0000
650.432 15.0000
800.837 9.0000
951.241 12.0000
1101.644 10.0000
1252.047 9.0000
1402.449 7.0000
1552.850 10.0000
1703.251 9.0000
1853.651 6.0000
2004.049 8.0000
2154.446 13.0000
2304.843 9.0000
2455.237 12.0000
2605.631 11.0000
2756.023 10.0000
2906.413 8.0000
3056.802 13.0000
3207.189 10.0000
3357.574 9.0000
3507.958 10.0000
3658.339 9.0000
3808.718 7.0000
3959.095 9.0000
4109.470 10.0000
4259.843 8.0000
4410.213 9.0000
4560.581 9.0000
4710.945 11.0000
4861.308 10.0000
5011.667 10.0000
5162.024 6.0000
5312.378 10.0000
5462.729 13.0000
5613.077 9.0000
5763.421 8.0000
5913.763 10.0000
6064.101 8.0000
6214.436 7.0000
6364.767 9.0000
6515.094 11.0000
6665.418 9.0000
6815.738 9.0000
6966.054 11.0000
7116.366 11.0000
7266.675 10.0000
7416.979 15.0000
7567.279 9.0000
7717.574 7.0000
7867.866 11.0000
8018.152 8.0000
8168.435 10.0000
8318.712 8.0000
8468.985 12.0000
8619.254 5.0000
8769.517 9.0000
8919.775 11.0000
9070.028 7.0000
9220.276 10.0000
9370.520 8.0000
9520.757 10.0000
9670.989 9.0000
9821.216 14.0000
9971.438 10.0000
10121.653 8.0000
10271.863 13.0000
10422.067 8.0000
10572.265 9.0000
10722.457 6.0000
10872.644 8.0000
11022.823 6.0000
11172.997 11.0000
11323.165 8.0000
11473.325 6.0000
11623.480 6.0000
11773.628 9.0000
11923.770 12.0000
12073.904 9.0000
12224.031 9.0000
12374.152 9.0000
12524.267 9.0000
12674.373 12.0000
12824.473 11.0000
12974.565 4.0000
13124.650 6.0000
13274.728 8.0000
13424.798 5.0000
13574.860 9.0000
13724.915 9.0000
13874.962 7.0000
14025.001 10.0000
14175.032 11.0000
14325.056 8.0000
14475.070 9.0000
14625.077 11.0000
14775.076 11.0000
14925.066 12.0000
15075.048 9.0000
15225.021 6.0000
15374.986 8.0000
15524.942 10.0000
15674.890 8.0000
15824.828 8.0000
15974.758 8.0000
16124.678 11.0000
16274.589 5.0000
16424.492 7.0000
16574.385 11.0000
16724.268 13.0000
16874.141 8.0000
17024.006 16.0000
17173.861 11.0000
17323.705 9.0000
17473.541 11.0000
17623.367 10.0000
17773.182 8.0000
17922.986 9.0000
18072.783 10.0000
18222.568 6.0000
18372.342 8.0000
18522.107 9.0000
18671.859 9.0000
18821.604 9.0000
18971.336 8.0000
19121.059 11.0000
19270.770 11.0000
19420.469 12.0000
19570.158 11.0000
19719.836 10.0000
19869.504 11.0000
20019.160 11.0000
20168.805 7.0000
20318.438 11.0000
20468.059 10.0000
20617.668 1.0000
20767.268 9.0000
20916.854 9.0000
21066.428 10.0000
21215.990 8.0000
21365.541 10.0000
21515.080 10.0000
21664.607 8.0000
21814.121 14.0000
21963.623 10.0000
22113.113 8.0000
22262.590 11.0000
22412.055 11.0000
22561.506 7.0000
22710.945 11.0000
22860.371 9.0000
23009.785 8.0000
23159.186 7.0000
23308.572 7.0000
23457.945 10.0000
23607.307 11.0000
23756.654 11.0000
23905.988 9.0000
24055.309 8.0000
24204.615 12.0000
24353.908 10.0000
24503.188 8.0000
24652.453 4.0000
24801.705 11.0000
24950.941 7.0000
25100.166 10.0000
25249.375 11.0000
25398.570 6.0000
25547.750 9.0000
25696.916 8.0000
25846.068 11.0000
25995.205 7.0000
26144.326 9.0000
26293.436 10.0000
26442.527 10.0000
26591.605 13.0000
26740.668 11.0000
26889.715 9.0000
27038.748 5.0000
27187.764 8.0000
27336.766 7.0000
27485.752 8.0000
27634.723 9.0000
27783.678 5.0000
27932.617 8.0000
28081.541 11.0000
28230.447 10.0000
28379.340 5.0000
28528.215 12.0000
28677.074 9.0000
28825.918 6.0000
28974.744 13.0000
29123.555 7.0000
29272.350 12.0000
29421.127 5.0000
29569.887 7.0000
29718.631 7.0000
29867.359 9.0000
30016.068 12.0000
30164.764 6.0000
30313.439 8.0000
30462.098 11.0000
30610.740 10.0000
30759.365 8.0000
30907.973 11.0000
31056.562 7.0000
31205.135 7.0000
31353.689 14.0000
31502.227 9.0000
31650.746 8.0000
31799.246 4.0000
31947.730 10.0000
32096.195 6.0000
32244.643 11.0000
32393.070 11.0000
32541.480 7.0000
32689.873 10.0000
32838.246 10.0000
32986.602 14.0000
33134.938 10.0000
33283.254 11.0000
33431.555 8.0000
33579.832 11.0000
33728.094 12.0000
33876.336 8.0000
34024.559 6.0000
34172.762 8.0000
34320.945 10.0000
34469.109 6.0000
34617.258 8.0000
34765.383 11.0000
34913.488 8.0000
35061.574 10.0000
35209.641 7.0000
35357.688 12.0000
35505.715 8.0000
35653.719 12.0000
35801.707 10.0000
35949.672 6.0000
36097.617 13.0000
36245.543 10.0000
36393.445 9.0000
36541.332 9.0000
36689.195 10.0000
36837.035 4.0000
36984.859 9.0000
37132.660 12.0000
37280.441 9.0000
37428.199 9.0000
37575.938 9.0000
37723.652 9.0000
37871.348 9.0000
38019.020 14.0000
38166.672 12.0000
38314.305 8.0000
38461.914 12.0000
38609.500 11.0000
38757.066 10.0000
38904.609 10.0000
39052.129 7.0000
39199.629 6.0000
39347.105 10.0000
39494.562 12.0000
39641.996 5.0000
39789.406 6.0000
39936.793 8.0000
40084.156 8.0000
40231.500 10.0000
40378.820 12.0000
40526.117 11.0000
40673.391 8.0000
40820.641 10.0000
40967.867 7.0000
41115.074 11.0000
41262.254 6.0000
41409.414 9.0000
41556.547 5.0000
41703.660 10.0000
41850.746 8.0000
41997.809 5.0000
42144.852 11.0000
42291.867 11.0000
42438.859 11.0000
42585.828 9.0000
42732.770 10.0000
42879.691 11.0000
43026.586 11.0000
43173.457 6.0000
43320.305 9.0000
43467.129 9.0000
43613.926 11.0000
43760.699 9.0000
43907.449 4.0000
44054.172 8.0000
44200.871 9.0000
44347.547 9.0000
44494.195 7.0000
44640.816 8.0000
44787.414 9.0000
44933.988 9.0000
45080.535 13.0000
45227.059 10.0000
45373.555 10.0000
45520.027 4.0000
45666.473 11.0000
45812.891 7.0000
45959.285 9.0000
46105.652 9.0000
46251.992 4.0000
46398.309 12.0000
46544.598 12.0000
46690.859 10.0000
46837.098 11.0000
46983.305 11.0000
47129.488 11.0000
47275.645 10.0000
47421.773 13.0000
47567.879 11.0000
47713.953 10.0000
47860.004 9.0000
48006.023 11.0000
48152.020 6.0000
48297.988 11.0000
48443.930 11.0000
48589.840 9.0000
48735.727 8.0000
48881.586 9.0000
49027.414 10.0000
49173.219 8.0000
49318.992 10.0000
49464.738 8.0000
49610.457 11.0000
49756.148 15.0000
49901.809 9.0000
50047.445 10.0000
50193.051 11.0000
50338.629 9.0000
50484.180 2.0000
50629.699 8.0000
50775.191 5.0000
50920.652 5.0000
51066.090 8.0000
51211.496 9.0000
51356.871 11.0000
51502.219 8.0000
51647.539 13.0000
51792.828 9.0000
51938.086 8.0000
52083.316 12.0000
52228.520 12.0000
52373.691 9.0000
52518.832 7.0000
52663.945 10.0000
52809.027 9.0000
52954.078 9.0000
53099.102 12.0000
53244.094 7.0000
53389.059 11.0000
53533.988 9.0000
53678.891 12.0000
53823.766 7.0000
53968.605 9.0000
54113.418 11.0000
54258.195 6.0000
54402.945 11.0000
54547.664 8.0000
54692.352 10.0000
54837.008 6.0000
54981.637 9.0000
55126.230 5.0000
55270.793 11.0000
55415.328 8.0000
55559.828 8.0000
55704.297 11.0000
55848.734 11.0000
55993.141 7.0000
56137.516 8.0000
56281.859 15.0000
56426.172 11.0000
56570.449 8.0000
56714.699 12.0000
56858.914 9.0000
57003.098 8.0000
57147.246 8.0000
57291.367 9.0000
57435.453 2.0000
57579.508 12.0000
57723.527 10.0000
57867.516 7.0000
58011.473 8.0000
58155.395 11.0000
58299.285 11.0000
58443.141 10.0000
58586.965 11.0000
58730.758 11.0000
58874.516 7.0000
59018.238 12.0000
59161.930 8.0000
59305.590 7.0000
59449.211 9.0000
59592.805 8.0000
59736.359 4.0000
59879.883 8.0000
60023.371 10.0000
60166.828 9.0000
60310.250 9.0000
60453.637 11.0000
60596.988 11.0000
60740.309 8.0000
60883.590 15.0000
61026.840 3.0000
61170.055 7.0000
61313.238 13.0000
61456.383 8.0000
61599.492 8.0000
61742.570 8.0000
61885.613 10.0000
62028.617 4.0000
62171.590 8.0000
62314.527 8.0000
62457.426 7.0000
62600.293 9.0000
62743.125 11.0000
62885.918 7.0000
63028.676 8.0000
63171.402 12.0000
63314.090 11.0000
63456.742 7.0000
63599.355 10.0000
63741.938 7.0000
63884.480 8.0000
64026.988 4.0000
64169.461 11.0000
64311.898 1.0000
64454.297 10.0000
64596.660 9.0000
64738.984 7.0000
64881.273 10.0000
65023.527 11.0000
65165.742 8.0000
65307.922 10.0000
65450.066 15.0000
65592.172 10.0000
65734.234 7.0000
65876.266 9.0000
66018.266 11.0000
66160.219 7.0000
66302.141 9.0000
66444.023 7.0000
66585.867 6.0000
66727.672 7.0000
66869.438 10.0000
67011.172 7.0000
67152.859 7.0000
67294.516 11.0000
67436.133 9.0000
67577.711 8.0000
67719.250 12.0000
67860.758 7.0000
68002.219 11.0000
68143.641 10.0000
68285.031 10.0000
68426.383 6.0000
68567.688 9.0000
68708.961 9.0000
68850.188 5.0000
68991.383 8.0000
69132.539 7.0000
69273.648 7.0000
69414.727 9.0000
69555.766 13.0000
69696.758 136.0000
This archive was generated by hypermail 2b29 : Sat Jan 04 2003 - 23:51:09 MET