source: SuperB-LAL/trunk/slacExperiment_USBWC-CRT/convertUSBWC2root.cc

Last change on this file was 14, checked in by narnaud, 14 years ago

Initial commit

File size: 51.8 KB
Line 
1//root
2#include <TH1D.h>
3#include <TStyle.h>
4#include <TString.h>
5#include <TCanvas.h>
6#include <TFile.h>
7#include <TTree.h>
8
9//C, C++
10#include <stdio.h>
11#include <assert.h>
12#include <stdlib.h>
13#include <iostream>
14#include <fstream>
15#include <string>
16#include <iomanip>
17
18using namespace std;
19
20void convBunchDataUSB2root(TString dataFileList, TString datPreff, TString rootFileN);
21
22int main(int argc, char *argv[] ){
23
24  if(argc == 4){
25    TString dataFileList = argv[1];
26    TString datPreff = argv[2];
27    TString rootFileN = argv[3];
28    cout<<endl
29        <<"       File containing the list of input data files: "<<dataFileList<<endl
30        <<" Path of the directory containing these input files: "<<datPreff<<endl
31        <<"                       Name of the output ROOT file: "<<rootFileN<<endl<<endl;
32    convBunchDataUSB2root( dataFileList, datPreff, rootFileN);
33  }
34  else{
35    cout<<endl
36        <<"  ERROR ---> in input arguments "<<endl
37        <<"             [1] : name of a text file containing the list of USBWC files to be converted to ROOT"<<endl
38        <<"             [2] : path of the directory containing the input USBWC files"<<endl
39        <<"             [3] : name of the output ROOT file"<<endl;
40  }
41
42  return 0;
43}
44
45void convBunchDataUSB2root(TString dataFileList, 
46                           TString datPreff, 
47                           TString rootFileN){
48
49  //USBWC data in one ev//
50  Int_t _eventID;
51  Float_t _SamplingPeriod;
52  Int_t _INLCorrection;
53  Int_t _FCR;
54  Double_t _UnixTime;
55  Float_t _ch[16][256];
56  Float_t _Charge[16], charge;
57  Float_t _Time[16], time;
58  Float_t _Amplitude[16], amplitude;
59  ///////////////////////
60
61  ///////////////////Root file with data/////////////////
62  TFile *hfile = new TFile( rootFileN, "RECREATE", "CRT Data", 1);
63  if (hfile->IsZombie()) {
64    cout << "PROBLEM with the initialization of the output ROOT ntuple " 
65         << rootFileN << ": check that the path is correct!!!"
66         << endl;
67    exit(-1);
68  }
69  TTree *tree = new TTree("T", "CRT Data Tree");
70  hfile->SetCompressionLevel(2);
71  tree->SetAutoSave(1000000);
72  // Create new event
73  TTree::SetBranchStyle(0);
74
75  //Event USBWC
76  tree->Branch("eventID",&_eventID, "eventID/I");
77  tree->Branch("SamplingPeriod", &_SamplingPeriod,  "SamplingPeriod/F");
78  tree->Branch("INLCorrection", &_INLCorrection,  "INLCorrection/I");
79  tree->Branch("FCR", &_FCR,  "FCR/I");
80  tree->Branch("UnixTime",&_UnixTime, "UnixTime/D");
81  tree->Branch("ch", _ch, "ch[16][256]/F");
82  tree->Branch("Charge", _Charge, "Charge[16]/F");
83  tree->Branch("Time", _Time, "Time[16]/F");
84  tree->Branch("Amplitude", _Amplitude, "Amplitude[16]/F");
85  ///////////////////////////////////////////////////////
86
87  Int_t i = 0;
88  Int_t j = 0;
89  string mot;
90  Double_t amplVal;
91  Int_t chID = 0;
92
93  Int_t nEv = 0;
94  Int_t nEv_Tot = 0;
95 
96  Double_t timeNpevEv = -999.0;
97
98  // Will make sure that events are correctly read from the ASCII file
99  Bool_t newEventShouldFollow;
100
101  // Init event variables
102  _eventID = -999;
103  _SamplingPeriod = -999.0;
104  _INLCorrection = -999;
105  _FCR = -999;
106  _UnixTime = -999.0;
107  for(j = 0;j<16;j++){
108    _Charge[j] = -1E20;
109    _Time[j] = -999.0;
110    _Amplitude[j] = -999.0;
111    for(i = 0;i<256;i++){
112      _ch[j][i] = -999.0;
113    }
114  }
115
116  ifstream indataFileUSB;
117  string dataFileName;
118  TString fileN;
119  TString rootF;
120  indataFileUSB.open(dataFileList.Data()); 
121  assert(indataFileUSB.is_open()); 
122  while (indataFileUSB  >> dataFileName ){
123    fileN = datPreff + "/" + dataFileName;
124    if(indataFileUSB.eof()){
125      std::cout<<"EOF"<<std::endl;
126      break;
127    }
128    cout
129      //<<endl<<endl
130      <<"\t * Converting ---> "<<fileN<<endl;
131    //<<"          to  "<<rootFileN<<endl;
132
133    /////////////////////////////
134    ifstream indata;
135    indata.open(fileN.Data()); 
136    assert(indata.is_open());
137    nEv = 0; // Event counter for a given file
138    newEventShouldFollow = kTRUE;
139    while (indata  >> mot ){
140      //cout<<" New word: "<<mot<<endl;
141     
142      // Example of line decoded below
143      // === EVENT 1 === FULLY ORDERED DATA [256 samples] in Volts === NB OF WAVECAT BOARDS = 8 ===
144      if(mot == "EVENT"){
145        assert( newEventShouldFollow = kTRUE );
146        newEventShouldFollow = kFALSE;
147        nEv++;
148        indata  >> _eventID;
149        //cout<<"_eventID "<<_eventID<<endl;
150      }   
151     
152      // Example of line decoded below
153      // Sampling Period = 312.5 ps, INL Correction: YES
154      if(mot == "Sampling"){
155        indata >> mot;
156        if(mot == "Period"){
157          //cout<<mot<<endl;
158          indata >> mot;
159          indata >> _SamplingPeriod;
160          //cout<<" _SamplingPeriod "<<_SamplingPeriod<<endl;
161        } // Period
162      } // Sampling     
163      if(mot == "INL"){
164        indata  >> mot;
165        if(mot == "Correction:"){
166          indata  >> mot;
167          if(mot == "YES"){
168            _INLCorrection = 1;
169          }
170          if(mot == "NO"){
171            _INLCorrection = 0;
172          }
173        } // Correction
174        //cout<<" _INLCorrection "<<_INLCorrection<<endl;
175      } // INL
176
177      // Skip line below for now:
178      // == BOARD V5.6 FCR = 217 ==
179      if( mot == "BOARD" ) {
180        indata >> mot; // V5.6
181        indata >> mot; // FCR
182        indata >> mot; // =
183        indata >> mot; // 217
184        indata >> mot; // ==
185      }
186     
187      // Field FCR only present in the September-October runs
188      // Keep it in the ntuple to avoid compatibility problems
189      /*
190      // Example of line decoded below
191      // FCR = 4713980, UnixTime = 1288036061.845, date = 2010.10.25, time = 12h.47m.41s.845ms
192      if(mot == "FCR"){
193        indata  >> mot;
194        indata  >> _FCR;
195        //cout <<" _FCR "<<_FCR<<endl;   
196      } // FCR
197      */
198      // Example of line decoded below
199      //UnixTime = 1288632257.224 date = 2010.11.1 time = 10h.24m.17s.224ms
200      if(mot == "UnixTime"){
201        indata  >> mot;
202        indata  >> _UnixTime;
203        //printf("UnixTime: %20.4f \n", _UnixTime);
204        if(timeNpevEv != -999.0 && (_UnixTime - timeNpevEv)<0.0){
205          cout<<endl<<" events (files) in data list are not ordered in time:"<<endl;
206          printf("\t * previous unix time: %20.4f \n", timeNpevEv);
207          printf("\t *  current unix time: %20.4f \n", _UnixTime);
208          assert(0);
209        }
210        timeNpevEv = _UnixTime;
211      }
212     
213      // Example of snippet decoded below
214      //== CHANNEL : 0  Charge: 4508.108 pC Time: -1.000 ns Amplitude: -0.478980 V==
215      // followed by the 256 points of the corresponding waveform
216      if(mot == "CHANNEL"){
217        indata  >> mot;
218        indata  >> chID;
219       
220        if( chID < 0 || chID > 15){
221          cout<<"chID = " << chID << " should be between 0 and 15!"<<endl;
222          assert(0);
223        }
224       
225        ///////////////
226        //Charge:
227        indata  >> mot;
228        assert( mot == "Charge:" );
229        indata  >> charge;
230        indata  >> mot;
231       
232        //Time
233        indata  >> mot;
234        assert( mot == "Time:" );
235        indata  >> time;
236        indata  >> mot;
237       
238        //Amplitude
239        indata  >> mot;
240        assert( mot == "Amplitude:" );
241        indata  >> amplitude;
242        indata  >> mot;
243        ///////////////
244               
245        _Charge[chID]    = charge;
246        _Time[chID]      = time;
247        _Amplitude[chID] = amplitude;
248       
249        /*
250        cout<<" chID  "<< chID
251            <<": charge = " << charge
252            << " time = " << time
253            << " amplitude = " << amplitude
254            << endl;
255        */
256
257        for(i = 0;i<256;i++){
258          indata  >> amplVal;
259          //if(amplVal> 0.3){
260          //cout<<"amplVal   "<<amplVal<<endl
261          //    <<"eventID = "<<_eventID<<endl;
262          //}
263         
264          _ch[chID][i] = amplVal;
265        }
266       
267        //cout << "chID = " << chID << " i = " << i << endl;
268        if(chID == 15 && i == 256){     
269          // Event is finished, time to fill the tree
270          // First, make rough checks to see if data have been read correctly...
271          Bool_t checksOK = kTRUE;
272          if( -999 ==_eventID ) { 
273            cout << "_eventID = " << _eventID << " is bad!" << endl;
274            checksOK = false; 
275          }
276          if( _SamplingPeriod < 0 ) { 
277            cout << "_SamplingPeriod = " << _SamplingPeriod << " is bad!" << endl;
278            checksOK = false; 
279          }
280          if( -999 == _INLCorrection ) { 
281            cout << "_INLCorrection = " << _INLCorrection << " is bad!" << endl;
282            checksOK = false; 
283          }
284          // 2010/11/01: FCR check now irrelevant as this
285          // variable is no more present in the USBWC data files
286          /*
287          if( -999 == _FCR ) {
288            cout << "_FCR = " << _FCR << " is bad!" << endl;
289            checksOK = false;
290          }
291          */
292          if( _UnixTime < 1200000000 ) { 
293            cout << "_UnixTime = " << _UnixTime << " is bad!" << endl;
294            checksOK = false; 
295          }
296          for(j = 0;j<16;j++){
297            if( _Charge[j] < -1E19 ) { 
298              cout << "_Charge[" << j << "] = " << _Charge[j] << " is bad!" << endl;
299              checksOK = false; 
300            }
301            if( _Time[j] == -999.0 ) { 
302              cout << "_Time[" << j << "] = " << _Time[j] << " is bad!" << endl;
303              checksOK = false; 
304            }
305            if( _Amplitude[j] < -900 ) { 
306              cout << "_Amplitude[" << j << "] = " << _Amplitude[j] << " is bad!" << endl;
307              checksOK = false; 
308            }
309            for(int ii = 0;ii<256;ii++){
310              if( _ch[j][ii] < -900 ) { 
311                cout << "_ch[" << j << "][" << ii << "] = " 
312                     << _ch[j][ii] << " is bad!" << endl;
313                checksOK = false; 
314              }
315            }
316          }
317          if( checksOK ) {
318            //cout << "Fill the tree" << endl;
319            tree->Fill();
320          } else {
321            cout << "Problems with the data format of event " 
322                 << _eventID << " => it is not included in the ROOT file"
323                 << endl;
324          }
325          newEventShouldFollow = kTRUE; // One should start a new event next
326          // Init event variables in preparation for the next event
327          _eventID = -999;
328          _SamplingPeriod = -999.0;
329          _INLCorrection = -999;
330          _FCR = -999;
331          _UnixTime = -999.0;
332          for(j = 0;j<16;j++){
333            _Charge[j] = -1E10;
334            _Time[j] = -999.0;
335            _Amplitude[j] = -999.0;
336            for(int iii = 0;iii<256;iii++){
337              _ch[j][iii] = -999.0;
338            }
339          }
340          //if(_eventID%500==0)
341          //cout<<"eventID = "<<_eventID<<endl;     
342        }
343      } // if(mot == "CHANNEL"){
344     
345      ///////////////////////   
346    } // while (indata  >> mot ){
347    //cout<<" close "<<endl;
348    indata.close();
349    nEv_Tot += nEv; // Add the number of events read in file indata
350    cout << "\t   " << nEv << " events added to the ROOT tree" << endl; 
351   
352    /////////////////////////////
353  }
354  indataFileUSB.close();
355  hfile = tree->GetCurrentFile();
356  hfile->Write();
357
358  hfile->Close();
359
360  // Make the output ROOT file rw by the group
361  TString cmd = "chmod g+rw " + rootFileN;
362  //cout << "Executing command " << cmd << endl;
363  system( cmd.Data() );
364
365  cout<<"============================"<<endl;
366  cout<<"Total number of events read:"<<endl;
367  cout<<"nEv_Tot = "<<nEv_Tot<<endl;
368  cout<<"============================"<<endl; 
369}
370
371/*
372Example of one event (first event in /nfs/farm/g/superb/u02/crt/usbWaveCatcher/RawData/20101025/20101025.dat)
373
374=== EVENT 1 === FULLY ORDERED DATA [256 samples] in Volts === NB OF WAVECAT BOARDS = 8 ===
375Sampling Period = 312.5 ps INL Correction: YES
376FCR = 4713980 UnixTime = 1288036061.845 date = 2010.10.25 time = 12h.47m.41s.845ms
377== BOARD V5.6 FCR = 217 ==
378== CHANNEL : 0  Charge: 4508.108 pC Time: -1.000 ns Amplitude: -0.478980 V==
379-0.316931 -0.318570 -0.316152 -0.312452 -0.309125 -0.308452 -0.309490 -0.311050 -0.309804 -0.309270 -0.309651 -0.309232 -0.309708 -0.311310 -0.312599 -0.315338 -0.318109 -0.319178 -0.317192 -0.312467 -0.308519 -0.309161 -0.313768 -0.317890 -0.315570 -0.309536 -0.303649 -0.303700 -0.316209 -0.334939 -0.354491 -0.361469 -0.352264 -0.330595 -0.311186 -0.306999 -0.326185 -0.352967 -0.371032 -0.365432 -0.334816 -0.294381 -0.265692 -0.261251 -0.276730 -0.293097 -0.298990 -0.286545 -0.261995 -0.245894 -0.248994 -0.264025 -0.279088 -0.282534 -0.285876 -0.296394 -0.318613 -0.347953 -0.366891 -0.359340 -0.331940 -0.303957 -0.300123 -0.323698 -0.356154 -0.367424 -0.352383 -0.318486 -0.286497 -0.274388 -0.286543 -0.314581 -0.340983 -0.354375 -0.350884 -0.330376 -0.309087 -0.294641 -0.296292 -0.302648 -0.301923 -0.289136 -0.279293 -0.280616 -0.293936 -0.305394 -0.307817 -0.301750 -0.297651 -0.311929 -0.346712 -0.386859 -0.408295 -0.391968 -0.346887 -0.307035 -0.306487 -0.338165 -0.372228 -0.380661 -0.353008 -0.307621 -0.274077 -0.275469 -0.303401 -0.342716 -0.358747 -0.336316 -0.285253 -0.230868 -0.204156 -0.216015 -0.251847 -0.280619 -0.288070 -0.280942 -0.278568 -0.290394 -0.304659 -0.304428 -0.278582 -0.240339 -0.215703 -0.230616 -0.285634 -0.353527 -0.403994 -0.416182 -0.388675 -0.347290 -0.316056 -0.310501 -0.329833 -0.364036 -0.406042 -0.447317 -0.475965 -0.472677 -0.433051 -0.359338 -0.278517 -0.228365 -0.222495 -0.256484 -0.304693 -0.336734 -0.343923 -0.322056 -0.282002 -0.243393 -0.226304 -0.231027 -0.246812 -0.262308 -0.264612 -0.256591 -0.244803 -0.240134 -0.250002 -0.267928 -0.284066 -0.284809 -0.273500 -0.264526 -0.275110 -0.306185 -0.342262 -0.368986 -0.378862 -0.383410 -0.396361 -0.421087 -0.444498 -0.444457 -0.417879 -0.378162 -0.356540 -0.359288 -0.379948 -0.390200 -0.373683 -0.337465 -0.298107 -0.275132 -0.267646 -0.269857 -0.268052 -0.257524 -0.241423 -0.226089 -0.223624 -0.237940 -0.262212 -0.285741 -0.301418 -0.304386 -0.293042 -0.277758 -0.268384 -0.268179 -0.270334 -0.265878 -0.255361 -0.250934 -0.270916 -0.314005 -0.363820 -0.394129 -0.390932 -0.370031 -0.353193 -0.351948 -0.360981 -0.369776 -0.369424 -0.362904 -0.359481 -0.367025 -0.382622 -0.391518 -0.377875 -0.331443 -0.260772 -0.202146 -0.188900 -0.214896 -0.279929 -0.349441 -0.384307 -0.369191 -0.320169 -0.257569 -0.204647 -0.173593 -0.172656 -0.201385 -0.257578 -0.324409 -0.382313 -0.408876 -0.396319 -0.355382 -0.307664 -0.273902 -0.270731 -0.298339 -0.344861 -0.392408 -0.423209 -0.430787 -0.411075 -0.373821 -0.329314 -0.290308 -0.266912 -0.266192
380== CHANNEL : 1  Charge: 4557.769 pC Time: -1.000 ns Amplitude: -0.457220 V==
381-0.305318 -0.290546 -0.288116 -0.300513 -0.315897 -0.323734 -0.317307 -0.309193 -0.308736 -0.315713 -0.322015 -0.324171 -0.319658 -0.314487 -0.310291 -0.309113 -0.311360 -0.315339 -0.319602 -0.323652 -0.321189 -0.317042 -0.310116 -0.306923 -0.311818 -0.318776 -0.323540 -0.317853 -0.305099 -0.296225 -0.296832 -0.312486 -0.332421 -0.349200 -0.354082 -0.348870 -0.339009 -0.331388 -0.327543 -0.323577 -0.321155 -0.317355 -0.313714 -0.308605 -0.300694 -0.292428 -0.284275 -0.281288 -0.279914 -0.274428 -0.263834 -0.257707 -0.265333 -0.293560 -0.333777 -0.365155 -0.374184 -0.354394 -0.317179 -0.281557 -0.260346 -0.269742 -0.302640 -0.343662 -0.370228 -0.363304 -0.327174 -0.288353 -0.270106 -0.286288 -0.320136 -0.348003 -0.353404 -0.342408 -0.326326 -0.316416 -0.308246 -0.298948 -0.292072 -0.296063 -0.311183 -0.327469 -0.333531 -0.319013 -0.295783 -0.281471 -0.292609 -0.315345 -0.331551 -0.331829 -0.330169 -0.339349 -0.356227 -0.361994 -0.343142 -0.307947 -0.286977 -0.292604 -0.319470 -0.345284 -0.346234 -0.323062 -0.291457 -0.267468 -0.262240 -0.274820 -0.293261 -0.307103 -0.307801 -0.294202 -0.268342 -0.247338 -0.246544 -0.271383 -0.313841 -0.352046 -0.366819 -0.351792 -0.314808 -0.270931 -0.238161 -0.221219 -0.232318 -0.273085 -0.329797 -0.382643 -0.409537 -0.398153 -0.362003 -0.318090 -0.293775 -0.298807 -0.328810 -0.372650 -0.419478 -0.451797 -0.452293 -0.409001 -0.339140 -0.269794 -0.237049 -0.246221 -0.271915 -0.294321 -0.306754 -0.315827 -0.325788 -0.327655 -0.304454 -0.262068 -0.226467 -0.224862 -0.259643 -0.306860 -0.339234 -0.342367 -0.323060 -0.294237 -0.264053 -0.238462 -0.228088 -0.236434 -0.263769 -0.299799 -0.328992 -0.344374 -0.350498 -0.360833 -0.377472 -0.393277 -0.396228 -0.385617 -0.370069 -0.361522 -0.355848 -0.348419 -0.339012 -0.333301 -0.336210 -0.343388 -0.339738 -0.317124 -0.284910 -0.263852 -0.270759 -0.290204 -0.302544 -0.289946 -0.264043 -0.249845 -0.257616 -0.278430 -0.293408 -0.290267 -0.278996 -0.269279 -0.270571 -0.275347 -0.282496 -0.291678 -0.302138 -0.305829 -0.294848 -0.278125 -0.269523 -0.286939 -0.327794 -0.372410 -0.396379 -0.391915 -0.371801 -0.354875 -0.351358 -0.353071 -0.343569 -0.322551 -0.305689 -0.308579 -0.331524 -0.360650 -0.375121 -0.360149 -0.319859 -0.278562 -0.262903 -0.266799 -0.293275 -0.324165 -0.335232 -0.316824 -0.280059 -0.240887 -0.216211 -0.215959 -0.240824 -0.281914 -0.331384 -0.370701 -0.389115 -0.381217 -0.353996 -0.312769 -0.276053 -0.260631 -0.276632 -0.319119 -0.367343 -0.400115 -0.406553 -0.386033 -0.345815 -0.299375 -0.258807 -0.244099 -0.262502 -0.309928
382== BOARD V5.5 FCR = 41 ==
383== CHANNEL : 2  Charge: 4560.080 pC Time: -1.000 ns Amplitude: -0.504078 V==
384-0.313668 -0.316527 -0.315328 -0.315533 -0.315003 -0.313079 -0.313026 -0.314021 -0.314035 -0.313997 -0.312589 -0.313921 -0.313617 -0.314488 -0.315155 -0.317723 -0.321077 -0.322466 -0.321108 -0.317685 -0.312885 -0.308694 -0.306352 -0.308760 -0.312829 -0.317810 -0.320605 -0.320384 -0.318756 -0.318390 -0.319900 -0.324582 -0.326861 -0.323291 -0.314559 -0.310028 -0.312163 -0.321711 -0.330385 -0.335800 -0.335188 -0.328419 -0.320928 -0.312673 -0.306524 -0.299951 -0.293291 -0.290875 -0.295947 -0.299646 -0.296665 -0.287932 -0.282109 -0.291142 -0.318568 -0.351148 -0.369815 -0.360658 -0.328060 -0.295679 -0.281473 -0.287926 -0.306064 -0.325681 -0.340002 -0.345293 -0.340660 -0.323880 -0.299056 -0.285136 -0.288137 -0.311483 -0.338141 -0.354438 -0.347705 -0.325553 -0.304324 -0.293679 -0.291968 -0.296225 -0.303719 -0.318323 -0.340814 -0.361562 -0.361263 -0.338806 -0.308912 -0.287418 -0.287690 -0.305366 -0.320837 -0.320804 -0.311967 -0.308254 -0.315776 -0.327689 -0.332127 -0.328622 -0.331177 -0.341296 -0.352492 -0.349871 -0.324398 -0.285830 -0.256067 -0.252484 -0.278130 -0.310831 -0.320237 -0.297775 -0.257964 -0.229439 -0.235779 -0.268193 -0.310950 -0.347526 -0.369757 -0.373089 -0.355878 -0.312852 -0.254134 -0.205949 -0.200711 -0.242520 -0.310580 -0.374620 -0.413708 -0.421650 -0.400629 -0.359793 -0.310732 -0.266086 -0.251453 -0.281417 -0.354350 -0.439777 -0.496043 -0.495513 -0.430785 -0.336196 -0.254334 -0.221373 -0.234651 -0.270638 -0.304263 -0.326965 -0.345251 -0.359194 -0.355457 -0.322729 -0.276831 -0.237927 -0.229493 -0.255597 -0.297982 -0.336619 -0.352805 -0.345526 -0.321712 -0.295183 -0.277475 -0.266898 -0.260920 -0.256895 -0.255917 -0.262251 -0.279524 -0.305269 -0.336015 -0.369774 -0.401755 -0.425347 -0.425615 -0.401801 -0.361093 -0.324049 -0.308301 -0.313349 -0.326425 -0.335575 -0.337153 -0.332755 -0.328615 -0.324726 -0.315185 -0.299367 -0.275798 -0.252961 -0.235028 -0.229375 -0.240168 -0.271872 -0.313062 -0.345347 -0.361354 -0.358544 -0.335941 -0.298594 -0.260618 -0.232968 -0.225145 -0.235577 -0.255994 -0.280829 -0.307127 -0.338289 -0.369452 -0.391312 -0.393456 -0.373405 -0.341776 -0.312132 -0.300785 -0.311795 -0.336720 -0.361944 -0.375732 -0.378590 -0.371877 -0.363717 -0.349990 -0.324469 -0.281701 -0.236125 -0.217275 -0.237491 -0.304618 -0.388747 -0.441363 -0.433363 -0.375819 -0.290222 -0.211626 -0.160056 -0.147999 -0.181506 -0.254011 -0.346717 -0.425557 -0.461870 -0.441551 -0.381047 -0.307173 -0.247320 -0.212562 -0.210795 -0.247842 -0.318115 -0.396486 -0.454875 -0.468962 -0.432205 -0.358373 -0.279230 -0.230864 -0.228015
385== CHANNEL : 3  Charge: 4549.624 pC Time: -1.000 ns Amplitude: -0.483193 V==
386-0.310226 -0.303468 -0.304549 -0.310352 -0.315631 -0.317552 -0.316844 -0.318281 -0.320936 -0.321280 -0.321642 -0.319378 -0.317237 -0.313945 -0.311909 -0.312347 -0.313243 -0.313517 -0.313934 -0.315123 -0.314327 -0.312876 -0.309034 -0.310670 -0.315312 -0.321732 -0.322490 -0.317215 -0.307966 -0.302256 -0.304318 -0.315660 -0.330515 -0.340831 -0.344683 -0.342190 -0.337872 -0.331508 -0.326013 -0.321754 -0.317143 -0.314721 -0.309544 -0.304192 -0.299502 -0.295934 -0.296203 -0.297560 -0.292332 -0.278055 -0.263894 -0.261084 -0.279917 -0.317647 -0.359952 -0.384006 -0.377347 -0.342177 -0.291860 -0.254162 -0.246305 -0.268711 -0.309913 -0.347600 -0.362264 -0.346503 -0.317534 -0.291030 -0.284594 -0.297492 -0.321863 -0.348254 -0.365503 -0.370565 -0.356801 -0.329123 -0.303566 -0.293099 -0.298946 -0.315692 -0.331271 -0.341957 -0.345118 -0.334548 -0.314868 -0.291854 -0.280645 -0.289578 -0.312416 -0.335110 -0.341624 -0.330047 -0.315104 -0.308187 -0.310277 -0.313707 -0.316597 -0.317567 -0.325395 -0.338877 -0.346618 -0.329604 -0.293886 -0.253366 -0.239743 -0.256803 -0.292231 -0.320039 -0.318294 -0.291589 -0.259979 -0.247326 -0.263678 -0.301691 -0.344218 -0.376505 -0.382686 -0.353682 -0.303688 -0.245103 -0.204157 -0.197739 -0.229555 -0.288094 -0.355701 -0.407950 -0.426772 -0.410136 -0.362535 -0.308960 -0.276909 -0.278846 -0.318813 -0.379788 -0.443427 -0.480875 -0.469595 -0.405392 -0.310495 -0.228836 -0.201371 -0.232473 -0.284204 -0.323550 -0.339088 -0.343332 -0.352314 -0.357565 -0.339950 -0.293441 -0.244016 -0.225084 -0.254606 -0.309120 -0.355689 -0.366763 -0.337318 -0.287304 -0.241551 -0.217585 -0.222006 -0.246088 -0.272589 -0.297129 -0.312656 -0.325956 -0.339692 -0.355930 -0.373077 -0.387087 -0.394033 -0.389387 -0.375747 -0.354030 -0.333646 -0.328054 -0.336162 -0.348800 -0.355931 -0.344078 -0.317838 -0.288654 -0.271980 -0.271873 -0.279816 -0.283604 -0.281874 -0.278433 -0.283469 -0.300049 -0.314423 -0.315599 -0.305785 -0.294732 -0.290395 -0.287878 -0.277681 -0.260811 -0.253326 -0.265671 -0.290166 -0.308162 -0.307078 -0.295120 -0.297103 -0.323523 -0.360410 -0.382304 -0.376770 -0.353486 -0.333570 -0.329783 -0.336304 -0.343878 -0.342604 -0.333142 -0.326109 -0.330062 -0.344045 -0.358684 -0.359050 -0.336657 -0.294181 -0.257769 -0.248804 -0.274680 -0.328393 -0.375759 -0.385441 -0.349826 -0.296781 -0.246611 -0.213665 -0.207124 -0.232497 -0.284243 -0.344654 -0.390714 -0.400623 -0.376711 -0.335855 -0.291490 -0.262614 -0.257361 -0.275401 -0.313704 -0.364865 -0.412977 -0.430757 -0.407544 -0.347268 -0.274557 -0.225316 -0.219429 -0.255028 -0.312518
387== BOARD V5.2 FCR = 184 ==
388== CHANNEL : 4  Charge: 4499.645 pC Time: -1.000 ns Amplitude: -0.512485 V==
389-0.314680 -0.313563 -0.313603 -0.312163 -0.312433 -0.314472 -0.316666 -0.318077 -0.316628 -0.315353 -0.314832 -0.314377 -0.314684 -0.314437 -0.311550 -0.309313 -0.307594 -0.307825 -0.309698 -0.312382 -0.313062 -0.316681 -0.322955 -0.329063 -0.329105 -0.320392 -0.307628 -0.298083 -0.300894 -0.313258 -0.332817 -0.344342 -0.342777 -0.330584 -0.318504 -0.315958 -0.324740 -0.336754 -0.348097 -0.351055 -0.338320 -0.318745 -0.298172 -0.287560 -0.288152 -0.294784 -0.302917 -0.303859 -0.293759 -0.275170 -0.256301 -0.253332 -0.269331 -0.298493 -0.323918 -0.334502 -0.327919 -0.311287 -0.298026 -0.297023 -0.306009 -0.321250 -0.331227 -0.332153 -0.324390 -0.315645 -0.307108 -0.298549 -0.289841 -0.283162 -0.288770 -0.306331 -0.331632 -0.356829 -0.374572 -0.377872 -0.365369 -0.342031 -0.315477 -0.302913 -0.308584 -0.321541 -0.326024 -0.315248 -0.289228 -0.266608 -0.260884 -0.282881 -0.324692 -0.368945 -0.395500 -0.392883 -0.365787 -0.330913 -0.303431 -0.292220 -0.298928 -0.313653 -0.328904 -0.333264 -0.320504 -0.295603 -0.273280 -0.265892 -0.278051 -0.302969 -0.326470 -0.333824 -0.314508 -0.273959 -0.228506 -0.210670 -0.235069 -0.289579 -0.344673 -0.380488 -0.384947 -0.362615 -0.328990 -0.292651 -0.264493 -0.244028 -0.235661 -0.243143 -0.273150 -0.319333 -0.366148 -0.390830 -0.380483 -0.341211 -0.297010 -0.274008 -0.292347 -0.351065 -0.431985 -0.495312 -0.510105 -0.456813 -0.354535 -0.249855 -0.187370 -0.184503 -0.226489 -0.275587 -0.310283 -0.326428 -0.327196 -0.321564 -0.310074 -0.289757 -0.269152 -0.257648 -0.269021 -0.302178 -0.342498 -0.364763 -0.354706 -0.313008 -0.262940 -0.231632 -0.235434 -0.254105 -0.272566 -0.283472 -0.291395 -0.304925 -0.330879 -0.364082 -0.391611 -0.406151 -0.406807 -0.397553 -0.383145 -0.366739 -0.350778 -0.340153 -0.334159 -0.327344 -0.317649 -0.308121 -0.301224 -0.293266 -0.290025 -0.288340 -0.289125 -0.293137 -0.297248 -0.297120 -0.296990 -0.299406 -0.304858 -0.306333 -0.303714 -0.295511 -0.292381 -0.297105 -0.301707 -0.293781 -0.272721 -0.256834 -0.255538 -0.268489 -0.285662 -0.298092 -0.311351 -0.329479 -0.357053 -0.380210 -0.379854 -0.355554 -0.328750 -0.317512 -0.325953 -0.341482 -0.348156 -0.341173 -0.327990 -0.325218 -0.340456 -0.362492 -0.369672 -0.344132 -0.286861 -0.228914 -0.210050 -0.233153 -0.299449 -0.372451 -0.410074 -0.394491 -0.335912 -0.261491 -0.206531 -0.188033 -0.213274 -0.266482 -0.325145 -0.373492 -0.398392 -0.396045 -0.371115 -0.329362 -0.283326 -0.246275 -0.235967 -0.263854 -0.322877 -0.390036 -0.438350 -0.447529 -0.412078 -0.343184 -0.272982 -0.225812 -0.224371 -0.259881
390== CHANNEL : 5  Charge: 4508.829 pC Time: -1.000 ns Amplitude: -0.503383 V==
391-0.312300 -0.313078 -0.312146 -0.309945 -0.307183 -0.307601 -0.312512 -0.319450 -0.321241 -0.319224 -0.317439 -0.313836 -0.312103 -0.309010 -0.307031 -0.307022 -0.310426 -0.314737 -0.316312 -0.316920 -0.312403 -0.306021 -0.303425 -0.308558 -0.319788 -0.328783 -0.333122 -0.330653 -0.323028 -0.314335 -0.310275 -0.314695 -0.326064 -0.339563 -0.344206 -0.334274 -0.315219 -0.300601 -0.302392 -0.315345 -0.328222 -0.330237 -0.317672 -0.300146 -0.287106 -0.283054 -0.284685 -0.282283 -0.272365 -0.259839 -0.254853 -0.263807 -0.286670 -0.317524 -0.347994 -0.367980 -0.374301 -0.363030 -0.335858 -0.303807 -0.285279 -0.290734 -0.316240 -0.346467 -0.360449 -0.347756 -0.320661 -0.297098 -0.291230 -0.306597 -0.330221 -0.347939 -0.355675 -0.354131 -0.349326 -0.338836 -0.325009 -0.310993 -0.296862 -0.288657 -0.289521 -0.290534 -0.291586 -0.287313 -0.279346 -0.272285 -0.275968 -0.291530 -0.312962 -0.331540 -0.337693 -0.338121 -0.335967 -0.335146 -0.331099 -0.323476 -0.317444 -0.320337 -0.332477 -0.348930 -0.355609 -0.341628 -0.309113 -0.272315 -0.249634 -0.251527 -0.275624 -0.304035 -0.316481 -0.302106 -0.268511 -0.238488 -0.235881 -0.269050 -0.328104 -0.382861 -0.400543 -0.372297 -0.315937 -0.257928 -0.216520 -0.199082 -0.208936 -0.251603 -0.323663 -0.399085 -0.444410 -0.433124 -0.377930 -0.309929 -0.274653 -0.285620 -0.328582 -0.383770 -0.442134 -0.491507 -0.500563 -0.453521 -0.355858 -0.249201 -0.191561 -0.199354 -0.245520 -0.283739 -0.300082 -0.301346 -0.312096 -0.330934 -0.339007 -0.319987 -0.281402 -0.252438 -0.255419 -0.287154 -0.329496 -0.356199 -0.350603 -0.315971 -0.269316 -0.235710 -0.228772 -0.241662 -0.258714 -0.273031 -0.282129 -0.300857 -0.331683 -0.366155 -0.394111 -0.407586 -0.407380 -0.394038 -0.371739 -0.343869 -0.319327 -0.308187 -0.312644 -0.324699 -0.335007 -0.336058 -0.321871 -0.302833 -0.290845 -0.293240 -0.300585 -0.297274 -0.280515 -0.259169 -0.254465 -0.270706 -0.292759 -0.302639 -0.300861 -0.295125 -0.297604 -0.302515 -0.293444 -0.267765 -0.246051 -0.251080 -0.284837 -0.320567 -0.330193 -0.312936 -0.294224 -0.304694 -0.346537 -0.385736 -0.396884 -0.373108 -0.343902 -0.334942 -0.345923 -0.356216 -0.346744 -0.326253 -0.313078 -0.321171 -0.345955 -0.366466 -0.363308 -0.330996 -0.282527 -0.247459 -0.244264 -0.274717 -0.329836 -0.378525 -0.397229 -0.376927 -0.325018 -0.259936 -0.206015 -0.184733 -0.206254 -0.261610 -0.329679 -0.382317 -0.402323 -0.388236 -0.356900 -0.314093 -0.277030 -0.253452 -0.248572 -0.271469 -0.322291 -0.385210 -0.430994 -0.437603 -0.400131 -0.330596 -0.261963 -0.220993 -0.219451 -0.243337
392== BOARD V5.1 FCR = 172 ==
393== CHANNEL : 6  Charge: 4711.285 pC Time: -1.000 ns Amplitude: -0.483535 V==
394-0.308920 -0.312908 -0.320961 -0.325407 -0.324203 -0.317420 -0.313852 -0.315342 -0.317670 -0.317428 -0.315241 -0.315255 -0.318077 -0.323075 -0.325948 -0.327870 -0.328213 -0.326507 -0.325037 -0.323207 -0.326459 -0.335470 -0.348110 -0.356281 -0.349874 -0.324339 -0.288673 -0.261855 -0.259880 -0.281771 -0.307385 -0.310551 -0.282157 -0.246782 -0.237571 -0.272817 -0.333005 -0.377369 -0.376707 -0.341248 -0.294392 -0.262757 -0.261900 -0.280184 -0.304747 -0.318954 -0.315792 -0.298802 -0.284902 -0.288698 -0.311821 -0.336929 -0.343612 -0.328515 -0.304249 -0.297474 -0.317620 -0.358834 -0.384378 -0.373889 -0.329366 -0.282157 -0.265198 -0.298096 -0.353638 -0.388305 -0.383712 -0.341300 -0.291506 -0.269346 -0.289667 -0.333397 -0.364519 -0.356548 -0.318143 -0.284655 -0.281769 -0.312297 -0.353848 -0.382908 -0.386612 -0.377210 -0.361668 -0.337453 -0.305182 -0.269033 -0.238374 -0.232780 -0.250824 -0.280812 -0.301818 -0.303871 -0.282818 -0.253607 -0.233538 -0.248246 -0.301264 -0.361212 -0.400627 -0.396184 -0.346249 -0.277135 -0.222632 -0.199960 -0.211856 -0.232995 -0.253420 -0.275936 -0.317575 -0.376803 -0.429848 -0.445817 -0.404971 -0.340153 -0.288296 -0.280378 -0.324613 -0.398600 -0.464048 -0.482049 -0.435062 -0.342945 -0.258054 -0.228590 -0.256586 -0.302496 -0.330480 -0.327832 -0.312527 -0.314313 -0.327467 -0.334563 -0.314817 -0.275107 -0.236004 -0.220071 -0.239763 -0.282496 -0.323854 -0.339442 -0.318996 -0.275489 -0.235615 -0.225481 -0.254173 -0.283328 -0.296188 -0.288223 -0.283484 -0.305793 -0.350805 -0.396061 -0.418072 -0.405759 -0.371808 -0.340766 -0.330105 -0.342314 -0.364598 -0.379211 -0.377908 -0.363344 -0.346594 -0.336235 -0.331490 -0.327751 -0.320830 -0.310484 -0.292589 -0.273719 -0.263902 -0.272694 -0.293136 -0.309482 -0.307041 -0.287544 -0.272031 -0.279862 -0.301136 -0.318964 -0.315911 -0.294307 -0.268517 -0.252756 -0.249211 -0.249902 -0.252313 -0.267495 -0.297042 -0.334054 -0.364644 -0.372936 -0.363630 -0.350057 -0.344327 -0.343549 -0.343077 -0.337394 -0.328139 -0.318687 -0.316295 -0.323743 -0.342739 -0.362163 -0.358799 -0.327117 -0.276514 -0.249531 -0.275951 -0.335410 -0.389930 -0.404274 -0.364671 -0.300733 -0.237798 -0.201294 -0.197798 -0.224844 -0.272939 -0.323515 -0.358836 -0.370657 -0.363640 -0.348364 -0.335713 -0.315830 -0.289462 -0.270826 -0.281052 -0.323526 -0.380222 -0.421201 -0.423968 -0.382316 -0.317165 -0.260904 -0.241671 -0.257749 -0.295779 -0.327835 -0.337230 -0.340619 -0.337145 -0.329334 -0.320308 -0.310804 -0.300807 -0.293171 -0.288941 -0.289766 -0.296037 -0.311017 -0.330735 -0.347569 -0.346836 -0.316812
395== CHANNEL : 7  Charge: 5103.859 pC Time: -1.000 ns Amplitude: -0.138948 V==
396-0.321066 -0.318719 -0.311775 -0.301243 -0.297356 -0.299313 -0.306278 -0.313015 -0.319583 -0.327897 -0.336027 -0.337711 -0.324672 -0.304270 -0.293750 -0.309517 -0.352005 -0.397504 -0.417362 -0.400038 -0.365296 -0.339853 -0.336313 -0.339310 -0.326516 -0.297994 -0.273775 -0.276362 -0.300969 -0.320616 -0.310976 -0.266305 -0.210237 -0.171441 -0.173866 -0.213648 -0.274924 -0.328639 -0.355860 -0.349284 -0.319043 -0.281527 -0.253425 -0.244208 -0.252311 -0.271302 -0.290832 -0.307829 -0.323693 -0.335069 -0.337816 -0.332247 -0.323363 -0.323767 -0.343257 -0.373438 -0.403696 -0.421692 -0.419332 -0.400633 -0.377316 -0.368839 -0.376617 -0.387468 -0.385879 -0.361919 -0.326347 -0.297854 -0.287721 -0.291563 -0.302600 -0.317781 -0.337210 -0.358452 -0.376938 -0.380189 -0.358476 -0.309216 -0.255445 -0.224264 -0.234102 -0.279606 -0.327888 -0.351101 -0.338314 -0.297004 -0.241490 -0.185529 -0.148107 -0.140264 -0.166450 -0.211699 -0.256453 -0.289289 -0.308088 -0.316459 -0.314188 -0.304960 -0.290620 -0.272410 -0.249596 -0.227081 -0.219974 -0.236326 -0.269104 -0.298838 -0.309340 -0.307168 -0.306069 -0.317470 -0.339788 -0.362949 -0.382621 -0.402862 -0.425960 -0.453853 -0.477767 -0.487457 -0.478492 -0.447507 -0.401251 -0.352729 -0.324321 -0.327928 -0.351863 -0.374809 -0.380339 -0.361115 -0.327603 -0.304302 -0.301857 -0.313101 -0.326139 -0.323413 -0.304920 -0.293211 -0.300092 -0.322251 -0.338604 -0.322692 -0.270374 -0.205015 -0.163288 -0.171072 -0.218480 -0.264328 -0.282028 -0.277158 -0.274092 -0.294885 -0.332050 -0.369045 -0.388508 -0.394688 -0.390752 -0.381515 -0.373082 -0.369977 -0.371340 -0.374191 -0.366639 -0.348691 -0.329778 -0.315041 -0.307135 -0.303819 -0.298960 -0.293952 -0.287728 -0.280090 -0.270808 -0.260388 -0.250399 -0.239112 -0.229206 -0.224197 -0.229280 -0.245538 -0.265495 -0.278171 -0.277160 -0.266455 -0.254369 -0.246461 -0.236853 -0.222748 -0.211427 -0.221833 -0.265404 -0.330301 -0.392421 -0.426733 -0.419583 -0.389794 -0.360346 -0.341927 -0.340328 -0.344352 -0.345215 -0.348167 -0.360511 -0.382036 -0.407527 -0.421685 -0.408473 -0.363681 -0.305009 -0.265450 -0.267850 -0.315422 -0.375606 -0.415096 -0.410687 -0.363634 -0.294788 -0.234359 -0.199979 -0.198639 -0.227842 -0.276760 -0.325627 -0.363529 -0.381988 -0.384765 -0.364718 -0.334503 -0.303644 -0.285742 -0.294107 -0.327713 -0.375434 -0.418748 -0.440361 -0.423634 -0.373810 -0.312484 -0.267136 -0.253435 -0.263014 -0.276125 -0.280817 -0.278835 -0.276134 -0.279957 -0.290606 -0.301371 -0.310079 -0.314008 -0.304049 -0.286351 -0.268720 -0.263900 -0.276421 -0.292847 -0.296346 -0.268075
397== BOARD V5.7 FCR = 230 ==
398== CHANNEL : 8  Charge: 4608.539 pC Time: -1.000 ns Amplitude: -0.082652 V==
399-0.312929 -0.317271 -0.321364 -0.322404 -0.317444 -0.311024 -0.305915 -0.301686 -0.306203 -0.313677 -0.323281 -0.328956 -0.331192 -0.330081 -0.329354 -0.328283 -0.327157 -0.324983 -0.321443 -0.313198 -0.304924 -0.304202 -0.314549 -0.323086 -0.328766 -0.325469 -0.313421 -0.296455 -0.278745 -0.270053 -0.275094 -0.293120 -0.312854 -0.323927 -0.321072 -0.311845 -0.304017 -0.301094 -0.304856 -0.315287 -0.328766 -0.340751 -0.343767 -0.339572 -0.330690 -0.324047 -0.324422 -0.329974 -0.328909 -0.313572 -0.291665 -0.276879 -0.283957 -0.313041 -0.355408 -0.397376 -0.421998 -0.420185 -0.397415 -0.361918 -0.333141 -0.314419 -0.309924 -0.312974 -0.318288 -0.319877 -0.315637 -0.301266 -0.278852 -0.261981 -0.265075 -0.296561 -0.348993 -0.397446 -0.414051 -0.385522 -0.318580 -0.236506 -0.167261 -0.143971 -0.173873 -0.230312 -0.277059 -0.290884 -0.276149 -0.263113 -0.280218 -0.328555 -0.385386 -0.418204 -0.415676 -0.383172 -0.339785 -0.303918 -0.292256 -0.311313 -0.353556 -0.399708 -0.431701 -0.442772 -0.439967 -0.421694 -0.382890 -0.322466 -0.253422 -0.210310 -0.216087 -0.263073 -0.311540 -0.318649 -0.273183 -0.198994 -0.156925 -0.181069 -0.265992 -0.361060 -0.411542 -0.384870 -0.294640 -0.188214 -0.106674 -0.082916 -0.112942 -0.180871 -0.263147 -0.347880 -0.421888 -0.474017 -0.488216 -0.471337 -0.427866 -0.377119 -0.350662 -0.372334 -0.432127 -0.493173 -0.514829 -0.471073 -0.382670 -0.309861 -0.299385 -0.348126 -0.404615 -0.419920 -0.382976 -0.330000 -0.292324 -0.278840 -0.270847 -0.248376 -0.212473 -0.180737 -0.170129 -0.191607 -0.235980 -0.282757 -0.312447 -0.306415 -0.266530 -0.207835 -0.164676 -0.163503 -0.205846 -0.269586 -0.317084 -0.335820 -0.334831 -0.344521 -0.381783 -0.431840 -0.465630 -0.458197 -0.416575 -0.375209 -0.365618 -0.394952 -0.435913 -0.455494 -0.440433 -0.398775 -0.362540 -0.350236 -0.353938 -0.353058 -0.322784 -0.261803 -0.191243 -0.147616 -0.146367 -0.177457 -0.217169 -0.240967 -0.240788 -0.236932 -0.244553 -0.264332 -0.280212 -0.280340 -0.266206 -0.251066 -0.245847 -0.250464 -0.262563 -0.278370 -0.296661 -0.322628 -0.355201 -0.392263 -0.426248 -0.457284 -0.477281 -0.475012 -0.439794 -0.380895 -0.329510 -0.317129 -0.348438 -0.402433 -0.437278 -0.425534 -0.376567 -0.322574 -0.287782 -0.280513 -0.287505 -0.292140 -0.298241 -0.306210 -0.312216 -0.304053 -0.273911 -0.223955 -0.171077 -0.144402 -0.165611 -0.228749 -0.308574 -0.374956 -0.400812 -0.383363 -0.351210 -0.286552 -0.227096 -0.203691 -0.231774 -0.303153 -0.385560 -0.449714 -0.482790 -0.481507 -0.455079 -0.415516 -0.370486 -0.325511 -0.285983 -0.263673
400== CHANNEL : 9  Charge: 4519.139 pC Time: -1.000 ns Amplitude: -0.517262 V==
401-0.319634 -0.321179 -0.317052 -0.310921 -0.307629 -0.310147 -0.315332 -0.318832 -0.320522 -0.319246 -0.315466 -0.310307 -0.307253 -0.307667 -0.310711 -0.312317 -0.310518 -0.306938 -0.303721 -0.304803 -0.309183 -0.316611 -0.323472 -0.332149 -0.334652 -0.331947 -0.323603 -0.312415 -0.302799 -0.299263 -0.304243 -0.313674 -0.320440 -0.319113 -0.313436 -0.303152 -0.300605 -0.305013 -0.313842 -0.325459 -0.329745 -0.329421 -0.323854 -0.317013 -0.314116 -0.314179 -0.314522 -0.314749 -0.315795 -0.312207 -0.303132 -0.293729 -0.292286 -0.304746 -0.325965 -0.349606 -0.361892 -0.361706 -0.351107 -0.333922 -0.313283 -0.290545 -0.275777 -0.274063 -0.287202 -0.300502 -0.304436 -0.296062 -0.288705 -0.292951 -0.307294 -0.325228 -0.337280 -0.337886 -0.327982 -0.309458 -0.291141 -0.278108 -0.268034 -0.261238 -0.256000 -0.252132 -0.250978 -0.258665 -0.266804 -0.278365 -0.292113 -0.309656 -0.325668 -0.334527 -0.336951 -0.339553 -0.342194 -0.348645 -0.352781 -0.357823 -0.373748 -0.400242 -0.423011 -0.424596 -0.397459 -0.353085 -0.304079 -0.268182 -0.252938 -0.263240 -0.289946 -0.308917 -0.298715 -0.261693 -0.223348 -0.217770 -0.253469 -0.311716 -0.351233 -0.347335 -0.308475 -0.253794 -0.206235 -0.174239 -0.172072 -0.202138 -0.252112 -0.299804 -0.328146 -0.345760 -0.365277 -0.388645 -0.402786 -0.391375 -0.370287 -0.365012 -0.393022 -0.445772 -0.496316 -0.517204 -0.489996 -0.426056 -0.351991 -0.309448 -0.316815 -0.350986 -0.373029 -0.359746 -0.319896 -0.279489 -0.257114 -0.246300 -0.234456 -0.218114 -0.204772 -0.199189 -0.204547 -0.220913 -0.250226 -0.278943 -0.285106 -0.251016 -0.191541 -0.138771 -0.134494 -0.181973 -0.260815 -0.334455 -0.375397 -0.373542 -0.344659 -0.318093 -0.319552 -0.354924 -0.397716 -0.418861 -0.406101 -0.372212 -0.351658 -0.362321 -0.399155 -0.438157 -0.456554 -0.448922 -0.421313 -0.387470 -0.348348 -0.309006 -0.268510 -0.229658 -0.202176 -0.188452 -0.192443 -0.214895 -0.237961 -0.254253 -0.256312 -0.245053 -0.232234 -0.227598 -0.236105 -0.260100 -0.293198 -0.322570 -0.330248 -0.311345 -0.281099 -0.267879 -0.291179 -0.341551 -0.387683 -0.412005 -0.416003 -0.415183 -0.410205 -0.399621 -0.382848 -0.365408 -0.357864 -0.360488 -0.369231 -0.383063 -0.394159 -0.391207 -0.372244 -0.342735 -0.311051 -0.279079 -0.248012 -0.230210 -0.240018 -0.274453 -0.309837 -0.308946 -0.257802 -0.187443 -0.143252 -0.156674 -0.222347 -0.306881 -0.373312 -0.406322 -0.402621 -0.363798 -0.326932 -0.258639 -0.203183 -0.193896 -0.240101 -0.317555 -0.389390 -0.430780 -0.435800 -0.409207 -0.365775 -0.321982 -0.290930 -0.287686 -0.312585 -0.359754
402== BOARD V5.4 FCR = 53 ==
403== CHANNEL : 10  Charge: 4598.804 pC Time: 35.914 ns Amplitude: -0.584227 V==
404-0.313655 -0.307140 -0.303930 -0.303768 -0.309080 -0.315446 -0.319459 -0.321306 -0.321884 -0.318454 -0.314312 -0.310078 -0.313799 -0.322275 -0.333384 -0.333130 -0.321978 -0.309947 -0.305774 -0.311169 -0.318946 -0.324936 -0.327927 -0.327408 -0.323903 -0.319514 -0.310155 -0.304839 -0.300978 -0.301584 -0.303471 -0.309186 -0.312999 -0.314542 -0.314741 -0.312189 -0.315098 -0.320493 -0.323480 -0.320999 -0.317403 -0.312623 -0.311181 -0.309756 -0.312187 -0.321993 -0.338502 -0.356299 -0.365003 -0.362912 -0.346407 -0.317854 -0.293268 -0.286121 -0.299333 -0.321534 -0.333106 -0.318922 -0.285428 -0.248826 -0.230892 -0.245670 -0.294780 -0.357912 -0.396526 -0.393248 -0.356649 -0.312931 -0.291810 -0.299229 -0.313865 -0.322951 -0.319022 -0.315354 -0.315277 -0.317628 -0.323147 -0.319388 -0.308205 -0.296573 -0.301033 -0.326210 -0.358810 -0.365239 -0.322398 -0.237986 -0.165026 -0.153706 -0.212341 -0.308359 -0.385687 -0.411705 -0.398480 -0.381112 -0.390508 -0.424295 -0.450405 -0.439357 -0.384162 -0.309783 -0.260278 -0.266799 -0.309902 -0.346231 -0.346985 -0.312067 -0.268999 -0.252688 -0.262479 -0.272549 -0.260468 -0.231176 -0.207515 -0.208526 -0.242678 -0.295715 -0.330195 -0.311767 -0.240133 -0.162734 -0.135071 -0.189989 -0.299457 -0.396082 -0.423632 -0.387199 -0.323833 -0.273327 -0.258079 -0.268701 -0.310869 -0.381295 -0.461536 -0.531282 -0.571723 -0.584167 -0.567073 -0.517743 -0.434692 -0.343015 -0.273330 -0.246026 -0.261272 -0.284933 -0.282253 -0.252022 -0.215027 -0.204826 -0.242872 -0.307748 -0.352813 -0.341096 -0.280491 -0.212029 -0.181290 -0.205145 -0.243383 -0.255279 -0.225363 -0.175872 -0.156797 -0.183368 -0.243955 -0.306864 -0.338395 -0.328741 -0.308865 -0.321611 -0.384632 -0.470669 -0.525643 -0.508649 -0.437362 -0.375590 -0.373248 -0.433087 -0.495958 -0.509474 -0.454667 -0.362059 -0.291287 -0.282735 -0.316179 -0.339595 -0.318996 -0.257292 -0.188580 -0.158842 -0.181468 -0.230251 -0.269111 -0.267183 -0.225326 -0.170278 -0.140876 -0.151684 -0.195396 -0.234907 -0.245553 -0.233341 -0.231523 -0.264457 -0.341539 -0.423232 -0.469920 -0.456801 -0.409600 -0.379420 -0.391010 -0.421841 -0.430817 -0.398604 -0.344304 -0.318127 -0.351818 -0.421458 -0.488232 -0.502728 -0.438391 -0.317198 -0.204102 -0.155915 -0.192570 -0.276277 -0.342381 -0.361915 -0.349461 -0.325754 -0.295075 -0.251934 -0.188435 -0.125494 -0.098032 -0.134731 -0.231489 -0.345874 -0.429736 -0.443657 -0.379118 -0.271801 -0.207193 -0.169016 -0.214594 -0.312348 -0.411183 -0.471280 -0.479342 -0.458140 -0.424627 -0.395123 -0.359409 -0.314421 -0.268885 -0.250774 -0.285083 -0.362731
405== CHANNEL : 11  Charge: 4468.153 pC Time: -1.000 ns Amplitude: -0.056479 V==
406-0.314360 -0.313941 -0.319784 -0.319943 -0.314265 -0.307821 -0.302784 -0.302555 -0.304724 -0.309109 -0.312699 -0.314354 -0.315948 -0.318346 -0.319644 -0.318180 -0.316477 -0.312981 -0.316996 -0.319473 -0.318037 -0.313887 -0.311235 -0.311379 -0.307726 -0.297445 -0.281047 -0.264713 -0.266304 -0.286205 -0.316050 -0.336543 -0.337032 -0.315759 -0.288760 -0.271074 -0.270585 -0.283001 -0.302062 -0.318505 -0.335184 -0.352604 -0.364851 -0.367608 -0.356103 -0.331135 -0.303306 -0.289836 -0.296401 -0.325321 -0.361789 -0.391331 -0.400607 -0.390373 -0.369272 -0.346790 -0.325987 -0.305252 -0.290714 -0.287686 -0.305523 -0.342609 -0.386337 -0.409549 -0.388283 -0.321191 -0.243997 -0.209735 -0.240003 -0.312637 -0.383028 -0.415879 -0.405150 -0.366334 -0.316959 -0.269601 -0.229560 -0.198579 -0.183272 -0.192503 -0.221728 -0.261123 -0.292585 -0.295497 -0.276243 -0.253198 -0.253224 -0.278322 -0.312304 -0.334777 -0.346778 -0.358283 -0.379843 -0.406628 -0.425380 -0.431239 -0.420188 -0.390406 -0.345108 -0.295162 -0.260708 -0.259356 -0.285310 -0.317007 -0.340662 -0.350291 -0.348839 -0.330427 -0.291582 -0.236735 -0.195983 -0.197293 -0.235009 -0.292080 -0.339409 -0.348838 -0.316057 -0.246368 -0.157537 -0.080345 -0.057621 -0.106405 -0.208852 -0.324156 -0.412707 -0.455451 -0.447003 -0.397203 -0.339461 -0.307363 -0.332856 -0.400593 -0.466708 -0.504132 -0.517372 -0.523582 -0.512480 -0.465115 -0.381466 -0.295997 -0.250555 -0.252627 -0.276664 -0.300430 -0.323644 -0.353635 -0.384763 -0.396558 -0.368810 -0.313595 -0.253907 -0.206422 -0.182390 -0.182301 -0.205944 -0.242104 -0.266049 -0.265729 -0.240346 -0.208994 -0.186528 -0.184224 -0.206613 -0.250208 -0.311857 -0.370156 -0.410380 -0.430301 -0.435030 -0.435898 -0.432421 -0.420137 -0.400022 -0.379973 -0.372209 -0.382235 -0.398327 -0.408796 -0.403160 -0.373548 -0.321864 -0.267366 -0.236659 -0.238524 -0.252297 -0.246536 -0.215586 -0.185104 -0.192442 -0.238397 -0.284000 -0.291736 -0.262550 -0.218332 -0.202387 -0.214376 -0.226860 -0.218525 -0.200433 -0.196154 -0.224066 -0.271521 -0.320790 -0.364506 -0.404210 -0.438541 -0.457812 -0.461827 -0.445605 -0.419474 -0.398294 -0.388726 -0.386429 -0.388858 -0.389418 -0.395154 -0.410857 -0.418878 -0.395110 -0.327707 -0.240843 -0.184371 -0.194794 -0.263906 -0.342138 -0.396354 -0.413213 -0.397869 -0.353306 -0.276842 -0.185046 -0.112770 -0.102472 -0.159882 -0.254339 -0.340822 -0.382885 -0.371245 -0.321858 -0.258916 -0.225619 -0.204645 -0.227743 -0.285697 -0.359783 -0.428725 -0.476710 -0.501012 -0.488539 -0.440085 -0.364513 -0.291794 -0.249941 -0.260312 -0.301488 -0.344550
407== BOARD V5.8 FCR = 41 ==
408== CHANNEL : 12  Charge: 4342.146 pC Time: -1.000 ns Amplitude: -0.043246 V==
409-0.346180 -0.338430 -0.332793 -0.332106 -0.335513 -0.346030 -0.352375 -0.353469 -0.345222 -0.332793 -0.321138 -0.311565 -0.304002 -0.294026 -0.286896 -0.283200 -0.287612 -0.297231 -0.313224 -0.329959 -0.343495 -0.350353 -0.346237 -0.331382 -0.310971 -0.289224 -0.273021 -0.264583 -0.262297 -0.265260 -0.271044 -0.282721 -0.299628 -0.313088 -0.320443 -0.318457 -0.311417 -0.303206 -0.298176 -0.299677 -0.308853 -0.323625 -0.339861 -0.351939 -0.353250 -0.346587 -0.338351 -0.329819 -0.320603 -0.305978 -0.294938 -0.299752 -0.318738 -0.350849 -0.377126 -0.385891 -0.376184 -0.359156 -0.339413 -0.321937 -0.308387 -0.303963 -0.316608 -0.344634 -0.376021 -0.393314 -0.384702 -0.347968 -0.292531 -0.243062 -0.224102 -0.240675 -0.284570 -0.338557 -0.386852 -0.416181 -0.417518 -0.388908 -0.334794 -0.270151 -0.218453 -0.193700 -0.201583 -0.227298 -0.260457 -0.287906 -0.304232 -0.296397 -0.269859 -0.237502 -0.227688 -0.250194 -0.298480 -0.350929 -0.391935 -0.415551 -0.416338 -0.402713 -0.385730 -0.379240 -0.380563 -0.374652 -0.348232 -0.298014 -0.247186 -0.224752 -0.245770 -0.294659 -0.341260 -0.361955 -0.347387 -0.296588 -0.230732 -0.184424 -0.193541 -0.258713 -0.339366 -0.395466 -0.409235 -0.379551 -0.314347 -0.221044 -0.121262 -0.053570 -0.052454 -0.126217 -0.239126 -0.355881 -0.440383 -0.470043 -0.448561 -0.387350 -0.335631 -0.336149 -0.386477 -0.453160 -0.503787 -0.527427 -0.529547 -0.511144 -0.465865 -0.396468 -0.325705 -0.281626 -0.275235 -0.277925 -0.271759 -0.259064 -0.261167 -0.290442 -0.326578 -0.342915 -0.324839 -0.283974 -0.253971 -0.257156 -0.284817 -0.308320 -0.300569 -0.256876 -0.211474 -0.187934 -0.182148 -0.177439 -0.165307 -0.164464 -0.208869 -0.297729 -0.401087 -0.471784 -0.486414 -0.460716 -0.429241 -0.414316 -0.415836 -0.415967 -0.404061 -0.392893 -0.385209 -0.384231 -0.383878 -0.375143 -0.343652 -0.297375 -0.253216 -0.236598 -0.255662 -0.285649 -0.293270 -0.265036 -0.221449 -0.190237 -0.194636 -0.218770 -0.244560 -0.256195 -0.254305 -0.247054 -0.239370 -0.231619 -0.226898 -0.223561 -0.223750 -0.231522 -0.249965 -0.278582 -0.315848 -0.361487 -0.417177 -0.473279 -0.511048 -0.511004 -0.475007 -0.423806 -0.385171 -0.366189 -0.354783 -0.336660 -0.316592 -0.311733 -0.336335 -0.373247 -0.384855 -0.351100 -0.288492 -0.246790 -0.254701 -0.309848 -0.383135 -0.440154 -0.453631 -0.403332 -0.297420 -0.167948 -0.074244 -0.062545 -0.127484 -0.225723 -0.312875 -0.364507 -0.376558 -0.367377 -0.329881 -0.277112 -0.236084 -0.236795 -0.287423 -0.367841 -0.452850 -0.514867 -0.531741 -0.492689 -0.412800 -0.319325 -0.253408 -0.232486
410== CHANNEL : 13  Charge: 4559.542 pC Time: -1.000 ns Amplitude: -0.541856 V==
411-0.337238 -0.336925 -0.334881 -0.332447 -0.337989 -0.345818 -0.350249 -0.344484 -0.327265 -0.309385 -0.300122 -0.297063 -0.299968 -0.309312 -0.319024 -0.327818 -0.332031 -0.336157 -0.335694 -0.329797 -0.320193 -0.308588 -0.298443 -0.294269 -0.293496 -0.293449 -0.297058 -0.298546 -0.295731 -0.289195 -0.281750 -0.276167 -0.277298 -0.285306 -0.299651 -0.314485 -0.328042 -0.334705 -0.333311 -0.324559 -0.311130 -0.296779 -0.290170 -0.291143 -0.299789 -0.314540 -0.326240 -0.336421 -0.346220 -0.351953 -0.354128 -0.349613 -0.341296 -0.332143 -0.329481 -0.336184 -0.350676 -0.362774 -0.365004 -0.352593 -0.326139 -0.299894 -0.282351 -0.285772 -0.303353 -0.319238 -0.317414 -0.299881 -0.275018 -0.261978 -0.270339 -0.296466 -0.328952 -0.356094 -0.369273 -0.369586 -0.362183 -0.349909 -0.339456 -0.332297 -0.328302 -0.327294 -0.322308 -0.305856 -0.275899 -0.238988 -0.211416 -0.206563 -0.232738 -0.275260 -0.320446 -0.345366 -0.346225 -0.328613 -0.308114 -0.299898 -0.311498 -0.331651 -0.350021 -0.364267 -0.371340 -0.372161 -0.365401 -0.343394 -0.311712 -0.277827 -0.255212 -0.254326 -0.274850 -0.304095 -0.325622 -0.326516 -0.310488 -0.290618 -0.294975 -0.323708 -0.360374 -0.373572 -0.350630 -0.299020 -0.237858 -0.186056 -0.161441 -0.175348 -0.217156 -0.268595 -0.309248 -0.334490 -0.350028 -0.360281 -0.358250 -0.337931 -0.316213 -0.322848 -0.369815 -0.445010 -0.512672 -0.541756 -0.517171 -0.440986 -0.336701 -0.252237 -0.222186 -0.242664 -0.293771 -0.327725 -0.339541 -0.334403 -0.327806 -0.321108 -0.308936 -0.292787 -0.285253 -0.287641 -0.302354 -0.322823 -0.341814 -0.350884 -0.336978 -0.290526 -0.226282 -0.172486 -0.150441 -0.160300 -0.188365 -0.221845 -0.261873 -0.305986 -0.352696 -0.385447 -0.405566 -0.413618 -0.409329 -0.395578 -0.374654 -0.355480 -0.353395 -0.368685 -0.388238 -0.395338 -0.387261 -0.365776 -0.340587 -0.316462 -0.300684 -0.291568 -0.288609 -0.277165 -0.255782 -0.229858 -0.216569 -0.226409 -0.254675 -0.289662 -0.321839 -0.337919 -0.326841 -0.283216 -0.224487 -0.182147 -0.181073 -0.212574 -0.250635 -0.275641 -0.285918 -0.298649 -0.326869 -0.367317 -0.408835 -0.431258 -0.432666 -0.418294 -0.395859 -0.375261 -0.362960 -0.357243 -0.355469 -0.348676 -0.341800 -0.339845 -0.344619 -0.346619 -0.326785 -0.289203 -0.257305 -0.258731 -0.305427 -0.372292 -0.422893 -0.433466 -0.399020 -0.329161 -0.242833 -0.165423 -0.127478 -0.147209 -0.212500 -0.292703 -0.355359 -0.380426 -0.375312 -0.346317 -0.306796 -0.276210 -0.262544 -0.262622 -0.274262 -0.300229 -0.346279 -0.404046 -0.452614 -0.465833 -0.432066 -0.371604 -0.315131 -0.275431
412== BOARD V5.3 FCR = 58 ==
413== CHANNEL : 14  Charge: 4544.876 pC Time: -1.000 ns Amplitude: -0.162779 V==
414-0.307360 -0.319275 -0.327005 -0.326606 -0.317154 -0.304819 -0.299639 -0.305081 -0.313984 -0.320097 -0.322080 -0.321549 -0.321039 -0.323516 -0.325853 -0.325324 -0.318497 -0.307218 -0.297340 -0.293122 -0.296605 -0.302317 -0.309841 -0.316734 -0.325079 -0.329289 -0.330448 -0.327485 -0.320468 -0.313306 -0.305624 -0.300326 -0.296073 -0.297678 -0.301176 -0.305043 -0.309644 -0.310775 -0.313954 -0.318240 -0.319899 -0.315082 -0.305075 -0.290487 -0.281621 -0.284306 -0.297257 -0.314289 -0.333625 -0.349234 -0.355879 -0.354302 -0.347241 -0.335236 -0.329927 -0.330706 -0.333257 -0.335601 -0.334253 -0.328132 -0.316611 -0.298694 -0.284270 -0.281330 -0.297785 -0.331214 -0.359005 -0.366744 -0.349533 -0.319767 -0.292397 -0.283742 -0.294576 -0.320308 -0.342032 -0.350809 -0.335856 -0.310251 -0.290384 -0.290191 -0.308147 -0.324690 -0.324162 -0.299299 -0.259772 -0.223470 -0.203490 -0.205900 -0.224438 -0.252551 -0.285541 -0.322001 -0.356885 -0.379868 -0.381180 -0.358903 -0.329648 -0.318166 -0.336186 -0.374398 -0.408814 -0.411206 -0.378044 -0.324455 -0.276134 -0.257818 -0.274167 -0.304987 -0.326668 -0.326599 -0.305291 -0.277244 -0.258617 -0.257857 -0.274874 -0.295471 -0.310138 -0.312926 -0.307472 -0.290553 -0.261659 -0.226533 -0.195757 -0.183838 -0.205279 -0.254996 -0.316631 -0.365538 -0.387428 -0.376668 -0.346413 -0.317989 -0.308109 -0.320196 -0.344905 -0.372798 -0.401996 -0.429090 -0.454241 -0.459080 -0.425223 -0.361719 -0.302642 -0.282648 -0.309495 -0.350556 -0.376453 -0.373412 -0.340684 -0.297496 -0.259891 -0.241633 -0.244047 -0.262508 -0.280518 -0.293818 -0.307552 -0.330289 -0.355041 -0.362447 -0.330851 -0.269184 -0.203057 -0.164697 -0.174728 -0.217209 -0.265587 -0.299722 -0.316324 -0.324341 -0.342809 -0.379268 -0.417397 -0.436559 -0.418239 -0.373734 -0.332149 -0.323211 -0.342365 -0.369113 -0.382416 -0.372093 -0.339835 -0.301271 -0.275406 -0.271043 -0.283532 -0.293033 -0.281386 -0.247988 -0.215855 -0.207373 -0.231189 -0.258542 -0.271730 -0.271291 -0.267227 -0.268365 -0.278101 -0.288050 -0.292764 -0.288031 -0.275614 -0.264856 -0.269978 -0.296594 -0.335793 -0.367717 -0.383385 -0.377151 -0.363408 -0.354227 -0.354284 -0.359818 -0.368312 -0.376254 -0.383058 -0.386195 -0.380484 -0.366760 -0.345209 -0.318352 -0.294916 -0.276338 -0.269085 -0.276712 -0.298057 -0.321066 -0.343412 -0.357023 -0.366191 -0.362513 -0.338920 -0.294685 -0.238077 -0.194588 -0.186699 -0.219505 -0.276552 -0.326861 -0.342567 -0.332577 -0.298818 -0.266356 -0.256368 -0.272111 -0.301564 -0.329474 -0.354380 -0.384717 -0.423738 -0.457123 -0.462178 -0.424716 -0.350740 -0.271623
415== CHANNEL : 15  Charge: 4550.158 pC Time: -1.000 ns Amplitude: -0.500333 V==
416-0.313784 -0.304739 -0.291880 -0.288150 -0.295617 -0.310744 -0.325602 -0.327353 -0.320883 -0.309041 -0.302407 -0.302838 -0.308449 -0.314583 -0.321410 -0.324788 -0.325660 -0.322184 -0.318865 -0.317767 -0.316101 -0.313414 -0.315605 -0.320215 -0.325514 -0.326848 -0.323287 -0.311129 -0.295912 -0.282795 -0.279435 -0.286620 -0.301984 -0.314090 -0.320322 -0.318258 -0.308803 -0.296836 -0.287762 -0.283536 -0.287209 -0.293504 -0.303749 -0.312801 -0.321773 -0.330258 -0.336028 -0.337216 -0.333193 -0.321411 -0.306402 -0.300601 -0.310656 -0.332180 -0.350901 -0.351458 -0.339828 -0.332191 -0.338272 -0.354131 -0.360324 -0.348000 -0.323559 -0.310376 -0.324508 -0.358394 -0.385803 -0.382577 -0.343082 -0.284896 -0.242382 -0.241825 -0.282222 -0.331308 -0.350356 -0.332988 -0.292659 -0.265628 -0.271517 -0.301773 -0.324933 -0.318670 -0.281381 -0.229598 -0.197426 -0.202571 -0.237844 -0.274805 -0.293737 -0.295600 -0.301239 -0.323221 -0.353522 -0.368394 -0.356216 -0.332237 -0.326827 -0.356380 -0.411060 -0.458954 -0.468363 -0.426062 -0.346440 -0.262600 -0.219769 -0.233692 -0.287171 -0.343641 -0.364668 -0.342942 -0.300430 -0.264585 -0.254897 -0.265251 -0.279692 -0.287974 -0.289279 -0.287756 -0.287416 -0.279045 -0.251839 -0.209523 -0.163012 -0.136457 -0.150803 -0.207520 -0.286322 -0.354061 -0.391232 -0.385177 -0.363867 -0.344394 -0.340104 -0.350314 -0.375081 -0.407352 -0.441105 -0.463712 -0.476518 -0.480315 -0.473882 -0.445144 -0.387832 -0.321223 -0.271140 -0.267922 -0.301235 -0.338930 -0.350896 -0.331493 -0.301228 -0.274262 -0.254048 -0.238998 -0.230907 -0.237018 -0.261112 -0.289853 -0.309650 -0.306840 -0.284551 -0.248361 -0.210831 -0.191470 -0.197620 -0.223897 -0.261536 -0.293794 -0.321779 -0.353339 -0.391736 -0.427308 -0.445046 -0.432752 -0.396871 -0.357971 -0.339520 -0.345005 -0.359279 -0.374105 -0.384425 -0.388666 -0.383367 -0.364214 -0.332154 -0.293293 -0.252726 -0.218642 -0.204549 -0.218614 -0.252804 -0.280878 -0.282020 -0.248611 -0.211861 -0.193246 -0.197966 -0.210969 -0.224125 -0.240944 -0.265878 -0.288548 -0.297560 -0.292369 -0.288384 -0.299795 -0.329879 -0.359479 -0.381212 -0.390002 -0.392850 -0.391782 -0.389578 -0.388810 -0.390928 -0.393195 -0.392238 -0.385267 -0.379608 -0.374959 -0.371408 -0.364214 -0.347468 -0.325864 -0.300993 -0.278419 -0.264233 -0.260414 -0.270193 -0.294246 -0.325409 -0.346262 -0.339253 -0.300932 -0.242154 -0.190302 -0.169063 -0.187545 -0.233334 -0.288004 -0.322354 -0.347610 -0.351107 -0.335257 -0.315334 -0.301485 -0.296900 -0.306337 -0.338911 -0.391247 -0.451753 -0.495153 -0.490034 -0.427911 -0.333039 -0.237103
417*/
Note: See TracBrowser for help on using the repository browser.