diff --git a/Scripts_20161126/#beammon.h# b/Scripts_20161126/#beammon.h# new file mode 100644 index 0000000..b3b4061 --- /dev/null +++ b/Scripts_20161126/#beammon.h# @@ -0,0 +1,2017 @@ +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +using namespace std; + +double globalUpperBound = 63; +double globalLowerBound = 1; +double measurementsPerSecond = 3000; +int Fit_Fail_Counts = 0; +int signalScale = 1; +int alignint = 1; +int alignintIc = 1; +double discardUpperThreshold = 0.01; +double discardLowerThreshold = -0.015; + +Double_t fitfunc(Double_t *x, Double_t *par) +{ + Double_t arg1 = 0; + if (par[2] != 0) + arg1 = (x[0] - par[1]) / par[2]; + Double_t fitval1 = par[0] * TMath::Exp(-0.5 * arg1 * arg1); + Double_t arg2 = 0; + if (par[4] != 0) + arg2 = (x[0] - par[1]) / par[4]; + Double_t fitval2 = par[3] * TMath::Exp(-0.5 * arg2 * arg2); + Double_t fitsum = par[5] + fitval1 + fitval2; + return fitsum; +} + +class Beammon +{ + +private: + TTree *data; + TTree *newdata; + TBranch *b_time; + TBranch *b_ic1; + TBranch *b_ic2; + TBranch *b_mw1_focusx; + TBranch *b_mw1_focusy; + TBranch *b_mw2_focusx; + TBranch *b_mw2_focusy; + TBranch *b_mw1_posx; + TBranch *b_mw1_posy; + TBranch *b_mw2_posx; + TBranch *b_mw2_posy; + TBranch *b_channels[64]; + + TBranch *bb_ic1; + TBranch *bb_ic2; + TBranch *bb_mw1_focusx; + TBranch *bb_mw2_focusx; + TBranch *bb_mw1_posx; + TBranch *bb_mw2_posx; + TBranch *b_beamPosX_1; + TBranch *b_beamFocusX_1; + TBranch *b_beamSignal_1; + TBranch *b_beamPosX_2; + TBranch *b_beamFocusX_2; + TBranch *b_beamSignal_2; + TBranch *b_beamOn; + + double beamPosX_1; + double beamFocusX_1; + double beamSignal_1; + double beamPosX_2; + double beamFocusX_2; + double beamSignal_2; + double beamOn; + double sigma_pos = 0.1; + + char *file; + TFile *fileIn; + TFile *fileOut; + + TObjArray objectArray; + + bool isSipm; + bool firstMat; + double channelWidth; + + double shift; + + long nevents; + int nBaselineEvents; + int nPrelimEvents; + int highestChannelBin; + int highestTimeBin; + double beamOnAdcVal; + double referenceIntegral; + double beamOnLevel; + double prelimMean; + double prelimSigma; + double highVal; + double readOutFreq; + int intTime; + double chi2ndf; + double fwhm; + + double mean_ave; + double sigma_ave; + + double signalToParticles = 1; // multiply signal by this amount, so that mean of singal (photodiode) and icChamber distribution are the same + double signalDistScale = 1; // icChamber signal distribution has more entries than signal (photodiode) one, so increase bin content in signal dist. by 1*this factor, to achieve the same integral + + double time; + int startTime; + int stopTime; + int timesteps; + double intSignal; + int beamOnTime; + double baselineIntegral; + + double ic1; + double ic2; + double mw1_focusx; + double mw1_focusy; + double mw2_focusx; + double mw2_focusy; + double mw2_posx; + double mw2_posy; + double mw1_posx; + double mw1_posy; + double icIntegral; + double completeIntegral; + + double ic1_1; + double ic2_1; + double mw1_focusx_1; + double mw2_focusx_1; + double mw2_posx_1; + double mw1_posx_1; + + vector > spillTimes; + + double channels[64]; + double baseline[64]; + double channelErrors[64]; + double current; + + TGraph *gChannelErrors; + TH1D *meanHistOn; + TH1D *widthHistOn; + TH2D *timePosHist; + TH1D *prelimBeam; + TH2D *timeCenters; + TH2D *timeCenters_MWPC; + TH2D *timeWidths; + TH2D *timeWidths_MWPC; + TH1D *signalDist; + TH1D *signalNoiseDist; + TH1D *signalNoiseChannel; + TH2D *simpleView; + TH1D *timeIntSignal; + TH1D *timeIntSignal_MWPC; + TH1D *beamPosHist; + TH1D *beamWidthHist; + TH1D *icSignalDist; + TGraphErrors *beamPosTimeGraph; + TGraphErrors *signalTimeGraph; + TGraphErrors *sigIcScatterGraph; + TGraphErrors *mwPosScatterGraph; + TH2D *sigIcScatterPlot[20]; + TH2D *sigIcScatterPlot_ic2; + TH2D *mwPosScatterPlot[20]; + TH1D *ic1Hist; + TH1D *ic2Hist; + TH1D *signalComp; + TH1D *positionComp; + TH1D *widthComp; + TH1D *mw1_focusxHist; + TH1D *mw1_focusyHist; + TH1D *mw2_focusxHist; + TH1D *mw2_focusyHist; + TH1D *mw1_posxHist; + TH1D *mw1_posyHist; + TH1D *mw2_posxHist; + TH1D *mw2_posyHist; + TH1D *channelSig[64]; + TH1D *chisquareDist; + TH1D *mwPosX; + TH1D *mwFocusX; + TH1D *beamPosX; + TH1D *beamFocusX; + TH1D *sigHist; + TH1D *sigHist_weighted; + TH1D *fibreHist; + TH1D *fibreHist_weighted; + TH1D *mwpcHist; + + TH2D *Center_Signal; + TH2D *Diff_timeCenters; + TH2D *Diff_Signal; + TH2D *Diff_ic1; + TH1D *Diff_hist; + TH2D *deltaSig_time; + TH2D *deltaSig_Sig; + TH1D *SlicesAvg; + TH2D *SignalErrHist; + + void calcBaseline(bool useFirstEvents); + void calcBaselineIntegral(); + void prelimProfile(); + TH1D *AverageHist(int dir, int timeStart = -1, int timeStop = -1); + TH1D *TimeAverage(int timeStart, int timeStop); + TH1D *TimeIntSignal(int timeStart = -1, int timeStop = -1); + bool isAboveThreshold(TH1D *slice); + bool isAboveThreshold(double val); + bool isAboveThreshold(TGraphErrors *slice); + TH1D *calcTimeCenters(int start, int stop); + double calcBeamTime(); + + // Tom Add + +public: + Beammon(); + ~Beammon(); + + void Initialize(const char *dirname, const char *filename, int baselineEvents = 1000, int prelimEvents = 10000, double beamLevel = 0.1, bool firstFibermat = true, double readOutFrequency = 1000., int integrationTime = 100); + TH1D *GetPrelimProfile(); + void ProcessData(); + TH1D *GetChannelAvg(bool beamOn = false); + TH1D *GetChannelSigDist(int channel); + TH1D *GetTimeAvg(); + TH1D *GetTimeAvg(int nSpill); + TH1D *GetTimeAvg(int nSpill, int nMeasurements); + TH2D *GetTimeAvgScatter(); + TH2D *GetTimeAvgScatter(int nSpill, int nMeasurements); + TH1D *GetChannelSlice(int time = -1, int offset = 0); + TH1D *GetChannelSlice2(int time = -1, int offset = 0); + TGraphErrors *GetChannelGraph(int time = -1, int offset = 0); + TH1D *GetChannelGraphHist(int time, int offset); + TH1D *GetTimeSlice(int channel = -1, int startTime = -1, int stopTime = -1, bool beamOn = false); + TCanvas *GetTimeSliceCanvas(int channel = -1); + TCanvas *GetSignalNoiseChannel(int channel = -1); + TH1D *GetSignalOverTime(); + void GetTimeCenters(); + void GetTimeWidths(); + void PrintSpillTimes(); + pair GetSpillTimes(int nSpill); + TH2D *GetSpillCenters(int nSpill); + TH1D *GetSpillSlice(int nSpill); + TH1D *GetSignalDistribution(); + TCanvas *GetSignalDistributionCanvas(); + TH2D *GetSimpleView(); + TH1D *GetBaselineHist(); + TH1D *icSignalComp(); + double GetIntSignal(); + int GetBeamOnTime(); + double GetSignalStd(); + TCanvas *signalOverTime2d(); + TCanvas *FitSnapshot(int offset); + TCanvas *FitAverage(); + TCanvas *PrintBaseline(); + TCanvas *PrintChannelNoise(int channel); + TCanvas *PrintProfile(int offset); + TCanvas *IcFitSlicesY(); + TCanvas *PrintSigIcGraph(); + TH1D *GetMwPosComp(); + void Save(); + void Close(); + + TCanvas *GetSig_e_ic_Hist(); + TCanvas *GetSig_e_ic_Hist_Weighted(); + + int Fit_Fail_Number = 200; + int event_count = 0; +}; + +Beammon::Beammon() {} + +Beammon::~Beammon() {} + +void Beammon::Initialize(const char *dirname, const char *filename, int baselineEvents, int prelimEvents, double beamLevel, bool firstFibermat, double readOutFrequency, int integrationTime) +{ + + signalToParticles = 7937 / 1.443e4; // FOR RUN 26 only + signalDistScale = 1.; //44585./26225;// FOR RUN 26 ONLY + intTime = integrationTime; + readOutFreq = readOutFrequency; + firstMat = firstFibermat; + highestChannelBin = 20; + highestTimeBin = 0; + icIntegral = 0; + completeIntegral = 0; + + TString fn = TString(filename); + TString dn = TString(dirname); + if (fn.Contains("sipm")) + { + channelWidth = 0.25; + isSipm = true; + } + + else + { + channelWidth = 0.8; + isSipm = false; + } + TString inName = dn + "pin/" + fn; + fileIn = new TFile(inName, "UPDATE"); + fileIn->GetObject("t", data); + TString outname = filename; + if (firstMat) + outname.Insert(0, "SAVE_"); + else + outname.Insert(0, "SAVE_mat2_"); + outname.Insert(0, dirname); + data->SetBranchStatus("ch*", 0); + fileOut = new TFile(outname.Data(), "RECREATE"); + newdata = new TTree("newdata", "newdata"); + + data->SetBranchStatus("ch*", 1); + b_time = data->GetBranch("time"); + b_time->SetAddress(&time); + + for (int n = 0; n < 64; n++) + { + baseline[n] = 0.; + char bname[20]; + if (firstMat) + { + sprintf(bname, "ch%02d", n); + b_channels[n] = data->GetBranch(bname); + b_channels[n]->SetAddress(&channels[n]); + } + else + { + sprintf(bname, "ch%d", n + 64); + printf("%s\n", bname); + b_channels[n] = data->GetBranch(bname); + b_channels[n]->SetAddress(&channels[63 - n]); + } + } + + b_ic1 = data->GetBranch("ic1"); + b_ic1->SetAddress(&ic1); + b_ic2 = data->GetBranch("ic2"); + b_ic2->SetAddress(&ic2); + b_mw1_focusx = data->GetBranch("mw1_focusx"); + b_mw1_focusx->SetAddress(&mw1_focusx); + b_mw1_focusy = data->GetBranch("mw1_focusy"); + b_mw1_focusy->SetAddress(&mw1_focusy); + b_mw2_focusx = data->GetBranch("mw2_focusx"); + b_mw2_focusx->SetAddress(&mw2_focusx); + b_mw2_focusy = data->GetBranch("mw2_focusy"); + b_mw2_focusy->SetAddress(&mw2_focusy); + b_mw1_posx = data->GetBranch("mw1_posx"); + b_mw1_posx->SetAddress(&mw1_posx); + b_mw1_posy = data->GetBranch("mw1_posy"); + b_mw1_posy->SetAddress(&mw1_posy); + b_mw2_posx = data->GetBranch("mw2_posx"); + b_mw2_posx->SetAddress(&mw2_posx); + b_mw2_posy = data->GetBranch("mw2_posy"); + b_mw2_posy->SetAddress(&mw2_posy); + + nevents = data->GetEntries(); + startTime = 0; + stopTime = nevents - 1; + + + nBaselineEvents = baselineEvents; + nPrelimEvents = prelimEvents; + + beamOnLevel = beamLevel; + beamOnAdcVal = 0; + beamOnTime = 0; + + calcBaseline(false); //baseline from end of events + calcBaselineIntegral(); + ProcessData(); +} + +void Beammon::Save() +{ + fileIn->Close(); + fileOut->cd(); + for (int i = 0; i < 5; i++){ + PrintProfile(i)->Write(); + PrintProfile(i)->Delete(); + } + FitAverage()->Write(); + FitAverage()->Delete();; + PrintBaseline()->Write(); + PrintBaseline()->Delete();//added + //for(int i=0;i<64;i++) + // PrintChannelNoise(i)->Write(); + GetSignalOverTime()->Write(); + GetSignalOverTime()->Delete(); + for (int i = 0; i < 5; i++){ + GetChannelSlice2(-1, i)->Write(); + GetChannelSlice2(-1, i)->Delete(); + } + //fileIn->Close(); + + GetTimeSliceCanvas(-1)->Write(); + timePosHist->ProjectionX()->Write(); + GetTimeCenters(); + + GetSignalDistributionCanvas()->Write(); + GetSignalDistribution()->Write(); + GetSignalNoiseChannel()->Write(); + chisquareDist->Write(); + sigIcScatterGraph->Write(); + mwPosScatterGraph->Write(); + for (int i = 6; i < 15; i++) + { + sigIcScatterPlot[i]->Write(); + mwPosScatterPlot[i]->Write(); + } + mwPosScatterPlot[11]->Write(); + sigIcScatterPlot[11]->Write(); + mw1_focusxHist->Write(); + mw1_posxHist->Write(); + mwPosX->Write(); + mwFocusX->Write(); + beamPosX->Write(); + beamFocusX->Write(); + TVectorD v(6); + v[0] = GetIntSignal(); + v[1] = GetBeamOnTime(); + v[2] = signalDist->GetStdDev(); + v[3] = icIntegral; + v[4] = completeIntegral; + v[5] = fwhm; + v.Write("beaminfo"); + beamPosTimeGraph->Write(); + signalTimeGraph->Write(); + gChannelErrors->Write(); + ic1Hist->Write(); + ic2Hist->Write(); + sigHist->Write(); + fibreHist->Write(); + mwpcHist->Write(); + fibreHist_weighted->Write(); + sigHist_weighted->Write(); + GetSig_e_ic_Hist()->Write(); + GetSig_e_ic_Hist_Weighted()->Write(); + signalComp->Write(); + GetMwPosComp()->Write(); + widthComp->Write(); + icSignalComp()->Write(); + signalOverTime2d(); + IcFitSlicesY(); + PrintSigIcGraph()->Write(); + + //GetTimeCenters(); + + newdata->AutoSave(); + + Close(); + // v.Delete(); +} + +void Beammon::calcBaseline(bool useFirstEvents) +{ + // use the first/last nBaselineEvents events to calculate the average/baseline + if (!useFirstEvents) + { // last + for (int i = nevents - nBaselineEvents; i < nevents; i++) + { + data->GetEvent(i); + for (int ch = 0; ch < 64; ch++) + { + baseline[ch] += channels[ch] / nBaselineEvents; + } + } + } + else + { + for (int i = 1; i <= nBaselineEvents; i++) + { + data->GetEvent(i); + for (int ch = 0; ch < 64; ch++) + { + baseline[ch] += channels[ch] / nBaselineEvents; + } + } + } +} + + +void Beammon::calcBaselineIntegral() +{ + /*baselineIntegral = 0; + for(int i=1; i <= nBaselineEvents;i++){ + data->GetEvent(i); + double currentIntegral = 0; + for(int ch=0;ch<64;ch++){ + currentIntegral += channels[ch] - baseline[ch]; + } + if(currentIntegral > baselineIntegral) + baselineIntegral = currentIntegral; + } + printf("baseline int: %f \n",baselineIntegral);*/ + + for (int i = 1; i <= nBaselineEvents; i++) + { + data->GetEvent(i); + for (int ch = 0; ch < 64; ch++) + channelSig[ch]->Fill(channels[ch] - baseline[ch]); + } + for (int k = 0; k < 64; k++) + { + double stdDev = channelSig[k]->GetStdDev(); + channelErrors[k] = stdDev; + } +} + + +void Beammon::ProcessData() +{ + + bool beamOn = false; + bool previousBeamStatus = false; + int lastSpillOn = 0; + int lastSpillOff = 0; + int minSpillTime = 3000; // in ms + int histChannel; + + int highestSigVal = 0; + + for (int i = 1; i < nevents; i++) + { + + if (i % 10000 == 00) + printf("Event: %d / %ld \n", i, nevents); + // cout << "Event: " << i << endl; + data->GetEvent(i); + + double maxSignal = channels[highestChannelBin] - baseline[highestChannelBin]; + /* + for(int j=0;j<64;j++){ + double val = channels[j] - baseline[j]; + if (val > maxSignal) + maxSignal = val; + }*/ + + if (isAboveThreshold(maxSignal) && (i > nBaselineEvents)) + { + beamOn = true; + if ((i - lastSpillOff) > minSpillTime && !previousBeamStatus) + { + if (lastSpillOff != 0) + spillTimes.push_back(make_pair(lastSpillOn, lastSpillOff)); + lastSpillOn = i; + } + } + else + { + beamOn = false; + if (previousBeamStatus) + lastSpillOff = i; + } + previousBeamStatus = beamOn; + + int sigVal = 0; + + for (int j = 0; j < 64; j++) + { + + int chan; + if (isSipm) + { + if (j % 2 == 0) + histChannel = 64 - (j + 1); + else + histChannel = 64 - (j - 1); + } + else + histChannel = j + 1; + + double chVal = channels[j] - baseline[j]; + sigVal += chVal; + timePosHist->SetBinContent(histChannel, i, chVal); + completeIntegral += chVal; + } + if (sigVal > highestSigVal) + { + highestSigVal = sigVal; + highestTimeBin = i; + } + // cout << ic1 << " " << mw1_focusx << " " << mw1_focusy << endl; + // IONISATION CHAMBERS + double chargeToParts = 1. / 3.2886706587037837e-15 * 1e-9 * 312e-6; + // if (!(ic1 != ic1)) + // ic1Hist->SetBinContent(i, ic1 * chargeToParts); + // if (!(ic2 != ic2)) + // ic2Hist->SetBinContent(i, ic2 * chargeToParts); + + spillTimes.push_back(make_pair(lastSpillOn, lastSpillOff)); + + TH1D *tmp = GetChannelSlice(-1); + tmp->Fit("gaus"); + TF1 *fit = tmp->GetFunction("gaus"); + referenceIntegral = fit->GetParameter(0); // this is the constant in front of the gaus!! The real integral is constant*sigma*sqrt(2*pi), but because sigma is the same in one measurement it doesn't matter! + signalDist = new TH1D("signalDist", "signal distribution", 200, 0., referenceIntegral * 2.51 * fit->GetParameter(2)); + signalNoiseDist = new TH1D("signalNoiseDist", "", 200, 0., referenceIntegral * 2.51 * fit->GetParameter(2)); + signalNoiseChannel = new TH1D("signalNoiseChannel", "", 200, 0., tmp->GetMaximum()); + + + calcBeamTime(); + + printf("HighestBin: %d \n", highestTimeBin); +} + +TH1D *Beammon::GetPrelimProfile() +{ + if (!prelimBeam) + { + printf("WARNING: preliminary profile not yet generated"); + } + return prelimBeam; +} + +TH1D *Beammon::TimeAverage(int timeStart, int timeStop) +{ + if (timeStart == -1) + timeStart = startTime; + if (timeStop == -1) + timeStop = stopTime; + int count = 0; + TH1D *res = new TH1D("timeAverage", "time average", 64, 0.5, 64.5); + TH1D *tmp; + printf("\n\n start: %d, stop: %d \n\n", timeStart, timeStop); + for (int i = timeStart; i <= timeStop; i++) + { + tmp = GetChannelSlice(i, 0); + if (isAboveThreshold(tmp)) + { + res->Add(tmp, 1.); + count++; + } + delete tmp; + } + if (count) + { + for (int n = 1; n <= 64; n++) + { + res->SetBinContent(n, res->GetBinContent(n) / count); + } + return res; + } + else + return 0; +} + +TH1D *Beammon::TimeIntSignal(int timeStart, int timeStop) +{ + if (timeStart == -1) + timeStart = startTime; + if (timeStop == -1) + timeStop = stopTime; + TH1D *res = new TH1D("timeAverage", "time average", 64, 0.5, 64.5); + TH1D *tmp; + for (int i = timeStart; i < timeStop; i++) + { + tmp = GetChannelSlice(i, 0); + if (isAboveThreshold(tmp)) + { + res->Add(tmp, 1.); + beamOnTime++; + } + delete tmp; + } + return res; +} + +TH1D *Beammon::AverageHist(int dir, int timeStart, int timeStop) +{ // dir = 0 => x direction, 1 => y + + TH2D *hist = timePosHist; + + int nbins1, nbins2; + double binStart, binStop; + int firstBin, secondBin; + if (!dir) + { + // Timeaverage + if ((timeStart != -1) && (timeStop != -1)) + { + firstBin = timeStart; //hist->GetYaxis()->FindBin((timeStart-startTime)/readOutFreq); + secondBin = timeStop; //hist->GetYaxis()->FindBin((timeStop-startTime)/readOutFreq); + nbins1 = hist->GetNbinsX(); + nbins2 = secondBin - firstBin; + binStart = hist->GetXaxis()->GetBinCenter(1); + binStop = hist->GetXaxis()->GetBinCenter(nbins1); + } + else + { + nbins1 = hist->GetNbinsX(); + nbins2 = hist->GetNbinsY(); + binStart = hist->GetXaxis()->GetBinCenter(1); + binStop = hist->GetXaxis()->GetBinCenter(nbins1); + firstBin = 1; + secondBin = nbins2; + } + } + else + { + nbins1 = hist->GetNbinsY(); + nbins2 = hist->GetNbinsX(); + binStart = hist->GetYaxis()->GetBinCenter(1); + binStop = hist->GetYaxis()->GetBinCenter(nbins1); + firstBin = 1; + secondBin = hist->GetNbinsX(); + } + + TH1D *retHist = new TH1D("average", "average", nbins1, binStart, binStop); + for (int i = 1; i <= nbins1; i++) + { + int count = 0; + double avg = 0; + + for (int j = firstBin; j <= secondBin; j++) + { + + if (!dir) + { + /*bool beam = beamOnVector[j]; + if(beam==false) + continue; + //else + //printf("TRUE");*/ + avg += hist->GetBinContent(i, j); + } + else + avg += hist->GetBinContent(j, i); + count++; + } + if (count > 0) + avg /= count; + retHist->SetBinContent(i, avg); + } + + return retHist; +} + +TH1D *Beammon::GetTimeAvg() +{ + int n = spillTimes.size(); + TH1D *res = new TH1D("timeAverage", "time average", 64, 0.5, 64.5); + for (int i = 0; i < n; i++) + { + TH1D *tmp = TimeAverage(spillTimes[i].first, spillTimes[i].second); + if (!tmp) + printf("\n\n timeAvgHist is Null! \n\n"); + if (tmp) + res->Add(tmp, 1. / n); + } + res->SetTitle("average beam profile"); + return res; +} + +TH1D *Beammon::GetTimeAvg(int nSpill) +{ + if (nSpill >= spillTimes.size()) + return 0; + TH1D *res = TimeAverage(spillTimes[nSpill].first, spillTimes[nSpill].second); + res->SetTitle("average beam profile"); + return res; +} + +TH1D *Beammon::GetTimeAvg(int nSpill, int nMeasurements) +{ + if (nSpill >= spillTimes.size()) + return 0; + TH1D *res = TimeAverage(spillTimes[nSpill].second - nMeasurements, spillTimes[nSpill].second); + TString title = TString::Format("average beam profile, %d ms, spill %d", nMeasurements, nSpill); + TString name = TString::Format("avg%dmsspill%d", nMeasurements, nSpill); + res->SetTitle(title.Data()); + res->SetName(name.Data()); + return res; +} + +TH2D *Beammon::GetTimeAvgScatter(int nSpill, int nMeasurements) +{ + + int tStart = spillTimes[nSpill].first; + if (nMeasurements == -1) + tStart = spillTimes[nSpill].second - nMeasurements; + + TH2D *res = new TH2D("tavgScatter", "tavgScatter", 64, 0.5, 64.5, 400, 0., highVal); + for (int i = spillTimes[nSpill].first; i < spillTimes[nSpill].second; i++) + { + TH1D *tmp = GetChannelSlice(i, 0); + if (!isAboveThreshold(tmp)) + continue; + for (int bin = 1; bin <= 64; bin++) + { + res->Fill(bin, tmp->GetBinContent(bin)); + } + delete tmp; + } + TString title = TString::Format("beam profile, %d ms, spill %d", nMeasurements, nSpill); + res->SetTitle(title.Data()); + return res; +} + +TH2D *Beammon::GetTimeAvgScatter() +{ + TH2D *res = new TH2D("tavgScatter", "tavgScatter", 64, 0.5, 64.5, 400, 0., highVal); + int n = spillTimes.size(); + for (int i = 0; i < n; i++) + { + res->Add(GetTimeAvgScatter(i, -1), 1. / n); + } + return res; +} + +TH1D *Beammon::GetChannelSigDist(int channel) +{ + + TString sName = TString("signal distribution channel ") + TString(channel); + double maxAmp = 0; + for (int n = 0; n < spillTimes.size(); n++) + { + TH1D *tmp = GetSpillSlice(n); + if (tmp->GetMaximum() > maxAmp) + maxAmp = tmp->GetMaximum(); + delete tmp; + } + TH1D *res = new TH1D(sName.Data(), sName.Data(), 200, 0., maxAmp); + for (int n = 0; n < spillTimes.size(); n++) + { + TH1D *tmp = GetSpillSlice(n); + for (int bin = 1; bin <= tmp->GetNbinsX(); bin++) + { + res->Fill(tmp->GetBinContent(bin)); + //printf("bin: %d, amp: %f \n", bin, tmp->GetBinContent(bin)); + } + delete tmp; + } + return res; +} + +TH1D *Beammon::GetChannelAvg(bool beamOn) +{ + return AverageHist(1, -1, -1); +} + +TH1D *Beammon::GetTimeSlice(int channel, int timeStart, int timeStop, bool beamOn) +{ + + if (timeStart == -1) + timeStart = startTime; + if (timeStop == -1) + timeStop = stopTime; + + int nbins = timeStop - timeStart; + + TH1D *tmp2 = new TH1D("ts", "timeslice", nbins, (timeStart - startTime) / readOutFreq, (timeStop - startTime) / readOutFreq); + + if (channel == -1) + channel = highestChannelBin; + + TH1D *tmp = timePosHist->ProjectionY("", channel, channel); + + int offset = tmp->GetXaxis()->FindBin(timeStart); + for (int bin = 1; bin <= nbins; bin++) + { + tmp2->SetBinContent(bin, tmp->GetBinContent(bin + offset)); + } + TString title = TString::Format("time projection of channel %d", channel); + tmp2->SetTitle(title.Data()); + + return tmp2; +} + +TCanvas *Beammon::GetTimeSliceCanvas(int channel) +{ + + TCanvas *c1 = new TCanvas(); + c1->SetName("timeslice"); + int nbins = stopTime - startTime; + + TH1D *tmp2 = new TH1D("timeslice", "", nbins, 0., (stopTime - startTime) / readOutFreq); + + if (channel == -1) + channel = highestChannelBin; + + TH1D *tmp = timePosHist->ProjectionY("", channel, channel); + + for (int bin = 1; bin <= nbins; bin++) + { + tmp2->SetBinContent(bin, tmp->GetBinContent(bin)); + } + + tmp2->GetXaxis()->SetTitle("times [s]"); + TString label; + label.Form("adc counts / %d #mus", intTime); + tmp2->GetYaxis()->SetTitle(label.Data()); + + tmp2->Draw("P"); + return c1; +} + +TCanvas *Beammon::GetSignalNoiseChannel(int channel) +{ + + TCanvas *c1 = new TCanvas(); + c1->SetName("signalNoiseChannel"); + int nbins = stopTime - startTime; + + if (channel == -1) + channel = highestChannelBin; + + TH1D *tmp = timePosHist->ProjectionY("", channel, channel); + + for (int bin = 1; bin <= nbins; bin++) + { + signalNoiseChannel->Fill(tmp->GetBinContent(bin)); + } + + signalNoiseChannel->GetYaxis()->SetTitle("entries"); + TString label; + label.Form("adc counts / %d #mus", intTime); + signalNoiseChannel->GetXaxis()->SetTitle(label.Data()); + + signalNoiseChannel->Draw(); + return c1; +} + +TH1D *Beammon::GetChannelSlice(int time, int offset) +{ + if (time == -1) + time = highestTimeBin + offset; + //printf("time: %d\n", time); + TH1D *res = timePosHist->ProjectionX("", time, time); //timePosHist->ProjectionX("",timePosHist->GetYaxis()->FindBin(time+offset),timePosHist->GetYaxis()->FindBin(time+offset)); + //res->SetError(channelErrors); + res->SetTitle("single measurement (1ms)"); + res->SetName("Channel_" + (TString)time); + res->Fit("gaus", "Q0"); + double mean = res->GetFunction("gaus")->GetParameter(1); + double sigma = res->GetFunction("gaus")->GetParameter(2); + return res; +} + +TH1D *Beammon::GetChannelSlice2(int time, int offset) +{ + if (time == -1) + time = highestTimeBin + offset; + //printf("time: %d\n", time); + TH1D *res = timePosHist->ProjectionX("", time, time); //timePosHist->ProjectionX("",timePosHist->GetYaxis()->FindBin(time+offset),timePosHist->GetYaxis()->FindBin(time+offset)); + //res->SetError(channelErrors); + res->SetTitle("single measurement (1ms)"); + res->SetName("Channel_" + (TString)time); + res->Fit("gaus", "Q0"); + double mean = res->GetFunction("gaus")->GetParameter(1); + mean_ave += mean; + double sigma = res->GetFunction("gaus")->GetParameter(2); + sigma_ave += sigma; + return res; +} + +TGraphErrors *Beammon::GetChannelGraph(int time, int offset) +{ + if (time == -1) + time = highestTimeBin + offset; + double xErr = 0.8 / sqrt(12); + TH1D *res = timePosHist->ProjectionX("", time, time); + TGraphErrors *graph = new TGraphErrors(64); + for (int ch = 1; ch <= 64; ch++) + { + graph->SetPoint(ch, ch, res->GetBinContent(ch)); + // graph->SetPointError(ch,xErr,channelErrors[ch-1]);//sqrt(channelErrors[ch-1]*channelErrors[ch-1]+res->GetBinContent(ch))); + graph->SetPointError(ch, xErr, channelErrors[ch - 1]); + } + delete res; + return graph; +} + +TH1D *Beammon::GetChannelGraphHist(int time, int offset) +{ + if (time == -1) + time = highestTimeBin + offset; + double xErr = 0.8 / sqrt(12); + TH1D *res = timePosHist->ProjectionX("", time, time); + return res; +} + +TH1D *Beammon::GetSignalOverTime() +{ + TH1D *tmp = timePosHist->ProjectionY("", 1, 64); + tmp->SetTitle("signal over time"); + tmp->SetName("signal over time"); + return tmp; +} + +void Beammon::PrintSpillTimes() +{ + printf("%lu spills recorded: \n", spillTimes.size()); + // cout << spillTimes.size() << "spills recorded: " << endl; + for (int n = 0; n < spillTimes.size(); n++) + printf("%02d: %f - %f \n", n, (spillTimes[n].first - startTime) / readOutFreq, (spillTimes[n].second - startTime) / readOutFreq); +} + +TH1D *Beammon::calcTimeCenters(int start, int stop) +{ + + int tStart = start; + int tStop = stop; + + if (start == -1) + tStart = startTime; + if (stop == -1) + tStop = stopTime; + + int nbins = (tStop - tStart); + double mean = 0; + double sigma = 0; + + double constant; + + + TH1D *res = new TH1D("timeIntSignal_tmp", "time integrated signal", 64, 0.5, 64.5); + TCanvas *tmpcanvas = new TCanvas(); + int offset = tStart; + + TF1 *fit = new TF1("gaus_L", "gaus+[3]", 1, 64); + + TF1 *fit2 = new TF1("gaus_2", "gaus", 1, 64); + fit2->SetParameter(0, 2000); + fit2->SetParameter(1, mean_ave); + fit2->SetParameter(2, sigma_ave); + + for (int bin = tStart; bin <= tStop; bin++) + { + TGraphErrors *tmp = GetChannelGraph(bin, 0); + TH1D *tmp2 = GetChannelGraphHist(bin, 0); + + tmp->Fit("gaus_2", "Q0", "", mean_ave - 3 * sigma_ave, mean_ave + 3 * sigma_ave); + TF1 *func = tmp->GetFunction("gaus_2"); + + if (tmp2->GetMean() * 0.8 > 0) + fibreHist_weighted->SetBinContent(bin + 1, tmp2->GetMean() * 0.8); + else + fibreHist_weighted->SetBinContent(bin + 1, 0); + if (tmp2->GetEntries() > 0) + sigHist_weighted->SetBinContent(bin - 1, tmp2->GetEntries() * signalToParticles); + else + sigHist_weighted->SetBinContent(bin - 1, 0); + + if (func) + { + + if (!isAboveThreshold(tmp)) + continue; + + constant = func->GetParameter(0); + mean = func->GetParameter(1) * channelWidth; + sigma = func->GetParameter(2) * channelWidth; + + if (mean <= 0 || mean > 64) + continue; + + /*if (constant > 1e5 || mean > (mean_ave * channelWidth + 0.2) || mean < (mean_ave * channelWidth - 0.2)) + { + fit->SetParameter(0, 1000); + fit->SetParameter(1, mean_ave); + fit->SetParameter(2, sigma_ave); + fit->SetParameter(3, 0.1); + fit->SetParLimits(0, 100, 2e5); + fit->SetParLimits(1, 1, 64); + fit->SetParLimits(2, 1, 10); + fit->SetParLimits(3, -50, 50); + tmp->Fit("gaus", "Q0", "", mean_ave - 3 * sigma_ave, mean_ave + 3 * sigma_ave); + func = tmp->GetFunction("gaus"); + constant = func->GetParameter(0); + mean = func->GetParameter(1) * channelWidth; + sigma = func->GetParameter(2) * channelWidth; + }*/ + + if (abs(constant) > 1e5) + { + + Fit_Fail_Number = Fit_Fail_Number - 1; + if (Fit_Fail_Number > 0) + { + tmpcanvas->cd(); + tmp->Draw("AP"); + func->Draw("SAME"); + tmpcanvas->Modified(); + tmpcanvas->Write(); + } + continue; + } + + //Fill the error hidto + double erry, tmpx; + bool discard = false; + int nPoint = 0; + for (int chn = 1; chn < 65; chn++) + { + tmp->GetPoint(nPoint, tmpx, erry); + SignalErrHist->Fill((double)tmpx, (erry - func->Eval(tmpx)) / (constant * sigma)); + if ((erry - func->Eval(tmpx)) / (constant * sigma) > discardUpperThreshold || (erry - func->Eval(tmpx)) / (constant * sigma) < discardLowerThreshold) + { + tmp->RemovePoint(nPoint); + nPoint--; + discard = true; + } + nPoint++; + } + + + double signal = sigma * 2.51 * constant * signalToParticles; + + //Fill the new tree + event_count++; + //data->GetEntry(bin); + beamPosX_1 = mean; + beamFocusX_1 = 2.35 * sigma; + beamSignal_1 = signal; + ic1_1 = ic1Hist->GetBinContent(bin - alignintIc); + ic2_1 = ic2Hist->GetBinContent(bin - alignintIc); + mw1_focusx_1 = mw1_focusxHist->GetBinContent(bin - alignint); + mw1_posx_1 = mw1_posxHist->GetBinContent(bin - alignint); + mw2_focusx_1 = mw2_focusxHist->GetBinContent(bin - alignint); + mw2_posx_1 = mw2_posxHist->GetBinContent(bin - alignint); + beamOn = 1; + newdata->Fill(); + if (event_count % 5000 == 0) + { + printf("Signal events: %d ", event_count); + printf("Event number: %d\n", bin); + } + + if (signal < 0 || signal != signal) + continue; + + //Fill the Histograms + beamPosX->Fill(mean); + fibreHist->Fill(bin, mean); + mwpcHist->Fill(bin, mw1_posxHist->GetBinContent(bin - alignint)); + beamFocusX->Fill(2.35 * sigma); + beamPosTimeGraph->SetPoint(bin, bin, mean); + beamPosTimeGraph->SetPointError(bin, 0., func->GetParError(1)); + timeCenters->Fill((bin) / readOutFreq, mean); + timeWidths->Fill((bin) / readOutFreq, sigma * 2.35); + timeCenters_MWPC->Fill((bin) / readOutFreq, mw1_posxHist->GetBinContent(bin - alignint)); + timeWidths_MWPC->Fill((bin) / readOutFreq, mw1_focusxHist->GetBinContent(bin - alignint)); + Diff_timeCenters->Fill((bin) / readOutFreq, mean - mw1_posxHist->GetBinContent(bin - alignint) - shift); + + if (mw1_posxHist->GetBinContent(bin - alignint) < 20) + { + mwPosScatterGraph->SetPoint(mwPosScatterGraph->GetN(), mw1_posxHist->GetBinContent(bin - alignint), mean); + //positionComp->Fill(mean - mw1_posxHist->GetBinContent(bin-4) +111.5415 - 32.02); + for (int i = 0; i < 20; i++) + mwPosScatterPlot[i]->Fill(mw1_posxHist->GetBinContent(bin - i + 10), mean); + } + double sigError = 2.51 * sqrt(sigma * sigma * func->GetParError(0) * func->GetParError(0) + constant * constant * func->GetParError(2) * func->GetParError(2)) * signalToParticles; + if (signal > 1e5 || sigError > signal) + { + //signal = 0; + sigError = 0; + } + if (signal) + { + signalDist->Fill(signal); + if (ic1Hist->GetBinContent(bin - alignintIc)) + { + sigHist->Fill(bin - alignintIc - 1, signal); + signalComp->Fill((signal - ic1Hist->GetBinContent(bin - alignintIc)) / signal); + double x, y, totalSignal = 0, signalError = 0; + for (int k = 0; k < 63; k++) + { + tmp->GetPoint(k, x, y); + signalError += tmp->GetErrorY(k) * tmp->GetErrorY(k); + totalSignal += y * signalToParticles; + } + signalError = sqrt(signalError) * signalToParticles; + sigIcScatterGraph->SetPoint(sigIcScatterGraph->GetN(), ic1Hist->GetBinContent(bin - alignintIc), totalSignal); + sigIcScatterGraph->SetPointError(sigIcScatterGraph->GetN(), 0, signalError); + for (int i = 0; i < 20; i++) + sigIcScatterPlot[i]->Fill(ic1Hist->GetBinContent(bin - i + 10), signal); + Center_Signal->Fill(signal, mean); + // sigIcScatterPlot[14]->Fill(ic1Hist->GetBinContent(bin - 14 + 10), signal); + sigIcScatterPlot_ic2->Fill(ic2Hist->GetBinContent(bin - 14 + 10), signal); + } + } + else + { + //ic1Hist->SetBinContent(bin, 0); + } + + widthComp->Fill(sigma * 2.51 - mw1_focusxHist->GetBinContent(bin - alignint)); + //Center_Signal->Fill(totalSignal, mean); + Diff_hist->Fill(mean - mw1_posxHist->GetBinContent(bin - alignint) - shift); + Diff_Signal->Fill(signal, mean - mw1_posxHist->GetBinContent(bin - alignint) - shift); + Diff_ic1->Fill(ic1Hist->GetBinContent(bin - alignintIc), mean - mw1_posxHist->GetBinContent(bin - alignint) - shift); + + icIntegral += ic1Hist->GetBinContent(bin); + signalTimeGraph->SetPoint(bin, bin, signal); + + signalTimeGraph->SetPointError(bin, 0., sigError); + beamOnTime++; + + double c2 = func->GetChisquare() / func->GetNDF(); + if (c2 < 100) + chisquareDist->Fill(c2); + } + delete func; + delete tmp; + delete tmp2; + } + delete tmpcanvas; + return res; +} + +void Beammon::GetTimeCenters() +{ + + TH1D *tmp_TimeCenter; + double mean_MWPC = mwPosX->GetMean(); + shift = mean_ave * 0.8 / 5 - mwPosX->GetMean(); + double max_ic1 = ic1Hist->GetMaximum(); + + beamOnTime = 0; + int nbins = stopTime - startTime; + mean_ave = prelimBeam->GetMean(); + sigma_ave = prelimBeam->GetStdDev(); + printf("Mean: %f \n", mean_ave); + printf("Sigma: %f \n", sigma_ave); + + timeCenters = new TH2D("timeCenters", "", nbins / 100, 0., (stopTime - startTime) / readOutFreq, 200, (0.8 * mean_ave - 6. * sigma_pos), (0.8 * mean_ave + 6 * sigma_pos)); + timeWidths = new TH2D("timeWidths", "", nbins / 100, 0., (stopTime - startTime) / readOutFreq, 200, 0.4 * sigma_ave * 2.35, 0.95 * sigma_ave * 2.35); + timeIntSignal = new TH1D("timeIntSignal", "time integrated signal", 64, 0.5, 64.5); + timeCenters_MWPC = new TH2D("timeCenters_MWPC", "", nbins / 100, 0., (stopTime - startTime) / readOutFreq, 200, mean_MWPC - 5 * sigma_pos, mean_MWPC + 5 * sigma_pos); + timeWidths_MWPC = new TH2D("timeWidths_MWPC", "", nbins / 100, 0., (stopTime - startTime) / readOutFreq, 200, 1.5, mw1_focusxHist->GetMaximum() * 1.05); + timeIntSignal_MWPC = new TH1D("timeIntSignal_MWPC", "time integrated signal", 64, 0.5, 64.5); + + for (int j = 0; j < 20; j++) + { + TString name; + name.Form("sigIcScatterPlot%d", j); + sigIcScatterPlot[j] = new TH2D(name.Data(), name.Data(), 200, 0, -1, 200, 0, -1); + TString name2; + name2.Form("mwPosScatterPlot%d", j); + mwPosScatterPlot[j] = new TH2D(name2.Data(), name2.Data(), 200, mean_MWPC - 0.1 * sigma_ave, mean_MWPC + 0.1 * sigma_ave, 200, 0.8 * (mean_ave - 0.15 * sigma_ave), 0.8 * (mean_ave + 0.15 * sigma_ave)); + } + sigIcScatterPlot_ic2 = new TH2D("sigIcScatterPlot_ic2", "sigIcScatterPlot_ic2", 200, 0, -1, 200, 0, -1); + + Center_Signal = new TH2D("Center_Signal", "", 200, 0., max_ic1 - 5000, 200, (0.8 * mean_ave - 5 * sigma_pos), (0.8 * mean_ave + 5 * sigma_pos)); + Diff_timeCenters = new TH2D("Diff_time", "", nbins / 100, 0., (stopTime - startTime) / readOutFreq, 200, -6 * sigma_pos, 6 * sigma_pos); + Diff_hist = new TH1D("Diff_hist", "l", 200, -2, 2.); + Diff_Signal = new TH2D("Diff_Signal", "", 200, 0., max_ic1 - 5000, 200, -6 * sigma_pos, 6 * sigma_pos); + Diff_ic1 = new TH2D("Diff_ic1", "", 200, 0., max_ic1 - 5000, 200, -6 * sigma_pos, 6 * sigma_pos); + + b_beamPosX_1 = newdata->Branch("beamPosX_1", &beamPosX_1); + b_beamFocusX_1 = newdata->Branch("beamFocusX_1", &beamFocusX_1); + b_beamSignal_1 = newdata->Branch("beamSignal_1", &beamSignal_1); + bb_ic1 = newdata->Branch("ic1_1", &ic1_1); + bb_ic2 = newdata->Branch("ic2_1", &ic2_1); + bb_mw1_focusx = newdata->Branch("mw1_focusx_1", &mw1_focusx_1); + bb_mw1_posx = newdata->Branch("mw1_posx_1", &mw1_posx_1); + bb_mw2_focusx = newdata->Branch("mw2_focusx_1", &mw2_focusx_1); + bb_mw2_posx = newdata->Branch("mw2_posx_1", &mw2_posx_1); + b_beamOn = newdata->Branch("beamOn", &beamOn); + + newdata->SetBranchStatus("*", 1); + for (int i = 0; i < spillTimes.size(); i++) + { + tmp_TimeCenter = calcTimeCenters(spillTimes[i].first + 200, spillTimes[i].second); + timeIntSignal->Add(tmp_TimeCenter, 1.); + delete tmp_TimeCenter; + beamPosX_1 = 0; + beamFocusX_1 = 0; + beamSignal_1 = 0; + ic1_1 = 0; + mw1_focusx_1 = 0; + mw1_posx_1 = 0; + beamOn = 0; + newdata->Fill(); + } + SignalErrHist->Write(); + printf("Fit_Fail_Counts=%d\n", Fit_Fail_Counts); + + //Draw timeCenter + timeCenters->GetXaxis()->SetTitle("time [s]"); + TString label; + label.Form("mean position[mm]"); + timeCenters->GetYaxis()->SetTitle(label.Data()); + timeCenters->Write(); + + //Draw timeCenter_MWPC + timeCenters_MWPC->GetXaxis()->SetTitle("time [s]"); + TString label2; + label2.Form("mean position[mm]"); + timeCenters_MWPC->GetYaxis()->SetTitle(label.Data()); + timeCenters_MWPC->Write(); + + //Draw timeWidths + timeWidths->GetXaxis()->SetTitle("time [s]"); + TString label12; + label12.Form("width fiber[mm]"); + timeWidths->GetYaxis()->SetTitle(label12.Data()); + timeWidths->Write(); + + //Draw timeWidths_MWPC + timeWidths_MWPC->GetXaxis()->SetTitle("time [s]"); + TString label13; + label13.Form("width MWPC[mm]"); + timeWidths_MWPC->GetYaxis()->SetTitle(label12.Data()); + timeWidths_MWPC->Write(); + + Center_Signal->GetXaxis()->SetTitle("Signal [particles]"); + TString label123; + label123.Form("Position_Fiber[mm]"); + Center_Signal->GetYaxis()->SetTitle(label123.Data()); + Center_Signal->Write(); + Center_Signal->ProfileX()->Write(); + + //Draw Diff_timeCenters + Diff_timeCenters->GetXaxis()->SetTitle("time [s]"); + TString label3; + label3.Form("mean position diff[mm]"); + Diff_timeCenters->GetYaxis()->SetTitle(label.Data()); + Diff_timeCenters->Write(); + + //Draw Diff_Signal + Diff_Signal->GetXaxis()->SetTitle("signal"); + TString label4; + label4.Form("mean position diff[mm]"); + Diff_Signal->GetYaxis()->SetTitle(label.Data()); + Diff_Signal->Write(); + + //Draw Diff_Signal + Diff_ic1->GetXaxis()->SetTitle("ic1"); + TString label5; + label5.Form("mean position diff[mm]"); + Diff_ic1->GetYaxis()->SetTitle(label.Data()); + Diff_ic1->Write(); + + TObjArray aSlices, bSlices; + Diff_Signal->FitSlicesY(0, 0, -1, 5, "QNR", &aSlices); + for (int i = 0; i < 4; i++) + { + aSlices[i]->Write(); + } + Diff_ic1->FitSlicesY(0, 0, -1, 5, "QNR", &bSlices); + for (int i = 0; i < 4; i++) + { + bSlices[i]->Write(); + } + mean_ave = beamPosX->GetMean(); + sigma_pos = beamPosX->GetStdDev(); + sigma_ave = beamFocusX->GetMean(); + return; +} + +pair Beammon::GetSpillTimes(int nSpill) +{ + + return spillTimes[nSpill]; +} + +TH2D *Beammon::GetSpillCenters(int nSpill) +{ + + //return calcTimeCenters(spillTimes[nSpill].first, spillTimes[nSpill].second); +} + +TH1D *Beammon::GetSpillSlice(int nSpill) +{ + return GetTimeSlice(-1, spillTimes[nSpill].first - 500, spillTimes[nSpill].second + 500, true); +} + +TH1D *Beammon::GetSignalDistribution() +{ + /*int n = signalDist->GetNbinsX(); + for(int i = 1; i<= n; i++){ + signalDist->SetBinContent(i,signalDist->GetBinContent(i)*signalDistScale); + }*/ + signalDist->Scale(signalDistScale); + return signalDist; +} + +TCanvas *Beammon::GetSignalDistributionCanvas() +{ + TCanvas *c1 = new TCanvas(); + c1->SetName("signalDistributionCanvas"); + + signalDist->Draw(); + signalDist->SetTitle(""); + signalDist->GetYaxis()->SetTitle("entries"); + TString label; + label.Form("integrated signal [adc counts / %d #mus]", intTime); + signalDist->GetXaxis()->SetTitle(label.Data()); + //c1->SaveAs("dummy"); + return c1; +} + +TH2D *Beammon::GetSimpleView() +{ + return timePosHist; +} + +TH1D *Beammon::GetBaselineHist() +{ + TH1D *tmp = new TH1D("baseline", "baseline", 64, 0.5, 64.5); + for (int n = 1; n <= 64; n++) + { + tmp->SetBinContent(n, baseline[n - 1]); + } + return tmp; +} + +void Beammon::Close() +{ + + delete timePosHist; + fileOut->Close(); +} + +double Beammon::GetIntSignal() +{ + + return intSignal; +} + +int Beammon::GetBeamOnTime() +{ + return beamOnTime; +} + +double Beammon::GetSignalStd() +{ + return signalDist->GetStdDev(1); +} + +bool Beammon::isAboveThreshold(TGraphErrors *slice) +{ + double channel, signal; + slice->GetPoint(highestChannelBin, channel, signal); + if (signal > beamOnAdcVal) + return true; + else + return false; +} + +bool Beammon::isAboveThreshold(TH1D *slice) +{ + double val = slice->GetBinContent(highestChannelBin); + if (val > beamOnAdcVal) + return true; + else + return false; +} + +bool Beammon::isAboveThreshold(double val) +{ + // old version using the gaussian fit to the measurement + if (val > beamOnAdcVal) + return true; + else + return false; + /* + if(val > baselineIntegral * 1.5 && val < baselineIntegral *100) + return true; + else + return false;*/ +} + +TH1D *Beammon::icSignalComp() +{ + icSignalDist = new TH1D("icSignal", "icSignal", 200, 0., ic1Hist->GetMaximum()); + TH1D *icSignalDist2 = new TH1D("icSignal2", "icSignal2", 200, 0., ic2Hist->GetMaximum()); + for (int i = 0; i < ic1Hist->GetNbinsX(); i++) + { + if (ic1Hist->GetBinContent(i) != 0) + icSignalDist->Fill(ic1Hist->GetBinContent(i)); + if (ic2Hist->GetBinContent(i) != 0) + icSignalDist2->Fill(ic2Hist->GetBinContent(i)); + } + icSignalDist2->Write(); + return icSignalDist; +} + +TCanvas *Beammon::signalOverTime2d() +{ + + TCanvas *c1 = new TCanvas(); + c1->SetName("signalOverTime2d"); + TH1D *tmp = GetSignalOverTime(); + int binsX = tmp->GetNbinsX(); + int max = tmp->GetMaximum(); + int min = tmp->GetMinimum(); + TH2D *res = new TH2D("sigTime2d", "", binsX / 200, 0., binsX / readOutFreq, 100, min, max); + for (int k = 0; k < binsX; k++) + { + res->Fill(k / readOutFreq, tmp->GetBinContent(k)); + } + + res->Draw("colz"); + res->GetXaxis()->SetTitle("time [s]"); + TString label; + label.Form("adc counts / %d #mus", intTime); + res->GetYaxis()->SetTitle(label.Data()); + //c1->SaveAs("dummy"); + res->Write(); + return c1; +} + +double Beammon::calcBeamTime() +{ + + beamOnTime = 0; + for (int i = 0; i < spillTimes.size(); i++) + { + beamOnTime += spillTimes[i].second - spillTimes[i].first; + } + return beamOnTime; +} + +TCanvas *Beammon::PrintProfile(int offset) +{ + TCanvas *c1 = new TCanvas(); + c1->cd(); + //TH1D *res = GetChannelSlice(-1,offset); + TGraphErrors *res = new TGraphErrors(64); + TGraphErrors *tmp = GetChannelGraph(-1, offset); + + double x, y, errx, erry; + for (int ch = 0; ch < 63; ch++) + { + tmp->GetPoint(ch, x, y); + x *= 0.8; + errx = 0; + erry = tmp->GetErrorY(ch); + res->SetPoint(ch, x, y); + res->SetPointError(ch, errx, erry); + } + + res->Fit("gaus", "Q0"); + + double stepsize = 0.01; + double lim = res->GetFunction("gaus")->GetMaximum() / 2; + + double val, x1, x2, pos = 0; + bool below = true; + while (pos <= 64) + { + val = res->GetFunction("gaus")->Eval(pos); + if (below && val >= lim) + { + x1 = pos; + below = false; + } + else if (below == false && val <= lim) + { + x2 = pos; + break; + } + pos += stepsize; + } + fwhm = (x2 - x1) * channelWidth; + + res->Draw("AP"); + + TString sName; + sName.Form("Profile%d", offset); + c1->SetName(sName.Data()); + res->SetTitle(""); + res->GetXaxis()->SetTitle("position [mm]"); + TString label; + label.Form("adc counts / %d #mus", intTime); + res->GetYaxis()->SetTitle(label.Data()); + res->GetYaxis()->SetTitleOffset(1.4); + + TString str; + str.Form("fwhm = %.3f mm", fwhm); + TText *t = new TText(34, 900, str.Data()); + t->Draw("SAME"); + delete t; + delete res; + + c1->Update(); + c1->Modified(); + //c1->SaveAs(sName.Data()); + return c1; +} +TCanvas *Beammon::FitSnapshot(int offset) +{ + + //gSyle->SetOptFit(1111); + TCanvas *c1 = new TCanvas(); + c1->cd(); + TGraphErrors *res = GetChannelGraph(-1, offset); + TString sName; + sName.Form("Snapshot%d", offset); + c1->SetName(sName.Data()); + res->SetTitle(""); + res->GetXaxis()->SetTitle("channel"); + TString label; + label.Form("adc counts / %d #mus", intTime); + res->GetYaxis()->SetTitle(label.Data()); + res->GetYaxis()->SetTitleOffset(1.4); + //res->Fit("gaus"); + + res->Fit("gaus"); + double mean = res->GetFunction("gaus")->GetParameter(1); + double sigma = res->GetFunction("gaus")->GetParameter(2); + double constant = res->GetFunction("gaus")->GetParameter(0); + + TF1 *func = new TF1("doublegaus", fitfunc, 0, 64, 6); // t + func->SetNpx(1000); + func->SetParameter(0, constant); + func->SetParameter(1, mean); + func->SetParameter(2, sigma); + func->SetParameter(3, constant); + func->SetParameter(4, sigma); + func->SetParameter(5, 0.); + func->SetParLimits(1, 0., 64.); + func->SetParLimits(2, 1., 20.); + func->SetParLimits(4, 5., 100.); + //func->SetParameter(5,0.); + res->Fit("doublegaus"); + + res->Draw("AP"); + c1->SaveAs(sName.Data()); + return c1; +} + +TCanvas *Beammon::FitAverage() +{ + + TCanvas *c1 = new TCanvas(); + c1->cd(); + int n = spillTimes.size(); + double yValues[64]; + double yErrors[64]; + double xValues[64]; + double xErrors[64]; + int count = 0; + double x, y, errY; + TGraphErrors *tmp; + yValues[0] = 0; + + for (int i = 0; i < n; i++) + { + int start = spillTimes[i].first; + int stop = spillTimes[i].second; + for (int k = start; k <= stop; k++) + { + count++; + tmp = GetChannelGraph(k, 0); + for (int bin = 1; bin <= 64; bin++) + { + errY = tmp->GetErrorY(bin); + tmp->GetPoint(bin, x, y); + if (!(y != y || errY != errY)) + + { + yValues[bin - 1] += y; + yErrors[bin - 1] += errY * errY; + } + else + { + yValues[bin - 1] += 0; + yErrors[bin - 1] += 0; + } + } + delete tmp; + } + } + + for (int bin = 0; bin < 64; bin++) + { + xValues[bin] = bin; + xErrors[bin] = 1. / sqrt(12); + yValues[bin] *= 1. / count; + yErrors[bin] = sqrt(yErrors[bin]) / count; + } + + /*for (int i = 0; i < 64; i++) + { + printf("channelErrors[%d]: %f ", i, channelErrors[i]); + printf("yValue[%d]: %f ", i, yValues[i]); + printf("yError[%d]: %f \n", i, yErrors[i]); + }*/ + TGraph *res = new TGraph(64, xValues, yValues); //, xErrors, yErrors); + + c1->SetName("avgGraph"); + res->SetTitle(""); + res->GetXaxis()->SetTitle("channel"); + TString label; + label.Form("adc counts / %d #mus", intTime); + res->GetYaxis()->SetTitle(label.Data()); + res->GetYaxis()->SetTitleOffset(1.4); + + res->Fit("gaus", "Q0"); + double mean = res->GetFunction("gaus")->GetParameter(1); + //mean_ave = mean; + double sigma = res->GetFunction("gaus")->GetParameter(2); + //sigma_ave = sigma; + double constant = res->GetFunction("gaus")->GetParameter(0); + //res->Fit("gaus","","",mean-1.5*sigma,mean+1.5*sigma); + + TF1 *func = new TF1("doublegaus", fitfunc, 0, 64, 6); // t + func->SetNpx(1000); + func->SetParameter(0, constant); + func->SetParameter(1, mean); + func->SetParameter(2, sigma); + func->SetParameter(3, constant); + func->SetParameter(4, sigma); + func->SetParameter(5, 0.); + func->SetParLimits(1, 0., 64.); + func->SetParLimits(2, 1., 20.); + func->SetParLimits(4, 5., 100.); + //func->SetParameter(5,0.); + res->Fit("doublegaus"); + + res->Draw("AP"); + //c1->SaveAs("avgFit"); + + // find fwhm + double stepsize = 0.01; + double lim = res->GetFunction("doublegaus")->GetMaximum() / 2; + + double val, x1, x2, pos = 0; + bool below = true; + while (pos <= 64) + { + val = func->Eval(pos); + if (below && val >= lim) + { + x1 = pos; + below = false; + } + else if (below == false && val <= lim) + { + x2 = pos; + break; + } + pos += stepsize; + } + fwhm = (x2 - x1) * channelWidth; + return c1; +} + +TCanvas *Beammon::PrintChannelNoise(int channel) +{ + + TCanvas *c1 = new TCanvas(); + c1->cd(); + TString name; + name.Form("channelNoise%d", channel); + TString label; + label.Form("adc counts / %d #mus", intTime); + c1->SetName(name.Data()); + channelSig[channel]->SetTitle(""); + channelSig[channel]->SetName(name.Data()); + channelSig[channel]->GetXaxis()->SetTitle(label.Data()); + channelSig[channel]->GetYaxis()->SetTitle("entries"); + + channelSig[channel]->Draw(); + gStyle->SetOptStat("mr"); + gPad->Modified(); + //c1->SaveAs("blub"); + return c1; +} + +TCanvas *Beammon::IcFitSlicesY() +{ + TCanvas *c1 = new TCanvas(); + c1->cd(); + c1->SetName("icFitSlicesY"); + + TH1D *tmp = timePosHist->ProjectionY("", 1, 64); + + TH1D *means = (TH1D *)sigIcScatterPlot[10 + alignintIc]->ProfileY(); //(TH1D*)objectArray[1]; + means->SetLineColor(kBlack); + + //sigIcScatterPlot->Draw(); + means->Draw("E"); + means->GetXaxis()->SetRangeUser(0., means->GetXaxis()->GetXmax()); + means->SetMinimum(0.); + means->SetTitle(""); + //means->SetName("icFitSlicesY"); + TString label1, label2; + label1.Form("mean photodiode signal [particles / %d #mus]", intTime); + label2.Form("ionisation chamber signal [particles / %d #mus]", intTime); + means->GetXaxis()->SetTitle(label2.Data()); + means->GetYaxis()->SetTitle(label1.Data()); + + means->Fit("pol1"); + + //sigIcScatterPlot->Draw(); + gPad->Modified(); + //c1->SaveAs("blub"); + means->Write(); + return c1; +} + +TCanvas *Beammon::PrintSigIcGraph() +{ + TCanvas *c1 = new TCanvas(); + c1->cd(); + + TString name; + name.Form("sigIcScatterGraph"); + TString label, label2; + label.Form("adc counts / %d #mus", intTime); + label2.Form("whatever / %d #mus", intTime); + c1->SetName(name.Data()); + sigIcScatterGraph->SetTitle(""); + sigIcScatterGraph->SetName(name.Data()); + sigIcScatterGraph->GetXaxis()->SetTitle(label2.Data()); + sigIcScatterGraph->GetYaxis()->SetTitle(label.Data()); + + sigIcScatterGraph->Fit("pol1", "W"); + sigIcScatterGraph->Draw("AP"); + gPad->Modified(); + //c1->SaveAs("blub"); + return c1; +} + +TH1D *Beammon::GetMwPosComp() +{ + double bin, mean; + double shift = beamPosX->GetMean() - mwPosX->GetMean(); + //printf("beam: %f \n",beamPosTimeGraph->GetMean(2)); + int n = beamPosTimeGraph->GetN(); + for (int i = 0; i < n; i++) + { + beamPosTimeGraph->GetPoint(i, bin, mean); + if (!mean) + continue; + positionComp->Fill(mean - mw1_posxHist->GetBinContent(bin - alignint) - shift); + } + return positionComp; +} + +// +/// +///////////////////////////////////////////////////////////////////////////// + +TCanvas *Beammon::GetSig_e_ic_Hist() +{ + shift = beamPosX->GetMean() - mwPosX->GetMean(); + printf("shift = %f", shift); + TCanvas *c1 = new TCanvas(); + c1->cd(); + c1->SetName("SignalComp_vs_Time"); + Double_t norm = ic1Hist->Integral(); + ic1Hist->Scale(1. / norm); + ic1Hist->SetLineColor(kRed); + ic1Hist->Draw("HIST L"); + Double_t norm0 = sigHist->Integral(); + Double_t scaleSig = norm / norm0; + sigHist->Scale(1. / norm0); + sigHist->Draw("HIST SAME L"); + TLegend * legend= new TLegend(0.1, 0.7, 0.48, 0.9); + legend->AddEntry(ic1Hist, "ic", "l"); + legend->AddEntry(sigHist, "Fibre", "l"); + legend->Draw(); + + TH1D *compsig = new TH1D("compsig", "compsig", 200, -0.5, 0.5); + for (int i = 0; i < nevents; i++) + { + compsig->Fill((ic1Hist->GetBinContent(i) - sigHist->GetBinContent(i)) * 2 / (ic1Hist->GetBinContent(i) + sigHist->GetBinContent(i))); + } + compsig->Write(); + + TCanvas *c2 = new TCanvas(); + c2->cd(); + c2->SetName("PositionComp_vs_Time"); + TH1D *fibreHistNew = new TH1D("fibreHistNew", "fibreHistNew", nevents, 0., nevents - 1); + for (int i = 0; i < nevents; i++) + { + if (fibreHist->GetBinContent(i) != 0) + { + fibreHistNew->SetBinContent(i, fibreHist->GetBinContent(i) - shift); + } + else + fibreHistNew->SetBinContent(i, 0); + } + fibreHistNew->Draw("HIST L"); + mwpcHist->SetLineColor(kRed); + mwpcHist->SetLineColor(kRed); + mwpcHist->Draw("HIST SAME L"); + TLegend * legend2 = new TLegend(0.1, 0.7, 0.48, 0.9); + legend2->AddEntry(mwpcHist, "MWPC", "l"); + legend2->AddEntry(fibreHistNew, "Fibre", "l"); + legend2->Draw(); + c2->Write(); + return c1; +} + +TCanvas *Beammon::GetSig_e_ic_Hist_Weighted() +{ + TCanvas *c1 = new TCanvas(); + c1->cd(); + c1->SetName("SignalComp_vs_Time_all"); + Double_t norm = ic1Hist->Integral(); + ic1Hist->Scale(1. / norm); + ic1Hist->SetLineColor(kRed); + ic1Hist->SetLineWidth(2); + ic1Hist->Draw("HIST L"); + Double_t norm0 = sigHist_weighted->Integral(); + sigHist_weighted->Scale(1. / norm0); + sigHist_weighted->Draw("HIST SAME L"); + Double_t norm1 = sigHist->Integral(); + sigHist->Scale(1. / norm1); + sigHist->SetLineColor(kBlue); + sigHist->Draw("HIST SAME L"); + TLegend * legend= new TLegend(0.1, 0.7, 0.48, 0.9); + legend->AddEntry(ic1Hist, "ic", "l"); + legend->AddEntry(sigHist, "Fibre_fit", "l"); + legend->AddEntry(sigHist_weighted, "Fibre_sum", "l"); + legend->Draw(); + c1->Write(); + + TH1D *compsig_weighted = new TH1D("compsig_weighted", "compsig", 200, -0.5, 0.5); + for (int i = 0; i < nevents; i++) + { + compsig_weighted->Fill((ic1Hist->GetBinContent(i) - sigHist_weighted->GetBinContent(i)) * 2 / (ic1Hist->GetBinContent(i) + sigHist_weighted->GetBinContent(i))); + } + compsig_weighted->SetLineColor(kRed); + compsig_weighted->Write(); + TH1D *compsig = new TH1D("compsig", "compsig", 200, -0.5, 0.5); + for (int i = 0; i < nevents; i++) + { + compsig->Fill((ic1Hist->GetBinContent(i) - sigHist->GetBinContent(i)) * 2 / (ic1Hist->GetBinContent(i) + sigHist->GetBinContent(i))); + } + c1->cd(); + c1->SetName("CompSig_all"); + compsig->Draw(); + compsig_weighted->Draw("SAME"); +TLegend * legend2 = new TLegend(0.1, 0.7, 0.48, 0.9); + legend2->AddEntry(compsig_weighted, "Weighted", "l"); + legend2->AddEntry(compsig, "Fit", "l"); + legend2->Draw(); + c1->Write(); + + TCanvas *c2 = new TCanvas(); + c2->cd(); + c2->SetName("PositionComp_vs_Time_all"); + TH1D *fibreHistNew_weighted = new TH1D("fibreHistNew_weighted", "fibreHistNew_weighted", nevents, 0., nevents - 1); + for (int i = 0; i < nevents; i++) + { + if (fibreHist_weighted->GetBinContent(i) != 0) + { + fibreHistNew_weighted->SetBinContent(i, fibreHist_weighted->GetBinContent(i) - shift); + } + else + fibreHistNew_weighted->SetBinContent(i, 0); + } + TH1D *fibreHistNew = new TH1D("fibreHistNew", "fibreHistNew", nevents, 0., nevents - 1); + for (int i = 0; i < nevents; i++) + { + if (fibreHist->GetBinContent(i) != 0) + { + fibreHistNew->SetBinContent(i, fibreHist->GetBinContent(i) - shift); + } + else + fibreHistNew->SetBinContent(i, 0); + } + fibreHistNew->Draw("HIST L"); + fibreHistNew->SetLineColor(kBlue); + fibreHistNew_weighted->Draw("HIST L SAME"); + mwpcHist->SetLineColor(kRed); + mwpcHist->SetLineWidth(2); + mwpcHist->Draw("HIST SAME L"); +TLegend * legend3 = new TLegend(0.1, 0.7, 0.48, 0.9); + legend3->AddEntry(mwpcHist, "MWPC", "l"); + legend3->AddEntry(fibreHistNew, "Fibre_fit", "l"); + legend3->AddEntry(fibreHistNew_weighted, "Fibre_Weighted", "l"); + legend3->Draw(); + c2->Write(); + + c2->cd(); + c2->Clear(); + c2->SetName("PosComp_All"); + TH1D *comppos_weighted = new TH1D("comppos_weighted", "comppos", 200, -0.4, 0.4); + for (int i = 0; i < nevents; i++) + { + comppos_weighted->Fill((mwpcHist->GetBinContent(i) - fibreHist_weighted->GetBinContent(i) + shift)); + } + comppos_weighted->SetLineColor(kRed); + comppos_weighted->Write(); + TH1D *comppos = new TH1D("comppos", "comppos", 200, -0.4, 0.4); + for (int i = 0; i < nevents; i++) + { + comppos->Fill((mwpcHist->GetBinContent(i) - fibreHist->GetBinContent(i) + shift)); + } + comppos->Draw(); + comppos_weighted->Draw("SAME"); +TLegend * legend4 = new TLegend(0.1, 0.7, 0.48, 0.9); + legend4->AddEntry(comppos_weighted, "Weighted", "l"); + legend4->AddEntry(comppos, "Fit", "l"); + legend4->Draw(); + return c2; +} diff --git a/Scripts_20161126/50Hzbackground.C b/Scripts_20161126/50Hzbackground.C new file mode 100644 index 0000000..8d835d2 --- /dev/null +++ b/Scripts_20161126/50Hzbackground.C @@ -0,0 +1,385 @@ +{ +//=========Macro generated from canvas: Canvas_1/Canvas_1 +//========= (Thu Oct 12 16:44:34 2017) by ROOT version5.34/32 + TCanvas *Canvas_1 = new TCanvas("Canvas_1", "Canvas_1",303,169,363,321); + gStyle->SetOptFit(1); + gStyle->SetOptStat(0); + gStyle->SetOptTitle(0); + Canvas_1->Range(-0.0125,522.4648,0.1125,613.8474); + Canvas_1->SetFillColor(0); + Canvas_1->SetBorderMode(0); + Canvas_1->SetBorderSize(2); + Canvas_1->SetFrameBorderMode(0); + Canvas_1->SetFrameBorderMode(0); + + TProfile *h4_pfx = new TProfile("h4_pfx","ch63:(time-6021800)/1000 {time>6021800&&ic1<5}",100,0,0.1,""); + h4_pfx->SetBinEntries(1,2); + h4_pfx->SetBinEntries(2,1); + h4_pfx->SetBinEntries(3,2); + h4_pfx->SetBinEntries(4,2); + h4_pfx->SetBinEntries(5,2); + h4_pfx->SetBinEntries(6,2); + h4_pfx->SetBinEntries(7,2); + h4_pfx->SetBinEntries(8,2); + h4_pfx->SetBinEntries(9,2); + h4_pfx->SetBinEntries(10,2); + h4_pfx->SetBinEntries(11,2); + h4_pfx->SetBinEntries(12,3); + h4_pfx->SetBinEntries(13,2); + h4_pfx->SetBinEntries(14,2); + h4_pfx->SetBinEntries(15,2); + h4_pfx->SetBinEntries(16,2); + h4_pfx->SetBinEntries(17,2); + h4_pfx->SetBinEntries(18,2); + h4_pfx->SetBinEntries(19,2); + h4_pfx->SetBinEntries(20,2); + h4_pfx->SetBinEntries(21,2); + h4_pfx->SetBinEntries(22,2); + h4_pfx->SetBinEntries(23,2); + h4_pfx->SetBinEntries(24,2); + h4_pfx->SetBinEntries(25,2); + h4_pfx->SetBinEntries(26,2); + h4_pfx->SetBinEntries(27,2); + h4_pfx->SetBinEntries(28,2); + h4_pfx->SetBinEntries(29,2); + h4_pfx->SetBinEntries(30,2); + h4_pfx->SetBinEntries(31,2); + h4_pfx->SetBinEntries(32,2); + h4_pfx->SetBinEntries(33,2); + h4_pfx->SetBinEntries(34,2); + h4_pfx->SetBinEntries(35,2); + h4_pfx->SetBinEntries(36,2); + h4_pfx->SetBinEntries(37,2); + h4_pfx->SetBinEntries(38,1); + h4_pfx->SetBinEntries(39,2); + h4_pfx->SetBinEntries(40,2); + h4_pfx->SetBinEntries(41,2); + h4_pfx->SetBinEntries(42,2); + h4_pfx->SetBinEntries(43,2); + h4_pfx->SetBinEntries(44,2); + h4_pfx->SetBinEntries(45,2); + h4_pfx->SetBinEntries(46,2); + h4_pfx->SetBinEntries(47,3); + h4_pfx->SetBinEntries(48,2); + h4_pfx->SetBinEntries(49,2); + h4_pfx->SetBinEntries(50,2); + h4_pfx->SetBinEntries(51,2); + h4_pfx->SetBinEntries(52,2); + h4_pfx->SetBinEntries(53,2); + h4_pfx->SetBinEntries(54,2); + h4_pfx->SetBinEntries(55,2); + h4_pfx->SetBinEntries(56,2); + h4_pfx->SetBinEntries(57,2); + h4_pfx->SetBinEntries(58,2); + h4_pfx->SetBinEntries(59,2); + h4_pfx->SetBinEntries(60,2); + h4_pfx->SetBinEntries(61,2); + h4_pfx->SetBinEntries(62,2); + h4_pfx->SetBinEntries(63,2); + h4_pfx->SetBinEntries(64,2); + h4_pfx->SetBinEntries(65,2); + h4_pfx->SetBinEntries(66,2); + h4_pfx->SetBinEntries(67,2); + h4_pfx->SetBinEntries(68,2); + h4_pfx->SetBinEntries(69,2); + h4_pfx->SetBinEntries(70,2); + h4_pfx->SetBinEntries(71,2); + h4_pfx->SetBinEntries(72,2); + h4_pfx->SetBinEntries(73,2); + h4_pfx->SetBinEntries(74,1); + h4_pfx->SetBinEntries(75,2); + h4_pfx->SetBinEntries(76,2); + h4_pfx->SetBinEntries(77,2); + h4_pfx->SetBinEntries(78,2); + h4_pfx->SetBinEntries(79,2); + h4_pfx->SetBinEntries(80,2); + h4_pfx->SetBinEntries(81,2); + h4_pfx->SetBinEntries(82,2); + h4_pfx->SetBinEntries(83,3); + h4_pfx->SetBinEntries(84,2); + h4_pfx->SetBinEntries(85,2); + h4_pfx->SetBinEntries(86,2); + h4_pfx->SetBinEntries(87,2); + h4_pfx->SetBinEntries(88,2); + h4_pfx->SetBinEntries(89,2); + h4_pfx->SetBinEntries(90,2); + h4_pfx->SetBinEntries(91,2); + h4_pfx->SetBinEntries(92,2); + h4_pfx->SetBinEntries(93,2); + h4_pfx->SetBinEntries(94,2); + h4_pfx->SetBinEntries(95,2); + h4_pfx->SetBinEntries(96,2); + h4_pfx->SetBinEntries(97,2); + h4_pfx->SetBinEntries(98,2); + h4_pfx->SetBinEntries(99,2); + h4_pfx->SetBinEntries(100,2); + h4_pfx->SetBinContent(1,1097); + h4_pfx->SetBinContent(2,567.5); + h4_pfx->SetBinContent(3,1112); + h4_pfx->SetBinContent(4,1107); + h4_pfx->SetBinContent(5,1101); + h4_pfx->SetBinContent(6,1109); + h4_pfx->SetBinContent(7,1125); + h4_pfx->SetBinContent(8,1145); + h4_pfx->SetBinContent(9,1158); + h4_pfx->SetBinContent(10,1155); + h4_pfx->SetBinContent(11,1168); + h4_pfx->SetBinContent(12,1762.5); + h4_pfx->SetBinContent(13,1148); + h4_pfx->SetBinContent(14,1154); + h4_pfx->SetBinContent(15,1167); + h4_pfx->SetBinContent(16,1149); + h4_pfx->SetBinContent(17,1138); + h4_pfx->SetBinContent(18,1131); + h4_pfx->SetBinContent(19,1113); + h4_pfx->SetBinContent(20,1116); + h4_pfx->SetBinContent(21,1120); + h4_pfx->SetBinContent(22,1095); + h4_pfx->SetBinContent(23,1107); + h4_pfx->SetBinContent(24,1112); + h4_pfx->SetBinContent(25,1106); + h4_pfx->SetBinContent(26,1112); + h4_pfx->SetBinContent(27,1129); + h4_pfx->SetBinContent(28,1134); + h4_pfx->SetBinContent(29,1149); + h4_pfx->SetBinContent(30,1142); + h4_pfx->SetBinContent(31,1148); + h4_pfx->SetBinContent(32,1185); + h4_pfx->SetBinContent(33,1153); + h4_pfx->SetBinContent(34,1160); + h4_pfx->SetBinContent(35,1145); + h4_pfx->SetBinContent(36,1161); + h4_pfx->SetBinContent(37,1137); + h4_pfx->SetBinContent(38,565.5); + h4_pfx->SetBinContent(39,1114); + h4_pfx->SetBinContent(40,1120); + h4_pfx->SetBinContent(41,1119); + h4_pfx->SetBinContent(42,1096); + h4_pfx->SetBinContent(43,1108); + h4_pfx->SetBinContent(44,1121); + h4_pfx->SetBinContent(45,1114); + h4_pfx->SetBinContent(46,1135); + h4_pfx->SetBinContent(47,1683.5); + h4_pfx->SetBinContent(48,1135); + h4_pfx->SetBinContent(49,1161); + h4_pfx->SetBinContent(50,1144); + h4_pfx->SetBinContent(51,1153); + h4_pfx->SetBinContent(52,1177); + h4_pfx->SetBinContent(53,1174); + h4_pfx->SetBinContent(54,1173); + h4_pfx->SetBinContent(55,1171); + h4_pfx->SetBinContent(56,1164); + h4_pfx->SetBinContent(57,1127); + h4_pfx->SetBinContent(58,1130); + h4_pfx->SetBinContent(59,1137); + h4_pfx->SetBinContent(60,1122); + h4_pfx->SetBinContent(61,1106); + h4_pfx->SetBinContent(62,1096); + h4_pfx->SetBinContent(63,1140); + h4_pfx->SetBinContent(64,1100); + h4_pfx->SetBinContent(65,1110); + h4_pfx->SetBinContent(66,1121); + h4_pfx->SetBinContent(67,1139); + h4_pfx->SetBinContent(68,1146); + h4_pfx->SetBinContent(69,1155); + h4_pfx->SetBinContent(70,1147); + h4_pfx->SetBinContent(71,1156); + h4_pfx->SetBinContent(72,1150); + h4_pfx->SetBinContent(73,1173); + h4_pfx->SetBinContent(74,584.5); + h4_pfx->SetBinContent(75,1167); + h4_pfx->SetBinContent(76,1155); + h4_pfx->SetBinContent(77,1160); + h4_pfx->SetBinContent(78,1144); + h4_pfx->SetBinContent(79,1130); + h4_pfx->SetBinContent(80,1110); + h4_pfx->SetBinContent(81,1095); + h4_pfx->SetBinContent(82,1119); + h4_pfx->SetBinContent(83,1675.5); + h4_pfx->SetBinContent(84,1105); + h4_pfx->SetBinContent(85,1128); + h4_pfx->SetBinContent(86,1129); + h4_pfx->SetBinContent(87,1121); + h4_pfx->SetBinContent(88,1124); + h4_pfx->SetBinContent(89,1156); + h4_pfx->SetBinContent(90,1144); + h4_pfx->SetBinContent(91,1155); + h4_pfx->SetBinContent(92,1176); + h4_pfx->SetBinContent(93,1163); + h4_pfx->SetBinContent(94,1162); + h4_pfx->SetBinContent(95,1156); + h4_pfx->SetBinContent(96,1146); + h4_pfx->SetBinContent(97,1159); + h4_pfx->SetBinContent(98,1127); + h4_pfx->SetBinContent(99,1122); + h4_pfx->SetBinContent(100,1111); + h4_pfx->SetBinError(1,775.7593); + h4_pfx->SetBinError(2,567.5); + h4_pfx->SetBinError(3,786.4175); + h4_pfx->SetBinError(4,782.7787); + h4_pfx->SetBinError(5,778.8135); + h4_pfx->SetBinError(6,784.1827); + h4_pfx->SetBinError(7,795.5002); + h4_pfx->SetBinError(8,809.657); + h4_pfx->SetBinError(9,818.8812); + h4_pfx->SetBinError(10,816.7194); + h4_pfx->SetBinError(11,825.9034); + h4_pfx->SetBinError(12,1017.748); + h4_pfx->SetBinError(13,811.7958); + h4_pfx->SetBinError(14,816.0015); + h4_pfx->SetBinError(15,825.2712); + h4_pfx->SetBinError(16,812.4669); + h4_pfx->SetBinError(17,804.7574); + h4_pfx->SetBinError(18,799.749); + h4_pfx->SetBinError(19,787.0111); + h4_pfx->SetBinError(20,789.1568); + h4_pfx->SetBinError(21,791.9978); + h4_pfx->SetBinError(22,774.3646); + h4_pfx->SetBinError(23,782.849); + h4_pfx->SetBinError(24,786.3946); + h4_pfx->SetBinError(25,782.2292); + h4_pfx->SetBinError(26,786.3031); + h4_pfx->SetBinError(27,798.3286); + h4_pfx->SetBinError(28,801.8669); + h4_pfx->SetBinError(29,812.51); + h4_pfx->SetBinError(30,807.5311); + h4_pfx->SetBinError(31,811.7663); + h4_pfx->SetBinError(32,837.9645); + h4_pfx->SetBinError(33,815.299); + h4_pfx->SetBinError(34,820.2442); + h4_pfx->SetBinError(35,809.6978); + h4_pfx->SetBinError(36,820.9558); + h4_pfx->SetBinError(37,803.9916); + h4_pfx->SetBinError(38,565.5); + h4_pfx->SetBinError(39,787.7249); + h4_pfx->SetBinError(40,791.9675); + h4_pfx->SetBinError(41,791.2525); + h4_pfx->SetBinError(42,775.4305); + h4_pfx->SetBinError(43,783.4899); + h4_pfx->SetBinError(44,792.6869); + h4_pfx->SetBinError(45,787.7554); + h4_pfx->SetBinError(46,802.5861); + h4_pfx->SetBinError(47,971.9839); + h4_pfx->SetBinError(48,802.5774); + h4_pfx->SetBinError(49,820.9814); + h4_pfx->SetBinError(50,808.9379); + h4_pfx->SetBinError(51,815.2953); + h4_pfx->SetBinError(52,832.6539); + h4_pfx->SetBinError(53,830.1437); + h4_pfx->SetBinError(54,829.4411); + h4_pfx->SetBinError(55,828.2261); + h4_pfx->SetBinError(56,823.0872); + h4_pfx->SetBinError(57,796.9294); + h4_pfx->SetBinError(58,799.0385); + h4_pfx->SetBinError(59,803.9854); + h4_pfx->SetBinError(60,793.3741); + h4_pfx->SetBinError(61,782.0681); + h4_pfx->SetBinError(62,775.3402); + h4_pfx->SetBinError(63,806.1269); + h4_pfx->SetBinError(64,777.8255); + h4_pfx->SetBinError(65,784.9602); + h4_pfx->SetBinError(66,792.6869); + h4_pfx->SetBinError(67,805.4952); + h4_pfx->SetBinError(68,810.3521); + h4_pfx->SetBinError(69,816.7194); + h4_pfx->SetBinError(70,811.0626); + h4_pfx->SetBinError(71,817.4182); + h4_pfx->SetBinError(72,813.1731); + h4_pfx->SetBinError(73,829.4471); + h4_pfx->SetBinError(74,584.5); + h4_pfx->SetBinError(75,825.213); + h4_pfx->SetBinError(76,816.8846); + h4_pfx->SetBinError(77,820.2954); + h4_pfx->SetBinError(78,808.9676); + h4_pfx->SetBinError(79,799.1436); + h4_pfx->SetBinError(80,784.8914); + h4_pfx->SetBinError(81,774.2819); + h4_pfx->SetBinError(82,791.2575); + h4_pfx->SetBinError(83,967.4134); + h4_pfx->SetBinError(84,781.4567); + h4_pfx->SetBinError(85,797.6318); + h4_pfx->SetBinError(86,798.3549); + h4_pfx->SetBinError(87,792.6717); + h4_pfx->SetBinError(88,794.8588); + h4_pfx->SetBinError(89,817.4182); + h4_pfx->SetBinError(90,808.9453); + h4_pfx->SetBinError(91,816.7132); + h4_pfx->SetBinError(92,831.6252); + h4_pfx->SetBinError(93,822.4637); + h4_pfx->SetBinError(94,821.7095); + h4_pfx->SetBinError(95,817.4157); + h4_pfx->SetBinError(96,810.5372); + h4_pfx->SetBinError(97,819.5563); + h4_pfx->SetBinError(98,796.9106); + h4_pfx->SetBinError(99,793.3741); + h4_pfx->SetBinError(100,785.616); + h4_pfx->SetEntries(200); + + TPaveStats *ptstats = new TPaveStats(0.5671642,0.6959248,0.9794776,0.9373041,"brNDC"); + ptstats->SetName("stats"); + ptstats->SetBorderSize(1); + ptstats->SetFillColor(0); + ptstats->SetTextAlign(12); + ptstats->SetTextFont(42); + TText *text = ptstats->AddText("#chi^{2} / ndf = 1194 / 91"); + text->SetTextSize(0.04441379); + text = ptstats->AddText("p0 = 566.3 #pm 0.1 "); + text = ptstats->AddText("p1 = 14.22 #pm 0.17 "); + text = ptstats->AddText("p2 = 50.05 #pm 0.06 "); + text = ptstats->AddText("p3 = 2.319 #pm 0.025 "); + ptstats->SetOptStat(0); + ptstats->SetOptFit(1); + ptstats->Draw(); + h4_pfx->GetListOfFunctions()->Add(ptstats); + ptstats->SetParent(h4_pfx); + + TF1 *f3 = new TF1("f3","[0]+[1]*TMath::Cos(x*[2]*(2*3.14159)+[3])",0,100); + f3->SetFillColor(19); + f3->SetFillStyle(0); + f3->SetLineColor(2); + f3->SetLineWidth(2); + f3->SetChisquare(1193.557); + f3->SetNDF(91); + f3->GetXaxis()->SetLabelFont(42); + f3->GetXaxis()->SetLabelSize(0.035); + f3->GetXaxis()->SetTitleSize(0.035); + f3->GetXaxis()->SetTitleFont(42); + f3->GetYaxis()->SetLabelFont(42); + f3->GetYaxis()->SetLabelSize(0.035); + f3->GetYaxis()->SetTitleSize(0.035); + f3->GetYaxis()->SetTitleFont(42); + f3->SetParameter(0,566.3128); + f3->SetParError(0,0.1330487); + f3->SetParLimits(0,0,0); + f3->SetParameter(1,14.22488); + f3->SetParError(1,0.168519); + f3->SetParLimits(1,0,0); + f3->SetParameter(2,50.05139); + f3->SetParError(2,0.06405337); + f3->SetParLimits(2,0,0); + f3->SetParameter(3,2.318769); + f3->SetParError(3,0.02512338); + f3->SetParLimits(3,0,0); + h4_pfx->GetListOfFunctions()->Add(f3); + + Int_t ci; // for color index setting + TColor *color; // for color definition with alpha + ci = TColor::GetColor("#000099"); + h4_pfx->SetLineColor(ci); + h4_pfx->GetXaxis()->SetLabelFont(42); + h4_pfx->GetXaxis()->SetLabelSize(0.035); + h4_pfx->GetXaxis()->SetTitleSize(0.035); + h4_pfx->GetXaxis()->SetTitleFont(42); + h4_pfx->GetYaxis()->SetLabelFont(42); + h4_pfx->GetYaxis()->SetLabelSize(0.035); + h4_pfx->GetYaxis()->SetTitleSize(0.035); + h4_pfx->GetYaxis()->SetTitleFont(42); + h4_pfx->GetZaxis()->SetLabelFont(42); + h4_pfx->GetZaxis()->SetLabelSize(0.035); + h4_pfx->GetZaxis()->SetTitleSize(0.035); + h4_pfx->GetZaxis()->SetTitleFont(42); + h4_pfx->Draw(""); + Canvas_1->Modified(); + Canvas_1->cd(); + Canvas_1->SetSelected(Canvas_1); +} diff --git a/Scripts_20161126/50Hzbackground.pdf b/Scripts_20161126/50Hzbackground.pdf new file mode 100644 index 0000000..fa12c99 Binary files /dev/null and b/Scripts_20161126/50Hzbackground.pdf differ diff --git a/Scripts_20161126/Makefile b/Scripts_20161126/Makefile new file mode 100644 index 0000000..d50c19a --- /dev/null +++ b/Scripts_20161126/Makefile @@ -0,0 +1,83 @@ + +ROOTCFLAGS := $(shell root-config --cflags) +ROOTLIBS := $(shell root-config --libs) +ROOTGLIBS := $(shell root-config --glibs) + +GSLCFLAGS := $(shell gsl-config --cflags) +GSLLIBS := $(shell gsl-config --libs) +GSLGLIBS := $(shell gsl-config --glibs) + + +LDFLAGS = -O +LIBS += $(ROOTLIBS) $(GSLLIBS) +CFLAGS += $(ROOTCFLAGS) $(GSLCFLAGS) #-std=gnu++11 + +# Not sure why Minuit isn't being included -- put in by hand +# +LIBS += -lMinuit + + +all: convert analyse analyse_batch plot + + +plot: plot.o + g++ -o plot plot.o $(LDFLAGS) $(LIBS) + +%.o: %.c + g++ ${CFLAGS} -c -g $< + +plotdata_intensity_proton: plotdata_intensity_proton.o + g++ -o plotdata_intensity_proton plotdata_intensity_proton.o $(LDFLAGS) $(LIBS) + +%.o: %.c + g++ ${CFLAGS} -c -g $< + +plotdata_intensity_carbon: plotdata_intensity_carbon.o + g++ -o plotdata_intensity_carbon plotdata_intensity_carbon.o $(LDFLAGS) $(LIBS) + +%.o: %.c + g++ ${CFLAGS} -c -g $< + + +analyse: analyse.o + g++ -o analyse analyse.o $(LDFLAGS) $(LIBS) + +%.o: %.c + g++ ${CFLAGS} -c -g $< + + +convert: convert.o + g++ -o convert convert.o $(LDFLAGS) $(LIBS) + +%.o: %.c + g++ ${CFLAGS} -c -g $< + + +convert_batch: convert_batch.o + g++ -o convert_batch convert_batch.o $(LDFLAGS) $(LIBS) + +%.o: %.c + g++ ${CFLAGS} -c -g $< + + +analyse_batch: analyse_batch.o + g++ -o analyse_batch analyse_batch.o $(LDFLAGS) $(LIBS) + +%.o: %.c + g++ ${CFLAGS} -c -g $< + +analyse2: analyse2.o + g++ -o analyse2 analyse2.o $(LDFLAGS) $(LIBS) + +%.o: %.c + g++ ${CFLAGS} -c -g $< + + +test: + @echo $(ROOTCFLAGS) + @echo $(LDFLAGS) + @echo $(LIBS) + +clean: + -rm -f *.o + diff --git a/Scripts_20161126/Readme.txt b/Scripts_20161126/Readme.txt new file mode 100644 index 0000000..bcb5357 --- /dev/null +++ b/Scripts_20161126/Readme.txt @@ -0,0 +1,14 @@ +These scripts are for the data on 2016.11.26 + +1. The raw data of HIT and Fiber in csv format is converted into root tree with "./convert" + + //"convert" is compiled form convert.c with MAKEFILE + //Before using it, please change the PATH for the HIT data and Fiber data in "convert.c", and the filename in MAKEFILE + +2. Then analyse the data with "./analyse". The output is a root file with multiple histograms. + + //"analyse" is compiled form analyse.c with MAKEFILE + //Before using it, please change the PATH for the root file in "analyse.c", and the filename in MAKEFILE + +3. A PDF file is generated from the root file with command "root -q -b process.c" + It contains some histograms of the root file. diff --git a/Scripts_20161126/analyse b/Scripts_20161126/analyse new file mode 100755 index 0000000..2237328 Binary files /dev/null and b/Scripts_20161126/analyse differ diff --git a/Scripts_20161126/analyse.c b/Scripts_20161126/analyse.c new file mode 100644 index 0000000..7715d22 --- /dev/null +++ b/Scripts_20161126/analyse.c @@ -0,0 +1,52 @@ +#include +#include +#include +#include +#include + +#include +#include +#include + +#include "beammon.h" + +using namespace std; + +int main(int argc, char **argv) +{ + + // Working directories + const char *dirname = "/work/leverington/beamprofilemonitor/hitdata/HIT_26-11-2016/with_timestamp/"; + const char *pin_dirname = "/work/leverington/beamprofilemonitor/hitdata/HIT_26-11-2016/with_timestamp/pin/"; + const char *ext = ".root"; + TSystemDirectory pin_dir(pin_dirname, pin_dirname); + TList *files = pin_dir.GetListOfFiles(); + + if (files) + { + TSystemFile* file; + TString fname = ' '; + TIter next(files); + + while ((file = (TSystemFile *)next())) + { + fname = file->GetName(); + + // Loop over all files PiN_run***.root + if (!file->IsDirectory() && fname.EndsWith(ext) && !fname.BeginsWith("SAVE") && fname.BeginsWith("PiN_run")) + { + Beammon *mon = new Beammon(); + printf("File name: %s \n", fname.Data()); + + // Main part + // Initialize(DIRName, FileName, baselineEvents, prelimEvents, beamLevel, firstFibermat, readOutFrequency in Hz, integrationTime in us) + mon->Initialize(dirname, fname.Data(), 5000, 10000, 1., true, 3000., 312.); + mon->Save(); + + delete mon; + } + } + } + + return 0; +} diff --git a/Scripts_20161126/analyse2 b/Scripts_20161126/analyse2 new file mode 100755 index 0000000..51ab551 Binary files /dev/null and b/Scripts_20161126/analyse2 differ diff --git a/Scripts_20161126/analyse2.c b/Scripts_20161126/analyse2.c new file mode 100644 index 0000000..b886eac --- /dev/null +++ b/Scripts_20161126/analyse2.c @@ -0,0 +1,327 @@ +#define analyse2_cxx +#include "analyse2.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include +using namespace std; + + + +void analyse2::Loop() +{ +// In a ROOT session, you can do: +// Root > .L analyse2.C +// Root > analyse2 t +// Root > t.GetEntry(12); // Fill t data members with entry number 12 +// Root > t.Show(); // Show values of entry 12 +// Root > t.Show(16); // Read and show values of entry 16 +// Root > t.Loop(); // Loop on all entries +// + +// This is the loop skeleton where: +// jentry is the global entry number in the chain +// ientry is the entry number in the current Tree +// Note that the argument to GetEntry must be: +// jentry for TChain::GetEntry +// ientry for TTree::GetEntry and TBranch::GetEntry +// +// To read only selected branches, Insert statements like: +// METHOD1: +// fChain-> ve types of modulesSetBranchStatus("*",0); // disable all branches +// fChain->SetBranchStatus("branchname",1); // activate branchname +// METHOD2: replace line +// fChain->GetEntry(jentry); //read all branches +//by b_branchname->GetEntry(ientry); //read only this branch + if (fChain == 0) return; + + Double_t totalcurrent = 0.; + Double_t totaltime = 0.; + const int length = 100; + double array[length] = {0.}; + double arrayavg = 0.; + TF1 * bkgfunc = new TF1("bkgfunc","[0]+[1]*TMath::Cos(x*[2]*(2*3.14159)+[3])"); + bkgfunc->SetParameters( bkgfitPar0[64], bkgfitPar1[64], bkgfitPar2[64], bkgfitPar3[64]); + TF1 * gausfunc = new TF1("gausfunc","gaus(0)+[3]"); + TF1 * gausfunc2 = new TF1("gausfunc2","[0]*exp(-((x-[1])/[2])^2) +[3]*exp(-((x-[1])/[4])^2) + [5]"); + TGraphErrors * gausgraph; + + int numoverthresh=0; + double maxchannelamp = 0.; + double threshold = 10.; + int maxchannel = 0; + int numtocalc = 0; + int sidenumtocalc= 0; + Long64_t nentries = fChain->GetEntries(); + Long64_t ientry = LoadTree(1); + fChain->GetEntry(1); + Double_t basetimeoffset = time; + Double_t channelamp[64] = {0.}; + Double_t abschannelamp[64] = {0.}; + + Bool_t beamonflag = false; + Int_t waitcounter = 0; + Int_t lastfit = 0; + Int_t lastfit2 = 0; + Double_t channellist_gsl[64]; + Bool_t savegraph = true; + Long64_t nbytes = 0, nb = 0; + for (Long64_t jentry=0; jentryGetEntry(jentry); nbytes += nb; + // if (Cut(ientry) < 0) continue; + time_1 = time-basetimeoffset; + ic1_1 = ic1; + ic2_1 = ic2; + mw1_focusx_1 = mw1_focusx; + mw1_focusy_1 = mw1_focusy; + mw2_focusx_1 = mw2_focusx; + mw2_focusy_1 = mw2_focusy; + mw1_posx_1 = mw1_posx; + mw1_posy_1 = mw1_posy; + mw2_posx_1 = mw2_posx; + mw2_posy_1= mw2_posy; + eventid_1 = jentry; + if (jentry % 10000 ==0) cout << jentry << " events completed..." << endl; + + //calculate a rolling average of the signal + arrayavg = 0; + + for (int i = 1; i-100) array[length-1] = ic1_1 ; + + for (int i = 0; i1 && !beamonflag && jentry>5000) { + beamonflag = true; beamon = 1; + cout << "Beam On: " << jentry << endl; + + Baseline(true,3200,int(jentry-4000),true); + bkgfunc->SetParameters( bkgfitPar0[64], bkgfitPar1[64], bkgfitPar2[64], bkgfitPar3[64]); + waitcounter = 0; + } + if(rollingavg <0.5 && beamonflag && jentry>5000 ) + { + beamonflag = false; + beamon = 0; + waitcounter = 0; + } + + + + if (ic1_1>0.01) {totaltime+=0.312; totalcurrent+=ic1_1;} + + // calculate mean and integral + beamSignal_1 = 0.; + numoverthresh=0; + maxchannelamp = 0.; + threshold = 14; + maxchannel = 0; + // cout << (time_1-basetimeoffset)<< endl; + for (int ch = 4; ch < 64; ch++){ + bkgfunc->SetParameters( bkgfitPar0[ch], bkgfitPar1[ch], bkgfitPar2[ch], bkgfitPar3[ch]); //set the parameters for the common mode subtraction + channelamp[ch] = channels[ch]- baseline[ch] - bkgfunc->Eval(time_1); //subtract the baseline + //channelamp_smooth[ch] = channelamp[ch];//to be smoothed later + if (channelamp[ch] < 0.) {abschannelamp[ch] = 0.;} + else {abschannelamp[ch] = channelamp[ch];} + + if (ic1_1>0.01) th2d_beamSignal_channel->Fill(ch,channelamp[ch]); + if (ic1_1<=0.01) th2d_bkg_channel->Fill(ch,channelamp[ch]); + + if ( channelamp[ch] >threshold) { + numoverthresh++; + if ( channelamp[ch] > maxchannelamp) { + maxchannelamp = channelamp[ch] ; + maxchannel = ch; + } + } + channellist_gsl[ch] = 0; + channelamp_smooth[ch] = 0.; + } + numoverthresh+=4; + numtocalc = 0; + sidenumtocalc = 0; + + beamSidebandNoise_1 = 0.; + // for (int ch = 4; ch < maxchannel-numoverthresh/2; ch++){ + // if (ch>=4 && ch<=63){ + // beamSidebandNoise_1 += channelamp[ch]; //integrate the noise outside the peak + // sidenumtocalc++; + // } + // } + for (int ch = maxchannel+numoverthresh/2; ch < 64; ch++){ + if (ch>=4 && ch<=63){ + beamSidebandNoise_1 += channelamp[ch]; //integrate the noise outside the peak + sidenumtocalc++; + } + } + beamSidebandNoise_1 = beamSidebandNoise_1 /double(sidenumtocalc); // channel baseline shift + + for (int ch = maxchannel-numoverthresh/2 ; ch < maxchannel + numoverthresh/2; ch++){ + if (ch>=4 && ch<=63){ + beamSignal_1 += channelamp[ch]; //integrate the signal around the peak channel + channelamp_smooth[numtocalc] = channelamp[ch] - beamSidebandNoise_1 ; + beamSignal_1 += channelamp[ch]- beamSidebandNoise_1 ; //integrate the signal around the peak channel + channellist_gsl[numtocalc] = ch; + numtocalc++; + } + } + + + // if (ic1_1<=5 && ic2_1<=5 && jentry<1000) { cout << beamSignal_1 << " "<<(time_1)<<" " << bkgfunc->Eval((time_1)) << endl; } + // beamSignal_1 -= bkgfunc->Eval(time_1); + + //statistical analysis of the beam position + // FFTsmoothing(channelamp_smooth);//Fourier transform smoothing + + + + beamPosX_1 = gsl_stats_wmean(channelamp_smooth,1,channellist_gsl,1,numtocalc); //calculate the weighted mean + beamFocusX_1 = gsl_stats_wsd_with_fixed_mean(channelamp_smooth,1,channellist_gsl,1,numtocalc,beamPosX_1); //SD + beamSkewX_1 = gsl_stats_wskew_m_sd(channelamp_smooth,1,channellist_gsl,1,numtocalc,beamPosX_1,beamFocusX_1); //skewness (symmetry) + beamKurtX_1 = gsl_stats_wkurtosis_m_sd(channelamp_smooth,1,channellist_gsl,1,numtocalc,beamPosX_1,beamFocusX_1); //excess kurtosis (well behaved tails) + beamNumX_1 = numtocalc; + beamFocusX_1 *=2.3548;//SD-->FWHM + + + if (ic1_1>0.01 && beamSignal_1>5) th2d_mw1_beamPosX->Fill(mw1_posx_1,beamPosX_1); + if (ic1_1>0.01 && beamSignal_1>5) th2d_ic1_beamSignal->Fill(ic1_1,beamSignal_1); + if (ic1_1>0.01 && beamSignal_1>5) th1d_beamSignal_ic1ratio->Fill(beamSignal_1/ic1_1); + + + //fit with a gaussian function; + if (beamon==1){ + if (numtocalc>10&&numtocalc<50){ + gausfunc->SetParameters(beamSignal_1/(sqrt(2)*beamFocusX_1/2.3548),beamPosX_1,beamFocusX_1/2.3548,0.); + gausfunc2->SetParameters(beamSignal_1/(sqrt(2)*beamFocusX_1/2.3548),beamPosX_1,beamFocusX_1/2.3548,beamSignal_1/(10*sqrt(2)*beamFocusX_1/2.3548),2*beamFocusX_1/2.3548,0.); + } + else{ + gausfunc->SetParameters(500.,32.,10.,0.); + gausfunc2->SetParameters(500.,32,5.0,50.,10.0,0.); + + } + gausfunc->SetParLimits(0,0.,10000.); + gausfunc->SetParLimits(1,10.,50.); + gausfunc->SetParLimits(2,0.5,30.); + gausfunc->SetParLimits(3,-150.,150.); + + gausfunc2->SetParLimits(0,0.,10000.); + gausfunc2->SetParLimits(1,0.,64.); + gausfunc2->SetParLimits(2,0.5,50.); + gausfunc2->SetParLimits(3,0.,500.); + gausfunc2->SetParLimits(4,1.5,50.); + gausfunc2->SetParLimits(5,-150.,150.); + + gausgraph = new TGraphErrors(64,channellist,channelamp,errorx,errory); + lastfit = gausgraph->Fit(gausfunc,"QRN","",4,60); // single gaussian fit + if (beamon && savegraph && waitcounter>5000) { + gausgraph->SetName("example"); gausgraph->SetTitle("example"); + + gausgraph->Write(); + gausfunc->Write(); + cout << "Example data saved" << endl; + savegraph = false; + } + // lastfit2 = gausgraph->Fit(gausfunc2,"QR","",4,60);// two gaussian fit + + beamPosX_fit = gausfunc->GetParameter(1); + beamFocusX_fit =2.3548* gausfunc->GetParameter(2); + beamChi2_fit = gausfunc->GetChisquare()/gausfunc->GetNDF(); + beamPeakX_fit = gausfunc->GetParameter(0); + + beamPosX_fit2 = gausfunc2->GetParameter(1); + beamFocusX_fit2 =2.3548* gausfunc2->GetParameter(2); + beamFocus2X_fit2 =2.3548* gausfunc2->GetParameter(4); + beamChi2_fit2 = gausfunc2->GetChisquare()/gausfunc->GetNDF(); + beamPeakX_fit2 = gausfunc2->GetParameter(0); + beamPeak2X_fit2 = gausfunc2->GetParameter(3); + + for (int ch = 4; ch < 64; ch++){ + th2d_fitdiff_channel->Fill(ch, double(channelamp[ch]-gausfunc->Eval(ch))); + th2d_fit2diff_channel->Fill(ch, double(channelamp[ch]-gausfunc2->Eval(ch))); + } + } + + + newdata->Fill(); + + } + TVectorD v(10); + v[0] = totalcurrent; + v[1] = totaltime; + v.Write("icinfo"); + th2d_mw1_beamPosX->Write(); + th2d_ic1_beamSignal->Write(); + th1d_beamSignal_ic1ratio->Write(); + th2d_beamSignal_channel->Write(); + th2d_bkg_channel->Write(); + th2d_fitdiff_channel->Write(); + th2d_PhaseFFT_channel->Write(); + th2d_AmpFFT_channel->Write(); + newdata->Write(); +} + + +int main(int argc, char **argv) +{ + // Working directories + const char *dirname = "/work/leverington/beamprofilemonitor/hitdata/HIT_26-11-2016/with_timestamp/"; + const char *pin_dirname = "/work/leverington/beamprofilemonitor/hitdata/HIT_26-11-2016/with_timestamp/pin/"; + const char *ext = ".root"; + TSystemDirectory pin_dir(pin_dirname, pin_dirname); + + if (true) + { + TSystemFile* file; + TString fname = argv[1]; + + + + // fname = file->GetName(); + + // execute single PiN_run***.root + if ( fname.EndsWith(ext) && !fname.BeginsWith("SAVE") && fname.BeginsWith("PiN_run")) + { + analyse2 *mon = new analyse2(); + printf("File name: %s \n", fname.Data()); + + // Main part + // Initialize(DIRName, FileName, baselineEvents, prelimEvents, beamLevel, firstFibermat, readOutFrequency in Hz, integrationTime in us) + mon->Initialize(dirname, fname.Data(), 3200, 10000, 1., true, 3000., 0.); + mon->Baseline(true,1000,1,true); + mon->Loop(); //analysis loop + + // cout << th2d_mw1_beamPosX->GetCorrelationFactor() << endl; + mon->Save();//save output tree file + // mon->Close();//close output tree file + + delete mon; + + } + + } + return 0; +} diff --git a/Scripts_20161126/analyse2.c_old b/Scripts_20161126/analyse2.c_old new file mode 100644 index 0000000..ab5cf81 --- /dev/null +++ b/Scripts_20161126/analyse2.c_old @@ -0,0 +1,140 @@ +#define analyse2_cxx +#include "analyse2.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +using namespace std; + +void analyse2::Loop() +{ +// In a ROOT session, you can do: +// Root > .L analyse2.C +// Root > analyse2 t +// Root > t.GetEntry(12); // Fill t data members with entry number 12 +// Root > t.Show(); // Show values of entry 12 +// Root > t.Show(16); // Read and show values of entry 16 +// Root > t.Loop(); // Loop on all entries +// + +// This is the loop skeleton where: +// jentry is the global entry number in the chain +// ientry is the entry number in the current Tree +// Note that the argument to GetEntry must be: +// jentry for TChain::GetEntry +// ientry for TTree::GetEntry and TBranch::GetEntry +// +// To read only selected branches, Insert statements like: +// METHOD1: +// fChain->SetBranchStatus("*",0); // disable all branches +// fChain->SetBranchStatus("branchname",1); // activate branchname +// METHOD2: replace line +// fChain->GetEntry(jentry); //read all branches +//by b_branchname->GetEntry(ientry); //read only this branch + if (fChain == 0) return; + + Long64_t nentries = fChain->GetEntriesFast(); + + Long64_t nbytes = 0, nb = 0; + for (Long64_t jentry=0; jentryGetEntry(jentry); nbytes += nb; + // if (Cut(ientry) < 0) continue; + time_1 = time; + ic1_1 = ic1; + ic2_1 = ic2; + mw1_focusx_1 = mw1_focusx; + mw1_focusy_1 = mw1_focusy; + mw2_focusx_1 = mw2_focusx; + mw2_focusy_1 = mw2_focusy; + mw1_posx_1 = mw1_posx; + mw1_posy_1 = mw1_posy; + mw2_posx_1 = mw2_posx; + mw2_posy_1= mw2_posy; + + + // calculate mean and integral + beamSignal_1 = 0.; + /* + for (int ch = 0; ch < 64; ch++){ + beamSignal_1 += channels[ch] - baseline[ch]; + beamPosX_1 += (channels[ch] - baseline[ch]) * double(ch); + + } + beamPosX_1/= beamSignal_1; + + // calculate FWHM from RMS + beamFocusX_1 = 0.; + for (int ch = 0; ch < 64; ch++){ + beamFocusX_1 += (channels[ch] - baseline[ch]) * (ch-beamPosX_1)* (ch-beamPosX_1); + } + beamFocusX_1 /= beamSignal_1; + beamFocusX_1 = sqrt(beamFocusX_1); //correct this Variance = sigma*sigma / b + */ + for (int ch = 0; ch < 64; ch++){ + channels[ch]-=baseline[ch]; //subtract the baseline + beamSignal_1 += channels[ch]; //integrate the signal + } + beamPosX_1 = gsl_stats_wmean(channels,1,channellist,1,64); //calculate the weighted mean + beamFocusX_1 = 2.355* gsl_stats_wsd(channels,1,channellist,1,64); //FWHM + beamSkewX_1 = gsl_stats_wskew(channels,1,channellist,1,64); //skewness (symmetry) + beamKurtX_1 = gsl_stats_wkurtosis(channels,1,channellist,1,64); //excess kurtosis (well behaved tails) + th2f_mw1_beamPosX->Fill(mw1_posx_1,beamPosX_1); + + newdata->Fill(); + + } + th2f_mw1_beamPosX->Write(); + newdata->Write(); +} + + +int main(int argc, char **argv) +{ + // Working directories + const char *dirname = "/work/leverington/beamprofilemonitor/hitdata/HIT_26-11-2016/with_timestamp/"; + const char *pin_dirname = "/work/leverington/beamprofilemonitor/hitdata/HIT_26-11-2016/with_timestamp/pin/"; + const char *ext = ".root"; + TSystemDirectory pin_dir(pin_dirname, pin_dirname); + + if (true) + { + TSystemFile* file; + TString fname = argv[1]; + + + + // fname = file->GetName(); + + // execute single PiN_run***.root + if ( fname.EndsWith(ext) && !fname.BeginsWith("SAVE") && fname.BeginsWith("PiN_run")) + { + analyse2 *mon = new analyse2(); + printf("File name: %s \n", fname.Data()); + + // Main part + // Initialize(DIRName, FileName, baselineEvents, prelimEvents, beamLevel, firstFibermat, readOutFrequency in Hz, integrationTime in us) + mon->Initialize(dirname, fname.Data(), 5000, 10000, 1., true, 3000., 312.); + mon->Baseline(false,1000); + mon->Loop(); //analysis loop + + // cout << th2f_mw1_beamPosX->GetCorrelationFactor() << endl; + mon->Save();//save output tree file + // mon->Close();//close output tree file + + delete mon; + + } + + } + return 0; +} diff --git a/Scripts_20161126/analyse2.h b/Scripts_20161126/analyse2.h new file mode 100644 index 0000000..7d48024 --- /dev/null +++ b/Scripts_20161126/analyse2.h @@ -0,0 +1,919 @@ +////////////////////////////////////////////////////////// +// This class has been automatically generated on +// Tue Sep 12 15:40:57 2017 by ROOT version 5.34/32 +// from TTree t/t +// found on file: ../../HIT_26-11-2016/with_timestamp/pin/PiN_run1.root +////////////////////////////////////////////////////////// + +#ifndef analyse2_h +#define analyse2_h + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + + +using namespace std; + +// Header file for the classes stored in the TTree if any. + +// Fixed size dimensions of array or collections stored in the TTree if any. + +class analyse2 { + + + +public : + TTree *fChain; //!pointer to the analyzed TTree or TChain + Int_t fCurrent; //!current Tree number in a TChain + TTree *data; + TTree *newdata; + // Declaration of leaf types + Double_t time; + Double_t event_id; + Double_t sync_out; + Double_t sync_in; + Double_t data_ok; + Double_t led_voltage; + Double_t current; + Double_t ch00; + Double_t ch01; + Double_t ch02; + Double_t ch03; + Double_t ch04; + Double_t ch05; + Double_t ch06; + Double_t ch07; + Double_t ch08; + Double_t ch09; + Double_t ch10; + Double_t ch11; + Double_t ch12; + Double_t ch13; + Double_t ch14; + Double_t ch15; + Double_t ch16; + Double_t ch17; + Double_t ch18; + Double_t ch19; + Double_t ch20; + Double_t ch21; + Double_t ch22; + Double_t ch23; + Double_t ch24; + Double_t ch25; + Double_t ch26; + Double_t ch27; + Double_t ch28; + Double_t ch29; + Double_t ch30; + Double_t ch31; + Double_t ch32; + Double_t ch33; + Double_t ch34; + Double_t ch35; + Double_t ch36; + Double_t ch37; + Double_t ch38; + Double_t ch39; + Double_t ch40; + Double_t ch41; + Double_t ch42; + Double_t ch43; + Double_t ch44; + Double_t ch45; + Double_t ch46; + Double_t ch47; + Double_t ch48; + Double_t ch49; + Double_t ch50; + Double_t ch51; + Double_t ch52; + Double_t ch53; + Double_t ch54; + Double_t ch55; + Double_t ch56; + Double_t ch57; + Double_t ch58; + Double_t ch59; + Double_t ch60; + Double_t ch61; + Double_t ch62; + Double_t ch63; + Double_t ic1; + Double_t ic2; + Double_t mw1_focusx; + Double_t mw1_focusy; + Double_t mw2_focusx; + Double_t mw2_focusy; + Double_t mw1_posx; + Double_t mw1_posy; + Double_t mw2_posx; + Double_t mw2_posy; + + // List of branches + TBranch *b_time; //! + TBranch *b_event_id; //! + TBranch *b_sync_out; //! + TBranch *b_sync_in; //! + TBranch *b_data_ok; //! + TBranch *b_led_voltage; //! + TBranch *b_current; //! + TBranch *b_ch00; //! + TBranch *b_ch01; //! + TBranch *b_ch02; //! + TBranch *b_ch03; //! + TBranch *b_ch04; //! + TBranch *b_ch05; //! + TBranch *b_ch06; //! + TBranch *b_ch07; //! + TBranch *b_ch08; //! + TBranch *b_ch09; //! + TBranch *b_ch10; //! + TBranch *b_ch11; //! + TBranch *b_ch12; //! + TBranch *b_ch13; //! + TBranch *b_ch14; //! + TBranch *b_ch15; //! + TBranch *b_ch16; //! + TBranch *b_ch17; //! + TBranch *b_ch18; //! + TBranch *b_ch19; //! + TBranch *b_ch20; //! + TBranch *b_ch21; //! + TBranch *b_ch22; //! + TBranch *b_ch23; //! + TBranch *b_ch24; //! + TBranch *b_ch25; //! + TBranch *b_ch26; //! + TBranch *b_ch27; //! + TBranch *b_ch28; //! + TBranch *b_ch29; //! + TBranch *b_ch30; //! + TBranch *b_ch31; //! + TBranch *b_ch32; //! + TBranch *b_ch33; //! + TBranch *b_ch34; //! + TBranch *b_ch35; //! + TBranch *b_ch36; //! + TBranch *b_ch37; //! + TBranch *b_ch38; //! + TBranch *b_ch39; //! + TBranch *b_ch40; //! + TBranch *b_ch41; //! + TBranch *b_ch42; //! + TBranch *b_ch43; //! + TBranch *b_ch44; //! + TBranch *b_ch45; //! + TBranch *b_ch46; //! + TBranch *b_ch47; //! + TBranch *b_ch48; //! + TBranch *b_ch49; //! + TBranch *b_ch50; //! + TBranch *b_ch51; //! + TBranch *b_ch52; //! + TBranch *b_ch53; //! + TBranch *b_ch54; //! + TBranch *b_ch55; //! + TBranch *b_ch56; //! + TBranch *b_ch57; //! + TBranch *b_ch58; //! + TBranch *b_ch59; //! + TBranch *b_ch60; //! + TBranch *b_ch61; //! + TBranch *b_ch62; //! + TBranch *b_ch63; //! + TBranch *b_ic1; //! + TBranch *b_ic2; //! + TBranch *b_mw1_focusx; //! + TBranch *b_mw1_focusy; //! + TBranch *b_mw2_focusx; //! + TBranch *b_mw2_focusy; //! + TBranch *b_mw1_posx; //! + TBranch *b_mw1_posy; //! + TBranch *b_mw2_posx; //! + TBranch *b_mw2_posy; //! + + char *file; + TFile *fileIn; + TFile *fileOut; + TObjArray objectArray; + TBranch *b_channels[64]; + TBranch *b_baseline[64]; + double channels[64]; + double channelamp_smooth[64]; + + double baseline[64]; + double channellist[64]; + double errorx[64]; + double errory[64]; + + TBranch *b_beamNumX_1; + TBranch *b_beamPosX_1; + TBranch *b_beamFocusX_1; + TBranch *b_beamSignal_1; + TBranch *b_beamSidebandNoise_1; + + TBranch *b_beamSkewX_1; + TBranch *b_beamKurtX_1; + TBranch *b_beamPosX_fit; + TBranch *b_beamFocusX_fit; + TBranch *b_beamChi2_fit; + TBranch *b_beamPeakX_fit; + TBranch *b_beamPosX_fit2; + TBranch *b_beamFocusX_fit2; + TBranch *b_beamFocus2X_fit2; + TBranch *b_beamChi2_fit2; + TBranch *b_beamPeakX_fit2; + TBranch *b_beamPeak2X_fit2; + + TBranch *b_ic1_1; //! + TBranch *b_ic2_1; //! + TBranch *b_mw1_focusx_1; //! + TBranch *b_mw1_focusy_1; //! + TBranch *b_mw2_focusx_1; //! + TBranch *b_mw2_focusy_1; //! + TBranch *b_mw1_posx_1; //! + TBranch *b_mw1_posy_1; //! + TBranch *b_mw2_posx_1; //! + TBranch *b_mw2_posy_1; //! + TBranch *b_baseline_integral; + TBranch *b_time_1; //! + TBranch *b_eventid_1; //! + TBranch *b_rollingavg; //! + TBranch *b_beamon; //! + + double time_1; + double ic1_1; + double ic2_1; + double mw1_focusx_1; + double mw2_focusx_1; + double mw2_posx_1; + double mw1_posx_1; + double mw1_focusy_1; + double mw2_focusy_1; + double mw2_posy_1; + double mw1_posy_1; + + double beamNumX_1; + double beamPosX_1; + double beamFocusX_1; + double beamSignal_1; + double beamSidebandNoise_1; + + double beamSkewX_1; + double beamKurtX_1; + double baseline_integral; + double chargeintegral; + double timeintegral; + double eventid_1; + double rollingavg; + int beamon; + + double beamPosX_fit; + double beamFocusX_fit; + double beamChi2_fit; + double beamPeakX_fit; + double beamPosX_fit2; + double beamFocusX_fit2; + double beamFocus2X_fit2; + double beamChi2_fit2; + double beamPeakX_fit2; + double beamPeak2X_fit2; + + analyse2(TTree *tree=0); + virtual ~analyse2(); + virtual Int_t Cut(Long64_t entry); + virtual Int_t GetEntry(Long64_t entry); + virtual Long64_t LoadTree(Long64_t entry); + virtual void Init(TTree *tree); + virtual void Loop(); + virtual Bool_t Notify(); + virtual void Show(Long64_t entry = -1); + + double channelWidth; + + + + void Initialize(const char *dirname, const char *filename, int baselineEvents = 1000, int prelimEvents = 10000, double beamLevel = 0.1, bool firstFibermat = true, double readOutFrequency = 1000., int integrationTime = 100); + void Baseline(bool useFirstEvents, int nBaselineEvents, int StartEvent, bool run50hz); + void Save(); + void Close(); + double * FFTsmoothing(double arr[]); + + // double RollingAverage(const int length, double newdata); + + + TH2D * th2d_mw1_beamPosX; + TH2D * th2d_ic1_beamSignal; + TH1D * th1d_beamSignal_ic1ratio; + TH2D * th2d_beamSignal_channel; + TH2D * th2d_bkg_channel; + TH1D * th1d_baseline; + TH1D * th1d_baselinesub; + TH1D * th1d_chbaseline; + TH1D * th1d_chbaselinesub; + TH2D * th2d_fitdiff_channel; + TH2D * th2d_fit2diff_channel; + TH2D * th2d_AmpFFT_channel; + TH2D * th2d_PhaseFFT_channel; + + TFitResultPtr bkgfitResult; + Double_t bkgfitPar0[65]; + Double_t bkgfitPar1[65]; + Double_t bkgfitPar2[65]; + Double_t bkgfitPar3[65]; + Double_t bkgfitPar4[65]; + +}; + +#endif + +#ifdef analyse2_cxx +analyse2::analyse2(TTree *tree) : fChain(0) +{ +// if parameter tree is not specified (or zero), connect the file +// used to generate this class and read the Tree. + if (tree == 0) { + cerr << "no TTree found." << endl; + } + Init(tree); +} + +analyse2::~analyse2() +{ + if (!fChain) return; + delete fChain->GetCurrentFile(); +} + +Int_t analyse2::GetEntry(Long64_t entry) +{ +// Read contents of entry. + if (!fChain) return 0; + return fChain->GetEntry(entry); +} +Long64_t analyse2::LoadTree(Long64_t entry) +{ +// Set the environment to read one entry + if (!fChain) return -5; + Long64_t centry = fChain->LoadTree(entry); + if (centry < 0) return centry; + if (fChain->GetTreeNumber() != fCurrent) { + fCurrent = fChain->GetTreeNumber(); + Notify(); + } + return centry; +} + +void analyse2::Init(TTree *tree) +{ + // The Init() function is called when the selector needs to initialize + // a new tree or chain. Typically here the branch addresses and branch + // pointers of the tree will be set. + // It is normally not necessary to make changes to the generated + // code, but the routine can be extended by the user if needed. + // Init() will be called many times when running on PROOF + // (once per file to be processed). + + // Set branch addresses and branch pointers + if (!tree) return; + fChain = tree; + fCurrent = -1; + fChain->SetMakeClass(1); + + fChain->SetBranchAddress("time", &time, &b_time); + fChain->SetBranchAddress("event_id", &event_id, &b_event_id); + fChain->SetBranchAddress("sync_out", &sync_out, &b_sync_out); + fChain->SetBranchAddress("sync_in", &sync_in, &b_sync_in); + fChain->SetBranchAddress("data_ok", &data_ok, &b_data_ok); + fChain->SetBranchAddress("led_voltage", &led_voltage, &b_led_voltage); + fChain->SetBranchAddress("current", ¤t, &b_current); + fChain->SetBranchAddress("ch00", &ch00, &b_ch00); + fChain->SetBranchAddress("ch01", &ch01, &b_ch01); + fChain->SetBranchAddress("ch02", &ch02, &b_ch02); + fChain->SetBranchAddress("ch03", &ch03, &b_ch03); + fChain->SetBranchAddress("ch04", &ch04, &b_ch04); + fChain->SetBranchAddress("ch05", &ch05, &b_ch05); + fChain->SetBranchAddress("ch06", &ch06, &b_ch06); + fChain->SetBranchAddress("ch07", &ch07, &b_ch07); + fChain->SetBranchAddress("ch08", &ch08, &b_ch08); + fChain->SetBranchAddress("ch09", &ch09, &b_ch09); + fChain->SetBranchAddress("ch10", &ch10, &b_ch10); + fChain->SetBranchAddress("ch11", &ch11, &b_ch11); + fChain->SetBranchAddress("ch12", &ch12, &b_ch12); + fChain->SetBranchAddress("ch13", &ch13, &b_ch13); + fChain->SetBranchAddress("ch14", &ch14, &b_ch14); + fChain->SetBranchAddress("ch15", &ch15, &b_ch15); + fChain->SetBranchAddress("ch16", &ch16, &b_ch16); + fChain->SetBranchAddress("ch17", &ch17, &b_ch17); + fChain->SetBranchAddress("ch18", &ch18, &b_ch18); + fChain->SetBranchAddress("ch19", &ch19, &b_ch19); + fChain->SetBranchAddress("ch20", &ch20, &b_ch20); + fChain->SetBranchAddress("ch21", &ch21, &b_ch21); + fChain->SetBranchAddress("ch22", &ch22, &b_ch22); + fChain->SetBranchAddress("ch23", &ch23, &b_ch23); + fChain->SetBranchAddress("ch24", &ch24, &b_ch24); + fChain->SetBranchAddress("ch25", &ch25, &b_ch25); + fChain->SetBranchAddress("ch26", &ch26, &b_ch26); + fChain->SetBranchAddress("ch27", &ch27, &b_ch27); + fChain->SetBranchAddress("ch28", &ch28, &b_ch28); + fChain->SetBranchAddress("ch29", &ch29, &b_ch29); + fChain->SetBranchAddress("ch30", &ch30, &b_ch30); + fChain->SetBranchAddress("ch31", &ch31, &b_ch31); + fChain->SetBranchAddress("ch32", &ch32, &b_ch32); + fChain->SetBranchAddress("ch33", &ch33, &b_ch33); + fChain->SetBranchAddress("ch34", &ch34, &b_ch34); + fChain->SetBranchAddress("ch35", &ch35, &b_ch35); + fChain->SetBranchAddress("ch36", &ch36, &b_ch36); + fChain->SetBranchAddress("ch37", &ch37, &b_ch37); + fChain->SetBranchAddress("ch38", &ch38, &b_ch38); + fChain->SetBranchAddress("ch39", &ch39, &b_ch39); + fChain->SetBranchAddress("ch40", &ch40, &b_ch40); + fChain->SetBranchAddress("ch41", &ch41, &b_ch41); + fChain->SetBranchAddress("ch42", &ch42, &b_ch42); + fChain->SetBranchAddress("ch43", &ch43, &b_ch43); + fChain->SetBranchAddress("ch44", &ch44, &b_ch44); + fChain->SetBranchAddress("ch45", &ch45, &b_ch45); + fChain->SetBranchAddress("ch46", &ch46, &b_ch46); + fChain->SetBranchAddress("ch47", &ch47, &b_ch47); + fChain->SetBranchAddress("ch48", &ch48, &b_ch48); + fChain->SetBranchAddress("ch49", &ch49, &b_ch49); + fChain->SetBranchAddress("ch50", &ch50, &b_ch50); + fChain->SetBranchAddress("ch51", &ch51, &b_ch51); + fChain->SetBranchAddress("ch52", &ch52, &b_ch52); + fChain->SetBranchAddress("ch53", &ch53, &b_ch53); + fChain->SetBranchAddress("ch54", &ch54, &b_ch54); + fChain->SetBranchAddress("ch55", &ch55, &b_ch55); + fChain->SetBranchAddress("ch56", &ch56, &b_ch56); + fChain->SetBranchAddress("ch57", &ch57, &b_ch57); + fChain->SetBranchAddress("ch58", &ch58, &b_ch58); + fChain->SetBranchAddress("ch59", &ch59, &b_ch59); + fChain->SetBranchAddress("ch60", &ch60, &b_ch60); + fChain->SetBranchAddress("ch61", &ch61, &b_ch61); + fChain->SetBranchAddress("ch62", &ch62, &b_ch62); + fChain->SetBranchAddress("ch63", &ch63, &b_ch63); + fChain->SetBranchAddress("ic1", &ic1, &b_ic1); + fChain->SetBranchAddress("ic2", &ic2, &b_ic2); + fChain->SetBranchAddress("mw1_focusx", &mw1_focusx, &b_mw1_focusx); + fChain->SetBranchAddress("mw1_focusy", &mw1_focusy, &b_mw1_focusy); + fChain->SetBranchAddress("mw2_focusx", &mw2_focusx, &b_mw2_focusx); + fChain->SetBranchAddress("mw2_focusy", &mw2_focusy, &b_mw2_focusy); + fChain->SetBranchAddress("mw1_posx", &mw1_posx, &b_mw1_posx); + fChain->SetBranchAddress("mw1_posy", &mw1_posy, &b_mw1_posy); + fChain->SetBranchAddress("mw2_posx", &mw2_posx, &b_mw2_posx); + fChain->SetBranchAddress("mw2_posy", &mw2_posy, &b_mw2_posy); + + // v->ResizeTo(10); + + Notify(); +} + +Bool_t analyse2::Notify() +{ + // The Notify() function is called when a new file is opened. This + // can be either for a new TTree in a TChain or when when a new TTree + // is started when using PROOF. It is normally not necessary to make changes + // to the generated code, but the routine can be extended by the + // user if needed. The return value is currently not used. + + return kTRUE; +} + +void analyse2::Show(Long64_t entry) +{ +// Print contents of entry. +// If entry is not specified, print current entry + if (!fChain) return; + fChain->Show(entry); + +} +Int_t analyse2::Cut(Long64_t entry) +{ +// This function may be called from Loop. +// returns 1 if entry is accepted. +// returns -1 otherwise. + return 1; +} + +void analyse2::Initialize(const char *dirname, const char *filename, int baselineEvents, int prelimEvents, double beamLevel, bool firstFibermat, double readOutFrequency, int integrationTime) +{ + + TString fn = TString(filename); + TString dn = TString(dirname); + channelWidth = 0.8; + + TString inName = dn + "pin/" + fn; + fileIn = new TFile(inName, "READ"); + fileIn->GetObject("t", fChain); + fChain->Print(); + Init(fChain); + TString outname = filename; + outname.Insert(0, "SAVE_"); + outname.Insert(0, dirname); + fileOut = new TFile(outname.Data(), "RECREATE"); + newdata = new TTree("newdata", "newdata"); + + + for (int n = 0; n < 64; n++) + { + baseline[n] = 0.; + channellist[n] = double(n); + errorx[n] = 0.0; + errory[n] = 7.0; + char bname[20]; + + sprintf(bname, "ch%02d", n); + b_channels[n] = fChain->GetBranch(bname); + b_channels[n]->SetAddress(&channels[n]); + } + b_eventid_1 = newdata->Branch("eventid_1", &eventid_1); + + b_beamNumX_1 = newdata->Branch("beamNumX_1", &beamNumX_1); + b_beamPosX_1 = newdata->Branch("beamPosX_1", &beamPosX_1); + b_beamFocusX_1 = newdata->Branch("beamFocusX_1", &beamFocusX_1); + b_beamSignal_1 = newdata->Branch("beamSignal_1", &beamSignal_1); + b_beamSidebandNoise_1 = newdata->Branch("beamSidebandNoise_1", &beamSidebandNoise_1); + + b_beamSkewX_1 = newdata->Branch("beamSkewX_1", &beamSkewX_1); + b_beamKurtX_1 = newdata->Branch("beamKurtX_1", &beamKurtX_1); + b_beamPosX_fit = newdata->Branch("beamPosX_fit", &beamPosX_fit); + b_beamFocusX_fit = newdata->Branch("beamFocusX_fit", &beamFocusX_fit); + b_beamChi2_fit = newdata->Branch("beamChi2_fit", &beamChi2_fit); + b_beamPeakX_fit = newdata->Branch("beamPeakX_fit", &beamPeakX_fit); + + b_beamPosX_fit2 = newdata->Branch("beamPosX_fit2", &beamPosX_fit2); + b_beamFocusX_fit2 = newdata->Branch("beamFocusX_fit2", &beamFocusX_fit2); + b_beamFocus2X_fit2 = newdata->Branch("beamFocus2X_fit2", &beamFocus2X_fit2); + b_beamChi2_fit2 = newdata->Branch("beamChi2_fit2", &beamChi2_fit2); + b_beamPeakX_fit2 = newdata->Branch("beamPeakX_fit2", &beamPeakX_fit2); + b_beamPeak2X_fit2 = newdata->Branch("beamPeak2X_fit2", &beamPeak2X_fit2); + + b_ic1_1 = newdata->Branch("ic1_1", &ic1_1); + b_ic2_1 = newdata->Branch("ic2_1", &ic2_1); + b_mw1_focusx_1 = newdata->Branch("mw1_focusx_1", &mw1_focusx_1); + b_mw1_posx_1 = newdata->Branch("mw1_posx_1", &mw1_posx_1); + b_mw2_focusx_1 = newdata->Branch("mw2_focusx_1", &mw2_focusx_1); + b_mw2_posx_1 = newdata->Branch("mw2_posx_1", &mw2_posx_1); + + + b_mw1_focusy_1 = newdata->Branch("mw1_focusy_1", &mw1_focusy_1); + b_mw1_posy_1 = newdata->Branch("mw1_posy_1", &mw1_posy_1); + b_mw2_focusy_1 = newdata->Branch("mw2_focusy_1", &mw2_focusy_1); + b_mw2_posy_1 = newdata->Branch("mw2_posy_1", &mw2_posy_1); + b_rollingavg = newdata->Branch("rollingavg", &rollingavg); + b_beamon = newdata->Branch("beamon", &beamon); + + + b_time_1 = newdata->Branch("time_1", &time_1); + //histograms; + th2d_mw1_beamPosX = new TH2D("th2d_mw1_beamPosX","th2d_mw1_beamPosX",1000,0,64,1000,0,60); + th2d_ic1_beamSignal = new TH2D("th2d_ic1_beamSignal","th2d_ic1_beamSignal",500,0,500,500,0,100000); + th1d_beamSignal_ic1ratio = new TH1D("th1d_beamSignal_ic1ratio","th1d_beamSignal_ic1ratio",500,0,500.); + th2d_beamSignal_channel = new TH2D("th2d_beamSignal_channel","th2d_beamSignal_channel",65,-0.5,64.5,5100,-1000,10000); + th2d_fitdiff_channel = new TH2D("th2d_fitdiff_channel","th2d_fitdiff_channel",65,-0.5,64.5,5100,-10000,1000); + th2d_fit2diff_channel = new TH2D("th2d_fit2diff_channel","th2d_fit2diff_channel",65,-0.5,64.5,5100,-10000,1000); + +th2d_bkg_channel = new TH2D("th2d_bkg_channel","th2d_bkg_channel",65,-0.5,64.5,500,-500,500); + + th1d_baseline = new TH1D("th1d_baseline","th1d_baseline",500,-1500,1500.); + th1d_baselinesub = new TH1D("th1d_baselinesub","th1d_baselinesub",500,-1500,1500.); + th1d_chbaseline = new TH1D("th1d_chbaseline","th1d_chbaseline",2100,-100,1000.); + th1d_chbaselinesub = new TH1D("th1d_chbaselinesub","th1d_chbaselinesub",200,-100,100.); + th2d_AmpFFT_channel = new TH2D("th2d_AmpFFT_channel","th2d_AmpFFT_channel",65,-0.5,64.5,500,0,1000); + th2d_PhaseFFT_channel = new TH2D("th2d_PhaseFFT_channel","th2d_PhaseFFT_channel",65,-0.5,64.5,100,-2,2); + +} + + + + +void analyse2::Baseline(bool useFirstEvents, const int nBaselineEvents, int startevent, bool run50hz) +{ + Long64_t nevents = fChain->GetEntriesFast(); + baseline_integral = 0.; + // use the first/last nBaselineEvents events to calculate the average/baseline + cout << "Start background subtraction event:" << startevent << endl; + const int numbaseline = 3500; + Double_t channelamp[numbaseline]; + Double_t basetime[numbaseline] = {0.}; + + TGraph * g1; + TF1 * fitfunc = new TF1("fitfunc","[0]+[1]*TMath::Cos(x*[2]*(2*3.14159)+[3])"); + fitfunc->SetParameters( 0.0, 10.0, 0.05, 0.0 ); + fitfunc->FixParameter(2,0.05); + + fChain->GetEvent(1); + Double_t basetimeoffsetzero = time; + + fChain->GetEvent(startevent+numbaseline); + Double_t basetimeoffset = time-basetimeoffsetzero; + + fChain->GetEvent(startevent); + Double_t basetimeoffsetstart = time-basetimeoffsetzero; + Int_t counter = 0; + char bname[20]; + for (int ch = 0; ch < 64; ch++) + { + baseline[ch] =0.; + } + + if (!useFirstEvents) + { // last + for (int i = nevents- numbaseline; i < nevents; i++) + { + fChain->GetEvent(i); + for (int ch = 0; ch < 64; ch++) + { + if (channels[ch]>-100) baseline[ch] += channels[ch] / double(numbaseline); + if (channels[ch]>-100) baseline_integral +=baseline[ch]; + th1d_chbaseline->Fill(channels[ch]); + } + + } + // cout << "baseline int: " << baseline_integral << endl; + } + else + { + for (int i = startevent ; i <= startevent+ numbaseline; i++) + { + fChain->GetEvent(i); + for (int ch = 0; ch < 64; ch++) + { + if (channels[ch]>-100) baseline[ch] += channels[ch] / double(numbaseline); + if (channels[ch]>-100) baseline_integral +=baseline[ch]; + th1d_chbaseline->Fill(channels[ch]); + } + // cout << "baseline int: " << baseline_integral << endl; + } + } + + if (run50hz){ + + ///fit a 50Hz background noise to each channel + for (int ch = 0; ch < 64; ch++) + { + counter = 0; + for (int i = startevent ; i < startevent+numbaseline; i++) + { + fChain->GetEvent(i); + // for (int ch = 0; ch < 64; ch++) + //{ + channelamp[counter]= channels[ch]- baseline[ch]; + //} + basetime[counter] = time-basetimeoffsetzero; + counter++; + } + + + g1 = new TGraph(numbaseline,basetime,channelamp); + ///////finished here. 1) need to fit the baseline to a Cosine function 2) return 3 parameters per channel. 50 Hz is fixed. + bkgfitResult = g1->Fit(fitfunc,"QSR","",basetimeoffsetstart,basetimeoffset ); + + + bkgfitPar0[ch] = bkgfitResult->Parameter(0); + bkgfitPar1[ch] = bkgfitResult->Parameter(1); + bkgfitPar2[ch] = bkgfitResult->Parameter(2); + bkgfitPar3[ch] = bkgfitResult->Parameter(3); + + sprintf(bname, "bkg_ch%02d_graph", ch); + g1->SetTitle(bname); + g1->SetName(bname); + + //fitResult->Print("V"); + // bkgfitResult->Write(); + g1->Write(); + + + } //end for (int ch = ... + for (int ch = 0; ch < 64; ch++) + { + counter = 0; + fitfunc->SetParameters( bkgfitPar0[ch], bkgfitPar1[ch], bkgfitPar2[ch], bkgfitPar3[ch]); + for (Long64_t i = startevent ; i GetEvent(i); + channelamp[counter] = channels[ch]- baseline[ch]- fitfunc->Eval(time-basetimeoffsetzero); + th1d_chbaselinesub->Fill(channelamp[counter]); + counter++; + th2d_bkg_channel->Fill(ch,channelamp[counter]); + } + } + + Double_t channelampsum[numbaseline] = {0.}; + + + + counter = 0; + ///fit a 50Hz background noise to the sum of all channels + + for (Long64_t i = startevent ; i GetEvent(i); + channelampsum[counter]=0.; + for (int ch = 0; ch < 64; ch++){ + if (channels[ch]>-100 && baseline[ch]>-100) channelampsum[counter] += channels[ch] - baseline[ch]; //integrate the signal + + } + + basetime[counter] = (time-basetimeoffsetzero); + counter++; + } + + TGraph * g2 = new TGraph(counter,basetime,channelampsum); + TF1 * fitfunc2 = new TF1("fitfunc2","[0]+[1]*TMath::Cos(x*[2]*(2*3.14159)+[3])"); + fitfunc2->SetParameters( 5120.0, 450.0, 0.05, 0.0 ); + // fitfunc2->SetParLimits(1,0.,1000.); + fitfunc2->FixParameter(2,0.05); + + TFitResultPtr sumbkgfitResult = g2->Fit(fitfunc2,"QRS","", basetimeoffsetstart, basetimeoffset); + g2->SetName("commonmodenoise"); g2->SetTitle("commonmodenoise"); + g2->Write(); + sumbkgfitResult->Write(); + fitfunc2->Write(); + bkgfitPar0[64] = fitfunc2->GetParameter(0); + bkgfitPar1[64] = fitfunc2->GetParameter(1); + bkgfitPar2[64] = fitfunc2->GetParameter(2); + bkgfitPar3[64] = fitfunc2->GetParameter(3); + + counter=0; +for (Long64_t i = startevent ; i GetEvent(i); + channelampsum[counter] -= fitfunc2->Eval(time-basetimeoffsetzero); + th1d_baselinesub->Fill(channelampsum[counter]); + counter++; + + } + th1d_baseline->Write(); + th1d_baselinesub->Write(); + th1d_chbaseline->Write(); + th1d_chbaselinesub->Write(); + TGraph * g3 = new TGraph(counter,basetime,channelampsum); + g3->SetName("commonmodenoisesub"); g2->SetTitle("commonmodenoisesub"); + g3->Write(); + } +} + + +void analyse2::Save() +{ + //fileIn->Close(); + //fileOut->cd(); + newdata->AutoSave(); + +} + + +void analyse2::Close() +{ + fileIn->Close(); + fileOut->Close(); + if(fChain) delete fChain->GetCurrentFile(); +} + + + +#define REAL(z,i) ((z)[2*(i)]) +#define IMAG(z,i) ((z)[2*(i)+1]) + +double * analyse2::FFTsmoothing(double arr[]) +{ + + int i; double data[2*64]; + double channel[64]; + double RealInput[64]; + double ImagInput[64]; + double RealFFT[64]; + double ImagFFT[64]; + double AmpFFT[64]; + double PhaseFFT[64]; + + + double RealOutput[64]; + double ImagOutput[64]; + + double avgnoiseAmpFFT = 0.; + + for (i = 0; i < 64; i++) + { + REAL(data,i) = arr[i]; IMAG(data,i) = 0.0; + } + + // REAL(data,0) = 1.0; + + // for (i = 1; i <= 10; i++) + // { + // REAL(data,i) 1.0; + // } + for (i = 0; i < 64; i++) + { + channel[i] = i; + RealInput[i] = REAL(data,i); + ImagInput[i] = IMAG(data,i); + // printf ("%d %e %e\n", i, REAL(data,i), IMAG(data,i)); + } + // printf ("\n"); + // TGraph * g1_input_real = new TGraph(64,channel,RealInput); + // TGraph * g1_input_imag = new TGraph(64,channel,ImagInput); + // g1_input_real->SetName("input_real"); g1_input_real->Write(); + //g1_input_imag->SetName("input_imag"); g1_input_imag->Write(); + + //apply Fourier transform + gsl_fft_complex_radix2_forward (data, 1, 64); + + for (i = 0; i < 64; i++) + { + // printf ("%d %e %e\n", i, REAL(data,i)/sqrt(64), IMAG(data,i)/sqrt(64)); + RealFFT[i] = REAL(data,i)/sqrt(64); + ImagFFT[i] = IMAG(data,i)/sqrt(64); + + AmpFFT[i] = sqrt(RealFFT[i]*RealFFT[i] + ImagFFT[i]*ImagFFT[i]); + PhaseFFT[i] = atan(ImagFFT[i]/RealFFT[i]); + if (beamon){ + th2d_AmpFFT_channel->Fill(i,AmpFFT[i]); + th2d_PhaseFFT_channel->Fill(i,PhaseFFT[i]); + } + } + // printf ("\n"); + + //find the average noise frequency amplitude + for (i = 22; i < 32; i++){ + avgnoiseAmpFFT +=AmpFFT[i]/10; + } + + //find where the signal frequency amplitude falls below noise; + int cutchannel = 31; + for (i = 0; i < 32; i++) + { + if (AmpFFT[i]SetName("FFT_real"); g1_FFT_real->Write(); + // g1_FFT_imag->SetName("FFT_imag");g1_FFT_imag->Write(); + + // TGraph * g1_FFT_amp = new TGraph(64,channel,AmpFFT); + // TGraph * g1_FFT_phase = new TGraph(64,channel,PhaseFFT); + // g1_FFT_amp->SetName("FFT_amp"); g1_FFT_amp->Write(); + // g1_FFT_phase->SetName("FFT_phase");g1_FFT_phase->Write(); + + + //suppress channels that are more likely noise; the signal has a lower frequency than noise; + for (i = cutchannel+2; i < 32; i++) + { + REAL(data,i) = 0.; + IMAG(data,i) = 0.; + REAL(data,64-i) = 0.; + IMAG(data,64-i) = 0.; + } + //apply inverse Fourier transform + gsl_fft_complex_radix2_inverse (data, 1, 64); + for (i = 0; i < 64; i++) + { + // printf ("%d %e %e\n", i, REAL(data,i), IMAG(data,i)); + RealOutput[i] = REAL(data,i); + ImagOutput[i] = IMAG(data,i); + arr[i] = RealOutput[i]; + } + //printf ("\n"); + + // TGraph * g1_output_real = new TGraph(64,channel,RealOutput); + // TGraph * g1_output_imag = new TGraph(64,channel,ImagOutput); + // g1_output_real->SetName("output_real");g1_output_real->Write(); + // g1_output_imag->SetName("output_imag");g1_output_imag->Write(); + + return arr; +} + +#endif // #ifdef analyse2_cxx diff --git a/Scripts_20161126/analyse2.h_old b/Scripts_20161126/analyse2.h_old new file mode 100644 index 0000000..3d09dca --- /dev/null +++ b/Scripts_20161126/analyse2.h_old @@ -0,0 +1,565 @@ +B////////////////////////////////////////////////////////// +// This class has been automatically generated on +// Tue Sep 12 15:40:57 2017 by ROOT version 5.34/32 +// from TTree t/t +// found on file: ../../HIT_26-11-2016/with_timestamp/pin/PiN_run1.root +////////////////////////////////////////////////////////// + +#ifndef analyse2_h +#define analyse2_h + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +using namespace std; + +// Header file for the classes stored in the TTree if any. + +// Fixed size dimensions of array or collections stored in the TTree if any. + +class analyse2 { + + + +public : + TTree *fChain; //!pointer to the analyzed TTree or TChain + Int_t fCurrent; //!current Tree number in a TChain + TTree *data; + TTree *newdata; + // Declaration of leaf types + Double_t time; + Double_t event_id; + Double_t sync_out; + Double_t sync_in; + Double_t data_ok; + Double_t led_voltage; + Double_t current; + Double_t ch00; + Double_t ch01; + Double_t ch02; + Double_t ch03; + Double_t ch04; + Double_t ch05; + Double_t ch06; + Double_t ch07; + Double_t ch08; + Double_t ch09; + Double_t ch10; + Double_t ch11; + Double_t ch12; + Double_t ch13; + Double_t ch14; + Double_t ch15; + Double_t ch16; + Double_t ch17; + Double_t ch18; + Double_t ch19; + Double_t ch20; + Double_t ch21; + Double_t ch22; + Double_t ch23; + Double_t ch24; + Double_t ch25; + Double_t ch26; + Double_t ch27; + Double_t ch28; + Double_t ch29; + Double_t ch30; + Double_t ch31; + Double_t ch32; + Double_t ch33; + Double_t ch34; + Double_t ch35; + Double_t ch36; + Double_t ch37; + Double_t ch38; + Double_t ch39; + Double_t ch40; + Double_t ch41; + Double_t ch42; + Double_t ch43; + Double_t ch44; + Double_t ch45; + Double_t ch46; + Double_t ch47; + Double_t ch48; + Double_t ch49; + Double_t ch50; + Double_t ch51; + Double_t ch52; + Double_t ch53; + Double_t ch54; + Double_t ch55; + Double_t ch56; + Double_t ch57; + Double_t ch58; + Double_t ch59; + Double_t ch60; + Double_t ch61; + Double_t ch62; + Double_t ch63; + Double_t ic1; + Double_t ic2; + Double_t mw1_focusx; + Double_t mw1_focusy; + Double_t mw2_focusx; + Double_t mw2_focusy; + Double_t mw1_posx; + Double_t mw1_posy; + Double_t mw2_posx; + Double_t mw2_posy; + + // List of branches + TBranch *b_time; //! + TBranch *b_event_id; //! + TBranch *b_sync_out; //! + TBranch *b_sync_in; //! + TBranch *b_data_ok; //! + TBranch *b_led_voltage; //! + TBranch *b_current; //! + TBranch *b_ch00; //! + TBranch *b_ch01; //! + TBranch *b_ch02; //! + TBranch *b_ch03; //! + TBranch *b_ch04; //! + TBranch *b_ch05; //! + TBranch *b_ch06; //! + TBranch *b_ch07; //! + TBranch *b_ch08; //! + TBranch *b_ch09; //! + TBranch *b_ch10; //! + TBranch *b_ch11; //! + TBranch *b_ch12; //! + TBranch *b_ch13; //! + TBranch *b_ch14; //! + TBranch *b_ch15; //! + TBranch *b_ch16; //! + TBranch *b_ch17; //! + TBranch *b_ch18; //! + TBranch *b_ch19; //! + TBranch *b_ch20; //! + TBranch *b_ch21; //! + TBranch *b_ch22; //! + TBranch *b_ch23; //! + TBranch *b_ch24; //! + TBranch *b_ch25; //! + TBranch *b_ch26; //! + TBranch *b_ch27; //! + TBranch *b_ch28; //! + TBranch *b_ch29; //! + TBranch *b_ch30; //! + TBranch *b_ch31; //! + TBranch *b_ch32; //! + TBranch *b_ch33; //! + TBranch *b_ch34; //! + TBranch *b_ch35; //! + TBranch *b_ch36; //! + TBranch *b_ch37; //! + TBranch *b_ch38; //! + TBranch *b_ch39; //! + TBranch *b_ch40; //! + TBranch *b_ch41; //! + TBranch *b_ch42; //! + TBranch *b_ch43; //! + TBranch *b_ch44; //! + TBranch *b_ch45; //! + TBranch *b_ch46; //! + TBranch *b_ch47; //! + TBranch *b_ch48; //! + TBranch *b_ch49; //! + TBranch *b_ch50; //! + TBranch *b_ch51; //! + TBranch *b_ch52; //! + TBranch *b_ch53; //! + TBranch *b_ch54; //! + TBranch *b_ch55; //! + TBranch *b_ch56; //! + TBranch *b_ch57; //! + TBranch *b_ch58; //! + TBranch *b_ch59; //! + TBranch *b_ch60; //! + TBranch *b_ch61; //! + TBranch *b_ch62; //! + TBranch *b_ch63; //! + TBranch *b_ic1; //! + TBranch *b_ic2; //! + TBranch *b_mw1_focusx; //! + TBranch *b_mw1_focusy; //! + TBranch *b_mw2_focusx; //! + TBranch *b_mw2_focusy; //! + TBranch *b_mw1_posx; //! + TBranch *b_mw1_posy; //! + TBranch *b_mw2_posx; //! + TBranch *b_mw2_posy; //! + + char *file; + TFile *fileIn; + TFile *fileOut; + TObjArray objectArray; + TBranch *b_channels[64]; + TBranch *b_baseline[64]; + double channels[64]; + double baseline[64]; + double channellist[64]; + TBranch *b_beamPosX_1; + TBranch *b_beamFocusX_1; + TBranch *b_beamSignal_1; + TBranch *b_beamSkewX_1; + TBranch *b_beamKurtX_1; + + + TBranch *b_ic1_1; //! + TBranch *b_ic2_1; //! + TBranch *b_mw1_focusx_1; //! + TBranch *b_mw1_focusy_1; //! + TBranch *b_mw2_focusx_1; //! + TBranch *b_mw2_focusy_1; //! + TBranch *b_mw1_posx_1; //! + TBranch *b_mw1_posy_1; //! + TBranch *b_mw2_posx_1; //! + TBranch *b_mw2_posy_1; //! + TBranch *b_baseline_integral; + TBranch *b_time_1; //! + + double time_1; + double ic1_1; + double ic2_1; + double mw1_focusx_1; + double mw2_focusx_1; + double mw2_posx_1; + double mw1_posx_1; + double mw1_focusy_1; + double mw2_focusy_1; + double mw2_posy_1; + double mw1_posy_1; + double beamPosX_1; + double beamFocusX_1; + double beamSignal_1; + double beamSkewX_1; + double beamKurtX_1; + double baseline_integral; + + analyse2(TTree *tree=0); + virtual ~analyse2(); + virtual Int_t Cut(Long64_t entry); + virtual Int_t GetEntry(Long64_t entry); + virtual Long64_t LoadTree(Long64_t entry); + virtual void Init(TTree *tree); + virtual void Loop(); + virtual Bool_t Notify(); + virtual void Show(Long64_t entry = -1); + + double channelWidth; + + + + void Initialize(const char *dirname, const char *filename, int baselineEvents = 1000, int prelimEvents = 10000, double beamLevel = 0.1, bool firstFibermat = true, double readOutFrequency = 1000., int integrationTime = 100); + void Baseline(bool useFirstEvents, int nBaselineEvents); + void Save(); + void Close(); + + TH2F * th2f_mw1_beamPosX; + TH2F * th2f_ic1_beamSignal; + + + +}; + +#endif + +#ifdef analyse2_cxx +analyse2::analyse2(TTree *tree) : fChain(0) +{ +// if parameter tree is not specified (or zero), connect the file +// used to generate this class and read the Tree. + if (tree == 0) { + cerr << "no TTree found." << endl; + } + Init(tree); +} + +analyse2::~analyse2() +{ + if (!fChain) return; + delete fChain->GetCurrentFile(); +} + +Int_t analyse2::GetEntry(Long64_t entry) +{ +// Read contents of entry. + if (!fChain) return 0; + return fChain->GetEntry(entry); +} +Long64_t analyse2::LoadTree(Long64_t entry) +{ +// Set the environment to read one entry + if (!fChain) return -5; + Long64_t centry = fChain->LoadTree(entry); + if (centry < 0) return centry; + if (fChain->GetTreeNumber() != fCurrent) { + fCurrent = fChain->GetTreeNumber(); + Notify(); + } + return centry; +} + +void analyse2::Init(TTree *tree) +{ + // The Init() function is called when the selector needs to initialize + // a new tree or chain. Typically here the branch addresses and branch + // pointers of the tree will be set. + // It is normally not necessary to make changes to the generated + // code, but the routine can be extended by the user if needed. + // Init() will be called many times when running on PROOF + // (once per file to be processed). + + // Set branch addresses and branch pointers + if (!tree) return; + fChain = tree; + fCurrent = -1; + fChain->SetMakeClass(1); + + fChain->SetBranchAddress("time", &time, &b_time); + fChain->SetBranchAddress("event_id", &event_id, &b_event_id); + fChain->SetBranchAddress("sync_out", &sync_out, &b_sync_out); + fChain->SetBranchAddress("sync_in", &sync_in, &b_sync_in); + fChain->SetBranchAddress("data_ok", &data_ok, &b_data_ok); + fChain->SetBranchAddress("led_voltage", &led_voltage, &b_led_voltage); + fChain->SetBranchAddress("current", ¤t, &b_current); + fChain->SetBranchAddress("ch00", &ch00, &b_ch00); + fChain->SetBranchAddress("ch01", &ch01, &b_ch01); + fChain->SetBranchAddress("ch02", &ch02, &b_ch02); + fChain->SetBranchAddress("ch03", &ch03, &b_ch03); + fChain->SetBranchAddress("ch04", &ch04, &b_ch04); + fChain->SetBranchAddress("ch05", &ch05, &b_ch05); + fChain->SetBranchAddress("ch06", &ch06, &b_ch06); + fChain->SetBranchAddress("ch07", &ch07, &b_ch07); + fChain->SetBranchAddress("ch08", &ch08, &b_ch08); + fChain->SetBranchAddress("ch09", &ch09, &b_ch09); + fChain->SetBranchAddress("ch10", &ch10, &b_ch10); + fChain->SetBranchAddress("ch11", &ch11, &b_ch11); + fChain->SetBranchAddress("ch12", &ch12, &b_ch12); + fChain->SetBranchAddress("ch13", &ch13, &b_ch13); + fChain->SetBranchAddress("ch14", &ch14, &b_ch14); + fChain->SetBranchAddress("ch15", &ch15, &b_ch15); + fChain->SetBranchAddress("ch16", &ch16, &b_ch16); + fChain->SetBranchAddress("ch17", &ch17, &b_ch17); + fChain->SetBranchAddress("ch18", &ch18, &b_ch18); + fChain->SetBranchAddress("ch19", &ch19, &b_ch19); + fChain->SetBranchAddress("ch20", &ch20, &b_ch20); + fChain->SetBranchAddress("ch21", &ch21, &b_ch21); + fChain->SetBranchAddress("ch22", &ch22, &b_ch22); + fChain->SetBranchAddress("ch23", &ch23, &b_ch23); + fChain->SetBranchAddress("ch24", &ch24, &b_ch24); + fChain->SetBranchAddress("ch25", &ch25, &b_ch25); + fChain->SetBranchAddress("ch26", &ch26, &b_ch26); + fChain->SetBranchAddress("ch27", &ch27, &b_ch27); + fChain->SetBranchAddress("ch28", &ch28, &b_ch28); + fChain->SetBranchAddress("ch29", &ch29, &b_ch29); + fChain->SetBranchAddress("ch30", &ch30, &b_ch30); + fChain->SetBranchAddress("ch31", &ch31, &b_ch31); + fChain->SetBranchAddress("ch32", &ch32, &b_ch32); + fChain->SetBranchAddress("ch33", &ch33, &b_ch33); + fChain->SetBranchAddress("ch34", &ch34, &b_ch34); + fChain->SetBranchAddress("ch35", &ch35, &b_ch35); + fChain->SetBranchAddress("ch36", &ch36, &b_ch36); + fChain->SetBranchAddress("ch37", &ch37, &b_ch37); + fChain->SetBranchAddress("ch38", &ch38, &b_ch38); + fChain->SetBranchAddress("ch39", &ch39, &b_ch39); + fChain->SetBranchAddress("ch40", &ch40, &b_ch40); + fChain->SetBranchAddress("ch41", &ch41, &b_ch41); + fChain->SetBranchAddress("ch42", &ch42, &b_ch42); + fChain->SetBranchAddress("ch43", &ch43, &b_ch43); + fChain->SetBranchAddress("ch44", &ch44, &b_ch44); + fChain->SetBranchAddress("ch45", &ch45, &b_ch45); + fChain->SetBranchAddress("ch46", &ch46, &b_ch46); + fChain->SetBranchAddress("ch47", &ch47, &b_ch47); + fChain->SetBranchAddress("ch48", &ch48, &b_ch48); + fChain->SetBranchAddress("ch49", &ch49, &b_ch49); + fChain->SetBranchAddress("ch50", &ch50, &b_ch50); + fChain->SetBranchAddress("ch51", &ch51, &b_ch51); + fChain->SetBranchAddress("ch52", &ch52, &b_ch52); + fChain->SetBranchAddress("ch53", &ch53, &b_ch53); + fChain->SetBranchAddress("ch54", &ch54, &b_ch54); + fChain->SetBranchAddress("ch55", &ch55, &b_ch55); + fChain->SetBranchAddress("ch56", &ch56, &b_ch56); + fChain->SetBranchAddress("ch57", &ch57, &b_ch57); + fChain->SetBranchAddress("ch58", &ch58, &b_ch58); + fChain->SetBranchAddress("ch59", &ch59, &b_ch59); + fChain->SetBranchAddress("ch60", &ch60, &b_ch60); + fChain->SetBranchAddress("ch61", &ch61, &b_ch61); + fChain->SetBranchAddress("ch62", &ch62, &b_ch62); + fChain->SetBranchAddress("ch63", &ch63, &b_ch63); + fChain->SetBranchAddress("ic1", &ic1, &b_ic1); + fChain->SetBranchAddress("ic2", &ic2, &b_ic2); + fChain->SetBranchAddress("mw1_focusx", &mw1_focusx, &b_mw1_focusx); + fChain->SetBranchAddress("mw1_focusy", &mw1_focusy, &b_mw1_focusy); + fChain->SetBranchAddress("mw2_focusx", &mw2_focusx, &b_mw2_focusx); + fChain->SetBranchAddress("mw2_focusy", &mw2_focusy, &b_mw2_focusy); + fChain->SetBranchAddress("mw1_posx", &mw1_posx, &b_mw1_posx); + fChain->SetBranchAddress("mw1_posy", &mw1_posy, &b_mw1_posy); + fChain->SetBranchAddress("mw2_posx", &mw2_posx, &b_mw2_posx); + fChain->SetBranchAddress("mw2_posy", &mw2_posy, &b_mw2_posy); + Notify(); +} + +Bool_t analyse2::Notify() +{ + // The Notify() function is called when a new file is opened. This + // can be either for a new TTree in a TChain or when when a new TTree + // is started when using PROOF. It is normally not necessary to make changes + // to the generated code, but the routine can be extended by the + // user if needed. The return value is currently not used. + + return kTRUE; +} + +void analyse2::Show(Long64_t entry) +{ +// Print contents of entry. +// If entry is not specified, print current entry + if (!fChain) return; + fChain->Show(entry); +} +Int_t analyse2::Cut(Long64_t entry) +{ +// This function may be called from Loop. +// returns 1 if entry is accepted. +// returns -1 otherwise. + return 1; +} + +void analyse2::Initialize(const char *dirname, const char *filename, int baselineEvents, int prelimEvents, double beamLevel, bool firstFibermat, double readOutFrequency, int integrationTime) +{ + + TString fn = TString(filename); + TString dn = TString(dirname); + channelWidth = 0.8; + + TString inName = dn + "pin/" + fn; + fileIn = new TFile(inName, "READ"); + fileIn->GetObject("t", fChain); + fChain->Print(); + Init(fChain); + TString outname = filename; + outname.Insert(0, "SAVE_"); + outname.Insert(0, dirname); + fileOut = new TFile(outname.Data(), "RECREATE"); + newdata = new TTree("newdata", "newdata"); + + + for (int n = 0; n < 64; n++) + { + baseline[n] = 0.; + channellist[n] = double(n); + char bname[20]; + + sprintf(bname, "ch%02d", n); + b_channels[n] = fChain->GetBranch(bname); + b_channels[n]->SetAddress(&channels[n]); + } + + b_beamPosX_1 = newdata->Branch("beamPosX_1", &beamPosX_1); + b_beamFocusX_1 = newdata->Branch("beamFocusX_1", &beamFocusX_1); + b_beamSignal_1 = newdata->Branch("beamSignal_1", &beamSignal_1); + b_beamSkewX_1 = newdata->Branch("beamSkewX_1", &beamSkewX_1); + b_beamKurtX_1 = newdata->Branch("beamKurtX_1", &beamKurtX_1); + + b_ic1_1 = newdata->Branch("ic1_1", &ic1_1); + b_ic2_1 = newdata->Branch("ic2_1", &ic2_1); + b_mw1_focusx_1 = newdata->Branch("mw1_focusx_1", &mw1_focusx_1); + b_mw1_posx_1 = newdata->Branch("mw1_posx_1", &mw1_posx_1); + b_mw2_focusx_1 = newdata->Branch("mw2_focusx_1", &mw2_focusx_1); + b_mw2_posx_1 = newdata->Branch("mw2_posx_1", &mw2_posx_1); + + + b_mw1_focusy_1 = newdata->Branch("mw1_focusy_1", &mw1_focusy_1); + b_mw1_posy_1 = newdata->Branch("mw1_posy_1", &mw1_posy_1); + b_mw2_focusy_1 = newdata->Branch("mw2_focusy_1", &mw2_focusy_1); + b_mw2_posy_1 = newdata->Branch("mw2_posy_1", &mw2_posy_1); + + + b_time_1 = newdata->Branch("time_1", &time_1); + //histograms; + th2f_mw1_beamPosX = new TH2F("th2f_mw1_beamPosX","th2f_mw1_beamPosX",200,0,64,200,0,30); + th2f_ic1_beamSignal = new TH2F("th2f_ic1_beamSignal","th2f_ic1_beamSignal",200,0,300,200,0,30000); + +} + + + + +void analyse2::Baseline(bool useFirstEvents, int nBaselineEvents) +{ + Long64_t nevents = fChain->GetEntriesFast(); + baseline_integral = 0.; + // use the first/last nBaselineEvents events to calculate the average/baseline + if (!useFirstEvents) + { // last + for (int i = nevents - nBaselineEvents; i < nevents; i++) + { + fChain->GetEvent(i); + for (int ch = 0; ch < 64; ch++) + { + baseline[ch] += channels[ch] / double(nBaselineEvents); + baseline_integral +=baseline[ch]; + } + + } + } + else + { + for (int i = 1; i <= nBaselineEvents; i++) + { + fChain->GetEvent(i); + for (int ch = 0; ch < 64; ch++) + { + baseline[ch] += channels[ch] / double(nBaselineEvents); + baseline_integral +=baseline[ch]; + } + } + } +} + + +void analyse2::Save() +{ + //fileIn->Close(); + //fileOut->cd(); + newdata->AutoSave(); + +} + + +void analyse2::Close() +{ + fileIn->Close(); + fileOut->Close(); + if(fChain) delete fChain->GetCurrentFile(); +} + +#endif // #ifdef analyse2_cxx diff --git a/Scripts_20161126/analyse_batch b/Scripts_20161126/analyse_batch new file mode 100755 index 0000000..b3b44a4 Binary files /dev/null and b/Scripts_20161126/analyse_batch differ diff --git a/Scripts_20161126/analyse_batch.c b/Scripts_20161126/analyse_batch.c new file mode 100644 index 0000000..5f45895 --- /dev/null +++ b/Scripts_20161126/analyse_batch.c @@ -0,0 +1,50 @@ +#include +#include +#include +#include +#include + +#include +#include +#include + +#include "beammon.h" + +using namespace std; + +int main(int argc, char **argv) +{ + + // Working directories + const char *dirname = "/work/leverington/beamprofilemonitor/hitdata/HIT_26-11-2016/with_timestamp/"; + const char *pin_dirname = "/work/leverington/beamprofilemonitor/hitdata/HIT_26-11-2016/with_timestamp/pin/"; + const char *ext = ".root"; + TSystemDirectory pin_dir(pin_dirname, pin_dirname); + + if (true) + { + TSystemFile* file; + TString fname = argv[1]; + + + + // fname = file->GetName(); + + // execute single PiN_run***.root + if ( fname.EndsWith(ext) && !fname.BeginsWith("SAVE") && fname.BeginsWith("PiN_run")) + { + Beammon *mon = new Beammon(); + printf("File name: %s \n", fname.Data()); + + // Main part + // Initialize(DIRName, FileName, baselineEvents, prelimEvents, beamLevel, firstFibermat, readOutFrequency in Hz, integrationTime in us) + mon->Initialize(dirname, fname.Data(), 5000, 10000, 1., true, 3000., 312.); + mon->Save(); + + delete mon; + + } + + } + return 0; +} diff --git a/Scripts_20161126/analyselog.txt b/Scripts_20161126/analyselog.txt new file mode 100644 index 0000000..50c5dc4 --- /dev/null +++ b/Scripts_20161126/analyselog.txt @@ -0,0 +1,1839 @@ +Info in : created default TCanvas with name c1 +File name: PiN_run101.root + +center channel: 32 +Event: 10000 / 124520 +Event: 20000 / 124520 +Event: 30000 / 124520 +Event: 40000 / 124520 +Event: 50000 / 124520 +Event: 60000 / 124520 +Event: 70000 / 124520 +Event: 80000 / 124520 +Event: 90000 / 124520 +Event: 100000 / 124520 +Event: 110000 / 124520 +Event: 120000 / 124520 + FCN=1345.81 FROM MIGRAD STATUS=CONVERGED 92 CALLS 93 TOTAL + EDM=7.54405e-07 STRATEGY= 1 ERROR MATRIX UNCERTAINTY 3.7 per cent + EXT PARAMETER STEP FIRST + NO. NAME VALUE ERROR SIZE DERIVATIVE + 1 Constant 6.34545e+03 4.63708e+01 -5.07422e-03 -4.73389e-05 + 2 Mean 3.21265e+01 1.12860e-02 -3.76729e-05 1.06376e-02 + 3 Sigma 2.02633e+00 9.69276e-03 -9.53531e-08 -1.66803e+00 +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +HighestBin: 113808 +Info in ROOT::Math::ParameterSettings>: lower/upper bounds outside current parameter value. The value will be set to (low+up)/2 + +**************************************** +Minimizer is Minuit / Migrad +Chi2 = 100.231 +NDf = 58 +Edm = 7.43594e-07 +NCalls = 229 +p0 = 389.413 +/- 1.29249 +p1 = 31.0706 +/- 0.00475495 (limited) +p2 = 1.8276 +/- 0.0072543 (limited) +p3 = 15.5393 +/- 1.21405 +p4 = 5.00015 +/- 6.93808e-05 (limited) +p5 = 0.173105 +/- 0.200217 +Info in ROOT::Math::ParameterSettings>: lower/upper bounds outside current parameter value. The value will be set to (low+up)/2 + +**************************************** +Minimizer is Minuit / Migrad +Chi2 = 100.231 +NDf = 58 +Edm = 7.43594e-07 +NCalls = 229 +p0 = 389.413 +/- 1.29249 +p1 = 31.0706 +/- 0.00475495 (limited) +p2 = 1.8276 +/- 0.0072543 (limited) +p3 = 15.5393 +/- 1.21405 +p4 = 5.00015 +/- 6.93808e-05 (limited) +p5 = 0.173105 +/- 0.200217 +Warning in : may not use this method +Warning in : may not use this method +Warning in : Replacing existing TH1: compsig (Potential memory leak). +Warning in : Replacing existing TH1: fibreHistNew (Potential memory leak). +Mean: 32.076693 +Sigma: 2.892228 +Signal events: 5000 Event number: 62949 +Signal events: 10000 Event number: 67949 +Signal events: 15000 Event number: 86363 +Signal events: 20000 Event number: 91363 +Signal events: 25000 Event number: 96363 +Signal events: 30000 Event number: 114788 +Fit_Fail_Counts=0 +shift = 14.113561 +**************************************** +Minimizer is Linear +Chi2 = 3637.69 +NDf = 159 +p0 = 1107.4 +/- 13.64 +p1 = 1.36578 +/- 0.00627962 + +**************************************** +Minimizer is Linear +Chi2 = 9.7838e+09 +NDf = 62952 +p0 = 71.4052 +/- 2.06837 +p1 = 0.239041 +/- 0.000628165 +File name: PiN_run102.root + +center channel: 12 +Event: 10000 / 116912 +Event: 20000 / 116912 +Event: 30000 / 116912 +Event: 40000 / 116912 +Event: 50000 / 116912 +Event: 60000 / 116912 +Event: 70000 / 116912 +Event: 80000 / 116912 +Event: 90000 / 116912 +Event: 100000 / 116912 +Event: 110000 / 116912 + FCN=50.8173 FROM MIGRAD STATUS=CONVERGED 194 CALLS 195 TOTAL + EDM=3.75292e-08 STRATEGY= 1 ERROR MATRIX ACCURATE + EXT PARAMETER STEP FIRST + NO. NAME VALUE ERROR SIZE DERIVATIVE + 1 Constant 3.00517e+01 1.62148e+00 2.43294e-03 1.70041e-04 + 2 Mean -2.64268e+00 5.31076e+01 8.01051e-02 9.15142e-06 + 3 Sigma 1.94611e+02 1.21973e+02 3.70834e-03** at limit ** +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +HighestBin: 23880 +Info in ROOT::Math::ParameterSettings>: lower/upper bounds outside current parameter value. The value will be set to (low+up)/2 +Info in ROOT::Math::ParameterSettings>: lower/upper bounds outside current parameter value. The value will be set to (low+up)/2 +Info in ROOT::Math::ParameterSettings>: lower/upper bounds outside current parameter value. The value will be set to (low+up)/2 + +**************************************** +Minimizer is Minuit / Migrad +Chi2 = 0.107994 +NDf = 58 +Edm = 3.00858e-07 +NCalls = 251 +p0 = -0.0279376 +/- 0.0716425 +p1 = 63.9999 +/- 2.75796 (limited) +p2 = 1 +/- 0.660857 (limited) +p3 = 0.0725077 +/- 0.203215 +p4 = 93.5392 +/- 3.95705 (limited) +p5 = 0.0112815 +/- 0.201489 +Info in ROOT::Math::ParameterSettings>: lower/upper bounds outside current parameter value. The value will be set to (low+up)/2 +Info in ROOT::Math::ParameterSettings>: lower/upper bounds outside current parameter value. The value will be set to (low+up)/2 +Info in ROOT::Math::ParameterSettings>: lower/upper bounds outside current parameter value. The value will be set to (low+up)/2 + +**************************************** +Minimizer is Minuit / Migrad +Chi2 = 0.107993 +NDf = 58 +Edm = 3.00674e-07 +NCalls = 251 +p0 = -0.0279378 +/- 0.0716425 +p1 = 63.9999 +/- 2.75794 (limited) +p2 = 1 +/- 0.660885 (limited) +p3 = 0.0725075 +/- 0.203216 +p4 = 93.5394 +/- 3.95673 (limited) +p5 = 0.0112817 +/- 0.20149 +Warning in : may not use this method +Warning in : may not use this method +Warning in : Replacing existing TH1: compsig (Potential memory leak). +Warning in : Replacing existing TH1: fibreHistNew (Potential memory leak). +Warning in : Fit data is empty +Warning in : Fit data is empty +Mean: 33.369490 +Sigma: 18.245018 +Fit_Fail_Counts=0 +shift = 0.000000File name: PiN_run103.root + +center channel: 32 +Event: 10000 / 149220 +Event: 20000 / 149220 +Event: 30000 / 149220 +Event: 40000 / 149220 +Event: 50000 / 149220 +Event: 60000 / 149220 +Event: 70000 / 149220 +Event: 80000 / 149220 +Event: 90000 / 149220 +Event: 100000 / 149220 +Event: 110000 / 149220 +Event: 120000 / 149220 +Event: 130000 / 149220 +Event: 140000 / 149220 + FCN=779.451 FROM MIGRAD STATUS=CONVERGED 122 CALLS 123 TOTAL + EDM=1.87379e-07 STRATEGY= 1 ERROR MATRIX ACCURATE + EXT PARAMETER STEP FIRST + NO. NAME VALUE ERROR SIZE DERIVATIVE + 1 Constant 5.29360e+03 4.32532e+01 4.54909e-01 1.35944e-05 + 2 Mean 3.21602e+01 1.19648e-02 1.63194e-04 3.01476e-02 + 3 Sigma 1.89914e+00 9.88141e-03 5.99726e-06 3.16410e-01 +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +HighestBin: 80064 +Info in ROOT::Math::ParameterSettings>: lower/upper bounds outside current parameter value. The value will be set to (low+up)/2 + +**************************************** +Minimizer is Minuit / Migrad +Chi2 = 319.464 +NDf = 58 +Edm = 3.91913e-10 +NCalls = 291 +p0 = 702.198 +/- 2.29652 +p1 = 31.0117 +/- 0.00467808 (limited) +p2 = 1.7768 +/- 0.0070829 (limited) +p3 = 26.7818 +/- 2.13361 +p4 = 5 +/- 0.0225251 (limited) +p5 = 0.347055 +/- 0.358093 +Info in ROOT::Math::ParameterSettings>: lower/upper bounds outside current parameter value. The value will be set to (low+up)/2 + +**************************************** +Minimizer is Minuit / Migrad +Chi2 = 319.479 +NDf = 58 +Edm = 3.9174e-10 +NCalls = 291 +p0 = 702.197 +/- 2.29658 +p1 = 31.0117 +/- 0.0046782 (limited) +p2 = 1.7768 +/- 0.00708309 (limited) +p3 = 26.7821 +/- 2.13366 +p4 = 5 +/- 0.0225246 (limited) +p5 = 0.347042 +/- 0.358102 +Warning in : may not use this method +Warning in : may not use this method +Warning in : Replacing existing TH1: compsig (Potential memory leak). +Warning in : Replacing existing TH1: fibreHistNew (Potential memory leak). +Mean: 32.027297 +Sigma: 2.851685 +Signal events: 5000 Event number: 84885 +Signal events: 10000 Event number: 89886 +Signal events: 15000 Event number: 108310 +Signal events: 20000 Event number: 113310 +Signal events: 25000 Event number: 118310 +Signal events: 30000 Event number: 136749 +Fit_Fail_Counts=0 +shift = 14.070555 +**************************************** +Minimizer is Linear +Chi2 = 4304.07 +NDf = 113 +p0 = 606.405 +/- 10.7175 +p1 = 1.56836 +/- 0.00559713 + +**************************************** +Minimizer is Linear +Chi2 = 9.39014e+09 +NDf = 63068 +p0 = 73.1065 +/- 2.01376 +p1 = 0.234625 +/- 0.000621012 +File name: PiN_run104.root + +center channel: 32 +Event: 10000 / 159519 +Event: 20000 / 159519 +Event: 30000 / 159519 +Event: 40000 / 159519 +Event: 50000 / 159519 +Event: 60000 / 159519 +Event: 70000 / 159519 +Event: 80000 / 159519 +Event: 90000 / 159519 +Event: 100000 / 159519 +Event: 110000 / 159519 +Event: 120000 / 159519 +Event: 130000 / 159519 +Event: 140000 / 159519 +Event: 150000 / 159519 + FCN=1218.06 FROM MIGRAD STATUS=CONVERGED 102 CALLS 103 TOTAL + EDM=7.12123e-09 STRATEGY= 1 ERROR MATRIX UNCERTAINTY 2.6 per cent + EXT PARAMETER STEP FIRST + NO. NAME VALUE ERROR SIZE DERIVATIVE + 1 Constant 3.84211e+03 3.70712e+01 6.48220e-02 2.64084e-08 + 2 Mean 3.21840e+01 1.42085e-02 1.59971e-04 -2.42171e-04 + 3 Sigma 1.94034e+00 1.22074e-02 3.84630e-07 1.27464e-01 +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +HighestBin: 147855 +Info in ROOT::Math::ParameterSettings>: lower/upper bounds outside current parameter value. The value will be set to (low+up)/2 + +**************************************** +Minimizer is Minuit / Migrad +Chi2 = 27.9957 +NDf = 58 +Edm = 9.7661e-07 +NCalls = 216 +p0 = 205.793 +/- 0.671698 +p1 = 31.0045 +/- 0.00419661 (limited) +p2 = 1.74302 +/- 0.00698435 (limited) +p3 = 7.43848 +/- 0.61266 +p4 = 5.00007 +/- 4.25006e-05 (limited) +p5 = 0.0727574 +/- 0.105973 +Info in ROOT::Math::ParameterSettings>: lower/upper bounds outside current parameter value. The value will be set to (low+up)/2 + +**************************************** +Minimizer is Minuit / Migrad +Chi2 = 27.9961 +NDf = 58 +Edm = 9.76565e-07 +NCalls = 216 +p0 = 205.793 +/- 0.671702 +p1 = 31.0045 +/- 0.00419663 (limited) +p2 = 1.74302 +/- 0.0069844 (limited) +p3 = 7.43851 +/- 0.612664 +p4 = 5.00007 +/- 4.25008e-05 (limited) +p5 = 0.0727564 +/- 0.105973 +Warning in : may not use this method +Warning in : may not use this method +Error in : FitConfiguration and Minimizer result are not consistent +Mean: 32.018592 +Sigma: 2.859527 +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Signal events: 5000 Event number: 96254 +Signal events: 10000 Event number: 101256 +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Signal events: 15000 Event number: 119672 +Signal events: 20000 Event number: 124672 +Signal events: 25000 Event number: 129672 +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Warning in : Replacing existing TH1: compsig (Potential memory leak). +Warning in : Replacing existing TH1: fibreHistNew (Potential memory leak). +Signal events: 30000 Event number: 148397 +Fit_Fail_Counts=0 +shift = 14.064654 +**************************************** +Minimizer is Linear +Chi2 = 3945.88 +NDf = 146 +p0 = 508.31 +/- 9.55763 +p1 = 1.59694 +/- 0.00518891 + +**************************************** +Minimizer is Linear +Chi2 = 8.58112e+09 +NDf = 63096 +p0 = 65.8968 +/- 1.92269 +p1 = 0.238389 +/- 0.000603515 +File name: PiN_run105.root + +center channel: 32 +Event: 10000 / 129792 +Event: 20000 / 129792 +Event: 30000 / 129792 +Event: 40000 / 129792 +Event: 50000 / 129792 +Event: 60000 / 129792 +Event: 70000 / 129792 +Event: 80000 / 129792 +Event: 90000 / 129792 +Event: 100000 / 129792 +Event: 110000 / 129792 +Event: 120000 / 129792 + FCN=536.826 FROM MIGRAD STATUS=CONVERGED 75 CALLS 76 TOTAL + EDM=1.54765e-09 STRATEGY= 1 ERROR MATRIX UNCERTAINTY 2.9 per cent + EXT PARAMETER STEP FIRST + NO. NAME VALUE ERROR SIZE DERIVATIVE + 1 Constant 4.60174e+03 4.11597e+01 -3.03952e-02 2.34812e-06 + 2 Mean 3.22838e+01 1.26363e-02 7.25761e-07 -3.54850e-04 + 3 Sigma 1.83920e+00 1.05482e-02 -1.46902e-07 4.53749e-02 +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +HighestBin: 117061 +Info in ROOT::Math::ParameterSettings>: lower/upper bounds outside current parameter value. The value will be set to (low+up)/2 + +**************************************** +Minimizer is Minuit / Migrad +Chi2 = 52.6497 +NDf = 58 +Edm = 9.17338e-07 +NCalls = 231 +p0 = 278.404 +/- 0.911661 +p1 = 31.2479 +/- 0.00468789 (limited) +p2 = 1.69699 +/- 0.00685509 (limited) +p3 = 9.33533 +/- 0.814575 +p4 = 5.00036 +/- 0.000138393 (limited) +p5 = 0.268319 +/- 0.143769 +Info in ROOT::Math::ParameterSettings>: lower/upper bounds outside current parameter value. The value will be set to (low+up)/2 + +**************************************** +Minimizer is Minuit / Migrad +Chi2 = 52.6502 +NDf = 58 +Edm = 9.17395e-07 +NCalls = 231 +p0 = 278.404 +/- 0.911665 +p1 = 31.2479 +/- 0.00468792 (limited) +p2 = 1.69699 +/- 0.00685513 (limited) +p3 = 9.33537 +/- 0.814579 +p4 = 5.00036 +/- 0.000138398 (limited) +p5 = 0.268317 +/- 0.143769 +Warning in : may not use this method +Warning in : may not use this method +Error in : FitConfiguration and Minimizer result are not consistent +Mean: 32.259988 +Sigma: 3.343216 +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Warning in : Replacing existing TH1: compsig (Potential memory leak). +Warning in : Replacing existing TH1: fibreHistNew (Potential memory leak). +Signal events: 5000 Event number: 65829 +Signal events: 10000 Event number: 70834 +Signal events: 15000 Event number: 89283 +Signal events: 20000 Event number: 94291 +Signal events: 25000 Event number: 99297 +Signal events: 30000 Event number: 118015 +Fit_Fail_Counts=0 +shift = 14.252423 +**************************************** +Minimizer is Linear +Chi2 = 1612.12 +NDf = 135 +p0 = 849.034 +/- 12.7227 +p1 = 1.44614 +/- 0.00643153 + +**************************************** +Minimizer is Linear +Chi2 = 1.10692e+10 +NDf = 62934 +p0 = 68.2301 +/- 2.1845 +p1 = 0.230484 +/- 0.000694378 +File name: PiN_run106.root + +center channel: 32 +Event: 10000 / 137187 +Event: 20000 / 137187 +Event: 30000 / 137187 +Event: 40000 / 137187 +Event: 50000 / 137187 +Event: 60000 / 137187 +Event: 70000 / 137187 +Event: 80000 / 137187 +Event: 90000 / 137187 +Event: 100000 / 137187 +Event: 110000 / 137187 +Event: 120000 / 137187 +Event: 130000 / 137187 + FCN=781.468 FROM MIGRAD STATUS=CONVERGED 108 CALLS 109 TOTAL + EDM=5.60934e-07 STRATEGY= 1 ERROR MATRIX ACCURATE + EXT PARAMETER STEP FIRST + NO. NAME VALUE ERROR SIZE DERIVATIVE + 1 Constant 5.56442e+03 4.56061e+01 4.77647e-01 -3.00350e-05 + 2 Mean 3.26151e+01 1.14119e-02 1.55893e-04 1.12522e-02 + 3 Sigma 1.81645e+00 9.55869e-03 1.32786e-05 -7.36474e-01 +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +HighestBin: 105931 +Info in ROOT::Math::ParameterSettings>: lower/upper bounds outside current parameter value. The value will be set to (low+up)/2 + +**************************************** +Minimizer is Minuit / Migrad +Chi2 = 300.854 +NDf = 58 +Edm = 1.62562e-07 +NCalls = 276 +p0 = 718.866 +/- 2.16373 +p1 = 31.5427 +/- 0.00431651 (limited) +p2 = 1.67188 +/- 0.00626136 (limited) +p3 = 21.6167 +/- 1.92027 +p4 = 5 +/- 0.0289213 (limited) +p5 = 0.368002 +/- 0.346646 +Info in ROOT::Math::ParameterSettings>: lower/upper bounds outside current parameter value. The value will be set to (low+up)/2 + +**************************************** +Minimizer is Minuit / Migrad +Chi2 = 300.858 +NDf = 58 +Edm = 1.6252e-07 +NCalls = 276 +p0 = 718.866 +/- 2.16375 +p1 = 31.5427 +/- 0.00431654 (limited) +p2 = 1.67188 +/- 0.00626141 (limited) +p3 = 21.6169 +/- 1.92028 +p4 = 5 +/- 0.0289206 (limited) +p5 = 0.367995 +/- 0.346648 +Warning in : may not use this method +Warning in : may not use this method +Warning in : Replacing existing TH1: compsig (Potential memory leak). +Warning in : Replacing existing TH1: fibreHistNew (Potential memory leak). +Mean: 32.551085 +Sigma: 2.965648 +Signal events: 5000 Event number: 71454 +Signal events: 10000 Event number: 76454 +Signal events: 15000 Event number: 95379 +Signal events: 20000 Event number: 100384 +Signal events: 25000 Event number: 105387 +Signal events: 30000 Event number: 124329 +Fit_Fail_Counts=0 +shift = 14.489882 +**************************************** +Minimizer is Linear +Chi2 = 776.902 +NDf = 154 +p0 = 1256.8 +/- 15.6337 +p1 = 1.25761 +/- 0.00779125 + +**************************************** +Minimizer is Linear +Chi2 = 9.92097e+09 +NDf = 62092 +p0 = 68.34 +/- 2.07333 +p1 = 0.213303 +/- 0.000658185 +File name: PiN_run107.root + +center channel: 32 +Event: 10000 / 136194 +Event: 20000 / 136194 +Event: 30000 / 136194 +Event: 40000 / 136194 +Event: 50000 / 136194 +Event: 60000 / 136194 +Event: 70000 / 136194 +Event: 80000 / 136194 +Event: 90000 / 136194 +Event: 100000 / 136194 +Event: 110000 / 136194 +Event: 120000 / 136194 +Event: 130000 / 136194 + FCN=767.338 FROM MIGRAD STATUS=CONVERGED 106 CALLS 107 TOTAL + EDM=9.00112e-09 STRATEGY= 1 ERROR MATRIX ACCURATE + EXT PARAMETER STEP FIRST + NO. NAME VALUE ERROR SIZE DERIVATIVE + 1 Constant 5.27553e+03 4.53879e+01 4.70108e-01 1.83596e-06 + 2 Mean 3.28024e+01 1.14911e-02 1.55508e-04 -7.82926e-03 + 3 Sigma 1.74532e+00 9.66681e-03 1.39881e-05 -1.83249e-02 +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +HighestBin: 86338 +Info in ROOT::Math::ParameterSettings>: lower/upper bounds outside current parameter value. The value will be set to (low+up)/2 + +**************************************** +Minimizer is Minuit / Migrad +Chi2 = 452.03 +NDf = 58 +Edm = 1.38869e-09 +NCalls = 287 +p0 = 914.446 +/- 2.64092 +p1 = 31.6622 +/- 0.00411787 (limited) +p2 = 1.63569 +/- 0.00589282 (limited) +p3 = 25.4053 +/- 2.3048 +p4 = 5 +/- 0.025201 (limited) +p5 = 0.41952 +/- 0.424581 +Info in ROOT::Math::ParameterSettings>: lower/upper bounds outside current parameter value. The value will be set to (low+up)/2 + +**************************************** +Minimizer is Minuit / Migrad +Chi2 = 452.035 +NDf = 58 +Edm = 1.404e-09 +NCalls = 287 +p0 = 914.446 +/- 2.6409 +p1 = 31.6622 +/- 0.00411789 (limited) +p2 = 1.63568 +/- 0.00589281 (limited) +p3 = 25.4056 +/- 2.30476 +p4 = 5 +/- 0.0251988 (limited) +p5 = 0.419511 +/- 0.424583 +Warning in : may not use this method +Warning in : may not use this method +Error in : FitConfiguration and Minimizer result are not consistent +Mean: 32.672598 +Sigma: 2.802641 +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Warning in : Replacing existing TH1: compsig (Potential memory leak). +Warning in : Replacing existing TH1: fibreHistNew (Potential memory leak). +Signal events: 5000 Event number: 62539 +Signal events: 10000 Event number: 67540 +Signal events: 15000 Event number: 86467 +Signal events: 20000 Event number: 91469 +Signal events: 25000 Event number: 96472 +Signal events: 30000 Event number: 115383 +Fit_Fail_Counts=0 +shift = 14.590443 +**************************************** +Minimizer is Linear +Chi2 = 794.254 +NDf = 153 +p0 = 1337.2 +/- 15.795 +p1 = 1.20137 +/- 0.00782316 + +**************************************** +Minimizer is Linear +Chi2 = 1.13721e+10 +NDf = 62572 +p0 = 77.3928 +/- 2.19513 +p1 = 0.236174 +/- 0.000706248 +File name: PiN_run108.root + +center channel: 32 +Event: 10000 / 138178 +Event: 20000 / 138178 +Event: 30000 / 138178 +Event: 40000 / 138178 +Event: 50000 / 138178 +Event: 60000 / 138178 +Event: 70000 / 138178 +Event: 80000 / 138178 +Event: 90000 / 138178 +Event: 100000 / 138178 +Event: 110000 / 138178 +Event: 120000 / 138178 +Event: 130000 / 138178 + FCN=562.021 FROM MIGRAD STATUS=CONVERGED 57 CALLS 58 TOTAL + EDM=9.23142e-08 STRATEGY= 1 ERROR MATRIX ACCURATE + EXT PARAMETER STEP FIRST + NO. NAME VALUE ERROR SIZE DERIVATIVE + 1 Constant 7.02543e+03 5.26237e+01 4.66544e-01 -1.01375e-05 + 2 Mean 3.21610e+01 9.90744e-03 1.14793e-04 -7.75683e-03 + 3 Sigma 1.72847e+00 8.33363e-03 1.42336e-05 -2.82767e-01 +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +HighestBin: 101459 +Info in ROOT::Math::ParameterSettings>: lower/upper bounds outside current parameter value. The value will be set to (low+up)/2 + +**************************************** +Minimizer is Minuit / Migrad +Chi2 = 491.188 +NDf = 58 +Edm = 3.07751e-07 +NCalls = 275 +p0 = 887.689 +/- 2.72675 +p1 = 31.135 +/- 0.00436673 (limited) +p2 = 1.59469 +/- 0.00619017 (limited) +p3 = 25.159 +/- 2.333 +p4 = 5 +/- 0.0219512 (limited) +p5 = 0.518084 +/- 0.442058 +Info in ROOT::Math::ParameterSettings>: lower/upper bounds outside current parameter value. The value will be set to (low+up)/2 + +**************************************** +Minimizer is Minuit / Migrad +Chi2 = 491.2 +NDf = 58 +Edm = 3.07729e-07 +NCalls = 275 +p0 = 887.688 +/- 2.72679 +p1 = 31.135 +/- 0.00436679 (limited) +p2 = 1.59469 +/- 0.00619025 (limited) +p3 = 25.1593 +/- 2.33303 +p4 = 5 +/- 0.0219505 (limited) +p5 = 0.518071 +/- 0.442063 +Warning in : may not use this method +Warning in : may not use this method +Warning in : Replacing existing TH1: compsig (Potential memory leak). +Warning in : Replacing existing TH1: fibreHistNew (Potential memory leak). +Mean: 32.151940 +Sigma: 3.530857 +Signal events: 5000 Event number: 65279 +Signal events: 10000 Event number: 70297 +Signal events: 15000 Event number: 89557 +Signal events: 20000 Event number: 94576 +Signal events: 25000 Event number: 99591 +Signal events: 30000 Event number: 118891 +Fit_Fail_Counts=0 +shift = 14.166726 +**************************************** +Minimizer is Linear +Chi2 = 7170.88 +NDf = 141 +p0 = 1770.55 +/- 10.9181 +p1 = 0.848359 +/- 0.00421041 + +**************************************** +Minimizer is Linear +Chi2 = 9.27672e+09 +NDf = 62280 +p0 = 84.1288 +/- 1.98288 +p1 = 0.226368 +/- 0.000644282 +File name: PiN_run109.root + +center channel: 0 +Event: 10000 / 132559 +Event: 20000 / 132559 +Event: 30000 / 132559 +Event: 40000 / 132559 +Event: 50000 / 132559 +Event: 60000 / 132559 +Event: 70000 / 132559 +Event: 80000 / 132559 +Event: 90000 / 132559 +Event: 100000 / 132559 +Event: 110000 / 132559 +Event: 120000 / 132559 +Event: 130000 / 132559 + FCN=73.1271 FROM MIGRAD STATUS=CONVERGED 217 CALLS 218 TOTAL + EDM=1.81556e-07 STRATEGY= 1 ERROR MATRIX ACCURATE + EXT PARAMETER STEP FIRST + NO. NAME VALUE ERROR SIZE DERIVATIVE + 1 Constant 3.45915e+01 3.67803e+00 3.21115e-03 -6.39892e-04 + 2 Mean -4.32027e+01 5.42586e+01 4.74520e-02 -3.66419e-05 + 3 Sigma 1.97853e+02 4.03094e+01 3.94935e-03** at limit ** +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +HighestBin: 29689 +Info in ROOT::Math::ParameterSettings>: lower/upper bounds outside current parameter value. The value will be set to (low+up)/2 +Info in ROOT::Math::ParameterSettings>: lower/upper bounds outside current parameter value. The value will be set to (low+up)/2 +Info in ROOT::Math::ParameterSettings>: lower/upper bounds outside current parameter value. The value will be set to (low+up)/2 + +**************************************** +Minimizer is Minuit / Migrad +Chi2 = 233.893 +NDf = 58 +Edm = 1.95368e-07 +NCalls = 817 +p0 = 13.6177 +/- 2.04078 +p1 = 4.77324e-09 +/- 0.291092 (limited) +p2 = 14.7695 +/- 2.70296 (limited) +p3 = -70.896 +/- 17.5533 +p4 = 100 +/- 34.6342 (limited) +p5 = 77.6761 +/- 15.2482 +Info in ROOT::Math::ParameterSettings>: lower/upper bounds outside current parameter value. The value will be set to (low+up)/2 +Info in ROOT::Math::ParameterSettings>: lower/upper bounds outside current parameter value. The value will be set to (low+up)/2 +Info in ROOT::Math::ParameterSettings>: lower/upper bounds outside current parameter value. The value will be set to (low+up)/2 + +**************************************** +Minimizer is Minuit / Migrad +Chi2 = 234.29 +NDf = 58 +Edm = 1.17194e-08 +NCalls = 761 +p0 = 13.6314 +/- 2.07959 +p1 = 6.21203e-10 +/- 0.264119 (limited) +p2 = 14.8964 +/- 2.7797 (limited) +p3 = -71.2047 +/- 17.8332 +p4 = 100 +/- 34.8105 (limited) +p5 = 77.939 +/- 15.4633 +Warning in : may not use this method +Warning in : may not use this method +Warning in : Replacing existing TH1: compsig (Potential memory leak). +Warning in : Replacing existing TH1: fibreHistNew (Potential memory leak). +Warning in : Fit data is empty +Warning in : Fit data is empty +Mean: 31.983223 +Sigma: 19.307324 +Fit_Fail_Counts=0 +shift = 0.000000File name: PiN_run110.root + +center channel: 31 +Event: 10000 / 403427 +Event: 20000 / 403427 +Event: 30000 / 403427 +Event: 40000 / 403427 +Event: 50000 / 403427 +Event: 60000 / 403427 +Event: 70000 / 403427 +Event: 80000 / 403427 +Event: 90000 / 403427 +Event: 100000 / 403427 +Event: 110000 / 403427 +Event: 120000 / 403427 +Event: 130000 / 403427 +Event: 140000 / 403427 +Event: 150000 / 403427 +Event: 160000 / 403427 +Event: 170000 / 403427 +Event: 180000 / 403427 +Event: 190000 / 403427 +Event: 200000 / 403427 +Event: 210000 / 403427 +Event: 220000 / 403427 +Event: 230000 / 403427 +Event: 240000 / 403427 +Event: 250000 / 403427 +Event: 260000 / 403427 +Event: 270000 / 403427 +Event: 280000 / 403427 +Event: 290000 / 403427 +Event: 300000 / 403427 +Event: 310000 / 403427 +Event: 320000 / 403427 +Event: 330000 / 403427 +Event: 340000 / 403427 +Event: 350000 / 403427 +Event: 360000 / 403427 +Event: 370000 / 403427 +Event: 380000 / 403427 +Event: 390000 / 403427 +Event: 400000 / 403427 + FCN=556.391 FROM MIGRAD STATUS=CONVERGED 114 CALLS 115 TOTAL + EDM=1.21042e-06 STRATEGY= 1 ERROR MATRIX ACCURATE + EXT PARAMETER STEP FIRST + NO. NAME VALUE ERROR SIZE DERIVATIVE + 1 Constant 5.40493e+01 2.09550e+00 1.27886e-02 -9.46670e-04 + 2 Mean 3.10434e+01 5.20644e-01 5.87353e-03 -2.61069e-05 + 3 Sigma 1.96153e+01 1.05085e+00 1.22977e-04 -1.38781e-01 +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +HighestBin: 332001 + +**************************************** +Minimizer is Minuit / Migrad +Chi2 = 7.55582 +NDf = 58 +Edm = 7.55579e-07 +NCalls = 960 +p0 = 54.773 +/- 2.68065 +p1 = 30.6041 +/- 0.0138725 (limited) +p2 = 4.69424 +/- 0.0792989 (limited) +p3 = 8.31405 +/- 2.67514 +p4 = 8.25762 +/- 0.838288 (limited) +p5 = 0.163968 +/- 0.101264 + +**************************************** +Minimizer is Minuit / Migrad +Chi2 = 7.55961 +NDf = 58 +Edm = 8.61502e-08 +NCalls = 996 +p0 = 54.7745 +/- 2.68636 +p1 = 30.6041 +/- 0.013876 (limited) +p2 = 4.69428 +/- 0.0794542 (limited) +p3 = 8.3127 +/- 2.68081 +p4 = 8.25803 +/- 0.840295 (limited) +p5 = 0.16402 +/- 0.101369 +Warning in : may not use this method +Warning in : may not use this method +Warning in : Replacing existing TH1: compsig (Potential memory leak). +Warning in : Replacing existing TH1: fibreHistNew (Potential memory leak). +Mean: 31.593640 +Sigma: 5.709244 +Signal events: 5000 Event number: 310797 +Signal events: 10000 Event number: 315818 +Signal events: 15000 Event number: 331718 +Signal events: 20000 Event number: 336749 +Signal events: 25000 Event number: 341789 +Signal events: 30000 Event number: 357685 +Fit_Fail_Counts=0 +shift = 13.735863 +**************************************** +Minimizer is Linear +Chi2 = 250.168 +NDf = 160 +p0 = 207.211 +/- 1.40492 +p1 = 0.700465 +/- 0.00406464 + +**************************************** +Minimizer is Linear +Chi2 = 4.30376e+09 +NDf = 61276 +p0 = -7.12394 +/- 1.46868 +p1 = 0.700953 +/- 0.00435484 +File name: PiN_run111.root + +center channel: 31 +Event: 10000 / 253593 +Event: 20000 / 253593 +Event: 30000 / 253593 +Event: 40000 / 253593 +Event: 50000 / 253593 +Event: 60000 / 253593 +Event: 70000 / 253593 +Event: 80000 / 253593 +Event: 90000 / 253593 +Event: 100000 / 253593 +Event: 110000 / 253593 +Event: 120000 / 253593 +Event: 130000 / 253593 +Event: 140000 / 253593 +Event: 150000 / 253593 +Event: 160000 / 253593 +Event: 170000 / 253593 +Event: 180000 / 253593 +Event: 190000 / 253593 +Event: 200000 / 253593 +Event: 210000 / 253593 +Event: 220000 / 253593 +Event: 230000 / 253593 +Event: 240000 / 253593 +Event: 250000 / 253593 + FCN=329.542 FROM MIGRAD STATUS=CONVERGED 81 CALLS 82 TOTAL + EDM=2.60377e-07 STRATEGY= 1 ERROR MATRIX ACCURATE + EXT PARAMETER STEP FIRST + NO. NAME VALUE ERROR SIZE DERIVATIVE + 1 Constant 2.33302e+02 5.54194e+00 3.53347e-02 -1.25008e-04 + 2 Mean 3.23985e+01 1.00210e-01 8.89608e-04 4.29819e-04 + 3 Sigma 5.87164e+00 9.69833e-02 2.78819e-05 8.75139e-03 +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +HighestBin: 212881 + +**************************************** +Minimizer is Minuit / Migrad +Chi2 = 5.37493 +NDf = 58 +Edm = 1.38136e-07 +NCalls = 847 +p0 = 46.4749 +/- 2.23879 +p1 = 30.5969 +/- 0.0137675 (limited) +p2 = 4.69441 +/- 0.0780945 (limited) +p3 = 7.18025 +/- 2.23457 +p4 = 8.2535 +/- 0.807983 (limited) +p5 = 0.0846774 +/- 0.0848423 + +**************************************** +Minimizer is Minuit / Migrad +Chi2 = 5.37728 +NDf = 58 +Edm = 6.14532e-07 +NCalls = 833 +p0 = 46.4759 +/- 2.23288 +p1 = 30.5969 +/- 0.0137705 (limited) +p2 = 4.69446 +/- 0.0779134 (limited) +p3 = 7.1793 +/- 2.22871 +p4 = 8.25342 +/- 0.805945 (limited) +p5 = 0.084722 +/- 0.0847709 +Warning in : may not use this method +Warning in : may not use this method +Warning in : Replacing existing TH1: compsig (Potential memory leak). +Warning in : Replacing existing TH1: fibreHistNew (Potential memory leak). +Mean: 31.586258 +Sigma: 3.449401 +Signal events: 5000 Event number: 192899 +Signal events: 10000 Event number: 197921 +Signal events: 15000 Event number: 213615 +Signal events: 20000 Event number: 218642 +Signal events: 25000 Event number: 223688 +Signal events: 30000 Event number: 239577 +Fit_Fail_Counts=0 +shift = 13.726669 +**************************************** +Minimizer is Linear +Chi2 = 898.567 +NDf = 173 +p0 = 160.777 +/- 1.28312 +p1 = 0.855968 +/- 0.00363899 + +**************************************** +Minimizer is Linear +Chi2 = 4.52789e+09 +NDf = 61732 +p0 = -7.0617 +/- 1.49174 +p1 = 0.725291 +/- 0.00440548 +File name: PiN_run112.root + +center channel: 31 +Event: 10000 / 189267 +Event: 20000 / 189267 +Event: 30000 / 189267 +Event: 40000 / 189267 +Event: 50000 / 189267 +Event: 60000 / 189267 +Event: 70000 / 189267 +Event: 80000 / 189267 +Event: 90000 / 189267 +Event: 100000 / 189267 +Event: 110000 / 189267 +Event: 120000 / 189267 +Event: 130000 / 189267 +Event: 140000 / 189267 +Event: 150000 / 189267 +Event: 160000 / 189267 +Event: 170000 / 189267 +Event: 180000 / 189267 + FCN=127.826 FROM MIGRAD STATUS=CONVERGED 68 CALLS 69 TOTAL + EDM=3.08703e-08 STRATEGY= 1 ERROR MATRIX ACCURATE + EXT PARAMETER STEP FIRST + NO. NAME VALUE ERROR SIZE DERIVATIVE + 1 Constant 2.80043e+02 5.77143e+00 2.56029e-02 6.40079e-07 + 2 Mean 3.18111e+01 8.73155e-02 4.80070e-04 1.49981e-03 + 3 Sigma 5.23752e+00 6.49763e-02 1.68614e-05 -5.04864e-02 +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +HighestBin: 182249 + +**************************************** +Minimizer is Minuit / Migrad +Chi2 = 5.21846 +NDf = 58 +Edm = 8.99816e-08 +NCalls = 737 +p0 = 45.794 +/- 2.1125 +p1 = 30.5945 +/- 0.0137733 (limited) +p2 = 4.6851 +/- 0.0765749 (limited) +p3 = 7.06416 +/- 2.10671 +p4 = 8.3399 +/- 0.806285 (limited) +p5 = -0.0693997 +/- 0.0853804 + +**************************************** +Minimizer is Minuit / Migrad +Chi2 = 5.21996 +NDf = 58 +Edm = 2.1991e-07 +NCalls = 744 +p0 = 45.7941 +/- 2.11315 +p1 = 30.5944 +/- 0.0137753 (limited) +p2 = 4.68509 +/- 0.0765962 (limited) +p3 = 7.06426 +/- 2.10736 +p4 = 8.3399 +/- 0.806531 (limited) +p5 = -0.0694089 +/- 0.0853993 +Warning in : may not use this method +Warning in : may not use this method +Error in : FitConfiguration and Minimizer result are not consistent +Mean: 31.516649 +Sigma: 2.248868 +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Signal events: 5000 Event number: 136607 +Signal events: 10000 Event number: 141607 +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Warning in : Replacing existing TH1: compsig (Potential memory leak). +Warning in : Replacing existing TH1: fibreHistNew (Potential memory leak). +Signal events: 15000 Event number: 157461 +Signal events: 20000 Event number: 162461 +Signal events: 25000 Event number: 167461 +Signal events: 30000 Event number: 183115 +Fit_Fail_Counts=0 +shift = 13.709607 +**************************************** +Minimizer is Linear +Chi2 = 638.199 +NDf = 153 +p0 = 155.85 +/- 1.56385 +p1 = 1.05398 +/- 0.00321988 + +**************************************** +Minimizer is Linear +Chi2 = 4.05604e+09 +NDf = 62544 +p0 = -8.68649 +/- 1.39402 +p1 = 0.800229 +/- 0.00275707 +File name: PiN_run113.root + +center channel: 31 +Event: 10000 / 152256 +Event: 20000 / 152256 +Event: 30000 / 152256 +Event: 40000 / 152256 +Event: 50000 / 152256 +Event: 60000 / 152256 +Event: 70000 / 152256 +Event: 80000 / 152256 +Event: 90000 / 152256 +Event: 100000 / 152256 +Event: 110000 / 152256 +Event: 120000 / 152256 +Event: 130000 / 152256 +Event: 140000 / 152256 +Event: 150000 / 152256 + FCN=396.246 FROM MIGRAD STATUS=CONVERGED 80 CALLS 81 TOTAL + EDM=6.12019e-11 STRATEGY= 1 ERROR MATRIX ACCURATE + EXT PARAMETER STEP FIRST + NO. NAME VALUE ERROR SIZE DERIVATIVE + 1 Constant 4.60432e+02 7.80098e+00 5.51766e-02 1.52446e-06 + 2 Mean 3.19410e+01 7.03673e-02 6.84819e-04 9.81061e-05 + 3 Sigma 5.71468e+00 6.64851e-02 2.32128e-05 2.57182e-03 +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +HighestBin: 102362 + +**************************************** +Minimizer is Minuit / Migrad +Chi2 = 38.4579 +NDf = 58 +Edm = 1.25786e-07 +NCalls = 821 +p0 = 126.576 +/- 5.77666 +p1 = 30.5641 +/- 0.0135036 (limited) +p2 = 4.67368 +/- 0.0751027 (limited) +p3 = 19.5609 +/- 5.7638 +p4 = 8.28905 +/- 0.786465 (limited) +p5 = 0.295372 +/- 0.228573 + +**************************************** +Minimizer is Minuit / Migrad +Chi2 = 38.4763 +NDf = 58 +Edm = 2.72157e-07 +NCalls = 798 +p0 = 126.578 +/- 5.77821 +p1 = 30.5641 +/- 0.0135068 (limited) +p2 = 4.6737 +/- 0.0751228 (limited) +p3 = 19.5596 +/- 5.76534 +p4 = 8.28915 +/- 0.786751 (limited) +p5 = 0.295409 +/- 0.228636 +Warning in : may not use this method +Warning in : may not use this method +Warning in : Replacing existing TH1: compsig (Potential memory leak). +Warning in : Replacing existing TH1: fibreHistNew (Potential memory leak). +Mean: 31.561564 +Sigma: 5.596754 +Signal events: 5000 Event number: 97446 +Signal events: 10000 Event number: 102451 +Signal events: 15000 Event number: 118320 +Signal events: 20000 Event number: 123325 +Signal events: 25000 Event number: 128327 +Signal events: 30000 Event number: 144210 +Fit_Fail_Counts=0 +shift = 13.714722 +**************************************** +Minimizer is Linear +Chi2 = 206.287 +NDf = 116 +p0 = 252.901 +/- 3.5444 +p1 = 1.00516 +/- 0.00409155 + +**************************************** +Minimizer is Linear +Chi2 = 3.69344e+09 +NDf = 62002 +p0 = 0.331617 +/- 1.34134 +p1 = 0.927739 +/- 0.0015895 +File name: PiN_run114.root + +center channel: 31 +Event: 10000 / 172427 +Event: 20000 / 172427 +Event: 30000 / 172427 +Event: 40000 / 172427 +Event: 50000 / 172427 +Event: 60000 / 172427 +Event: 70000 / 172427 +Event: 80000 / 172427 +Event: 90000 / 172427 +Event: 100000 / 172427 +Event: 110000 / 172427 +Event: 120000 / 172427 +Event: 130000 / 172427 +Event: 140000 / 172427 +Event: 150000 / 172427 +Event: 160000 / 172427 +Event: 170000 / 172427 + FCN=153.253 FROM MIGRAD STATUS=CONVERGED 59 CALLS 60 TOTAL + EDM=2.61673e-08 STRATEGY= 1 ERROR MATRIX ACCURATE + EXT PARAMETER STEP FIRST + NO. NAME VALUE ERROR SIZE DERIVATIVE + 1 Constant 7.51443e+02 9.73441e+00 4.55498e-02 1.33011e-05 + 2 Mean 3.18999e+01 5.31305e-02 3.22180e-04 -1.66269e-03 + 3 Sigma 5.31369e+00 4.37982e-02 1.32934e-05 -3.60481e-02 +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +HighestBin: 117714 + +**************************************** +Minimizer is Minuit / Migrad +Chi2 = 123.264 +NDf = 58 +Edm = 4.33908e-07 +NCalls = 843 +p0 = 221.198 +/- 10.1307 +p1 = 30.6239 +/- 0.0138448 (limited) +p2 = 4.66628 +/- 0.0760495 (limited) +p3 = 33.7746 +/- 10.1052 +p4 = 8.31701 +/- 0.810958 (limited) +p5 = 0.6933 +/- 0.411521 + +**************************************** +Minimizer is Minuit / Migrad +Chi2 = 123.326 +NDf = 58 +Edm = 2.77117e-07 +NCalls = 816 +p0 = 221.2 +/- 10.1307 +p1 = 30.6239 +/- 0.0138483 (limited) +p2 = 4.6663 +/- 0.076051 (limited) +p3 = 33.7725 +/- 10.1052 +p4 = 8.31706 +/- 0.811021 (limited) +p5 = 0.69338 +/- 0.411593 +Warning in : may not use this method +Warning in : may not use this method +Warning in : Replacing existing TH1: compsig (Potential memory leak). +Warning in : Replacing existing TH1: fibreHistNew (Potential memory leak). +Mean: 31.639776 +Sigma: 5.681947 +Signal events: 5000 Event number: 115519 +Signal events: 10000 Event number: 120519 +Signal events: 15000 Event number: 136365 +Signal events: 20000 Event number: 141365 +Signal events: 25000 Event number: 146365 +Signal events: 30000 Event number: 162183 +Fit_Fail_Counts=0 +shift = 13.768704 +**************************************** +Minimizer is Linear +Chi2 = 6297.05 +NDf = 168 +p0 = 351.227 +/- 3.10039 +p1 = 1.02606 +/- 0.00210011 + +**************************************** +Minimizer is Linear +Chi2 = 3.28582e+09 +NDf = 61770 +p0 = 2.24009 +/- 1.27181 +p1 = 0.976136 +/- 0.000943867 +File name: PiN_run115.root + +center channel: 31 +Event: 10000 / 153107 +Event: 20000 / 153107 +Event: 30000 / 153107 +Event: 40000 / 153107 +Event: 50000 / 153107 +Event: 60000 / 153107 +Event: 70000 / 153107 +Event: 80000 / 153107 +Event: 90000 / 153107 +Event: 100000 / 153107 +Event: 110000 / 153107 +Event: 120000 / 153107 +Event: 130000 / 153107 +Event: 140000 / 153107 +Event: 150000 / 153107 + FCN=254.024 FROM MIGRAD STATUS=CONVERGED 66 CALLS 67 TOTAL + EDM=2.91957e-10 STRATEGY= 1 ERROR MATRIX ACCURATE + EXT PARAMETER STEP FIRST + NO. NAME VALUE ERROR SIZE DERIVATIVE + 1 Constant 9.73008e+02 1.11709e+01 6.60783e-02 -4.09831e-08 + 2 Mean 3.20787e+01 4.70984e-02 3.67245e-04 4.03530e-04 + 3 Sigma 5.40563e+00 4.04565e-02 1.38562e-05 6.14706e-03 +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +HighestBin: 90089 + +**************************************** +Minimizer is Minuit / Migrad +Chi2 = 48.946 +NDf = 58 +Edm = 4.58303e-08 +NCalls = 827 +p0 = 136.929 +/- 6.59445 +p1 = 30.6651 +/- 0.0140541 (limited) +p2 = 4.66651 +/- 0.0788777 (limited) +p3 = 21.4387 +/- 6.5807 +p4 = 8.26596 +/- 0.814291 (limited) +p5 = 0.40016 +/- 0.257431 + +**************************************** +Minimizer is Minuit / Migrad +Chi2 = 48.958 +NDf = 58 +Edm = 9.78845e-08 +NCalls = 786 +p0 = 136.929 +/- 6.69562 +p1 = 30.6651 +/- 0.0140691 (limited) +p2 = 4.66651 +/- 0.0799593 (limited) +p3 = 21.438 +/- 6.67756 +p4 = 8.266 +/- 0.811321 (limited) +p5 = 0.400216 +/- 0.237224 +Warning in : may not use this method +Warning in : may not use this method +Error in : FitConfiguration and Minimizer result are not consistent +Mean: 31.698447 +Sigma: 5.925820 +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Warning in : Replacing existing TH1: compsig (Potential memory leak). +Warning in : Replacing existing TH1: fibreHistNew (Potential memory leak). +Signal events: 5000 Event number: 94054 +Signal events: 10000 Event number: 99054 +Signal events: 15000 Event number: 114694 +Signal events: 20000 Event number: 119694 +Signal events: 25000 Event number: 124694 +Signal events: 30000 Event number: 140364 +Fit_Fail_Counts=0 +shift = 13.803022 +**************************************** +Minimizer is Linear +Chi2 = 274.148 +NDf = 187 +p0 = 277.199 +/- 4.68664 +p1 = 1.11919 +/- 0.00274236 + +**************************************** +Minimizer is Linear +Chi2 = 3.91414e+09 +NDf = 62590 +p0 = 6.40744 +/- 1.36617 +p1 = 0.983238 +/- 0.000808953 +File name: PiN_run116.root + +center channel: 31 +Event: 10000 / 156352 +Event: 20000 / 156352 +Event: 30000 / 156352 +Event: 40000 / 156352 +Event: 50000 / 156352 +Event: 60000 / 156352 +Event: 70000 / 156352 +Event: 80000 / 156352 +Event: 90000 / 156352 +Event: 100000 / 156352 +Event: 110000 / 156352 +Event: 120000 / 156352 +Event: 130000 / 156352 +Event: 140000 / 156352 +Event: 150000 / 156352 + FCN=290.462 FROM MIGRAD STATUS=CONVERGED 68 CALLS 69 TOTAL + EDM=1.39181e-12 STRATEGY= 1 ERROR MATRIX ACCURATE + EXT PARAMETER STEP FIRST + NO. NAME VALUE ERROR SIZE DERIVATIVE + 1 Constant 1.75412e+03 1.45830e+01 9.31617e-02 6.10006e-09 + 2 Mean 3.20799e+01 3.57041e-02 2.97575e-04 4.41624e-05 + 3 Sigma 5.60292e+00 2.99196e-02 1.09622e-05 3.30828e-04 +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +HighestBin: 120385 + +**************************************** +Minimizer is Minuit / Migrad +Chi2 = 135.896 +NDf = 58 +Edm = 1.39892e-06 +NCalls = 834 +p0 = 223.273 +/- 11.0174 +p1 = 30.7358 +/- 0.0143396 (limited) +p2 = 4.65686 +/- 0.0806056 (limited) +p3 = 35.1423 +/- 10.9964 +p4 = 8.24525 +/- 0.826672 (limited) +p5 = 0.651843 +/- 0.427265 + +**************************************** +Minimizer is Minuit / Migrad +Chi2 = 135.93 +NDf = 58 +Edm = 2.01858e-08 +NCalls = 780 +p0 = 223.277 +/- 10.8638 +p1 = 30.7358 +/- 0.0142469 (limited) +p2 = 4.6569 +/- 0.080219 (limited) +p3 = 35.138 +/- 10.8534 +p4 = 8.24542 +/- 0.812581 (limited) +p5 = 0.651969 +/- 0.406285 +Warning in : may not use this method +Warning in : may not use this method +Warning in : Replacing existing TH1: compsig (Potential memory leak). +Warning in : Replacing existing TH1: fibreHistNew (Potential memory leak). +Mean: 31.768536 +Sigma: 5.904808 +Signal events: 5000 Event number: 100366 +Signal events: 10000 Event number: 105366 +Signal events: 15000 Event number: 121217 +Signal events: 20000 Event number: 126217 +Signal events: 25000 Event number: 131217 +Signal events: 30000 Event number: 147070 +Fit_Fail_Counts=0 +shift = 13.868215 +**************************************** +Minimizer is Linear +Chi2 = 479.887 +NDf = 187 +p0 = 381.934 +/- 6.68269 +p1 = 1.12231 +/- 0.00259602 + +**************************************** +Minimizer is Linear +Chi2 = 5.79667e+09 +NDf = 61780 +p0 = 14.6302 +/- 1.68129 +p1 = 0.982506 +/- 0.000662121 +File name: PiN_run117.root + +center channel: 31 +Event: 10000 / 138601 +Event: 20000 / 138601 +Event: 30000 / 138601 +Event: 40000 / 138601 +Event: 50000 / 138601 +Event: 60000 / 138601 +Event: 70000 / 138601 +Event: 80000 / 138601 +Event: 90000 / 138601 +Event: 100000 / 138601 +Event: 110000 / 138601 +Event: 120000 / 138601 +Event: 130000 / 138601 + FCN=814.618 FROM MIGRAD STATUS=CONVERGED 65 CALLS 66 TOTAL + EDM=9.622e-08 STRATEGY= 1 ERROR MATRIX ACCURATE + EXT PARAMETER STEP FIRST + NO. NAME VALUE ERROR SIZE DERIVATIVE + 1 Constant 3.49163e+03 2.06352e+01 2.19414e-01 -2.58626e-05 + 2 Mean 3.25417e+01 2.53560e-02 3.53570e-04 5.80107e-03 + 3 Sigma 5.62651e+00 2.15100e-02 1.28538e-05 -2.27089e-01 +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +HighestBin: 95730 + +**************************************** +Minimizer is Minuit / Migrad +Chi2 = 370.357 +NDf = 58 +Edm = 1.99514e-07 +NCalls = 823 +p0 = 384.067 +/- 16.8448 +p1 = 30.6682 +/- 0.0137623 (limited) +p2 = 4.67518 +/- 0.0734513 (limited) +p3 = 55.844 +/- 16.7406 +p4 = 8.37452 +/- 0.836528 (limited) +p5 = 0.999648 +/- 0.696592 + +**************************************** +Minimizer is Minuit / Migrad +Chi2 = 370.482 +NDf = 58 +Edm = 2.28436e-08 +NCalls = 907 +p0 = 384.072 +/- 17.1967 +p1 = 30.6682 +/- 0.0139012 (limited) +p2 = 4.6752 +/- 0.0752452 (limited) +p3 = 55.8397 +/- 17.1436 +p4 = 8.3747 +/- 0.849065 (limited) +p5 = 0.999483 +/- 0.721795 +Warning in : may not use this method +Warning in : may not use this method +Warning in : Replacing existing TH1: compsig (Potential memory leak). +Warning in : Replacing existing TH1: fibreHistNew (Potential memory leak). +Mean: 31.691961 +Sigma: 5.831812 +Signal events: 5000 Event number: 75520 +Signal events: 10000 Event number: 80520 +Signal events: 15000 Event number: 96166 +Signal events: 20000 Event number: 101166 +Signal events: 25000 Event number: 106166 +Signal events: 30000 Event number: 121819 +Fit_Fail_Counts=0 +shift = 13.813483 +**************************************** +Minimizer is Linear +Chi2 = 2331.11 +NDf = 170 +p0 = 280.554 +/- 6.75999 +p1 = 1.18169 +/- 0.00192274 + +**************************************** +Minimizer is Linear +Chi2 = 8.49187e+09 +NDf = 63032 +p0 = 20.3071 +/- 1.99814 +p1 = 0.981953 +/- 0.000592392 +File name: PiN_run118.root + +center channel: 31 +Event: 10000 / 186637 +Event: 20000 / 186637 +Event: 30000 / 186637 +Event: 40000 / 186637 +Event: 50000 / 186637 +Event: 60000 / 186637 +Event: 70000 / 186637 +Event: 80000 / 186637 +Event: 90000 / 186637 +Event: 100000 / 186637 +Event: 110000 / 186637 +Event: 120000 / 186637 +Event: 130000 / 186637 +Event: 140000 / 186637 +Event: 150000 / 186637 +Event: 160000 / 186637 +Event: 170000 / 186637 +Event: 180000 / 186637 + FCN=834.944 FROM MIGRAD STATUS=CONVERGED 65 CALLS 66 TOTAL + EDM=1.69368e-07 STRATEGY= 1 ERROR MATRIX ACCURATE + EXT PARAMETER STEP FIRST + NO. NAME VALUE ERROR SIZE DERIVATIVE + 1 Constant 3.44777e+03 2.03407e+01 2.18691e-01 -3.42613e-05 + 2 Mean 3.22112e+01 2.57798e-02 3.63580e-04 1.89880e-03 + 3 Sigma 5.73200e+00 2.19126e-02 1.29825e-05 -1.82130e-01 +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +HighestBin: 146209 + +**************************************** +Minimizer is Minuit / Migrad +Chi2 = 1885.28 +NDf = 58 +Edm = 1.07015e-08 +NCalls = 956 +p0 = 831.92 +/- 40.9846 +p1 = 30.7196 +/- 0.0144359 (limited) +p2 = 4.69039 +/- 0.0810892 (limited) +p3 = 126.031 +/- 40.8813 +p4 = 8.31302 +/- 0.868809 (limited) +p5 = 2.2163 +/- 1.61627 + +**************************************** +Minimizer is Minuit / Migrad +Chi2 = 1886.16 +NDf = 58 +Edm = 1.56492e-07 +NCalls = 848 +p0 = 831.94 +/- 40.9838 +p1 = 30.7195 +/- 0.0144393 (limited) +p2 = 4.69043 +/- 0.0810927 (limited) +p3 = 126.012 +/- 40.8804 +p4 = 8.31335 +/- 0.869022 (limited) +p5 = 2.21605 +/- 1.61668 +Warning in : may not use this method +Warning in : may not use this method +Warning in : Replacing existing TH1: compsig (Potential memory leak). +Warning in : Replacing existing TH1: fibreHistNew (Potential memory leak). +Mean: 31.752472 +Sigma: 5.986241 +Signal events: 5000 Event number: 126158 +Signal events: 10000 Event number: 131158 +Signal events: 15000 Event number: 147039 +Signal events: 20000 Event number: 152039 +Signal events: 25000 Event number: 157039 +Signal events: 30000 Event number: 172837 +Fit_Fail_Counts=0 +shift = 13.859838 +**************************************** +Minimizer is Linear +Chi2 = 387.019 +NDf = 153 +p0 = 800.463 +/- 13.7041 +p1 = 1.09568 +/- 0.00257261 + +**************************************** +Minimizer is Linear +Chi2 = 1.64866e+10 +NDf = 61820 +p0 = 35.9693 +/- 2.84684 +p1 = 0.971754 +/- 0.000563474 +File name: PiN_run119.root + +center channel: 31 +Event: 10000 / 145575 +Event: 20000 / 145575 +Event: 30000 / 145575 +Event: 40000 / 145575 +Event: 50000 / 145575 +Event: 60000 / 145575 +Event: 70000 / 145575 +Event: 80000 / 145575 +Event: 90000 / 145575 +Event: 100000 / 145575 +Event: 110000 / 145575 +Event: 120000 / 145575 +Event: 130000 / 145575 +Event: 140000 / 145575 + FCN=779.119 FROM MIGRAD STATUS=CONVERGED 67 CALLS 68 TOTAL + EDM=1.21262e-08 STRATEGY= 1 ERROR MATRIX ACCURATE + EXT PARAMETER STEP FIRST + NO. NAME VALUE ERROR SIZE DERIVATIVE + 1 Constant 4.17794e+03 2.33047e+01 2.41018e-01 -6.32337e-06 + 2 Mean 3.17301e+01 2.25785e-02 3.07866e-04 -3.80629e-04 + 3 Sigma 5.33667e+00 1.94020e-02 1.21206e-05 1.04338e-02 +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +Warning in : may not use this method +HighestBin: 139660 + +**************************************** +Minimizer is Minuit / Migrad +Chi2 = 1109 +NDf = 58 +Edm = 2.90046e-07 +NCalls = 561 +p0 = 23.0338 +/- 4.08424 +p1 = 30.6815 +/- 0.0175388 (limited) +p2 = 16.4618 +/- 4.30951 (limited) +p3 = 585.049 +/- 3.70159 +p4 = 5 +/- 0.00116939 (limited) +p5 = -3.94444 +/- 5.23817 + +**************************************** +Minimizer is Minuit / Migrad +Chi2 = 737.262 +NDf = 58 +Edm = 7.92056e-09 +NCalls = 924 +p0 = 529.603 +/- 25.7549 +p1 = 30.6802 +/- 0.0142514 (limited) +p2 = 4.71695 +/- 0.0802938 (limited) +p3 = 78.1784 +/- 25.6796 +p4 = 8.35579 +/- 0.885263 (limited) +p5 = 1.27954 +/- 1.02126 +Warning in : may not use this method +Warning in : may not use this method +Error in : FitConfiguration and Minimizer result are not consistent +Mean: 31.710661 +Sigma: 5.926541 +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Signal events: 5000 Event number: 92299 +Signal events: 10000 Event number: 97299 +Signal events: 15000 Event number: 112944 +Signal events: 20000 Event number: 117944 +Signal events: 25000 Event number: 122944 +Signal events: 30000 Event number: 138581 +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +Error in : FitConfiguration and Minimizer result are not consistent +Number of free parameters from FitConfig = 3 +Number of free parameters from Minimizer = 2 +terminate called after throwing an instance of 'std::bad_alloc' + what(): std::bad_alloc diff --git a/Scripts_20161126/beamenergyfile.txt b/Scripts_20161126/beamenergyfile.txt new file mode 100644 index 0000000..605b65e --- /dev/null +++ b/Scripts_20161126/beamenergyfile.txt @@ -0,0 +1,99 @@ +12.6088 26.0593 0.0311315 +10.5936 16.5399 0.0280216 +9.36031 13.3199 0.0280258 +8.51336 11.6258 0.0235132 +7.88605 10.5871 0.0209773 +7.39682 9.87477 0.0194038 +7.00082 9.33725 0.0164715 +6.67084 8.89845 0.0160286 +6.39059 8.54168 0.0127532 +6.14881 8.25087 0.0139307 +5.93691 7.99531 0.0138664 +5.74999 7.76564 0.01282 +5.58275 7.55637 0.0129529 +5.43216 7.36875 0.0128454 +5.29477 7.19309 0.0111398 +5.16875 7.01846 0.0103578 +5.05214 6.84817 0.00969629 +4.94396 6.70325 0.00972554 +4.84371 6.57749 0.00964673 +4.7504 6.463 0.00954754 +4.62797 6.30692 0.00897132 +4.51492 6.15197 0.00875604 +4.41193 6.01346 0.00877936 +4.31778 5.88548 0.00877201 +4.23108 5.77851 0.00868174 +4.15089 5.68864 0.00874538 +40.9872 47.8865 0.0909095 +36.5311 43.6125 0.081117 +33.3966 40.5676 0.0744755 +31.0354 38.0954 0.0699413 +29.1728 36.0233 0.0605375 +27.6535 34.2926 0.0635908 +26.4152 33.1498 0.0592109 +25.2997 32.039 0.0542048 +24.2755 30.8067 0.0465891 +23.5412 29.8613 0.0521792 +22.8107 28.8944 0.0484988 +22.1585 28.2189 0.0440433 +21.5696 27.5259 0.0411151 +21.0355 26.9188 0.0380742 +20.5468 26.3472 0.0435907 +20.099 25.7936 0.0405777 +19.6851 25.2649 0.0385183 +19.3016 24.7551 0.0368334 +18.9455 24.1842 0.0345775 +18.4699 23.6415 0.0312687 +18.0231 23.1263 0.0307455 +17.6151 22.6917 0.0302979 +17.6151 22.6984 0.0281706 +17.2409 22.3378 0.0337156 +16.8956 21.9588 0.032412 +16.5761 21.5765 0.0302888 +281.17 198.344 0.335555 +238.032 180.768 0.301257 +212.434 169.515 0.286144 +194.949 160.897 0.256141 +181.707 154.209 0.247799 +171.379 148.891 0.233322 +163.143 144.917 0.216234 +155.987 140.949 0.230964 +150.13 137.817 0.230242 +145.288 135.186 0.226504 +140.907 132.866 0.232584 +136.922 130.56 0.220793 +133.574 128.654 0.211995 +130.481 126.75 0.205258 +127.616 124.836 0.203743 +124.954 123.514 0.210293 +122.474 121.916 0.201321 +120.362 120.997 0.201537 +118.373 119.345 0.187426 +116.315 118.212 0.204463 +113.872 116.875 0.214247 +111.453 115.195 0.19249 +109.36 113.951 0.192839 +107.408 112.875 0.18453 +105.71 112.05 0.194789 +103.993 110.82 0.207279 +444.422 284.831 0.359221 +377.991 259.142 0.418472 +337.641 242.55 0.443748 +310.049 230.094 0.424199 +289.655 220.92 0.40002 +273.879 214.151 0.376549 +261.017 208.541 0.370049 +250.406 204.316 0.404037 +241.353 200.131 0.374179 +233.587 196.186 0.42935 +226.809 193.373 0.408938 +220.824 190.544 0.416405 +215.458 187.993 0.423841 +210.691 185.902 0.482707 +206.301 184.085 0.440831 +202.283 182.535 0.452754 +198.535 180.75 0.453244 +195.17 178.804 0.456629 +191.994 177.244 0.500253 +189.171 175.39 0.506822 +185.146 174.151 0.523461 diff --git a/Scripts_20161126/beamenergyfile_iccorr.txt b/Scripts_20161126/beamenergyfile_iccorr.txt new file mode 100644 index 0000000..6248dde --- /dev/null +++ b/Scripts_20161126/beamenergyfile_iccorr.txt @@ -0,0 +1,99 @@ +12.6088 128.959 20.7284 +10.5936 95.4837 9.24954 +9.36031 87.0192 7.38739 +8.51336 84.7314 17.6166 +7.88605 82.2372 6.05719 +7.39682 81.7527 5.60083 +7.00082 81.7537 5.7829 +6.67084 81.7976 5.0973 +6.39059 82.1433 7.17221 +6.14881 82.407 7.06969 +5.93691 82.947 9.91634 +5.74999 82.9891 7.3586 +5.58275 83.5301 11.9167 +5.43216 83.2124 6.02971 +5.29477 83.5201 7.35278 +5.16875 83.491 7.05157 +5.05214 83.3136 6.2484 +4.94396 83.3912 7.31212 +4.84371 83.62 8.73437 +4.7504 83.6175 6.73136 +4.62797 83.8222 6.32313 +4.51492 83.8654 8.03869 +4.41193 83.842 7.62379 +4.31778 83.8833 7.30949 +4.23108 84.0233 6.93167 +4.15089 84.5444 10.1888 +40.9872 71.8797 10.3145 +36.5311 73.4023 9.68684 +33.3966 74.7424 9.76108 +31.0354 75.5445 10.1754 +29.1728 76.0433 9.95471 +27.6535 76.5077 12.0599 +26.4152 77.3781 11.382 +25.2997 78.2041 12.1852 +24.2755 78.1433 9.59002 +23.5412 78.2363 12.2811 +22.8107 78.0838 11.1716 +22.1585 78.4915 10.5306 +21.5696 78.7347 10.5039 +21.0355 78.7987 8.80317 +20.5468 78.9939 10.7492 +20.099 79.0074 9.5043 +19.6851 79.0292 9.66389 +19.3016 79.1502 11.1013 +18.9455 78.6345 9.37855 +18.4699 78.7251 7.76328 +18.0231 79.2258 10.55 +17.6151 79.4411 9.6731 +17.6151 79.298 7.72948 +17.2409 79.634 9.09783 +16.8956 80.1616 11.3982 +16.5761 80.4596 13.4887 +281.17 43.5502 8.43378 +238.032 46.7265 6.58714 +212.434 49.0529 5.91582 +194.949 50.8916 7.01233 +181.707 52.3817 7.46123 +171.379 53.4289 5.67678 +163.143 54.6147 5.38848 +155.987 55.6315 6.45364 +150.13 56.4673 5.83532 +145.288 57.217 5.56074 +140.907 57.9473 5.6428 +136.922 58.7927 7.79654 +133.574 59.2683 6.09378 +130.481 59.7611 5.97451 +127.616 60.1941 6.15244 +124.954 60.8589 7.68414 +122.474 61.193 6.04012 +120.362 61.7457 5.64887 +118.373 61.9615 5.42058 +116.315 62.5231 6.89418 +113.872 63.116 7.91986 +111.453 63.4778 5.41418 +109.36 64.0516 6.06767 +107.408 64.5941 5.88544 +105.71 65.1075 5.32293 +103.993 65.7429 9.06717 +444.422 39.4118 4.00649 +377.991 42.1602 5.09433 +337.641 44.2701 6.54743 +310.049 45.7771 6.96966 +289.655 46.9075 6.16233 +273.879 48.1554 6.73949 +261.017 49.275 7.38948 +250.406 50.288 8.59302 +241.353 51.1851 8.56987 +233.587 51.9352 10.5849 +226.809 52.6029 9.96688 +220.824 53.1174 9.47958 +215.458 54.0711 11.9985 +210.691 54.3844 12.1851 +206.301 55.1113 11.7491 +202.283 55.6644 11.8681 +198.535 56.3129 12.9879 +195.17 56.731 13.2111 +191.994 56.999 14.1807 +189.171 57.0587 13.4349 +185.146 58.2794 16.4976 diff --git a/Scripts_20161126/beamenergyfile_iccorr_int_c.txt b/Scripts_20161126/beamenergyfile_iccorr_int_c.txt new file mode 100644 index 0000000..7a5190c --- /dev/null +++ b/Scripts_20161126/beamenergyfile_iccorr_int_c.txt @@ -0,0 +1,9 @@ +1.99418 1.34194 0.314482 +2.99221 1.38547 0.223734 +4.99357 1.40155 0.178545 +8.00451 1.40731 0.158963 +9.96037 1.41096 0.161875 +14.9624 1.41761 0.140376 +19.9591 1.41838 0.139773 +29.9598 1.4225 0.136928 +50.0967 1.42816 0.145332 diff --git a/Scripts_20161126/beamenergyfile_iccorr_int_p.txt b/Scripts_20161126/beamenergyfile_iccorr_int_p.txt new file mode 100644 index 0000000..e642d7a --- /dev/null +++ b/Scripts_20161126/beamenergyfile_iccorr_int_p.txt @@ -0,0 +1,10 @@ +77.5122 1.64423 0.364533 +116.351 1.71581 0.271471 +193.951 1.76604 0.283662 +310.193 1.79322 0.190482 +387.817 1.80044 0.156414 +581.737 1.81313 0.143594 +776.317 1.82036 0.145791 +1164.85 1.82878 0.15898 +1948.34 1.83416 0.182862 +3130.55 1.84144 0.298605 diff --git a/Scripts_20161126/beamenergyfile_int_c.txt b/Scripts_20161126/beamenergyfile_int_c.txt new file mode 100644 index 0000000..08b993d --- /dev/null +++ b/Scripts_20161126/beamenergyfile_int_c.txt @@ -0,0 +1,9 @@ +1.99418 209.056 0.432816 +2.99221 321.651 0.558112 +4.99357 538.085 0.941916 +8.00451 863.684 1.44775 +9.96037 1082.22 3.11746 +14.9624 1623.81 3.13547 +19.9591 2169.1 4.29978 +29.9598 3263.4 6.79122 +50.0967 5448.83 9.71554 diff --git a/Scripts_20161126/beamenergyfile_int_p.txt b/Scripts_20161126/beamenergyfile_int_p.txt new file mode 100644 index 0000000..70085ed --- /dev/null +++ b/Scripts_20161126/beamenergyfile_int_p.txt @@ -0,0 +1,10 @@ +77.5122 429.555 0.673582 +116.351 643.733 0.994535 +193.951 1076.4 1.68363 +310.193 1725.65 2.64345 +387.817 2161.59 3.4271 +581.737 3247.54 5.36572 +776.317 4338.32 6.88484 +1164.85 6521.11 9.97276 +1948.34 10910.9 15.779 +3130.55 17522.3 26.0387 diff --git a/Scripts_20161126/beammon.h b/Scripts_20161126/beammon.h new file mode 100644 index 0000000..45dd055 --- /dev/null +++ b/Scripts_20161126/beammon.h @@ -0,0 +1,2170 @@ +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +using namespace std; + +double globalUpperBound = 63; +double globalLowerBound = 1; +double measurementsPerSecond = 3000; +int Fit_Fail_Counts = 0; +int signalScale = 1; +int alignint = 1; +int alignintIc = 1; +double discardUpperThreshold = 0.01; +double discardLowerThreshold = -0.015; + +Double_t fitfunc(Double_t *x, Double_t *par) +{ + Double_t arg1 = 0; + if (par[2] != 0) + arg1 = (x[0] - par[1]) / par[2]; + Double_t fitval1 = par[0] * TMath::Exp(-0.5 * arg1 * arg1); + Double_t arg2 = 0; + if (par[4] != 0) + arg2 = (x[0] - par[1]) / par[4]; + Double_t fitval2 = par[3] * TMath::Exp(-0.5 * arg2 * arg2); + Double_t fitsum = par[5] + fitval1 + fitval2; + return fitsum; +} + +class Beammon +{ + +private: + TTree *data; + TTree *newdata; + TBranch *b_time; + TBranch *b_ic1; + TBranch *b_ic2; + TBranch *b_mw1_focusx; + TBranch *b_mw1_focusy; + TBranch *b_mw2_focusx; + TBranch *b_mw2_focusy; + TBranch *b_mw1_posx; + TBranch *b_mw1_posy; + TBranch *b_mw2_posx; + TBranch *b_mw2_posy; + TBranch *b_channels[64]; + + TBranch *bb_ic1; + TBranch *bb_ic2; + TBranch *bb_mw1_focusx; + TBranch *bb_mw2_focusx; + TBranch *bb_mw1_posx; + TBranch *bb_mw2_posx; + TBranch *b_beamPosX_1; + TBranch *b_beamFocusX_1; + TBranch *b_beamSignal_1; + TBranch *b_beamPosX_2; + TBranch *b_beamFocusX_2; + TBranch *b_beamSignal_2; + TBranch *b_beamOn; + + double beamPosX_1; + double beamFocusX_1; + double beamSignal_1; + double beamPosX_2; + double beamFocusX_2; + double beamSignal_2; + double beamOn; + double sigma_pos = 0.1; + + char *file; + TFile *fileIn; + TFile *fileOut; + + TObjArray objectArray; + + bool isSipm; + bool firstMat; + double channelWidth; + + double shift; + + long nevents; + int nBaselineEvents; + int nPrelimEvents; + int highestChannelBin; + int highestTimeBin; + double beamOnAdcVal; + double referenceIntegral; + double beamOnLevel; + double prelimMean; + double prelimSigma; + double highVal; + double readOutFreq; + int intTime; + double chi2ndf; + double fwhm; + + double mean_ave; + double sigma_ave; + + double signalToParticles = 1; // multiply signal by this amount, so that mean of singal (photodiode) and icChamber distribution are the same + double signalDistScale = 1; // icChamber signal distribution has more entries than signal (photodiode) one, so increase bin content in signal dist. by 1*this factor, to achieve the same integral + + double time; + int startTime; + int stopTime; + int timesteps; + double intSignal; + int beamOnTime; + double baselineIntegral; + + double ic1; + double ic2; + double mw1_focusx; + double mw1_focusy; + double mw2_focusx; + double mw2_focusy; + double mw2_posx; + double mw2_posy; + double mw1_posx; + double mw1_posy; + double icIntegral; + double completeIntegral; + + double ic1_1; + double ic2_1; + double mw1_focusx_1; + double mw2_focusx_1; + double mw2_posx_1; + double mw1_posx_1; + + vector > spillTimes; + + double channels[64]; + double baseline[64]; + double channelErrors[64]; + double current; + + TGraph *gChannelErrors; + TH1D *meanHistOn; + TH1D *widthHistOn; + TH2D *timePosHist; + TH1D *prelimBeam; + TH2D *timeCenters; + TH2D *timeCenters_MWPC; + TH2D *timeWidths; + TH2D *timeWidths_MWPC; + TH1D *signalDist; + TH1D *signalNoiseDist; + TH1D *signalNoiseChannel; + TH2D *simpleView; + TH1D *timeIntSignal; + TH1D *timeIntSignal_MWPC; + TH1D *beamPosHist; + TH1D *beamWidthHist; + TH1D *icSignalDist; + TGraphErrors *beamPosTimeGraph; + TGraphErrors *signalTimeGraph; + TGraphErrors *sigIcScatterGraph; + TGraphErrors *mwPosScatterGraph; + TH2D *sigIcScatterPlot[20]; + TH2D *sigIcScatterPlot_ic2; + TH2D *mwPosScatterPlot[20]; + TH1D *ic1Hist; + TH1D *ic2Hist; + TH1D *signalComp; + TH1D *positionComp; + TH1D *widthComp; + TH1D *mw1_focusxHist; + TH1D *mw1_focusyHist; + TH1D *mw2_focusxHist; + TH1D *mw2_focusyHist; + TH1D *mw1_posxHist; + TH1D *mw1_posyHist; + TH1D *mw2_posxHist; + TH1D *mw2_posyHist; + TH1D *channelSig[64]; + TH1D *chisquareDist; + TH1D *mwPosX; + TH1D *mwFocusX; + TH1D *beamPosX; + TH1D *beamFocusX; + TH1D *sigHist; + TH1D *sigHist_weighted; + TH1D *fibreHist; + TH1D *fibreHist_weighted; + TH1D *mwpcHist; + + TH2D *Center_Signal; + TH2D *Diff_timeCenters; + TH2D *Diff_Signal; + TH2D *Diff_ic1; + TH1D *Diff_hist; + TH2D *deltaSig_time; + TH2D *deltaSig_Sig; + TH1D *SlicesAvg; + TH2D *SignalErrHist; + + void calcBaseline(bool useFirstEvents); + void calcBaselineIntegral(); + void prelimProfile(); + TH1D *AverageHist(int dir, int timeStart = -1, int timeStop = -1); + TH1D *TimeAverage(int timeStart, int timeStop); + TH1D *TimeIntSignal(int timeStart = -1, int timeStop = -1); + bool isAboveThreshold(TH1D *slice); + bool isAboveThreshold(double val); + bool isAboveThreshold(TGraphErrors *slice); + TH1D *calcTimeCenters(int start, int stop); + double calcBeamTime(); + + // Tom Add + +public: + Beammon(); + ~Beammon(); + + void Initialize(const char *dirname, const char *filename, int baselineEvents = 1000, int prelimEvents = 10000, double beamLevel = 0.1, bool firstFibermat = true, double readOutFrequency = 1000., int integrationTime = 100); + TH1D *GetPrelimProfile(); + void ProcessData(); + TH1D *GetChannelAvg(bool beamOn = false); + TH1D *GetChannelSigDist(int channel); + TH1D *GetTimeAvg(); + TH1D *GetTimeAvg(int nSpill); + TH1D *GetTimeAvg(int nSpill, int nMeasurements); + TH2D *GetTimeAvgScatter(); + TH2D *GetTimeAvgScatter(int nSpill, int nMeasurements); + TH1D *GetChannelSlice(int time = -1, int offset = 0); + TH1D *GetChannelSlice2(int time = -1, int offset = 0); + TGraphErrors *GetChannelGraph(int time = -1, int offset = 0); + TH1D *GetChannelGraphHist(int time, int offset); + TH1D *GetTimeSlice(int channel = -1, int startTime = -1, int stopTime = -1, bool beamOn = false); + TCanvas *GetTimeSliceCanvas(int channel = -1); + TCanvas *GetSignalNoiseChannel(int channel = -1); + TH1D *GetSignalOverTime(); + void GetTimeCenters(); + void GetTimeWidths(); + void PrintSpillTimes(); + pair GetSpillTimes(int nSpill); + TH2D *GetSpillCenters(int nSpill); + TH1D *GetSpillSlice(int nSpill); + TH1D *GetSignalDistribution(); + TCanvas *GetSignalDistributionCanvas(); + TH2D *GetSimpleView(); + TH1D *GetBaselineHist(); + TH1D *icSignalComp(); + double GetIntSignal(); + int GetBeamOnTime(); + double GetSignalStd(); + TCanvas *signalOverTime2d(); + TCanvas *FitSnapshot(int offset); + TCanvas *FitAverage(); + TCanvas *PrintBaseline(); + TCanvas *PrintChannelNoise(int channel); + TCanvas *PrintProfile(int offset); + TCanvas *IcFitSlicesY(); + TCanvas *PrintSigIcGraph(); + TH1D *GetMwPosComp(); + void Save(); + void Close(); + + TCanvas *GetSig_e_ic_Hist(); + TCanvas *GetSig_e_ic_Hist_Weighted(); + + int Fit_Fail_Number = 200; + int event_count = 0; +}; + +Beammon::Beammon() {} + +Beammon::~Beammon() {} + +void Beammon::Initialize(const char *dirname, const char *filename, int baselineEvents, int prelimEvents, double beamLevel, bool firstFibermat, double readOutFrequency, int integrationTime) +{ + + signalToParticles = 7937 / 1.443e4; // FOR RUN 26 only + signalDistScale = 1.; //44585./26225;// FOR RUN 26 ONLY + intTime = integrationTime; + readOutFreq = readOutFrequency; + firstMat = firstFibermat; + highestChannelBin = 20; + highestTimeBin = 0; + icIntegral = 0; + completeIntegral = 0; + + TString fn = TString(filename); + TString dn = TString(dirname); + if (fn.Contains("sipm")) + { + channelWidth = 0.25; + isSipm = true; + } + + else + { + channelWidth = 0.8; + isSipm = false; + } + TString inName = dn + "pin/" + fn; + fileIn = new TFile(inName, "UPDATE"); + fileIn->GetObject("t", data); + TString outname = filename; + if (firstMat) + outname.Insert(0, "SAVE_"); + else + outname.Insert(0, "SAVE_mat2_"); + outname.Insert(0, dirname); + data->SetBranchStatus("ch*", 0); + fileOut = new TFile(outname.Data(), "RECREATE"); + newdata = new TTree("newdata", "newdata"); + + data->SetBranchStatus("ch*", 1); + b_time = data->GetBranch("time"); + b_time->SetAddress(&time); + + for (int n = 0; n < 64; n++) + { + baseline[n] = 0.; + char bname[20]; + if (firstMat) + { + sprintf(bname, "ch%02d", n); + b_channels[n] = data->GetBranch(bname); + b_channels[n]->SetAddress(&channels[n]); + } + else + { + sprintf(bname, "ch%d", n + 64); + printf("%s\n", bname); + b_channels[n] = data->GetBranch(bname); + b_channels[n]->SetAddress(&channels[63 - n]); + } + } + + b_ic1 = data->GetBranch("ic1"); + b_ic1->SetAddress(&ic1); + b_ic2 = data->GetBranch("ic2"); + b_ic2->SetAddress(&ic2); + b_mw1_focusx = data->GetBranch("mw1_focusx"); + b_mw1_focusx->SetAddress(&mw1_focusx); + b_mw1_focusy = data->GetBranch("mw1_focusy"); + b_mw1_focusy->SetAddress(&mw1_focusy); + b_mw2_focusx = data->GetBranch("mw2_focusx"); + b_mw2_focusx->SetAddress(&mw2_focusx); + b_mw2_focusy = data->GetBranch("mw2_focusy"); + b_mw2_focusy->SetAddress(&mw2_focusy); + b_mw1_posx = data->GetBranch("mw1_posx"); + b_mw1_posx->SetAddress(&mw1_posx); + b_mw1_posy = data->GetBranch("mw1_posy"); + b_mw1_posy->SetAddress(&mw1_posy); + b_mw2_posx = data->GetBranch("mw2_posx"); + b_mw2_posx->SetAddress(&mw2_posx); + b_mw2_posy = data->GetBranch("mw2_posy"); + b_mw2_posy->SetAddress(&mw2_posy); + + nevents = data->GetEntries(); + startTime = 0; + stopTime = nevents - 1; + + timePosHist = new TH2D("timePosHist", "beam position", 64, 0.5, 64.5, nevents, 0, nevents - 1); //display in seconds (y-axis), but with bins of 100ms + SignalErrHist = new TH2D("SignalErrHist", "SignalErrHist", 64, 0.5, 64.5, 200, 0, -1); + chisquareDist = new TH1D("chiqsuareDist", "chiqsuareDist", 100, -1, -1); + prelimBeam = new TH1D("prelimBeam", "preliminary beam profile", 64, 0.5, 64.5); + beamPosHist = new TH1D("beamPosHist", "mean positions", readOutFreq, 0., 64. * channelWidth); + beamWidthHist = new TH1D("beamWidthHist", "beam width", 500, 0., 50.); + beamPosTimeGraph = new TGraphErrors(nevents); + beamPosTimeGraph->SetName("beamPosTimeGraph"); + signalTimeGraph = new TGraphErrors(nevents); + signalTimeGraph->SetName("signalTimeGraph"); + sigIcScatterGraph = new TGraphErrors(); + mwPosScatterGraph = new TGraphErrors(); + //sigIcScatterPlot = new TH2D("sigIcScatterPlot", "", 100, 0, -1, 100, 0, -1); + signalComp = new TH1D("signalComp", "signalComp", 200., -1., 1.); + positionComp = new TH1D("positionComp", "positionComp", 200., -3., 3.); + widthComp = new TH1D("widthComp", "widthComp", 200., 0., 3.5); + ic1Hist = new TH1D("ic1Hist", "ic1Hist", nevents, 0., nevents - 1); + ic2Hist = new TH1D("ic2Hist", "ic2Hist", nevents, 0., nevents - 1); + sigHist = new TH1D("sigHist", "sigHist", nevents, 0., nevents - 1); + sigHist_weighted = new TH1D("sigHist_weighted", "sigHist_weighted", nevents, 0., nevents - 1); + fibreHist = new TH1D("fibreHist", "fibreHist", nevents, 0., nevents - 1); + fibreHist_weighted = new TH1D("fibreHist_weighted", "fibreHist_weighted", nevents, 0., nevents - 1); + mwpcHist = new TH1D("mwpcHist", "mwpcHist", nevents, 0., nevents - 1); + mw1_focusxHist = new TH1D("mw1_focusxHist", "mw1_focusxHist", nevents, 0, nevents - 1); + mw1_focusyHist = new TH1D("mw1_focusyHist", "mw1_focusyHist", nevents, 0, nevents - 1); + mw2_focusxHist = new TH1D("mw2_focusxHist", "mw2_focusxHist", nevents, 0, nevents - 1); + mw2_focusyHist = new TH1D("mw2_focusyHist", "mw2_focusyHist", nevents, 0, nevents - 1); + mw1_posxHist = new TH1D("mw1_posxHist", "mw1_posxHist", nevents, 0, nevents - 1); + mw1_posyHist = new TH1D("mw1_posyHist", "mw1_posyHist", nevents, 0, nevents - 1); + mw2_posxHist = new TH1D("mw2_posxHist", "mw2_posxHist", nevents, 0, nevents - 1); + mw2_posyHist = new TH1D("mw2_posyHist", "mw2_posyHist", nevents, 0, nevents - 1); + mwPosX = new TH1D("mwPosX", "", 200, 0, 20); + mwFocusX = new TH1D("mwFocusX", "", 200, 2, 3.5); + beamPosX = new TH1D("beamPosX", "", 200, 20, 30); + beamFocusX = new TH1D("beamFocusX", "", 200, 0, 20); + + nBaselineEvents = baselineEvents; + nPrelimEvents = prelimEvents; + + beamOnLevel = beamLevel; + beamOnAdcVal = 0; + beamOnTime = 0; + if (!isSipm) + { + // if (fn.Contains("int1")) + calcBaseline(false); + //else + // calcBaseline(true); + } + prelimProfile(); + calcBaselineIntegral(); + ProcessData(); +} + +void Beammon::Save() +{ + fileIn->Close(); + fileOut->cd(); + for (int i = 0; i < 5; i++){ + PrintProfile(i)->Write(); + PrintProfile(i)->Delete(); + } + FitAverage()->Write(); + FitAverage()->Delete();; + PrintBaseline()->Write(); + PrintBaseline()->Delete();//added + //for(int i=0;i<64;i++) + // PrintChannelNoise(i)->Write(); + GetSignalOverTime()->Write(); + GetSignalOverTime()->Delete(); + for (int i = 0; i < 5; i++){ + GetChannelSlice2(-1, i)->Write(); + GetChannelSlice2(-1, i)->Delete(); + } + //fileIn->Close(); + + GetTimeSliceCanvas(-1)->Write(); + timePosHist->ProjectionX()->Write(); + GetTimeCenters(); + + GetSignalDistributionCanvas()->Write(); + GetSignalDistribution()->Write(); + GetSignalNoiseChannel()->Write(); + chisquareDist->Write(); + sigIcScatterGraph->Write(); + mwPosScatterGraph->Write(); + for (int i = 6; i < 15; i++) + { + sigIcScatterPlot[i]->Write(); + mwPosScatterPlot[i]->Write(); + } + mwPosScatterPlot[11]->Write(); + sigIcScatterPlot[11]->Write(); + mw1_focusxHist->Write(); + mw1_posxHist->Write(); + mwPosX->Write(); + mwFocusX->Write(); + beamPosX->Write(); + beamFocusX->Write(); + TVectorD v(6); + v[0] = GetIntSignal(); + v[1] = GetBeamOnTime(); + v[2] = signalDist->GetStdDev(); + v[3] = icIntegral; + v[4] = completeIntegral; + v[5] = fwhm; + v.Write("beaminfo"); + beamPosTimeGraph->Write(); + signalTimeGraph->Write(); + gChannelErrors->Write(); + ic1Hist->Write(); + ic2Hist->Write(); + sigHist->Write(); + fibreHist->Write(); + mwpcHist->Write(); + fibreHist_weighted->Write(); + sigHist_weighted->Write(); + GetSig_e_ic_Hist()->Write(); + GetSig_e_ic_Hist_Weighted()->Write(); + signalComp->Write(); + GetMwPosComp()->Write(); + widthComp->Write(); + icSignalComp()->Write(); + signalOverTime2d(); + IcFitSlicesY(); + PrintSigIcGraph()->Write(); + + //GetTimeCenters(); + + newdata->AutoSave(); + + Close(); + // v.Delete(); +} + +void Beammon::calcBaseline(bool useFirstEvents) +{ + // use the first/last nBaselineEvents events to calculate the average/baseline + if (!useFirstEvents) + { // last + for (int i = nevents - nBaselineEvents; i < nevents; i++) + { + data->GetEvent(i); + for (int ch = 0; ch < 64; ch++) + { + baseline[ch] += channels[ch] / nBaselineEvents; + } + } + } + else + { + for (int i = 1; i <= nBaselineEvents; i++) + { + data->GetEvent(i); + for (int ch = 0; ch < 64; ch++) + { + baseline[ch] += channels[ch] / nBaselineEvents; + } + } + } +} + +TCanvas *Beammon::PrintBaseline() +{ + TCanvas *c1 = new TCanvas(); + c1->cd(); + TGraphErrors *g = new TGraphErrors(64); + for (int k = 0; k < 64; k++) + { + double stdDev = channelSig[k]->GetStdDev(); + channelErrors[k] = stdDev; + g->SetPoint(k, k, baseline[k]); + g->SetPointError(k, 0., channelErrors[k]); + } + g->SetTitle(""); + g->SetName("baseline"); + g->GetXaxis()->SetTitle("channel"); + TString label; + label.Form("adc counts / %d #mus", intTime); + g->GetYaxis()->SetTitle(label.Data()); + g->Draw("AP"); + c1->SetName("baseline"); + //delete g;//added + return c1; +} + +void Beammon::calcBaselineIntegral() +{ + /*baselineIntegral = 0; + for(int i=1; i <= nBaselineEvents;i++){ + data->GetEvent(i); + double currentIntegral = 0; + for(int ch=0;ch<64;ch++){ + currentIntegral += channels[ch] - baseline[ch]; + } + if(currentIntegral > baselineIntegral) + baselineIntegral = currentIntegral; + } + printf("baseline int: %f \n",baselineIntegral);*/ + + double highVal = 0; + for (int i = 1; i <= nBaselineEvents; i++) + { + data->GetEvent(i); + double val = channels[highestChannelBin] - baseline[highestChannelBin]; + if (val > highVal) + highVal = val; + } + beamOnAdcVal = beamOnLevel * highVal; + int maxNoise = floor(highVal); + for (int j = 0; j < 64; j++) + { + TString name; + name.Form("channelSig%d", j); + channelSig[j] = new TH1D(name.Data(), name.Data(), maxNoise * 2, -maxNoise, maxNoise); + } + + for (int i = 1; i <= nBaselineEvents; i++) + { + data->GetEvent(i); + for (int ch = 0; ch < 64; ch++) + channelSig[ch]->Fill(channels[ch] - baseline[ch]); + } + gChannelErrors = new TGraph(64); + for (int k = 0; k < 64; k++) + { + double stdDev = channelSig[k]->GetStdDev(); + channelErrors[k] = stdDev; + gChannelErrors->SetPoint(k + 1, k + 1, stdDev); + } +} + +void Beammon::prelimProfile() +{ + + highVal = 0; + int histChannel = 0; + double highVal_tmp[64]; + + for (int i = 1; i < nevents - 1000; i += 1) + { //nevents/nPrelimEvents){ + data->GetEvent(i); + for (int ch = 0; ch < 64; ch++) + { + double val = channels[ch] - baseline[ch]; + /* if (val > highVal_tmp[ch]) + { + highVal_tmp[ch] = val; + }*/ + if (isSipm) + histChannel = 64 - ch; + else + histChannel = ch + 1; + prelimBeam->SetBinContent(histChannel, prelimBeam->GetBinContent(histChannel) + val / nPrelimEvents); //nPrelimEvents); + } + } + TF1 *fit = new TF1("fitfunc", "gaus", 1, 64); + fit->SetParameter(1, prelimBeam->GetMean()); + // printf("Mean: %f \n", prelimBeam->GetMean()); + // printf("Sigma: %f \n", prelimBeam->GetStdDev()); + // cout << prelimBeam->GetStdDev() << endl; + + fit->SetParameter(2, prelimBeam->GetStdDev()); + prelimBeam->Fit("fitfunc", "Q"); + prelimMean = fit->GetParameter(1); + prelimSigma = fit->GetParameter(2); + highestChannelBin = floor(prelimMean); + + if (highestChannelBin < 0) + highestChannelBin = 0; + /* + highVal = 0; + + for (int i = 0; i < 64; i++) + { + if ( highVal_tmp[i] > highVal) + { + highVal = highVal_tmp[i]; + } + }*/ + + // beamOnAdcVal = beamOnLevel * highVal; + delete fit; + printf("\ncenter channel: %d \n", highestChannelBin); +} + +void Beammon::ProcessData() +{ + + bool beamOn = false; + bool previousBeamStatus = false; + int lastSpillOn = 0; + int lastSpillOff = 0; + int minSpillTime = 3000; // in ms + int histChannel; + + int highestSigVal = 0; + + for (int i = 1; i < nevents; i++) + { + + if (i % 10000 == 00) + printf("Event: %d / %ld \n", i, nevents); + // cout << "Event: " << i << endl; + data->GetEvent(i); + + double maxSignal = channels[highestChannelBin] - baseline[highestChannelBin]; + /* + for(int j=0;j<64;j++){ + double val = channels[j] - baseline[j]; + if (val > maxSignal) + maxSignal = val; + }*/ + + if (isAboveThreshold(maxSignal) && (i > nBaselineEvents)) + { + beamOn = true; + if ((i - lastSpillOff) > minSpillTime && !previousBeamStatus) + { + if (lastSpillOff != 0) + spillTimes.push_back(make_pair(lastSpillOn, lastSpillOff)); + lastSpillOn = i; + } + } + else + { + beamOn = false; + if (previousBeamStatus) + lastSpillOff = i; + } + previousBeamStatus = beamOn; + + int sigVal = 0; + + for (int j = 0; j < 64; j++) + { + + int chan; + if (isSipm) + { + if (j % 2 == 0) + histChannel = 64 - (j + 1); + else + histChannel = 64 - (j - 1); + } + else + histChannel = j + 1; + + double chVal = channels[j] - baseline[j]; + sigVal += chVal; + timePosHist->SetBinContent(histChannel, i, chVal); + completeIntegral += chVal; + } + if (sigVal > highestSigVal) + { + highestSigVal = sigVal; + highestTimeBin = i; + } + // cout << ic1 << " " << mw1_focusx << " " << mw1_focusy << endl; + // IONISATION CHAMBERS + double chargeToParts = 1. / 3.2886706587037837e-15 * 1e-9 * 312e-6; + if (!(ic1 != ic1)) + ic1Hist->SetBinContent(i, ic1 * chargeToParts); + if (!(ic2 != ic2)) + ic2Hist->SetBinContent(i, ic2 * chargeToParts); + + // MW CHAMBERS + if (!(mw1_focusx != mw1_focusx)) + mw1_focusxHist->SetBinContent(i, mw1_focusx); + mw1_focusyHist->SetBinContent(i, mw1_focusy); + mw2_focusxHist->SetBinContent(i, mw2_focusx); + mw2_focusyHist->SetBinContent(i, mw2_focusy); + + if (!(mw1_posx != mw1_posx)) + mw1_posxHist->SetBinContent(i, mw1_posx); + mw1_posyHist->SetBinContent(i, mw1_posy); + mw2_posxHist->SetBinContent(i, mw2_posx); + mw2_posyHist->SetBinContent(i, mw2_posy); + + if (mw1_posx < 100) + { + mwPosX->Fill(mw1_posx); + mwFocusX->Fill(mw1_focusx); + } + } + spillTimes.push_back(make_pair(lastSpillOn, lastSpillOff)); + + TH1D *tmp = GetChannelSlice(-1); + tmp->Fit("gaus"); + TF1 *fit = tmp->GetFunction("gaus"); + referenceIntegral = fit->GetParameter(0); // this is the constant in front of the gaus!! The real integral is constant*sigma*sqrt(2*pi), but because sigma is the same in one measurement it doesn't matter! + signalDist = new TH1D("signalDist", "signal distribution", 200, 0., referenceIntegral * 2.51 * fit->GetParameter(2)); + signalNoiseDist = new TH1D("signalNoiseDist", "", 200, 0., referenceIntegral * 2.51 * fit->GetParameter(2)); + signalNoiseChannel = new TH1D("signalNoiseChannel", "", 200, 0., tmp->GetMaximum()); + calcBeamTime(); + + printf("HighestBin: %d \n", highestTimeBin); +} + +TH1D *Beammon::GetPrelimProfile() +{ + if (!prelimBeam) + { + printf("WARNING: preliminary profile not yet generated"); + } + return prelimBeam; +} + +TH1D *Beammon::TimeAverage(int timeStart, int timeStop) +{ + if (timeStart == -1) + timeStart = startTime; + if (timeStop == -1) + timeStop = stopTime; + int count = 0; + TH1D *res = new TH1D("timeAverage", "time average", 64, 0.5, 64.5); + TH1D *tmp; + printf("\n\n start: %d, stop: %d \n\n", timeStart, timeStop); + for (int i = timeStart; i <= timeStop; i++) + { + tmp = GetChannelSlice(i, 0); + if (isAboveThreshold(tmp)) + { + res->Add(tmp, 1.); + count++; + } + delete tmp; + } + if (count) + { + for (int n = 1; n <= 64; n++) + { + res->SetBinContent(n, res->GetBinContent(n) / count); + } + return res; + } + else + return 0; +} + +TH1D *Beammon::TimeIntSignal(int timeStart, int timeStop) +{ + if (timeStart == -1) + timeStart = startTime; + if (timeStop == -1) + timeStop = stopTime; + TH1D *res = new TH1D("timeAverage", "time average", 64, 0.5, 64.5); + TH1D *tmp; + for (int i = timeStart; i < timeStop; i++) + { + tmp = GetChannelSlice(i, 0); + if (isAboveThreshold(tmp)) + { + res->Add(tmp, 1.); + beamOnTime++; + } + delete tmp; + } + return res; +} + +TH1D *Beammon::AverageHist(int dir, int timeStart, int timeStop) +{ // dir = 0 => x direction, 1 => y + + TH2D *hist = timePosHist; + + int nbins1, nbins2; + double binStart, binStop; + int firstBin, secondBin; + if (!dir) + { + // Timeaverage + if ((timeStart != -1) && (timeStop != -1)) + { + firstBin = timeStart; //hist->GetYaxis()->FindBin((timeStart-startTime)/readOutFreq); + secondBin = timeStop; //hist->GetYaxis()->FindBin((timeStop-startTime)/readOutFreq); + nbins1 = hist->GetNbinsX(); + nbins2 = secondBin - firstBin; + binStart = hist->GetXaxis()->GetBinCenter(1); + binStop = hist->GetXaxis()->GetBinCenter(nbins1); + } + else + { + nbins1 = hist->GetNbinsX(); + nbins2 = hist->GetNbinsY(); + binStart = hist->GetXaxis()->GetBinCenter(1); + binStop = hist->GetXaxis()->GetBinCenter(nbins1); + firstBin = 1; + secondBin = nbins2; + } + } + else + { + nbins1 = hist->GetNbinsY(); + nbins2 = hist->GetNbinsX(); + binStart = hist->GetYaxis()->GetBinCenter(1); + binStop = hist->GetYaxis()->GetBinCenter(nbins1); + firstBin = 1; + secondBin = hist->GetNbinsX(); + } + + TH1D *retHist = new TH1D("average", "average", nbins1, binStart, binStop); + for (int i = 1; i <= nbins1; i++) + { + int count = 0; + double avg = 0; + + for (int j = firstBin; j <= secondBin; j++) + { + + if (!dir) + { + /*bool beam = beamOnVector[j]; + if(beam==false) + continue; + //else + //printf("TRUE");*/ + avg += hist->GetBinContent(i, j); + } + else + avg += hist->GetBinContent(j, i); + count++; + } + if (count > 0) + avg /= count; + retHist->SetBinContent(i, avg); + } + + return retHist; +} + +TH1D *Beammon::GetTimeAvg() +{ + int n = spillTimes.size(); + TH1D *res = new TH1D("timeAverage", "time average", 64, 0.5, 64.5); + for (int i = 0; i < n; i++) + { + TH1D *tmp = TimeAverage(spillTimes[i].first, spillTimes[i].second); + if (!tmp) + printf("\n\n timeAvgHist is Null! \n\n"); + if (tmp) + res->Add(tmp, 1. / n); + } + res->SetTitle("average beam profile"); + return res; +} + +TH1D *Beammon::GetTimeAvg(int nSpill) +{ + if (nSpill >= spillTimes.size()) + return 0; + TH1D *res = TimeAverage(spillTimes[nSpill].first, spillTimes[nSpill].second); + res->SetTitle("average beam profile"); + return res; +} + +TH1D *Beammon::GetTimeAvg(int nSpill, int nMeasurements) +{ + if (nSpill >= spillTimes.size()) + return 0; + TH1D *res = TimeAverage(spillTimes[nSpill].second - nMeasurements, spillTimes[nSpill].second); + TString title = TString::Format("average beam profile, %d ms, spill %d", nMeasurements, nSpill); + TString name = TString::Format("avg%dmsspill%d", nMeasurements, nSpill); + res->SetTitle(title.Data()); + res->SetName(name.Data()); + return res; +} + +TH2D *Beammon::GetTimeAvgScatter(int nSpill, int nMeasurements) +{ + + int tStart = spillTimes[nSpill].first; + if (nMeasurements == -1) + tStart = spillTimes[nSpill].second - nMeasurements; + + TH2D *res = new TH2D("tavgScatter", "tavgScatter", 64, 0.5, 64.5, 400, 0., highVal); + for (int i = spillTimes[nSpill].first; i < spillTimes[nSpill].second; i++) + { + TH1D *tmp = GetChannelSlice(i, 0); + if (!isAboveThreshold(tmp)) + continue; + for (int bin = 1; bin <= 64; bin++) + { + res->Fill(bin, tmp->GetBinContent(bin)); + } + delete tmp; + } + TString title = TString::Format("beam profile, %d ms, spill %d", nMeasurements, nSpill); + res->SetTitle(title.Data()); + return res; +} + +TH2D *Beammon::GetTimeAvgScatter() +{ + TH2D *res = new TH2D("tavgScatter", "tavgScatter", 64, 0.5, 64.5, 400, 0., highVal); + int n = spillTimes.size(); + for (int i = 0; i < n; i++) + { + res->Add(GetTimeAvgScatter(i, -1), 1. / n); + } + return res; +} + +TH1D *Beammon::GetChannelSigDist(int channel) +{ + + TString sName = TString("signal distribution channel ") + TString(channel); + double maxAmp = 0; + for (int n = 0; n < spillTimes.size(); n++) + { + TH1D *tmp = GetSpillSlice(n); + if (tmp->GetMaximum() > maxAmp) + maxAmp = tmp->GetMaximum(); + delete tmp; + } + TH1D *res = new TH1D(sName.Data(), sName.Data(), 200, 0., maxAmp); + for (int n = 0; n < spillTimes.size(); n++) + { + TH1D *tmp = GetSpillSlice(n); + for (int bin = 1; bin <= tmp->GetNbinsX(); bin++) + { + res->Fill(tmp->GetBinContent(bin)); + //printf("bin: %d, amp: %f \n", bin, tmp->GetBinContent(bin)); + } + delete tmp; + } + return res; +} + +TH1D *Beammon::GetChannelAvg(bool beamOn) +{ + return AverageHist(1, -1, -1); +} + +TH1D *Beammon::GetTimeSlice(int channel, int timeStart, int timeStop, bool beamOn) +{ + + if (timeStart == -1) + timeStart = startTime; + if (timeStop == -1) + timeStop = stopTime; + + int nbins = timeStop - timeStart; + + TH1D *tmp2 = new TH1D("ts", "timeslice", nbins, (timeStart - startTime) / readOutFreq, (timeStop - startTime) / readOutFreq); + + if (channel == -1) + channel = highestChannelBin; + + TH1D *tmp = timePosHist->ProjectionY("", channel, channel); + + int offset = tmp->GetXaxis()->FindBin(timeStart); + for (int bin = 1; bin <= nbins; bin++) + { + tmp2->SetBinContent(bin, tmp->GetBinContent(bin + offset)); + } + TString title = TString::Format("time projection of channel %d", channel); + tmp2->SetTitle(title.Data()); + + return tmp2; +} + +TCanvas *Beammon::GetTimeSliceCanvas(int channel) +{ + + TCanvas *c1 = new TCanvas(); + c1->SetName("timeslice"); + int nbins = stopTime - startTime; + + TH1D *tmp2 = new TH1D("timeslice", "", nbins, 0., (stopTime - startTime) / readOutFreq); + + if (channel == -1) + channel = highestChannelBin; + + TH1D *tmp = timePosHist->ProjectionY("", channel, channel); + + for (int bin = 1; bin <= nbins; bin++) + { + tmp2->SetBinContent(bin, tmp->GetBinContent(bin)); + } + + tmp2->GetXaxis()->SetTitle("times [s]"); + TString label; + label.Form("adc counts / %d #mus", intTime); + tmp2->GetYaxis()->SetTitle(label.Data()); + + tmp2->Draw("P"); + return c1; +} + +TCanvas *Beammon::GetSignalNoiseChannel(int channel) +{ + + TCanvas *c1 = new TCanvas(); + c1->SetName("signalNoiseChannel"); + int nbins = stopTime - startTime; + + if (channel == -1) + channel = highestChannelBin; + + TH1D *tmp = timePosHist->ProjectionY("", channel, channel); + + for (int bin = 1; bin <= nbins; bin++) + { + signalNoiseChannel->Fill(tmp->GetBinContent(bin)); + } + + signalNoiseChannel->GetYaxis()->SetTitle("entries"); + TString label; + label.Form("adc counts / %d #mus", intTime); + signalNoiseChannel->GetXaxis()->SetTitle(label.Data()); + + signalNoiseChannel->Draw(); + return c1; +} + +TH1D *Beammon::GetChannelSlice(int time, int offset) +{ + if (time == -1) + time = highestTimeBin + offset; + //printf("time: %d\n", time); + TH1D *res = timePosHist->ProjectionX("", time, time); //timePosHist->ProjectionX("",timePosHist->GetYaxis()->FindBin(time+offset),timePosHist->GetYaxis()->FindBin(time+offset)); + //res->SetError(channelErrors); + res->SetTitle("single measurement (1ms)"); + res->SetName("Channel_" + (TString)time); + res->Fit("gaus", "Q0"); + double mean = res->GetFunction("gaus")->GetParameter(1); + double sigma = res->GetFunction("gaus")->GetParameter(2); + return res; +} + +TH1D *Beammon::GetChannelSlice2(int time, int offset) +{ + if (time == -1) + time = highestTimeBin + offset; + //printf("time: %d\n", time); + TH1D *res = timePosHist->ProjectionX("", time, time); //timePosHist->ProjectionX("",timePosHist->GetYaxis()->FindBin(time+offset),timePosHist->GetYaxis()->FindBin(time+offset)); + //res->SetError(channelErrors); + res->SetTitle("single measurement (1ms)"); + res->SetName("Channel_" + (TString)time); + res->Fit("gaus", "Q0"); + double mean = res->GetFunction("gaus")->GetParameter(1); + mean_ave += mean; + double sigma = res->GetFunction("gaus")->GetParameter(2); + sigma_ave += sigma; + return res; +} + +TGraphErrors *Beammon::GetChannelGraph(int time, int offset) +{ + if (time == -1) + time = highestTimeBin + offset; + double xErr = 0.8 / sqrt(12); + TH1D *res = timePosHist->ProjectionX("", time, time); + TGraphErrors *graph = new TGraphErrors(64); + for (int ch = 1; ch <= 64; ch++) + { + graph->SetPoint(ch, ch, res->GetBinContent(ch)); + // graph->SetPointError(ch,xErr,channelErrors[ch-1]);//sqrt(channelErrors[ch-1]*channelErrors[ch-1]+res->GetBinContent(ch))); + graph->SetPointError(ch, xErr, channelErrors[ch - 1]); + } + delete res; + return graph; +} + +TH1D *Beammon::GetChannelGraphHist(int time, int offset) +{ + if (time == -1) + time = highestTimeBin + offset; + double xErr = 0.8 / sqrt(12); + TH1D *res = timePosHist->ProjectionX("", time, time); + return res; +} + +TH1D *Beammon::GetSignalOverTime() +{ + TH1D *tmp = timePosHist->ProjectionY("", 1, 64); + tmp->SetTitle("signal over time"); + tmp->SetName("signal over time"); + return tmp; +} + +void Beammon::PrintSpillTimes() +{ + printf("%lu spills recorded: \n", spillTimes.size()); + // cout << spillTimes.size() << "spills recorded: " << endl; + for (int n = 0; n < spillTimes.size(); n++) + printf("%02d: %f - %f \n", n, (spillTimes[n].first - startTime) / readOutFreq, (spillTimes[n].second - startTime) / readOutFreq); +} + +TH1D *Beammon::calcTimeCenters(int start, int stop) +{ + + int tStart = start; + int tStop = stop; + + if (start == -1) + tStart = startTime; + if (stop == -1) + tStop = stopTime; + + int nbins = (tStop - tStart); + double mean = 0; + double sigma = 0; + + double constant; + + + TH1D *res = new TH1D("timeIntSignal_tmp", "time integrated signal", 64, 0.5, 64.5); + TCanvas *tmpcanvas = new TCanvas(); + int offset = tStart; + + TF1 *fit = new TF1("gaus_L", "gaus+[3]", 1, 64); + + TF1 *fit2 = new TF1("gaus_2", "gaus", 1, 64); + fit2->SetParameter(0, 2000); + fit2->SetParameter(1, mean_ave); + fit2->SetParameter(2, sigma_ave); + + for (int bin = tStart; bin <= tStop; bin++) + { + TGraphErrors *tmp = GetChannelGraph(bin, 0); + TH1D *tmp2 = GetChannelGraphHist(bin, 0); + + tmp->Fit("gaus_2", "Q0", "", mean_ave - 3 * sigma_ave, mean_ave + 3 * sigma_ave); + TF1 *func = tmp->GetFunction("gaus_2"); + + if (tmp2->GetMean() * 0.8 > 0) + fibreHist_weighted->SetBinContent(bin + 1, tmp2->GetMean() * 0.8); + else + fibreHist_weighted->SetBinContent(bin + 1, 0); + if (tmp2->GetEntries() > 0) + sigHist_weighted->SetBinContent(bin - 1, tmp2->GetEntries() * signalToParticles); + else + sigHist_weighted->SetBinContent(bin - 1, 0); + + if (func) + { + + if (!isAboveThreshold(tmp)) + continue; + + constant = func->GetParameter(0); + mean = func->GetParameter(1) * channelWidth; + sigma = func->GetParameter(2) * channelWidth; + + if (mean <= 0 || mean > 64) + continue; + + /*if (constant > 1e5 || mean > (mean_ave * channelWidth + 0.2) || mean < (mean_ave * channelWidth - 0.2)) + { + fit->SetParameter(0, 1000); + fit->SetParameter(1, mean_ave); + fit->SetParameter(2, sigma_ave); + fit->SetParameter(3, 0.1); + fit->SetParLimits(0, 100, 2e5); + fit->SetParLimits(1, 1, 64); + fit->SetParLimits(2, 1, 10); + fit->SetParLimits(3, -50, 50); + tmp->Fit("gaus", "Q0", "", mean_ave - 3 * sigma_ave, mean_ave + 3 * sigma_ave); + func = tmp->GetFunction("gaus"); + constant = func->GetParameter(0); + mean = func->GetParameter(1) * channelWidth; + sigma = func->GetParameter(2) * channelWidth; + }*/ + + if (abs(constant) > 1e5) + { + + Fit_Fail_Number = Fit_Fail_Number - 1; + if (Fit_Fail_Number > 0) + { + tmpcanvas->cd(); + tmp->Draw("AP"); + func->Draw("SAME"); + tmpcanvas->Modified(); + tmpcanvas->Write(); + } + continue; + } + + //Fill the error hidto + double erry, tmpx; + bool discard = false; + int nPoint = 0; + for (int chn = 1; chn < 65; chn++) + { + tmp->GetPoint(nPoint, tmpx, erry); + SignalErrHist->Fill((double)tmpx, (erry - func->Eval(tmpx)) / (constant * sigma)); + if ((erry - func->Eval(tmpx)) / (constant * sigma) > discardUpperThreshold || (erry - func->Eval(tmpx)) / (constant * sigma) < discardLowerThreshold) + { + tmp->RemovePoint(nPoint); + nPoint--; + discard = true; + } + nPoint++; + } + + + double signal = sigma * 2.51 * constant * signalToParticles; + + //Fill the new tree + event_count++; + //data->GetEntry(bin); + beamPosX_1 = mean; + beamFocusX_1 = 2.35 * sigma; + beamSignal_1 = signal; + ic1_1 = ic1Hist->GetBinContent(bin - alignintIc); + ic2_1 = ic2Hist->GetBinContent(bin - alignintIc); + mw1_focusx_1 = mw1_focusxHist->GetBinContent(bin - alignint); + mw1_posx_1 = mw1_posxHist->GetBinContent(bin - alignint); + mw2_focusx_1 = mw2_focusxHist->GetBinContent(bin - alignint); + mw2_posx_1 = mw2_posxHist->GetBinContent(bin - alignint); + beamOn = 1; + newdata->Fill(); + if (event_count % 5000 == 0) + { + printf("Signal events: %d ", event_count); + printf("Event number: %d\n", bin); + } + + if (signal < 0 || signal != signal) + continue; + + //Fill the Histograms + beamPosX->Fill(mean); + fibreHist->Fill(bin, mean); + mwpcHist->Fill(bin, mw1_posxHist->GetBinContent(bin - alignint)); + beamFocusX->Fill(2.35 * sigma); + beamPosTimeGraph->SetPoint(bin, bin, mean); + beamPosTimeGraph->SetPointError(bin, 0., func->GetParError(1)); + timeCenters->Fill((bin) / readOutFreq, mean); + timeWidths->Fill((bin) / readOutFreq, sigma * 2.35); + timeCenters_MWPC->Fill((bin) / readOutFreq, mw1_posxHist->GetBinContent(bin - alignint)); + timeWidths_MWPC->Fill((bin) / readOutFreq, mw1_focusxHist->GetBinContent(bin - alignint)); + Diff_timeCenters->Fill((bin) / readOutFreq, mean - mw1_posxHist->GetBinContent(bin - alignint) - shift); + + if (mw1_posxHist->GetBinContent(bin - alignint) < 20) + { + mwPosScatterGraph->SetPoint(mwPosScatterGraph->GetN(), mw1_posxHist->GetBinContent(bin - alignint), mean); + //positionComp->Fill(mean - mw1_posxHist->GetBinContent(bin-4) +111.5415 - 32.02); + for (int i = 0; i < 20; i++) + mwPosScatterPlot[i]->Fill(mw1_posxHist->GetBinContent(bin - i + 10), mean); + } + double sigError = 2.51 * sqrt(sigma * sigma * func->GetParError(0) * func->GetParError(0) + constant * constant * func->GetParError(2) * func->GetParError(2)) * signalToParticles; + if (signal > 1e5 || sigError > signal) + { + //signal = 0; + sigError = 0; + } + if (signal) + { + signalDist->Fill(signal); + if (ic1Hist->GetBinContent(bin - alignintIc)) + { + sigHist->Fill(bin - alignintIc - 1, signal); + signalComp->Fill((signal - ic1Hist->GetBinContent(bin - alignintIc)) / signal); + double x, y, totalSignal = 0, signalError = 0; + for (int k = 0; k < 63; k++) + { + tmp->GetPoint(k, x, y); + signalError += tmp->GetErrorY(k) * tmp->GetErrorY(k); + totalSignal += y * signalToParticles; + } + signalError = sqrt(signalError) * signalToParticles; + sigIcScatterGraph->SetPoint(sigIcScatterGraph->GetN(), ic1Hist->GetBinContent(bin - alignintIc), totalSignal); + sigIcScatterGraph->SetPointError(sigIcScatterGraph->GetN(), 0, signalError); + for (int i = 0; i < 20; i++) + sigIcScatterPlot[i]->Fill(ic1Hist->GetBinContent(bin - i + 10), signal); + Center_Signal->Fill(signal, mean); + // sigIcScatterPlot[14]->Fill(ic1Hist->GetBinContent(bin - 14 + 10), signal); + sigIcScatterPlot_ic2->Fill(ic2Hist->GetBinContent(bin - 14 + 10), signal); + } + } + else + { + //ic1Hist->SetBinContent(bin, 0); + } + + widthComp->Fill(sigma * 2.51 - mw1_focusxHist->GetBinContent(bin - alignint)); + //Center_Signal->Fill(totalSignal, mean); + Diff_hist->Fill(mean - mw1_posxHist->GetBinContent(bin - alignint) - shift); + Diff_Signal->Fill(signal, mean - mw1_posxHist->GetBinContent(bin - alignint) - shift); + Diff_ic1->Fill(ic1Hist->GetBinContent(bin - alignintIc), mean - mw1_posxHist->GetBinContent(bin - alignint) - shift); + + icIntegral += ic1Hist->GetBinContent(bin); + signalTimeGraph->SetPoint(bin, bin, signal); + + signalTimeGraph->SetPointError(bin, 0., sigError); + beamOnTime++; + + double c2 = func->GetChisquare() / func->GetNDF(); + if (c2 < 100) + chisquareDist->Fill(c2); + } + delete func; + delete tmp; + delete tmp2; + } + delete tmpcanvas; + return res; +} + +void Beammon::GetTimeCenters() +{ + + TH1D *tmp_TimeCenter; + double mean_MWPC = mwPosX->GetMean(); + shift = mean_ave * 0.8 / 5 - mwPosX->GetMean(); + double max_ic1 = ic1Hist->GetMaximum(); + + beamOnTime = 0; + int nbins = stopTime - startTime; + mean_ave = prelimBeam->GetMean(); + sigma_ave = prelimBeam->GetStdDev(); + printf("Mean: %f \n", mean_ave); + printf("Sigma: %f \n", sigma_ave); + + timeCenters = new TH2D("timeCenters", "", nbins / 100, 0., (stopTime - startTime) / readOutFreq, 200, (0.8 * mean_ave - 6. * sigma_pos), (0.8 * mean_ave + 6 * sigma_pos)); + timeWidths = new TH2D("timeWidths", "", nbins / 100, 0., (stopTime - startTime) / readOutFreq, 200, 0.4 * sigma_ave * 2.35, 0.95 * sigma_ave * 2.35); + timeIntSignal = new TH1D("timeIntSignal", "time integrated signal", 64, 0.5, 64.5); + timeCenters_MWPC = new TH2D("timeCenters_MWPC", "", nbins / 100, 0., (stopTime - startTime) / readOutFreq, 200, mean_MWPC - 5 * sigma_pos, mean_MWPC + 5 * sigma_pos); + timeWidths_MWPC = new TH2D("timeWidths_MWPC", "", nbins / 100, 0., (stopTime - startTime) / readOutFreq, 200, 1.5, mw1_focusxHist->GetMaximum() * 1.05); + timeIntSignal_MWPC = new TH1D("timeIntSignal_MWPC", "time integrated signal", 64, 0.5, 64.5); + + for (int j = 0; j < 20; j++) + { + TString name; + name.Form("sigIcScatterPlot%d", j); + sigIcScatterPlot[j] = new TH2D(name.Data(), name.Data(), 200, 0, -1, 200, 0, -1); + TString name2; + name2.Form("mwPosScatterPlot%d", j); + mwPosScatterPlot[j] = new TH2D(name2.Data(), name2.Data(), 200, mean_MWPC - 0.1 * sigma_ave, mean_MWPC + 0.1 * sigma_ave, 200, 0.8 * (mean_ave - 0.15 * sigma_ave), 0.8 * (mean_ave + 0.15 * sigma_ave)); + } + sigIcScatterPlot_ic2 = new TH2D("sigIcScatterPlot_ic2", "sigIcScatterPlot_ic2", 200, 0, -1, 200, 0, -1); + + Center_Signal = new TH2D("Center_Signal", "", 200, 0., max_ic1 - 5000, 200, (0.8 * mean_ave - 5 * sigma_pos), (0.8 * mean_ave + 5 * sigma_pos)); + Diff_timeCenters = new TH2D("Diff_time", "", nbins / 100, 0., (stopTime - startTime) / readOutFreq, 200, -6 * sigma_pos, 6 * sigma_pos); + Diff_hist = new TH1D("Diff_hist", "l", 200, -2, 2.); + Diff_Signal = new TH2D("Diff_Signal", "", 200, 0., max_ic1 - 5000, 200, -6 * sigma_pos, 6 * sigma_pos); + Diff_ic1 = new TH2D("Diff_ic1", "", 200, 0., max_ic1 - 5000, 200, -6 * sigma_pos, 6 * sigma_pos); + + b_beamPosX_1 = newdata->Branch("beamPosX_1", &beamPosX_1); + b_beamFocusX_1 = newdata->Branch("beamFocusX_1", &beamFocusX_1); + b_beamSignal_1 = newdata->Branch("beamSignal_1", &beamSignal_1); + bb_ic1 = newdata->Branch("ic1_1", &ic1_1); + bb_ic2 = newdata->Branch("ic2_1", &ic2_1); + bb_mw1_focusx = newdata->Branch("mw1_focusx_1", &mw1_focusx_1); + bb_mw1_posx = newdata->Branch("mw1_posx_1", &mw1_posx_1); + bb_mw2_focusx = newdata->Branch("mw2_focusx_1", &mw2_focusx_1); + bb_mw2_posx = newdata->Branch("mw2_posx_1", &mw2_posx_1); + b_beamOn = newdata->Branch("beamOn", &beamOn); + + newdata->SetBranchStatus("*", 1); + for (int i = 0; i < spillTimes.size(); i++) + { + tmp_TimeCenter = calcTimeCenters(spillTimes[i].first + 200, spillTimes[i].second); + timeIntSignal->Add(tmp_TimeCenter, 1.); + delete tmp_TimeCenter; + beamPosX_1 = 0; + beamFocusX_1 = 0; + beamSignal_1 = 0; + ic1_1 = 0; + mw1_focusx_1 = 0; + mw1_posx_1 = 0; + beamOn = 0; + newdata->Fill(); + } + SignalErrHist->Write(); + printf("Fit_Fail_Counts=%d\n", Fit_Fail_Counts); + + //Draw timeCenter + timeCenters->GetXaxis()->SetTitle("time [s]"); + TString label; + label.Form("mean position[mm]"); + timeCenters->GetYaxis()->SetTitle(label.Data()); + timeCenters->Write(); + + //Draw timeCenter_MWPC + timeCenters_MWPC->GetXaxis()->SetTitle("time [s]"); + TString label2; + label2.Form("mean position[mm]"); + timeCenters_MWPC->GetYaxis()->SetTitle(label.Data()); + timeCenters_MWPC->Write(); + + //Draw timeWidths + timeWidths->GetXaxis()->SetTitle("time [s]"); + TString label12; + label12.Form("width fiber[mm]"); + timeWidths->GetYaxis()->SetTitle(label12.Data()); + timeWidths->Write(); + + //Draw timeWidths_MWPC + timeWidths_MWPC->GetXaxis()->SetTitle("time [s]"); + TString label13; + label13.Form("width MWPC[mm]"); + timeWidths_MWPC->GetYaxis()->SetTitle(label12.Data()); + timeWidths_MWPC->Write(); + + Center_Signal->GetXaxis()->SetTitle("Signal [particles]"); + TString label123; + label123.Form("Position_Fiber[mm]"); + Center_Signal->GetYaxis()->SetTitle(label123.Data()); + Center_Signal->Write(); + Center_Signal->ProfileX()->Write(); + + //Draw Diff_timeCenters + Diff_timeCenters->GetXaxis()->SetTitle("time [s]"); + TString label3; + label3.Form("mean position diff[mm]"); + Diff_timeCenters->GetYaxis()->SetTitle(label.Data()); + Diff_timeCenters->Write(); + + //Draw Diff_Signal + Diff_Signal->GetXaxis()->SetTitle("signal"); + TString label4; + label4.Form("mean position diff[mm]"); + Diff_Signal->GetYaxis()->SetTitle(label.Data()); + Diff_Signal->Write(); + + //Draw Diff_Signal + Diff_ic1->GetXaxis()->SetTitle("ic1"); + TString label5; + label5.Form("mean position diff[mm]"); + Diff_ic1->GetYaxis()->SetTitle(label.Data()); + Diff_ic1->Write(); + + TObjArray aSlices, bSlices; + Diff_Signal->FitSlicesY(0, 0, -1, 5, "QNR", &aSlices); + for (int i = 0; i < 4; i++) + { + aSlices[i]->Write(); + } + Diff_ic1->FitSlicesY(0, 0, -1, 5, "QNR", &bSlices); + for (int i = 0; i < 4; i++) + { + bSlices[i]->Write(); + } + mean_ave = beamPosX->GetMean(); + sigma_pos = beamPosX->GetStdDev(); + sigma_ave = beamFocusX->GetMean(); + return; +} + +pair Beammon::GetSpillTimes(int nSpill) +{ + + return spillTimes[nSpill]; +} + +TH2D *Beammon::GetSpillCenters(int nSpill) +{ + + //return calcTimeCenters(spillTimes[nSpill].first, spillTimes[nSpill].second); +} + +TH1D *Beammon::GetSpillSlice(int nSpill) +{ + return GetTimeSlice(-1, spillTimes[nSpill].first - 500, spillTimes[nSpill].second + 500, true); +} + +TH1D *Beammon::GetSignalDistribution() +{ + /*int n = signalDist->GetNbinsX(); + for(int i = 1; i<= n; i++){ + signalDist->SetBinContent(i,signalDist->GetBinContent(i)*signalDistScale); + }*/ + signalDist->Scale(signalDistScale); + return signalDist; +} + +TCanvas *Beammon::GetSignalDistributionCanvas() +{ + TCanvas *c1 = new TCanvas(); + c1->SetName("signalDistributionCanvas"); + + signalDist->Draw(); + signalDist->SetTitle(""); + signalDist->GetYaxis()->SetTitle("entries"); + TString label; + label.Form("integrated signal [adc counts / %d #mus]", intTime); + signalDist->GetXaxis()->SetTitle(label.Data()); + //c1->SaveAs("dummy"); + return c1; +} + +TH2D *Beammon::GetSimpleView() +{ + return timePosHist; +} + +TH1D *Beammon::GetBaselineHist() +{ + TH1D *tmp = new TH1D("baseline", "baseline", 64, 0.5, 64.5); + for (int n = 1; n <= 64; n++) + { + tmp->SetBinContent(n, baseline[n - 1]); + } + return tmp; +} + +void Beammon::Close() +{ + + delete timePosHist; + fileOut->Close(); +} + +double Beammon::GetIntSignal() +{ + + return intSignal; +} + +int Beammon::GetBeamOnTime() +{ + return beamOnTime; +} + +double Beammon::GetSignalStd() +{ + return signalDist->GetStdDev(1); +} + +bool Beammon::isAboveThreshold(TGraphErrors *slice) +{ + double channel, signal; + slice->GetPoint(highestChannelBin, channel, signal); + if (signal > beamOnAdcVal) + return true; + else + return false; +} + +bool Beammon::isAboveThreshold(TH1D *slice) +{ + double val = slice->GetBinContent(highestChannelBin); + if (val > beamOnAdcVal) + return true; + else + return false; +} + +bool Beammon::isAboveThreshold(double val) +{ + // old version using the gaussian fit to the measurement + if (val > beamOnAdcVal) + return true; + else + return false; + /* + if(val > baselineIntegral * 1.5 && val < baselineIntegral *100) + return true; + else + return false;*/ +} + +TH1D *Beammon::icSignalComp() +{ + icSignalDist = new TH1D("icSignal", "icSignal", 200, 0., ic1Hist->GetMaximum()); + TH1D *icSignalDist2 = new TH1D("icSignal2", "icSignal2", 200, 0., ic2Hist->GetMaximum()); + for (int i = 0; i < ic1Hist->GetNbinsX(); i++) + { + if (ic1Hist->GetBinContent(i) != 0) + icSignalDist->Fill(ic1Hist->GetBinContent(i)); + if (ic2Hist->GetBinContent(i) != 0) + icSignalDist2->Fill(ic2Hist->GetBinContent(i)); + } + icSignalDist2->Write(); + return icSignalDist; +} + +TCanvas *Beammon::signalOverTime2d() +{ + + TCanvas *c1 = new TCanvas(); + c1->SetName("signalOverTime2d"); + TH1D *tmp = GetSignalOverTime(); + int binsX = tmp->GetNbinsX(); + int max = tmp->GetMaximum(); + int min = tmp->GetMinimum(); + TH2D *res = new TH2D("sigTime2d", "", binsX / 200, 0., binsX / readOutFreq, 100, min, max); + for (int k = 0; k < binsX; k++) + { + res->Fill(k / readOutFreq, tmp->GetBinContent(k)); + } + + res->Draw("colz"); + res->GetXaxis()->SetTitle("time [s]"); + TString label; + label.Form("adc counts / %d #mus", intTime); + res->GetYaxis()->SetTitle(label.Data()); + //c1->SaveAs("dummy"); + res->Write(); + return c1; +} + +double Beammon::calcBeamTime() +{ + + beamOnTime = 0; + for (int i = 0; i < spillTimes.size(); i++) + { + beamOnTime += spillTimes[i].second - spillTimes[i].first; + } + return beamOnTime; +} + +TCanvas *Beammon::PrintProfile(int offset) +{ + TCanvas *c1 = new TCanvas(); + c1->cd(); + //TH1D *res = GetChannelSlice(-1,offset); + TGraphErrors *res = new TGraphErrors(64); + TGraphErrors *tmp = GetChannelGraph(-1, offset); + + double x, y, errx, erry; + for (int ch = 0; ch < 63; ch++) + { + tmp->GetPoint(ch, x, y); + x *= 0.8; + errx = 0; + erry = tmp->GetErrorY(ch); + res->SetPoint(ch, x, y); + res->SetPointError(ch, errx, erry); + } + + res->Fit("gaus", "Q0"); + + double stepsize = 0.01; + double lim = res->GetFunction("gaus")->GetMaximum() / 2; + + double val, x1, x2, pos = 0; + bool below = true; + while (pos <= 64) + { + val = res->GetFunction("gaus")->Eval(pos); + if (below && val >= lim) + { + x1 = pos; + below = false; + } + else if (below == false && val <= lim) + { + x2 = pos; + break; + } + pos += stepsize; + } + fwhm = (x2 - x1) * channelWidth; + + res->Draw("AP"); + + TString sName; + sName.Form("Profile%d", offset); + c1->SetName(sName.Data()); + res->SetTitle(""); + res->GetXaxis()->SetTitle("position [mm]"); + TString label; + label.Form("adc counts / %d #mus", intTime); + res->GetYaxis()->SetTitle(label.Data()); + res->GetYaxis()->SetTitleOffset(1.4); + + TString str; + str.Form("fwhm = %.3f mm", fwhm); + TText *t = new TText(34, 900, str.Data()); + t->Draw("SAME"); + delete t; + delete res; + + c1->Update(); + c1->Modified(); + //c1->SaveAs(sName.Data()); + return c1; +} +TCanvas *Beammon::FitSnapshot(int offset) +{ + + //gSyle->SetOptFit(1111); + TCanvas *c1 = new TCanvas(); + c1->cd(); + TGraphErrors *res = GetChannelGraph(-1, offset); + TString sName; + sName.Form("Snapshot%d", offset); + c1->SetName(sName.Data()); + res->SetTitle(""); + res->GetXaxis()->SetTitle("channel"); + TString label; + label.Form("adc counts / %d #mus", intTime); + res->GetYaxis()->SetTitle(label.Data()); + res->GetYaxis()->SetTitleOffset(1.4); + //res->Fit("gaus"); + + res->Fit("gaus"); + double mean = res->GetFunction("gaus")->GetParameter(1); + double sigma = res->GetFunction("gaus")->GetParameter(2); + double constant = res->GetFunction("gaus")->GetParameter(0); + + TF1 *func = new TF1("doublegaus", fitfunc, 0, 64, 6); // t + func->SetNpx(1000); + func->SetParameter(0, constant); + func->SetParameter(1, mean); + func->SetParameter(2, sigma); + func->SetParameter(3, constant); + func->SetParameter(4, sigma); + func->SetParameter(5, 0.); + func->SetParLimits(1, 0., 64.); + func->SetParLimits(2, 1., 20.); + func->SetParLimits(4, 5., 100.); + //func->SetParameter(5,0.); + res->Fit("doublegaus"); + + res->Draw("AP"); + c1->SaveAs(sName.Data()); + return c1; +} + +TCanvas *Beammon::FitAverage() +{ + + TCanvas *c1 = new TCanvas(); + c1->cd(); + int n = spillTimes.size(); + double yValues[64]; + double yErrors[64]; + double xValues[64]; + double xErrors[64]; + int count = 0; + double x, y, errY; + TGraphErrors *tmp; + yValues[0] = 0; + + for (int i = 0; i < n; i++) + { + int start = spillTimes[i].first; + int stop = spillTimes[i].second; + for (int k = start; k <= stop; k++) + { + count++; + tmp = GetChannelGraph(k, 0); + for (int bin = 1; bin <= 64; bin++) + { + errY = tmp->GetErrorY(bin); + tmp->GetPoint(bin, x, y); + if (!(y != y || errY != errY)) + + { + yValues[bin - 1] += y; + yErrors[bin - 1] += errY * errY; + } + else + { + yValues[bin - 1] += 0; + yErrors[bin - 1] += 0; + } + } + delete tmp; + } + } + + for (int bin = 0; bin < 64; bin++) + { + xValues[bin] = bin; + xErrors[bin] = 1. / sqrt(12); + yValues[bin] *= 1. / count; + yErrors[bin] = sqrt(yErrors[bin]) / count; + } + + /*for (int i = 0; i < 64; i++) + { + printf("channelErrors[%d]: %f ", i, channelErrors[i]); + printf("yValue[%d]: %f ", i, yValues[i]); + printf("yError[%d]: %f \n", i, yErrors[i]); + }*/ + TGraph *res = new TGraph(64, xValues, yValues); //, xErrors, yErrors); + + c1->SetName("avgGraph"); + res->SetTitle(""); + res->GetXaxis()->SetTitle("channel"); + TString label; + label.Form("adc counts / %d #mus", intTime); + res->GetYaxis()->SetTitle(label.Data()); + res->GetYaxis()->SetTitleOffset(1.4); + + res->Fit("gaus", "Q0"); + double mean = res->GetFunction("gaus")->GetParameter(1); + //mean_ave = mean; + double sigma = res->GetFunction("gaus")->GetParameter(2); + //sigma_ave = sigma; + double constant = res->GetFunction("gaus")->GetParameter(0); + //res->Fit("gaus","","",mean-1.5*sigma,mean+1.5*sigma); + + TF1 *func = new TF1("doublegaus", fitfunc, 0, 64, 6); // t + func->SetNpx(1000); + func->SetParameter(0, constant); + func->SetParameter(1, mean); + func->SetParameter(2, sigma); + func->SetParameter(3, constant); + func->SetParameter(4, sigma); + func->SetParameter(5, 0.); + func->SetParLimits(1, 0., 64.); + func->SetParLimits(2, 1., 20.); + func->SetParLimits(4, 5., 100.); + //func->SetParameter(5,0.); + res->Fit("doublegaus"); + + res->Draw("AP"); + //c1->SaveAs("avgFit"); + + // find fwhm + double stepsize = 0.01; + double lim = res->GetFunction("doublegaus")->GetMaximum() / 2; + + double val, x1, x2, pos = 0; + bool below = true; + while (pos <= 64) + { + val = func->Eval(pos); + if (below && val >= lim) + { + x1 = pos; + below = false; + } + else if (below == false && val <= lim) + { + x2 = pos; + break; + } + pos += stepsize; + } + fwhm = (x2 - x1) * channelWidth; + return c1; +} + +TCanvas *Beammon::PrintChannelNoise(int channel) +{ + + TCanvas *c1 = new TCanvas(); + c1->cd(); + TString name; + name.Form("channelNoise%d", channel); + TString label; + label.Form("adc counts / %d #mus", intTime); + c1->SetName(name.Data()); + channelSig[channel]->SetTitle(""); + channelSig[channel]->SetName(name.Data()); + channelSig[channel]->GetXaxis()->SetTitle(label.Data()); + channelSig[channel]->GetYaxis()->SetTitle("entries"); + + channelSig[channel]->Draw(); + gStyle->SetOptStat("mr"); + gPad->Modified(); + //c1->SaveAs("blub"); + return c1; +} + +TCanvas *Beammon::IcFitSlicesY() +{ + TCanvas *c1 = new TCanvas(); + c1->cd(); + c1->SetName("icFitSlicesY"); + + TH1D *tmp = timePosHist->ProjectionY("", 1, 64); + + TH1D *means = (TH1D *)sigIcScatterPlot[10 + alignintIc]->ProfileY(); //(TH1D*)objectArray[1]; + means->SetLineColor(kBlack); + + //sigIcScatterPlot->Draw(); + means->Draw("E"); + means->GetXaxis()->SetRangeUser(0., means->GetXaxis()->GetXmax()); + means->SetMinimum(0.); + means->SetTitle(""); + //means->SetName("icFitSlicesY"); + TString label1, label2; + label1.Form("mean photodiode signal [particles / %d #mus]", intTime); + label2.Form("ionisation chamber signal [particles / %d #mus]", intTime); + means->GetXaxis()->SetTitle(label2.Data()); + means->GetYaxis()->SetTitle(label1.Data()); + + means->Fit("pol1"); + + //sigIcScatterPlot->Draw(); + gPad->Modified(); + //c1->SaveAs("blub"); + means->Write(); + return c1; +} + +TCanvas *Beammon::PrintSigIcGraph() +{ + TCanvas *c1 = new TCanvas(); + c1->cd(); + + TString name; + name.Form("sigIcScatterGraph"); + TString label, label2; + label.Form("adc counts / %d #mus", intTime); + label2.Form("whatever / %d #mus", intTime); + c1->SetName(name.Data()); + sigIcScatterGraph->SetTitle(""); + sigIcScatterGraph->SetName(name.Data()); + sigIcScatterGraph->GetXaxis()->SetTitle(label2.Data()); + sigIcScatterGraph->GetYaxis()->SetTitle(label.Data()); + + sigIcScatterGraph->Fit("pol1", "W"); + sigIcScatterGraph->Draw("AP"); + gPad->Modified(); + //c1->SaveAs("blub"); + return c1; +} + +TH1D *Beammon::GetMwPosComp() +{ + double bin, mean; + double shift = beamPosX->GetMean() - mwPosX->GetMean(); + //printf("beam: %f \n",beamPosTimeGraph->GetMean(2)); + int n = beamPosTimeGraph->GetN(); + for (int i = 0; i < n; i++) + { + beamPosTimeGraph->GetPoint(i, bin, mean); + if (!mean) + continue; + positionComp->Fill(mean - mw1_posxHist->GetBinContent(bin - alignint) - shift); + } + return positionComp; +} + +// +/// +///////////////////////////////////////////////////////////////////////////// + +TCanvas *Beammon::GetSig_e_ic_Hist() +{ + shift = beamPosX->GetMean() - mwPosX->GetMean(); + printf("shift = %f", shift); + TCanvas *c1 = new TCanvas(); + c1->cd(); + c1->SetName("SignalComp_vs_Time"); + Double_t norm = ic1Hist->Integral(); + ic1Hist->Scale(1. / norm); + ic1Hist->SetLineColor(kRed); + ic1Hist->Draw("HIST L"); + Double_t norm0 = sigHist->Integral(); + Double_t scaleSig = norm / norm0; + sigHist->Scale(1. / norm0); + sigHist->Draw("HIST SAME L"); + TLegend * legend= new TLegend(0.1, 0.7, 0.48, 0.9); + legend->AddEntry(ic1Hist, "ic", "l"); + legend->AddEntry(sigHist, "Fibre", "l"); + legend->Draw(); + + TH1D *compsig = new TH1D("compsig", "compsig", 200, -0.5, 0.5); + for (int i = 0; i < nevents; i++) + { + compsig->Fill((ic1Hist->GetBinContent(i) - sigHist->GetBinContent(i)) * 2 / (ic1Hist->GetBinContent(i) + sigHist->GetBinContent(i))); + } + compsig->Write(); + + TCanvas *c2 = new TCanvas(); + c2->cd(); + c2->SetName("PositionComp_vs_Time"); + TH1D *fibreHistNew = new TH1D("fibreHistNew", "fibreHistNew", nevents, 0., nevents - 1); + for (int i = 0; i < nevents; i++) + { + if (fibreHist->GetBinContent(i) != 0) + { + fibreHistNew->SetBinContent(i, fibreHist->GetBinContent(i) - shift); + } + else + fibreHistNew->SetBinContent(i, 0); + } + fibreHistNew->Draw("HIST L"); + mwpcHist->SetLineColor(kRed); + mwpcHist->SetLineColor(kRed); + mwpcHist->Draw("HIST SAME L"); + TLegend * legend2 = new TLegend(0.1, 0.7, 0.48, 0.9); + legend2->AddEntry(mwpcHist, "MWPC", "l"); + legend2->AddEntry(fibreHistNew, "Fibre", "l"); + legend2->Draw(); + c2->Write(); + return c1; +} + +TCanvas *Beammon::GetSig_e_ic_Hist_Weighted() +{ + TCanvas *c1 = new TCanvas(); + c1->cd(); + c1->SetName("SignalComp_vs_Time_all"); + Double_t norm = ic1Hist->Integral(); + ic1Hist->Scale(1. / norm); + ic1Hist->SetLineColor(kRed); + ic1Hist->SetLineWidth(2); + ic1Hist->Draw("HIST L"); + Double_t norm0 = sigHist_weighted->Integral(); + sigHist_weighted->Scale(1. / norm0); + sigHist_weighted->Draw("HIST SAME L"); + Double_t norm1 = sigHist->Integral(); + sigHist->Scale(1. / norm1); + sigHist->SetLineColor(kBlue); + sigHist->Draw("HIST SAME L"); + TLegend * legend= new TLegend(0.1, 0.7, 0.48, 0.9); + legend->AddEntry(ic1Hist, "ic", "l"); + legend->AddEntry(sigHist, "Fibre_fit", "l"); + legend->AddEntry(sigHist_weighted, "Fibre_sum", "l"); + legend->Draw(); + c1->Write(); + + TH1D *compsig_weighted = new TH1D("compsig_weighted", "compsig", 200, -0.5, 0.5); + for (int i = 0; i < nevents; i++) + { + compsig_weighted->Fill((ic1Hist->GetBinContent(i) - sigHist_weighted->GetBinContent(i)) * 2 / (ic1Hist->GetBinContent(i) + sigHist_weighted->GetBinContent(i))); + } + compsig_weighted->SetLineColor(kRed); + compsig_weighted->Write(); + TH1D *compsig = new TH1D("compsig", "compsig", 200, -0.5, 0.5); + for (int i = 0; i < nevents; i++) + { + compsig->Fill((ic1Hist->GetBinContent(i) - sigHist->GetBinContent(i)) * 2 / (ic1Hist->GetBinContent(i) + sigHist->GetBinContent(i))); + } + c1->cd(); + c1->SetName("CompSig_all"); + compsig->Draw(); + compsig_weighted->Draw("SAME"); +TLegend * legend2 = new TLegend(0.1, 0.7, 0.48, 0.9); + legend2->AddEntry(compsig_weighted, "Weighted", "l"); + legend2->AddEntry(compsig, "Fit", "l"); + legend2->Draw(); + c1->Write(); + + TCanvas *c2 = new TCanvas(); + c2->cd(); + c2->SetName("PositionComp_vs_Time_all"); + TH1D *fibreHistNew_weighted = new TH1D("fibreHistNew_weighted", "fibreHistNew_weighted", nevents, 0., nevents - 1); + for (int i = 0; i < nevents; i++) + { + if (fibreHist_weighted->GetBinContent(i) != 0) + { + fibreHistNew_weighted->SetBinContent(i, fibreHist_weighted->GetBinContent(i) - shift); + } + else + fibreHistNew_weighted->SetBinContent(i, 0); + } + TH1D *fibreHistNew = new TH1D("fibreHistNew", "fibreHistNew", nevents, 0., nevents - 1); + for (int i = 0; i < nevents; i++) + { + if (fibreHist->GetBinContent(i) != 0) + { + fibreHistNew->SetBinContent(i, fibreHist->GetBinContent(i) - shift); + } + else + fibreHistNew->SetBinContent(i, 0); + } + fibreHistNew->Draw("HIST L"); + fibreHistNew->SetLineColor(kBlue); + fibreHistNew_weighted->Draw("HIST L SAME"); + mwpcHist->SetLineColor(kRed); + mwpcHist->SetLineWidth(2); + mwpcHist->Draw("HIST SAME L"); +TLegend * legend3 = new TLegend(0.1, 0.7, 0.48, 0.9); + legend3->AddEntry(mwpcHist, "MWPC", "l"); + legend3->AddEntry(fibreHistNew, "Fibre_fit", "l"); + legend3->AddEntry(fibreHistNew_weighted, "Fibre_Weighted", "l"); + legend3->Draw(); + c2->Write(); + + c2->cd(); + c2->Clear(); + c2->SetName("PosComp_All"); + TH1D *comppos_weighted = new TH1D("comppos_weighted", "comppos", 200, -0.4, 0.4); + for (int i = 0; i < nevents; i++) + { + comppos_weighted->Fill((mwpcHist->GetBinContent(i) - fibreHist_weighted->GetBinContent(i) + shift)); + } + comppos_weighted->SetLineColor(kRed); + comppos_weighted->Write(); + TH1D *comppos = new TH1D("comppos", "comppos", 200, -0.4, 0.4); + for (int i = 0; i < nevents; i++) + { + comppos->Fill((mwpcHist->GetBinContent(i) - fibreHist->GetBinContent(i) + shift)); + } + comppos->Draw(); + comppos_weighted->Draw("SAME"); +TLegend * legend4 = new TLegend(0.1, 0.7, 0.48, 0.9); + legend4->AddEntry(comppos_weighted, "Weighted", "l"); + legend4->AddEntry(comppos, "Fit", "l"); + legend4->Draw(); + return c2; +} diff --git a/Scripts_20161126/beammon.h_old b/Scripts_20161126/beammon.h_old new file mode 100644 index 0000000..45dd055 --- /dev/null +++ b/Scripts_20161126/beammon.h_old @@ -0,0 +1,2170 @@ +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +using namespace std; + +double globalUpperBound = 63; +double globalLowerBound = 1; +double measurementsPerSecond = 3000; +int Fit_Fail_Counts = 0; +int signalScale = 1; +int alignint = 1; +int alignintIc = 1; +double discardUpperThreshold = 0.01; +double discardLowerThreshold = -0.015; + +Double_t fitfunc(Double_t *x, Double_t *par) +{ + Double_t arg1 = 0; + if (par[2] != 0) + arg1 = (x[0] - par[1]) / par[2]; + Double_t fitval1 = par[0] * TMath::Exp(-0.5 * arg1 * arg1); + Double_t arg2 = 0; + if (par[4] != 0) + arg2 = (x[0] - par[1]) / par[4]; + Double_t fitval2 = par[3] * TMath::Exp(-0.5 * arg2 * arg2); + Double_t fitsum = par[5] + fitval1 + fitval2; + return fitsum; +} + +class Beammon +{ + +private: + TTree *data; + TTree *newdata; + TBranch *b_time; + TBranch *b_ic1; + TBranch *b_ic2; + TBranch *b_mw1_focusx; + TBranch *b_mw1_focusy; + TBranch *b_mw2_focusx; + TBranch *b_mw2_focusy; + TBranch *b_mw1_posx; + TBranch *b_mw1_posy; + TBranch *b_mw2_posx; + TBranch *b_mw2_posy; + TBranch *b_channels[64]; + + TBranch *bb_ic1; + TBranch *bb_ic2; + TBranch *bb_mw1_focusx; + TBranch *bb_mw2_focusx; + TBranch *bb_mw1_posx; + TBranch *bb_mw2_posx; + TBranch *b_beamPosX_1; + TBranch *b_beamFocusX_1; + TBranch *b_beamSignal_1; + TBranch *b_beamPosX_2; + TBranch *b_beamFocusX_2; + TBranch *b_beamSignal_2; + TBranch *b_beamOn; + + double beamPosX_1; + double beamFocusX_1; + double beamSignal_1; + double beamPosX_2; + double beamFocusX_2; + double beamSignal_2; + double beamOn; + double sigma_pos = 0.1; + + char *file; + TFile *fileIn; + TFile *fileOut; + + TObjArray objectArray; + + bool isSipm; + bool firstMat; + double channelWidth; + + double shift; + + long nevents; + int nBaselineEvents; + int nPrelimEvents; + int highestChannelBin; + int highestTimeBin; + double beamOnAdcVal; + double referenceIntegral; + double beamOnLevel; + double prelimMean; + double prelimSigma; + double highVal; + double readOutFreq; + int intTime; + double chi2ndf; + double fwhm; + + double mean_ave; + double sigma_ave; + + double signalToParticles = 1; // multiply signal by this amount, so that mean of singal (photodiode) and icChamber distribution are the same + double signalDistScale = 1; // icChamber signal distribution has more entries than signal (photodiode) one, so increase bin content in signal dist. by 1*this factor, to achieve the same integral + + double time; + int startTime; + int stopTime; + int timesteps; + double intSignal; + int beamOnTime; + double baselineIntegral; + + double ic1; + double ic2; + double mw1_focusx; + double mw1_focusy; + double mw2_focusx; + double mw2_focusy; + double mw2_posx; + double mw2_posy; + double mw1_posx; + double mw1_posy; + double icIntegral; + double completeIntegral; + + double ic1_1; + double ic2_1; + double mw1_focusx_1; + double mw2_focusx_1; + double mw2_posx_1; + double mw1_posx_1; + + vector > spillTimes; + + double channels[64]; + double baseline[64]; + double channelErrors[64]; + double current; + + TGraph *gChannelErrors; + TH1D *meanHistOn; + TH1D *widthHistOn; + TH2D *timePosHist; + TH1D *prelimBeam; + TH2D *timeCenters; + TH2D *timeCenters_MWPC; + TH2D *timeWidths; + TH2D *timeWidths_MWPC; + TH1D *signalDist; + TH1D *signalNoiseDist; + TH1D *signalNoiseChannel; + TH2D *simpleView; + TH1D *timeIntSignal; + TH1D *timeIntSignal_MWPC; + TH1D *beamPosHist; + TH1D *beamWidthHist; + TH1D *icSignalDist; + TGraphErrors *beamPosTimeGraph; + TGraphErrors *signalTimeGraph; + TGraphErrors *sigIcScatterGraph; + TGraphErrors *mwPosScatterGraph; + TH2D *sigIcScatterPlot[20]; + TH2D *sigIcScatterPlot_ic2; + TH2D *mwPosScatterPlot[20]; + TH1D *ic1Hist; + TH1D *ic2Hist; + TH1D *signalComp; + TH1D *positionComp; + TH1D *widthComp; + TH1D *mw1_focusxHist; + TH1D *mw1_focusyHist; + TH1D *mw2_focusxHist; + TH1D *mw2_focusyHist; + TH1D *mw1_posxHist; + TH1D *mw1_posyHist; + TH1D *mw2_posxHist; + TH1D *mw2_posyHist; + TH1D *channelSig[64]; + TH1D *chisquareDist; + TH1D *mwPosX; + TH1D *mwFocusX; + TH1D *beamPosX; + TH1D *beamFocusX; + TH1D *sigHist; + TH1D *sigHist_weighted; + TH1D *fibreHist; + TH1D *fibreHist_weighted; + TH1D *mwpcHist; + + TH2D *Center_Signal; + TH2D *Diff_timeCenters; + TH2D *Diff_Signal; + TH2D *Diff_ic1; + TH1D *Diff_hist; + TH2D *deltaSig_time; + TH2D *deltaSig_Sig; + TH1D *SlicesAvg; + TH2D *SignalErrHist; + + void calcBaseline(bool useFirstEvents); + void calcBaselineIntegral(); + void prelimProfile(); + TH1D *AverageHist(int dir, int timeStart = -1, int timeStop = -1); + TH1D *TimeAverage(int timeStart, int timeStop); + TH1D *TimeIntSignal(int timeStart = -1, int timeStop = -1); + bool isAboveThreshold(TH1D *slice); + bool isAboveThreshold(double val); + bool isAboveThreshold(TGraphErrors *slice); + TH1D *calcTimeCenters(int start, int stop); + double calcBeamTime(); + + // Tom Add + +public: + Beammon(); + ~Beammon(); + + void Initialize(const char *dirname, const char *filename, int baselineEvents = 1000, int prelimEvents = 10000, double beamLevel = 0.1, bool firstFibermat = true, double readOutFrequency = 1000., int integrationTime = 100); + TH1D *GetPrelimProfile(); + void ProcessData(); + TH1D *GetChannelAvg(bool beamOn = false); + TH1D *GetChannelSigDist(int channel); + TH1D *GetTimeAvg(); + TH1D *GetTimeAvg(int nSpill); + TH1D *GetTimeAvg(int nSpill, int nMeasurements); + TH2D *GetTimeAvgScatter(); + TH2D *GetTimeAvgScatter(int nSpill, int nMeasurements); + TH1D *GetChannelSlice(int time = -1, int offset = 0); + TH1D *GetChannelSlice2(int time = -1, int offset = 0); + TGraphErrors *GetChannelGraph(int time = -1, int offset = 0); + TH1D *GetChannelGraphHist(int time, int offset); + TH1D *GetTimeSlice(int channel = -1, int startTime = -1, int stopTime = -1, bool beamOn = false); + TCanvas *GetTimeSliceCanvas(int channel = -1); + TCanvas *GetSignalNoiseChannel(int channel = -1); + TH1D *GetSignalOverTime(); + void GetTimeCenters(); + void GetTimeWidths(); + void PrintSpillTimes(); + pair GetSpillTimes(int nSpill); + TH2D *GetSpillCenters(int nSpill); + TH1D *GetSpillSlice(int nSpill); + TH1D *GetSignalDistribution(); + TCanvas *GetSignalDistributionCanvas(); + TH2D *GetSimpleView(); + TH1D *GetBaselineHist(); + TH1D *icSignalComp(); + double GetIntSignal(); + int GetBeamOnTime(); + double GetSignalStd(); + TCanvas *signalOverTime2d(); + TCanvas *FitSnapshot(int offset); + TCanvas *FitAverage(); + TCanvas *PrintBaseline(); + TCanvas *PrintChannelNoise(int channel); + TCanvas *PrintProfile(int offset); + TCanvas *IcFitSlicesY(); + TCanvas *PrintSigIcGraph(); + TH1D *GetMwPosComp(); + void Save(); + void Close(); + + TCanvas *GetSig_e_ic_Hist(); + TCanvas *GetSig_e_ic_Hist_Weighted(); + + int Fit_Fail_Number = 200; + int event_count = 0; +}; + +Beammon::Beammon() {} + +Beammon::~Beammon() {} + +void Beammon::Initialize(const char *dirname, const char *filename, int baselineEvents, int prelimEvents, double beamLevel, bool firstFibermat, double readOutFrequency, int integrationTime) +{ + + signalToParticles = 7937 / 1.443e4; // FOR RUN 26 only + signalDistScale = 1.; //44585./26225;// FOR RUN 26 ONLY + intTime = integrationTime; + readOutFreq = readOutFrequency; + firstMat = firstFibermat; + highestChannelBin = 20; + highestTimeBin = 0; + icIntegral = 0; + completeIntegral = 0; + + TString fn = TString(filename); + TString dn = TString(dirname); + if (fn.Contains("sipm")) + { + channelWidth = 0.25; + isSipm = true; + } + + else + { + channelWidth = 0.8; + isSipm = false; + } + TString inName = dn + "pin/" + fn; + fileIn = new TFile(inName, "UPDATE"); + fileIn->GetObject("t", data); + TString outname = filename; + if (firstMat) + outname.Insert(0, "SAVE_"); + else + outname.Insert(0, "SAVE_mat2_"); + outname.Insert(0, dirname); + data->SetBranchStatus("ch*", 0); + fileOut = new TFile(outname.Data(), "RECREATE"); + newdata = new TTree("newdata", "newdata"); + + data->SetBranchStatus("ch*", 1); + b_time = data->GetBranch("time"); + b_time->SetAddress(&time); + + for (int n = 0; n < 64; n++) + { + baseline[n] = 0.; + char bname[20]; + if (firstMat) + { + sprintf(bname, "ch%02d", n); + b_channels[n] = data->GetBranch(bname); + b_channels[n]->SetAddress(&channels[n]); + } + else + { + sprintf(bname, "ch%d", n + 64); + printf("%s\n", bname); + b_channels[n] = data->GetBranch(bname); + b_channels[n]->SetAddress(&channels[63 - n]); + } + } + + b_ic1 = data->GetBranch("ic1"); + b_ic1->SetAddress(&ic1); + b_ic2 = data->GetBranch("ic2"); + b_ic2->SetAddress(&ic2); + b_mw1_focusx = data->GetBranch("mw1_focusx"); + b_mw1_focusx->SetAddress(&mw1_focusx); + b_mw1_focusy = data->GetBranch("mw1_focusy"); + b_mw1_focusy->SetAddress(&mw1_focusy); + b_mw2_focusx = data->GetBranch("mw2_focusx"); + b_mw2_focusx->SetAddress(&mw2_focusx); + b_mw2_focusy = data->GetBranch("mw2_focusy"); + b_mw2_focusy->SetAddress(&mw2_focusy); + b_mw1_posx = data->GetBranch("mw1_posx"); + b_mw1_posx->SetAddress(&mw1_posx); + b_mw1_posy = data->GetBranch("mw1_posy"); + b_mw1_posy->SetAddress(&mw1_posy); + b_mw2_posx = data->GetBranch("mw2_posx"); + b_mw2_posx->SetAddress(&mw2_posx); + b_mw2_posy = data->GetBranch("mw2_posy"); + b_mw2_posy->SetAddress(&mw2_posy); + + nevents = data->GetEntries(); + startTime = 0; + stopTime = nevents - 1; + + timePosHist = new TH2D("timePosHist", "beam position", 64, 0.5, 64.5, nevents, 0, nevents - 1); //display in seconds (y-axis), but with bins of 100ms + SignalErrHist = new TH2D("SignalErrHist", "SignalErrHist", 64, 0.5, 64.5, 200, 0, -1); + chisquareDist = new TH1D("chiqsuareDist", "chiqsuareDist", 100, -1, -1); + prelimBeam = new TH1D("prelimBeam", "preliminary beam profile", 64, 0.5, 64.5); + beamPosHist = new TH1D("beamPosHist", "mean positions", readOutFreq, 0., 64. * channelWidth); + beamWidthHist = new TH1D("beamWidthHist", "beam width", 500, 0., 50.); + beamPosTimeGraph = new TGraphErrors(nevents); + beamPosTimeGraph->SetName("beamPosTimeGraph"); + signalTimeGraph = new TGraphErrors(nevents); + signalTimeGraph->SetName("signalTimeGraph"); + sigIcScatterGraph = new TGraphErrors(); + mwPosScatterGraph = new TGraphErrors(); + //sigIcScatterPlot = new TH2D("sigIcScatterPlot", "", 100, 0, -1, 100, 0, -1); + signalComp = new TH1D("signalComp", "signalComp", 200., -1., 1.); + positionComp = new TH1D("positionComp", "positionComp", 200., -3., 3.); + widthComp = new TH1D("widthComp", "widthComp", 200., 0., 3.5); + ic1Hist = new TH1D("ic1Hist", "ic1Hist", nevents, 0., nevents - 1); + ic2Hist = new TH1D("ic2Hist", "ic2Hist", nevents, 0., nevents - 1); + sigHist = new TH1D("sigHist", "sigHist", nevents, 0., nevents - 1); + sigHist_weighted = new TH1D("sigHist_weighted", "sigHist_weighted", nevents, 0., nevents - 1); + fibreHist = new TH1D("fibreHist", "fibreHist", nevents, 0., nevents - 1); + fibreHist_weighted = new TH1D("fibreHist_weighted", "fibreHist_weighted", nevents, 0., nevents - 1); + mwpcHist = new TH1D("mwpcHist", "mwpcHist", nevents, 0., nevents - 1); + mw1_focusxHist = new TH1D("mw1_focusxHist", "mw1_focusxHist", nevents, 0, nevents - 1); + mw1_focusyHist = new TH1D("mw1_focusyHist", "mw1_focusyHist", nevents, 0, nevents - 1); + mw2_focusxHist = new TH1D("mw2_focusxHist", "mw2_focusxHist", nevents, 0, nevents - 1); + mw2_focusyHist = new TH1D("mw2_focusyHist", "mw2_focusyHist", nevents, 0, nevents - 1); + mw1_posxHist = new TH1D("mw1_posxHist", "mw1_posxHist", nevents, 0, nevents - 1); + mw1_posyHist = new TH1D("mw1_posyHist", "mw1_posyHist", nevents, 0, nevents - 1); + mw2_posxHist = new TH1D("mw2_posxHist", "mw2_posxHist", nevents, 0, nevents - 1); + mw2_posyHist = new TH1D("mw2_posyHist", "mw2_posyHist", nevents, 0, nevents - 1); + mwPosX = new TH1D("mwPosX", "", 200, 0, 20); + mwFocusX = new TH1D("mwFocusX", "", 200, 2, 3.5); + beamPosX = new TH1D("beamPosX", "", 200, 20, 30); + beamFocusX = new TH1D("beamFocusX", "", 200, 0, 20); + + nBaselineEvents = baselineEvents; + nPrelimEvents = prelimEvents; + + beamOnLevel = beamLevel; + beamOnAdcVal = 0; + beamOnTime = 0; + if (!isSipm) + { + // if (fn.Contains("int1")) + calcBaseline(false); + //else + // calcBaseline(true); + } + prelimProfile(); + calcBaselineIntegral(); + ProcessData(); +} + +void Beammon::Save() +{ + fileIn->Close(); + fileOut->cd(); + for (int i = 0; i < 5; i++){ + PrintProfile(i)->Write(); + PrintProfile(i)->Delete(); + } + FitAverage()->Write(); + FitAverage()->Delete();; + PrintBaseline()->Write(); + PrintBaseline()->Delete();//added + //for(int i=0;i<64;i++) + // PrintChannelNoise(i)->Write(); + GetSignalOverTime()->Write(); + GetSignalOverTime()->Delete(); + for (int i = 0; i < 5; i++){ + GetChannelSlice2(-1, i)->Write(); + GetChannelSlice2(-1, i)->Delete(); + } + //fileIn->Close(); + + GetTimeSliceCanvas(-1)->Write(); + timePosHist->ProjectionX()->Write(); + GetTimeCenters(); + + GetSignalDistributionCanvas()->Write(); + GetSignalDistribution()->Write(); + GetSignalNoiseChannel()->Write(); + chisquareDist->Write(); + sigIcScatterGraph->Write(); + mwPosScatterGraph->Write(); + for (int i = 6; i < 15; i++) + { + sigIcScatterPlot[i]->Write(); + mwPosScatterPlot[i]->Write(); + } + mwPosScatterPlot[11]->Write(); + sigIcScatterPlot[11]->Write(); + mw1_focusxHist->Write(); + mw1_posxHist->Write(); + mwPosX->Write(); + mwFocusX->Write(); + beamPosX->Write(); + beamFocusX->Write(); + TVectorD v(6); + v[0] = GetIntSignal(); + v[1] = GetBeamOnTime(); + v[2] = signalDist->GetStdDev(); + v[3] = icIntegral; + v[4] = completeIntegral; + v[5] = fwhm; + v.Write("beaminfo"); + beamPosTimeGraph->Write(); + signalTimeGraph->Write(); + gChannelErrors->Write(); + ic1Hist->Write(); + ic2Hist->Write(); + sigHist->Write(); + fibreHist->Write(); + mwpcHist->Write(); + fibreHist_weighted->Write(); + sigHist_weighted->Write(); + GetSig_e_ic_Hist()->Write(); + GetSig_e_ic_Hist_Weighted()->Write(); + signalComp->Write(); + GetMwPosComp()->Write(); + widthComp->Write(); + icSignalComp()->Write(); + signalOverTime2d(); + IcFitSlicesY(); + PrintSigIcGraph()->Write(); + + //GetTimeCenters(); + + newdata->AutoSave(); + + Close(); + // v.Delete(); +} + +void Beammon::calcBaseline(bool useFirstEvents) +{ + // use the first/last nBaselineEvents events to calculate the average/baseline + if (!useFirstEvents) + { // last + for (int i = nevents - nBaselineEvents; i < nevents; i++) + { + data->GetEvent(i); + for (int ch = 0; ch < 64; ch++) + { + baseline[ch] += channels[ch] / nBaselineEvents; + } + } + } + else + { + for (int i = 1; i <= nBaselineEvents; i++) + { + data->GetEvent(i); + for (int ch = 0; ch < 64; ch++) + { + baseline[ch] += channels[ch] / nBaselineEvents; + } + } + } +} + +TCanvas *Beammon::PrintBaseline() +{ + TCanvas *c1 = new TCanvas(); + c1->cd(); + TGraphErrors *g = new TGraphErrors(64); + for (int k = 0; k < 64; k++) + { + double stdDev = channelSig[k]->GetStdDev(); + channelErrors[k] = stdDev; + g->SetPoint(k, k, baseline[k]); + g->SetPointError(k, 0., channelErrors[k]); + } + g->SetTitle(""); + g->SetName("baseline"); + g->GetXaxis()->SetTitle("channel"); + TString label; + label.Form("adc counts / %d #mus", intTime); + g->GetYaxis()->SetTitle(label.Data()); + g->Draw("AP"); + c1->SetName("baseline"); + //delete g;//added + return c1; +} + +void Beammon::calcBaselineIntegral() +{ + /*baselineIntegral = 0; + for(int i=1; i <= nBaselineEvents;i++){ + data->GetEvent(i); + double currentIntegral = 0; + for(int ch=0;ch<64;ch++){ + currentIntegral += channels[ch] - baseline[ch]; + } + if(currentIntegral > baselineIntegral) + baselineIntegral = currentIntegral; + } + printf("baseline int: %f \n",baselineIntegral);*/ + + double highVal = 0; + for (int i = 1; i <= nBaselineEvents; i++) + { + data->GetEvent(i); + double val = channels[highestChannelBin] - baseline[highestChannelBin]; + if (val > highVal) + highVal = val; + } + beamOnAdcVal = beamOnLevel * highVal; + int maxNoise = floor(highVal); + for (int j = 0; j < 64; j++) + { + TString name; + name.Form("channelSig%d", j); + channelSig[j] = new TH1D(name.Data(), name.Data(), maxNoise * 2, -maxNoise, maxNoise); + } + + for (int i = 1; i <= nBaselineEvents; i++) + { + data->GetEvent(i); + for (int ch = 0; ch < 64; ch++) + channelSig[ch]->Fill(channels[ch] - baseline[ch]); + } + gChannelErrors = new TGraph(64); + for (int k = 0; k < 64; k++) + { + double stdDev = channelSig[k]->GetStdDev(); + channelErrors[k] = stdDev; + gChannelErrors->SetPoint(k + 1, k + 1, stdDev); + } +} + +void Beammon::prelimProfile() +{ + + highVal = 0; + int histChannel = 0; + double highVal_tmp[64]; + + for (int i = 1; i < nevents - 1000; i += 1) + { //nevents/nPrelimEvents){ + data->GetEvent(i); + for (int ch = 0; ch < 64; ch++) + { + double val = channels[ch] - baseline[ch]; + /* if (val > highVal_tmp[ch]) + { + highVal_tmp[ch] = val; + }*/ + if (isSipm) + histChannel = 64 - ch; + else + histChannel = ch + 1; + prelimBeam->SetBinContent(histChannel, prelimBeam->GetBinContent(histChannel) + val / nPrelimEvents); //nPrelimEvents); + } + } + TF1 *fit = new TF1("fitfunc", "gaus", 1, 64); + fit->SetParameter(1, prelimBeam->GetMean()); + // printf("Mean: %f \n", prelimBeam->GetMean()); + // printf("Sigma: %f \n", prelimBeam->GetStdDev()); + // cout << prelimBeam->GetStdDev() << endl; + + fit->SetParameter(2, prelimBeam->GetStdDev()); + prelimBeam->Fit("fitfunc", "Q"); + prelimMean = fit->GetParameter(1); + prelimSigma = fit->GetParameter(2); + highestChannelBin = floor(prelimMean); + + if (highestChannelBin < 0) + highestChannelBin = 0; + /* + highVal = 0; + + for (int i = 0; i < 64; i++) + { + if ( highVal_tmp[i] > highVal) + { + highVal = highVal_tmp[i]; + } + }*/ + + // beamOnAdcVal = beamOnLevel * highVal; + delete fit; + printf("\ncenter channel: %d \n", highestChannelBin); +} + +void Beammon::ProcessData() +{ + + bool beamOn = false; + bool previousBeamStatus = false; + int lastSpillOn = 0; + int lastSpillOff = 0; + int minSpillTime = 3000; // in ms + int histChannel; + + int highestSigVal = 0; + + for (int i = 1; i < nevents; i++) + { + + if (i % 10000 == 00) + printf("Event: %d / %ld \n", i, nevents); + // cout << "Event: " << i << endl; + data->GetEvent(i); + + double maxSignal = channels[highestChannelBin] - baseline[highestChannelBin]; + /* + for(int j=0;j<64;j++){ + double val = channels[j] - baseline[j]; + if (val > maxSignal) + maxSignal = val; + }*/ + + if (isAboveThreshold(maxSignal) && (i > nBaselineEvents)) + { + beamOn = true; + if ((i - lastSpillOff) > minSpillTime && !previousBeamStatus) + { + if (lastSpillOff != 0) + spillTimes.push_back(make_pair(lastSpillOn, lastSpillOff)); + lastSpillOn = i; + } + } + else + { + beamOn = false; + if (previousBeamStatus) + lastSpillOff = i; + } + previousBeamStatus = beamOn; + + int sigVal = 0; + + for (int j = 0; j < 64; j++) + { + + int chan; + if (isSipm) + { + if (j % 2 == 0) + histChannel = 64 - (j + 1); + else + histChannel = 64 - (j - 1); + } + else + histChannel = j + 1; + + double chVal = channels[j] - baseline[j]; + sigVal += chVal; + timePosHist->SetBinContent(histChannel, i, chVal); + completeIntegral += chVal; + } + if (sigVal > highestSigVal) + { + highestSigVal = sigVal; + highestTimeBin = i; + } + // cout << ic1 << " " << mw1_focusx << " " << mw1_focusy << endl; + // IONISATION CHAMBERS + double chargeToParts = 1. / 3.2886706587037837e-15 * 1e-9 * 312e-6; + if (!(ic1 != ic1)) + ic1Hist->SetBinContent(i, ic1 * chargeToParts); + if (!(ic2 != ic2)) + ic2Hist->SetBinContent(i, ic2 * chargeToParts); + + // MW CHAMBERS + if (!(mw1_focusx != mw1_focusx)) + mw1_focusxHist->SetBinContent(i, mw1_focusx); + mw1_focusyHist->SetBinContent(i, mw1_focusy); + mw2_focusxHist->SetBinContent(i, mw2_focusx); + mw2_focusyHist->SetBinContent(i, mw2_focusy); + + if (!(mw1_posx != mw1_posx)) + mw1_posxHist->SetBinContent(i, mw1_posx); + mw1_posyHist->SetBinContent(i, mw1_posy); + mw2_posxHist->SetBinContent(i, mw2_posx); + mw2_posyHist->SetBinContent(i, mw2_posy); + + if (mw1_posx < 100) + { + mwPosX->Fill(mw1_posx); + mwFocusX->Fill(mw1_focusx); + } + } + spillTimes.push_back(make_pair(lastSpillOn, lastSpillOff)); + + TH1D *tmp = GetChannelSlice(-1); + tmp->Fit("gaus"); + TF1 *fit = tmp->GetFunction("gaus"); + referenceIntegral = fit->GetParameter(0); // this is the constant in front of the gaus!! The real integral is constant*sigma*sqrt(2*pi), but because sigma is the same in one measurement it doesn't matter! + signalDist = new TH1D("signalDist", "signal distribution", 200, 0., referenceIntegral * 2.51 * fit->GetParameter(2)); + signalNoiseDist = new TH1D("signalNoiseDist", "", 200, 0., referenceIntegral * 2.51 * fit->GetParameter(2)); + signalNoiseChannel = new TH1D("signalNoiseChannel", "", 200, 0., tmp->GetMaximum()); + calcBeamTime(); + + printf("HighestBin: %d \n", highestTimeBin); +} + +TH1D *Beammon::GetPrelimProfile() +{ + if (!prelimBeam) + { + printf("WARNING: preliminary profile not yet generated"); + } + return prelimBeam; +} + +TH1D *Beammon::TimeAverage(int timeStart, int timeStop) +{ + if (timeStart == -1) + timeStart = startTime; + if (timeStop == -1) + timeStop = stopTime; + int count = 0; + TH1D *res = new TH1D("timeAverage", "time average", 64, 0.5, 64.5); + TH1D *tmp; + printf("\n\n start: %d, stop: %d \n\n", timeStart, timeStop); + for (int i = timeStart; i <= timeStop; i++) + { + tmp = GetChannelSlice(i, 0); + if (isAboveThreshold(tmp)) + { + res->Add(tmp, 1.); + count++; + } + delete tmp; + } + if (count) + { + for (int n = 1; n <= 64; n++) + { + res->SetBinContent(n, res->GetBinContent(n) / count); + } + return res; + } + else + return 0; +} + +TH1D *Beammon::TimeIntSignal(int timeStart, int timeStop) +{ + if (timeStart == -1) + timeStart = startTime; + if (timeStop == -1) + timeStop = stopTime; + TH1D *res = new TH1D("timeAverage", "time average", 64, 0.5, 64.5); + TH1D *tmp; + for (int i = timeStart; i < timeStop; i++) + { + tmp = GetChannelSlice(i, 0); + if (isAboveThreshold(tmp)) + { + res->Add(tmp, 1.); + beamOnTime++; + } + delete tmp; + } + return res; +} + +TH1D *Beammon::AverageHist(int dir, int timeStart, int timeStop) +{ // dir = 0 => x direction, 1 => y + + TH2D *hist = timePosHist; + + int nbins1, nbins2; + double binStart, binStop; + int firstBin, secondBin; + if (!dir) + { + // Timeaverage + if ((timeStart != -1) && (timeStop != -1)) + { + firstBin = timeStart; //hist->GetYaxis()->FindBin((timeStart-startTime)/readOutFreq); + secondBin = timeStop; //hist->GetYaxis()->FindBin((timeStop-startTime)/readOutFreq); + nbins1 = hist->GetNbinsX(); + nbins2 = secondBin - firstBin; + binStart = hist->GetXaxis()->GetBinCenter(1); + binStop = hist->GetXaxis()->GetBinCenter(nbins1); + } + else + { + nbins1 = hist->GetNbinsX(); + nbins2 = hist->GetNbinsY(); + binStart = hist->GetXaxis()->GetBinCenter(1); + binStop = hist->GetXaxis()->GetBinCenter(nbins1); + firstBin = 1; + secondBin = nbins2; + } + } + else + { + nbins1 = hist->GetNbinsY(); + nbins2 = hist->GetNbinsX(); + binStart = hist->GetYaxis()->GetBinCenter(1); + binStop = hist->GetYaxis()->GetBinCenter(nbins1); + firstBin = 1; + secondBin = hist->GetNbinsX(); + } + + TH1D *retHist = new TH1D("average", "average", nbins1, binStart, binStop); + for (int i = 1; i <= nbins1; i++) + { + int count = 0; + double avg = 0; + + for (int j = firstBin; j <= secondBin; j++) + { + + if (!dir) + { + /*bool beam = beamOnVector[j]; + if(beam==false) + continue; + //else + //printf("TRUE");*/ + avg += hist->GetBinContent(i, j); + } + else + avg += hist->GetBinContent(j, i); + count++; + } + if (count > 0) + avg /= count; + retHist->SetBinContent(i, avg); + } + + return retHist; +} + +TH1D *Beammon::GetTimeAvg() +{ + int n = spillTimes.size(); + TH1D *res = new TH1D("timeAverage", "time average", 64, 0.5, 64.5); + for (int i = 0; i < n; i++) + { + TH1D *tmp = TimeAverage(spillTimes[i].first, spillTimes[i].second); + if (!tmp) + printf("\n\n timeAvgHist is Null! \n\n"); + if (tmp) + res->Add(tmp, 1. / n); + } + res->SetTitle("average beam profile"); + return res; +} + +TH1D *Beammon::GetTimeAvg(int nSpill) +{ + if (nSpill >= spillTimes.size()) + return 0; + TH1D *res = TimeAverage(spillTimes[nSpill].first, spillTimes[nSpill].second); + res->SetTitle("average beam profile"); + return res; +} + +TH1D *Beammon::GetTimeAvg(int nSpill, int nMeasurements) +{ + if (nSpill >= spillTimes.size()) + return 0; + TH1D *res = TimeAverage(spillTimes[nSpill].second - nMeasurements, spillTimes[nSpill].second); + TString title = TString::Format("average beam profile, %d ms, spill %d", nMeasurements, nSpill); + TString name = TString::Format("avg%dmsspill%d", nMeasurements, nSpill); + res->SetTitle(title.Data()); + res->SetName(name.Data()); + return res; +} + +TH2D *Beammon::GetTimeAvgScatter(int nSpill, int nMeasurements) +{ + + int tStart = spillTimes[nSpill].first; + if (nMeasurements == -1) + tStart = spillTimes[nSpill].second - nMeasurements; + + TH2D *res = new TH2D("tavgScatter", "tavgScatter", 64, 0.5, 64.5, 400, 0., highVal); + for (int i = spillTimes[nSpill].first; i < spillTimes[nSpill].second; i++) + { + TH1D *tmp = GetChannelSlice(i, 0); + if (!isAboveThreshold(tmp)) + continue; + for (int bin = 1; bin <= 64; bin++) + { + res->Fill(bin, tmp->GetBinContent(bin)); + } + delete tmp; + } + TString title = TString::Format("beam profile, %d ms, spill %d", nMeasurements, nSpill); + res->SetTitle(title.Data()); + return res; +} + +TH2D *Beammon::GetTimeAvgScatter() +{ + TH2D *res = new TH2D("tavgScatter", "tavgScatter", 64, 0.5, 64.5, 400, 0., highVal); + int n = spillTimes.size(); + for (int i = 0; i < n; i++) + { + res->Add(GetTimeAvgScatter(i, -1), 1. / n); + } + return res; +} + +TH1D *Beammon::GetChannelSigDist(int channel) +{ + + TString sName = TString("signal distribution channel ") + TString(channel); + double maxAmp = 0; + for (int n = 0; n < spillTimes.size(); n++) + { + TH1D *tmp = GetSpillSlice(n); + if (tmp->GetMaximum() > maxAmp) + maxAmp = tmp->GetMaximum(); + delete tmp; + } + TH1D *res = new TH1D(sName.Data(), sName.Data(), 200, 0., maxAmp); + for (int n = 0; n < spillTimes.size(); n++) + { + TH1D *tmp = GetSpillSlice(n); + for (int bin = 1; bin <= tmp->GetNbinsX(); bin++) + { + res->Fill(tmp->GetBinContent(bin)); + //printf("bin: %d, amp: %f \n", bin, tmp->GetBinContent(bin)); + } + delete tmp; + } + return res; +} + +TH1D *Beammon::GetChannelAvg(bool beamOn) +{ + return AverageHist(1, -1, -1); +} + +TH1D *Beammon::GetTimeSlice(int channel, int timeStart, int timeStop, bool beamOn) +{ + + if (timeStart == -1) + timeStart = startTime; + if (timeStop == -1) + timeStop = stopTime; + + int nbins = timeStop - timeStart; + + TH1D *tmp2 = new TH1D("ts", "timeslice", nbins, (timeStart - startTime) / readOutFreq, (timeStop - startTime) / readOutFreq); + + if (channel == -1) + channel = highestChannelBin; + + TH1D *tmp = timePosHist->ProjectionY("", channel, channel); + + int offset = tmp->GetXaxis()->FindBin(timeStart); + for (int bin = 1; bin <= nbins; bin++) + { + tmp2->SetBinContent(bin, tmp->GetBinContent(bin + offset)); + } + TString title = TString::Format("time projection of channel %d", channel); + tmp2->SetTitle(title.Data()); + + return tmp2; +} + +TCanvas *Beammon::GetTimeSliceCanvas(int channel) +{ + + TCanvas *c1 = new TCanvas(); + c1->SetName("timeslice"); + int nbins = stopTime - startTime; + + TH1D *tmp2 = new TH1D("timeslice", "", nbins, 0., (stopTime - startTime) / readOutFreq); + + if (channel == -1) + channel = highestChannelBin; + + TH1D *tmp = timePosHist->ProjectionY("", channel, channel); + + for (int bin = 1; bin <= nbins; bin++) + { + tmp2->SetBinContent(bin, tmp->GetBinContent(bin)); + } + + tmp2->GetXaxis()->SetTitle("times [s]"); + TString label; + label.Form("adc counts / %d #mus", intTime); + tmp2->GetYaxis()->SetTitle(label.Data()); + + tmp2->Draw("P"); + return c1; +} + +TCanvas *Beammon::GetSignalNoiseChannel(int channel) +{ + + TCanvas *c1 = new TCanvas(); + c1->SetName("signalNoiseChannel"); + int nbins = stopTime - startTime; + + if (channel == -1) + channel = highestChannelBin; + + TH1D *tmp = timePosHist->ProjectionY("", channel, channel); + + for (int bin = 1; bin <= nbins; bin++) + { + signalNoiseChannel->Fill(tmp->GetBinContent(bin)); + } + + signalNoiseChannel->GetYaxis()->SetTitle("entries"); + TString label; + label.Form("adc counts / %d #mus", intTime); + signalNoiseChannel->GetXaxis()->SetTitle(label.Data()); + + signalNoiseChannel->Draw(); + return c1; +} + +TH1D *Beammon::GetChannelSlice(int time, int offset) +{ + if (time == -1) + time = highestTimeBin + offset; + //printf("time: %d\n", time); + TH1D *res = timePosHist->ProjectionX("", time, time); //timePosHist->ProjectionX("",timePosHist->GetYaxis()->FindBin(time+offset),timePosHist->GetYaxis()->FindBin(time+offset)); + //res->SetError(channelErrors); + res->SetTitle("single measurement (1ms)"); + res->SetName("Channel_" + (TString)time); + res->Fit("gaus", "Q0"); + double mean = res->GetFunction("gaus")->GetParameter(1); + double sigma = res->GetFunction("gaus")->GetParameter(2); + return res; +} + +TH1D *Beammon::GetChannelSlice2(int time, int offset) +{ + if (time == -1) + time = highestTimeBin + offset; + //printf("time: %d\n", time); + TH1D *res = timePosHist->ProjectionX("", time, time); //timePosHist->ProjectionX("",timePosHist->GetYaxis()->FindBin(time+offset),timePosHist->GetYaxis()->FindBin(time+offset)); + //res->SetError(channelErrors); + res->SetTitle("single measurement (1ms)"); + res->SetName("Channel_" + (TString)time); + res->Fit("gaus", "Q0"); + double mean = res->GetFunction("gaus")->GetParameter(1); + mean_ave += mean; + double sigma = res->GetFunction("gaus")->GetParameter(2); + sigma_ave += sigma; + return res; +} + +TGraphErrors *Beammon::GetChannelGraph(int time, int offset) +{ + if (time == -1) + time = highestTimeBin + offset; + double xErr = 0.8 / sqrt(12); + TH1D *res = timePosHist->ProjectionX("", time, time); + TGraphErrors *graph = new TGraphErrors(64); + for (int ch = 1; ch <= 64; ch++) + { + graph->SetPoint(ch, ch, res->GetBinContent(ch)); + // graph->SetPointError(ch,xErr,channelErrors[ch-1]);//sqrt(channelErrors[ch-1]*channelErrors[ch-1]+res->GetBinContent(ch))); + graph->SetPointError(ch, xErr, channelErrors[ch - 1]); + } + delete res; + return graph; +} + +TH1D *Beammon::GetChannelGraphHist(int time, int offset) +{ + if (time == -1) + time = highestTimeBin + offset; + double xErr = 0.8 / sqrt(12); + TH1D *res = timePosHist->ProjectionX("", time, time); + return res; +} + +TH1D *Beammon::GetSignalOverTime() +{ + TH1D *tmp = timePosHist->ProjectionY("", 1, 64); + tmp->SetTitle("signal over time"); + tmp->SetName("signal over time"); + return tmp; +} + +void Beammon::PrintSpillTimes() +{ + printf("%lu spills recorded: \n", spillTimes.size()); + // cout << spillTimes.size() << "spills recorded: " << endl; + for (int n = 0; n < spillTimes.size(); n++) + printf("%02d: %f - %f \n", n, (spillTimes[n].first - startTime) / readOutFreq, (spillTimes[n].second - startTime) / readOutFreq); +} + +TH1D *Beammon::calcTimeCenters(int start, int stop) +{ + + int tStart = start; + int tStop = stop; + + if (start == -1) + tStart = startTime; + if (stop == -1) + tStop = stopTime; + + int nbins = (tStop - tStart); + double mean = 0; + double sigma = 0; + + double constant; + + + TH1D *res = new TH1D("timeIntSignal_tmp", "time integrated signal", 64, 0.5, 64.5); + TCanvas *tmpcanvas = new TCanvas(); + int offset = tStart; + + TF1 *fit = new TF1("gaus_L", "gaus+[3]", 1, 64); + + TF1 *fit2 = new TF1("gaus_2", "gaus", 1, 64); + fit2->SetParameter(0, 2000); + fit2->SetParameter(1, mean_ave); + fit2->SetParameter(2, sigma_ave); + + for (int bin = tStart; bin <= tStop; bin++) + { + TGraphErrors *tmp = GetChannelGraph(bin, 0); + TH1D *tmp2 = GetChannelGraphHist(bin, 0); + + tmp->Fit("gaus_2", "Q0", "", mean_ave - 3 * sigma_ave, mean_ave + 3 * sigma_ave); + TF1 *func = tmp->GetFunction("gaus_2"); + + if (tmp2->GetMean() * 0.8 > 0) + fibreHist_weighted->SetBinContent(bin + 1, tmp2->GetMean() * 0.8); + else + fibreHist_weighted->SetBinContent(bin + 1, 0); + if (tmp2->GetEntries() > 0) + sigHist_weighted->SetBinContent(bin - 1, tmp2->GetEntries() * signalToParticles); + else + sigHist_weighted->SetBinContent(bin - 1, 0); + + if (func) + { + + if (!isAboveThreshold(tmp)) + continue; + + constant = func->GetParameter(0); + mean = func->GetParameter(1) * channelWidth; + sigma = func->GetParameter(2) * channelWidth; + + if (mean <= 0 || mean > 64) + continue; + + /*if (constant > 1e5 || mean > (mean_ave * channelWidth + 0.2) || mean < (mean_ave * channelWidth - 0.2)) + { + fit->SetParameter(0, 1000); + fit->SetParameter(1, mean_ave); + fit->SetParameter(2, sigma_ave); + fit->SetParameter(3, 0.1); + fit->SetParLimits(0, 100, 2e5); + fit->SetParLimits(1, 1, 64); + fit->SetParLimits(2, 1, 10); + fit->SetParLimits(3, -50, 50); + tmp->Fit("gaus", "Q0", "", mean_ave - 3 * sigma_ave, mean_ave + 3 * sigma_ave); + func = tmp->GetFunction("gaus"); + constant = func->GetParameter(0); + mean = func->GetParameter(1) * channelWidth; + sigma = func->GetParameter(2) * channelWidth; + }*/ + + if (abs(constant) > 1e5) + { + + Fit_Fail_Number = Fit_Fail_Number - 1; + if (Fit_Fail_Number > 0) + { + tmpcanvas->cd(); + tmp->Draw("AP"); + func->Draw("SAME"); + tmpcanvas->Modified(); + tmpcanvas->Write(); + } + continue; + } + + //Fill the error hidto + double erry, tmpx; + bool discard = false; + int nPoint = 0; + for (int chn = 1; chn < 65; chn++) + { + tmp->GetPoint(nPoint, tmpx, erry); + SignalErrHist->Fill((double)tmpx, (erry - func->Eval(tmpx)) / (constant * sigma)); + if ((erry - func->Eval(tmpx)) / (constant * sigma) > discardUpperThreshold || (erry - func->Eval(tmpx)) / (constant * sigma) < discardLowerThreshold) + { + tmp->RemovePoint(nPoint); + nPoint--; + discard = true; + } + nPoint++; + } + + + double signal = sigma * 2.51 * constant * signalToParticles; + + //Fill the new tree + event_count++; + //data->GetEntry(bin); + beamPosX_1 = mean; + beamFocusX_1 = 2.35 * sigma; + beamSignal_1 = signal; + ic1_1 = ic1Hist->GetBinContent(bin - alignintIc); + ic2_1 = ic2Hist->GetBinContent(bin - alignintIc); + mw1_focusx_1 = mw1_focusxHist->GetBinContent(bin - alignint); + mw1_posx_1 = mw1_posxHist->GetBinContent(bin - alignint); + mw2_focusx_1 = mw2_focusxHist->GetBinContent(bin - alignint); + mw2_posx_1 = mw2_posxHist->GetBinContent(bin - alignint); + beamOn = 1; + newdata->Fill(); + if (event_count % 5000 == 0) + { + printf("Signal events: %d ", event_count); + printf("Event number: %d\n", bin); + } + + if (signal < 0 || signal != signal) + continue; + + //Fill the Histograms + beamPosX->Fill(mean); + fibreHist->Fill(bin, mean); + mwpcHist->Fill(bin, mw1_posxHist->GetBinContent(bin - alignint)); + beamFocusX->Fill(2.35 * sigma); + beamPosTimeGraph->SetPoint(bin, bin, mean); + beamPosTimeGraph->SetPointError(bin, 0., func->GetParError(1)); + timeCenters->Fill((bin) / readOutFreq, mean); + timeWidths->Fill((bin) / readOutFreq, sigma * 2.35); + timeCenters_MWPC->Fill((bin) / readOutFreq, mw1_posxHist->GetBinContent(bin - alignint)); + timeWidths_MWPC->Fill((bin) / readOutFreq, mw1_focusxHist->GetBinContent(bin - alignint)); + Diff_timeCenters->Fill((bin) / readOutFreq, mean - mw1_posxHist->GetBinContent(bin - alignint) - shift); + + if (mw1_posxHist->GetBinContent(bin - alignint) < 20) + { + mwPosScatterGraph->SetPoint(mwPosScatterGraph->GetN(), mw1_posxHist->GetBinContent(bin - alignint), mean); + //positionComp->Fill(mean - mw1_posxHist->GetBinContent(bin-4) +111.5415 - 32.02); + for (int i = 0; i < 20; i++) + mwPosScatterPlot[i]->Fill(mw1_posxHist->GetBinContent(bin - i + 10), mean); + } + double sigError = 2.51 * sqrt(sigma * sigma * func->GetParError(0) * func->GetParError(0) + constant * constant * func->GetParError(2) * func->GetParError(2)) * signalToParticles; + if (signal > 1e5 || sigError > signal) + { + //signal = 0; + sigError = 0; + } + if (signal) + { + signalDist->Fill(signal); + if (ic1Hist->GetBinContent(bin - alignintIc)) + { + sigHist->Fill(bin - alignintIc - 1, signal); + signalComp->Fill((signal - ic1Hist->GetBinContent(bin - alignintIc)) / signal); + double x, y, totalSignal = 0, signalError = 0; + for (int k = 0; k < 63; k++) + { + tmp->GetPoint(k, x, y); + signalError += tmp->GetErrorY(k) * tmp->GetErrorY(k); + totalSignal += y * signalToParticles; + } + signalError = sqrt(signalError) * signalToParticles; + sigIcScatterGraph->SetPoint(sigIcScatterGraph->GetN(), ic1Hist->GetBinContent(bin - alignintIc), totalSignal); + sigIcScatterGraph->SetPointError(sigIcScatterGraph->GetN(), 0, signalError); + for (int i = 0; i < 20; i++) + sigIcScatterPlot[i]->Fill(ic1Hist->GetBinContent(bin - i + 10), signal); + Center_Signal->Fill(signal, mean); + // sigIcScatterPlot[14]->Fill(ic1Hist->GetBinContent(bin - 14 + 10), signal); + sigIcScatterPlot_ic2->Fill(ic2Hist->GetBinContent(bin - 14 + 10), signal); + } + } + else + { + //ic1Hist->SetBinContent(bin, 0); + } + + widthComp->Fill(sigma * 2.51 - mw1_focusxHist->GetBinContent(bin - alignint)); + //Center_Signal->Fill(totalSignal, mean); + Diff_hist->Fill(mean - mw1_posxHist->GetBinContent(bin - alignint) - shift); + Diff_Signal->Fill(signal, mean - mw1_posxHist->GetBinContent(bin - alignint) - shift); + Diff_ic1->Fill(ic1Hist->GetBinContent(bin - alignintIc), mean - mw1_posxHist->GetBinContent(bin - alignint) - shift); + + icIntegral += ic1Hist->GetBinContent(bin); + signalTimeGraph->SetPoint(bin, bin, signal); + + signalTimeGraph->SetPointError(bin, 0., sigError); + beamOnTime++; + + double c2 = func->GetChisquare() / func->GetNDF(); + if (c2 < 100) + chisquareDist->Fill(c2); + } + delete func; + delete tmp; + delete tmp2; + } + delete tmpcanvas; + return res; +} + +void Beammon::GetTimeCenters() +{ + + TH1D *tmp_TimeCenter; + double mean_MWPC = mwPosX->GetMean(); + shift = mean_ave * 0.8 / 5 - mwPosX->GetMean(); + double max_ic1 = ic1Hist->GetMaximum(); + + beamOnTime = 0; + int nbins = stopTime - startTime; + mean_ave = prelimBeam->GetMean(); + sigma_ave = prelimBeam->GetStdDev(); + printf("Mean: %f \n", mean_ave); + printf("Sigma: %f \n", sigma_ave); + + timeCenters = new TH2D("timeCenters", "", nbins / 100, 0., (stopTime - startTime) / readOutFreq, 200, (0.8 * mean_ave - 6. * sigma_pos), (0.8 * mean_ave + 6 * sigma_pos)); + timeWidths = new TH2D("timeWidths", "", nbins / 100, 0., (stopTime - startTime) / readOutFreq, 200, 0.4 * sigma_ave * 2.35, 0.95 * sigma_ave * 2.35); + timeIntSignal = new TH1D("timeIntSignal", "time integrated signal", 64, 0.5, 64.5); + timeCenters_MWPC = new TH2D("timeCenters_MWPC", "", nbins / 100, 0., (stopTime - startTime) / readOutFreq, 200, mean_MWPC - 5 * sigma_pos, mean_MWPC + 5 * sigma_pos); + timeWidths_MWPC = new TH2D("timeWidths_MWPC", "", nbins / 100, 0., (stopTime - startTime) / readOutFreq, 200, 1.5, mw1_focusxHist->GetMaximum() * 1.05); + timeIntSignal_MWPC = new TH1D("timeIntSignal_MWPC", "time integrated signal", 64, 0.5, 64.5); + + for (int j = 0; j < 20; j++) + { + TString name; + name.Form("sigIcScatterPlot%d", j); + sigIcScatterPlot[j] = new TH2D(name.Data(), name.Data(), 200, 0, -1, 200, 0, -1); + TString name2; + name2.Form("mwPosScatterPlot%d", j); + mwPosScatterPlot[j] = new TH2D(name2.Data(), name2.Data(), 200, mean_MWPC - 0.1 * sigma_ave, mean_MWPC + 0.1 * sigma_ave, 200, 0.8 * (mean_ave - 0.15 * sigma_ave), 0.8 * (mean_ave + 0.15 * sigma_ave)); + } + sigIcScatterPlot_ic2 = new TH2D("sigIcScatterPlot_ic2", "sigIcScatterPlot_ic2", 200, 0, -1, 200, 0, -1); + + Center_Signal = new TH2D("Center_Signal", "", 200, 0., max_ic1 - 5000, 200, (0.8 * mean_ave - 5 * sigma_pos), (0.8 * mean_ave + 5 * sigma_pos)); + Diff_timeCenters = new TH2D("Diff_time", "", nbins / 100, 0., (stopTime - startTime) / readOutFreq, 200, -6 * sigma_pos, 6 * sigma_pos); + Diff_hist = new TH1D("Diff_hist", "l", 200, -2, 2.); + Diff_Signal = new TH2D("Diff_Signal", "", 200, 0., max_ic1 - 5000, 200, -6 * sigma_pos, 6 * sigma_pos); + Diff_ic1 = new TH2D("Diff_ic1", "", 200, 0., max_ic1 - 5000, 200, -6 * sigma_pos, 6 * sigma_pos); + + b_beamPosX_1 = newdata->Branch("beamPosX_1", &beamPosX_1); + b_beamFocusX_1 = newdata->Branch("beamFocusX_1", &beamFocusX_1); + b_beamSignal_1 = newdata->Branch("beamSignal_1", &beamSignal_1); + bb_ic1 = newdata->Branch("ic1_1", &ic1_1); + bb_ic2 = newdata->Branch("ic2_1", &ic2_1); + bb_mw1_focusx = newdata->Branch("mw1_focusx_1", &mw1_focusx_1); + bb_mw1_posx = newdata->Branch("mw1_posx_1", &mw1_posx_1); + bb_mw2_focusx = newdata->Branch("mw2_focusx_1", &mw2_focusx_1); + bb_mw2_posx = newdata->Branch("mw2_posx_1", &mw2_posx_1); + b_beamOn = newdata->Branch("beamOn", &beamOn); + + newdata->SetBranchStatus("*", 1); + for (int i = 0; i < spillTimes.size(); i++) + { + tmp_TimeCenter = calcTimeCenters(spillTimes[i].first + 200, spillTimes[i].second); + timeIntSignal->Add(tmp_TimeCenter, 1.); + delete tmp_TimeCenter; + beamPosX_1 = 0; + beamFocusX_1 = 0; + beamSignal_1 = 0; + ic1_1 = 0; + mw1_focusx_1 = 0; + mw1_posx_1 = 0; + beamOn = 0; + newdata->Fill(); + } + SignalErrHist->Write(); + printf("Fit_Fail_Counts=%d\n", Fit_Fail_Counts); + + //Draw timeCenter + timeCenters->GetXaxis()->SetTitle("time [s]"); + TString label; + label.Form("mean position[mm]"); + timeCenters->GetYaxis()->SetTitle(label.Data()); + timeCenters->Write(); + + //Draw timeCenter_MWPC + timeCenters_MWPC->GetXaxis()->SetTitle("time [s]"); + TString label2; + label2.Form("mean position[mm]"); + timeCenters_MWPC->GetYaxis()->SetTitle(label.Data()); + timeCenters_MWPC->Write(); + + //Draw timeWidths + timeWidths->GetXaxis()->SetTitle("time [s]"); + TString label12; + label12.Form("width fiber[mm]"); + timeWidths->GetYaxis()->SetTitle(label12.Data()); + timeWidths->Write(); + + //Draw timeWidths_MWPC + timeWidths_MWPC->GetXaxis()->SetTitle("time [s]"); + TString label13; + label13.Form("width MWPC[mm]"); + timeWidths_MWPC->GetYaxis()->SetTitle(label12.Data()); + timeWidths_MWPC->Write(); + + Center_Signal->GetXaxis()->SetTitle("Signal [particles]"); + TString label123; + label123.Form("Position_Fiber[mm]"); + Center_Signal->GetYaxis()->SetTitle(label123.Data()); + Center_Signal->Write(); + Center_Signal->ProfileX()->Write(); + + //Draw Diff_timeCenters + Diff_timeCenters->GetXaxis()->SetTitle("time [s]"); + TString label3; + label3.Form("mean position diff[mm]"); + Diff_timeCenters->GetYaxis()->SetTitle(label.Data()); + Diff_timeCenters->Write(); + + //Draw Diff_Signal + Diff_Signal->GetXaxis()->SetTitle("signal"); + TString label4; + label4.Form("mean position diff[mm]"); + Diff_Signal->GetYaxis()->SetTitle(label.Data()); + Diff_Signal->Write(); + + //Draw Diff_Signal + Diff_ic1->GetXaxis()->SetTitle("ic1"); + TString label5; + label5.Form("mean position diff[mm]"); + Diff_ic1->GetYaxis()->SetTitle(label.Data()); + Diff_ic1->Write(); + + TObjArray aSlices, bSlices; + Diff_Signal->FitSlicesY(0, 0, -1, 5, "QNR", &aSlices); + for (int i = 0; i < 4; i++) + { + aSlices[i]->Write(); + } + Diff_ic1->FitSlicesY(0, 0, -1, 5, "QNR", &bSlices); + for (int i = 0; i < 4; i++) + { + bSlices[i]->Write(); + } + mean_ave = beamPosX->GetMean(); + sigma_pos = beamPosX->GetStdDev(); + sigma_ave = beamFocusX->GetMean(); + return; +} + +pair Beammon::GetSpillTimes(int nSpill) +{ + + return spillTimes[nSpill]; +} + +TH2D *Beammon::GetSpillCenters(int nSpill) +{ + + //return calcTimeCenters(spillTimes[nSpill].first, spillTimes[nSpill].second); +} + +TH1D *Beammon::GetSpillSlice(int nSpill) +{ + return GetTimeSlice(-1, spillTimes[nSpill].first - 500, spillTimes[nSpill].second + 500, true); +} + +TH1D *Beammon::GetSignalDistribution() +{ + /*int n = signalDist->GetNbinsX(); + for(int i = 1; i<= n; i++){ + signalDist->SetBinContent(i,signalDist->GetBinContent(i)*signalDistScale); + }*/ + signalDist->Scale(signalDistScale); + return signalDist; +} + +TCanvas *Beammon::GetSignalDistributionCanvas() +{ + TCanvas *c1 = new TCanvas(); + c1->SetName("signalDistributionCanvas"); + + signalDist->Draw(); + signalDist->SetTitle(""); + signalDist->GetYaxis()->SetTitle("entries"); + TString label; + label.Form("integrated signal [adc counts / %d #mus]", intTime); + signalDist->GetXaxis()->SetTitle(label.Data()); + //c1->SaveAs("dummy"); + return c1; +} + +TH2D *Beammon::GetSimpleView() +{ + return timePosHist; +} + +TH1D *Beammon::GetBaselineHist() +{ + TH1D *tmp = new TH1D("baseline", "baseline", 64, 0.5, 64.5); + for (int n = 1; n <= 64; n++) + { + tmp->SetBinContent(n, baseline[n - 1]); + } + return tmp; +} + +void Beammon::Close() +{ + + delete timePosHist; + fileOut->Close(); +} + +double Beammon::GetIntSignal() +{ + + return intSignal; +} + +int Beammon::GetBeamOnTime() +{ + return beamOnTime; +} + +double Beammon::GetSignalStd() +{ + return signalDist->GetStdDev(1); +} + +bool Beammon::isAboveThreshold(TGraphErrors *slice) +{ + double channel, signal; + slice->GetPoint(highestChannelBin, channel, signal); + if (signal > beamOnAdcVal) + return true; + else + return false; +} + +bool Beammon::isAboveThreshold(TH1D *slice) +{ + double val = slice->GetBinContent(highestChannelBin); + if (val > beamOnAdcVal) + return true; + else + return false; +} + +bool Beammon::isAboveThreshold(double val) +{ + // old version using the gaussian fit to the measurement + if (val > beamOnAdcVal) + return true; + else + return false; + /* + if(val > baselineIntegral * 1.5 && val < baselineIntegral *100) + return true; + else + return false;*/ +} + +TH1D *Beammon::icSignalComp() +{ + icSignalDist = new TH1D("icSignal", "icSignal", 200, 0., ic1Hist->GetMaximum()); + TH1D *icSignalDist2 = new TH1D("icSignal2", "icSignal2", 200, 0., ic2Hist->GetMaximum()); + for (int i = 0; i < ic1Hist->GetNbinsX(); i++) + { + if (ic1Hist->GetBinContent(i) != 0) + icSignalDist->Fill(ic1Hist->GetBinContent(i)); + if (ic2Hist->GetBinContent(i) != 0) + icSignalDist2->Fill(ic2Hist->GetBinContent(i)); + } + icSignalDist2->Write(); + return icSignalDist; +} + +TCanvas *Beammon::signalOverTime2d() +{ + + TCanvas *c1 = new TCanvas(); + c1->SetName("signalOverTime2d"); + TH1D *tmp = GetSignalOverTime(); + int binsX = tmp->GetNbinsX(); + int max = tmp->GetMaximum(); + int min = tmp->GetMinimum(); + TH2D *res = new TH2D("sigTime2d", "", binsX / 200, 0., binsX / readOutFreq, 100, min, max); + for (int k = 0; k < binsX; k++) + { + res->Fill(k / readOutFreq, tmp->GetBinContent(k)); + } + + res->Draw("colz"); + res->GetXaxis()->SetTitle("time [s]"); + TString label; + label.Form("adc counts / %d #mus", intTime); + res->GetYaxis()->SetTitle(label.Data()); + //c1->SaveAs("dummy"); + res->Write(); + return c1; +} + +double Beammon::calcBeamTime() +{ + + beamOnTime = 0; + for (int i = 0; i < spillTimes.size(); i++) + { + beamOnTime += spillTimes[i].second - spillTimes[i].first; + } + return beamOnTime; +} + +TCanvas *Beammon::PrintProfile(int offset) +{ + TCanvas *c1 = new TCanvas(); + c1->cd(); + //TH1D *res = GetChannelSlice(-1,offset); + TGraphErrors *res = new TGraphErrors(64); + TGraphErrors *tmp = GetChannelGraph(-1, offset); + + double x, y, errx, erry; + for (int ch = 0; ch < 63; ch++) + { + tmp->GetPoint(ch, x, y); + x *= 0.8; + errx = 0; + erry = tmp->GetErrorY(ch); + res->SetPoint(ch, x, y); + res->SetPointError(ch, errx, erry); + } + + res->Fit("gaus", "Q0"); + + double stepsize = 0.01; + double lim = res->GetFunction("gaus")->GetMaximum() / 2; + + double val, x1, x2, pos = 0; + bool below = true; + while (pos <= 64) + { + val = res->GetFunction("gaus")->Eval(pos); + if (below && val >= lim) + { + x1 = pos; + below = false; + } + else if (below == false && val <= lim) + { + x2 = pos; + break; + } + pos += stepsize; + } + fwhm = (x2 - x1) * channelWidth; + + res->Draw("AP"); + + TString sName; + sName.Form("Profile%d", offset); + c1->SetName(sName.Data()); + res->SetTitle(""); + res->GetXaxis()->SetTitle("position [mm]"); + TString label; + label.Form("adc counts / %d #mus", intTime); + res->GetYaxis()->SetTitle(label.Data()); + res->GetYaxis()->SetTitleOffset(1.4); + + TString str; + str.Form("fwhm = %.3f mm", fwhm); + TText *t = new TText(34, 900, str.Data()); + t->Draw("SAME"); + delete t; + delete res; + + c1->Update(); + c1->Modified(); + //c1->SaveAs(sName.Data()); + return c1; +} +TCanvas *Beammon::FitSnapshot(int offset) +{ + + //gSyle->SetOptFit(1111); + TCanvas *c1 = new TCanvas(); + c1->cd(); + TGraphErrors *res = GetChannelGraph(-1, offset); + TString sName; + sName.Form("Snapshot%d", offset); + c1->SetName(sName.Data()); + res->SetTitle(""); + res->GetXaxis()->SetTitle("channel"); + TString label; + label.Form("adc counts / %d #mus", intTime); + res->GetYaxis()->SetTitle(label.Data()); + res->GetYaxis()->SetTitleOffset(1.4); + //res->Fit("gaus"); + + res->Fit("gaus"); + double mean = res->GetFunction("gaus")->GetParameter(1); + double sigma = res->GetFunction("gaus")->GetParameter(2); + double constant = res->GetFunction("gaus")->GetParameter(0); + + TF1 *func = new TF1("doublegaus", fitfunc, 0, 64, 6); // t + func->SetNpx(1000); + func->SetParameter(0, constant); + func->SetParameter(1, mean); + func->SetParameter(2, sigma); + func->SetParameter(3, constant); + func->SetParameter(4, sigma); + func->SetParameter(5, 0.); + func->SetParLimits(1, 0., 64.); + func->SetParLimits(2, 1., 20.); + func->SetParLimits(4, 5., 100.); + //func->SetParameter(5,0.); + res->Fit("doublegaus"); + + res->Draw("AP"); + c1->SaveAs(sName.Data()); + return c1; +} + +TCanvas *Beammon::FitAverage() +{ + + TCanvas *c1 = new TCanvas(); + c1->cd(); + int n = spillTimes.size(); + double yValues[64]; + double yErrors[64]; + double xValues[64]; + double xErrors[64]; + int count = 0; + double x, y, errY; + TGraphErrors *tmp; + yValues[0] = 0; + + for (int i = 0; i < n; i++) + { + int start = spillTimes[i].first; + int stop = spillTimes[i].second; + for (int k = start; k <= stop; k++) + { + count++; + tmp = GetChannelGraph(k, 0); + for (int bin = 1; bin <= 64; bin++) + { + errY = tmp->GetErrorY(bin); + tmp->GetPoint(bin, x, y); + if (!(y != y || errY != errY)) + + { + yValues[bin - 1] += y; + yErrors[bin - 1] += errY * errY; + } + else + { + yValues[bin - 1] += 0; + yErrors[bin - 1] += 0; + } + } + delete tmp; + } + } + + for (int bin = 0; bin < 64; bin++) + { + xValues[bin] = bin; + xErrors[bin] = 1. / sqrt(12); + yValues[bin] *= 1. / count; + yErrors[bin] = sqrt(yErrors[bin]) / count; + } + + /*for (int i = 0; i < 64; i++) + { + printf("channelErrors[%d]: %f ", i, channelErrors[i]); + printf("yValue[%d]: %f ", i, yValues[i]); + printf("yError[%d]: %f \n", i, yErrors[i]); + }*/ + TGraph *res = new TGraph(64, xValues, yValues); //, xErrors, yErrors); + + c1->SetName("avgGraph"); + res->SetTitle(""); + res->GetXaxis()->SetTitle("channel"); + TString label; + label.Form("adc counts / %d #mus", intTime); + res->GetYaxis()->SetTitle(label.Data()); + res->GetYaxis()->SetTitleOffset(1.4); + + res->Fit("gaus", "Q0"); + double mean = res->GetFunction("gaus")->GetParameter(1); + //mean_ave = mean; + double sigma = res->GetFunction("gaus")->GetParameter(2); + //sigma_ave = sigma; + double constant = res->GetFunction("gaus")->GetParameter(0); + //res->Fit("gaus","","",mean-1.5*sigma,mean+1.5*sigma); + + TF1 *func = new TF1("doublegaus", fitfunc, 0, 64, 6); // t + func->SetNpx(1000); + func->SetParameter(0, constant); + func->SetParameter(1, mean); + func->SetParameter(2, sigma); + func->SetParameter(3, constant); + func->SetParameter(4, sigma); + func->SetParameter(5, 0.); + func->SetParLimits(1, 0., 64.); + func->SetParLimits(2, 1., 20.); + func->SetParLimits(4, 5., 100.); + //func->SetParameter(5,0.); + res->Fit("doublegaus"); + + res->Draw("AP"); + //c1->SaveAs("avgFit"); + + // find fwhm + double stepsize = 0.01; + double lim = res->GetFunction("doublegaus")->GetMaximum() / 2; + + double val, x1, x2, pos = 0; + bool below = true; + while (pos <= 64) + { + val = func->Eval(pos); + if (below && val >= lim) + { + x1 = pos; + below = false; + } + else if (below == false && val <= lim) + { + x2 = pos; + break; + } + pos += stepsize; + } + fwhm = (x2 - x1) * channelWidth; + return c1; +} + +TCanvas *Beammon::PrintChannelNoise(int channel) +{ + + TCanvas *c1 = new TCanvas(); + c1->cd(); + TString name; + name.Form("channelNoise%d", channel); + TString label; + label.Form("adc counts / %d #mus", intTime); + c1->SetName(name.Data()); + channelSig[channel]->SetTitle(""); + channelSig[channel]->SetName(name.Data()); + channelSig[channel]->GetXaxis()->SetTitle(label.Data()); + channelSig[channel]->GetYaxis()->SetTitle("entries"); + + channelSig[channel]->Draw(); + gStyle->SetOptStat("mr"); + gPad->Modified(); + //c1->SaveAs("blub"); + return c1; +} + +TCanvas *Beammon::IcFitSlicesY() +{ + TCanvas *c1 = new TCanvas(); + c1->cd(); + c1->SetName("icFitSlicesY"); + + TH1D *tmp = timePosHist->ProjectionY("", 1, 64); + + TH1D *means = (TH1D *)sigIcScatterPlot[10 + alignintIc]->ProfileY(); //(TH1D*)objectArray[1]; + means->SetLineColor(kBlack); + + //sigIcScatterPlot->Draw(); + means->Draw("E"); + means->GetXaxis()->SetRangeUser(0., means->GetXaxis()->GetXmax()); + means->SetMinimum(0.); + means->SetTitle(""); + //means->SetName("icFitSlicesY"); + TString label1, label2; + label1.Form("mean photodiode signal [particles / %d #mus]", intTime); + label2.Form("ionisation chamber signal [particles / %d #mus]", intTime); + means->GetXaxis()->SetTitle(label2.Data()); + means->GetYaxis()->SetTitle(label1.Data()); + + means->Fit("pol1"); + + //sigIcScatterPlot->Draw(); + gPad->Modified(); + //c1->SaveAs("blub"); + means->Write(); + return c1; +} + +TCanvas *Beammon::PrintSigIcGraph() +{ + TCanvas *c1 = new TCanvas(); + c1->cd(); + + TString name; + name.Form("sigIcScatterGraph"); + TString label, label2; + label.Form("adc counts / %d #mus", intTime); + label2.Form("whatever / %d #mus", intTime); + c1->SetName(name.Data()); + sigIcScatterGraph->SetTitle(""); + sigIcScatterGraph->SetName(name.Data()); + sigIcScatterGraph->GetXaxis()->SetTitle(label2.Data()); + sigIcScatterGraph->GetYaxis()->SetTitle(label.Data()); + + sigIcScatterGraph->Fit("pol1", "W"); + sigIcScatterGraph->Draw("AP"); + gPad->Modified(); + //c1->SaveAs("blub"); + return c1; +} + +TH1D *Beammon::GetMwPosComp() +{ + double bin, mean; + double shift = beamPosX->GetMean() - mwPosX->GetMean(); + //printf("beam: %f \n",beamPosTimeGraph->GetMean(2)); + int n = beamPosTimeGraph->GetN(); + for (int i = 0; i < n; i++) + { + beamPosTimeGraph->GetPoint(i, bin, mean); + if (!mean) + continue; + positionComp->Fill(mean - mw1_posxHist->GetBinContent(bin - alignint) - shift); + } + return positionComp; +} + +// +/// +///////////////////////////////////////////////////////////////////////////// + +TCanvas *Beammon::GetSig_e_ic_Hist() +{ + shift = beamPosX->GetMean() - mwPosX->GetMean(); + printf("shift = %f", shift); + TCanvas *c1 = new TCanvas(); + c1->cd(); + c1->SetName("SignalComp_vs_Time"); + Double_t norm = ic1Hist->Integral(); + ic1Hist->Scale(1. / norm); + ic1Hist->SetLineColor(kRed); + ic1Hist->Draw("HIST L"); + Double_t norm0 = sigHist->Integral(); + Double_t scaleSig = norm / norm0; + sigHist->Scale(1. / norm0); + sigHist->Draw("HIST SAME L"); + TLegend * legend= new TLegend(0.1, 0.7, 0.48, 0.9); + legend->AddEntry(ic1Hist, "ic", "l"); + legend->AddEntry(sigHist, "Fibre", "l"); + legend->Draw(); + + TH1D *compsig = new TH1D("compsig", "compsig", 200, -0.5, 0.5); + for (int i = 0; i < nevents; i++) + { + compsig->Fill((ic1Hist->GetBinContent(i) - sigHist->GetBinContent(i)) * 2 / (ic1Hist->GetBinContent(i) + sigHist->GetBinContent(i))); + } + compsig->Write(); + + TCanvas *c2 = new TCanvas(); + c2->cd(); + c2->SetName("PositionComp_vs_Time"); + TH1D *fibreHistNew = new TH1D("fibreHistNew", "fibreHistNew", nevents, 0., nevents - 1); + for (int i = 0; i < nevents; i++) + { + if (fibreHist->GetBinContent(i) != 0) + { + fibreHistNew->SetBinContent(i, fibreHist->GetBinContent(i) - shift); + } + else + fibreHistNew->SetBinContent(i, 0); + } + fibreHistNew->Draw("HIST L"); + mwpcHist->SetLineColor(kRed); + mwpcHist->SetLineColor(kRed); + mwpcHist->Draw("HIST SAME L"); + TLegend * legend2 = new TLegend(0.1, 0.7, 0.48, 0.9); + legend2->AddEntry(mwpcHist, "MWPC", "l"); + legend2->AddEntry(fibreHistNew, "Fibre", "l"); + legend2->Draw(); + c2->Write(); + return c1; +} + +TCanvas *Beammon::GetSig_e_ic_Hist_Weighted() +{ + TCanvas *c1 = new TCanvas(); + c1->cd(); + c1->SetName("SignalComp_vs_Time_all"); + Double_t norm = ic1Hist->Integral(); + ic1Hist->Scale(1. / norm); + ic1Hist->SetLineColor(kRed); + ic1Hist->SetLineWidth(2); + ic1Hist->Draw("HIST L"); + Double_t norm0 = sigHist_weighted->Integral(); + sigHist_weighted->Scale(1. / norm0); + sigHist_weighted->Draw("HIST SAME L"); + Double_t norm1 = sigHist->Integral(); + sigHist->Scale(1. / norm1); + sigHist->SetLineColor(kBlue); + sigHist->Draw("HIST SAME L"); + TLegend * legend= new TLegend(0.1, 0.7, 0.48, 0.9); + legend->AddEntry(ic1Hist, "ic", "l"); + legend->AddEntry(sigHist, "Fibre_fit", "l"); + legend->AddEntry(sigHist_weighted, "Fibre_sum", "l"); + legend->Draw(); + c1->Write(); + + TH1D *compsig_weighted = new TH1D("compsig_weighted", "compsig", 200, -0.5, 0.5); + for (int i = 0; i < nevents; i++) + { + compsig_weighted->Fill((ic1Hist->GetBinContent(i) - sigHist_weighted->GetBinContent(i)) * 2 / (ic1Hist->GetBinContent(i) + sigHist_weighted->GetBinContent(i))); + } + compsig_weighted->SetLineColor(kRed); + compsig_weighted->Write(); + TH1D *compsig = new TH1D("compsig", "compsig", 200, -0.5, 0.5); + for (int i = 0; i < nevents; i++) + { + compsig->Fill((ic1Hist->GetBinContent(i) - sigHist->GetBinContent(i)) * 2 / (ic1Hist->GetBinContent(i) + sigHist->GetBinContent(i))); + } + c1->cd(); + c1->SetName("CompSig_all"); + compsig->Draw(); + compsig_weighted->Draw("SAME"); +TLegend * legend2 = new TLegend(0.1, 0.7, 0.48, 0.9); + legend2->AddEntry(compsig_weighted, "Weighted", "l"); + legend2->AddEntry(compsig, "Fit", "l"); + legend2->Draw(); + c1->Write(); + + TCanvas *c2 = new TCanvas(); + c2->cd(); + c2->SetName("PositionComp_vs_Time_all"); + TH1D *fibreHistNew_weighted = new TH1D("fibreHistNew_weighted", "fibreHistNew_weighted", nevents, 0., nevents - 1); + for (int i = 0; i < nevents; i++) + { + if (fibreHist_weighted->GetBinContent(i) != 0) + { + fibreHistNew_weighted->SetBinContent(i, fibreHist_weighted->GetBinContent(i) - shift); + } + else + fibreHistNew_weighted->SetBinContent(i, 0); + } + TH1D *fibreHistNew = new TH1D("fibreHistNew", "fibreHistNew", nevents, 0., nevents - 1); + for (int i = 0; i < nevents; i++) + { + if (fibreHist->GetBinContent(i) != 0) + { + fibreHistNew->SetBinContent(i, fibreHist->GetBinContent(i) - shift); + } + else + fibreHistNew->SetBinContent(i, 0); + } + fibreHistNew->Draw("HIST L"); + fibreHistNew->SetLineColor(kBlue); + fibreHistNew_weighted->Draw("HIST L SAME"); + mwpcHist->SetLineColor(kRed); + mwpcHist->SetLineWidth(2); + mwpcHist->Draw("HIST SAME L"); +TLegend * legend3 = new TLegend(0.1, 0.7, 0.48, 0.9); + legend3->AddEntry(mwpcHist, "MWPC", "l"); + legend3->AddEntry(fibreHistNew, "Fibre_fit", "l"); + legend3->AddEntry(fibreHistNew_weighted, "Fibre_Weighted", "l"); + legend3->Draw(); + c2->Write(); + + c2->cd(); + c2->Clear(); + c2->SetName("PosComp_All"); + TH1D *comppos_weighted = new TH1D("comppos_weighted", "comppos", 200, -0.4, 0.4); + for (int i = 0; i < nevents; i++) + { + comppos_weighted->Fill((mwpcHist->GetBinContent(i) - fibreHist_weighted->GetBinContent(i) + shift)); + } + comppos_weighted->SetLineColor(kRed); + comppos_weighted->Write(); + TH1D *comppos = new TH1D("comppos", "comppos", 200, -0.4, 0.4); + for (int i = 0; i < nevents; i++) + { + comppos->Fill((mwpcHist->GetBinContent(i) - fibreHist->GetBinContent(i) + shift)); + } + comppos->Draw(); + comppos_weighted->Draw("SAME"); +TLegend * legend4 = new TLegend(0.1, 0.7, 0.48, 0.9); + legend4->AddEntry(comppos_weighted, "Weighted", "l"); + legend4->AddEntry(comppos, "Fit", "l"); + legend4->Draw(); + return c2; +} diff --git a/Scripts_20161126/beamprofileplot.C b/Scripts_20161126/beamprofileplot.C new file mode 100644 index 0000000..53ff087 --- /dev/null +++ b/Scripts_20161126/beamprofileplot.C @@ -0,0 +1,170 @@ +{ + + gROOT->Reset(); + gROOT->ProcessLine(".x /work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/lhcbStyle.C"); + + + + TFile *_file0_p = TFile::Open("../../HIT_26-11-2016/with_timestamp/SAVE_PiN_run8.root"); + TGraphErrors * g_0p = 0; + _file0_p->GetObject("example",g_0p); + + TFile *_file1_p = TFile::Open("../../HIT_26-11-2016/with_timestamp/SAVE_PiN_run32.root"); + TGraphErrors * g_1p = 0; + _file1_p->GetObject("example",g_1p); + + TFile *_file0_he = TFile::Open("../../HIT_26-11-2016/with_timestamp/SAVE_PiN_run35.root"); + TGraphErrors * g_0he = 0; + _file0_he->GetObject("example",g_0he); + + TFile *_file1_he = TFile::Open("../../HIT_26-11-2016/with_timestamp/SAVE_PiN_run60.root"); + TGraphErrors * g_1he = 0; + _file1_he->GetObject("example",g_1he); + + + + TFile *_file0_c = TFile::Open("../../HIT_26-11-2016/with_timestamp/SAVE_PiN_run63.root"); +TGraphErrors * g_0c = 0; + _file0_c->GetObject("example",g_0c); + TFile *_file1_c = TFile::Open("../../HIT_26-11-2016/with_timestamp/SAVE_PiN_run86.root"); + TGraphErrors * g_1c = 0; + _file1_c->GetObject("example",g_1c); + + + TFile *_file0_o = TFile::Open("../../HIT_26-11-2016/with_timestamp/SAVE_PiN_run89.root"); +TGraphErrors * g_0o = 0; + _file0_o->GetObject("example",g_0o); + TFile *_file1_o = TFile::Open("../../HIT_26-11-2016/with_timestamp/SAVE_PiN_run108.root"); + TGraphErrors * g_1o = 0; + _file1_o->GetObject("example",g_1o); + + TCanvas *c1 = new TCanvas("c1", "canvaspad1", 800, 800); + + + + + gStyle->SetPadBorderMode(0); + gStyle->SetFrameBorderMode(0); + Float_t small = 1e-5; + c1->Divide(2,2,small,small); + + c1->cd(1); + gPad->SetBottomMargin(small); + gPad->SetRightMargin(small); + gPad->SetLeftMargin(0.2); + + TMultiGraph * mg_p = new TMultiGraph(); + mg_p->Add(g_0p,"pc"); g_0p->SetMarkerStyle(20);g_0p->SetMarkerColor(kGray); + mg_p->Add(g_1p,"pc"); g_1p->SetMarkerStyle(20); + mg_p->Draw("a"); + mg_p->SetTitle(""); + // mg_p->GetXaxis()->SetTitle("Stopping Power / MeV#upointcm^{2}g^{-1}"); + mg_p->GetYaxis()->SetTitle("A_{BPM} / a.u./312#mus"); mg_p->GetYaxis()->SetTitleOffset(1.5); + mg_p->GetXaxis()->SetRangeUser(4,64); + mg_p->GetYaxis()->SetRangeUser(-200,3200); + mg_p->SetMinimum(-200.); + mg_p->SetMaximum(3200.); + TLegend * mylegend = new TLegend(0.60,0.8,0.9,0.9); + mylegend->SetFillColor(0); // white background + mylegend->SetTextFont(22); + mylegend->SetBorderSize(0); // get rid of the box + mylegend->SetTextSize(0.045); // set text size + mylegend->AddEntry(g_0p,"Protons E21 I8","p"); // options: p,l,f + mylegend->AddEntry(g_1p,"Protons E255 I8","p"); // options: p,l,f + mylegend->Draw(); + + + gPad->Modified(); + + + c1->cd(2); + gPad->SetBottomMargin(small); + gPad->SetRightMargin(0.2); + gPad->SetLeftMargin(small); + TMultiGraph * mg_he = new TMultiGraph(); + mg_he->Add(g_0he,"pc"); g_0he->SetMarkerStyle(21);g_0he->SetMarkerColor(kGray); + mg_he->Add(g_1he,"pc"); g_1he->SetMarkerStyle(21); + mg_he->Draw("a"); + mg_he->SetTitle(""); + // mg_he->GetXaxis()->SetTitle("Stopping Power / MeV#upointcm^{2}g^{-1}"); + // mg_he->GetYaxis()->SetTitle("#A_{BPM} / [a.u./312#us]"); + mg_he->GetXaxis()->SetRangeUser(4,64); + mg_he->GetYaxis()->SetRangeUser(-200,3200); + mg_he->SetMinimum(-200.); + mg_he->SetMaximum(3200.); +TLegend * mylegend2 = new TLegend(0.40,0.8,0.7,0.9); + mylegend2->SetFillColor(0); // white background + mylegend2->SetTextFont(22); + mylegend2->SetBorderSize(0); // get rid of the box + mylegend2->SetTextSize(0.045); // set text size + mylegend2->AddEntry(g_0he,"Helium E21 I8","p"); // options: p,l,f + mylegend2->AddEntry(g_1he,"Helium E255 I8","p"); // options: p,l,f + mylegend2->Draw(); + gPad->Modified(); + + + c1->cd(3); + gPad->SetTopMargin(small); + gPad->SetRightMargin(small); + gPad->SetLeftMargin(0.2); + gPad->SetTickx(); + TMultiGraph * mg_c = new TMultiGraph(); + mg_c->Add(g_0c,"pc"); g_0c->SetMarkerStyle(22);g_0c->SetMarkerColor(kGray); + mg_c->Add(g_1c,"pc"); g_1c->SetMarkerStyle(22); + mg_c->Draw("a"); + mg_c->SetTitle(""); + mg_c->GetXaxis()->SetTitle("Channel"); + mg_c->GetYaxis()->SetTitle("A_{BPM} / a.u./312#mus");mg_c->GetYaxis()->SetTitleOffset(1.5); + mg_c->GetXaxis()->SetRangeUser(4,64); + mg_c->GetYaxis()->SetRangeUser(-200,3200); + mg_c->SetMinimum(-200.); + mg_c->SetMaximum(3200.); +TLegend * mylegend3 = new TLegend(0.60,0.85,0.9,0.95); + mylegend3->SetFillColor(0); // white background + mylegend3->SetTextFont(22); + mylegend3->SetBorderSize(0); // get rid of the box + mylegend3->SetTextSize(0.045); // set text size + mylegend3->AddEntry(g_0c,"Carbon E21 I8","p"); // options: p,l,f + mylegend3->AddEntry(g_1c,"Carbon E255 I8","p"); // options: p,l,f + mylegend3->Draw(); + + gPad->Modified(); + + + c1->cd(4); + gPad->SetTopMargin(small); + gPad->SetRightMargin(0.2); + gPad->SetLeftMargin(small); + gPad->SetTickx(); + TMultiGraph * mg_o = new TMultiGraph(); + mg_o->Add(g_0o,"pc"); g_0o->SetMarkerStyle(23);g_0o->SetMarkerColor(kGray); + mg_o->Add(g_1o,"pc"); g_1o->SetMarkerStyle(23); + mg_o->Draw("a"); + mg_o->SetTitle(""); + mg_o->GetXaxis()->SetTitle("Channel"); + //mg_o->GetYaxis()->SetTitle("#A_{BPM} / [a.u./312#us]"); + mg_o->GetXaxis()->SetRangeUser(4,64); + mg_o->GetYaxis()->SetRangeUser(-200,3200); + mg_o->SetMinimum(-200.); + mg_o->SetMaximum(3200.); +TLegend * mylegend4 = new TLegend(0.40,0.85,0.7,0.95); + mylegend4->SetFillColor(0); // white background + mylegend4->SetTextFont(22); + mylegend4->SetBorderSize(0); // get rid of the box + mylegend4->SetTextSize(0.045); // set text size + mylegend4->AddEntry(g_0o,"Oxygen E21 I8","p"); // options: p,l,f + mylegend4->AddEntry(g_1o,"Oxygen E201 I8","p"); // options: p,l,f + mylegend4->Draw(); + + gPad->Modified(); + + c1->cd(); + gPad->Modified(); + c1->SaveAs("figs/beamprofileexamples.pdf"); + c1->SaveAs("figs/beamprofileexamples.png"); + +} + + + + diff --git a/Scripts_20161126/beamprofileplot_avg.C b/Scripts_20161126/beamprofileplot_avg.C new file mode 100644 index 0000000..3f14791 --- /dev/null +++ b/Scripts_20161126/beamprofileplot_avg.C @@ -0,0 +1,206 @@ +{ + + gROOT->Reset(); + gROOT->ProcessLine(".x /work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/lhcbStyle.C"); + + + + TFile *_file0_p = TFile::Open("../../HIT_26-11-2016/with_timestamp/SAVE_PiN_run8.root"); + TH2D * g_0p = 0; + _file0_p->GetObject("th2d_beamSignal_channel",g_0p); + TProfile* g_0p_pfx = g_0p->ProfileX(); + + TFile *_file1_p = TFile::Open("../../HIT_26-11-2016/with_timestamp/SAVE_PiN_run32.root"); + TH2D * g_1p = 0; + _file1_p->GetObject("th2d_beamSignal_channel",g_1p); + TProfile* g_1p_pfx = g_1p->ProfileX(); + + TFile *_file0_he = TFile::Open("../../HIT_26-11-2016/with_timestamp/SAVE_PiN_run35.root"); + TH2D * g_0he = 0; + _file0_he->GetObject("th2d_beamSignal_channel",g_0he); + TProfile* g_0he_pfx = g_0he->ProfileX(); + + TFile *_file1_he = TFile::Open("../../HIT_26-11-2016/with_timestamp/SAVE_PiN_run60.root"); + TH2D * g_1he = 0; + _file1_he->GetObject("th2d_beamSignal_channel",g_1he); + TProfile* g_1he_pfx = g_1he->ProfileX(); + + + + TFile *_file0_c = TFile::Open("../../HIT_26-11-2016/with_timestamp/SAVE_PiN_run63.root"); +TH2D * g_0c = 0; + _file0_c->GetObject("th2d_beamSignal_channel",g_0c); + TProfile* g_0c_pfx = g_0c->ProfileX(); + + + TFile *_file1_c = TFile::Open("../../HIT_26-11-2016/with_timestamp/SAVE_PiN_run86.root"); + TH2D * g_1c = 0; + _file1_c->GetObject("th2d_beamSignal_channel",g_1c); + TProfile* g_1c_pfx = g_1c->ProfileX(); + + + TFile *_file0_o = TFile::Open("../../HIT_26-11-2016/with_timestamp/SAVE_PiN_run89.root"); +TH2D * g_0o = 0; + _file0_o->GetObject("th2d_beamSignal_channel",g_0o); + TProfile* g_0o_pfx = g_0o->ProfileX(); + + + + TFile *_file1_o = TFile::Open("../../HIT_26-11-2016/with_timestamp/SAVE_PiN_run108.root"); + TH2D * g_1o = 0; + _file1_o->GetObject("th2d_beamSignal_channel",g_1o); + TProfile* g_1o_pfx = g_1o->ProfileX(); + + TCanvas *c1 = new TCanvas("c1", "canvaspad1", 800, 800); + + + + + gStyle->SetPadBorderMode(0); + gStyle->SetFrameBorderMode(0); + Float_t small = 1e-5; + c1->Divide(2,2,small,small); + + c1->cd(1); + gPad->SetBottomMargin(small); + gPad->SetRightMargin(small); + gPad->SetLeftMargin(0.2); + + g_0p_pfx->SetMarkerStyle(20);g_0p_pfx->SetMarkerColor(kGray); + g_1p_pfx->SetMarkerStyle(20); + + g_0p_pfx->SetTitle(""); + + + + // mg_p->GetXaxis()->SetTitle("Stopping Power / MeV#upointcm^{2}g^{-1}"); + g_0p_pfx->GetYaxis()->SetTitle("A_{BPM} / a.u./312#mus"); g_0p_pfx->GetYaxis()->SetTitleOffset(1.5); + g_0p_pfx->GetXaxis()->SetRangeUser(4,64); + g_0p_pfx->GetYaxis()->SetRangeUser(-200,3200); + g_0p_pfx->SetMinimum(-200.); + g_0p_pfx->SetMaximum(3200.); + + g_0p_pfx->Draw(); + g_1p_pfx->Draw("same"); + TLegend * mylegend = new TLegend(0.25,0.8,0.9,0.9); + mylegend->SetFillColor(0); // white background + mylegend->SetTextFont(22); + mylegend->SetBorderSize(0); // get rid of the box + mylegend->SetTextSize(0.045); // set text size + mylegend->AddEntry(g_0p_pfx,"Protons: 70 MeV/u, 1.2#upoint10^{9} s^{-1}","p"); // options: p,l,f + mylegend->AddEntry(g_1p_pfx,"Protons: 221 MeV/u, 1.2#upoint10^{9} s^{-1}","p"); // options: p,l,f + mylegend->Draw(); + + + gPad->Modified(); + + + c1->cd(2); + gPad->SetBottomMargin(small); + gPad->SetRightMargin(0.2); + gPad->SetLeftMargin(small); + + + + g_0he_pfx->SetMarkerStyle(20);g_0he_pfx->SetMarkerColor(kGray); + g_1he_pfx->SetMarkerStyle(20); + + g_0he_pfx->SetTitle(""); + g_0he_pfx->GetYaxis()->SetTitle("A_{BHEM} / a.u./312#mus"); g_0he_pfx->GetYaxis()->SetTitleOffset(1.5); + g_0he_pfx->GetXaxis()->SetRangeUser(4,64); + g_0he_pfx->GetYaxis()->SetRangeUser(-200,3200); + g_0he_pfx->SetMinimum(-200.); + g_0he_pfx->SetMaximum(3200.); + + g_0he_pfx->Draw(); + g_1he_pfx->Draw("same"); + + +TLegend * mylegend2 = new TLegend(0.05,0.8,0.7,0.9); + mylegend2->SetFillColor(0); // white background + mylegend2->SetTextFont(22); + mylegend2->SetBorderSize(0); // get rid of the box + mylegend2->SetTextSize(0.045); // set text size + mylegend2->AddEntry(g_0he_pfx,"Helium: 72 MeV/u, 3.0#upoint10^{8} s^{-1}","p"); // options: p,l,f + mylegend2->AddEntry(g_1he_pfx,"Helium: 221 MeV/u, 3.0#upoint10^{8} s^{-1}","p"); // options: p,l,f + mylegend2->Draw(); + gPad->Modified(); + + + c1->cd(3); + gPad->SetTopMargin(small); + gPad->SetRightMargin(small); + gPad->SetLeftMargin(0.2); + gPad->SetTickx(); + + + + g_0c_pfx->SetMarkerStyle(20);g_0c_pfx->SetMarkerColor(kGray); + g_1c_pfx->SetMarkerStyle(20); + + g_0c_pfx->SetTitle(""); + g_0c_pfx->GetYaxis()->SetTitle("A_{BCM} / a.u./312#mus"); g_0c_pfx->GetYaxis()->SetTitleOffset(1.5); + g_0c_pfx->GetXaxis()->SetRangeUser(4,64); g_0c_pfx->GetXaxis()->SetTitle("Channel"); + g_0c_pfx->GetYaxis()->SetRangeUser(-200,3200); + g_0c_pfx->SetMinimum(-200.); + g_0c_pfx->SetMaximum(3200.); + + g_0c_pfx->Draw(); + g_1c_pfx->Draw("same"); + + +TLegend * mylegend3 = new TLegend(0.25,0.85,0.9,0.95); + mylegend3->SetFillColor(0); // white background + mylegend3->SetTextFont(22); + mylegend3->SetBorderSize(0); // get rid of the box + mylegend3->SetTextSize(0.045); // set text size + mylegend3->AddEntry(g_0c_pfx,"Carbon: 130 MeV/u, 3.0#upoint10^{7} s^{-1}","p"); // options: p,l,f + mylegend3->AddEntry(g_1c_pfx,"Carbon: 430 MeV/u, 3.0#upoint10^{7} s^{-1}","p"); // options: p,l,f + mylegend3->Draw(); + + gPad->Modified(); + + + c1->cd(4); + gPad->SetTopMargin(small); + gPad->SetRightMargin(0.2); + gPad->SetLeftMargin(small); + gPad->SetTickx(); + + g_0o_pfx->SetMarkerStyle(20);g_0o_pfx->SetMarkerColor(kGray); + g_1o_pfx->SetMarkerStyle(20); + + g_0o_pfx->SetTitle(""); + g_0o_pfx->GetYaxis()->SetTitle("A_{BOM} / a.u./312#mus"); g_0o_pfx->GetYaxis()->SetTitleOffset(1.5); + g_0o_pfx->GetXaxis()->SetRangeUser(4,64); g_0o_pfx->GetXaxis()->SetTitle("Channel"); + g_0o_pfx->GetYaxis()->SetRangeUser(-200,3200); + g_0o_pfx->SetMinimum(-200.); + g_0o_pfx->SetMaximum(3200.); + + g_0o_pfx->Draw(); + g_1o_pfx->Draw("same"); + + + + +TLegend * mylegend4 = new TLegend(0.05,0.85,0.7,0.95); + mylegend4->SetFillColor(0); // white background + mylegend4->SetTextFont(22); + mylegend4->SetBorderSize(0); // get rid of the box + mylegend4->SetTextSize(0.045); // set text size + mylegend4->AddEntry(g_0o_pfx,"Oxygen: 152 MeV/u, 1.5#upoint10^{7} s^{-1}","p"); // options: p,l,f + mylegend4->AddEntry(g_1o_pfx,"Oxygen: 423 MeV/u, 1.5#upoint10^{7} s^{-1}","p"); // options: p,l,f + mylegend4->Draw(); + + gPad->Modified(); + + c1->cd(); + gPad->Modified(); + c1->SaveAs("figs/beamprofileexamples_avg.pdf"); + c1->SaveAs("figs/beamprofileexamples_avg.png"); + +} + + + + diff --git a/Scripts_20161126/betadedxz2_c.prn b/Scripts_20161126/betadedxz2_c.prn new file mode 100644 index 0000000..640a448 --- /dev/null +++ b/Scripts_20161126/betadedxz2_c.prn @@ -0,0 +1,26 @@ +0.407871 7.810273 +0.44884 6.612007 +0.479338 5.90094 +0.503822 5.415237 +0.524858 5.04743 +0.543065 4.760538 +0.5589 4.531764 +0.573741 4.332961 +0.586721 4.170288 +0.59808 4.035782 +0.608891 3.914071 +0.619196 3.803392 +0.628229 3.710382 +0.636893 3.624484 +0.645213 3.544902 +0.653209 3.470957 +0.6609 3.402064 +0.667643 3.343389 +0.674162 3.288136 +0.681086 3.230961 +0.689547 3.163124 +0.698204 3.095927 +0.705926 3.037769 +0.713327 2.983549 +0.719927 2.936386 +0.726761 2.8887 diff --git a/Scripts_20161126/betadedxz2_he.prn b/Scripts_20161126/betadedxz2_he.prn new file mode 100644 index 0000000..86ffd67 --- /dev/null +++ b/Scripts_20161126/betadedxz2_he.prn @@ -0,0 +1,26 @@ +0.347272 10.2468 +0.371222 9.132771 +0.391037 8.349158 +0.408018 7.758848 +0.422922 7.293203 +0.436235 6.913377 +0.447968 6.603796 +0.459299 6.324933 +0.470415 6.06888 +0.478846 5.885299 +0.487649 5.702666 +0.495887 5.539637 +0.503656 5.392399 +0.510991 5.258883 +0.517959 5.136701 +0.524572 5.024748 +0.530889 4.921279 +0.536926 4.825409 +0.542699 4.736374 +0.550671 4.617484 +0.558452 4.505773 +0.565815 4.403786 +0.565815 4.403786 +0.572799 4.310232 +0.579449 4.223902 +0.585785 4.144029 diff --git a/Scripts_20161126/betadedxz2_o.prn b/Scripts_20161126/betadedxz2_o.prn new file mode 100644 index 0000000..c4ccd1b --- /dev/null +++ b/Scripts_20161126/betadedxz2_o.prn @@ -0,0 +1,21 @@ +0.436386 6.944096 +0.479001 5.906112 +0.511349 5.275644 +0.537325 4.844508 +0.559062 4.525853 +0.577647 4.27936 +0.594124 4.078395 +0.608731 3.912595 +0.621998 3.771135 +0.634024 3.649797 +0.645051 3.543884 +0.655227 3.45037 +0.664724 3.36653 +0.673476 3.292046 +0.681811 3.223452 +0.689682 3.160675 +0.697243 3.102108 +0.704219 3.049525 +0.710969 2.999914 +0.717113 2.955795 +0.726111 2.892908 diff --git a/Scripts_20161126/betadedxz2_p.prn b/Scripts_20161126/betadedxz2_p.prn new file mode 100644 index 0000000..eeae603 --- /dev/null +++ b/Scripts_20161126/betadedxz2_p.prn @@ -0,0 +1,26 @@ +0.308525 12.60876 +0.340994 10.59358 +0.366173 9.360309 +0.386744 8.513361 +0.404198 7.886052 +0.419413 7.396822 +0.432945 7.000816 +0.44518 6.670844 +0.456345 6.390587 +0.466617 6.148805 +0.476154 5.936913 +0.485023 5.749985 +0.493348 5.582752 +0.501186 5.432157 +0.508639 5.294766 +0.515744 5.168745 +0.522563 5.052145 +0.529111 4.943962 +0.53538 4.843711 +0.541398 4.750403 +0.549576 4.627975 +0.557429 4.514919 +0.564849 4.411926 +0.571868 4.317781 +0.578541 4.231076 +0.5849 4.150888 diff --git a/Scripts_20161126/betadedxz2_sum.prn b/Scripts_20161126/betadedxz2_sum.prn new file mode 100644 index 0000000..94a0ff3 --- /dev/null +++ b/Scripts_20161126/betadedxz2_sum.prn @@ -0,0 +1,99 @@ +0.308525 12.60876 +0.340994 10.59358 +0.366173 9.360309 +0.386744 8.513361 +0.404198 7.886052 +0.419413 7.396822 +0.432945 7.000816 + 0.44518 6.670844 +0.456345 6.390587 +0.466617 6.148805 +0.476154 5.936913 +0.485023 5.749985 +0.493348 5.582752 +0.501186 5.432157 +0.508639 5.294766 +0.515744 5.168745 +0.522563 5.052145 +0.529111 4.943962 + 0.53538 4.843711 +0.541398 4.750403 +0.549576 4.627975 +0.557429 4.514919 +0.564849 4.411926 +0.571868 4.317781 +0.578541 4.231076 + 0.5849 4.150888 +0.347272 10.2468 +0.371222 9.132771 +0.391037 8.349158 +0.408018 7.758848 +0.422922 7.293203 +0.436235 6.913377 +0.447968 6.603796 +0.459299 6.324933 +0.470415 6.06888 +0.478846 5.885299 +0.487649 5.702666 +0.495887 5.539637 +0.503656 5.392399 +0.510991 5.258883 +0.517959 5.136701 +0.524572 5.024748 +0.530889 4.921279 +0.536926 4.825409 +0.542699 4.736374 +0.550671 4.617484 +0.558452 4.505773 +0.565815 4.403786 +0.565815 4.403786 +0.572799 4.310232 +0.579449 4.223902 +0.585785 4.144029 +0.407871 7.810273 + 0.44884 6.612007 +0.479338 5.90094 +0.503822 5.415237 +0.524858 5.04743 +0.543065 4.760538 + 0.5589 4.531764 +0.573741 4.332961 +0.586721 4.170288 + 0.59808 4.035782 +0.608891 3.914071 +0.619196 3.803392 +0.628229 3.710382 +0.636893 3.624484 +0.645213 3.544902 +0.653209 3.470957 + 0.6609 3.402064 +0.667643 3.343389 +0.674162 3.288136 +0.681086 3.230961 +0.689547 3.163124 +0.698204 3.095927 +0.705926 3.037769 +0.713327 2.983549 +0.719927 2.936386 +0.726761 2.8887 +0.436386 6.944096 +0.479001 5.906112 +0.511349 5.275644 +0.537325 4.844508 +0.559062 4.525853 +0.577647 4.27936 +0.594124 4.078395 +0.608731 3.912595 +0.621998 3.771135 +0.634024 3.649797 +0.645051 3.543884 +0.655227 3.45037 +0.664724 3.36653 +0.673476 3.292046 +0.681811 3.223452 +0.689682 3.160675 +0.697243 3.102108 +0.704219 3.049525 +0.710969 2.999914 +0.717113 2.955795 + #REF! 2.892908 diff --git a/Scripts_20161126/carbonAIR_80_480MeV.txt b/Scripts_20161126/carbonAIR_80_480MeV.txt new file mode 100644 index 0000000..2f86ee7 --- /dev/null +++ b/Scripts_20161126/carbonAIR_80_480MeV.txt @@ -0,0 +1,19 @@ +7.500000E+01 2.894501E+02 +8.750000E+01 2.574361E+02 +1.000000E+02 2.329849E+02 +1.125000E+02 2.136804E+02 +1.250000E+02 1.980438E+02 +1.375000E+02 1.851133E+02 +1.500000E+02 1.742426E+02 +1.625000E+02 1.649735E+02 +1.750000E+02 1.569761E+02 +1.875000E+02 1.500068E+02 +2.000000E+02 1.438792E+02 +2.125000E+02 1.384516E+02 +2.250000E+02 1.336103E+02 +2.375000E+02 1.292671E+02 +2.500000E+02 1.253484E+02 +3.125000E+02 1.104071E+02 +3.750000E+02 1.004445E+02 +4.375000E+02 9.337248E+01 +5.000000E+02 8.813937E+01 diff --git a/Scripts_20161126/carbonPS_80_480MeV.txt b/Scripts_20161126/carbonPS_80_480MeV.txt new file mode 100644 index 0000000..2a3e0d9 --- /dev/null +++ b/Scripts_20161126/carbonPS_80_480MeV.txt @@ -0,0 +1,18 @@ +7.500E+01 3.20E+02 +8.75E+01 2.84E+02 +1.00E+02 2.57E+02 +1.13E+02 2.36E+02 +1.25E+02 2.19E+02 +1.38E+02 2.04E+02 +1.50E+02 1.92E+02 +1.63E+02 1.82E+02 +1.75E+02 1.73E+02 +1.88E+02 1.65E+02 +2.00E+02 1.59E+02 +2.13E+02 1.53E+02 +2.25E+02 1.47E+02 +2.38E+02 1.42E+02 +2.50E+02 1.38E+02 +3.13E+02 1.22E+02 +3.75E+02 1.11E+02 +4.38E+02 1.03E+02 diff --git a/Scripts_20161126/chi2Fitfile.txt b/Scripts_20161126/chi2Fitfile.txt new file mode 100644 index 0000000..7d9a932 --- /dev/null +++ b/Scripts_20161126/chi2Fitfile.txt @@ -0,0 +1,99 @@ +12.6088 20.3634 11.1537 +10.5936 20.6182 10.6477 +9.36031 15.5537 9.76529 +8.51336 9.44078 6.76873 +7.88605 6.37224 4.75776 +7.39682 4.92058 3.57306 +7.00082 4.1935 2.85133 +6.67084 3.86599 2.57667 +6.39059 3.56702 1.98374 +6.14881 3.49191 1.97002 +5.93691 3.45275 1.92285 +5.74999 3.3669 1.84875 +5.58275 3.15671 1.69426 +5.43216 2.97753 1.62671 +5.29477 2.9154 1.44064 +5.16875 2.96014 1.3941 +5.05214 3.05103 1.37855 +4.94396 3.10465 1.40033 +4.84371 3.03109 1.40071 +4.7504 2.93737 1.40913 +4.62797 2.88782 1.33028 +4.51492 2.84938 1.27207 +4.41193 2.86092 1.34112 +4.31778 2.82437 1.35222 +4.23108 2.66717 1.24865 +4.15089 2.56732 1.22622 +40.9872 6.27994 5.27253 +36.5311 7.98245 5.95622 +33.3966 7.69429 5.86554 +31.0354 7.40941 5.73265 +29.1728 6.95924 5.16832 +27.6535 6.71957 5.26465 +26.4152 5.80407 4.77077 +25.2997 5.07125 4.16969 +24.2755 4.73635 3.91417 +23.5412 4.64903 3.77974 +22.8107 4.58451 3.80093 +22.1585 4.33735 3.53638 +21.5696 4.0856 3.33621 +21.0355 3.91087 3.22633 +20.5468 3.84207 3.19165 +20.099 3.79036 3.15216 +19.6851 3.74294 3.00686 +19.3016 3.68234 2.97015 +18.9455 4.04961 3.08459 +18.4699 4.02563 2.81425 +18.0231 3.74136 2.8403 +17.6151 3.3789 2.89056 +17.6151 3.38941 2.86236 +17.2409 3.10597 2.84523 +16.8956 2.86027 2.64809 +16.5761 3.02195 2.74544 +281.17 2.51407 1.80546 +238.032 3.4344 2.10719 +212.434 3.91328 2.16306 +194.949 3.56708 1.92578 +181.707 3.25547 1.78568 +171.379 3.03152 1.68562 +163.143 2.85541 1.65988 +155.987 2.73222 1.6939 +150.13 2.5825 1.56581 +145.288 2.45023 1.50333 +140.907 2.38656 1.49533 +136.922 2.43088 1.52539 +133.574 2.39842 1.51231 +130.481 2.40578 1.46911 +127.616 2.36759 1.48596 +124.954 2.25557 1.41603 +122.474 2.21641 1.41673 +120.362 2.01775 1.30119 +118.373 1.99875 1.25997 +116.315 2.15023 1.4044 +113.872 2.1622 1.51406 +111.453 1.92624 1.24386 +109.36 1.8882 1.17632 +107.408 1.93052 1.23876 +105.71 1.87902 1.30628 +103.993 1.71834 1.17401 +444.422 2.30446 1.35946 +377.991 2.89209 1.66642 +337.641 3.19218 1.84203 +310.049 2.88358 1.68625 +289.655 2.63785 1.5106 +273.879 2.48887 1.48871 +261.017 2.37289 1.40968 +250.406 2.28575 1.49957 +241.353 2.24967 1.4413 +233.587 2.19389 1.47229 +226.809 2.13171 1.47363 +220.824 2.11266 1.5272 +215.458 2.05617 1.5094 +210.691 2.05026 1.62731 +206.301 2.04247 1.57505 +202.283 2.0354 1.60618 +198.535 2.00556 1.63287 +195.17 1.94762 1.57306 +191.994 1.82921 1.57821 +189.171 1.74854 1.54742 +185.146 1.83462 1.74169 diff --git a/Scripts_20161126/chi2Fitfile_int_c.txt b/Scripts_20161126/chi2Fitfile_int_c.txt new file mode 100644 index 0000000..d1321e0 --- /dev/null +++ b/Scripts_20161126/chi2Fitfile_int_c.txt @@ -0,0 +1,9 @@ +1.99418 0.214024 0.0917043 +2.99221 0.249229 0.199669 +4.99357 0.319172 0.214879 +8.00451 0.441951 0.235403 +9.96037 0.525536 0.300576 +14.9624 0.79445 0.501568 +19.9591 1.10916 0.716665 +29.9598 1.85144 1.35545 +50.0967 3.99519 2.78064 diff --git a/Scripts_20161126/chi2Fitfile_int_p.txt b/Scripts_20161126/chi2Fitfile_int_p.txt new file mode 100644 index 0000000..96c8932 --- /dev/null +++ b/Scripts_20161126/chi2Fitfile_int_p.txt @@ -0,0 +1,10 @@ +77.5122 0.178151 0.0973584 +116.351 0.19269 0.0739868 +193.951 0.242582 0.268916 +310.193 0.350289 0.298958 +387.817 0.441891 0.288529 +581.737 0.758055 0.396344 +776.317 1.13869 0.636143 +1164.85 2.30088 1.28206 +1948.34 5.6006 2.91198 +3130.55 13.0692 6.72719 diff --git a/Scripts_20161126/combinedFit.C b/Scripts_20161126/combinedFit.C new file mode 100644 index 0000000..d51669c --- /dev/null +++ b/Scripts_20161126/combinedFit.C @@ -0,0 +1,145 @@ +//+ Combined (simultaneous) fit of two histogram with separate functions +// and some common parameters +// +// See http://root.cern.ch/phpBB3//viewtopic.php?f=3&t=11740#p50908 +// for a modified version working with Fumili or GSLMultiFit +// +// N.B. this macro must be compiled with ACliC +// +//Author: L. Moneta - Dec 2010 + +#include "Fit/Fitter.h" +#include "Fit/BinData.h" +#include "Fit/Chi2FCN.h" +#include "TH1.h" +#include "TList.h" +#include "Math/WrappedMultiTF1.h" +#include "HFitInterface.h" +#include "TCanvas.h" +#include "TStyle.h" + + +// definition of shared parameter +// background function +int iparB[2] = { 0, // exp amplitude in B histo + 2 // exp common parameter +}; + +// signal + background function +int iparSB[5] = { 1, // exp amplitude in S+B histo + 2, // exp common parameter + 3, // gaussian amplitude + 4, // gaussian mean + 5 // gaussian sigma +}; + +struct GlobalChi2 { + GlobalChi2( ROOT::Math::IMultiGenFunction & f1, + ROOT::Math::IMultiGenFunction & f2) : + fChi2_1(&f1), fChi2_2(&f2) {} + + // parameter vector is first background (in common 1 and 2) + // and then is signal (only in 2) + double operator() (const double *par) const { + double p1[2]; + for (int i = 0; i < 2; ++i) p1[i] = par[iparB[i] ]; + + double p2[5]; + for (int i = 0; i < 5; ++i) p2[i] = par[iparSB[i] ]; + + return (*fChi2_1)(p1) + (*fChi2_2)(p2); + } + + const ROOT::Math::IMultiGenFunction * fChi2_1; + const ROOT::Math::IMultiGenFunction * fChi2_2; +}; + +void combinedFit() { + +#if defined(__CINT__) && !defined(__MAKECINT__) + cout << "ERROR: This tutorial can run only using ACliC, you must run it by doing: " << endl; + cout << "\t .x $ROOTSYS/tutorials/fit/combinedFit.C+" << endl; + return; +#endif + + TH1D * hB = new TH1D("hB","histo B",100,0,100); + TH1D * hSB = new TH1D("hSB","histo S+B",100, 0,100); + + TF1 * fB = new TF1("fB","expo",0,100); + fB->SetParameters(1,-0.05); + hB->FillRandom("fB"); + + TF1 * fS = new TF1("fS","gaus",0,100); + fS->SetParameters(1,30,5); + + hSB->FillRandom("fB",2000); + hSB->FillRandom("fS",1000); + + // perform now global fit + + TF1 * fSB = new TF1("fSB","expo + gaus(2)",0,100); + + ROOT::Math::WrappedMultiTF1 wfB(*fB,1); + ROOT::Math::WrappedMultiTF1 wfSB(*fSB,1); + + ROOT::Fit::DataOptions opt; + ROOT::Fit::DataRange rangeB; + // set the data range + rangeB.SetRange(10,90); + ROOT::Fit::BinData dataB(opt,rangeB); + ROOT::Fit::FillData(dataB, hB); + + ROOT::Fit::DataRange rangeSB; + rangeSB.SetRange(10,50); + ROOT::Fit::BinData dataSB(opt,rangeSB); + ROOT::Fit::FillData(dataSB, hSB); + + ROOT::Fit::Chi2Function chi2_B(dataB, wfB); + ROOT::Fit::Chi2Function chi2_SB(dataSB, wfSB); + + GlobalChi2 globalChi2(chi2_B, chi2_SB); + + ROOT::Fit::Fitter fitter; + + const int Npar = 6; + double par0[Npar] = { 5,5,-0.1,100, 30,10}; + + // create before the parameter settings in order to fix or set range on them + fitter.Config().SetParamsSettings(6,par0); + // fix 5-th parameter + fitter.Config().ParSettings(4).Fix(); + // set limits on the third and 4-th parameter + fitter.Config().ParSettings(2).SetLimits(-10,-1.E-4); + fitter.Config().ParSettings(3).SetLimits(0,10000); + fitter.Config().ParSettings(3).SetStepSize(5); + + fitter.Config().MinimizerOptions().SetPrintLevel(0); + fitter.Config().SetMinimizer("Minuit2","Migrad"); + + // fit FCN function directly + // (specify optionally data size and flag to indicate that is a chi2 fit) + fitter.FitFCN(6,globalChi2,0,dataB.Size()+dataSB.Size(),true); + ROOT::Fit::FitResult result = fitter.Result(); + result.Print(std::cout); + + TCanvas * c1 = new TCanvas("Simfit","Simultaneous fit of two histograms", + 10,10,700,700); + c1->Divide(1,2); + c1->cd(1); + gStyle->SetOptFit(1111); + + fB->SetFitResult( result, iparB); + fB->SetRange(rangeB().first, rangeB().second); + fB->SetLineColor(kBlue); + hB->GetListOfFunctions()->Add(fB); + hB->Draw(); + + c1->cd(2); + fSB->SetFitResult( result, iparSB); + fSB->SetRange(rangeSB().first, rangeSB().second); + fSB->SetLineColor(kRed); + hSB->GetListOfFunctions()->Add(fSB); + hSB->Draw(); + + +} diff --git a/Scripts_20161126/combinedFit_hit.C b/Scripts_20161126/combinedFit_hit.C new file mode 100644 index 0000000..ecab5e3 --- /dev/null +++ b/Scripts_20161126/combinedFit_hit.C @@ -0,0 +1,288 @@ +//+ Combined (simultaneous) fit of two histogram with separate functions +// and some common parameters +// +// See http://root.cern.ch/phpBB3//viewtopic.php?f=3&t=11740#p50908 +// for a modified version working with Fumili or GSLMultiFit +// +// N.B. this macro must be compiled with ACliC +// +//Author: L. Moneta - Dec 2010 + +#include "Fit/Fitter.h" +#include "Fit/BinData.h" +#include "Fit/Chi2FCN.h" +#include "TH1.h" +#include "TList.h" +#include "Math/WrappedMultiTF1.h" +#include "HFitInterface.h" +#include "TCanvas.h" +#include "TStyle.h" +#include "TGraphErrors.h" +#include "TLegend.h" +#include "TMultiGraph.h" + + +// definition of shared parameter +// background function +int iparB[3] = { 0, // exp amplitude in B histo + 1, // T_0 + 2 // common parameter + +}; + +// signal + background function +int iparSB2[3] = { 3, // amplitude in S+B histo + 4, // T_0 + 2, // common parameter + +}; + +int iparSB3[3] = { 5, // amplitude + 6, // T_0 + 2, // common parameter + +}; + +int iparSB4[3] = { 7, // amplitude + 8, // T_0 + 2, // common parameter + +}; + +struct GlobalChi2 { + GlobalChi2( ROOT::Math::IMultiGenFunction & f1, + ROOT::Math::IMultiGenFunction & f2, + ROOT::Math::IMultiGenFunction & f3, + ROOT::Math::IMultiGenFunction & f4) : + fChi2_1(&f1), fChi2_2(&f2), fChi2_3(&f3), fChi2_4(&f4) {} + + // parameter vector is first background (in common 1 and 2) + // and then is signal (only in 2) + double operator() (const double *par) const { + double p1[3]; + for (int i = 0; i < 3; ++i) p1[i] = par[iparB[i] ]; + + double p2[3]; + for (int i = 0; i < 3; ++i) p2[i] = par[iparSB2[i] ]; + + double p3[3]; + for (int i = 0; i < 3; ++i) p3[i] = par[iparSB3[i] ]; + + double p4[3]; + for (int i = 0; i < 3; ++i) p4[i] = par[iparSB4[i] ]; + + return (*fChi2_1)(p1) + (*fChi2_2)(p2) + (*fChi2_3)(p3) + (*fChi2_4)(p4); + } + + const ROOT::Math::IMultiGenFunction * fChi2_1; + const ROOT::Math::IMultiGenFunction * fChi2_2; + const ROOT::Math::IMultiGenFunction * fChi2_3; + const ROOT::Math::IMultiGenFunction * fChi2_4; + + +}; + +void combinedFit_hit() { + +#if defined(__CINT__) && !defined(__MAKECINT__) + cout << "ERROR: This tutorial can run only using ACliC, you must run it by doing: " << endl; + cout << "\t .x $ROOTSYS/tutorials/fit/combinedFit_hit.C+" << endl; + return; +#endif + + + TF1 * fB = new TF1("fB","[0]*( (1- 0.5*(TMath::Log(2*0.511E3*x*x/(1-x*x)/[1]) -x*x )/(TMath::Log(2*0.511E3*x*x/(1-x*x)/0.0687) -x*x )) / (1+[2]* (1- 0.5*(TMath::Log(2*0.511E3*x*x/(1-x*x)/[1]) -x*x )/(TMath::Log(2*0.511E3*x*x/(1-x*x)/0.0687) -x*x ))*1.0*1.65901*TMath::Power(x,-1.7218)) + 0.5*(TMath::Log(2*0.511E3*x*x/(1-x*x)/[1]) -x*x )/(TMath::Log(2*0.511E3*x*x/(1-x*x)/0.0687) -x*x ) ) ",0,1);//energy units in keV + //TF1 * fB = new TF1("fB","[0]*( (1-[1]) / (1+[2]* (1- [1])*1.0*1.65901*TMath::Power(x,-1.7218)) +[1] ) ",0,1); + + TF1 * fSB2 = new TF1("fSB2","[0]*( (1- 0.5*(TMath::Log(2*0.511E3*x*x/(1-x*x)/[1]) -x*x )/(TMath::Log(2*0.511E3*x*x/(1-x*x)/0.0687) -x*x )) / (1+[2]* (1- 0.5*(TMath::Log(2*0.511E3*x*x/(1-x*x)/[1]) -x*x )/(TMath::Log(2*0.511E3*x*x/(1-x*x)/0.0687) -x*x ))*4.0*1.65901*TMath::Power(x,-1.7218)) + 0.5*(TMath::Log(2*0.511E3*x*x/(1-x*x)/[1]) -x*x )/(TMath::Log(2*0.511E3*x*x/(1-x*x)/0.0687) -x*x ) ) ",0,1);//energy units in keV + //TF1 * fSB2 = new TF1("fSB2","[0]*( (1-[1]) / (1+[2]* (1- [1])*4.0*1.65901*TMath::Power(x,-1.7218)) +[1] ) ",0,1); + + + TF1 * fSB3 = new TF1("fSB3","[0]*( (1- 0.5*(TMath::Log(2*0.511E3*x*x/(1-x*x)/[1]) -x*x )/(TMath::Log(2*0.511E3*x*x/(1-x*x)/0.0687) -x*x )) / (1+[2]* (1- 0.5*(TMath::Log(2*0.511E3*x*x/(1-x*x)/[1]) -x*x )/(TMath::Log(2*0.511E3*x*x/(1-x*x)/0.0687) -x*x ))*36.0*1.65901*TMath::Power(x,-1.7218)) + 0.5*(TMath::Log(2*0.511E3*x*x/(1-x*x)/[1]) -x*x )/(TMath::Log(2*0.511E3*x*x/(1-x*x)/0.0687) -x*x ) ) ",0,1);//energy units in keV + //TF1 * fSB3 = new TF1("fSB3","[0]*( (1-[1]) / (1+[2]* (1- [1])*36.0*1.65901*TMath::Power(x,-1.7218)) +[1] ) ",0,1); + + + TF1 * fSB4 = new TF1("fSB4","[0]*( (1- 0.5*(TMath::Log(2*0.511E3*x*x/(1-x*x)/[1]) -x*x )/(TMath::Log(2*0.511E3*x*x/(1-x*x)/0.0687) -x*x )) / (1+[2]* (1- 0.5*(TMath::Log(2*0.511E3*x*x/(1-x*x)/[1]) -x*x )/(TMath::Log(2*0.511E3*x*x/(1-x*x)/0.0687) -x*x ))*64.0*1.65901*TMath::Power(x,-1.7218)) + 0.5*(TMath::Log(2*0.511E3*x*x/(1-x*x)/[1]) -x*x )/(TMath::Log(2*0.511E3*x*x/(1-x*x)/0.0687) -x*x ) ) ",0,1); //energy units in keV + // TF1 * fSB4 = new TF1("fSB4","[0]*( (1-[1]) / (1+[2]* (1- [1])*64.0*1.65901*TMath::Power(x,-1.7218)) +[1] ) ",0,1); + + TGraphErrors * hB = new TGraphErrors("energylist_p_bpmbeta1.txt","%lg %lg %lg"); + TGraphErrors * hSB2 = new TGraphErrors("energylist_he_bpmbeta1.txt","%lg %lg %lg"); + TGraphErrors * hSB3 = new TGraphErrors("energylist_c_bpmbeta1.txt","%lg %lg %lg"); + TGraphErrors * hSB4 = new TGraphErrors("energylist_o_bpmbeta1.txt","%lg %lg %lg"); + + TGraphErrors * hB_2 = new TGraphErrors("energylist_p_bpmbeta1.txt","%lg %lg %lg"); + TGraphErrors * hSB2_2 = new TGraphErrors("energylist_he_bpmbeta1.txt","%lg %lg %lg"); + TGraphErrors * hSB3_2 = new TGraphErrors("energylist_c_bpmbeta1.txt","%lg %lg %lg"); + TGraphErrors * hSB4_2 = new TGraphErrors("energylist_o_bpmbeta1.txt","%lg %lg %lg"); + // perform now global fit + + // TF1 * fSB2 = new TF1("fSB2","expo + gaus(2)",0,100); + + ROOT::Math::WrappedMultiTF1 wfB(*fB,1); + ROOT::Math::WrappedMultiTF1 wfSB2(*fSB2,1); + ROOT::Math::WrappedMultiTF1 wfSB3(*fSB3,1); + ROOT::Math::WrappedMultiTF1 wfSB4(*fSB4,1); + + + ROOT::Fit::DataOptions opt; + ROOT::Fit::DataRange rangeB; + // set the data range + rangeB.SetRange(0.3,0.59); + ROOT::Fit::BinData dataB(opt,rangeB); + ROOT::Fit::FillData(dataB, hB); + + ROOT::Fit::DataRange rangeSB2; + rangeSB2.SetRange(0.34,0.59); + ROOT::Fit::BinData dataSB2(opt,rangeSB2); + ROOT::Fit::FillData(dataSB2, hSB2); + + ROOT::Fit::DataRange rangeSB3; + rangeSB3.SetRange(0.4,0.73); + ROOT::Fit::BinData dataSB3(opt,rangeSB3); + ROOT::Fit::FillData(dataSB3, hSB3); + + ROOT::Fit::DataRange rangeSB4; + rangeSB4.SetRange(0.43,0.73); + ROOT::Fit::BinData dataSB4(opt,rangeSB4); + ROOT::Fit::FillData(dataSB4, hSB4); + + ROOT::Fit::Chi2Function chi2_B(dataB, wfB); + ROOT::Fit::Chi2Function chi2_SB2(dataSB2, wfSB2); + ROOT::Fit::Chi2Function chi2_SB3(dataSB3, wfSB3); + ROOT::Fit::Chi2Function chi2_SB4(dataSB4, wfSB4); + + + + GlobalChi2 globalChi2(chi2_B, chi2_SB2, chi2_SB3, chi2_SB4); + + ROOT::Fit::Fitter fitter; + + const int Npar = 9; + double par0[Npar] = {2,10,0.15,2, 10,2, 10,2, 10}; + // double par0[Npar] = {1.4,0.000007,0.15,1.4, 0.00250,2, 0.005,2, 0.007}; + + // create before the parameter settings in order to fix or set range on them + fitter.Config().SetParamsSettings(Npar,par0); + // fix 5-th parameter + // fitter.Config().ParSettings(1).Fix(); + // set limits on the third and 4-th parameter + fitter.Config().ParSettings(0).SetLimits(0,5); + fitter.Config().ParSettings(3).SetLimits(0,5); + fitter.Config().ParSettings(5).SetLimits(0,5); + fitter.Config().ParSettings(7).SetLimits(0,5); + + + fitter.Config().ParSettings(1).SetLimits(0,1000); + fitter.Config().ParSettings(4).SetLimits(0,1000);//1 + fitter.Config().ParSettings(6).SetLimits(0,1000);//10 + fitter.Config().ParSettings(8).SetLimits(0,1000);//10 + + fitter.Config().ParSettings(2).SetLimits(0,1.0); + + // fitter.Config().ParSettings(4).SetStepSize(2); + // fitter.Config().ParSettings(1).SetStepSize(0.1); + // fitter.Config().ParSettings(6).SetStepSize(10); + // fitter.Config().ParSettings(8).SetStepSize(10); + + + fitter.Config().MinimizerOptions().SetPrintLevel(0); + fitter.Config().SetMinimizer("Minuit2","Migrad"); //Minuit2 + //fitter.Config().SetNormErrors(true); + + // fit FCN function directly + // (specify optionally data size and flag to indicate that is a chi2 fit) + fitter.FitFCN(9,globalChi2,0,dataB.Size()+dataSB2.Size()+dataSB3.Size()+dataSB4.Size(),true); + ROOT::Fit::FitResult result = fitter.Result(); + result.Print(std::cout, true); + //result.PrintCovMatrix(std::cout); + + cout << "FitResult.Status() = " << result.Status() << endl; + + + TCanvas * c1 = new TCanvas("Simfit","Simultaneous fit of two histograms", + 10,10,700,700); + // c1->Divide(2,2); + // c1->cd(1); + // gStyle->SetOptFit(1111); + + fB->SetFitResult( result, iparB); + fB->SetRange(rangeB().first, rangeB().second); + fB->SetLineColor(kRed); + hB->GetListOfFunctions()->Add(fB); + + //hB->Draw("AP"); + + // c1->cd(2); + fSB2->SetFitResult( result, iparSB2); + fSB2->SetRange(rangeSB2().first, rangeSB2().second); + fSB2->SetLineColor(kRed); + hSB2->GetListOfFunctions()->Add(fSB2); + // hSB2->Draw("AP"); + + // c1->cd(3); + fSB3->SetFitResult( result, iparSB3); + fSB3->SetRange(rangeSB3().first, rangeSB3().second); + fSB3->SetLineColor(kRed); + hSB3->GetListOfFunctions()->Add(fSB3); + // hSB3->Draw("AP"); + + + // c1->cd(4); + fSB4->SetFitResult( result, iparSB4); + fSB4->SetRange(rangeSB4().first, rangeSB4().second); + fSB4->SetLineColor(kRed); + hSB4->GetListOfFunctions()->Add(fSB4); + // hSB4->Draw("AP"); + + + + TMultiGraph * mg_e9 = new TMultiGraph(); + mg_e9->Add(hB,"p"); hB->SetMarkerStyle(20); + mg_e9->Add(hSB2,"p"); hSB2->SetMarkerStyle(21); + mg_e9->Add(hSB3,"p"); hSB3->SetMarkerStyle(22); + mg_e9->Add(hSB4,"p"); hSB4->SetMarkerStyle(23); + mg_e9->Draw("a"); //must draw first before labeling axes + mg_e9->SetTitle(" "); + mg_e9->GetXaxis()->SetTitle("Lorentz #beta"); + mg_e9->GetYaxis()->SetTitle("dA/dE / (10^{-6} a.u./(Mev#upointion#upoints^{-1})"); + mg_e9->SetMinimum(0.5); + mg_e9->SetMaximum(1.4); + /* TF1 * tf1_birk1 = new TF1("tf1_birk1","[0]*(1/(1+[1]*1.65901*TMath::Power(x,-1.7218)))",0.3,0.59); + TF1 * tf1_birk2 = new TF1("tf1_birk2","[0]*(1/(1+[1]*4*1.65901*TMath::Power(x,-1.7218)))",0.34,0.59); + TF1 * tf1_birk3 = new TF1("tf1_birk3","[0]*(1/(1+[1]*36*1.65901*TMath::Power(x,-1.7218)))",0.4,0.73); + TF1 * tf1_birk4 = new TF1("tf1_birk4","[0]*(1/(1+[1]*64*1.65901*TMath::Power(x,-1.7218)))",0.43,0.73); + tf1_birk1->SetParameters(1,0.01);tf1_birk1->SetLineStyle(2);tf1_birk1->SetLineColor(kBlack); + tf1_birk2->SetParameters(1,0.01);tf1_birk2->SetLineStyle(2);tf1_birk2->SetLineColor(kBlack); + tf1_birk3->SetParameters(1,0.01);tf1_birk3->SetLineStyle(2);tf1_birk3->SetLineColor(kBlack); + tf1_birk4->SetParameters(1,0.01);tf1_birk4->SetLineStyle(2);tf1_birk4->SetLineColor(kBlack); + hB_2->Fit(tf1_birk1); + hSB2_2->Fit(tf1_birk2); + hSB3_2->Fit(tf1_birk3); + hSB4_2->Fit(tf1_birk4); + + tf1_birk1->Draw("same"); + tf1_birk2->Draw("same"); + tf1_birk3->Draw("same"); + tf1_birk4->Draw("same"); + */ + TLegend * mylegende9 = new TLegend(0.65,0.65,0.9,0.9); + mylegende9->SetFillColor(0); // white background + mylegende9->SetTextFont(22); + mylegende9->SetBorderSize(0); // get rid of the box + mylegende9->SetTextSize(0.035); // set text size + mylegende9->AddEntry(hB,"Protons","p"); // options: p,l,f + mylegende9->AddEntry(hSB2,"Helium","p"); // options: p,l,f + mylegende9->AddEntry(hSB3,"Carbon","p"); // options: p,l,f + mylegende9->AddEntry(hSB4,"Oxygen","p"); // options: p,l,f + mylegende9->AddEntry(fB,"BVT Fit","l"); // options: p,l,f + // mylegende9->AddEntry(tf1_birk1,"Birks Fit","l"); // options: p,l,f + + + // mylegende9->AddEntry(tf1_pow1,"[1]#upointpow(#beta,[2])}","l"); // options: p,l,f + mylegende9->Draw(); + gPad->Modified(); + c1->SaveAs("figs/bvt_beta_combinedfit.pdf"); + c1->SaveAs("figs/bvt_beta_combinedfit.png"); + c1->SaveAs("figs/bvt_beta_combinedfit.C"); + +} diff --git a/Scripts_20161126/combinedFit_hit2.C b/Scripts_20161126/combinedFit_hit2.C new file mode 100644 index 0000000..1e9fa57 --- /dev/null +++ b/Scripts_20161126/combinedFit_hit2.C @@ -0,0 +1,282 @@ +//+ Combined (simultaneous) fit of two histogram with separate functions +// and some common parameters +// +// See http://root.cern.ch/phpBB3//viewtopic.php?f=3&t=11740#p50908 +// for a modified version working with Fumili or GSLMultiFit +// +// N.B. this macro must be compiled with ACliC +// +//Author: L. Moneta - Dec 2010 + +#include "Fit/Fitter.h" +#include "Fit/BinData.h" +#include "Fit/Chi2FCN.h" +#include "TH1.h" +#include "TList.h" +#include "Math/WrappedMultiTF1.h" +#include "HFitInterface.h" +#include "TCanvas.h" +#include "TStyle.h" +#include "TGraphErrors.h" +#include "TLegend.h" +#include "TMultiGraph.h" + + +// definition of shared parameter +// background function +int iparB[3] = { 0, // exp amplitude in B histo + 1, // T_0 + 2 // common parameter + +}; + +// signal + background function +int iparSB2[3] = { 0, // amplitude in S+B histo + 3, // T_0 + 2, // common parameter + +}; + +int iparSB3[3] = { 0, // amplitude + 4, // T_0 + 2, // common parameter + +}; + +int iparSB4[3] = { 0, // amplitude + 5, // T_0 + 2, // common parameter + +}; + +struct GlobalChi2 { + GlobalChi2( ROOT::Math::IMultiGenFunction & f1, + ROOT::Math::IMultiGenFunction & f2, + ROOT::Math::IMultiGenFunction & f3, + ROOT::Math::IMultiGenFunction & f4) : + fChi2_1(&f1), fChi2_2(&f2), fChi2_3(&f3), fChi2_4(&f4) {} + + // parameter vector is first background (in common 1 and 2) + // and then is signal (only in 2) + double operator() (const double *par) const { + double p1[3]; + for (int i = 0; i < 3; ++i) p1[i] = par[iparB[i] ]; + + double p2[3]; + for (int i = 0; i < 3; ++i) p2[i] = par[iparSB2[i] ]; + + double p3[3]; + for (int i = 0; i < 3; ++i) p3[i] = par[iparSB3[i] ]; + + double p4[3]; + for (int i = 0; i < 3; ++i) p4[i] = par[iparSB4[i] ]; + + return (*fChi2_1)(p1) + (*fChi2_2)(p2) + (*fChi2_3)(p3) + (*fChi2_4)(p4); + } + + const ROOT::Math::IMultiGenFunction * fChi2_1; + const ROOT::Math::IMultiGenFunction * fChi2_2; + const ROOT::Math::IMultiGenFunction * fChi2_3; + const ROOT::Math::IMultiGenFunction * fChi2_4; + + +}; + +void combinedFit_hit2() { + +#if defined(__CINT__) && !defined(__MAKECINT__) + cout << "ERROR: This tutorial can run only using ACliC, you must run it by doing: " << endl; + cout << "\t .x $ROOTSYS/tutorials/fit/combinedFit_hit.C+" << endl; + return; +#endif + + + TF1 * fB = new TF1("fB","[0]*( (1- 0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1]) -x*x )/(TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7) -x*x )) / (1+[2]* (1- 0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1]) -x*x )/(TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7) -x*x ))*1.0*1.65901*TMath::Power(x,-1.7218)) + 0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1]) -x*x )/(TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7) -x*x ) ) ",0,1);//energy units in keV + //TF1 * fB = new TF1("fB","[0]*( (1-[1]) / (1+[2]* (1- [1])*1.0*1.65901*TMath::Power(x,-1.7218)) +[1] ) ",0,1); + + TF1 * fSB2 = new TF1("fSB2","[0]*( (1- 0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1]) -x*x )/(TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7) -x*x )) / (1+[2]* (1- 0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1]) -x*x )/(TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7) -x*x ))*4.0*1.65901*TMath::Power(x,-1.7218)) + 0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1]) -x*x )/(TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7) -x*x ) ) ",0,1);//energy units in keV + //TF1 * fSB2 = new TF1("fSB2","[0]*( (1-[1]) / (1+[2]* (1- [1])*4.0*1.65901*TMath::Power(x,-1.7218)) +[1] ) ",0,1); + + + TF1 * fSB3 = new TF1("fSB3","[0]*( (1- 0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1]) -x*x )/(TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7) -x*x )) / (1+[2]* (1- 0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1]) -x*x )/(TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7) -x*x ))*36.0*1.65901*TMath::Power(x,-1.7218)) + 0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1]) -x*x )/(TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7) -x*x ) ) ",0,1);//energy units in keV + //TF1 * fSB3 = new TF1("fSB3","[0]*( (1-[1]) / (1+[2]* (1- [1])*36.0*1.65901*TMath::Power(x,-1.7218)) +[1] ) ",0,1); + + + TF1 * fSB4 = new TF1("fSB4","[0]*( (1- 0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1]) -x*x )/(TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7) -x*x )) / (1+[2]* (1- 0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1]) -x*x )/(TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7) -x*x ))*64.0*1.65901*TMath::Power(x,-1.7218)) + 0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1]) -x*x )/(TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7) -x*x ) ) ",0,1); //energy units in keV + // TF1 * fSB4 = new TF1("fSB4","[0]*( (1-[1]) / (1+[2]* (1- [1])*64.0*1.65901*TMath::Power(x,-1.7218)) +[1] ) ",0,1); + + TGraphErrors * hB = new TGraphErrors("energylist_p_bpmbeta1.txt","%lg %lg %lg"); + TGraphErrors * hSB2 = new TGraphErrors("energylist_he_bpmbeta1.txt","%lg %lg %lg"); + TGraphErrors * hSB3 = new TGraphErrors("energylist_c_bpmbeta1.txt","%lg %lg %lg"); + TGraphErrors * hSB4 = new TGraphErrors("energylist_o_bpmbeta1.txt","%lg %lg %lg"); + + TGraphErrors * hB_2 = new TGraphErrors("energylist_p_bpmbeta1.txt","%lg %lg %lg"); + TGraphErrors * hSB2_2 = new TGraphErrors("energylist_he_bpmbeta1.txt","%lg %lg %lg"); + TGraphErrors * hSB3_2 = new TGraphErrors("energylist_c_bpmbeta1.txt","%lg %lg %lg"); + TGraphErrors * hSB4_2 = new TGraphErrors("energylist_o_bpmbeta1.txt","%lg %lg %lg"); + // perform now global fit + + // TF1 * fSB2 = new TF1("fSB2","expo + gaus(2)",0,100); + + ROOT::Math::WrappedMultiTF1 wfB(*fB,1); + ROOT::Math::WrappedMultiTF1 wfSB2(*fSB2,1); + ROOT::Math::WrappedMultiTF1 wfSB3(*fSB3,1); + ROOT::Math::WrappedMultiTF1 wfSB4(*fSB4,1); + + + ROOT::Fit::DataOptions opt; + ROOT::Fit::DataRange rangeB; + // set the data range + rangeB.SetRange(0.3,0.59); + ROOT::Fit::BinData dataB(opt,rangeB); + ROOT::Fit::FillData(dataB, hB); + + ROOT::Fit::DataRange rangeSB2; + rangeSB2.SetRange(0.34,0.59); + ROOT::Fit::BinData dataSB2(opt,rangeSB2); + ROOT::Fit::FillData(dataSB2, hSB2); + + ROOT::Fit::DataRange rangeSB3; + rangeSB3.SetRange(0.4,0.73); + ROOT::Fit::BinData dataSB3(opt,rangeSB3); + ROOT::Fit::FillData(dataSB3, hSB3); + + ROOT::Fit::DataRange rangeSB4; + rangeSB4.SetRange(0.43,0.73); + ROOT::Fit::BinData dataSB4(opt,rangeSB4); + ROOT::Fit::FillData(dataSB4, hSB4); + + ROOT::Fit::Chi2Function chi2_B(dataB, wfB); + ROOT::Fit::Chi2Function chi2_SB2(dataSB2, wfSB2); + ROOT::Fit::Chi2Function chi2_SB3(dataSB3, wfSB3); + ROOT::Fit::Chi2Function chi2_SB4(dataSB4, wfSB4); + + + + GlobalChi2 globalChi2(chi2_B, chi2_SB2, chi2_SB3, chi2_SB4); + + ROOT::Fit::Fitter fitter; + + const int Npar = 6; + double par0[Npar] = {1.4,1E5, 0.005, 1e4,1e4,1e4}; + // double par0[Npar] = {1.4,0.000007,0.15,1.4, 0.00250,2, 0.005,2, 0.007}; + + // create before the parameter settings in order to fix or set range on them + fitter.Config().SetParamsSettings(Npar,par0); + // fix 5-th parameter + // fitter.Config().ParSettings(1).Fix(); + // set limits on the third and 4-th parameter + fitter.Config().ParSettings(0).SetLimits(0,5); + fitter.Config().ParSettings(2).SetLimits(0,1.0); + fitter.Config().ParSettings(1).SetLimits(0,2E9); + fitter.Config().ParSettings(3).SetLimits(0,2E6);//1 + fitter.Config().ParSettings(4).SetLimits(0,2E6);//10 + fitter.Config().ParSettings(5).SetLimits(0,2E6);//10 + + + // fitter.Config().ParSettings(4).SetStepSize(2); + // fitter.Config().ParSettings(1).SetStepSize(0.1); + // fitter.Config().ParSettings(6).SetStepSize(10); + // fitter.Config().ParSettings(8).SetStepSize(10); + + + fitter.Config().MinimizerOptions().SetPrintLevel(0); + fitter.Config().SetMinimizer("Minuit2","Migrad"); //Minuit2 + //fitter.Config().SetNormErrors(true); + + // fit FCN function directly + // (specify optionally data size and flag to indicate that is a chi2 fit) + fitter.FitFCN(Npar,globalChi2,0,dataB.Size()+dataSB2.Size()+dataSB3.Size()+dataSB4.Size(),true); + ROOT::Fit::FitResult result = fitter.Result(); + result.Print(std::cout, true); + //result.PrintCovMatrix(std::cout); + + cout << "FitResult.Status() = " << result.Status() << endl; + + + TCanvas * c1 = new TCanvas("Simfit","Simultaneous fit"); + // c1->Divide(2,2); + // c1->cd(1); + // gStyle->SetOptFit(1111); + + fB->SetFitResult( result, iparB); + fB->SetRange(rangeB().first, rangeB().second); + fB->SetLineColor(kRed); + hB->GetListOfFunctions()->Add(fB); + + //hB->Draw("AP"); + + // c1->cd(2); + fSB2->SetFitResult( result, iparSB2); + fSB2->SetRange(rangeSB2().first, rangeSB2().second); + fSB2->SetLineColor(kRed); + hSB2->GetListOfFunctions()->Add(fSB2); + // hSB2->Draw("AP"); + + // c1->cd(3); + fSB3->SetFitResult( result, iparSB3); + fSB3->SetRange(rangeSB3().first, rangeSB3().second); + fSB3->SetLineColor(kRed); + hSB3->GetListOfFunctions()->Add(fSB3); + // hSB3->Draw("AP"); + + + // c1->cd(4); + fSB4->SetFitResult( result, iparSB4); + fSB4->SetRange(rangeSB4().first, rangeSB4().second); + fSB4->SetLineColor(kRed); + hSB4->GetListOfFunctions()->Add(fSB4); + // hSB4->Draw("AP"); + + + + TMultiGraph * mg_e9 = new TMultiGraph(); + mg_e9->Add(hB,"p"); hB->SetMarkerStyle(20); + mg_e9->Add(hSB2,"p"); hSB2->SetMarkerStyle(21); + mg_e9->Add(hSB3,"p"); hSB3->SetMarkerStyle(22); + mg_e9->Add(hSB4,"p"); hSB4->SetMarkerStyle(23); + mg_e9->Draw("a"); //must draw first before labeling axes + mg_e9->SetTitle(" "); + mg_e9->GetXaxis()->SetTitle("Lorentz #beta"); + mg_e9->GetYaxis()->SetTitle("dA/dE / (10^{-6} a.u./(Mev#upointion#upoints^{-1})"); + mg_e9->SetMinimum(0.5); + mg_e9->SetMaximum(1.4); + TF1 * tf1_birk1 = new TF1("tf1_birk1","[0]*(1/(1+[1]*1.65901*TMath::Power(x,-1.7218)))",0.3,0.59); + TF1 * tf1_birk2 = new TF1("tf1_birk2","[0]*(1/(1+[1]*4*1.65901*TMath::Power(x,-1.7218)))",0.34,0.59); + TF1 * tf1_birk3 = new TF1("tf1_birk3","[0]*(1/(1+[1]*36*1.65901*TMath::Power(x,-1.7218)))",0.4,0.73); + TF1 * tf1_birk4 = new TF1("tf1_birk4","[0]*(1/(1+[1]*64*1.65901*TMath::Power(x,-1.7218)))",0.43,0.73); + tf1_birk1->SetParameters(1.46123,0.0177651);tf1_birk1->SetLineStyle(2);tf1_birk1->SetLineColor(kBlack); + tf1_birk2->SetParameters(1.46123,0.00682331);tf1_birk2->SetLineStyle(2);tf1_birk2->SetLineColor(kBlack); + tf1_birk3->SetParameters(1.46123,0.00389243);tf1_birk3->SetLineStyle(2);tf1_birk3->SetLineColor(kBlack); + tf1_birk4->SetParameters(1.46123,0.00310792);tf1_birk4->SetLineStyle(2);tf1_birk4->SetLineColor(kBlack); + // hB_2->Fit(tf1_birk1); + // hSB2_2->Fit(tf1_birk2); + //hSB3_2->Fit(tf1_birk3); + //hSB4_2->Fit(tf1_birk4); + + tf1_birk1->Draw("same"); + tf1_birk2->Draw("same"); + tf1_birk3->Draw("same"); + tf1_birk4->Draw("same"); + + TLegend * mylegende9 = new TLegend(0.65,0.65,0.9,0.9); + mylegende9->SetFillColor(0); // white background + mylegende9->SetTextFont(22); + mylegende9->SetBorderSize(0); // get rid of the box + mylegende9->SetTextSize(0.035); // set text size + mylegende9->AddEntry(hB,"Protons","p"); // options: p,l,f + mylegende9->AddEntry(hSB2,"Helium","p"); // options: p,l,f + mylegende9->AddEntry(hSB3,"Carbon","p"); // options: p,l,f + mylegende9->AddEntry(hSB4,"Oxygen","p"); // options: p,l,f + mylegende9->AddEntry(fB,"BVT Fit","l"); // options: p,l,f + mylegende9->AddEntry(tf1_birk1,"Birks Fit","l"); // options: p,l,f + + + // mylegende9->AddEntry(tf1_pow1,"[1]#upointpow(#beta,[2])}","l"); // options: p,l,f + mylegende9->Draw(); + gPad->Modified(); + c1->SaveAs("figs/bvt_beta_combinedfit.pdf"); + c1->SaveAs("figs/bvt_beta_combinedfit.png"); + c1->SaveAs("figs/bvt_beta_combinedfit.C"); + +} diff --git a/Scripts_20161126/combinedFit_hit2_C_ACLiC_dict_rdict.pcm b/Scripts_20161126/combinedFit_hit2_C_ACLiC_dict_rdict.pcm new file mode 100644 index 0000000..fb27337 Binary files /dev/null and b/Scripts_20161126/combinedFit_hit2_C_ACLiC_dict_rdict.pcm differ diff --git a/Scripts_20161126/combinedFit_hit_C_ACLiC_dict_rdict.pcm b/Scripts_20161126/combinedFit_hit_C_ACLiC_dict_rdict.pcm new file mode 100644 index 0000000..cba8a2a Binary files /dev/null and b/Scripts_20161126/combinedFit_hit_C_ACLiC_dict_rdict.pcm differ diff --git a/Scripts_20161126/combinedFit_hitbirk.C b/Scripts_20161126/combinedFit_hitbirk.C new file mode 100644 index 0000000..97822dd --- /dev/null +++ b/Scripts_20161126/combinedFit_hitbirk.C @@ -0,0 +1,273 @@ +//+ Combined (simultaneous) fit of two histogram with separate functions +// and some common parameters +// +// See http://root.cern.ch/phpBB3//viewtopic.php?f=3&t=11740#p50908 +// for a modified version working with Fumili or GSLMultiFit +// +// N.B. this macro must be compiled with ACliC +// +//Author: L. Moneta - Dec 2010 + +#include "Fit/Fitter.h" +#include "Fit/BinData.h" +#include "Fit/Chi2FCN.h" +#include "TH1.h" +#include "TList.h" +#include "Math/WrappedMultiTF1.h" +#include "HFitInterface.h" +#include "TCanvas.h" +#include "TStyle.h" +#include "TGraphErrors.h" +#include "TLegend.h" +#include "TMultiGraph.h" + + +// definition of shared parameter +// background function +int iparB[2] = { 0, //amplitude + 1, // k_b + + +}; + +// signal + background function +int iparSB2[2] = { 0, // amplitude + 2, // k_b + + +}; + +int iparSB3[2] = { 0, // amplitude + 3, // k_b + + +}; + +int iparSB4[2] = { 0, // amplitude + 4, // k_b + + +}; + +struct GlobalChi2 { + GlobalChi2( ROOT::Math::IMultiGenFunction & f1, + ROOT::Math::IMultiGenFunction & f2, + ROOT::Math::IMultiGenFunction & f3, + ROOT::Math::IMultiGenFunction & f4) : + fChi2_1(&f1), fChi2_2(&f2), fChi2_3(&f3), fChi2_4(&f4) {} + + // parameter vector is first background (in common 1 and 2) + // and then is signal (only in 2) + double operator() (const double *par) const { + double p1[2]; + for (int i = 0; i < 2; ++i) p1[i] = par[iparB[i] ]; + + double p2[2]; + for (int i = 0; i < 2; ++i) p2[i] = par[iparSB2[i] ]; + + double p3[2]; + for (int i = 0; i < 2; ++i) p3[i] = par[iparSB3[i] ]; + + double p4[2]; + for (int i = 0; i < 2; ++i) p4[i] = par[iparSB4[i] ]; + + return (*fChi2_1)(p1) + (*fChi2_2)(p2) + (*fChi2_3)(p3) + (*fChi2_4)(p4); + } + + const ROOT::Math::IMultiGenFunction * fChi2_1; + const ROOT::Math::IMultiGenFunction * fChi2_2; + const ROOT::Math::IMultiGenFunction * fChi2_3; + const ROOT::Math::IMultiGenFunction * fChi2_4; + + +}; + +void combinedFit_hitbirk() { + +#if defined(__CINT__) && !defined(__MAKECINT__) + cout << "ERROR: This tutorial can run only using ACliC, you must run it by doing: " << endl; + cout << "\t .x $ROOTSYS/tutorials/fit/combinedFit_hit.C+" << endl; + return; +#endif + TF1 * fB = new TF1("fB","[0]*(1/(1+[1]*1.65901*TMath::Power(x,-1.7218)))",0.3,0.59); + TF1 * fSB2 = new TF1("fSB2","[0]*(1/(1+[1]*4*1.65901*TMath::Power(x,-1.7218)))",0.34,0.59); + TF1 * fSB3 = new TF1("fSB3","[0]*(1/(1+[1]*36*1.65901*TMath::Power(x,-1.7218)))",0.4,0.73); + TF1 * fSB4 = new TF1("fSB4","[0]*(1/(1+[1]*64*1.65901*TMath::Power(x,-1.7218)))",0.43,0.73); + + + + + TGraphErrors * hB = new TGraphErrors("energylist_p_bpmbeta1.txt","%lg %lg %lg"); + TGraphErrors * hSB2 = new TGraphErrors("energylist_he_bpmbeta1.txt","%lg %lg %lg"); + TGraphErrors * hSB3 = new TGraphErrors("energylist_c_bpmbeta1.txt","%lg %lg %lg"); + TGraphErrors * hSB4 = new TGraphErrors("energylist_o_bpmbeta1.txt","%lg %lg %lg"); + + TGraphErrors * hB_2 = new TGraphErrors("energylist_p_bpmbeta1.txt","%lg %lg %lg"); + TGraphErrors * hSB2_2 = new TGraphErrors("energylist_he_bpmbeta1.txt","%lg %lg %lg"); + TGraphErrors * hSB3_2 = new TGraphErrors("energylist_c_bpmbeta1.txt","%lg %lg %lg"); + TGraphErrors * hSB4_2 = new TGraphErrors("energylist_o_bpmbeta1.txt","%lg %lg %lg"); + // perform now global fit + + // TF1 * fSB2 = new TF1("fSB2","expo + gaus(2)",0,100); + + ROOT::Math::WrappedMultiTF1 wfB(*fB,1); + ROOT::Math::WrappedMultiTF1 wfSB2(*fSB2,1); + ROOT::Math::WrappedMultiTF1 wfSB3(*fSB3,1); + ROOT::Math::WrappedMultiTF1 wfSB4(*fSB4,1); + + + ROOT::Fit::DataOptions opt; + ROOT::Fit::DataRange rangeB; + // set the data range + rangeB.SetRange(0.3,0.59); + ROOT::Fit::BinData dataB(opt,rangeB); + ROOT::Fit::FillData(dataB, hB); + + ROOT::Fit::DataRange rangeSB2; + rangeSB2.SetRange(0.34,0.59); + ROOT::Fit::BinData dataSB2(opt,rangeSB2); + ROOT::Fit::FillData(dataSB2, hSB2); + + ROOT::Fit::DataRange rangeSB3; + rangeSB3.SetRange(0.4,0.73); + ROOT::Fit::BinData dataSB3(opt,rangeSB3); + ROOT::Fit::FillData(dataSB3, hSB3); + + ROOT::Fit::DataRange rangeSB4; + rangeSB4.SetRange(0.43,0.73); + ROOT::Fit::BinData dataSB4(opt,rangeSB4); + ROOT::Fit::FillData(dataSB4, hSB4); + + ROOT::Fit::Chi2Function chi2_B(dataB, wfB); + ROOT::Fit::Chi2Function chi2_SB2(dataSB2, wfSB2); + ROOT::Fit::Chi2Function chi2_SB3(dataSB3, wfSB3); + ROOT::Fit::Chi2Function chi2_SB4(dataSB4, wfSB4); + + + + GlobalChi2 globalChi2(chi2_B, chi2_SB2, chi2_SB3, chi2_SB4); + + ROOT::Fit::Fitter fitter; + + const int Npar = 5; + double par0[Npar] = {1.4,0.1,0.1,0.1,0.1}; + // double par0[Npar] = {1.4,0.000007,0.15,1.4, 0.00250,2, 0.005,2, 0.007}; + + // create before the parameter settings in order to fix or set range on them + fitter.Config().SetParamsSettings(Npar,par0); + // fix 5-th parameter + // fitter.Config().ParSettings(1).Fix(); + // set limits on the third and 4-th parameter + fitter.Config().ParSettings(0).SetLimits(0,5); + fitter.Config().ParSettings(1).SetLimits(0,1.0); + fitter.Config().ParSettings(2).SetLimits(0,1.0); + fitter.Config().ParSettings(3).SetLimits(0,1.0);//1 + fitter.Config().ParSettings(4).SetLimits(0,1.0);//10 + + + // fitter.Config().ParSettings(4).SetStepSize(2); + // fitter.Config().ParSettings(1).SetStepSize(0.1); + // fitter.Config().ParSettings(6).SetStepSize(10); + // fitter.Config().ParSettings(8).SetStepSize(10); + + + fitter.Config().MinimizerOptions().SetPrintLevel(0); + fitter.Config().SetMinimizer("Minuit2","Migrad"); //Minuit2 + //fitter.Config().SetNormErrors(true); + + // fit FCN function directly + // (specify optionally data size and flag to indicate that is a chi2 fit) + fitter.FitFCN(Npar,globalChi2,0,dataB.Size()+dataSB2.Size()+dataSB3.Size()+dataSB4.Size(),true); + ROOT::Fit::FitResult result = fitter.Result(); + result.Print(std::cout, true); + //result.PrintCovMatrix(std::cout); + + cout << "FitResult.Status() = " << result.Status() << endl; + + + TCanvas * c1 = new TCanvas("Simfit","Simultaneous fit"); + // c1->Divide(2,2); + // c1->cd(1); + // gStyle->SetOptFit(1111); + + fB->SetFitResult( result, iparB); + fB->SetRange(rangeB().first, rangeB().second); + fB->SetLineColor(kRed); + hB->GetListOfFunctions()->Add(fB); + + //hB->Draw("AP"); + + // c1->cd(2); + fSB2->SetFitResult( result, iparSB2); + fSB2->SetRange(rangeSB2().first, rangeSB2().second); + fSB2->SetLineColor(kRed); + hSB2->GetListOfFunctions()->Add(fSB2); + // hSB2->Draw("AP"); + + // c1->cd(3); + fSB3->SetFitResult( result, iparSB3); + fSB3->SetRange(rangeSB3().first, rangeSB3().second); + fSB3->SetLineColor(kRed); + hSB3->GetListOfFunctions()->Add(fSB3); + // hSB3->Draw("AP"); + + + // c1->cd(4); + fSB4->SetFitResult( result, iparSB4); + fSB4->SetRange(rangeSB4().first, rangeSB4().second); + fSB4->SetLineColor(kRed); + hSB4->GetListOfFunctions()->Add(fSB4); + // hSB4->Draw("AP"); + + + + TMultiGraph * mg_e9 = new TMultiGraph(); + mg_e9->Add(hB,"p"); hB->SetMarkerStyle(20); + mg_e9->Add(hSB2,"p"); hSB2->SetMarkerStyle(21); + mg_e9->Add(hSB3,"p"); hSB3->SetMarkerStyle(22); + mg_e9->Add(hSB4,"p"); hSB4->SetMarkerStyle(23); + mg_e9->Draw("a"); //must draw first before labeling axes + mg_e9->SetTitle(" "); + mg_e9->GetXaxis()->SetTitle("Lorentz #beta"); + mg_e9->GetYaxis()->SetTitle("dA/dE / (10^{-6} a.u./(Mev#upointion#upoints^{-1})"); + mg_e9->SetMinimum(0.5); + mg_e9->SetMaximum(1.4); + TF1 * tf1_birk1 = new TF1("tf1_birk1","[0]*(1/(1+[1]*1.65901*TMath::Power(x,-1.7218)))",0.3,0.59); + TF1 * tf1_birk2 = new TF1("tf1_birk2","[0]*(1/(1+[1]*4*1.65901*TMath::Power(x,-1.7218)))",0.34,0.59); + TF1 * tf1_birk3 = new TF1("tf1_birk3","[0]*(1/(1+[1]*36*1.65901*TMath::Power(x,-1.7218)))",0.4,0.73); + TF1 * tf1_birk4 = new TF1("tf1_birk4","[0]*(1/(1+[1]*64*1.65901*TMath::Power(x,-1.7218)))",0.43,0.73); + tf1_birk1->SetParameters(1,0.01);tf1_birk1->SetLineStyle(2);tf1_birk1->SetLineColor(kBlack); + tf1_birk2->SetParameters(1,0.01);tf1_birk2->SetLineStyle(2);tf1_birk2->SetLineColor(kBlack); + tf1_birk3->SetParameters(1,0.01);tf1_birk3->SetLineStyle(2);tf1_birk3->SetLineColor(kBlack); + tf1_birk4->SetParameters(1,0.01);tf1_birk4->SetLineStyle(2);tf1_birk4->SetLineColor(kBlack); + hB_2->Fit(tf1_birk1); + hSB2_2->Fit(tf1_birk2); + hSB3_2->Fit(tf1_birk3); + hSB4_2->Fit(tf1_birk4); + + tf1_birk1->Draw("same"); + tf1_birk2->Draw("same"); + tf1_birk3->Draw("same"); + tf1_birk4->Draw("same"); + + TLegend * mylegende9 = new TLegend(0.65,0.65,0.9,0.9); + mylegende9->SetFillColor(0); // white background + mylegende9->SetTextFont(22); + mylegende9->SetBorderSize(0); // get rid of the box + mylegende9->SetTextSize(0.035); // set text size + mylegende9->AddEntry(hB,"Protons","p"); // options: p,l,f + mylegende9->AddEntry(hSB2,"Helium","p"); // options: p,l,f + mylegende9->AddEntry(hSB3,"Carbon","p"); // options: p,l,f + mylegende9->AddEntry(hSB4,"Oxygen","p"); // options: p,l,f + mylegende9->AddEntry(fB,"Birks Fit 1","l"); // options: p,l,f + mylegende9->AddEntry(tf1_birk1,"Birks Fit 2","l"); // options: p,l,f + + + // mylegende9->AddEntry(tf1_pow1,"[1]#upointpow(#beta,[2])}","l"); // options: p,l,f + mylegende9->Draw(); + gPad->Modified(); + c1->SaveAs("figs/bvt_beta_combinedfitbirks2.pdf"); + c1->SaveAs("figs/bvt_beta_combinedfitbirks2.png"); + c1->SaveAs("figs/bvt_beta_combinedfitbirks2.C"); + +} diff --git a/Scripts_20161126/combinedFit_hitbirk_C_ACLiC_dict_rdict.pcm b/Scripts_20161126/combinedFit_hitbirk_C_ACLiC_dict_rdict.pcm new file mode 100644 index 0000000..036d1b6 Binary files /dev/null and b/Scripts_20161126/combinedFit_hitbirk_C_ACLiC_dict_rdict.pcm differ diff --git a/Scripts_20161126/convert b/Scripts_20161126/convert new file mode 100755 index 0000000..b68b4b0 Binary files /dev/null and b/Scripts_20161126/convert differ diff --git a/Scripts_20161126/convert.c b/Scripts_20161126/convert.c new file mode 100644 index 0000000..bb81b2b --- /dev/null +++ b/Scripts_20161126/convert.c @@ -0,0 +1,213 @@ +#include +#include +#include +#include +#include +#include +#include +#include + +using namespace std; + +void csvToRoot(TString filename) +{ +} +Int_t main(Int_t argc, const char *argv[]) +{ + + const char *dbasename = "/work/leverington/beamprofilemonitor/hitdata/HIT_26-11-2016/database.csv"; + const char *dirname = "/work/leverington/beamprofilemonitor/hitdata/HIT_26-11-2016/with_timestamp/csv/"; + const char *outputdirname = "/work/leverington/beamprofilemonitor/hitdata/HIT_26-11-2016/with_timestamp/pin/"; + const char *dirCsv = "/work/leverington/beamprofilemonitor/hitdata/HIT_26-11-2016/hit_csv/with_timestamp/"; + const char *ext = ".csv"; + + //read database + string key, value; + ifstream infile(dbasename, ios::in); + map database; + while (infile >> key >> value) + { + database[key] = value; + cout << value << endl; + } + + TSystemDirectory dir(dirname, dirname); + TList *files = dir.GetListOfFiles(); + if (files) + { + TSystemFile *file; + TString fname; + TIter next(files); + + while ((file = (TSystemFile *)next())) + { + fname = file->GetName(); + if (fname == "database.csv") + continue; + if (!file->IsDirectory() && fname.EndsWith(ext)) + { + + TTree *tree = new TTree("t", "t"); + cout << fname << endl; + //tree->ReadFile(TString(TString(dirname) + file->GetName()), "time/D:event_id:sync_out:sync_in:data_ok:led_voltage:current:ch00:ch01:ch02:ch03:ch04:ch05:ch06:ch07:ch08:ch09:ch10:ch11:ch12:ch13:ch14:ch15:ch16:ch17:ch18:ch19:ch20:ch21:ch22:ch23:ch24:ch25:ch26:ch27:ch28:ch29:ch30:ch31:ch32:ch33:ch34:ch35:ch36:ch37:ch38:ch39:ch40:ch41:ch42:ch43:ch44:ch45:ch46:ch47:ch48:ch49:ch50:ch51:ch52:ch53:ch54:ch55:ch56:ch57:ch58:ch59:ch60:ch61:ch62:ch63:ch64:ch65:ch66:ch67:ch68:ch69:ch70:ch71:ch72:ch73:ch74:ch75:ch76:ch77:ch78:ch79:ch80:ch81:ch82:ch83:ch84:ch85:ch86:ch87:ch88:ch89:ch90:ch91:ch92:ch93:ch94:ch95:ch96:ch97:ch98:ch99:ch100:ch101:ch102:ch103:ch104:ch105:ch106:ch107:ch108:ch109:ch110:ch111:ch112:ch113:ch114:ch115:ch116:ch117:ch118:ch119:ch120:ch121:ch122:ch123:ch124:ch125:ch126:ch127", '\t'); + tree->ReadFile(TString(TString(dirname) + file->GetName()), "time/D:event_id:sync_out:sync_in:data_ok:led_voltage:current:ch00:ch01:ch02:ch03:ch04:ch05:ch06:ch07:ch08:ch09:ch10:ch11:ch12:ch13:ch14:ch15:ch16:ch17:ch18:ch19:ch20:ch21:ch22:ch23:ch24:ch25:ch26:ch27:ch28:ch29:ch30:ch31:ch32:ch33:ch34:ch35:ch36:ch37:ch38:ch39:ch40:ch41:ch42:ch43:ch44:ch45:ch46:ch47:ch48:ch49:ch50:ch51:ch52:ch53:ch54:ch55:ch56:ch57:ch58:ch59:ch60:ch61:ch62:ch63", '\t'); + TString outname = TString(outputdirname) + fname; + outname.Replace(outname.Length() - 3, 3, TString("root")); + TFile *outfile = new TFile(outname.Data(), "recreate"); + outfile->cd(); + //outfile = tree->GetCurrentFile(); + + TTree *tree2 = new TTree("t2", "t2"); + + fname.Replace(fname.Length() - 3, 3, TString("root")); + string key = string(fname.Data()); + key.erase(key.end() - 5, key.end()); + if(database[key] == "nothing"){ + outfile->Close(); + continue; + } + printf("%s\n", database[key].c_str()); + string value = string(dirCsv) + database[key] + ".csv"; + printf("name1: %s , name2: %s\n", key.data(), value.data()); + + tree2->ReadFile(value.data(), "TIME2/D:IC1:IC2:MW1_FOCUSX:MW1_FOCUSY:MW2_FOCUSX:MW2_FOCUSY:MW1_POSX:MW1_POSY:MW2_POSX:MW2_POSY:TCS-SPAM:TCS-KO:BNEXTPOINT:ANALOG_IN1:ANALOG_IN2:ENERGY:INTENSITY:ION-SORT", '\t'); + + int k = 0; + int count = 0; + double ic1, ic2, mw1_focusx, mw1_focusy, mw2_focusx, mw2_focusy, mw1_posx, mw1_posy, mw2_posx, mw2_posy; + double ic1_avg, ic2_avg, mw1_focusx_avg, mw1_focusy_avg, mw2_focusx_avg, mw2_focusy_avg, mw1_posx_avg, mw1_posy_avg, mw2_posx_avg, mw2_posy_avg; + double time; + double time2; + + tree->SetBranchAddress("time", &time); + + tree2->SetBranchAddress("TIME2", &time2); + tree2->SetBranchAddress("IC1", &ic1); + tree2->SetBranchAddress("IC2", &ic2); + tree2->SetBranchAddress("MW1_FOCUSX", &mw1_focusx); + tree2->SetBranchAddress("MW1_FOCUSY", &mw1_focusy); + tree2->SetBranchAddress("MW2_FOCUSX", &mw2_focusx); + tree2->SetBranchAddress("MW2_FOCUSY", &mw2_focusy); + tree2->SetBranchAddress("MW1_POSX", &mw1_posx); + tree2->SetBranchAddress("MW1_POSY", &mw1_posy); + tree2->SetBranchAddress("MW2_POSX", &mw2_posx); + tree2->SetBranchAddress("MW2_POSY", &mw2_posy); + + TBranch *bic1 = tree->Branch("ic1", &ic1_avg, "ic1/D"); + TBranch *bic2 = tree->Branch("ic2", &ic2_avg, "ic2/D"); + TBranch *bmw1_focusx = tree->Branch("mw1_focusx", &mw1_focusx_avg, "mw1_focusx/D"); + TBranch *bmw1_focusy = tree->Branch("mw1_focusy", &mw1_focusy_avg, "mw1_focusy/D"); + TBranch *bmw2_focusx = tree->Branch("mw2_focusx", &mw2_focusx_avg, "mw2_focusx/D"); + TBranch *bmw2_focusy = tree->Branch("mw2_focusy", &mw2_focusy_avg, "mw2_focusy/D"); + TBranch *bmw1_posx = tree->Branch("mw1_posx", &mw1_posx_avg, "mw1_posx/D"); + TBranch *bmw1_posy = tree->Branch("mw1_posy", &mw1_posy_avg, "mw1_posy/D"); + TBranch *bmw2_posx = tree->Branch("mw2_posx", &mw2_posx_avg, "mw2_posx/D"); + TBranch *bmw2_posy = tree->Branch("mw2_posy", &mw2_posy_avg, "mw2_posy/D"); + + int currentEntryTree2 = 1; + + int nevents = tree->GetEntries(); + int nevents2 = tree2->GetEntries(); + ic1_avg = 0; + ic2_avg = 0; + mw1_focusx_avg = 0; + mw1_focusy_avg = 0; + mw2_focusx_avg = 0; + mw2_focusy_avg = 0; + mw1_posx_avg = 0; + mw1_posy_avg = 0; + mw2_posx_avg = 0; + mw2_posy_avg = 0; + time2 = 0; + tree2->GetEntry(currentEntryTree2); + + for (int i = 0; i < nevents; i++) + { + + tree->GetEntry(i); + + if (i % 10000 == 0) + { + + printf("merging event %d ,", i); + printf("Time %f \n", time); + printf("Entry hit %d ,", currentEntryTree2); + printf("Time hit %f \n", time2); + } + + int count = 0; + int count2 = 0; + + while (time2 <= (time + 0.2) && currentEntryTree2 < nevents2) + { + if ((time2 - time) <= 0.312 && (time2 - time) >= 0) + + { + tree2->GetEntry(currentEntryTree2); + + ic1_avg += ic1; + ic2_avg += ic2; + + count++; + } + tree2->GetEntry(currentEntryTree2); + + if ((time2 - time) <= 0.312 && (time2 - time) >= 0) + { + tree2->GetEntry(currentEntryTree2 - 4); + mw1_focusx_avg += mw1_focusx; + mw1_focusy_avg += mw1_focusy; + mw2_focusx_avg += mw2_focusx; + mw2_focusy_avg += mw2_focusy; + mw1_posx_avg += mw1_posx; + mw1_posy_avg += mw1_posy; + mw2_posx_avg += mw2_posx; + mw2_posy_avg += mw2_posy; + count2++; + } + + tree2->GetEntry(currentEntryTree2); + + currentEntryTree2++; + } + + ic1_avg /= count; + ic2_avg /= count; + mw1_focusx_avg /= count2; + mw1_focusy_avg /= count2; + mw2_focusx_avg /= count2; + mw2_focusy_avg /= count2; + mw1_posx_avg /= count2; + mw1_posy_avg /= count2; + mw2_posx_avg /= count2; + mw2_posy_avg /= count2; + + bic1->Fill(); + bic2->Fill(); + bmw1_focusx->Fill(); + bmw1_focusy->Fill(); + bmw2_focusx->Fill(); + bmw2_focusy->Fill(); + bmw1_posx->Fill(); + bmw1_posy->Fill(); + bmw2_posx->Fill(); + bmw2_posy->Fill(); + ic1_avg = 0; + ic2_avg = 0; + mw1_focusx_avg = 0; + mw1_focusy_avg = 0; + mw2_focusx_avg = 0; + mw2_focusy_avg = 0; + mw1_posx_avg = 0; + mw1_posy_avg = 0; + mw2_posx_avg = 0; + mw2_posy_avg = 0; + } + + tree->Write(); + outfile->Close(); + } + } + } + return 0; +} diff --git a/Scripts_20161126/convert_batch b/Scripts_20161126/convert_batch new file mode 100755 index 0000000..ccbbf75 Binary files /dev/null and b/Scripts_20161126/convert_batch differ diff --git a/Scripts_20161126/convert_batch.c b/Scripts_20161126/convert_batch.c new file mode 100644 index 0000000..92ef35b --- /dev/null +++ b/Scripts_20161126/convert_batch.c @@ -0,0 +1,248 @@ +#include +#include +#include +#include +#include +#include +#include +#include + +using namespace std; + +void csvToRoot(TString filename) +{ +} +Int_t main(Int_t argc, const char *argv[]) +{ + double timeoffset; + int mwoffset; + double timewindow; + double timeoffset2; + double timewindow2; + if (argc==7){ + timeoffset = atof(argv[2]); + mwoffset = atoi(argv[3]); + timewindow = atof(argv[4]); + timeoffset2 = atof(argv[5]); + timewindow2 = atof(argv[6]); + printf("Time offsets: %f %f\n", timeoffset, timeoffset2); + } + else if (argc==2){ + timeoffset = -0.24; //offset between ic and bpm readouts + mwoffset = 2; // offset for timestamped event. MW chamber position correlation seems to be better in other windows + timewindow = -0.312; //should be a negative number. window size in time to average over. + timeoffset2 = -0.21; //offset between ic and bpm readouts + timewindow2 = -0.05; //should be a negative number. window size in time to average over. + + printf("Default timeoffsets:%f\n", timeoffset); + printf("Default mwoffset:%i\n", mwoffset); + } + else { + printf("./convert_batch PiN_run32.csv \n"); + printf("or\n"); + printf("./convert_batch PiN_run32.csv -0.25 2 -0.312 -0.21 0.05\n"); + return 1; + } + + + + const char *dbasename = "/work/leverington/beamprofilemonitor/hitdata/HIT_26-11-2016/database.csv"; + const char *dirname = "/work/leverington/beamprofilemonitor/hitdata/HIT_26-11-2016/with_timestamp/csv/"; + const char *outputdirname = "/work/leverington/beamprofilemonitor/hitdata/HIT_26-11-2016/with_timestamp/pin/"; + const char *dirCsv = "/work/leverington/beamprofilemonitor/hitdata/HIT_26-11-2016/hit_csv/with_timestamp/"; + const char *ext = ".csv"; + + //read database + string key, value; + ifstream infile(dbasename, ios::in); + map database; + while (infile >> key >> value) + { + database[key] = value; + // cout << value << endl; + } + + TSystemDirectory dir(dirname, dirname); + if (true) + { + TSystemFile *file; + TString fname = argv[1]; + if (fname.EndsWith(ext)) + { + + TTree *tree = new TTree("t", "t"); + cout << fname << endl; + //tree->ReadFile(TString(TString(dirname) + file->GetName()), "time/D:event_id:sync_out:sync_in:data_ok:led_voltage:current:ch00:ch01:ch02:ch03:ch04:ch05:ch06:ch07:ch08:ch09:ch10:ch11:ch12:ch13:ch14:ch15:ch16:ch17:ch18:ch19:ch20:ch21:ch22:ch23:ch24:ch25:ch26:ch27:ch28:ch29:ch30:ch31:ch32:ch33:ch34:ch35:ch36:ch37:ch38:ch39:ch40:ch41:ch42:ch43:ch44:ch45:ch46:ch47:ch48:ch49:ch50:ch51:ch52:ch53:ch54:ch55:ch56:ch57:ch58:ch59:ch60:ch61:ch62:ch63:ch64:ch65:ch66:ch67:ch68:ch69:ch70:ch71:ch72:ch73:ch74:ch75:ch76:ch77:ch78:ch79:ch80:ch81:ch82:ch83:ch84:ch85:ch86:ch87:ch88:ch89:ch90:ch91:ch92:ch93:ch94:ch95:ch96:ch97:ch98:ch99:ch100:ch101:ch102:ch103:ch104:ch105:ch106:ch107:ch108:ch109:ch110:ch111:ch112:ch113:ch114:ch115:ch116:ch117:ch118:ch119:ch120:ch121:ch122:ch123:ch124:ch125:ch126:ch127", '\t'); + tree->ReadFile(TString(TString(dirname) + fname.Data()), "time/D:event_id:sync_out:sync_in:data_ok:led_voltage:current:ch00:ch01:ch02:ch03:ch04:ch05:ch06:ch07:ch08:ch09:ch10:ch11:ch12:ch13:ch14:ch15:ch16:ch17:ch18:ch19:ch20:ch21:ch22:ch23:ch24:ch25:ch26:ch27:ch28:ch29:ch30:ch31:ch32:ch33:ch34:ch35:ch36:ch37:ch38:ch39:ch40:ch41:ch42:ch43:ch44:ch45:ch46:ch47:ch48:ch49:ch50:ch51:ch52:ch53:ch54:ch55:ch56:ch57:ch58:ch59:ch60:ch61:ch62:ch63", '\t'); + TString outname = TString(outputdirname) + fname ; + outname.Replace(outname.Length() - 4, 4, TString(TString(argv[2])+".root")); + TFile *outfile = new TFile(outname.Data(), "recreate"); + outfile->cd(); + //outfile = tree->GetCurrentFile(); + + TTree *tree2 = new TTree("t2", "t2"); + + fname.Replace(fname.Length() - 3, 3, TString("root")); + string key = string(fname.Data()); + key.erase(key.end() - 5, key.end()); + if(database[key] == "nothing"){ + outfile->Close(); + return 1; + } + printf("%s\n", database[key].c_str()); + string value = string(dirCsv) + database[key] + ".csv"; + printf("name1: %s , name2: %s\n", key.data(), value.data()); + + tree2->ReadFile(value.data(), "TIME2/D:IC1:IC2:MW1_FOCUSX:MW1_FOCUSY:MW2_FOCUSX:MW2_FOCUSY:MW1_POSX:MW1_POSY:MW2_POSX:MW2_POSY:TCS-SPAM:TCS-KO:BNEXTPOINT:ANALOG_IN1:ANALOG_IN2:ENERGY:INTENSITY:ION-SORT", '\t'); + + int k = 0; + int count = 0; + double ic1, ic2, mw1_focusx, mw1_focusy, mw2_focusx, mw2_focusy, mw1_posx, mw1_posy, mw2_posx, mw2_posy; + double ic1_avg, ic2_avg, mw1_focusx_avg, mw1_focusy_avg, mw2_focusx_avg, mw2_focusy_avg, mw1_posx_avg, mw1_posy_avg, mw2_posx_avg, mw2_posy_avg; + double time; + double time2; + + tree->SetBranchAddress("time", &time); + + tree2->SetBranchAddress("TIME2", &time2); + tree2->SetBranchAddress("IC1", &ic1); + tree2->SetBranchAddress("IC2", &ic2); + tree2->SetBranchAddress("MW1_FOCUSX", &mw1_focusx); + tree2->SetBranchAddress("MW1_FOCUSY", &mw1_focusy); + tree2->SetBranchAddress("MW2_FOCUSX", &mw2_focusx); + tree2->SetBranchAddress("MW2_FOCUSY", &mw2_focusy); + tree2->SetBranchAddress("MW1_POSX", &mw1_posx); + tree2->SetBranchAddress("MW1_POSY", &mw1_posy); + tree2->SetBranchAddress("MW2_POSX", &mw2_posx); + tree2->SetBranchAddress("MW2_POSY", &mw2_posy); + + TBranch *bic1 = tree->Branch("ic1", &ic1_avg, "ic1/D"); + TBranch *bic2 = tree->Branch("ic2", &ic2_avg, "ic2/D"); + TBranch *bmw1_focusx = tree->Branch("mw1_focusx", &mw1_focusx_avg, "mw1_focusx/D"); + TBranch *bmw1_focusy = tree->Branch("mw1_focusy", &mw1_focusy_avg, "mw1_focusy/D"); + TBranch *bmw2_focusx = tree->Branch("mw2_focusx", &mw2_focusx_avg, "mw2_focusx/D"); + TBranch *bmw2_focusy = tree->Branch("mw2_focusy", &mw2_focusy_avg, "mw2_focusy/D"); + TBranch *bmw1_posx = tree->Branch("mw1_posx", &mw1_posx_avg, "mw1_posx/D"); + TBranch *bmw1_posy = tree->Branch("mw1_posy", &mw1_posy_avg, "mw1_posy/D"); + TBranch *bmw2_posx = tree->Branch("mw2_posx", &mw2_posx_avg, "mw2_posx/D"); + TBranch *bmw2_posy = tree->Branch("mw2_posy", &mw2_posy_avg, "mw2_posy/D"); + + int currentEntryTree2 = 1; + + int nevents = tree->GetEntries(); + int nevents2 = tree2->GetEntries(); + ic1_avg = 0; + ic2_avg = 0; + mw1_focusx_avg = 0; + mw1_focusy_avg = 0; + mw2_focusx_avg = 0; + mw2_focusy_avg = 0; + mw1_posx_avg = 0; + mw1_posy_avg = 0; + mw2_posx_avg = 0; + mw2_posy_avg = 0; + time2 = 0; + tree2->GetEntry(currentEntryTree2); + + for (int i = 0; i < nevents; i++) + { + + tree->GetEntry(i); + + if (i % 10000 == 0) + { + + printf("merging event %d ,", i); + printf("Time %f \n", time); + printf("Entry hit %d ,", currentEntryTree2); + printf("Time hit %f \n", time2); + } + + int count = 0; + int count2 = 0; + + while ( time2 < time + timeoffset && currentEntryTree2 < nevents2) + { + if (time2 - time - timeoffset > timewindow) + { + tree2->GetEntry(currentEntryTree2); + + if (ic1>0) ic1_avg += ic1; + if (ic2>0) ic2_avg += ic2; + + if (ic1>0) count++; + if (i % 2000 == 0) printf("%i %2.3f %2.3f %2.3f %2.3f %2.3f %i \n", count, ic1, time2, time, timeoffset, time2 - time - timeoffset, mwoffset); + } + + tree2->GetEntry(currentEntryTree2); + + if ( time2 - time - timeoffset2 > timewindow2) + { + tree2->GetEntry(currentEntryTree2 + mwoffset); //why currentEtryTree2-4? + mw1_focusx_avg += mw1_focusx; + mw1_focusy_avg += mw1_focusy; + mw2_focusx_avg += mw2_focusx; + mw2_focusy_avg += mw2_focusy; + mw1_posx_avg += mw1_posx; + mw1_posy_avg += mw1_posy; + mw2_posx_avg += mw2_posx; + mw2_posy_avg += mw2_posy; + count2++; + // if (i % 2000 == 0) printf("%i %2.3f %2.3f %2.3f %2.3f\n", count2, time, time2, ic1, mw1_posx); + //if (i % 2001 == 0) printf("%i %2.3f %2.3f %2.3f %2.3f\n", count2, time, time2, ic1, mw1_posx); + // if (i % 2002 == 0) printf("%i %2.3f %2.3f %2.3f %2.3f\n", count2, time, time2, ic1, mw1_posx); + // printf("%i %2.3f %2.3f %2.3f %2.3f\n", count2, time, time2, ic1, mw1_posx); + } + // currentEntryTree2++; + tree2->GetEntry(currentEntryTree2); + + currentEntryTree2++; + + } + + + if (count2>0){ + mw1_focusx_avg /= double(count2); + mw1_focusy_avg /= double(count2); + mw2_focusx_avg /= double(count2); + mw2_focusy_avg /= double(count2); + mw1_posx_avg /= double(count2); //the positions are weighted by the charge + mw1_posy_avg /= double(count2); + mw2_posx_avg /= double(count2); + mw2_posy_avg /= double(count2); + } + if(count>0){ + ic1_avg /= double(count); + ic2_avg /= double(count); + } + if (i % 2000 == 0) cout << ic1_avg << " " << ic2_avg << endl; + bic1->Fill(); + bic2->Fill(); + bmw1_focusx->Fill(); + bmw1_focusy->Fill(); + bmw2_focusx->Fill(); + bmw2_focusy->Fill(); + bmw1_posx->Fill(); + bmw1_posy->Fill(); + bmw2_posx->Fill(); + bmw2_posy->Fill(); + ic1_avg = 0.; + ic2_avg = 0.; + mw1_focusx_avg = 0.; + mw1_focusy_avg = 0.; + mw2_focusx_avg = 0.; + mw2_focusy_avg = 0.; + mw1_posx_avg = 0.; + mw1_posy_avg = 0.; + mw2_posx_avg = 0.; + mw2_posy_avg = 0.; + } + + tree->Write(); + outfile->Close(); + } + } + + + return 0; +} diff --git a/Scripts_20161126/convert_batch.c_old b/Scripts_20161126/convert_batch.c_old new file mode 100644 index 0000000..e93642a --- /dev/null +++ b/Scripts_20161126/convert_batch.c_old @@ -0,0 +1,220 @@ +#include +#include +#include +#include +#include +#include +#include +#include + +using namespace std; + +void csvToRoot(TString filename) +{ +} +Int_t main(Int_t argc, const char *argv[]) +{ + double timeoffset; + if (argc>2){ + timeoffset = atof(argv[2]); + printf("Time offset: %f\n", timeoffset); + } + else { + timeoffset = 0.09; + printf("Default time offset:%f\n", timeoffset); + + } + + const char *dbasename = "/work/leverington/beamprofilemonitor/hitdata/HIT_26-11-2016/database.csv"; + const char *dirname = "/work/leverington/beamprofilemonitor/hitdata/HIT_26-11-2016/with_timestamp/csv/"; + const char *outputdirname = "/work/leverington/beamprofilemonitor/hitdata/HIT_26-11-2016/with_timestamp/pin/"; + const char *dirCsv = "/work/leverington/beamprofilemonitor/hitdata/HIT_26-11-2016/hit_csv/with_timestamp/"; + const char *ext = ".csv"; + + //read database + string key, value; + ifstream infile(dbasename, ios::in); + map database; + while (infile >> key >> value) + { + database[key] = value; + // cout << value << endl; + } + + TSystemDirectory dir(dirname, dirname); + if (true) + { + TSystemFile *file; + TString fname = argv[1]; + if (fname.EndsWith(ext)) + { + + TTree *tree = new TTree("t", "t"); + cout << fname << endl; + //tree->ReadFile(TString(TString(dirname) + file->GetName()), "time/D:event_id:sync_out:sync_in:data_ok:led_voltage:current:ch00:ch01:ch02:ch03:ch04:ch05:ch06:ch07:ch08:ch09:ch10:ch11:ch12:ch13:ch14:ch15:ch16:ch17:ch18:ch19:ch20:ch21:ch22:ch23:ch24:ch25:ch26:ch27:ch28:ch29:ch30:ch31:ch32:ch33:ch34:ch35:ch36:ch37:ch38:ch39:ch40:ch41:ch42:ch43:ch44:ch45:ch46:ch47:ch48:ch49:ch50:ch51:ch52:ch53:ch54:ch55:ch56:ch57:ch58:ch59:ch60:ch61:ch62:ch63:ch64:ch65:ch66:ch67:ch68:ch69:ch70:ch71:ch72:ch73:ch74:ch75:ch76:ch77:ch78:ch79:ch80:ch81:ch82:ch83:ch84:ch85:ch86:ch87:ch88:ch89:ch90:ch91:ch92:ch93:ch94:ch95:ch96:ch97:ch98:ch99:ch100:ch101:ch102:ch103:ch104:ch105:ch106:ch107:ch108:ch109:ch110:ch111:ch112:ch113:ch114:ch115:ch116:ch117:ch118:ch119:ch120:ch121:ch122:ch123:ch124:ch125:ch126:ch127", '\t'); + tree->ReadFile(TString(TString(dirname) + fname.Data()), "time/D:event_id:sync_out:sync_in:data_ok:led_voltage:current:ch00:ch01:ch02:ch03:ch04:ch05:ch06:ch07:ch08:ch09:ch10:ch11:ch12:ch13:ch14:ch15:ch16:ch17:ch18:ch19:ch20:ch21:ch22:ch23:ch24:ch25:ch26:ch27:ch28:ch29:ch30:ch31:ch32:ch33:ch34:ch35:ch36:ch37:ch38:ch39:ch40:ch41:ch42:ch43:ch44:ch45:ch46:ch47:ch48:ch49:ch50:ch51:ch52:ch53:ch54:ch55:ch56:ch57:ch58:ch59:ch60:ch61:ch62:ch63", '\t'); + TString outname = TString(outputdirname) + fname ; + outname.Replace(outname.Length() - 4, 4, TString(TString(argv[2])+".root")); + TFile *outfile = new TFile(outname.Data(), "recreate"); + outfile->cd(); + //outfile = tree->GetCurrentFile(); + + TTree *tree2 = new TTree("t2", "t2"); + + fname.Replace(fname.Length() - 3, 3, TString("root")); + string key = string(fname.Data()); + key.erase(key.end() - 5, key.end()); + if(database[key] == "nothing"){ + outfile->Close(); + return 1; + } + printf("%s\n", database[key].c_str()); + string value = string(dirCsv) + database[key] + ".csv"; + printf("name1: %s , name2: %s\n", key.data(), value.data()); + + tree2->ReadFile(value.data(), "TIME2/D:IC1:IC2:MW1_FOCUSX:MW1_FOCUSY:MW2_FOCUSX:MW2_FOCUSY:MW1_POSX:MW1_POSY:MW2_POSX:MW2_POSY:TCS-SPAM:TCS-KO:BNEXTPOINT:ANALOG_IN1:ANALOG_IN2:ENERGY:INTENSITY:ION-SORT", '\t'); + + int k = 0; + int count = 0; + double ic1, ic2, mw1_focusx, mw1_focusy, mw2_focusx, mw2_focusy, mw1_posx, mw1_posy, mw2_posx, mw2_posy; + double ic1_avg, ic2_avg, mw1_focusx_avg, mw1_focusy_avg, mw2_focusx_avg, mw2_focusy_avg, mw1_posx_avg, mw1_posy_avg, mw2_posx_avg, mw2_posy_avg; + double time; + double time2; + + tree->SetBranchAddress("time", &time); + + tree2->SetBranchAddress("TIME2", &time2); + tree2->SetBranchAddress("IC1", &ic1); + tree2->SetBranchAddress("IC2", &ic2); + tree2->SetBranchAddress("MW1_FOCUSX", &mw1_focusx); + tree2->SetBranchAddress("MW1_FOCUSY", &mw1_focusy); + tree2->SetBranchAddress("MW2_FOCUSX", &mw2_focusx); + tree2->SetBranchAddress("MW2_FOCUSY", &mw2_focusy); + tree2->SetBranchAddress("MW1_POSX", &mw1_posx); + tree2->SetBranchAddress("MW1_POSY", &mw1_posy); + tree2->SetBranchAddress("MW2_POSX", &mw2_posx); + tree2->SetBranchAddress("MW2_POSY", &mw2_posy); + + TBranch *bic1 = tree->Branch("ic1", &ic1_avg, "ic1/D"); + TBranch *bic2 = tree->Branch("ic2", &ic2_avg, "ic2/D"); + TBranch *bmw1_focusx = tree->Branch("mw1_focusx", &mw1_focusx_avg, "mw1_focusx/D"); + TBranch *bmw1_focusy = tree->Branch("mw1_focusy", &mw1_focusy_avg, "mw1_focusy/D"); + TBranch *bmw2_focusx = tree->Branch("mw2_focusx", &mw2_focusx_avg, "mw2_focusx/D"); + TBranch *bmw2_focusy = tree->Branch("mw2_focusy", &mw2_focusy_avg, "mw2_focusy/D"); + TBranch *bmw1_posx = tree->Branch("mw1_posx", &mw1_posx_avg, "mw1_posx/D"); + TBranch *bmw1_posy = tree->Branch("mw1_posy", &mw1_posy_avg, "mw1_posy/D"); + TBranch *bmw2_posx = tree->Branch("mw2_posx", &mw2_posx_avg, "mw2_posx/D"); + TBranch *bmw2_posy = tree->Branch("mw2_posy", &mw2_posy_avg, "mw2_posy/D"); + + int currentEntryTree2 = 1; + + int nevents = tree->GetEntries(); + int nevents2 = tree2->GetEntries(); + ic1_avg = 0; + ic2_avg = 0; + mw1_focusx_avg = 0; + mw1_focusy_avg = 0; + mw2_focusx_avg = 0; + mw2_focusy_avg = 0; + mw1_posx_avg = 0; + mw1_posy_avg = 0; + mw2_posx_avg = 0; + mw2_posy_avg = 0; + time2 = 0; + tree2->GetEntry(currentEntryTree2); + + for (int i = 0; i < nevents; i++) + { + + tree->GetEntry(i); + + if (i % 10000 == 0) + { + + printf("merging event %d ,", i); + printf("Time %f \n", time); + printf("Entry hit %d ,", currentEntryTree2); + printf("Time hit %f \n", time2); + } + + int count = 0; + int count2 = 0; + + while (time2 <= (time + timeoffset+0.312/2.) && currentEntryTree2 < nevents2) + { + if (abs(time2 - (time+timeoffset)) <= 0.300/2.) + + { + // tree2->GetEntry(currentEntryTree2); + + ic1_avg += ic1; + ic2_avg += ic2; + + count++; + //printf("%i %2.3f %2.3f\n", count, time, time2); + //} + //tree2->GetEntry(currentEntryTree2); + + //if (abs(time2 - (time+timeoffset)) <= 0.300/2.) + //{ + tree2->GetEntry(currentEntryTree2 - 4); //why currentEtryTree2-4? + mw1_focusx_avg += mw1_focusx; + mw1_focusy_avg += mw1_focusy; + mw2_focusx_avg += mw2_focusx; + mw2_focusy_avg += mw2_focusy; + mw1_posx_avg += mw1_posx*ic1; + mw1_posy_avg += mw1_posy*ic1; + mw2_posx_avg += mw2_posx*ic2; + mw2_posy_avg += mw2_posy*ic2; + count2++; + // printf("%i %2.3f %2.3f %2.3f %2.3f\n", count2, time, time2, ic1, mw1_posx); + } + currentEntryTree2++; + tree2->GetEntry(currentEntryTree2); + + // currentEntryTree2++; + } + + + + mw1_focusx_avg /= count2; + mw1_focusy_avg /= count2; + mw2_focusx_avg /= count2; + mw2_focusy_avg /= count2; + mw1_posx_avg /= ic1_avg; //the positions are weighted by the charge + mw1_posy_avg /= ic1_avg; + mw2_posx_avg /= ic2_avg; + mw2_posy_avg /= ic2_avg; + ic1_avg /= count; + ic2_avg /= count; + + bic1->Fill(); + bic2->Fill(); + bmw1_focusx->Fill(); + bmw1_focusy->Fill(); + bmw2_focusx->Fill(); + bmw2_focusy->Fill(); + bmw1_posx->Fill(); + bmw1_posy->Fill(); + bmw2_posx->Fill(); + bmw2_posy->Fill(); + ic1_avg = 0; + ic2_avg = 0; + mw1_focusx_avg = 0; + mw1_focusy_avg = 0; + mw2_focusx_avg = 0; + mw2_focusy_avg = 0; + mw1_posx_avg = 0; + mw1_posy_avg = 0; + mw2_posx_avg = 0; + mw2_posy_avg = 0; + } + + tree->Write(); + outfile->Close(); + } + } + + + return 0; +} diff --git a/Scripts_20161126/energylist_c_bpm1.txt b/Scripts_20161126/energylist_c_bpm1.txt new file mode 100644 index 0000000..d6f8edb --- /dev/null +++ b/Scripts_20161126/energylist_c_bpm1.txt @@ -0,0 +1,26 @@ +281.17 196.867 1.3175 +238.032 179.85 1.20008 +212.434 169.016 1.13173 +194.949 160.469 1.05858 +181.707 153.851 1.01704 +171.379 148.603 0.976083 +163.143 144.656 0.939167 +155.987 140.722 0.934211 +150.13 137.608 0.917891 +145.288 134.995 0.901069 +140.907 132.671 0.89545 +136.922 130.383 0.872389 +133.574 128.49 0.854152 +130.481 126.591 0.837884 +127.616 124.669 0.826673 +124.954 123.359 0.826776 +122.474 121.772 0.809861 +120.362 120.852 0.805432 +118.373 119.21 0.78314 +116.315 118.072 0.794487 +113.872 116.746 0.797656 +111.453 115.09 0.767728 +109.36 113.845 0.761847 +107.408 112.763 0.748099 +105.71 111.924 0.754045 +103.993 110.711 0.760557 diff --git a/Scripts_20161126/energylist_c_bpm1ratio.txt b/Scripts_20161126/energylist_c_bpm1ratio.txt new file mode 100644 index 0000000..486227d --- /dev/null +++ b/Scripts_20161126/energylist_c_bpm1ratio.txt @@ -0,0 +1,26 @@ +281.17 0.511747 0.0991432 +238.032 0.550471 0.0776159 +212.434 0.578648 0.069855 +194.949 0.600649 0.0828653 +181.707 0.618462 0.0881503 +171.379 0.631073 0.0670831 +163.143 0.645186 0.0636568 +155.987 0.657305 0.0762452 +150.13 0.66727 0.0689592 +145.288 0.676203 0.0657185 +140.907 0.684881 0.0666931 +136.922 0.694878 0.0919361 +133.574 0.700551 0.072031 +130.481 0.706417 0.0706179 +127.616 0.711568 0.0727347 +124.954 0.71947 0.0908468 +122.474 0.723455 0.0714208 +120.362 0.730006 0.0667801 +118.373 0.732592 0.0640762 +116.315 0.739325 0.0827212 +113.872 0.746295 0.09357 +111.453 0.750604 0.0640238 +109.36 0.757457 0.0726045 +107.408 0.763871 0.0697857 +105.71 0.769927 0.0629636 +103.993 0.777465 0.107248 diff --git a/Scripts_20161126/energylist_c_bpmbeta1.txt b/Scripts_20161126/energylist_c_bpmbeta1.txt new file mode 100644 index 0000000..0c541fc --- /dev/null +++ b/Scripts_20161126/energylist_c_bpmbeta1.txt @@ -0,0 +1,26 @@ +0.407871 0.70017 0.00468578 +0.44884 0.75557 0.00504169 +0.479338 0.795619 0.00532747 +0.503822 0.823137 0.00543006 +0.524858 0.846695 0.00559711 +0.543065 0.867102 0.00569545 +0.5589 0.886679 0.00575669 +0.573741 0.902141 0.00598905 +0.586721 0.91659 0.00611396 +0.59808 0.929151 0.00620195 +0.608891 0.94155 0.00635492 +0.619196 0.952243 0.00637143 +0.628229 0.961937 0.00639461 +0.636893 0.970188 0.00642148 +0.645213 0.976903 0.00647779 +0.653209 0.987228 0.00661662 +0.6609 0.994266 0.0066125 +0.667643 1.00407 0.00669175 +0.674162 1.00707 0.00661587 +0.681086 1.01511 0.0068305 +0.689547 1.02523 0.00700482 +0.698204 1.03263 0.00688834 +0.705926 1.04101 0.00696643 +0.713327 1.04986 0.00696503 +0.719927 1.05878 0.00713316 +0.726761 1.06459 0.00731353 diff --git a/Scripts_20161126/energylist_c_chi2fit.txt b/Scripts_20161126/energylist_c_chi2fit.txt new file mode 100644 index 0000000..33c1e34 --- /dev/null +++ b/Scripts_20161126/energylist_c_chi2fit.txt @@ -0,0 +1,26 @@ +281.17 2.7051 1.87564 +238.032 3.70102 2.23155 +212.434 4.23281 2.34094 +194.949 3.85693 2.10054 +181.707 3.51978 1.96641 +171.379 3.28301 1.83182 +163.143 3.07473 1.75688 +155.987 2.95638 1.79921 +150.13 2.79751 1.66286 +145.288 2.6533 1.64325 +140.907 2.58396 1.63551 +136.922 2.63068 1.64612 +133.574 2.60137 1.64867 +130.481 2.61118 1.63493 +127.616 2.57128 1.62584 +124.954 2.44019 1.57315 +122.474 2.40852 1.55201 +120.362 2.18739 1.44594 +118.373 2.15996 1.37106 +116.315 2.33606 1.56155 +113.872 2.3494 1.66249 +111.453 2.08909 1.38815 +109.36 2.04459 1.31172 +107.408 2.09411 1.34803 +105.71 2.03485 1.41536 +103.993 1.84837 1.30843 diff --git a/Scripts_20161126/energylist_c_focus1.txt b/Scripts_20161126/energylist_c_focus1.txt new file mode 100644 index 0000000..d07ed9c --- /dev/null +++ b/Scripts_20161126/energylist_c_focus1.txt @@ -0,0 +1,26 @@ +281.17 11.6173 0.526113 +238.032 9.81008 0.320042 +212.434 8.63341 0.236798 +194.949 7.75115 0.221266 +181.707 7.09651 0.213813 +171.379 6.58813 0.184163 +163.143 6.2041 0.184757 +155.987 5.86053 0.173209 +150.13 5.61335 0.161585 +145.288 5.42964 0.155038 +140.907 5.23743 0.157624 +136.922 5.00862 0.15949 +133.574 4.82878 0.150554 +130.481 4.6612 0.150529 +127.616 4.50058 0.148177 +124.954 4.44307 0.157311 +122.474 4.32668 0.171126 +120.362 4.26544 0.151631 +118.373 4.1406 0.147127 +116.315 4.00506 0.149328 +113.872 3.89954 0.152054 +111.453 3.82633 0.157703 +109.36 3.73899 0.147235 +107.408 3.69418 0.150126 +105.71 3.62339 0.153794 +103.993 3.58926 0.164296 diff --git a/Scripts_20161126/energylist_c_focusHIT.txt b/Scripts_20161126/energylist_c_focusHIT.txt new file mode 100644 index 0000000..294ae24 --- /dev/null +++ b/Scripts_20161126/energylist_c_focusHIT.txt @@ -0,0 +1,26 @@ +281.17 9.8 +238.032 8.4 +212.434 7.4 +194.949 6.6 +181.707 6.1 +171.379 5.6 +163.143 5.3 +155.987 5 +150.13 4.8 +145.288 4.6 +140.907 4.4 +136.922 4.3 +133.574 4.2 +130.481 4.1 +127.616 4 +124.954 3.9 +122.474 3.8 +120.362 3.8 +118.373 3.7 +116.315 3.7 +113.872 3.6 +111.453 3.6 +109.36 3.5 +107.408 3.5 +105.71 3.4 +103.993 3.4 diff --git a/Scripts_20161126/energylist_c_focusfit.txt b/Scripts_20161126/energylist_c_focusfit.txt new file mode 100644 index 0000000..4dda77d --- /dev/null +++ b/Scripts_20161126/energylist_c_focusfit.txt @@ -0,0 +1,26 @@ +281.17 11.2876 0.283868 +238.032 9.21783 0.166625 +212.434 8.02 0.126836 +194.949 7.18651 0.110407 +181.707 6.56283 0.0998927 +171.379 6.08487 0.0913746 +163.143 5.73336 0.0873942 +155.987 5.41198 0.0816706 +150.13 5.1947 0.0854009 +145.288 5.04038 0.0915793 +140.907 4.86282 0.0995636 +136.922 4.62808 0.0873889 +133.574 4.45099 0.0859766 +130.481 4.28634 0.0791057 +127.616 4.1333 0.0805856 +124.954 4.09938 0.113435 +122.474 3.98776 0.100129 +120.362 3.95148 0.107079 +118.373 3.82589 0.0995612 +116.315 3.68008 0.0926725 +113.872 3.58183 0.101117 +111.453 3.5244 0.0858192 +109.36 3.44571 0.0940819 +107.408 3.40738 0.102715 +105.71 3.35017 0.116638 +103.993 3.32749 0.139817 diff --git a/Scripts_20161126/energylist_c_ic1.txt b/Scripts_20161126/energylist_c_ic1.txt new file mode 100644 index 0000000..fb89d9d --- /dev/null +++ b/Scripts_20161126/energylist_c_ic1.txt @@ -0,0 +1,26 @@ +254.499 4.13296 0.0271597 SAVE_PiN_run61.root +215.483 3.49934 0.0229583 SAVE_PiN_run62.root +192.343 3.12357 0.0205949 SAVE_PiN_run63.root +176.544 2.867 0.0186617 SAVE_PiN_run64.root +164.584 2.67278 0.0174517 SAVE_PiN_run65.root +155.258 2.52133 0.0163584 SAVE_PiN_run66.root +147.823 2.40059 0.0154053 SAVE_PiN_run67.root +141.364 2.29569 0.0150784 SAVE_PiN_run68.root +136.079 2.20987 0.0145734 SAVE_PiN_run69.root +131.711 2.13892 0.0141145 SAVE_PiN_run70.root +127.758 2.07474 0.0138419 SAVE_PiN_run71.root +124.164 2.01637 0.0133276 SAVE_PiN_run72.root +121.145 1.96734 0.0129158 SAVE_PiN_run73.root +118.356 1.92206 0.0125667 SAVE_PiN_run74.root +115.773 1.88011 0.012318 SAVE_PiN_run75.root +113.374 1.84114 0.0122102 SAVE_PiN_run76.root +111.138 1.80483 0.0118726 SAVE_PiN_run77.root +109.234 1.77392 0.0117092 SAVE_PiN_run78.root +107.442 1.74481 0.011332 SAVE_PiN_run79.root +105.587 1.71468 0.0114041 SAVE_PiN_run80.root +103.386 1.67895 0.0113347 SAVE_PiN_run81.root +101.207 1.64356 0.0108603 SAVE_PiN_run82.root +99.3211 1.61293 0.0106958 SAVE_PiN_run83.root +97.563 1.58438 0.0104304 SAVE_PiN_run84.root +96.0339 1.55955 0.0104298 SAVE_PiN_run85.root +94.488 1.53444 0.0104569 SAVE_PiN_run86.root diff --git a/Scripts_20161126/energylist_c_ic1ratio.txt b/Scripts_20161126/energylist_c_ic1ratio.txt new file mode 100644 index 0000000..f411ffd --- /dev/null +++ b/Scripts_20161126/energylist_c_ic1ratio.txt @@ -0,0 +1,26 @@ +254.499 0.885089 +215.483 0.90409 +192.343 0.914465 +176.544 0.886048 +164.584 0.881621 +155.258 0.927782 +147.823 0.930192 +141.364 0.929105 +136.079 0.939976 +131.711 0.948007 +127.758 0.952699 +124.164 0.909048 +121.145 0.939753 +118.356 0.942121 +115.773 0.939456 +113.374 0.922044 +111.138 0.943682 +109.234 0.951689 +107.442 0.95128 +105.587 0.935016 +103.386 0.929894 +101.207 0.957823 +99.3211 0.951092 +97.563 0.95056 +96.0339 0.965003 +94.488 0.923935 diff --git a/Scripts_20161126/energylist_c_kurt1.txt b/Scripts_20161126/energylist_c_kurt1.txt new file mode 100644 index 0000000..c363d69 --- /dev/null +++ b/Scripts_20161126/energylist_c_kurt1.txt @@ -0,0 +1,26 @@ +281.17 0.0356758 0.00107116 +238.032 0.320209 0.00159163 +212.434 0.49406 0.00213649 +194.949 0.558706 0.00254213 +181.707 0.630652 0.00314274 +171.379 0.66606 0.00333442 +163.143 0.727336 0.00416318 +155.987 0.733897 0.00423606 +150.13 0.720708 0.00416761 +145.288 0.713137 0.00424307 +140.907 0.725848 0.00456726 +136.922 0.781209 0.00478593 +133.574 0.800686 0.00467725 +130.481 0.834471 0.0047637 +127.616 0.848479 0.00463475 +124.954 0.848781 0.00515817 +122.474 0.830013 0.00457454 +120.362 0.81721 0.0048051 +118.373 0.866358 0.00483772 +116.315 0.883082 0.00458012 +113.872 0.886597 0.00470424 +111.453 0.886818 0.0045689 +109.36 0.905571 0.0048629 +107.408 0.86823 0.00470287 +105.71 0.848611 0.00462913 +103.993 0.890782 0.00520447 diff --git a/Scripts_20161126/energylist_c_noise.txt b/Scripts_20161126/energylist_c_noise.txt new file mode 100644 index 0000000..bae1084 --- /dev/null +++ b/Scripts_20161126/energylist_c_noise.txt @@ -0,0 +1,26 @@ +281.17 0.0951588 8.32344 +238.032 0.0592451 7.74989 +212.434 -0.0351296 6.66716 +194.949 0.0984721 7.22182 +181.707 -0.0721369 7.75374 +171.379 0.0129299 8.39957 +163.143 0.0364104 7.46192 +155.987 0.00417705 7.32121 +150.13 -0.0155063 7.10115 +145.288 0.0580136 7.21786 +140.907 -0.012564 6.70641 +136.922 0.0161248 6.88752 +133.574 0.0241872 6.01433 +130.481 -0.00668754 5.99136 +127.616 -0.028617 6.38002 +124.954 -0.0114989 6.50708 +122.474 0.0126697 7.88635 +120.362 -0.0283078 7.28673 +118.373 -0.0396834 6.18225 +116.315 -0.0103058 7.45979 +113.872 -0.0716595 5.92234 +111.453 0.0119976 6.31534 +109.36 0.0338752 5.91695 +107.408 -0.140158 6.10205 +105.71 -0.0362593 6.62066 +103.993 0.0717063 7.67349 diff --git a/Scripts_20161126/energylist_c_skew1.txt b/Scripts_20161126/energylist_c_skew1.txt new file mode 100644 index 0000000..5a5cc5c --- /dev/null +++ b/Scripts_20161126/energylist_c_skew1.txt @@ -0,0 +1,26 @@ +281.17 -0.0244641 0.00029967 +238.032 -0.0291883 0.000307723 +212.434 -0.0321315 0.000342685 +194.949 -0.0377581 0.00036608 +181.707 -0.041645 0.000426071 +171.379 -0.0440514 0.000386359 +163.143 -0.0479717 0.000457673 +155.987 -0.0459235 0.00045976 +150.13 -0.0449714 0.000435774 +145.288 -0.0557605 0.000472567 +140.907 -0.0604744 0.000488399 +136.922 -0.0480572 0.000558716 +133.574 -0.0499332 0.00050712 +130.481 -0.0568798 0.000572831 +127.616 -0.059508 0.000559064 +124.954 -0.0792876 0.000651931 +122.474 -0.0769971 0.000577415 +120.362 -0.0710605 0.000636362 +118.373 -0.0627967 0.000716938 +116.315 -0.0661404 0.000645743 +113.872 -0.0503979 0.000697906 +111.453 -0.078437 0.000733403 +109.36 -0.079987 0.000807965 +107.408 -0.0869617 0.00079218 +105.71 -0.0801575 0.000840558 +103.993 -0.0756168 0.00100789 diff --git a/Scripts_20161126/energylist_he_bpm1.txt b/Scripts_20161126/energylist_he_bpm1.txt new file mode 100644 index 0000000..d31d5aa --- /dev/null +++ b/Scripts_20161126/energylist_he_bpm1.txt @@ -0,0 +1,26 @@ +40.9872 47.1601 0.325381 +36.5311 43.1518 0.296032 +33.3966 40.2558 0.275185 +31.0354 37.8531 0.258592 +29.1728 35.8407 0.23944 +27.6535 34.1384 0.234008 +26.4152 33.0144 0.224034 +25.2997 31.9231 0.213649 +24.2755 30.7137 0.200011 +23.5412 29.7778 0.200923 +22.8107 28.8261 0.192497 +22.1585 28.1549 0.184697 +21.5696 27.4654 0.178344 +21.0355 26.8597 0.172283 +20.5468 26.2916 0.174974 +20.099 25.7392 0.169175 +19.6851 25.2084 0.164477 +19.3016 24.7074 0.160319 +18.9455 24.1346 0.155186 +18.4699 23.5882 0.149138 +18.0231 23.0798 0.146083 +17.6151 22.6489 0.143489 +17.6151 22.6537 0.141393 +17.2409 22.2957 0.145132 +16.8956 21.9185 0.141963 +16.5761 21.5344 0.137924 diff --git a/Scripts_20161126/energylist_he_bpm1ratio.txt b/Scripts_20161126/energylist_he_bpm1ratio.txt new file mode 100644 index 0000000..242a319 --- /dev/null +++ b/Scripts_20161126/energylist_he_bpm1ratio.txt @@ -0,0 +1,26 @@ +40.9872 0.837155 0.119765 +36.5311 0.859363 0.113341 +33.3966 0.877586 0.115817 +31.0354 0.888242 0.119597 +29.1728 0.895211 0.117185 +27.6535 0.90126 0.142076 +26.4152 0.911994 0.133823 +25.2997 0.922294 0.143838 +24.2755 0.921898 0.11313 +23.5412 0.923219 0.144729 +22.8107 0.92169 0.131699 +22.1585 0.926626 0.124226 +21.5696 0.929649 0.124038 +21.0355 0.930499 0.103947 +20.5468 0.933104 0.128883 +20.099 0.933214 0.112198 +19.6851 0.933477 0.114058 +19.3016 0.934968 0.131146 +18.9455 0.928811 0.110757 +18.4699 0.929971 0.091714 +18.0231 0.935956 0.124491 +17.6151 0.93865 0.114269 +17.6151 0.937032 0.0918229 +17.2409 0.940977 0.107415 +16.8956 0.947256 0.134408 +16.5761 0.950791 0.15948 diff --git a/Scripts_20161126/energylist_he_bpmbeta1.txt b/Scripts_20161126/energylist_he_bpmbeta1.txt new file mode 100644 index 0000000..9c21332 --- /dev/null +++ b/Scripts_20161126/energylist_he_bpmbeta1.txt @@ -0,0 +1,26 @@ +0.347272 1.15061 0.0079386 +0.371222 1.18124 0.00810356 +0.391037 1.20539 0.00823989 +0.408018 1.21968 0.00833216 +0.422922 1.22856 0.00820763 +0.436235 1.23451 0.00846215 +0.447968 1.24983 0.00848127 +0.459299 1.2618 0.00844473 +0.470415 1.26521 0.00823922 +0.478846 1.26492 0.00853495 +0.487649 1.26371 0.00843892 +0.495887 1.27061 0.00833523 +0.503656 1.27334 0.00826832 +0.510991 1.27687 0.0081901 +0.517959 1.2796 0.00851587 +0.524572 1.28062 0.00841711 +0.530889 1.28058 0.00835539 +0.536926 1.28007 0.00830596 +0.542699 1.27389 0.00819119 +0.550671 1.27711 0.00807461 +0.558452 1.28057 0.00810535 +0.565815 1.28576 0.00814576 +0.565815 1.28604 0.00802676 +0.572799 1.29318 0.0084179 +0.579449 1.29729 0.00840238 +0.585785 1.29912 0.00832066 diff --git a/Scripts_20161126/energylist_he_chi2fit.txt b/Scripts_20161126/energylist_he_chi2fit.txt new file mode 100644 index 0000000..f32c92e --- /dev/null +++ b/Scripts_20161126/energylist_he_chi2fit.txt @@ -0,0 +1,26 @@ +40.9872 5.78686 4.85869 +36.5311 7.57749 5.66953 +33.3966 7.4341 5.60529 +31.0354 7.31291 5.65149 +29.1728 6.95923 5.07375 +27.6535 6.82132 5.27028 +26.4152 5.90849 4.74753 +25.2997 5.22055 4.29738 +24.2755 4.88461 3.92364 +23.5412 4.83281 3.85984 +22.8107 4.77697 3.82449 +22.1585 4.51784 3.5504 +21.5696 4.26268 3.3718 +21.0355 4.09158 3.31968 +20.5468 4.0224 3.28346 +20.099 3.99887 3.24817 +19.6851 3.94067 3.06075 +19.3016 3.8586 2.9603 +18.9455 4.27659 3.1393 +18.4699 4.25376 2.88395 +18.0231 3.93524 2.84803 +17.6151 3.55297 2.83121 +17.6151 3.55802 2.84576 +17.2409 3.25466 2.81298 +16.8956 3.01523 2.67037 +16.5761 3.18326 2.76936 diff --git a/Scripts_20161126/energylist_he_focus1.txt b/Scripts_20161126/energylist_he_focus1.txt new file mode 100644 index 0000000..648766e --- /dev/null +++ b/Scripts_20161126/energylist_he_focus1.txt @@ -0,0 +1,26 @@ +40.9872 15.9221 0.423793 +36.5311 14.2921 0.358463 +33.3966 12.8768 0.346412 +31.0354 11.8021 0.317436 +29.1728 10.9673 0.295563 +27.6535 10.3418 0.274694 +26.4152 9.98036 0.250454 +25.2997 9.65909 0.232713 +24.2755 9.23717 0.227609 +23.5412 8.86011 0.201864 +22.8107 8.47676 0.19754 +22.1585 8.17635 0.181417 +21.5696 7.93508 0.177604 +21.0355 7.7211 0.198354 +20.5468 7.6021 0.18296 +20.099 7.46468 0.171901 +19.6851 7.23694 0.171037 +19.3016 6.90511 0.165608 +18.9455 6.60379 0.162897 +18.4699 6.34687 0.162767 +18.0231 6.2449 0.1577 +17.6151 6.16995 0.164441 +17.6151 6.16264 0.156679 +17.2409 6.08753 0.154969 +16.8956 5.9945 0.140838 +16.5761 5.75543 0.1449 diff --git a/Scripts_20161126/energylist_he_focusHIT.txt b/Scripts_20161126/energylist_he_focusHIT.txt new file mode 100644 index 0000000..12a2074 --- /dev/null +++ b/Scripts_20161126/energylist_he_focusHIT.txt @@ -0,0 +1,26 @@ +40.9872 15.4 +36.5311 13 +33.3966 11.5 +31.0354 10.5 +29.1728 9.7 +27.6535 9.2 +26.4152 8.7 +25.2997 8.3 +24.2755 7.9 +23.5412 7.6 +22.8107 7.3 +22.1585 7 +21.5696 6.8 +21.0355 6.5 +20.5468 6.3 +20.099 6.1 +19.6851 5.9 +19.3016 5.8 +18.9455 5.6 +18.4699 5.4 +18.0231 5.3 +17.6151 5.1 +17.6151 5.1 +17.2409 5 +16.8956 5 +16.5761 4.9 diff --git a/Scripts_20161126/energylist_he_focusfit.txt b/Scripts_20161126/energylist_he_focusfit.txt new file mode 100644 index 0000000..6cc5208 --- /dev/null +++ b/Scripts_20161126/energylist_he_focusfit.txt @@ -0,0 +1,26 @@ +40.9872 15.1594 0.157637 +36.5311 13.3055 0.110274 +33.3966 11.8374 0.0889165 +31.0354 10.7895 0.0836284 +29.1728 10.0051 0.0751865 +27.6535 9.44939 0.065632 +26.4152 9.17732 0.0644147 +25.2997 8.93682 0.0645154 +24.2755 8.5593 0.0622379 +23.5412 8.2007 0.0585808 +22.8107 7.83545 0.0540224 +22.1585 7.54864 0.0516892 +21.5696 7.33297 0.0495544 +21.0355 7.14276 0.060412 +20.5468 7.07923 0.0498132 +20.099 6.97124 0.0492933 +19.6851 6.7461 0.0464559 +19.3016 6.37544 0.0451538 +18.9455 6.0389 0.0469093 +18.4699 5.78302 0.0474983 +18.0231 5.7198 0.0488553 +17.6151 5.68573 0.0504578 +17.6151 5.68278 0.0590019 +17.2409 5.64649 0.0511971 +16.8956 5.58385 0.0536603 +16.5761 5.32082 0.0536564 diff --git a/Scripts_20161126/energylist_he_ic1.txt b/Scripts_20161126/energylist_he_ic1.txt new file mode 100644 index 0000000..27713e8 --- /dev/null +++ b/Scripts_20161126/energylist_he_ic1.txt @@ -0,0 +1,26 @@ +36.9312 0.599746 0.00406694 SAVE_PiN_run34.root +32.9287 0.534748 0.00361452 SAVE_PiN_run35.root +30.1125 0.489013 0.00329485 SAVE_PiN_run36.root +27.9903 0.454551 0.0030533 SAVE_PiN_run37.root +26.316 0.427361 0.00281565 SAVE_PiN_run38.root +24.95 0.405178 0.00273157 SAVE_PiN_run39.root +23.8365 0.387094 0.00258457 SAVE_PiN_run40.root +22.8333 0.370802 0.002451 SAVE_PiN_run41.root +21.912 0.355841 0.00229435 SAVE_PiN_run43.root +21.2514 0.345113 0.00229615 SAVE_PiN_run44.root +20.5941 0.334439 0.00220292 SAVE_PiN_run45.root +20.0073 0.32491 0.00210673 SAVE_PiN_run46.root +19.4773 0.316303 0.00203096 SAVE_PiN_run47.root +18.9966 0.308497 0.00195993 SAVE_PiN_run48.root +18.5568 0.301354 0.00197873 SAVE_PiN_run49.root +18.1537 0.294808 0.00191426 SAVE_PiN_run50.root +17.7811 0.288757 0.00186095 SAVE_PiN_run51.root +17.4359 0.283151 0.00181536 SAVE_PiN_run52.root +17.1152 0.277944 0.00176825 SAVE_PiN_run53.root +16.687 0.27099 0.00170039 SAVE_PiN_run54.root +16.2846 0.264455 0.00165894 SAVE_PiN_run55.root +15.9173 0.258489 0.00162654 SAVE_PiN_run56.root +15.9173 0.258489 0.00160302 SAVE_PiN_run57.root +15.5802 0.253016 0.00162981 SAVE_PiN_run58.root +15.2692 0.247965 0.00159113 SAVE_PiN_run59.root +14.9814 0.243291 0.00154646 SAVE_PiN_run60.root diff --git a/Scripts_20161126/energylist_he_ic1ratio.txt b/Scripts_20161126/energylist_he_ic1ratio.txt new file mode 100644 index 0000000..ef62a3a --- /dev/null +++ b/Scripts_20161126/energylist_he_ic1ratio.txt @@ -0,0 +1,26 @@ +36.9312 0.917436 +32.9287 0.907649 +30.1125 0.907305 +27.9903 0.900293 +26.316 0.887237 +24.95 0.876085 +23.8365 0.878532 +22.8333 0.862414 +21.912 0.88259 +21.2514 0.864072 +20.5941 0.872034 +20.0073 0.872613 +19.4773 0.862322 +18.9966 0.891 +18.5568 0.881325 +18.1537 0.894299 +17.7811 0.885777 +17.4359 0.849629 +17.1152 0.879188 +16.687 0.904921 +16.2846 0.832804 +15.9173 0.850892 +15.9173 0.895537 +15.5802 0.897175 +15.2692 0.846152 +14.9814 0.844238 diff --git a/Scripts_20161126/energylist_he_kurt1.txt b/Scripts_20161126/energylist_he_kurt1.txt new file mode 100644 index 0000000..3b52f91 --- /dev/null +++ b/Scripts_20161126/energylist_he_kurt1.txt @@ -0,0 +1,26 @@ +40.9872 0.062149 0.000502374 +36.5311 0.26801 0.000752224 +33.3966 0.417309 0.00102226 +31.0354 0.516133 0.00129087 +29.1728 0.57681 0.00147873 +27.6535 0.601425 0.00160397 +26.4152 0.576202 0.00163652 +25.2997 0.552416 0.00164094 +24.2755 0.572242 0.00178198 +23.5412 0.599514 0.00184313 +22.8107 0.622563 0.00195299 +22.1585 0.657125 0.00209616 +21.5696 0.668196 0.00218858 +21.0355 0.679962 0.00241972 +20.5468 0.646933 0.00257645 +20.099 0.629794 0.00255621 +19.6851 0.661712 0.00280398 +19.3016 0.753138 0.00299473 +18.9455 0.839607 0.00315274 +18.4699 0.904866 0.00344225 +18.0231 0.88544 0.00380291 +17.6151 0.824344 0.00376951 +17.6151 0.832551 0.00371834 +17.2409 0.793757 0.00391352 +16.8956 0.753537 0.00377728 +16.5761 0.847073 0.00420923 diff --git a/Scripts_20161126/energylist_he_noise.txt b/Scripts_20161126/energylist_he_noise.txt new file mode 100644 index 0000000..52d4a85 --- /dev/null +++ b/Scripts_20161126/energylist_he_noise.txt @@ -0,0 +1,26 @@ +40.9872 0.0907693 9.0404 +36.5311 -0.114624 8.03533 +33.3966 0.0739249 7.77771 +31.0354 -0.0797303 8.4556 +29.1728 0.0957379 6.00886 +27.6535 0.0169903 6.71134 +26.4152 -0.00831133 6.83634 +25.2997 0.00625121 7.04404 +24.2755 -0.0709542 7.69864 +23.5412 -0.106325 5.93381 +22.8107 -0.0289266 6.1212 +22.1585 -0.021199 8.16651 +21.5696 -0.0615789 8.03329 +21.0355 0.00902604 8.22651 +20.5468 0.000964529 8.52766 +20.099 0.00978403 8.69545 +19.6851 -0.125431 8.35675 +19.3016 0.111513 8.65042 +18.9455 0.0479698 8.72494 +18.4699 0.113175 8.68838 +18.0231 -0.0610166 9.1184 +17.6151 -0.0228421 8.43948 +17.6151 -0.00349188 8.85769 +17.2409 0.0209996 8.55378 +16.8956 -0.0725304 8.09427 +16.5761 0.0894327 7.664 diff --git a/Scripts_20161126/energylist_he_skew1.txt b/Scripts_20161126/energylist_he_skew1.txt new file mode 100644 index 0000000..7c07c64 --- /dev/null +++ b/Scripts_20161126/energylist_he_skew1.txt @@ -0,0 +1,26 @@ +40.9872 0.010948 0.000211011 +36.5311 -0.00203 0.000277193 +33.3966 -0.0103664 0.000308383 +31.0354 -0.015916 0.000344433 +29.1728 -0.0208106 0.000352361 +27.6535 -0.0344067 0.000329169 +26.4152 -0.0285648 0.000335402 +25.2997 -0.0306445 0.000309011 +24.2755 -0.0345809 0.000356599 +23.5412 -0.0410346 0.000298393 +22.8107 -0.0433163 0.000315473 +22.1585 -0.0409883 0.000315195 +21.5696 -0.0400524 0.000329647 +21.0355 -0.0409011 0.000405011 +20.5468 -0.0533499 0.0003929 +20.099 -0.0613756 0.000368003 +19.6851 -0.0653937 0.000414132 +19.3016 -0.0570107 0.000393711 +18.9455 -0.062355 0.000411582 +18.4699 -0.0637269 0.000410686 +18.0231 -0.0646381 0.000443125 +17.6151 -0.0668969 0.000532587 +17.6151 -0.0689966 0.000465528 +17.2409 -0.0722478 0.00047688 +16.8956 -0.0730202 0.000397724 +16.5761 -0.0728579 0.000449836 diff --git a/Scripts_20161126/energylist_o_bpm1.txt b/Scripts_20161126/energylist_o_bpm1.txt new file mode 100644 index 0000000..75b5b17 --- /dev/null +++ b/Scripts_20161126/energylist_o_bpm1.txt @@ -0,0 +1,21 @@ +444.422 283.324 1.77394 +377.991 258.069 1.70727 +337.641 241.789 1.65216 +310.049 229.547 1.57122 +289.655 220.51 1.50184 +273.879 213.788 1.4449 +261.017 208.227 1.41063 +250.406 204.009 1.42342 +241.353 199.865 1.37302 +233.587 195.942 1.40855 +226.809 193.137 1.37409 +220.824 190.311 1.3673 +215.458 187.751 1.36183 +210.691 185.687 1.41053 +206.301 183.871 1.35948 +202.283 182.269 1.36312 +198.535 180.563 1.3555 +195.17 178.594 1.34891 +191.994 176.964 1.38416 +189.171 175.153 1.38183 +185.146 173.879 1.39197 diff --git a/Scripts_20161126/energylist_o_bpm1ratio.txt b/Scripts_20161126/energylist_o_bpm1ratio.txt new file mode 100644 index 0000000..bc19e8a --- /dev/null +++ b/Scripts_20161126/energylist_o_bpm1ratio.txt @@ -0,0 +1,21 @@ +444.422 0.463955 0.0472485 +377.991 0.49717 0.0600861 +337.641 0.522513 0.0773371 +310.049 0.540532 0.0823137 +289.655 0.554082 0.0728014 +273.879 0.569026 0.0813242 +261.017 0.582256 0.0873147 +250.406 0.59429 0.101642 +241.353 0.604949 0.101284 +233.587 0.613851 0.12513 +226.809 0.621925 0.1197 +220.824 0.627908 0.112074 +215.458 0.639176 0.141836 +210.691 0.642942 0.144067 +206.301 0.651644 0.140007 +202.283 0.658283 0.142713 +198.535 0.665819 0.153575 +195.17 0.67072 0.156159 +191.994 0.673946 0.167684 +189.171 0.674636 0.158734 +185.146 0.689113 0.195112 diff --git a/Scripts_20161126/energylist_o_bpmbeta1.txt b/Scripts_20161126/energylist_o_bpmbeta1.txt new file mode 100644 index 0000000..92febd8 --- /dev/null +++ b/Scripts_20161126/energylist_o_bpmbeta1.txt @@ -0,0 +1,21 @@ +0.436386 0.637511 0.00399157 +0.479001 0.682739 0.0045167 +0.511349 0.716111 0.00489326 +0.537325 0.740358 0.00506767 +0.559062 0.761285 0.00518492 +0.577647 0.780592 0.00527569 +0.594124 0.797751 0.00540435 +0.608731 0.814711 0.00568445 +0.621998 0.828105 0.00568885 +0.634024 0.838841 0.0060301 +0.645051 0.851544 0.00605836 +0.655227 0.861821 0.00619182 +0.664724 0.871405 0.00632064 +0.673476 0.881324 0.00669479 +0.681811 0.891275 0.00658981 +0.689682 0.901056 0.00673865 +0.697243 0.909476 0.00682753 +0.704219 0.915073 0.00691147 +0.710969 0.921715 0.00720939 +0.717113 0.925899 0.00730465 +0.726111 0.939145 0.00751825 diff --git a/Scripts_20161126/energylist_o_chi2fit.txt b/Scripts_20161126/energylist_o_chi2fit.txt new file mode 100644 index 0000000..41ba4d1 --- /dev/null +++ b/Scripts_20161126/energylist_o_chi2fit.txt @@ -0,0 +1,21 @@ +444.422 2.50913 1.43854 +377.991 3.15341 1.78165 +337.641 3.48266 1.9896 +310.049 3.145 1.82616 +289.655 2.88182 1.6771 +273.879 2.71381 1.65493 +261.017 2.58176 1.56898 +250.406 2.48552 1.59462 +241.353 2.45163 1.60246 +233.587 2.35874 1.63678 +226.809 2.29521 1.62072 +220.824 2.27118 1.68845 +215.458 2.21196 1.65392 +210.691 2.21547 1.80557 +206.301 2.22312 1.74699 +202.283 2.21125 1.78459 +198.535 2.18113 1.7975 +195.17 2.11704 1.74831 +191.994 1.97474 1.75396 +189.171 1.89467 1.72274 +185.146 1.99097 1.93813 diff --git a/Scripts_20161126/energylist_o_focus1.txt b/Scripts_20161126/energylist_o_focus1.txt new file mode 100644 index 0000000..11e2cbc --- /dev/null +++ b/Scripts_20161126/energylist_o_focus1.txt @@ -0,0 +1,21 @@ +444.422 10.1353 0.436406 +377.991 8.48151 0.298185 +337.641 7.42582 0.247136 +310.049 6.65796 0.240059 +289.655 6.09796 0.21942 +273.879 5.67039 0.198437 +261.017 5.3283 0.190017 +250.406 5.05531 0.188966 +241.353 4.81381 0.181183 +233.587 4.62773 0.185274 +226.809 4.46468 0.181001 +220.824 4.31942 0.177293 +215.458 4.16624 0.177119 +210.691 4.0485 0.179361 +206.301 3.90285 0.17064 +202.283 3.79799 0.183338 +198.535 3.71399 0.163782 +195.17 3.61246 0.166099 +191.994 3.53538 0.166417 +189.171 3.44765 0.166759 +185.146 3.36929 0.167733 diff --git a/Scripts_20161126/energylist_o_focusHIT.txt b/Scripts_20161126/energylist_o_focusHIT.txt new file mode 100644 index 0000000..9e698db --- /dev/null +++ b/Scripts_20161126/energylist_o_focusHIT.txt @@ -0,0 +1,21 @@ +444.422 8.8 +377.991 7.3 +337.641 6.2 +310.049 5.5 +289.655 5 +273.879 4.6 +261.017 4.4 +250.406 4.1 +241.353 4 +233.587 3.8 +226.809 3.7 +220.824 3.5 +215.458 3.4 +210.691 3.3 +206.301 3.2 +202.283 3.1 +198.535 3 +195.17 2.9 +191.994 2.8 +189.171 2.7 +185.146 2.7 diff --git a/Scripts_20161126/energylist_o_focusfit.txt b/Scripts_20161126/energylist_o_focusfit.txt new file mode 100644 index 0000000..2cbcb41 --- /dev/null +++ b/Scripts_20161126/energylist_o_focusfit.txt @@ -0,0 +1,21 @@ +444.422 9.86271 0.309402 +377.991 8.00956 0.189579 +337.641 6.9215 0.146643 +310.049 6.18437 0.13183 +289.655 5.65443 0.118702 +273.879 5.23921 0.106218 +261.017 4.91583 0.100768 +250.406 4.65659 0.0979168 +241.353 4.42609 0.0936621 +233.587 4.25642 0.0930374 +226.809 4.10471 0.0878046 +220.824 3.9663 0.0841938 +215.458 3.81957 0.082233 +210.691 3.71291 0.0845847 +206.301 3.56508 0.0764382 +202.283 3.46133 0.0758902 +198.535 3.39023 0.0763753 +195.17 3.29698 0.0732074 +191.994 3.23568 0.0698015 +189.171 3.1601 0.0784281 +185.146 3.08344 0.0714811 diff --git a/Scripts_20161126/energylist_o_ic1.txt b/Scripts_20161126/energylist_o_ic1.txt new file mode 100644 index 0000000..a8d852c --- /dev/null +++ b/Scripts_20161126/energylist_o_ic1.txt @@ -0,0 +1,21 @@ +416.151 6.75811 0.0418425 SAVE_PiN_run87.root +353.682 5.74365 0.0374351 SAVE_PiN_run88.root +315.718 5.12712 0.0343866 SAVE_PiN_run89.root +289.746 4.70535 0.0316226 SAVE_PiN_run90.root +270.543 4.3935 0.0293093 SAVE_PiN_run91.root +255.685 4.15221 0.0275087 SAVE_PiN_run92.root +243.568 3.95544 0.0262334 SAVE_PiN_run93.root +233.57 3.79307 0.025866 SAVE_PiN_run94.root +225.037 3.65451 0.024529 SAVE_PiN_run95.root +217.717 3.53563 0.0247171 SAVE_PiN_run96.root +211.327 3.43186 0.0237828 SAVE_PiN_run97.root +205.684 3.34022 0.0233477 SAVE_PiN_run98.root +200.624 3.25804 0.0229768 SAVE_PiN_run99.root +196.128 3.18503 0.0234044 SAVE_PiN_run100.root +191.987 3.11779 0.022362 SAVE_PiN_run101.root +188.197 3.05624 0.0221984 SAVE_PiN_run103.root +184.661 2.99881 0.0218315 SAVE_PiN_run104.root +181.485 2.94724 0.0216234 SAVE_PiN_run105.root +178.489 2.89859 0.0219119 SAVE_PiN_run106.root +175.824 2.85531 0.0217452 SAVE_PiN_run107.root +172.026 2.79362 0.0216389 SAVE_PiN_run108.root diff --git a/Scripts_20161126/energylist_o_ic1ratio.txt b/Scripts_20161126/energylist_o_ic1ratio.txt new file mode 100644 index 0000000..8676706 --- /dev/null +++ b/Scripts_20161126/energylist_o_ic1ratio.txt @@ -0,0 +1,21 @@ +416.151 0.941174 +353.682 0.925095 +315.718 0.892407 +289.746 0.88503 +270.543 0.907785 +255.685 0.889439 +243.568 0.877005 +233.57 0.877723 +225.037 0.86436 +217.717 0.858901 +211.327 0.866923 +205.684 0.888274 +200.624 0.846301 +196.128 0.87631 +191.987 0.869604 +188.197 0.879467 +184.661 0.862564 +181.485 0.868013 +178.489 0.87785 +175.824 0.889568 +172.026 0.865953 diff --git a/Scripts_20161126/energylist_o_kurt1.txt b/Scripts_20161126/energylist_o_kurt1.txt new file mode 100644 index 0000000..8b2c92e --- /dev/null +++ b/Scripts_20161126/energylist_o_kurt1.txt @@ -0,0 +1,21 @@ +444.422 0.0391801 0.00125918 +377.991 0.301277 0.00195732 +337.641 0.484785 0.00272705 +310.049 0.556202 0.00332809 +289.655 0.598105 0.00364761 +273.879 0.668359 0.00429699 +261.017 0.708683 0.00454656 +250.406 0.725855 0.00454412 +241.353 0.748311 0.0044552 +233.587 0.845926 0.00582114 +226.809 0.843351 0.00561141 +220.824 0.861779 0.00558332 +215.458 0.897915 0.00575129 +210.691 0.859559 0.00541461 +206.301 0.861972 0.0048006 +202.283 0.890871 0.00495878 +198.535 0.885117 0.00500067 +195.17 0.916953 0.00500143 +191.994 0.942331 0.005395 +189.171 0.924809 0.00503647 +185.146 0.904397 0.00505454 diff --git a/Scripts_20161126/energylist_o_noise.txt b/Scripts_20161126/energylist_o_noise.txt new file mode 100644 index 0000000..0602c94 --- /dev/null +++ b/Scripts_20161126/energylist_o_noise.txt @@ -0,0 +1,21 @@ +444.422 -0.00489616 6.68537 +377.991 0.0243297 6.38303 +337.641 0.106515 7.24391 +310.049 0.0288923 6.10859 +289.655 -0.105939 6.30075 +273.879 -0.0502152 5.92397 +261.017 0.00964585 6.12448 +250.406 -0.0951886 6.3359 +241.353 0.0920268 5.89285 +233.587 -0.00596982 8.13928 +226.809 0.069777 8.64053 +220.824 -0.0615429 8.78081 +215.458 0.0121637 8.50478 +210.691 -0.037111 8.30072 +206.301 0.00137241 6.90519 +202.283 -0.0266904 6.40269 +198.535 -0.0889237 5.85698 +195.17 -0.13955 6.19566 +191.994 0.000563917 6.85085 +189.171 0.0417185 6.79554 +185.146 0.052973 5.99332 diff --git a/Scripts_20161126/energylist_o_skew1.txt b/Scripts_20161126/energylist_o_skew1.txt new file mode 100644 index 0000000..588d788 --- /dev/null +++ b/Scripts_20161126/energylist_o_skew1.txt @@ -0,0 +1,21 @@ +444.422 -0.0280469 0.000364346 +377.991 -0.0330713 0.000389986 +337.641 -0.0353204 0.000429569 +310.049 -0.0422523 0.000465556 +289.655 -0.0467927 0.000476789 +273.879 -0.0497144 0.000542298 +261.017 -0.0499807 0.000562507 +250.406 -0.0495207 0.0005861 +241.353 -0.045314 0.000593588 +233.587 -0.0675023 0.000899926 +226.809 -0.0597604 0.000832946 +220.824 -0.0579474 0.00097652 +215.458 -0.0630855 0.000921185 +210.691 -0.0573608 0.000917137 +206.301 -0.0420676 0.000786955 +202.283 -0.035546 0.000837714 +198.535 -0.0339243 0.000822717 +195.17 -0.06218 0.000901306 +191.994 -0.0551722 0.00110734 +189.171 -0.0273813 0.000948981 +185.146 -0.0539994 0.000995197 diff --git a/Scripts_20161126/energylist_p_bpm1.txt b/Scripts_20161126/energylist_p_bpm1.txt new file mode 100644 index 0000000..eb18c3f --- /dev/null +++ b/Scripts_20161126/energylist_p_bpm1.txt @@ -0,0 +1,26 @@ +12.6088 14.7533 0.096904 +10.5936 12.9823 0.0867817 +9.36031 11.739 0.0833148 +8.51336 10.7917 0.0757961 +7.88605 10.0881 0.0704225 +7.39682 9.53643 0.066426 +7.00082 9.08859 0.0614816 +6.67084 8.70457 0.0592074 +6.39059 8.38237 0.0544328 +6.14881 8.11432 0.0542731 +5.93691 7.87787 0.0530555 +5.74999 7.66343 0.0509711 +5.58275 7.4668 0.0501345 +5.43216 7.28997 0.0491602 +5.29477 7.12113 0.0466416 +5.16875 6.95465 0.0450393 +5.05214 6.79119 0.0435765 +4.94396 6.65235 0.0429222 +4.84371 6.53111 0.0422342 +4.7504 6.42166 0.0415991 +4.62797 6.26875 0.040269 +4.51492 6.11729 0.0392985 +4.41193 5.98535 0.0386669 +4.31778 5.8583 0.03804 +4.23108 5.75379 0.0374308 +4.15089 5.66446 0.0370458 diff --git a/Scripts_20161126/energylist_p_bpm1ratio.txt b/Scripts_20161126/energylist_p_bpm1ratio.txt new file mode 100644 index 0000000..9327651 --- /dev/null +++ b/Scripts_20161126/energylist_p_bpm1ratio.txt @@ -0,0 +1,26 @@ +12.6088 0.846875 0.162587 +10.5936 0.887343 0.0879311 +9.36031 0.907533 0.0762469 +8.51336 0.932063 0.200989 +7.88605 0.927223 0.0684706 +7.39682 0.934388 0.0656731 +7.00082 0.941687 0.0665411 +6.67084 0.946871 0.0590399 +6.39059 0.954023 0.0832979 +6.14881 0.959175 0.0822801 +5.93691 0.967165 0.11564 +5.74999 0.969136 0.0859334 +5.58275 0.976766 0.139394 +5.43216 0.974111 0.0706902 +5.29477 0.978422 0.0862178 +5.16875 0.97894 0.0827282 +5.05214 0.97749 0.0733657 +4.94396 0.979042 0.0861606 +4.84371 0.982174 0.10259 +4.7504 0.982609 0.0792495 +4.62797 0.985496 0.0745409 +4.51492 0.986499 0.0945878 +4.41193 0.986779 0.0897324 +4.31778 0.987506 0.0860912 +4.23108 0.989358 0.0817015 +4.15089 0.995765 0.120135 diff --git a/Scripts_20161126/energylist_p_bpmbeta1.txt b/Scripts_20161126/energylist_p_bpmbeta1.txt new file mode 100644 index 0000000..9bbfa6f --- /dev/null +++ b/Scripts_20161126/energylist_p_bpmbeta1.txt @@ -0,0 +1,26 @@ +0.308525 1.17009 0.00768545 +0.340994 1.22548 0.00819192 +0.366173 1.25412 0.00890086 +0.386744 1.26762 0.00890319 +0.404198 1.27924 0.00893001 +0.419413 1.28926 0.00898034 +0.432945 1.29822 0.00878207 +0.44518 1.30487 0.00887555 +0.456345 1.31167 0.00851766 +0.466617 1.31966 0.00882661 +0.476154 1.32693 0.00893656 +0.485023 1.33277 0.00886456 +0.493348 1.33748 0.00898026 +0.501186 1.342 0.00904985 +0.508639 1.34494 0.00880901 +0.515744 1.34552 0.00871377 +0.522563 1.34422 0.00862534 +0.529111 1.34555 0.00868173 +0.53538 1.34837 0.0087194 +0.541398 1.35181 0.00875697 +0.549576 1.35453 0.00870121 +0.557429 1.35491 0.00870414 +0.564849 1.35663 0.00876418 +0.571868 1.35679 0.00881008 +0.578541 1.35989 0.00884663 +0.5849 1.36464 0.00892479 diff --git a/Scripts_20161126/energylist_p_chi2fit.txt b/Scripts_20161126/energylist_p_chi2fit.txt new file mode 100644 index 0000000..c93c7f7 --- /dev/null +++ b/Scripts_20161126/energylist_p_chi2fit.txt @@ -0,0 +1,26 @@ +12.6088 4.92376 7.47872 +10.5936 5.00881 6.30747 +9.36031 5.31616 5.90385 +8.51336 4.64942 4.978 +7.88605 3.97282 3.95399 +7.39682 3.48958 3.05764 +7.00082 3.24976 2.61228 +6.67084 3.11978 2.35697 +6.39059 2.94007 1.78095 +6.14881 2.94268 1.76171 +5.93691 2.96652 1.73581 +5.74999 2.95324 1.67745 +5.58275 2.80359 1.56897 +5.43216 2.72042 1.53197 +5.29477 2.6922 1.38143 +5.16875 2.73321 1.34053 +5.05214 2.83884 1.28687 +4.94396 2.91402 1.34718 +4.84371 2.86251 1.34265 +4.7504 2.79482 1.29505 +4.62797 2.77572 1.32771 +4.51492 2.76483 1.26223 +4.41193 2.80534 1.36321 +4.31778 2.77945 1.36982 +4.23108 2.64168 1.25611 +4.15089 2.55105 1.24133 diff --git a/Scripts_20161126/energylist_p_focus1.txt b/Scripts_20161126/energylist_p_focus1.txt new file mode 100644 index 0000000..dc20490 --- /dev/null +++ b/Scripts_20161126/energylist_p_focus1.txt @@ -0,0 +1,26 @@ +12.6088 23.2202 1.30071 +10.5936 22.3925 0.609153 +9.36031 21.5149 0.597366 +8.51336 20.6234 0.45632 +7.88605 19.6743 0.362185 +7.39682 18.7674 0.336758 +7.00082 17.9374 0.293683 +6.67084 17.1555 0.289904 +6.39059 16.4424 0.246882 +6.14881 15.8897 0.280069 +5.93691 15.343 0.23936 +5.74999 14.8706 0.235769 +5.58275 14.527 0.27967 +5.43216 14.2756 0.266778 +5.29477 13.9383 0.243623 +5.16875 13.3496 0.244766 +5.05214 12.841 0.238929 +4.94396 12.4378 0.238023 +4.84371 12.1803 0.239261 +4.7504 11.9333 0.233253 +4.62797 11.5727 0.229587 +4.51492 11.191 0.227382 +4.41193 10.8187 0.223042 +4.31778 10.5284 0.236156 +4.23108 10.3842 0.223226 +4.15089 10.2094 0.227092 diff --git a/Scripts_20161126/energylist_p_focusHIT.txt b/Scripts_20161126/energylist_p_focusHIT.txt new file mode 100644 index 0000000..dc1268d --- /dev/null +++ b/Scripts_20161126/energylist_p_focusHIT.txt @@ -0,0 +1,26 @@ +12.6088 32.4 +10.5936 26.8 +9.36031 22.8 +8.51336 20 +7.88605 18 +7.39682 16.5 +7.00082 15.4 +6.67084 14.5 +6.39059 13.7 +6.14881 13.1 +5.93691 12.6 +5.74999 12.2 +5.58275 11.8 +5.43216 11.4 +5.29477 11.1 +5.16875 10.8 +5.05214 10.4 +4.94396 10.1 +4.84371 9.8 +4.7504 9.5 +4.62797 9.1 +4.51492 8.8 +4.41193 8.5 +4.31778 8.2 +4.23108 8.1 +4.15089 8.1 diff --git a/Scripts_20161126/energylist_p_focusfit.txt b/Scripts_20161126/energylist_p_focusfit.txt new file mode 100644 index 0000000..c998fb9 --- /dev/null +++ b/Scripts_20161126/energylist_p_focusfit.txt @@ -0,0 +1,26 @@ +12.6088 32.9013 1.98679 +10.5936 27.744 0.796985 +9.36031 24.4059 0.381944 +8.51336 21.995 0.250191 +7.88605 20.1596 0.17974 +7.39682 18.7334 0.13563 +7.00082 17.5547 0.107492 +6.67084 16.5428 0.0929105 +6.39059 15.6484 0.0805071 +6.14881 15.0075 0.0771068 +5.93691 14.3766 0.0709875 +5.74999 13.8591 0.0686077 +5.58275 13.6084 0.13478 +5.43216 13.387 0.104907 +5.29477 13.0491 0.108599 +5.16875 12.3962 0.122035 +5.05214 11.8307 0.0855704 +4.94396 11.4052 0.0992709 +4.84371 11.1674 0.0902259 +4.7504 10.9495 0.110161 +4.62797 10.604 0.10467 +4.51492 10.2355 0.0894564 +4.41193 9.8712 0.0979918 +4.31778 9.59144 0.0985891 +4.23108 9.5084 0.114279 +4.15089 9.37103 0.126649 diff --git a/Scripts_20161126/energylist_p_ic1.txt b/Scripts_20161126/energylist_p_ic1.txt new file mode 100644 index 0000000..a1bab9a --- /dev/null +++ b/Scripts_20161126/energylist_p_ic1.txt @@ -0,0 +1,26 @@ +11.3093 0.183659 0.00117077 SAVE_PiN_run5.root +9.5264 0.154705 0.00102858 SAVE_PiN_run7.root +8.43143 0.136923 0.00096873 SAVE_PiN_run8.root +7.67749 0.124679 0.000871756 SAVE_PiN_run9.root +7.1179 0.115592 0.000802586 SAVE_PiN_run11.root +6.68074 0.108492 0.000751885 SAVE_PiN_run12.root +6.32635 0.102737 0.000691779 SAVE_PiN_run13.root +6.03068 0.0979356 0.000662707 SAVE_PiN_run14.root +5.77926 0.0938527 0.000606031 SAVE_PiN_run15.root +5.56214 0.0903267 0.000599825 SAVE_PiN_run16.root +5.37167 0.0872336 0.000583303 SAVE_PiN_run17.root +5.2035 0.0845025 0.000558259 SAVE_PiN_run18.root +5.05292 0.0820573 0.000547287 SAVE_PiN_run19.root +4.91723 0.0798536 0.000534201 SAVE_PiN_run20.root +4.79334 0.0778418 0.000505923 SAVE_PiN_run21.root +4.67963 0.0759952 0.000488392 SAVE_PiN_run22.root +4.57435 0.0742855 0.000473244 SAVE_PiN_run23.root +4.47662 0.0726983 0.000465682 SAVE_PiN_run24.root +4.386 0.0712267 0.000456407 SAVE_PiN_run25.root +4.3016 0.0698562 0.000448572 SAVE_PiN_run26.root +4.1908 0.0680568 0.000434087 SAVE_PiN_run27.root +4.08841 0.0663941 0.000422286 SAVE_PiN_run28.root +3.99507 0.0648783 0.000413852 SAVE_PiN_run29.root +3.9097 0.0634918 0.000407902 SAVE_PiN_run30.root +3.83102 0.0622141 0.000401176 SAVE_PiN_run31.root +3.75822 0.0610318 0.000395632 SAVE_PiN_run32.root diff --git a/Scripts_20161126/energylist_p_ic1ratio.txt b/Scripts_20161126/energylist_p_ic1ratio.txt new file mode 100644 index 0000000..4a136e9 --- /dev/null +++ b/Scripts_20161126/energylist_p_ic1ratio.txt @@ -0,0 +1,26 @@ +11.3093 0.875362 +9.5264 0.956761 +8.43143 0.97329 +7.67749 0.836673 +7.1179 0.97414 +6.68074 0.977426 +6.32635 0.96967 +6.03068 0.977745 +5.77926 0.937204 +5.56214 0.950673 +5.37167 0.918863 +5.2035 0.945228 +5.05292 0.892151 +4.91723 0.966497 +4.79334 0.93725 +4.67963 0.935821 +4.57435 0.943885 +4.47662 0.927274 +4.386 0.903434 +4.3016 0.93812 +4.1908 0.940951 +4.08841 0.906276 +3.99507 0.917244 +3.9097 0.926774 +3.83102 0.935791 +3.75822 0.884807 diff --git a/Scripts_20161126/energylist_p_kurt1.txt b/Scripts_20161126/energylist_p_kurt1.txt new file mode 100644 index 0000000..3507312 --- /dev/null +++ b/Scripts_20161126/energylist_p_kurt1.txt @@ -0,0 +1,26 @@ +12.6088 -0.744136 0.000251997 +10.5936 -0.635556 0.000153178 +9.36031 -0.519635 0.00019486 +8.51336 -0.404028 0.000199052 +7.88605 -0.297951 0.000193776 +7.39682 -0.204785 0.000222115 +7.00082 -0.11727 0.000250413 +6.67084 -0.0375088 0.000330798 +6.39059 0.0413851 0.000353434 +6.14881 0.0960896 0.000439675 +5.93691 0.153248 0.000514665 +5.74999 0.201237 0.000574853 +5.58275 0.198602 0.00072239 +5.43216 0.210643 0.000744263 +5.29477 0.235006 0.000791398 +5.16875 0.300105 0.000927326 +5.05214 0.366449 0.00104199 +4.94396 0.410503 0.0011509 +4.84371 0.424225 0.00121132 +4.7504 0.429286 0.00124945 +4.62797 0.455989 0.00133598 +4.51492 0.483797 0.00141302 +4.41193 0.514377 0.00149148 +4.31778 0.542605 0.00158946 +4.23108 0.513153 0.00159354 +4.15089 0.503945 0.00162372 diff --git a/Scripts_20161126/energylist_p_noise.txt b/Scripts_20161126/energylist_p_noise.txt new file mode 100644 index 0000000..e197618 --- /dev/null +++ b/Scripts_20161126/energylist_p_noise.txt @@ -0,0 +1,26 @@ +12.6088 -0.0381319 9.13905 +10.5936 0.0229805 9.07751 +9.36031 -0.163127 9.16924 +8.51336 -0.073277 9.09055 +7.88605 0.0105527 8.74277 +7.39682 -0.0396685 8.04183 +7.00082 -0.0121889 7.53254 +6.67084 0.0432702 8.82198 +6.39059 -0.0873416 8.52387 +6.14881 0.00527392 7.76973 +5.93691 0.0202651 6.84699 +5.74999 0.00435701 6.20527 +5.58275 -0.0321429 7.36123 +5.43216 -0.0762316 7.67736 +5.29477 -0.0969601 8.35033 +5.16875 0.129156 8.50019 +5.05214 0.0920098 8.45706 +4.94396 -0.0197884 8.30331 +4.84371 0.0341125 6.56841 +4.7504 -0.0783546 7.27665 +4.62797 -0.0129993 6.57172 +4.51492 0.0248155 6.06966 +4.41193 0.144623 6.51444 +4.31778 0.0166886 6.14929 +4.23108 0.0763828 8.05132 +4.15089 0.124674 6.23333 diff --git a/Scripts_20161126/energylist_p_skew1.txt b/Scripts_20161126/energylist_p_skew1.txt new file mode 100644 index 0000000..d1a9833 --- /dev/null +++ b/Scripts_20161126/energylist_p_skew1.txt @@ -0,0 +1,26 @@ +12.6088 0.0727608 0.000283934 +10.5936 0.0572971 0.000159944 +9.36031 0.0468522 0.000165883 +8.51336 0.043189 0.000126012 +7.88605 0.0355665 0.000104809 +7.39682 0.0260337 0.000101641 +7.00082 0.0184117 0.000118286 +6.67084 0.0102188 0.000140931 +6.39059 0.00442483 0.000122168 +6.14881 0.00373327 0.000137908 +5.93691 0.00288418 0.000134949 +5.74999 0.000894669 0.00014388 +5.58275 -0.00299652 0.000142959 +5.43216 -0.00177812 0.000150106 +5.29477 -0.000247082 0.000142952 +5.16875 -0.00814118 0.000152731 +5.05214 -0.0141199 0.00016785 +4.94396 -0.016307 0.000167286 +4.84371 -0.0150386 0.000176112 +4.7504 -0.0143416 0.000173907 +4.62797 -0.0133818 0.000185495 +4.51492 -0.0159281 0.00019147 +4.41193 -0.0174882 0.000190264 +4.31778 -0.0179604 0.000199685 +4.23108 -0.0148217 0.000189875 +4.15089 -0.0078541 0.000195279 diff --git a/Scripts_20161126/figs/beamenergyfile_int_c.C b/Scripts_20161126/figs/beamenergyfile_int_c.C new file mode 100644 index 0000000..e6e47e7 --- /dev/null +++ b/Scripts_20161126/figs/beamenergyfile_int_c.C @@ -0,0 +1,123 @@ +void beamenergyfile_int_c() +{ +//=========Macro generated from canvas: c1/c1 +//========= (Tue Dec 5 12:03:42 2017) by ROOT version6.06/02 + TCanvas *c1 = new TCanvas("c1", "c1",10,71,700,500); + gStyle->SetOptStat(0); + gStyle->SetOptTitle(0); + c1->Range(-9.855094,-1.21519,60.53843,6.379747); + c1->SetFillColor(0); + c1->SetBorderMode(0); + c1->SetBorderSize(2); + c1->SetTickx(1); + c1->SetTicky(1); + c1->SetLeftMargin(0.14); + c1->SetRightMargin(0.08); + c1->SetTopMargin(0.05); + c1->SetBottomMargin(0.16); + c1->SetFrameLineWidth(2); + c1->SetFrameBorderMode(0); + c1->SetFrameLineWidth(2); + c1->SetFrameBorderMode(0); + + Double_t Graph0_fx1001[9] = { + 1.99418, + 2.99221, + 4.99357, + 8.00451, + 9.96037, + 14.9624, + 19.9591, + 29.9598, + 50.0967}; + Double_t Graph0_fy1001[9] = { + 0.209056, + 0.321651, + 0.538085, + 0.863684, + 1.08222, + 1.62381, + 2.1691, + 3.2634, + 5.44883}; + Double_t Graph0_fex1001[9] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph0_fey1001[9] = { + 0.000432816, + 0.000558112, + 0.000941916, + 0.00144775, + 0.00311746, + 0.00313547, + 0.00429978, + 0.00679122, + 0.00971554}; + TGraphErrors *gre = new TGraphErrors(9,Graph0_fx1001,Graph0_fy1001,Graph0_fex1001,Graph0_fey1001); + gre->SetName("Graph0"); + gre->SetTitle("Carbon Ions"); + gre->SetFillColor(1); + gre->SetLineWidth(2); + gre->SetMarkerStyle(22); + + TH1F *Graph_Graph1001 = new TH1F("Graph_Graph1001","Carbon Ions",100,0,54.90695); + Graph_Graph1001->SetMinimum(0); + Graph_Graph1001->SetMaximum(6); + Graph_Graph1001->SetDirectory(0); + Graph_Graph1001->SetStats(0); + Graph_Graph1001->SetLineWidth(2); + Graph_Graph1001->SetMarkerStyle(21); + Graph_Graph1001->GetXaxis()->SetTitle("Intensity / 10^{6}s^{-1}"); + Graph_Graph1001->GetXaxis()->SetNdivisions(505); + Graph_Graph1001->GetXaxis()->SetLabelFont(22); + Graph_Graph1001->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1001->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1001->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1001->GetXaxis()->SetTitleFont(22); + Graph_Graph1001->GetYaxis()->SetTitle("#bar{A}_{BPM} / 10^{3} a.u."); + Graph_Graph1001->GetYaxis()->SetLabelFont(22); + Graph_Graph1001->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1001->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1001->GetYaxis()->SetTitleFont(22); + Graph_Graph1001->GetZaxis()->SetLabelFont(22); + Graph_Graph1001->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1001->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1001->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1001); + + + TF1 *pol11002 = new TF1("pol1","pol1",0,54.90695); + pol11002->SetFillStyle(0); + pol11002->SetMarkerStyle(21); + pol11002->SetLineWidth(2); + pol11002->SetChisquare(32.73371); + pol11002->SetNDF(7); + pol11002->GetXaxis()->SetNdivisions(505); + pol11002->GetXaxis()->SetLabelFont(22); + pol11002->GetXaxis()->SetLabelOffset(0.015); + pol11002->GetXaxis()->SetLabelSize(0.05); + pol11002->GetXaxis()->SetTitleSize(0.06); + pol11002->GetXaxis()->SetTitleFont(22); + pol11002->GetYaxis()->SetLabelFont(22); + pol11002->GetYaxis()->SetLabelSize(0.05); + pol11002->GetYaxis()->SetTitleSize(0.06); + pol11002->GetYaxis()->SetTitleFont(22); + pol11002->SetParameter(0,-0.007111445); + pol11002->SetParError(0,0.0004586831); + pol11002->SetParLimits(0,0,0); + pol11002->SetParameter(1,0.1090771); + pol11002->SetParError(1,0.0001024792); + pol11002->SetParLimits(1,0,0); + gre->GetListOfFunctions()->Add(pol11002); + gre->Draw("ap"); + c1->Modified(); + c1->cd(); + c1->SetSelected(c1); +} diff --git a/Scripts_20161126/figs/beamenergyfile_int_c.pdf b/Scripts_20161126/figs/beamenergyfile_int_c.pdf new file mode 100644 index 0000000..4500408 Binary files /dev/null and b/Scripts_20161126/figs/beamenergyfile_int_c.pdf differ diff --git a/Scripts_20161126/figs/beamenergyfile_int_c.png b/Scripts_20161126/figs/beamenergyfile_int_c.png new file mode 100644 index 0000000..1565930 Binary files /dev/null and b/Scripts_20161126/figs/beamenergyfile_int_c.png differ diff --git a/Scripts_20161126/figs/beamenergyfile_int_p.C b/Scripts_20161126/figs/beamenergyfile_int_p.C new file mode 100644 index 0000000..a91c488 --- /dev/null +++ b/Scripts_20161126/figs/beamenergyfile_int_p.C @@ -0,0 +1,127 @@ +void beamenergyfile_int_p() +{ +//=========Macro generated from canvas: c1_n2/c1_n2 +//========= (Tue Dec 5 12:03:43 2017) by ROOT version6.06/02 + TCanvas *c1_n2 = new TCanvas("c1_n2", "c1_n2",10,71,700,500); + gStyle->SetOptStat(0); + gStyle->SetOptTitle(0); + c1_n2->Range(-616.6917,-4.050633,3788.249,21.26582); + c1_n2->SetFillColor(0); + c1_n2->SetBorderMode(0); + c1_n2->SetBorderSize(2); + c1_n2->SetTickx(1); + c1_n2->SetTicky(1); + c1_n2->SetLeftMargin(0.14); + c1_n2->SetRightMargin(0.08); + c1_n2->SetTopMargin(0.05); + c1_n2->SetBottomMargin(0.16); + c1_n2->SetFrameLineWidth(2); + c1_n2->SetFrameBorderMode(0); + c1_n2->SetFrameLineWidth(2); + c1_n2->SetFrameBorderMode(0); + + Double_t Graph0_fx1003[10] = { + 77.5122, + 116.351, + 193.951, + 310.193, + 387.817, + 581.737, + 776.317, + 1164.85, + 1948.34, + 3130.55}; + Double_t Graph0_fy1003[10] = { + 0.429555, + 0.643733, + 1.0764, + 1.72565, + 2.16159, + 3.24754, + 4.33832, + 6.52111, + 10.9109, + 17.5223}; + Double_t Graph0_fex1003[10] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph0_fey1003[10] = { + 0.000673582, + 0.000994535, + 0.00168363, + 0.00264345, + 0.0034271, + 0.00536572, + 0.00688484, + 0.00997276, + 0.015779, + 0.0260387}; + TGraphErrors *gre = new TGraphErrors(10,Graph0_fx1003,Graph0_fy1003,Graph0_fex1003,Graph0_fey1003); + gre->SetName("Graph0"); + gre->SetTitle("Protons"); + gre->SetFillColor(1); + gre->SetLineWidth(2); + gre->SetMarkerStyle(20); + + TH1F *Graph_Graph1003 = new TH1F("Graph_Graph1003","Protons",100,0,3435.854); + Graph_Graph1003->SetMinimum(0); + Graph_Graph1003->SetMaximum(20); + Graph_Graph1003->SetDirectory(0); + Graph_Graph1003->SetStats(0); + Graph_Graph1003->SetLineWidth(2); + Graph_Graph1003->SetMarkerStyle(21); + Graph_Graph1003->GetXaxis()->SetTitle("Intensity / 10^{6}s^{-1}"); + Graph_Graph1003->GetXaxis()->SetNdivisions(505); + Graph_Graph1003->GetXaxis()->SetLabelFont(22); + Graph_Graph1003->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1003->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1003->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1003->GetXaxis()->SetTitleFont(22); + Graph_Graph1003->GetYaxis()->SetTitle("#bar{A}_{BPM} / 10^{3} a.u."); + Graph_Graph1003->GetYaxis()->SetLabelFont(22); + Graph_Graph1003->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1003->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1003->GetYaxis()->SetTitleFont(22); + Graph_Graph1003->GetZaxis()->SetLabelFont(22); + Graph_Graph1003->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1003->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1003->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1003); + + + TF1 *pol11004 = new TF1("pol1","pol1",0,3435.854); + pol11004->SetFillStyle(0); + pol11004->SetMarkerStyle(21); + pol11004->SetLineWidth(2); + pol11004->SetChisquare(16.16133); + pol11004->SetNDF(8); + pol11004->GetXaxis()->SetNdivisions(505); + pol11004->GetXaxis()->SetLabelFont(22); + pol11004->GetXaxis()->SetLabelOffset(0.015); + pol11004->GetXaxis()->SetLabelSize(0.05); + pol11004->GetXaxis()->SetTitleSize(0.06); + pol11004->GetXaxis()->SetTitleFont(22); + pol11004->GetYaxis()->SetLabelFont(22); + pol11004->GetYaxis()->SetLabelSize(0.05); + pol11004->GetYaxis()->SetTitleSize(0.06); + pol11004->GetYaxis()->SetTitleFont(22); + pol11004->SetParameter(0,-0.005407782); + pol11004->SetParError(0,0.0006990141); + pol11004->SetParLimits(0,0,0); + pol11004->SetParameter(1,0.005593003); + pol11004->SetParError(1,3.747116e-06); + pol11004->SetParLimits(1,0,0); + gre->GetListOfFunctions()->Add(pol11004); + gre->Draw("ap"); + c1_n2->Modified(); + c1_n2->cd(); + c1_n2->SetSelected(c1_n2); +} diff --git a/Scripts_20161126/figs/beamenergyfile_int_p.pdf b/Scripts_20161126/figs/beamenergyfile_int_p.pdf new file mode 100644 index 0000000..60b9f2c Binary files /dev/null and b/Scripts_20161126/figs/beamenergyfile_int_p.pdf differ diff --git a/Scripts_20161126/figs/beamenergyfile_int_p.png b/Scripts_20161126/figs/beamenergyfile_int_p.png new file mode 100644 index 0000000..6ad5d71 Binary files /dev/null and b/Scripts_20161126/figs/beamenergyfile_int_p.png differ diff --git a/Scripts_20161126/figs/beamprofileexamples.pdf b/Scripts_20161126/figs/beamprofileexamples.pdf new file mode 100644 index 0000000..018f7d0 Binary files /dev/null and b/Scripts_20161126/figs/beamprofileexamples.pdf differ diff --git a/Scripts_20161126/figs/beamprofileexamples.png b/Scripts_20161126/figs/beamprofileexamples.png new file mode 100644 index 0000000..aa82fb8 Binary files /dev/null and b/Scripts_20161126/figs/beamprofileexamples.png differ diff --git a/Scripts_20161126/figs/beamprofileexamples_avg.eps b/Scripts_20161126/figs/beamprofileexamples_avg.eps new file mode 100644 index 0000000..97cad26 --- /dev/null +++ b/Scripts_20161126/figs/beamprofileexamples_avg.eps @@ -0,0 +1,6813 @@ +%!PS-Adobe-3.0 EPSF-3.0 +%%Creator: ROOT Version 6.06/02 +%%LanguageLevel: 2 +%%DocumentSuppliedResources: (atend) +%%BoundingBox: 0 0 567 549 +%%DocumentSuppliedResources: (atend) +%%EndComments +%%BeginProlog +%%BeginResource: procset xpdf 3.00 0 +%%Copyright: Copyright 1996-2004 Glyph & Cog, LLC +/xpdf 75 dict def xpdf begin +% PDF special state +/pdfDictSize 15 def +/pdfSetup { + 3 1 roll 2 array astore + /setpagedevice where { + pop 3 dict begin + /PageSize exch def + /ImagingBBox null def + /Policies 1 dict dup begin /PageSize 3 def end def + { /Duplex true def } if + currentdict end setpagedevice + } { + pop pop + } ifelse +} def +/pdfStartPage { + pdfDictSize dict begin + /pdfFillCS [] def + /pdfFillXform {} def + /pdfStrokeCS [] def + /pdfStrokeXform {} def + /pdfFill [0] def + /pdfStroke [0] def + /pdfFillOP false def + /pdfStrokeOP false def + /pdfLastFill false def + /pdfLastStroke false def + /pdfTextMat [1 0 0 1 0 0] def + /pdfFontSize 0 def + /pdfCharSpacing 0 def + /pdfTextRender 0 def + /pdfTextRise 0 def + /pdfWordSpacing 0 def + /pdfHorizScaling 1 def + /pdfTextClipPath [] def +} def +/pdfEndPage { end } def +% PDF color state +/cs { /pdfFillXform exch def dup /pdfFillCS exch def + setcolorspace } def +/CS { /pdfStrokeXform exch def dup /pdfStrokeCS exch def + setcolorspace } def +/sc { pdfLastFill not { pdfFillCS setcolorspace } if + dup /pdfFill exch def aload pop pdfFillXform setcolor + /pdfLastFill true def /pdfLastStroke false def } def +/SC { pdfLastStroke not { pdfStrokeCS setcolorspace } if + dup /pdfStroke exch def aload pop pdfStrokeXform setcolor + /pdfLastStroke true def /pdfLastFill false def } def +/op { /pdfFillOP exch def + pdfLastFill { pdfFillOP setoverprint } if } def +/OP { /pdfStrokeOP exch def + pdfLastStroke { pdfStrokeOP setoverprint } if } def +/fCol { + pdfLastFill not { + pdfFillCS setcolorspace + pdfFill aload pop pdfFillXform setcolor + pdfFillOP setoverprint + /pdfLastFill true def /pdfLastStroke false def + } if +} def +/sCol { + pdfLastStroke not { + pdfStrokeCS setcolorspace + pdfStroke aload pop pdfStrokeXform setcolor + pdfStrokeOP setoverprint + /pdfLastStroke true def /pdfLastFill false def + } if +} def +% build a font +/pdfMakeFont { + 4 3 roll findfont + 4 2 roll matrix scale makefont + dup length dict begin + { 1 index /FID ne { def } { pop pop } ifelse } forall + /Encoding exch def + currentdict + end + definefont pop +} def +/pdfMakeFont16 { + exch findfont + dup length dict begin + { 1 index /FID ne { def } { pop pop } ifelse } forall + /WMode exch def + currentdict + end + definefont pop +} def +% graphics state operators +/q { gsave pdfDictSize dict begin } def +/Q { + end grestore + /pdfLastFill where { + pop + pdfLastFill { + pdfFillOP setoverprint + } { + pdfStrokeOP setoverprint + } ifelse + } if +} def +/cm { concat } def +/d { setdash } def +/i { setflat } def +/j { setlinejoin } def +/J { setlinecap } def +/M { setmiterlimit } def +/w { setlinewidth } def +% path segment operators +/m { moveto } def +/l { lineto } def +/c { curveto } def +/re { 4 2 roll moveto 1 index 0 rlineto 0 exch rlineto + neg 0 rlineto closepath } def +/h { closepath } def +% path painting operators +/S { sCol stroke } def +/Sf { fCol stroke } def +/f { fCol fill } def +/f* { fCol eofill } def +% clipping operators +/W { clip newpath } def +/W* { eoclip newpath } def +/Ws { strokepath clip newpath } def +% text state operators +/Tc { /pdfCharSpacing exch def } def +/Tf { dup /pdfFontSize exch def + dup pdfHorizScaling mul exch matrix scale + pdfTextMat matrix concatmatrix dup 4 0 put dup 5 0 put + exch findfont exch makefont setfont } def +/Tr { /pdfTextRender exch def } def +/Ts { /pdfTextRise exch def } def +/Tw { /pdfWordSpacing exch def } def +/Tz { /pdfHorizScaling exch def } def +% text positioning operators +/Td { pdfTextMat transform moveto } def +/Tm { /pdfTextMat exch def } def +% text string operators +/cshow where { + pop + /cshow2 { + dup { + pop pop + 1 string dup 0 3 index put 3 index exec + } exch cshow + pop pop + } def +}{ + /cshow2 { + currentfont /FontType get 0 eq { + 0 2 2 index length 1 sub { + 2 copy get exch 1 add 2 index exch get + 2 copy exch 256 mul add + 2 string dup 0 6 5 roll put dup 1 5 4 roll put + 3 index exec + } for + } { + dup { + 1 string dup 0 3 index put 3 index exec + } forall + } ifelse + pop pop + } def +} ifelse +/awcp { + exch { + false charpath + 5 index 5 index rmoveto + 6 index eq { 7 index 7 index rmoveto } if + } exch cshow2 + 6 {pop} repeat +} def +/Tj { + fCol + 1 index stringwidth pdfTextMat idtransform pop + sub 1 index length dup 0 ne { div } { pop pop 0 } ifelse + pdfWordSpacing pdfHorizScaling mul 0 pdfTextMat dtransform 32 + 4 3 roll pdfCharSpacing pdfHorizScaling mul add 0 + pdfTextMat dtransform + 6 5 roll Tj1 +} def +/Tj16 { + fCol + 2 index stringwidth pdfTextMat idtransform pop + sub exch div + pdfWordSpacing pdfHorizScaling mul 0 pdfTextMat dtransform 32 + 4 3 roll pdfCharSpacing pdfHorizScaling mul add 0 + pdfTextMat dtransform + 6 5 roll Tj1 +} def +/Tj16V { + fCol + 2 index stringwidth pdfTextMat idtransform exch pop + sub exch div + 0 pdfWordSpacing pdfTextMat dtransform 32 + 4 3 roll pdfCharSpacing add 0 exch + pdfTextMat dtransform + 6 5 roll Tj1 +} def +/Tj1 { + 0 pdfTextRise pdfTextMat dtransform rmoveto + currentpoint 8 2 roll + pdfTextRender 1 and 0 eq { + 6 copy awidthshow + } if + pdfTextRender 3 and dup 1 eq exch 2 eq or { + 7 index 7 index moveto + 6 copy + currentfont /FontType get 3 eq { fCol } { sCol } ifelse + false awcp currentpoint stroke moveto + } if + pdfTextRender 4 and 0 ne { + 8 6 roll moveto + false awcp + /pdfTextClipPath [ pdfTextClipPath aload pop + {/moveto cvx} + {/lineto cvx} + {/curveto cvx} + {/closepath cvx} + pathforall ] def + currentpoint newpath moveto + } { + 8 {pop} repeat + } ifelse + 0 pdfTextRise neg pdfTextMat dtransform rmoveto +} def +/TJm { pdfFontSize 0.001 mul mul neg 0 + pdfTextMat dtransform rmoveto } def +/TJmV { pdfFontSize 0.001 mul mul neg 0 exch + pdfTextMat dtransform rmoveto } def +/Tclip { pdfTextClipPath cvx exec clip newpath + /pdfTextClipPath [] def } def +/Tclip* { pdfTextClipPath cvx exec eoclip newpath + /pdfTextClipPath [] def } def +% Level 2 image operators +/pdfImBuf 100 string def +/pdfIm { + image + { currentfile pdfImBuf readline + not { pop exit } if + (%-EOD-) eq { exit } if } loop +} def +/pdfImM { + fCol imagemask + { currentfile pdfImBuf readline + not { pop exit } if + (%-EOD-) eq { exit } if } loop +} def +/pr { 2 index 2 index 3 2 roll putinterval 4 add } def +/pdfImClip { + gsave + 0 2 4 index length 1 sub { + dup 4 index exch 2 copy + get 5 index div put + 1 add 3 index exch 2 copy + get 3 index div put + } for + pop pop rectclip +} def +/pdfImClipEnd { grestore } def +% shading operators +/colordelta { + false 0 1 3 index length 1 sub { + dup 4 index exch get 3 index 3 2 roll get sub abs 0.004 gt { + pop true + } if + } for + exch pop exch pop +} def +/funcCol { func n array astore } def +/funcSH { + dup 0 eq { + true + } { + dup 6 eq { + false + } { + 4 index 4 index funcCol dup + 6 index 4 index funcCol dup + 3 1 roll colordelta 3 1 roll + 5 index 5 index funcCol dup + 3 1 roll colordelta 3 1 roll + 6 index 8 index funcCol dup + 3 1 roll colordelta 3 1 roll + colordelta or or or + } ifelse + } ifelse + { + 1 add + 4 index 3 index add 0.5 mul exch 4 index 3 index add 0.5 mul exch + 6 index 6 index 4 index 4 index 4 index funcSH + 2 index 6 index 6 index 4 index 4 index funcSH + 6 index 2 index 4 index 6 index 4 index funcSH + 5 3 roll 3 2 roll funcSH pop pop + } { + pop 3 index 2 index add 0.5 mul 3 index 2 index add 0.5 mul + funcCol sc + dup 4 index exch mat transform m + 3 index 3 index mat transform l + 1 index 3 index mat transform l + mat transform l pop pop h f* + } ifelse +} def +/axialCol { + dup 0 lt { + pop t0 + } { + dup 1 gt { + pop t1 + } { + dt mul t0 add + } ifelse + } ifelse + func n array astore +} def +/axialSH { + dup 0 eq { + true + } { + dup 8 eq { + false + } { + 2 index axialCol 2 index axialCol colordelta + } ifelse + } ifelse + { + 1 add 3 1 roll 2 copy add 0.5 mul + dup 4 3 roll exch 4 index axialSH + exch 3 2 roll axialSH + } { + pop 2 copy add 0.5 mul + axialCol sc + exch dup dx mul x0 add exch dy mul y0 add + 3 2 roll dup dx mul x0 add exch dy mul y0 add + dx abs dy abs ge { + 2 copy yMin sub dy mul dx div add yMin m + yMax sub dy mul dx div add yMax l + 2 copy yMax sub dy mul dx div add yMax l + yMin sub dy mul dx div add yMin l + h f* + } { + exch 2 copy xMin sub dx mul dy div add xMin exch m + xMax sub dx mul dy div add xMax exch l + exch 2 copy xMax sub dx mul dy div add xMax exch l + xMin sub dx mul dy div add xMin exch l + h f* + } ifelse + } ifelse +} def +/radialCol { + dup t0 lt { + pop t0 + } { + dup t1 gt { + pop t1 + } if + } ifelse + func n array astore +} def +/radialSH { + dup 0 eq { + true + } { + dup 8 eq { + false + } { + 2 index dt mul t0 add radialCol + 2 index dt mul t0 add radialCol colordelta + } ifelse + } ifelse + { + 1 add 3 1 roll 2 copy add 0.5 mul + dup 4 3 roll exch 4 index radialSH + exch 3 2 roll radialSH + } { + pop 2 copy add 0.5 mul dt mul t0 add + radialCol sc + encl { + exch dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + 0 360 arc h + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + 360 0 arcn h f + } { + 2 copy + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + a1 a2 arcn + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + a2 a1 arcn h + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + a1 a2 arc + dup dx mul x0 add exch dup dy mul y0 add exch dr mul r0 add + a2 a1 arc h f + } ifelse + } ifelse +} def +end +%%EndResource +%%EndProlog +%%BeginSetup +xpdf begin +/F7_0 /Times-Italic 1 1 +[ /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quotesingle + /parenleft/parenright/asterisk/plus/comma/hyphen/period/slash + /zero/one/two/three/four/five/six/seven + /eight/nine/colon/semicolon/less/equal/greater/question + /at/A/B/C/D/E/F/G + /H/I/J/K/L/M/N/O + /P/Q/R/S/T/U/V/W + /X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore + /grave/a/b/c/d/e/f/g + /h/i/j/k/l/m/n/o + /p/q/r/s/t/u/v/w + /x/y/z/braceleft/bar/braceright/asciitilde/bullet + /Euro/bullet/quotesinglbase/florin/quotedblbase/ellipsis/dagger/daggerdbl + /circumflex/perthousand/Scaron/guilsinglleft/OE/bullet/Zcaron/bullet + /bullet/quoteleft/quoteright/quotedblleft/quotedblright/bullet/endash/emdash + /tilde/trademark/scaron/guilsinglright/oe/bullet/zcaron/Ydieresis + /space/exclamdown/cent/sterling/currency/yen/brokenbar/section + /dieresis/copyright/ordfeminine/guillemotleft/logicalnot/hyphen/registered/macron + /degree/plusminus/twosuperior/threesuperior/acute/mu/paragraph/periodcentered + /cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf/threequarters/questiondown + /Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla + /Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis + /Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply + /Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls + /agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla + /egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis + /eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide + /oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis] +pdfMakeFont +/F8_0 /Times-Bold 1 1 +[ /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quotesingle + /parenleft/parenright/asterisk/plus/comma/hyphen/period/slash + /zero/one/two/three/four/five/six/seven + /eight/nine/colon/semicolon/less/equal/greater/question + /at/A/B/C/D/E/F/G + /H/I/J/K/L/M/N/O + /P/Q/R/S/T/U/V/W + /X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore + /grave/a/b/c/d/e/f/g + /h/i/j/k/l/m/n/o + /p/q/r/s/t/u/v/w + /x/y/z/braceleft/bar/braceright/asciitilde/bullet + /Euro/bullet/quotesinglbase/florin/quotedblbase/ellipsis/dagger/daggerdbl + /circumflex/perthousand/Scaron/guilsinglleft/OE/bullet/Zcaron/bullet + /bullet/quoteleft/quoteright/quotedblleft/quotedblright/bullet/endash/emdash + /tilde/trademark/scaron/guilsinglright/oe/bullet/zcaron/Ydieresis + /space/exclamdown/cent/sterling/currency/yen/brokenbar/section + /dieresis/copyright/ordfeminine/guillemotleft/logicalnot/hyphen/registered/macron + /degree/plusminus/twosuperior/threesuperior/acute/mu/paragraph/periodcentered + /cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf/threequarters/questiondown + /Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla + /Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis + /Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply + /Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls + /agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla + /egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis + /eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide + /oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis] +pdfMakeFont +/F9_0 /Times-BoldItalic 1 1 +[ /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quotesingle + /parenleft/parenright/asterisk/plus/comma/hyphen/period/slash + /zero/one/two/three/four/five/six/seven + /eight/nine/colon/semicolon/less/equal/greater/question + /at/A/B/C/D/E/F/G + /H/I/J/K/L/M/N/O + /P/Q/R/S/T/U/V/W + /X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore + /grave/a/b/c/d/e/f/g + /h/i/j/k/l/m/n/o + /p/q/r/s/t/u/v/w + /x/y/z/braceleft/bar/braceright/asciitilde/bullet + /Euro/bullet/quotesinglbase/florin/quotedblbase/ellipsis/dagger/daggerdbl + /circumflex/perthousand/Scaron/guilsinglleft/OE/bullet/Zcaron/bullet + /bullet/quoteleft/quoteright/quotedblleft/quotedblright/bullet/endash/emdash + /tilde/trademark/scaron/guilsinglright/oe/bullet/zcaron/Ydieresis + /space/exclamdown/cent/sterling/currency/yen/brokenbar/section + /dieresis/copyright/ordfeminine/guillemotleft/logicalnot/hyphen/registered/macron + /degree/plusminus/twosuperior/threesuperior/acute/mu/paragraph/periodcentered + /cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf/threequarters/questiondown + /Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla + /Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis + /Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply + /Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls + /agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla + /egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis + /eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide + /oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis] +pdfMakeFont +/F10_0 /Helvetica 1 1 +[ /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quotesingle + /parenleft/parenright/asterisk/plus/comma/hyphen/period/slash + /zero/one/two/three/four/five/six/seven + /eight/nine/colon/semicolon/less/equal/greater/question + /at/A/B/C/D/E/F/G + /H/I/J/K/L/M/N/O + /P/Q/R/S/T/U/V/W + /X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore + /grave/a/b/c/d/e/f/g + /h/i/j/k/l/m/n/o + /p/q/r/s/t/u/v/w + /x/y/z/braceleft/bar/braceright/asciitilde/bullet + /Euro/bullet/quotesinglbase/florin/quotedblbase/ellipsis/dagger/daggerdbl + /circumflex/perthousand/Scaron/guilsinglleft/OE/bullet/Zcaron/bullet + /bullet/quoteleft/quoteright/quotedblleft/quotedblright/bullet/endash/emdash + /tilde/trademark/scaron/guilsinglright/oe/bullet/zcaron/Ydieresis + /space/exclamdown/cent/sterling/currency/yen/brokenbar/section + /dieresis/copyright/ordfeminine/guillemotleft/logicalnot/hyphen/registered/macron + /degree/plusminus/twosuperior/threesuperior/acute/mu/paragraph/periodcentered + /cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf/threequarters/questiondown + /Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla + /Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis + /Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply + /Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls + /agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla + /egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis + /eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide + /oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis] +pdfMakeFont +/F11_0 /Helvetica-Oblique 1 1 +[ /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quotesingle + /parenleft/parenright/asterisk/plus/comma/hyphen/period/slash + /zero/one/two/three/four/five/six/seven + /eight/nine/colon/semicolon/less/equal/greater/question + /at/A/B/C/D/E/F/G + /H/I/J/K/L/M/N/O + /P/Q/R/S/T/U/V/W + /X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore + /grave/a/b/c/d/e/f/g + /h/i/j/k/l/m/n/o + /p/q/r/s/t/u/v/w + /x/y/z/braceleft/bar/braceright/asciitilde/bullet + /Euro/bullet/quotesinglbase/florin/quotedblbase/ellipsis/dagger/daggerdbl + /circumflex/perthousand/Scaron/guilsinglleft/OE/bullet/Zcaron/bullet + /bullet/quoteleft/quoteright/quotedblleft/quotedblright/bullet/endash/emdash + /tilde/trademark/scaron/guilsinglright/oe/bullet/zcaron/Ydieresis + /space/exclamdown/cent/sterling/currency/yen/brokenbar/section + /dieresis/copyright/ordfeminine/guillemotleft/logicalnot/hyphen/registered/macron + /degree/plusminus/twosuperior/threesuperior/acute/mu/paragraph/periodcentered + /cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf/threequarters/questiondown + /Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla + /Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis + /Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply + /Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls + /agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla + /egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis + /eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide + /oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis] +pdfMakeFont +/F12_0 /Helvetica-Bold 1 1 +[ /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quotesingle + /parenleft/parenright/asterisk/plus/comma/hyphen/period/slash + /zero/one/two/three/four/five/six/seven + /eight/nine/colon/semicolon/less/equal/greater/question + /at/A/B/C/D/E/F/G + /H/I/J/K/L/M/N/O + /P/Q/R/S/T/U/V/W + /X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore + /grave/a/b/c/d/e/f/g + /h/i/j/k/l/m/n/o + /p/q/r/s/t/u/v/w + /x/y/z/braceleft/bar/braceright/asciitilde/bullet + /Euro/bullet/quotesinglbase/florin/quotedblbase/ellipsis/dagger/daggerdbl + /circumflex/perthousand/Scaron/guilsinglleft/OE/bullet/Zcaron/bullet + /bullet/quoteleft/quoteright/quotedblleft/quotedblright/bullet/endash/emdash + /tilde/trademark/scaron/guilsinglright/oe/bullet/zcaron/Ydieresis + /space/exclamdown/cent/sterling/currency/yen/brokenbar/section + /dieresis/copyright/ordfeminine/guillemotleft/logicalnot/hyphen/registered/macron + /degree/plusminus/twosuperior/threesuperior/acute/mu/paragraph/periodcentered + /cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf/threequarters/questiondown + /Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla + /Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis + /Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply + /Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls + /agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla + /egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis + /eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide + /oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis] +pdfMakeFont +/F13_0 /Helvetica-BoldOblique 1 1 +[ /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quotesingle + /parenleft/parenright/asterisk/plus/comma/hyphen/period/slash + /zero/one/two/three/four/five/six/seven + /eight/nine/colon/semicolon/less/equal/greater/question + /at/A/B/C/D/E/F/G + /H/I/J/K/L/M/N/O + /P/Q/R/S/T/U/V/W + /X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore + /grave/a/b/c/d/e/f/g + /h/i/j/k/l/m/n/o + /p/q/r/s/t/u/v/w + /x/y/z/braceleft/bar/braceright/asciitilde/bullet + /Euro/bullet/quotesinglbase/florin/quotedblbase/ellipsis/dagger/daggerdbl + /circumflex/perthousand/Scaron/guilsinglleft/OE/bullet/Zcaron/bullet + /bullet/quoteleft/quoteright/quotedblleft/quotedblright/bullet/endash/emdash + /tilde/trademark/scaron/guilsinglright/oe/bullet/zcaron/Ydieresis + /space/exclamdown/cent/sterling/currency/yen/brokenbar/section + /dieresis/copyright/ordfeminine/guillemotleft/logicalnot/hyphen/registered/macron + /degree/plusminus/twosuperior/threesuperior/acute/mu/paragraph/periodcentered + /cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf/threequarters/questiondown + /Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla + /Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis + /Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply + /Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls + /agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla + /egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis + /eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide + /oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis] +pdfMakeFont +/F14_0 /Courier 1 1 +[ /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quotesingle + /parenleft/parenright/asterisk/plus/comma/hyphen/period/slash + /zero/one/two/three/four/five/six/seven + /eight/nine/colon/semicolon/less/equal/greater/question + /at/A/B/C/D/E/F/G + /H/I/J/K/L/M/N/O + /P/Q/R/S/T/U/V/W + /X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore + /grave/a/b/c/d/e/f/g + /h/i/j/k/l/m/n/o + /p/q/r/s/t/u/v/w + /x/y/z/braceleft/bar/braceright/asciitilde/bullet + /Euro/bullet/quotesinglbase/florin/quotedblbase/ellipsis/dagger/daggerdbl + /circumflex/perthousand/Scaron/guilsinglleft/OE/bullet/Zcaron/bullet + /bullet/quoteleft/quoteright/quotedblleft/quotedblright/bullet/endash/emdash + /tilde/trademark/scaron/guilsinglright/oe/bullet/zcaron/Ydieresis + /space/exclamdown/cent/sterling/currency/yen/brokenbar/section + /dieresis/copyright/ordfeminine/guillemotleft/logicalnot/hyphen/registered/macron + /degree/plusminus/twosuperior/threesuperior/acute/mu/paragraph/periodcentered + /cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf/threequarters/questiondown + /Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla + /Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis + /Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply + /Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls + /agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla + /egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis + /eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide + /oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis] +pdfMakeFont +/F15_0 /Courier-Oblique 1 1 +[ /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quotesingle + /parenleft/parenright/asterisk/plus/comma/hyphen/period/slash + /zero/one/two/three/four/five/six/seven + /eight/nine/colon/semicolon/less/equal/greater/question + /at/A/B/C/D/E/F/G + /H/I/J/K/L/M/N/O + /P/Q/R/S/T/U/V/W + /X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore + /grave/a/b/c/d/e/f/g + /h/i/j/k/l/m/n/o + /p/q/r/s/t/u/v/w + /x/y/z/braceleft/bar/braceright/asciitilde/bullet + /Euro/bullet/quotesinglbase/florin/quotedblbase/ellipsis/dagger/daggerdbl + /circumflex/perthousand/Scaron/guilsinglleft/OE/bullet/Zcaron/bullet + /bullet/quoteleft/quoteright/quotedblleft/quotedblright/bullet/endash/emdash + /tilde/trademark/scaron/guilsinglright/oe/bullet/zcaron/Ydieresis + /space/exclamdown/cent/sterling/currency/yen/brokenbar/section + /dieresis/copyright/ordfeminine/guillemotleft/logicalnot/hyphen/registered/macron + /degree/plusminus/twosuperior/threesuperior/acute/mu/paragraph/periodcentered + /cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf/threequarters/questiondown + /Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla + /Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis + /Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply + /Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls + /agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla + /egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis + /eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide + /oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis] +pdfMakeFont +/F16_0 /Courier-Bold 1 1 +[ /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quotesingle + /parenleft/parenright/asterisk/plus/comma/hyphen/period/slash + /zero/one/two/three/four/five/six/seven + /eight/nine/colon/semicolon/less/equal/greater/question + /at/A/B/C/D/E/F/G + /H/I/J/K/L/M/N/O + /P/Q/R/S/T/U/V/W + /X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore + /grave/a/b/c/d/e/f/g + /h/i/j/k/l/m/n/o + /p/q/r/s/t/u/v/w + /x/y/z/braceleft/bar/braceright/asciitilde/bullet + /Euro/bullet/quotesinglbase/florin/quotedblbase/ellipsis/dagger/daggerdbl + /circumflex/perthousand/Scaron/guilsinglleft/OE/bullet/Zcaron/bullet + /bullet/quoteleft/quoteright/quotedblleft/quotedblright/bullet/endash/emdash + /tilde/trademark/scaron/guilsinglright/oe/bullet/zcaron/Ydieresis + /space/exclamdown/cent/sterling/currency/yen/brokenbar/section + /dieresis/copyright/ordfeminine/guillemotleft/logicalnot/hyphen/registered/macron + /degree/plusminus/twosuperior/threesuperior/acute/mu/paragraph/periodcentered + /cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf/threequarters/questiondown + /Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla + /Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis + /Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply + /Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls + /agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla + /egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis + /eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide + /oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis] +pdfMakeFont +/F17_0 /Courier-BoldOblique 1 1 +[ /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quotesingle + /parenleft/parenright/asterisk/plus/comma/hyphen/period/slash + /zero/one/two/three/four/five/six/seven + /eight/nine/colon/semicolon/less/equal/greater/question + /at/A/B/C/D/E/F/G + /H/I/J/K/L/M/N/O + /P/Q/R/S/T/U/V/W + /X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore + /grave/a/b/c/d/e/f/g + /h/i/j/k/l/m/n/o + /p/q/r/s/t/u/v/w + /x/y/z/braceleft/bar/braceright/asciitilde/bullet + /Euro/bullet/quotesinglbase/florin/quotedblbase/ellipsis/dagger/daggerdbl + /circumflex/perthousand/Scaron/guilsinglleft/OE/bullet/Zcaron/bullet + /bullet/quoteleft/quoteright/quotedblleft/quotedblright/bullet/endash/emdash + /tilde/trademark/scaron/guilsinglright/oe/bullet/zcaron/Ydieresis + /space/exclamdown/cent/sterling/currency/yen/brokenbar/section + /dieresis/copyright/ordfeminine/guillemotleft/logicalnot/hyphen/registered/macron + /degree/plusminus/twosuperior/threesuperior/acute/mu/paragraph/periodcentered + /cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf/threequarters/questiondown + /Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla + /Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis + /Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply + /Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls + /agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla + /egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis + /eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide + /oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis] +pdfMakeFont +/F18_0 /Symbol 1 1 +[ /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /space/exclam/universal/numbersign/existential/percent/ampersand/suchthat + /parenleft/parenright/asteriskmath/plus/comma/minus/period/slash + /zero/one/two/three/four/five/six/seven + /eight/nine/colon/semicolon/less/equal/greater/question + /congruent/Alpha/Beta/Chi/Delta/Epsilon/Phi/Gamma + /Eta/Iota/theta1/Kappa/Lambda/Mu/Nu/Omicron + /Pi/Theta/Rho/Sigma/Tau/Upsilon/sigma1/Omega + /Xi/Psi/Zeta/bracketleft/therefore/bracketright/perpendicular/underscore + /radicalex/alpha/beta/chi/delta/epsilon/phi/gamma + /eta/iota/phi1/kappa/lambda/mu/nu/omicron + /pi/theta/rho/sigma/tau/upsilon/omega1/omega + /xi/psi/zeta/braceleft/bar/braceright/similar/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/Upsilon1/minute/lessequal/fraction/infinity/florin/club + /diamond/heart/spade/arrowboth/arrowleft/arrowup/arrowright/arrowdown + /degree/plusminus/second/greaterequal/multiply/proportional/partialdiff/bullet + /divide/notequal/equivalence/approxequal/ellipsis/arrowvertex/arrowhorizex/carriagereturn + /aleph/Ifraktur/Rfraktur/weierstrass/circlemultiply/circleplus/emptyset/intersection + /union/propersuperset/reflexsuperset/notsubset/propersubset/reflexsubset/element/notelement + /angle/gradient/registerserif/copyrightserif/trademarkserif/product/radical/dotmath + /logicalnot/logicaland/logicalor/arrowdblboth/arrowdblleft/arrowdblup/arrowdblright/arrowdbldown + /lozenge/angleleft/registersans/copyrightsans/trademarksans/summation/parenlefttp/parenleftex + /parenleftbt/bracketlefttp/bracketleftex/bracketleftbt/bracelefttp/braceleftmid/braceleftbt/braceex + /.notdef/angleright/integral/integraltp/integralex/integralbt/parenrighttp/parenrightex + /parenrightbt/bracketrighttp/bracketrightex/bracketrightbt/bracerighttp/bracerightmid/bracerightbt/.notdef] +pdfMakeFont +/F19_0 /Times-Roman 1 1 +[ /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /space/exclam/quotedbl/numbersign/dollar/percent/ampersand/quotesingle + /parenleft/parenright/asterisk/plus/comma/hyphen/period/slash + /zero/one/two/three/four/five/six/seven + /eight/nine/colon/semicolon/less/equal/greater/question + /at/A/B/C/D/E/F/G + /H/I/J/K/L/M/N/O + /P/Q/R/S/T/U/V/W + /X/Y/Z/bracketleft/backslash/bracketright/asciicircum/underscore + /grave/a/b/c/d/e/f/g + /h/i/j/k/l/m/n/o + /p/q/r/s/t/u/v/w + /x/y/z/braceleft/bar/braceright/asciitilde/bullet + /Euro/bullet/quotesinglbase/florin/quotedblbase/ellipsis/dagger/daggerdbl + /circumflex/perthousand/Scaron/guilsinglleft/OE/bullet/Zcaron/bullet + /bullet/quoteleft/quoteright/quotedblleft/quotedblright/bullet/endash/emdash + /tilde/trademark/scaron/guilsinglright/oe/bullet/zcaron/Ydieresis + /space/exclamdown/cent/sterling/currency/yen/brokenbar/section + /dieresis/copyright/ordfeminine/guillemotleft/logicalnot/hyphen/registered/macron + /degree/plusminus/twosuperior/threesuperior/acute/mu/paragraph/periodcentered + /cedilla/onesuperior/ordmasculine/guillemotright/onequarter/onehalf/threequarters/questiondown + /Agrave/Aacute/Acircumflex/Atilde/Adieresis/Aring/AE/Ccedilla + /Egrave/Eacute/Ecircumflex/Edieresis/Igrave/Iacute/Icircumflex/Idieresis + /Eth/Ntilde/Ograve/Oacute/Ocircumflex/Otilde/Odieresis/multiply + /Oslash/Ugrave/Uacute/Ucircumflex/Udieresis/Yacute/Thorn/germandbls + /agrave/aacute/acircumflex/atilde/adieresis/aring/ae/ccedilla + /egrave/eacute/ecircumflex/edieresis/igrave/iacute/icircumflex/idieresis + /eth/ntilde/ograve/oacute/ocircumflex/otilde/odieresis/divide + /oslash/ugrave/uacute/ucircumflex/udieresis/yacute/thorn/ydieresis] +pdfMakeFont +/F20_0 /ZapfDingbats 1 1 +[ /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /space/a1/a2/a202/a3/a4/a5/a119 + /a118/a117/a11/a12/a13/a14/a15/a16 + /a105/a17/a18/a19/a20/a21/a22/a23 + /a24/a25/a26/a27/a28/a6/a7/a8 + /a9/a10/a29/a30/a31/a32/a33/a34 + /a35/a36/a37/a38/a39/a40/a41/a42 + /a43/a44/a45/a46/a47/a48/a49/a50 + /a51/a52/a53/a54/a55/a56/a57/a58 + /a59/a60/a61/a62/a63/a64/a65/a66 + /a67/a68/a69/a70/a71/a72/a73/a74 + /a203/a75/a204/a76/a77/a78/a79/a81 + /a82/a83/a84/a97/a98/a99/a100/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/a101/a102/a103/a104/a106/a107/a108 + /a112/a111/a110/a109/a120/a121/a122/a123 + /a124/a125/a126/a127/a128/a129/a130/a131 + /a132/a133/a134/a135/a136/a137/a138/a139 + /a140/a141/a142/a143/a144/a145/a146/a147 + /a148/a149/a150/a151/a152/a153/a154/a155 + /a156/a157/a158/a159/a160/a161/a163/a164 + /a196/a165/a192/a166/a167/a168/a169/a170 + /a171/a172/a173/a162/a174/a175/a176/a177 + /a178/a179/a193/a180/a199/a181/a200/a182 + /.notdef/a201/a183/a184/a197/a185/a194/a198 + /a186/a195/a187/a188/a189/a190/a191/.notdef] +pdfMakeFont +/F21_0 /Symbol 1 1 +[ /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /space/exclam/universal/numbersign/existential/percent/ampersand/suchthat + /parenleft/parenright/asteriskmath/plus/comma/minus/period/slash + /zero/one/two/three/four/five/six/seven + /eight/nine/colon/semicolon/less/equal/greater/question + /congruent/Alpha/Beta/Chi/Delta/Epsilon/Phi/Gamma + /Eta/Iota/theta1/Kappa/Lambda/Mu/Nu/Omicron + /Pi/Theta/Rho/Sigma/Tau/Upsilon/sigma1/Omega + /Xi/Psi/Zeta/bracketleft/therefore/bracketright/perpendicular/underscore + /radicalex/alpha/beta/chi/delta/epsilon/phi/gamma + /eta/iota/phi1/kappa/lambda/mu/nu/omicron + /pi/theta/rho/sigma/tau/upsilon/omega1/omega + /xi/psi/zeta/braceleft/bar/braceright/similar/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef/.notdef + /.notdef/Upsilon1/minute/lessequal/fraction/infinity/florin/club + /diamond/heart/spade/arrowboth/arrowleft/arrowup/arrowright/arrowdown + /degree/plusminus/second/greaterequal/multiply/proportional/partialdiff/bullet + /divide/notequal/equivalence/approxequal/ellipsis/arrowvertex/arrowhorizex/carriagereturn + /aleph/Ifraktur/Rfraktur/weierstrass/circlemultiply/circleplus/emptyset/intersection + /union/propersuperset/reflexsuperset/notsubset/propersubset/reflexsubset/element/notelement + /angle/gradient/registerserif/copyrightserif/trademarkserif/product/radical/dotmath + /logicalnot/logicaland/logicalor/arrowdblboth/arrowdblleft/arrowdblup/arrowdblright/arrowdbldown + /lozenge/angleleft/registersans/copyrightsans/trademarksans/summation/parenlefttp/parenleftex + /parenleftbt/bracketlefttp/bracketleftex/bracketleftbt/bracelefttp/braceleftmid/braceleftbt/braceex + /.notdef/angleright/integral/integraltp/integralex/integralbt/parenrighttp/parenrightex + /parenrightbt/bracketrighttp/bracketrightex/bracketrightbt/bracerighttp/bracerightmid/bracerightbt/.notdef] +pdfMakeFont +%%EndSetup +pdfStartPage +270 rotate +-569 -255 translate +[] 0 d +1 i +0 j +0 J +10 M +1 w +/DeviceGray {} cs +[0] sc +/DeviceGray {} CS +[0] SC +false op +false OP +{} settransfer +q +[1 0 0 1 569 255] cm +[0 1 -1 0 0 0] cm +1.5 w +/DeviceRGB {} CS +[1 1 1] SC +/DeviceRGB {} cs +[1 1 1] sc +q +0.002 w +[] 0 d +0 0 566.929 549.168 re +f* +0 0 566.929 549.168 re +S +Q +q +0.002 w +[] 0 d +0.0057 274.59 283.453 274.573 re +f* +0.0057 274.59 283.453 274.573 re +S +Q +q +0.002 w +[] 0 d +56.6963 274.592 226.76 260.842 re +f* +56.6963 274.592 226.76 260.842 re +S +Q +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +56.6963 274.592 226.76 260.842 re +S +0.75 w +/DeviceRGB {} CS +[0.8 0.8 0.8] SC +/DeviceRGB {} cs +[0.8 0.8 0.8] sc +55.7133 300.824 m +55.7133 304.613 61.3968 304.613 61.3968 300.824 c +61.3968 297.035 55.7133 297.035 55.7133 300.824 c +h +f +1.5 w +0.75 w +59.4306 301.873 m +59.4306 305.662 65.1141 305.662 65.1141 301.873 c +65.1141 298.084 59.4306 298.084 59.4306 301.873 c +h +f +1.5 w +0.75 w +63.148 303.074 m +63.148 306.863 68.8315 306.863 68.8315 303.074 c +68.8315 299.285 63.148 299.285 63.148 303.074 c +h +f +1.5 w +0.75 w +66.8654 304.555 m +66.8654 308.344 72.5489 308.344 72.5489 304.555 c +72.5489 300.766 66.8654 300.766 66.8654 304.555 c +h +f +1.5 w +0.75 w +70.5827 306.276 m +70.5827 310.065 76.2662 310.065 76.2662 306.276 c +76.2662 302.487 70.5827 302.487 70.5827 306.276 c +h +f +1.5 w +0.75 w +74.3001 307.673 m +74.3001 311.462 79.9836 311.462 79.9836 307.673 c +79.9836 303.884 74.3001 303.884 74.3001 307.673 c +h +f +1.5 w +0.75 w +78.0175 309.555 m +78.0175 313.344 83.701 313.344 83.701 309.555 c +83.701 305.766 78.0175 305.766 78.0175 309.555 c +h +f +1.5 w +0.75 w +81.7349 311.708 m +81.7349 315.497 87.4184 315.497 87.4184 311.708 c +87.4184 307.919 81.7349 307.919 81.7349 311.708 c +h +f +1.5 w +0.75 w +85.4522 314.556 m +85.4522 318.345 91.1357 318.345 91.1357 314.556 c +91.1357 310.767 85.4522 310.767 85.4522 314.556 c +h +f +1.5 w +0.75 w +89.1696 316.606 m +89.1696 320.395 94.8531 320.395 94.8531 316.606 c +94.8531 312.817 89.1696 312.817 89.1696 316.606 c +h +f +1.5 w +0.75 w +92.887 319.291 m +92.887 323.08 98.5705 323.08 98.5705 319.291 c +98.5705 315.502 92.887 315.502 92.887 319.291 c +h +f +1.5 w +0.75 w +96.6044 322.035 m +96.6044 325.824 102.288 325.824 102.288 322.035 c +102.288 318.246 96.6044 318.246 96.6044 322.035 c +h +f +1.5 w +0.75 w +100.322 324.199 m +100.322 327.988 106.005 327.988 106.005 324.199 c +106.005 320.41 100.322 320.41 100.322 324.199 c +h +f +1.5 w +0.75 w +104.039 327.49 m +104.039 331.279 109.723 331.279 109.723 327.49 c +109.723 323.701 104.039 323.701 104.039 327.49 c +h +f +1.5 w +0.75 w +107.756 329.843 m +107.756 333.632 113.44 333.632 113.44 329.843 c +113.44 326.054 107.756 326.054 107.756 329.843 c +h +f +1.5 w +0.75 w +111.474 332.218 m +111.474 336.007 117.157 336.007 117.157 332.218 c +117.157 328.429 111.474 328.429 111.474 332.218 c +h +f +1.5 w +0.75 w +115.191 335.789 m +115.191 339.578 120.875 339.578 120.875 335.789 c +120.875 332 115.191 332 115.191 335.789 c +h +f +1.5 w +0.75 w +118.909 337.438 m +118.909 341.227 124.592 341.227 124.592 337.438 c +124.592 333.649 118.909 333.649 118.909 337.438 c +h +f +1.5 w +0.75 w +122.626 339.802 m +122.626 343.591 128.309 343.591 128.309 339.802 c +128.309 336.013 122.626 336.013 122.626 339.802 c +h +f +1.5 w +0.75 w +126.343 342.82 m +126.343 346.609 132.027 346.609 132.027 342.82 c +132.027 339.031 126.343 339.031 126.343 342.82 c +h +f +1.5 w +0.75 w +130.061 345.991 m +130.061 349.78 135.744 349.78 135.744 345.991 c +135.744 342.202 130.061 342.202 130.061 345.991 c +h +f +1.5 w +0.75 w +133.778 347.943 m +133.778 351.732 139.462 351.732 139.462 347.943 c +139.462 344.154 133.778 344.154 133.778 347.943 c +h +f +1.5 w +0.75 w +137.495 348.548 m +137.495 352.337 143.179 352.337 143.179 348.548 c +143.179 344.759 137.495 344.759 137.495 348.548 c +h +f +1.5 w +0.75 w +141.213 351.376 m +141.213 355.165 146.896 355.165 146.896 351.376 c +146.896 347.587 141.213 347.587 141.213 351.376 c +h +f +1.5 w +0.75 w +144.93 350.838 m +144.93 354.627 150.614 354.627 150.614 350.838 c +150.614 347.049 144.93 347.049 144.93 350.838 c +h +f +1.5 w +0.75 w +148.648 350.647 m +148.648 354.436 154.331 354.436 154.331 350.647 c +154.331 346.858 148.648 346.858 148.648 350.647 c +h +f +1.5 w +0.75 w +152.365 351.09 m +152.365 354.879 158.048 354.879 158.048 351.09 c +158.048 347.301 152.365 347.301 152.365 351.09 c +h +f +1.5 w +0.75 w +156.082 351.469 m +156.082 355.258 161.766 355.258 161.766 351.469 c +161.766 347.68 156.082 347.68 156.082 351.469 c +h +f +1.5 w +0.75 w +159.8 349.409 m +159.8 353.198 165.483 353.198 165.483 349.409 c +165.483 345.62 159.8 345.62 159.8 349.409 c +h +f +1.5 w +0.75 w +163.517 348.376 m +163.517 352.165 169.201 352.165 169.201 348.376 c +169.201 344.587 163.517 344.587 163.517 348.376 c +h +f +1.5 w +0.75 w +167.234 348.573 m +167.234 352.362 172.918 352.362 172.918 348.573 c +172.918 344.784 167.234 344.784 167.234 348.573 c +h +f +1.5 w +0.75 w +170.952 346.598 m +170.952 350.387 176.635 350.387 176.635 346.598 c +176.635 342.809 170.952 342.809 170.952 346.598 c +h +f +1.5 w +0.75 w +174.669 345.159 m +174.669 348.948 180.353 348.948 180.353 345.159 c +180.353 341.37 174.669 341.37 174.669 345.159 c +h +f +1.5 w +0.75 w +178.387 339.45 m +178.387 343.239 184.07 343.239 184.07 339.45 c +184.07 335.661 178.387 335.661 178.387 339.45 c +h +f +1.5 w +0.75 w +182.104 339.829 m +182.104 343.618 187.787 343.618 187.787 339.829 c +187.787 336.04 182.104 336.04 182.104 339.829 c +h +f +1.5 w +0.75 w +185.821 338.871 m +185.821 342.66 191.505 342.66 191.505 338.871 c +191.505 335.082 185.821 335.082 185.821 338.871 c +h +f +1.5 w +0.75 w +189.539 336.401 m +189.539 340.19 195.222 340.19 195.222 336.401 c +195.222 332.612 189.539 332.612 189.539 336.401 c +h +f +1.5 w +0.75 w +193.256 333.569 m +193.256 337.358 198.94 337.358 198.94 333.569 c +198.94 329.78 193.256 329.78 193.256 333.569 c +h +f +1.5 w +0.75 w +196.973 331.813 m +196.973 335.602 202.657 335.602 202.657 331.813 c +202.657 328.024 196.973 328.024 196.973 331.813 c +h +f +1.5 w +0.75 w +200.691 329.162 m +200.691 332.951 206.374 332.951 206.374 329.162 c +206.374 325.373 200.691 325.373 200.691 329.162 c +h +f +1.5 w +0.75 w +204.408 324.889 m +204.408 328.678 210.092 328.678 210.092 324.889 c +210.092 321.1 204.408 321.1 204.408 324.889 c +h +f +1.5 w +0.75 w +208.126 323.445 m +208.126 327.234 213.809 327.234 213.809 323.445 c +213.809 319.656 208.126 319.656 208.126 323.445 c +h +f +1.5 w +0.75 w +211.843 320.802 m +211.843 324.591 217.526 324.591 217.526 320.802 c +217.526 317.013 211.843 317.013 211.843 320.802 c +h +f +1.5 w +0.75 w +215.56 318.583 m +215.56 322.372 221.244 322.372 221.244 318.583 c +221.244 314.794 215.56 314.794 215.56 318.583 c +h +f +1.5 w +0.75 w +219.278 315.818 m +219.278 319.607 224.961 319.607 224.961 315.818 c +224.961 312.029 219.278 312.029 219.278 315.818 c +h +f +1.5 w +0.75 w +222.995 313.229 m +222.995 317.018 228.679 317.018 228.679 313.229 c +228.679 309.44 222.995 309.44 222.995 313.229 c +h +f +1.5 w +0.75 w +226.712 310.628 m +226.712 314.417 232.396 314.417 232.396 310.628 c +232.396 306.839 226.712 306.839 226.712 310.628 c +h +f +1.5 w +0.75 w +230.43 309.071 m +230.43 312.86 236.113 312.86 236.113 309.071 c +236.113 305.282 230.43 305.282 230.43 309.071 c +h +f +1.5 w +0.75 w +234.147 307.085 m +234.147 310.874 239.831 310.874 239.831 307.085 c +239.831 303.296 234.147 303.296 234.147 307.085 c +h +f +1.5 w +0.75 w +237.865 305.488 m +237.865 309.277 243.548 309.277 243.548 305.488 c +243.548 301.699 237.865 301.699 237.865 305.488 c +h +f +1.5 w +0.75 w +241.582 303.453 m +241.582 307.242 247.265 307.242 247.265 303.453 c +247.265 299.664 241.582 299.664 241.582 303.453 c +h +f +1.5 w +0.75 w +245.299 301.711 m +245.299 305.5 250.983 305.5 250.983 301.711 c +250.983 297.922 245.299 297.922 245.299 301.711 c +h +f +1.5 w +0.75 w +249.017 300.63 m +249.017 304.419 254.7 304.419 254.7 300.63 c +254.7 296.841 249.017 296.841 249.017 300.63 c +h +f +1.5 w +0.75 w +252.734 299.304 m +252.734 303.093 258.418 303.093 258.418 299.304 c +258.418 295.515 252.734 295.515 252.734 299.304 c +h +f +1.5 w +0.75 w +256.451 298.27 m +256.451 302.059 262.135 302.059 262.135 298.27 c +262.135 294.481 256.451 294.481 256.451 298.27 c +h +f +1.5 w +0.75 w +260.169 297.213 m +260.169 301.002 265.852 301.002 265.852 297.213 c +265.852 293.424 260.169 293.424 260.169 297.213 c +h +f +1.5 w +0.75 w +263.886 296.313 m +263.886 300.102 269.57 300.102 269.57 296.313 c +269.57 292.524 263.886 292.524 263.886 296.313 c +h +f +1.5 w +0.75 w +267.604 295.609 m +267.604 299.398 273.287 299.398 273.287 295.609 c +273.287 291.82 267.604 291.82 267.604 295.609 c +h +f +1.5 w +0.75 w +271.321 295.005 m +271.321 298.794 277.004 298.794 277.004 295.005 c +277.004 291.216 271.321 291.216 271.321 295.005 c +h +f +1.5 w +0.75 w +275.038 294.073 m +275.038 297.862 280.722 297.862 280.722 294.073 c +280.722 290.284 275.038 290.284 275.038 294.073 c +h +f +1.5 w +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +56.6963 274.592 m +283.456 274.592 l +S +118.033 281.182 m +118.033 274.592 l +S +136.62 277.887 m +136.62 274.592 l +S +155.207 277.887 m +155.207 274.592 l +S +173.794 277.887 m +173.794 274.592 l +S +192.38 281.182 m +192.38 274.592 l +S +210.967 277.887 m +210.967 274.592 l +S +229.554 277.887 m +229.554 274.592 l +S +248.141 277.887 m +248.141 274.592 l +S +266.728 281.182 m +266.728 274.592 l +S +118.033 281.182 m +118.033 274.592 l +S +99.4461 277.887 m +99.4461 274.592 l +S +80.8592 277.887 m +80.8592 274.592 l +S +62.2724 277.887 m +62.2724 274.592 l +S +266.728 281.182 m +266.728 274.592 l +S +q +0.0057 274.59 283.453 274.573 re +W +[1 0 0 1 111.539 260.02] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 12.8039 Tf +(20) 12.8039 Tj +Q +q +0.0057 274.59 283.453 274.573 re +W +[1 0 0 1 185.424 260.02] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 12.8039 Tf +(40) 12.8039 Tj +Q +q +0.0057 274.59 283.453 274.573 re +W +[1 0 0 1 260.02 260.02] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 12.8039 Tf +(60) 12.8039 Tj +Q +56.6963 535.434 m +283.456 535.434 l +S +118.033 528.844 m +118.033 535.434 l +S +136.62 532.139 m +136.62 535.434 l +S +155.207 532.139 m +155.207 535.434 l +S +173.794 532.139 m +173.794 535.434 l +S +192.38 528.844 m +192.38 535.434 l +S +210.967 532.139 m +210.967 535.434 l +S +229.554 532.139 m +229.554 535.434 l +S +248.141 532.139 m +248.141 535.434 l +S +266.728 528.844 m +266.728 535.434 l +S +118.033 528.844 m +118.033 535.434 l +S +99.4461 532.139 m +99.4461 535.434 l +S +80.8592 532.139 m +80.8592 535.434 l +S +62.2724 532.139 m +62.2724 535.434 l +S +266.728 528.844 m +266.728 535.434 l +S +56.6963 274.592 m +56.6963 535.434 l +S +q +0.0057 274.59 283.453 274.573 re +W +[0 1 -1 0 19.8923 529.986] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 15.6492 Tf +(s) 6.0875 Tj +Q +q +0.0057 274.59 283.453 274.573 re +W +[0 1 -1 0 19.8923 520.751] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F18_0 15.6492 Tf +(m) 9.0139 Tj +Q +q +0.0057 274.59 283.453 274.573 re +W +[0 1 -1 0 19.1818 456.811] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 15.6492 Tf +( / a.u./312) 64.3495 Tj +Q +q +0.0057 274.59 283.453 274.573 re +W +[0 1 -1 0 23.4444 434.788] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 9.9586 Tf +(BPM) 22.128 Tj +Q +q +0.0057 274.59 283.453 274.573 re +W +[0 1 -1 0 19.1818 423.421] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 15.6492 Tf +(A) 11.2987 Tj +Q +64.7747 289.936 m +56.6963 289.936 l +S +60.7355 297.608 m +56.6963 297.608 l +S +60.7355 305.28 m +56.6963 305.28 l +S +60.7355 312.951 m +56.6963 312.951 l +S +60.7355 320.623 m +56.6963 320.623 l +S +64.7747 328.295 m +56.6963 328.295 l +S +60.7355 335.967 m +56.6963 335.967 l +S +60.7355 343.639 m +56.6963 343.639 l +S +60.7355 351.31 m +56.6963 351.31 l +S +60.7355 358.982 m +56.6963 358.982 l +S +64.7747 366.654 m +56.6963 366.654 l +S +60.7355 374.326 m +56.6963 374.326 l +S +60.7355 381.998 m +56.6963 381.998 l +S +60.7355 389.67 m +56.6963 389.67 l +S +60.7355 397.341 m +56.6963 397.341 l +S +64.7747 405.013 m +56.6963 405.013 l +S +60.7355 412.685 m +56.6963 412.685 l +S +60.7355 420.357 m +56.6963 420.357 l +S +60.7355 428.029 m +56.6963 428.029 l +S +60.7355 435.7 m +56.6963 435.7 l +S +64.7747 443.372 m +56.6963 443.372 l +S +60.7355 451.044 m +56.6963 451.044 l +S +60.7355 458.716 m +56.6963 458.716 l +S +60.7355 466.388 m +56.6963 466.388 l +S +60.7355 474.06 m +56.6963 474.06 l +S +64.7747 481.731 m +56.6963 481.731 l +S +60.7355 489.403 m +56.6963 489.403 l +S +60.7355 497.075 m +56.6963 497.075 l +S +60.7355 504.747 m +56.6963 504.747 l +S +60.7355 512.419 m +56.6963 512.419 l +S +64.7747 520.09 m +56.6963 520.09 l +S +64.7747 289.936 m +56.6963 289.936 l +S +60.7355 282.264 m +56.6963 282.264 l +S +60.7355 274.592 m +56.6963 274.592 l +S +64.7747 520.09 m +56.6963 520.09 l +S +60.7355 527.762 m +56.6963 527.762 l +S +60.7355 535.434 m +56.6963 535.434 l +S +q +0.0057 274.59 283.453 274.573 re +W +[1 0 0 1 48.3097 285.596] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 12.8039 Tf +(0) 6.402 Tj +Q +q +0.0057 274.59 283.453 274.573 re +W +[1 0 0 1 35.5219 323.96] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 12.8039 Tf +(500) 19.2059 Tj +Q +q +0.0057 274.59 283.453 274.573 re +W +[1 0 0 1 29.1279 362.323] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 12.8039 Tf +(1000) 25.6078 Tj +Q +q +0.0057 274.59 283.453 274.573 re +W +[1 0 0 1 29.1279 400.687] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 12.8039 Tf +(1500) 25.6078 Tj +Q +q +0.0057 274.59 283.453 274.573 re +W +[1 0 0 1 29.1279 439.05] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 12.8039 Tf +(2000) 25.6078 Tj +Q +q +0.0057 274.59 283.453 274.573 re +W +[1 0 0 1 29.1279 477.414] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 12.8039 Tf +(2500) 25.6078 Tj +Q +q +0.0057 274.59 283.453 274.573 re +W +[1 0 0 1 29.1279 515.778] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 12.8039 Tf +(3000) 25.6078 Tj +Q +283.456 274.592 m +283.456 535.434 l +S +275.378 289.936 m +283.456 289.936 l +S +279.417 297.608 m +283.456 297.608 l +S +279.417 305.28 m +283.456 305.28 l +S +279.417 312.951 m +283.456 312.951 l +S +279.417 320.623 m +283.456 320.623 l +S +275.378 328.295 m +283.456 328.295 l +S +279.417 335.967 m +283.456 335.967 l +S +279.417 343.639 m +283.456 343.639 l +S +279.417 351.31 m +283.456 351.31 l +S +279.417 358.982 m +283.456 358.982 l +S +275.378 366.654 m +283.456 366.654 l +S +279.417 374.326 m +283.456 374.326 l +S +279.417 381.998 m +283.456 381.998 l +S +279.417 389.67 m +283.456 389.67 l +S +279.417 397.341 m +283.456 397.341 l +S +275.378 405.013 m +283.456 405.013 l +S +279.417 412.685 m +283.456 412.685 l +S +279.417 420.357 m +283.456 420.357 l +S +279.417 428.029 m +283.456 428.029 l +S +279.417 435.7 m +283.456 435.7 l +S +275.378 443.372 m +283.456 443.372 l +S +279.417 451.044 m +283.456 451.044 l +S +279.417 458.716 m +283.456 458.716 l +S +279.417 466.388 m +283.456 466.388 l +S +279.417 474.06 m +283.456 474.06 l +S +275.378 481.731 m +283.456 481.731 l +S +279.417 489.403 m +283.456 489.403 l +S +279.417 497.075 m +283.456 497.075 l +S +279.417 504.747 m +283.456 504.747 l +S +279.417 512.419 m +283.456 512.419 l +S +275.378 520.09 m +283.456 520.09 l +S +275.378 289.936 m +283.456 289.936 l +S +279.417 282.264 m +283.456 282.264 l +S +279.417 274.592 m +283.456 274.592 l +S +275.378 520.09 m +283.456 520.09 l +S +279.417 527.762 m +283.456 527.762 l +S +279.417 535.434 m +283.456 535.434 l +S +0.75 w +55.7133 290.227 m +55.7133 294.016 61.3968 294.016 61.3968 290.227 c +61.3968 286.438 55.7133 286.438 55.7133 290.227 c +h +f +1.5 w +0.75 w +59.4306 290.255 m +59.4306 294.044 65.1141 294.044 65.1141 290.255 c +65.1141 286.466 59.4306 286.466 59.4306 290.255 c +h +f +1.5 w +0.75 w +63.148 290.292 m +63.148 294.081 68.8315 294.081 68.8315 290.292 c +68.8315 286.503 63.148 286.503 63.148 290.292 c +h +f +1.5 w +0.75 w +66.8654 290.347 m +66.8654 294.136 72.5489 294.136 72.5489 290.347 c +72.5489 286.558 66.8654 286.558 66.8654 290.347 c +h +f +1.5 w +0.75 w +70.5827 290.414 m +70.5827 294.203 76.2662 294.203 76.2662 290.414 c +76.2662 286.625 70.5827 286.625 70.5827 290.414 c +h +f +1.5 w +0.75 w +74.3001 290.485 m +74.3001 294.274 79.9836 294.274 79.9836 290.485 c +79.9836 286.696 74.3001 286.696 74.3001 290.485 c +h +f +1.5 w +0.75 w +78.0175 290.59 m +78.0175 294.379 83.701 294.379 83.701 290.59 c +83.701 286.801 78.0175 286.801 78.0175 290.59 c +h +f +1.5 w +0.75 w +81.7349 290.721 m +81.7349 294.51 87.4184 294.51 87.4184 290.721 c +87.4184 286.932 81.7349 286.932 81.7349 290.721 c +h +f +1.5 w +0.75 w +85.4522 290.94 m +85.4522 294.729 91.1357 294.729 91.1357 290.94 c +91.1357 287.151 85.4522 287.151 85.4522 290.94 c +h +f +1.5 w +0.75 w +89.1696 291.185 m +89.1696 294.974 94.8531 294.974 94.8531 291.185 c +94.8531 287.396 89.1696 287.396 89.1696 291.185 c +h +f +1.5 w +0.75 w +92.887 291.532 m +92.887 295.321 98.5705 295.321 98.5705 291.532 c +98.5705 287.743 92.887 287.743 92.887 291.532 c +h +f +1.5 w +0.75 w +96.6044 291.998 m +96.6044 295.787 102.288 295.787 102.288 291.998 c +102.288 288.209 96.6044 288.209 96.6044 291.998 c +h +f +1.5 w +0.75 w +100.322 292.601 m +100.322 296.39 106.005 296.39 106.005 292.601 c +106.005 288.812 100.322 288.812 100.322 292.601 c +h +f +1.5 w +0.75 w +104.039 293.542 m +104.039 297.331 109.723 297.331 109.723 293.542 c +109.723 289.753 104.039 289.753 104.039 293.542 c +h +f +1.5 w +0.75 w +107.756 294.769 m +107.756 298.558 113.44 298.558 113.44 294.769 c +113.44 290.98 107.756 290.98 107.756 294.769 c +h +f +1.5 w +0.75 w +111.474 296.49 m +111.474 300.279 117.157 300.279 117.157 296.49 c +117.157 292.701 111.474 292.701 111.474 296.49 c +h +f +1.5 w +0.75 w +115.191 299.126 m +115.191 302.915 120.875 302.915 120.875 299.126 c +120.875 295.337 115.191 295.337 115.191 299.126 c +h +f +1.5 w +0.75 w +118.909 302.351 m +118.909 306.14 124.592 306.14 124.592 302.351 c +124.592 298.562 118.909 298.562 118.909 302.351 c +h +f +1.5 w +0.75 w +122.626 306.845 m +122.626 310.634 128.309 310.634 128.309 306.845 c +128.309 303.056 122.626 303.056 122.626 306.845 c +h +f +1.5 w +0.75 w +126.343 312.946 m +126.343 316.735 132.027 316.735 132.027 312.946 c +132.027 309.157 126.343 309.157 126.343 312.946 c +h +f +1.5 w +0.75 w +130.061 320.761 m +130.061 324.55 135.744 324.55 135.744 320.761 c +135.744 316.972 130.061 316.972 130.061 320.761 c +h +f +1.5 w +0.75 w +133.778 329.393 m +133.778 333.182 139.462 333.182 139.462 329.393 c +139.462 325.604 133.778 325.604 133.778 329.393 c +h +f +1.5 w +0.75 w +137.495 337.873 m +137.495 341.662 143.179 341.662 143.179 337.873 c +143.179 334.084 137.495 334.084 137.495 337.873 c +h +f +1.5 w +0.75 w +141.213 348.46 m +141.213 352.249 146.896 352.249 146.896 348.46 c +146.896 344.671 141.213 344.671 141.213 348.46 c +h +f +1.5 w +0.75 w +144.93 355.361 m +144.93 359.15 150.614 359.15 150.614 355.361 c +150.614 351.572 144.93 351.572 144.93 355.361 c +h +f +1.5 w +0.75 w +148.648 360.826 m +148.648 364.615 154.331 364.615 154.331 360.826 c +154.331 357.037 148.648 357.037 148.648 360.826 c +h +f +1.5 w +0.75 w +152.365 364.74 m +152.365 368.529 158.048 368.529 158.048 364.74 c +158.048 360.951 152.365 360.951 152.365 364.74 c +h +f +1.5 w +0.75 w +156.082 366.008 m +156.082 369.797 161.766 369.797 161.766 366.008 c +161.766 362.219 156.082 362.219 156.082 366.008 c +h +f +1.5 w +0.75 w +159.8 361.47 m +159.8 365.259 165.483 365.259 165.483 361.47 c +165.483 357.681 159.8 357.681 159.8 361.47 c +h +f +1.5 w +0.75 w +163.517 355.905 m +163.517 359.694 169.201 359.694 169.201 355.905 c +169.201 352.116 163.517 352.116 163.517 355.905 c +h +f +1.5 w +0.75 w +167.234 349.801 m +167.234 353.59 172.918 353.59 172.918 349.801 c +172.918 346.012 167.234 346.012 167.234 349.801 c +h +f +1.5 w +0.75 w +170.952 340.679 m +170.952 344.468 176.635 344.468 176.635 340.679 c +176.635 336.89 170.952 336.89 170.952 340.679 c +h +f +1.5 w +0.75 w +174.669 331.887 m +174.669 335.676 180.353 335.676 180.353 331.887 c +180.353 328.098 174.669 328.098 174.669 331.887 c +h +f +1.5 w +0.75 w +178.387 320.914 m +178.387 324.703 184.07 324.703 184.07 320.914 c +184.07 317.125 178.387 317.125 178.387 320.914 c +h +f +1.5 w +0.75 w +182.104 315.071 m +182.104 318.86 187.787 318.86 187.787 315.071 c +187.787 311.282 182.104 311.282 182.104 315.071 c +h +f +1.5 w +0.75 w +185.821 309.45 m +185.821 313.239 191.505 313.239 191.505 309.45 c +191.505 305.661 185.821 305.661 185.821 309.45 c +h +f +1.5 w +0.75 w +189.539 304.372 m +189.539 308.161 195.222 308.161 195.222 304.372 c +195.222 300.583 189.539 300.583 189.539 304.372 c +h +f +1.5 w +0.75 w +193.256 300.387 m +193.256 304.176 198.94 304.176 198.94 300.387 c +198.94 296.598 193.256 296.598 193.256 300.387 c +h +f +1.5 w +0.75 w +196.973 297.669 m +196.973 301.458 202.657 301.458 202.657 297.669 c +202.657 293.88 196.973 293.88 196.973 297.669 c +h +f +1.5 w +0.75 w +200.691 295.53 m +200.691 299.319 206.374 299.319 206.374 295.53 c +206.374 291.741 200.691 291.741 200.691 295.53 c +h +f +1.5 w +0.75 w +204.408 293.832 m +204.408 297.621 210.092 297.621 210.092 293.832 c +210.092 290.043 204.408 290.043 204.408 293.832 c +h +f +1.5 w +0.75 w +208.126 292.891 m +208.126 296.68 213.809 296.68 213.809 292.891 c +213.809 289.102 208.126 289.102 208.126 292.891 c +h +f +1.5 w +0.75 w +211.843 292.126 m +211.843 295.915 217.526 295.915 217.526 292.126 c +217.526 288.337 211.843 288.337 211.843 292.126 c +h +f +1.5 w +0.75 w +215.56 291.604 m +215.56 295.393 221.244 295.393 221.244 291.604 c +221.244 287.815 215.56 287.815 215.56 291.604 c +h +f +1.5 w +0.75 w +219.278 291.207 m +219.278 294.996 224.961 294.996 224.961 291.207 c +224.961 287.418 219.278 287.418 219.278 291.207 c +h +f +1.5 w +0.75 w +222.995 290.916 m +222.995 294.705 228.679 294.705 228.679 290.916 c +228.679 287.127 222.995 287.127 222.995 290.916 c +h +f +1.5 w +0.75 w +226.712 290.702 m +226.712 294.491 232.396 294.491 232.396 290.702 c +232.396 286.913 226.712 286.913 226.712 290.702 c +h +f +1.5 w +0.75 w +230.43 290.574 m +230.43 294.363 236.113 294.363 236.113 290.574 c +236.113 286.785 230.43 286.785 230.43 290.574 c +h +f +1.5 w +0.75 w +234.147 290.454 m +234.147 294.243 239.831 294.243 239.831 290.454 c +239.831 286.665 234.147 286.665 234.147 290.454 c +h +f +1.5 w +0.75 w +237.865 290.373 m +237.865 294.162 243.548 294.162 243.548 290.373 c +243.548 286.584 237.865 286.584 237.865 290.373 c +h +f +1.5 w +0.75 w +241.582 290.299 m +241.582 294.088 247.265 294.088 247.265 290.299 c +247.265 286.51 241.582 286.51 241.582 290.299 c +h +f +1.5 w +0.75 w +245.299 290.243 m +245.299 294.032 250.983 294.032 250.983 290.243 c +250.983 286.454 245.299 286.454 245.299 290.243 c +h +f +1.5 w +0.75 w +249.017 290.204 m +249.017 293.993 254.7 293.993 254.7 290.204 c +254.7 286.415 249.017 286.415 249.017 290.204 c +h +f +1.5 w +0.75 w +252.734 290.168 m +252.734 293.957 258.418 293.957 258.418 290.168 c +258.418 286.379 252.734 286.379 252.734 290.168 c +h +f +1.5 w +0.75 w +256.451 290.139 m +256.451 293.928 262.135 293.928 262.135 290.139 c +262.135 286.35 256.451 286.35 256.451 290.139 c +h +f +1.5 w +0.75 w +260.169 290.114 m +260.169 293.903 265.852 293.903 265.852 290.114 c +265.852 286.325 260.169 286.325 260.169 290.114 c +h +f +1.5 w +0.75 w +263.886 290.1 m +263.886 293.889 269.57 293.889 269.57 290.1 c +269.57 286.311 263.886 286.311 263.886 290.1 c +h +f +1.5 w +0.75 w +267.604 290.081 m +267.604 293.87 273.287 293.87 273.287 290.081 c +273.287 286.292 267.604 286.292 267.604 290.081 c +h +f +1.5 w +0.75 w +271.321 290.071 m +271.321 293.86 277.004 293.86 277.004 290.071 c +277.004 286.283 271.321 286.283 271.321 290.071 c +h +f +1.5 w +0.75 w +275.038 290.048 m +275.038 293.837 280.722 293.837 280.722 290.048 c +280.722 286.259 275.038 286.259 275.038 290.048 c +h +f +1.5 w +q +0.0057 274.59 283.453 274.573 re +W +[1 0 0 1 259.31 515.778] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 7.8246 Tf +(-1) 6.5179 Tj +Q +q +0.0057 274.59 283.453 274.573 re +W +[1 0 0 1 252.205 512.225] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 11.3813 Tf +( s) 7.2727 Tj +Q +q +0.0057 274.59 283.453 274.573 re +W +[1 0 0 1 247.943 518.619] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 7.8246 Tf +(9) 3.9123 Tj +Q +q +0.0057 274.59 283.453 274.573 re +W +[1 0 0 1 236.576 512.225] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 11.3813 Tf +(10) 11.3813 Tj +Q +q +0.0057 274.59 283.453 274.573 re +W +[1 0 0 1 234.444 512.225] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F18_0 11.3813 Tf +(\327) 2.8453 Tj +Q +q +0.0057 274.59 283.453 274.573 re +W +[1 0 0 1 116.512 512.225] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 11.3813 Tf +(Protons: 70 MeV/u, 1.2) 117.9103 Tj +Q +0.75 w +/DeviceRGB {} CS +[0.8 0.8 0.8] SC +/DeviceRGB {} cs +[0.8 0.8 0.8] sc +91.0578 514.841 m +91.0578 518.63 96.7413 518.63 96.7413 514.841 c +96.7413 511.052 91.0578 511.052 91.0578 514.841 c +h +f +1.5 w +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +q +0.0057 274.59 283.453 274.573 re +W +[1 0 0 1 262.151 502.279] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 7.8246 Tf +(-1) 6.5179 Tj +Q +q +0.0057 274.59 283.453 274.573 re +W +[1 0 0 1 255.047 498.727] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 11.3813 Tf +( s) 7.2727 Tj +Q +q +0.0057 274.59 283.453 274.573 re +W +[1 0 0 1 250.784 505.121] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 7.8246 Tf +(9) 3.9123 Tj +Q +q +0.0057 274.59 283.453 274.573 re +W +[1 0 0 1 239.417 498.727] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 11.3813 Tf +(10) 11.3813 Tj +Q +q +0.0057 274.59 283.453 274.573 re +W +[1 0 0 1 237.286 498.727] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F18_0 11.3813 Tf +(\327) 2.8453 Tj +Q +q +0.0057 274.59 283.453 274.573 re +W +[1 0 0 1 116.512 498.727] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 11.3813 Tf +(Protons: 221 MeV/u, 1.2) 120.7556 Tj +Q +0.75 w +91.0578 501.112 m +91.0578 504.901 96.7413 504.901 96.7413 501.112 c +96.7413 497.323 91.0578 497.323 91.0578 501.112 c +h +f +1.5 w +/DeviceRGB {} CS +[1 1 1] SC +/DeviceRGB {} cs +[1 1 1] sc +q +0.002 w +[] 0 d +283.47 274.59 283.453 274.573 re +f* +283.47 274.59 283.453 274.573 re +S +Q +q +0.002 w +[] 0 d +283.473 274.592 226.76 260.842 re +f* +283.473 274.592 226.76 260.842 re +S +Q +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +283.473 274.592 226.76 260.842 re +S +0.75 w +/DeviceRGB {} CS +[0.8 0.8 0.8] SC +/DeviceRGB {} cs +[0.8 0.8 0.8] sc +282.49 291.22 m +282.49 295.009 288.173 295.009 288.173 291.22 c +288.173 287.431 282.49 287.431 282.49 291.22 c +h +f +1.5 w +0.75 w +286.207 291.417 m +286.207 295.206 291.891 295.206 291.891 291.417 c +291.891 287.628 286.207 287.628 286.207 291.417 c +h +f +1.5 w +0.75 w +289.925 291.674 m +289.925 295.463 295.608 295.463 295.608 291.674 c +295.608 287.885 289.925 287.885 289.925 291.674 c +h +f +1.5 w +0.75 w +293.642 292.004 m +293.642 295.793 299.326 295.793 299.326 292.004 c +299.326 288.215 293.642 288.215 293.642 292.004 c +h +f +1.5 w +0.75 w +297.359 292.438 m +297.359 296.227 303.043 296.227 303.043 292.438 c +303.043 288.649 297.359 288.649 297.359 292.438 c +h +f +1.5 w +0.75 w +301.077 292.903 m +301.077 296.692 306.76 296.692 306.76 292.903 c +306.76 289.114 301.077 289.114 301.077 292.903 c +h +f +1.5 w +0.75 w +304.794 293.553 m +304.794 297.342 310.478 297.342 310.478 293.553 c +310.478 289.764 304.794 289.764 304.794 293.553 c +h +f +1.5 w +0.75 w +308.512 294.406 m +308.512 298.195 314.195 298.195 314.195 294.406 c +314.195 290.617 308.512 290.617 308.512 294.406 c +h +f +1.5 w +0.75 w +312.229 295.62 m +312.229 299.409 317.912 299.409 317.912 295.62 c +317.912 291.831 312.229 291.831 312.229 295.62 c +h +f +1.5 w +0.75 w +315.946 296.928 m +315.946 300.717 321.63 300.717 321.63 296.928 c +321.63 293.139 315.946 293.139 315.946 296.928 c +h +f +1.5 w +0.75 w +319.664 298.732 m +319.664 302.521 325.347 302.521 325.347 298.732 c +325.347 294.943 319.664 294.943 319.664 298.732 c +h +f +1.5 w +0.75 w +323.381 300.992 m +323.381 304.781 329.065 304.781 329.065 300.992 c +329.065 297.203 323.381 297.203 323.381 300.992 c +h +f +1.5 w +0.75 w +327.098 303.566 m +327.098 307.355 332.782 307.355 332.782 303.566 c +332.782 299.777 327.098 299.777 327.098 303.566 c +h +f +1.5 w +0.75 w +330.816 307.23 m +330.816 311.019 336.499 311.019 336.499 307.23 c +336.499 303.441 330.816 303.441 330.816 307.23 c +h +f +1.5 w +0.75 w +334.533 311.211 m +334.533 315 340.217 315 340.217 311.211 c +340.217 307.422 334.533 307.422 334.533 311.211 c +h +f +1.5 w +0.75 w +338.251 315.965 m +338.251 319.754 343.934 319.754 343.934 315.965 c +343.934 312.176 338.251 312.176 338.251 315.965 c +h +f +1.5 w +0.75 w +341.968 322.341 m +341.968 326.13 347.651 326.13 347.651 322.341 c +347.651 318.552 341.968 318.552 341.968 322.341 c +h +f +1.5 w +0.75 w +345.685 328.381 m +345.685 332.17 351.369 332.17 351.369 328.381 c +351.369 324.592 345.685 324.592 345.685 328.381 c +h +f +1.5 w +0.75 w +349.403 335.589 m +349.403 339.378 355.086 339.378 355.086 335.589 c +355.086 331.8 349.403 331.8 349.403 335.589 c +h +f +1.5 w +0.75 w +353.12 344.163 m +353.12 347.952 358.804 347.952 358.804 344.163 c +358.804 340.374 353.12 340.374 353.12 344.163 c +h +f +1.5 w +0.75 w +356.837 353.813 m +356.837 357.602 362.521 357.602 362.521 353.813 c +362.521 350.024 356.837 350.024 356.837 353.813 c +h +f +1.5 w +0.75 w +360.555 362.504 m +360.555 366.293 366.238 366.293 366.238 362.504 c +366.238 358.715 360.555 358.715 360.555 362.504 c +h +f +1.5 w +0.75 w +364.272 369.395 m +364.272 373.184 369.956 373.184 369.956 369.395 c +369.956 365.606 364.272 365.606 364.272 369.395 c +h +f +1.5 w +0.75 w +367.99 378.992 m +367.99 382.781 373.673 382.781 373.673 378.992 c +373.673 375.203 367.99 375.203 367.99 378.992 c +h +f +1.5 w +0.75 w +371.707 383.066 m +371.707 386.855 377.39 386.855 377.39 383.066 c +377.39 379.277 371.707 379.277 371.707 383.066 c +h +f +1.5 w +0.75 w +375.424 386.462 m +375.424 390.251 381.108 390.251 381.108 386.462 c +381.108 382.673 375.424 382.673 375.424 386.462 c +h +f +1.5 w +0.75 w +379.142 389.478 m +379.142 393.267 384.825 393.267 384.825 389.478 c +384.825 385.689 379.142 385.689 379.142 389.478 c +h +f +1.5 w +0.75 w +382.859 391.04 m +382.859 394.829 388.543 394.829 388.543 391.04 c +388.543 387.251 382.859 387.251 382.859 391.04 c +h +f +1.5 w +0.75 w +386.576 387.229 m +386.576 391.018 392.26 391.018 392.26 387.229 c +392.26 383.44 386.576 383.44 386.576 387.229 c +h +f +1.5 w +0.75 w +390.294 383.675 m +390.294 387.464 395.977 387.464 395.977 383.675 c +395.977 379.886 390.294 379.886 390.294 383.675 c +h +f +1.5 w +0.75 w +394.011 380.663 m +394.011 384.452 399.695 384.452 399.695 380.663 c +399.695 376.874 394.011 376.874 394.011 380.663 c +h +f +1.5 w +0.75 w +397.729 373.357 m +397.729 377.146 403.412 377.146 403.412 373.357 c +403.412 369.568 397.729 369.568 397.729 373.357 c +h +f +1.5 w +0.75 w +401.446 366.138 m +401.446 369.927 407.129 369.927 407.129 366.138 c +407.129 362.349 401.446 362.349 401.446 366.138 c +h +f +1.5 w +0.75 w +405.163 353.066 m +405.163 356.855 410.847 356.855 410.847 353.066 c +410.847 349.277 405.163 349.277 405.163 353.066 c +h +f +1.5 w +0.75 w +408.881 347.988 m +408.881 351.777 414.564 351.777 414.564 347.988 c +414.564 344.199 408.881 344.199 408.881 347.988 c +h +f +1.5 w +0.75 w +412.598 341.331 m +412.598 345.12 418.282 345.12 418.282 341.331 c +418.282 337.542 412.598 337.542 412.598 341.331 c +h +f +1.5 w +0.75 w +416.315 333.493 m +416.315 337.282 421.999 337.282 421.999 333.493 c +421.999 329.704 416.315 329.704 416.315 333.493 c +h +f +1.5 w +0.75 w +420.033 326.073 m +420.033 329.862 425.716 329.862 425.716 326.073 c +425.716 322.284 420.033 322.284 420.033 326.073 c +h +f +1.5 w +0.75 w +423.75 320.367 m +423.75 324.156 429.434 324.156 429.434 320.367 c +429.434 316.578 423.75 316.578 423.75 320.367 c +h +f +1.5 w +0.75 w +427.468 314.752 m +427.468 318.541 433.151 318.541 433.151 314.752 c +433.151 310.963 427.468 310.963 427.468 314.752 c +h +f +1.5 w +0.75 w +431.185 309.127 m +431.185 312.916 436.868 312.916 436.868 309.127 c +436.868 305.338 431.185 305.338 431.185 309.127 c +h +f +1.5 w +0.75 w +434.902 305.867 m +434.902 309.656 440.586 309.656 440.586 305.867 c +440.586 302.078 434.902 302.078 434.902 305.867 c +h +f +1.5 w +0.75 w +438.62 302.607 m +438.62 306.396 444.303 306.396 444.303 302.607 c +444.303 298.818 438.62 298.818 438.62 302.607 c +h +f +1.5 w +0.75 w +442.337 300.14 m +442.337 303.929 448.021 303.929 448.021 300.14 c +448.021 296.351 442.337 296.351 442.337 300.14 c +h +f +1.5 w +0.75 w +446.054 297.936 m +446.054 301.725 451.738 301.725 451.738 297.936 c +451.738 294.147 446.054 294.147 446.054 297.936 c +h +f +1.5 w +0.75 w +449.772 296.231 m +449.772 300.02 455.455 300.02 455.455 296.231 c +455.455 292.442 449.772 292.442 449.772 296.231 c +h +f +1.5 w +0.75 w +453.489 294.879 m +453.489 298.668 459.173 298.668 459.173 294.879 c +459.173 291.09 453.489 291.09 453.489 294.879 c +h +f +1.5 w +0.75 w +457.207 294.011 m +457.207 297.8 462.89 297.8 462.89 294.011 c +462.89 290.222 457.207 290.222 457.207 294.011 c +h +f +1.5 w +0.75 w +460.924 293.17 m +460.924 296.959 466.607 296.959 466.607 293.17 c +466.607 289.381 460.924 289.381 460.924 293.17 c +h +f +1.5 w +0.75 w +464.641 292.602 m +464.641 296.391 470.325 296.391 470.325 292.602 c +470.325 288.813 464.641 288.813 464.641 292.602 c +h +f +1.5 w +0.75 w +468.359 292.067 m +468.359 295.856 474.042 295.856 474.042 292.067 c +474.042 288.278 468.359 288.278 468.359 292.067 c +h +f +1.5 w +0.75 w +472.076 291.661 m +472.076 295.45 477.76 295.45 477.76 291.661 c +477.76 287.872 472.076 287.872 472.076 291.661 c +h +f +1.5 w +0.75 w +475.793 291.391 m +475.793 295.18 481.477 295.18 481.477 291.391 c +481.477 287.602 475.793 287.602 475.793 291.391 c +h +f +1.5 w +0.75 w +479.511 291.131 m +479.511 294.92 485.194 294.92 485.194 291.131 c +485.194 287.342 479.511 287.342 479.511 291.131 c +h +f +1.5 w +0.75 w +483.228 290.938 m +483.228 294.727 488.912 294.727 488.912 290.938 c +488.912 287.149 483.228 287.149 483.228 290.938 c +h +f +1.5 w +0.75 w +486.946 290.797 m +486.946 294.586 492.629 294.586 492.629 290.797 c +492.629 287.008 486.946 287.008 486.946 290.797 c +h +f +1.5 w +0.75 w +490.663 290.658 m +490.663 294.447 496.346 294.447 496.346 290.658 c +496.346 286.869 490.663 286.869 490.663 290.658 c +h +f +1.5 w +0.75 w +494.38 290.571 m +494.38 294.36 500.064 294.36 500.064 290.571 c +500.064 286.782 494.38 286.782 494.38 290.571 c +h +f +1.5 w +0.75 w +498.098 290.486 m +498.098 294.275 503.781 294.275 503.781 290.486 c +503.781 286.697 498.098 286.697 498.098 290.486 c +h +f +1.5 w +0.75 w +501.815 290.394 m +501.815 294.183 507.499 294.183 507.499 290.394 c +507.499 286.605 501.815 286.605 501.815 290.394 c +h +f +1.5 w +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +283.473 274.592 m +510.233 274.592 l +S +344.81 281.182 m +344.81 274.592 l +S +363.397 277.887 m +363.397 274.592 l +S +381.983 277.887 m +381.983 274.592 l +S +400.57 277.887 m +400.57 274.592 l +S +419.157 281.182 m +419.157 274.592 l +S +437.744 277.887 m +437.744 274.592 l +S +456.331 277.887 m +456.331 274.592 l +S +474.918 277.887 m +474.918 274.592 l +S +493.505 281.182 m +493.505 274.592 l +S +344.81 281.182 m +344.81 274.592 l +S +326.223 277.887 m +326.223 274.592 l +S +307.636 277.887 m +307.636 274.592 l +S +289.049 277.887 m +289.049 274.592 l +S +493.505 281.182 m +493.505 274.592 l +S +q +283.47 274.59 283.453 274.573 re +W +[1 0 0 1 338.168 260.02] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 12.8039 Tf +(20) 12.8039 Tj +Q +q +283.47 274.59 283.453 274.573 re +W +[1 0 0 1 412.054 260.02] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 12.8039 Tf +(40) 12.8039 Tj +Q +q +283.47 274.59 283.453 274.573 re +W +[1 0 0 1 486.65 260.02] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 12.8039 Tf +(60) 12.8039 Tj +Q +283.473 535.434 m +510.233 535.434 l +S +344.81 528.844 m +344.81 535.434 l +S +363.397 532.139 m +363.397 535.434 l +S +381.983 532.139 m +381.983 535.434 l +S +400.57 532.139 m +400.57 535.434 l +S +419.157 528.844 m +419.157 535.434 l +S +437.744 532.139 m +437.744 535.434 l +S +456.331 532.139 m +456.331 535.434 l +S +474.918 532.139 m +474.918 535.434 l +S +493.505 528.844 m +493.505 535.434 l +S +344.81 528.844 m +344.81 535.434 l +S +326.223 532.139 m +326.223 535.434 l +S +307.636 532.139 m +307.636 535.434 l +S +289.049 532.139 m +289.049 535.434 l +S +493.505 528.844 m +493.505 535.434 l +S +283.473 274.592 m +283.473 535.434 l +S +q +283.47 274.59 283.453 274.573 re +W +[0 1 -1 0 246.522 529.986] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 15.6492 Tf +(s) 6.0875 Tj +Q +q +283.47 274.59 283.453 274.573 re +W +[0 1 -1 0 246.522 520.751] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F18_0 15.6492 Tf +(m) 9.0139 Tj +Q +q +283.47 274.59 283.453 274.573 re +W +[0 1 -1 0 246.522 456.811] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 15.6492 Tf +( / a.u./312) 64.3495 Tj +Q +q +283.47 274.59 283.453 274.573 re +W +[0 1 -1 0 250.784 426.263] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 9.9586 Tf +(BHEM) 30.4335 Tj +Q +q +283.47 274.59 283.453 274.573 re +W +[0 1 -1 0 246.522 414.896] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 15.6492 Tf +(A) 11.2987 Tj +Q +291.551 289.936 m +283.473 289.936 l +S +287.512 297.608 m +283.473 297.608 l +S +287.512 305.28 m +283.473 305.28 l +S +287.512 312.951 m +283.473 312.951 l +S +287.512 320.623 m +283.473 320.623 l +S +291.551 328.295 m +283.473 328.295 l +S +287.512 335.967 m +283.473 335.967 l +S +287.512 343.639 m +283.473 343.639 l +S +287.512 351.31 m +283.473 351.31 l +S +287.512 358.982 m +283.473 358.982 l +S +291.551 366.654 m +283.473 366.654 l +S +287.512 374.326 m +283.473 374.326 l +S +287.512 381.998 m +283.473 381.998 l +S +287.512 389.67 m +283.473 389.67 l +S +287.512 397.341 m +283.473 397.341 l +S +291.551 405.013 m +283.473 405.013 l +S +287.512 412.685 m +283.473 412.685 l +S +287.512 420.357 m +283.473 420.357 l +S +287.512 428.029 m +283.473 428.029 l +S +287.512 435.7 m +283.473 435.7 l +S +291.551 443.372 m +283.473 443.372 l +S +287.512 451.044 m +283.473 451.044 l +S +287.512 458.716 m +283.473 458.716 l +S +287.512 466.388 m +283.473 466.388 l +S +287.512 474.06 m +283.473 474.06 l +S +291.551 481.731 m +283.473 481.731 l +S +287.512 489.403 m +283.473 489.403 l +S +287.512 497.075 m +283.473 497.075 l +S +287.512 504.747 m +283.473 504.747 l +S +287.512 512.419 m +283.473 512.419 l +S +291.551 520.09 m +283.473 520.09 l +S +291.551 289.936 m +283.473 289.936 l +S +287.512 282.264 m +283.473 282.264 l +S +287.512 274.592 m +283.473 274.592 l +S +291.551 520.09 m +283.473 520.09 l +S +287.512 527.762 m +283.473 527.762 l +S +287.512 535.434 m +283.473 535.434 l +S +q +283.47 274.59 283.453 274.573 re +W +[1 0 0 1 275.65 285.596] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 12.8039 Tf +(0) 6.402 Tj +Q +q +283.47 274.59 283.453 274.573 re +W +[1 0 0 1 262.862 323.96] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 12.8039 Tf +(500) 19.2059 Tj +Q +q +283.47 274.59 283.453 274.573 re +W +[1 0 0 1 256.468 362.323] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 12.8039 Tf +(1000) 25.6078 Tj +Q +q +283.47 274.59 283.453 274.573 re +W +[1 0 0 1 256.468 400.687] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 12.8039 Tf +(1500) 25.6078 Tj +Q +q +283.47 274.59 283.453 274.573 re +W +[1 0 0 1 256.468 439.05] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 12.8039 Tf +(2000) 25.6078 Tj +Q +q +283.47 274.59 283.453 274.573 re +W +[1 0 0 1 256.468 477.414] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 12.8039 Tf +(2500) 25.6078 Tj +Q +q +283.47 274.59 283.453 274.573 re +W +[1 0 0 1 256.468 515.778] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 12.8039 Tf +(3000) 25.6078 Tj +Q +510.233 274.592 m +510.233 535.434 l +S +502.154 289.936 m +510.233 289.936 l +S +506.194 297.608 m +510.233 297.608 l +S +506.194 305.28 m +510.233 305.28 l +S +506.194 312.951 m +510.233 312.951 l +S +506.194 320.623 m +510.233 320.623 l +S +502.154 328.295 m +510.233 328.295 l +S +506.194 335.967 m +510.233 335.967 l +S +506.194 343.639 m +510.233 343.639 l +S +506.194 351.31 m +510.233 351.31 l +S +506.194 358.982 m +510.233 358.982 l +S +502.154 366.654 m +510.233 366.654 l +S +506.194 374.326 m +510.233 374.326 l +S +506.194 381.998 m +510.233 381.998 l +S +506.194 389.67 m +510.233 389.67 l +S +506.194 397.341 m +510.233 397.341 l +S +502.154 405.013 m +510.233 405.013 l +S +506.194 412.685 m +510.233 412.685 l +S +506.194 420.357 m +510.233 420.357 l +S +506.194 428.029 m +510.233 428.029 l +S +506.194 435.7 m +510.233 435.7 l +S +502.154 443.372 m +510.233 443.372 l +S +506.194 451.044 m +510.233 451.044 l +S +506.194 458.716 m +510.233 458.716 l +S +506.194 466.388 m +510.233 466.388 l +S +506.194 474.06 m +510.233 474.06 l +S +502.154 481.731 m +510.233 481.731 l +S +506.194 489.403 m +510.233 489.403 l +S +506.194 497.075 m +510.233 497.075 l +S +506.194 504.747 m +510.233 504.747 l +S +506.194 512.419 m +510.233 512.419 l +S +502.154 520.09 m +510.233 520.09 l +S +502.154 289.936 m +510.233 289.936 l +S +506.194 282.264 m +510.233 282.264 l +S +506.194 274.592 m +510.233 274.592 l +S +502.154 520.09 m +510.233 520.09 l +S +506.194 527.762 m +510.233 527.762 l +S +506.194 535.434 m +510.233 535.434 l +S +0.75 w +282.49 290.104 m +282.49 293.893 288.173 293.893 288.173 290.104 c +288.173 286.315 282.49 286.315 282.49 290.104 c +h +f +1.5 w +0.75 w +286.207 290.107 m +286.207 293.896 291.891 293.896 291.891 290.107 c +291.891 286.318 286.207 286.318 286.207 290.107 c +h +f +1.5 w +0.75 w +289.925 290.111 m +289.925 293.9 295.608 293.9 295.608 290.111 c +295.608 286.322 289.925 286.322 289.925 290.111 c +h +f +1.5 w +0.75 w +293.642 290.114 m +293.642 293.903 299.326 293.903 299.326 290.114 c +299.326 286.325 293.642 286.325 293.642 290.114 c +h +f +1.5 w +0.75 w +297.359 290.121 m +297.359 293.91 303.043 293.91 303.043 290.121 c +303.043 286.332 297.359 286.332 297.359 290.121 c +h +f +1.5 w +0.75 w +301.077 290.132 m +301.077 293.921 306.76 293.921 306.76 290.132 c +306.76 286.343 301.077 286.343 301.077 290.132 c +h +f +1.5 w +0.75 w +304.794 290.136 m +304.794 293.925 310.478 293.925 310.478 290.136 c +310.478 286.347 304.794 286.347 304.794 290.136 c +h +f +1.5 w +0.75 w +308.512 290.153 m +308.512 293.942 314.195 293.942 314.195 290.153 c +314.195 286.364 308.512 286.364 308.512 290.153 c +h +f +1.5 w +0.75 w +312.229 290.174 m +312.229 293.963 317.912 293.963 317.912 290.174 c +317.912 286.385 312.229 286.385 312.229 290.174 c +h +f +1.5 w +0.75 w +315.946 290.19 m +315.946 293.979 321.63 293.979 321.63 290.19 c +321.63 286.401 315.946 286.401 315.946 290.19 c +h +f +1.5 w +0.75 w +319.664 290.218 m +319.664 294.007 325.347 294.007 325.347 290.218 c +325.347 286.429 319.664 286.429 319.664 290.218 c +h +f +1.5 w +0.75 w +323.381 290.256 m +323.381 294.045 329.065 294.045 329.065 290.256 c +329.065 286.467 323.381 286.467 323.381 290.256 c +h +f +1.5 w +0.75 w +327.098 290.298 m +327.098 294.087 332.782 294.087 332.782 290.298 c +332.782 286.509 327.098 286.509 327.098 290.298 c +h +f +1.5 w +0.75 w +330.816 290.375 m +330.816 294.164 336.499 294.164 336.499 290.375 c +336.499 286.586 330.816 286.586 330.816 290.375 c +h +f +1.5 w +0.75 w +334.533 290.473 m +334.533 294.262 340.217 294.262 340.217 290.473 c +340.217 286.684 334.533 286.684 334.533 290.473 c +h +f +1.5 w +0.75 w +338.251 290.624 m +338.251 294.413 343.934 294.413 343.934 290.624 c +343.934 286.835 338.251 286.835 338.251 290.624 c +h +f +1.5 w +0.75 w +341.968 290.906 m +341.968 294.695 347.651 294.695 347.651 290.906 c +347.651 287.117 341.968 287.117 341.968 290.906 c +h +f +1.5 w +0.75 w +345.685 291.333 m +345.685 295.122 351.369 295.122 351.369 291.333 c +351.369 287.544 345.685 287.544 345.685 291.333 c +h +f +1.5 w +0.75 w +349.403 292.118 m +349.403 295.907 355.086 295.907 355.086 292.118 c +355.086 288.329 349.403 288.329 349.403 292.118 c +h +f +1.5 w +0.75 w +353.12 293.63 m +353.12 297.419 358.804 297.419 358.804 293.63 c +358.804 289.841 353.12 289.841 353.12 293.63 c +h +f +1.5 w +0.75 w +356.837 296.617 m +356.837 300.406 362.521 300.406 362.521 296.617 c +362.521 292.828 356.837 292.828 356.837 296.617 c +h +f +1.5 w +0.75 w +360.555 302.196 m +360.555 305.985 366.238 305.985 366.238 302.196 c +366.238 298.407 360.555 298.407 360.555 302.196 c +h +f +1.5 w +0.75 w +364.272 311.888 m +364.272 315.677 369.956 315.677 369.956 311.888 c +369.956 308.099 364.272 308.099 364.272 311.888 c +h +f +1.5 w +0.75 w +367.99 328.889 m +367.99 332.678 373.673 332.678 373.673 328.889 c +373.673 325.1 367.99 325.1 367.99 328.889 c +h +f +1.5 w +0.75 w +371.707 350.753 m +371.707 354.542 377.39 354.542 377.39 350.753 c +377.39 346.964 371.707 346.964 371.707 350.753 c +h +f +1.5 w +0.75 w +375.424 376.531 m +375.424 380.32 381.108 380.32 381.108 376.531 c +381.108 372.742 375.424 372.742 375.424 376.531 c +h +f +1.5 w +0.75 w +379.142 401.165 m +379.142 404.954 384.825 404.954 384.825 401.165 c +384.825 397.376 379.142 397.376 379.142 401.165 c +h +f +1.5 w +0.75 w +382.859 416.61 m +382.859 420.399 388.543 420.399 388.543 416.61 c +388.543 412.821 382.859 412.821 382.859 416.61 c +h +f +1.5 w +0.75 w +386.576 412.747 m +386.576 416.536 392.26 416.536 392.26 412.747 c +392.26 408.958 386.576 408.958 386.576 412.747 c +h +f +1.5 w +0.75 w +390.294 396.36 m +390.294 400.149 395.977 400.149 395.977 396.36 c +395.977 392.571 390.294 392.571 390.294 396.36 c +h +f +1.5 w +0.75 w +394.011 372.017 m +394.011 375.806 399.695 375.806 399.695 372.017 c +399.695 368.228 394.011 368.228 394.011 372.017 c +h +f +1.5 w +0.75 w +397.729 344.502 m +397.729 348.291 403.412 348.291 403.412 344.502 c +403.412 340.713 397.729 340.713 397.729 344.502 c +h +f +1.5 w +0.75 w +401.446 322.839 m +401.446 326.628 407.129 326.628 407.129 322.839 c +407.129 319.05 401.446 319.05 401.446 322.839 c +h +f +1.5 w +0.75 w +405.163 306.878 m +405.163 310.667 410.847 310.667 410.847 306.878 c +410.847 303.089 405.163 303.089 405.163 306.878 c +h +f +1.5 w +0.75 w +408.881 299.455 m +408.881 303.244 414.564 303.244 414.564 299.455 c +414.564 295.666 408.881 295.666 408.881 299.455 c +h +f +1.5 w +0.75 w +412.598 295.246 m +412.598 299.035 418.282 299.035 418.282 295.246 c +418.282 291.457 412.598 291.457 412.598 295.246 c +h +f +1.5 w +0.75 w +416.315 292.954 m +416.315 296.743 421.999 296.743 421.999 292.954 c +421.999 289.165 416.315 289.165 416.315 292.954 c +h +f +1.5 w +0.75 w +420.033 291.746 m +420.033 295.535 425.716 295.535 425.716 291.746 c +425.716 287.957 420.033 287.957 420.033 291.746 c +h +f +1.5 w +0.75 w +423.75 291.142 m +423.75 294.931 429.434 294.931 429.434 291.142 c +429.434 287.353 423.75 287.353 423.75 291.142 c +h +f +1.5 w +0.75 w +427.468 290.78 m +427.468 294.569 433.151 294.569 433.151 290.78 c +433.151 286.991 427.468 286.991 427.468 290.78 c +h +f +1.5 w +0.75 w +431.185 290.533 m +431.185 294.322 436.868 294.322 436.868 290.533 c +436.868 286.744 431.185 286.744 431.185 290.533 c +h +f +1.5 w +0.75 w +434.902 290.433 m +434.902 294.222 440.586 294.222 440.586 290.433 c +440.586 286.644 434.902 286.644 434.902 290.433 c +h +f +1.5 w +0.75 w +438.62 290.342 m +438.62 294.131 444.303 294.131 444.303 290.342 c +444.303 286.553 438.62 286.553 438.62 290.342 c +h +f +1.5 w +0.75 w +442.337 290.291 m +442.337 294.08 448.021 294.08 448.021 290.291 c +448.021 286.502 442.337 286.502 442.337 290.291 c +h +f +1.5 w +0.75 w +446.054 290.236 m +446.054 294.025 451.738 294.025 451.738 290.236 c +451.738 286.447 446.054 286.447 446.054 290.236 c +h +f +1.5 w +0.75 w +449.772 290.208 m +449.772 293.997 455.455 293.997 455.455 290.208 c +455.455 286.419 449.772 286.419 449.772 290.208 c +h +f +1.5 w +0.75 w +453.489 290.173 m +453.489 293.962 459.173 293.962 459.173 290.173 c +459.173 286.384 453.489 286.384 453.489 290.173 c +h +f +1.5 w +0.75 w +457.207 290.161 m +457.207 293.95 462.89 293.95 462.89 290.161 c +462.89 286.372 457.207 286.372 457.207 290.161 c +h +f +1.5 w +0.75 w +460.924 290.133 m +460.924 293.922 466.607 293.922 466.607 290.133 c +466.607 286.344 460.924 286.344 460.924 290.133 c +h +f +1.5 w +0.75 w +464.641 290.129 m +464.641 293.918 470.325 293.918 470.325 290.129 c +470.325 286.34 464.641 286.34 464.641 290.129 c +h +f +1.5 w +0.75 w +468.359 290.114 m +468.359 293.903 474.042 293.903 474.042 290.114 c +474.042 286.325 468.359 286.325 468.359 290.114 c +h +f +1.5 w +0.75 w +472.076 290.107 m +472.076 293.896 477.76 293.896 477.76 290.107 c +477.76 286.318 472.076 286.318 472.076 290.107 c +h +f +1.5 w +0.75 w +475.793 290.105 m +475.793 293.894 481.477 293.894 481.477 290.105 c +481.477 286.316 475.793 286.316 475.793 290.105 c +h +f +1.5 w +0.75 w +479.511 290.088 m +479.511 293.877 485.194 293.877 485.194 290.088 c +485.194 286.299 479.511 286.299 479.511 290.088 c +h +f +1.5 w +0.75 w +483.228 290.086 m +483.228 293.875 488.912 293.875 488.912 290.086 c +488.912 286.297 483.228 286.297 483.228 290.086 c +h +f +1.5 w +0.75 w +486.946 290.071 m +486.946 293.86 492.629 293.86 492.629 290.071 c +492.629 286.282 486.946 286.282 486.946 290.071 c +h +f +1.5 w +0.75 w +490.663 290.072 m +490.663 293.861 496.346 293.861 496.346 290.072 c +496.346 286.283 490.663 286.283 490.663 290.072 c +h +f +1.5 w +0.75 w +494.38 290.063 m +494.38 293.852 500.064 293.852 500.064 290.063 c +500.064 286.274 494.38 286.274 494.38 290.063 c +h +f +1.5 w +0.75 w +498.098 290.054 m +498.098 293.843 503.781 293.843 503.781 290.054 c +503.781 286.265 498.098 286.265 498.098 290.054 c +h +f +1.5 w +0.75 w +501.815 290.046 m +501.815 293.835 507.499 293.835 507.499 290.046 c +507.499 286.257 501.815 286.257 501.815 290.046 c +h +f +1.5 w +q +283.47 274.59 283.453 274.573 re +W +[1 0 0 1 490.202 512.225] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 11.3813 Tf +(v) 5.6907 Tj +Q +q +283.47 274.59 283.453 274.573 re +W +[1 0 0 1 483.808 515.778] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 7.8246 Tf +(-1) 6.5179 Tj +Q +q +283.47 274.59 283.453 274.573 re +W +[1 0 0 1 476.704 512.225] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 11.3813 Tf +( s) 7.2727 Tj +Q +q +283.47 274.59 283.453 274.573 re +W +[1 0 0 1 472.441 518.619] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 7.8246 Tf +(8) 3.9123 Tj +Q +q +283.47 274.59 283.453 274.573 re +W +[1 0 0 1 461.074 512.225] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 11.3813 Tf +(10) 11.3813 Tj +Q +q +283.47 274.59 283.453 274.573 re +W +[1 0 0 1 458.943 512.225] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F18_0 11.3813 Tf +(\327) 2.8453 Tj +Q +q +283.47 274.59 283.453 274.573 re +W +[1 0 0 1 343.141 512.225] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 11.3813 Tf +(Helium: 72 MeV/u, 3.0) 116.021 Tj +Q +0.75 w +/DeviceRGB {} CS +[0.8 0.8 0.8] SC +/DeviceRGB {} cs +[0.8 0.8 0.8] sc +317.832 514.841 m +317.832 518.63 323.515 518.63 323.515 514.841 c +323.515 511.052 317.832 511.052 317.832 514.841 c +h +f +1.5 w +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +q +283.47 274.59 283.453 274.573 re +W +[1 0 0 1 486.65 502.279] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 7.8246 Tf +(-1) 6.5179 Tj +Q +q +283.47 274.59 283.453 274.573 re +W +[1 0 0 1 479.545 498.727] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 11.3813 Tf +( s) 7.2727 Tj +Q +q +283.47 274.59 283.453 274.573 re +W +[1 0 0 1 475.283 505.121] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 7.8246 Tf +(8) 3.9123 Tj +Q +q +283.47 274.59 283.453 274.573 re +W +[1 0 0 1 463.916 498.727] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 11.3813 Tf +(10) 11.3813 Tj +Q +q +283.47 274.59 283.453 274.573 re +W +[1 0 0 1 461.784 498.727] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F18_0 11.3813 Tf +(\327) 2.8453 Tj +Q +q +283.47 274.59 283.453 274.573 re +W +[1 0 0 1 343.141 498.727] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 11.3813 Tf +(Helium: 221 MeV/u, 3.0) 118.8663 Tj +Q +0.75 w +317.832 501.112 m +317.832 504.901 323.515 504.901 323.515 501.112 c +323.515 497.323 317.832 497.323 317.832 501.112 c +h +f +1.5 w +/DeviceRGB {} CS +[1 1 1] SC +/DeviceRGB {} cs +[1 1 1] sc +q +0.002 w +[] 0 d +0.0057 0.0055 283.453 274.573 re +f* +0.0057 0.0055 283.453 274.573 re +S +Q +q +0.002 w +[] 0 d +56.6963 43.9372 226.76 230.639 re +f* +56.6963 43.9372 226.76 230.639 re +S +Q +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +56.6963 43.9372 226.76 230.639 re +S +0.75 w +/DeviceRGB {} CS +[0.8 0.8 0.8] SC +/DeviceRGB {} cs +[0.8 0.8 0.8] sc +55.7133 57.6681 m +55.7133 61.4571 61.3968 61.4571 61.3968 57.6681 c +61.3968 53.8791 55.7133 53.8791 55.7133 57.6681 c +h +f +1.5 w +0.75 w +59.4306 57.678 m +59.4306 61.467 65.1141 61.467 65.1141 57.678 c +65.1141 53.889 59.4306 53.889 59.4306 57.678 c +h +f +1.5 w +0.75 w +63.148 57.6945 m +63.148 61.4835 68.8315 61.4835 68.8315 57.6945 c +68.8315 53.9055 63.148 53.9055 63.148 57.6945 c +h +f +1.5 w +0.75 w +66.8654 57.7113 m +66.8654 61.5003 72.5489 61.5003 72.5489 57.7113 c +72.5489 53.9223 66.8654 53.9223 66.8654 57.7113 c +h +f +1.5 w +0.75 w +70.5827 57.7358 m +70.5827 61.5248 76.2662 61.5248 76.2662 57.7358 c +76.2662 53.9468 70.5827 53.9468 70.5827 57.7358 c +h +f +1.5 w +0.75 w +74.3001 57.7567 m +74.3001 61.5457 79.9836 61.5457 79.9836 57.7567 c +79.9836 53.9677 74.3001 53.9677 74.3001 57.7567 c +h +f +1.5 w +0.75 w +78.0175 57.793 m +78.0175 61.582 83.701 61.582 83.701 57.793 c +83.701 54.004 78.0175 54.004 78.0175 57.793 c +h +f +1.5 w +0.75 w +81.7349 57.8353 m +81.7349 61.6243 87.4184 61.6243 87.4184 57.8353 c +87.4184 54.0463 81.7349 54.0463 81.7349 57.8353 c +h +f +1.5 w +0.75 w +85.4522 57.9044 m +85.4522 61.6934 91.1357 61.6934 91.1357 57.9044 c +91.1357 54.1154 85.4522 54.1154 85.4522 57.9044 c +h +f +1.5 w +0.75 w +89.1696 57.9767 m +89.1696 61.7657 94.8531 61.7657 94.8531 57.9767 c +94.8531 54.1877 89.1696 54.1877 89.1696 57.9767 c +h +f +1.5 w +0.75 w +92.887 58.0874 m +92.887 61.8764 98.5705 61.8764 98.5705 58.0874 c +98.5705 54.2984 92.887 54.2984 92.887 58.0874 c +h +f +1.5 w +0.75 w +96.6044 58.2312 m +96.6044 62.0202 102.288 62.0202 102.288 58.2312 c +102.288 54.4422 96.6044 54.4422 96.6044 58.2312 c +h +f +1.5 w +0.75 w +100.322 58.4238 m +100.322 62.2128 106.005 62.2128 106.005 58.4238 c +106.005 54.6348 100.322 54.6348 100.322 58.4238 c +h +f +1.5 w +0.75 w +104.039 58.7363 m +104.039 62.5253 109.723 62.5253 109.723 58.7363 c +109.723 54.9473 104.039 54.9473 104.039 58.7363 c +h +f +1.5 w +0.75 w +107.756 59.1576 m +107.756 62.9466 113.44 62.9466 113.44 59.1576 c +113.44 55.3686 107.756 55.3686 107.756 59.1576 c +h +f +1.5 w +0.75 w +111.474 59.7949 m +111.474 63.5839 117.157 63.5839 117.157 59.7949 c +117.157 56.0059 111.474 56.0059 111.474 59.7949 c +h +f +1.5 w +0.75 w +115.191 60.8462 m +115.191 64.6352 120.875 64.6352 120.875 60.8462 c +120.875 57.0572 115.191 57.0572 115.191 60.8462 c +h +f +1.5 w +0.75 w +118.909 62.2798 m +118.909 66.0688 124.592 66.0688 124.592 62.2798 c +124.592 58.4908 118.909 58.4908 118.909 62.2798 c +h +f +1.5 w +0.75 w +122.626 64.4865 m +122.626 68.2755 128.309 68.2755 128.309 64.4865 c +128.309 60.6975 122.626 60.6975 122.626 64.4865 c +h +f +1.5 w +0.75 w +126.343 67.8105 m +126.343 71.5995 132.027 71.5995 132.027 67.8105 c +132.027 64.0215 126.343 64.0215 126.343 67.8105 c +h +f +1.5 w +0.75 w +130.061 72.6222 m +130.061 76.4112 135.744 76.4112 135.744 72.6222 c +135.744 68.8332 130.061 68.8332 130.061 72.6222 c +h +f +1.5 w +0.75 w +133.778 78.6863 m +133.778 82.4753 139.462 82.4753 139.462 78.6863 c +139.462 74.8973 133.778 74.8973 133.778 78.6863 c +h +f +1.5 w +0.75 w +137.495 85.5594 m +137.495 89.3484 143.179 89.3484 143.179 85.5594 c +143.179 81.7704 137.495 81.7704 137.495 85.5594 c +h +f +1.5 w +0.75 w +141.213 94.5963 m +141.213 98.3853 146.896 98.3853 146.896 94.5963 c +146.896 90.8073 141.213 90.8073 141.213 94.5963 c +h +f +1.5 w +0.75 w +144.93 101.897 m +144.93 105.686 150.614 105.686 150.614 101.897 c +150.614 98.1085 144.93 98.1085 144.93 101.897 c +h +f +1.5 w +0.75 w +148.648 108.375 m +148.648 112.164 154.331 112.164 154.331 108.375 c +154.331 104.586 148.648 104.586 148.648 108.375 c +h +f +1.5 w +0.75 w +152.365 113.491 m +152.365 117.28 158.048 117.28 158.048 113.491 c +158.048 109.702 152.365 109.702 152.365 113.491 c +h +f +1.5 w +0.75 w +156.082 115.892 m +156.082 119.681 161.766 119.681 161.766 115.892 c +161.766 112.103 156.082 112.103 156.082 115.892 c +h +f +1.5 w +0.75 w +159.8 113.408 m +159.8 117.197 165.483 117.197 165.483 113.408 c +165.483 109.619 159.8 109.619 159.8 113.408 c +h +f +1.5 w +0.75 w +163.517 109.137 m +163.517 112.926 169.201 112.926 169.201 109.137 c +169.201 105.348 163.517 105.348 163.517 109.137 c +h +f +1.5 w +0.75 w +167.234 103.269 m +167.234 107.058 172.918 107.058 172.918 103.269 c +172.918 99.48 167.234 99.48 167.234 103.269 c +h +f +1.5 w +0.75 w +170.952 94.8349 m +170.952 98.6239 176.635 98.6239 176.635 94.8349 c +176.635 91.0459 170.952 91.0459 170.952 94.8349 c +h +f +1.5 w +0.75 w +174.669 86.7623 m +174.669 90.5513 180.353 90.5513 180.353 86.7623 c +180.353 82.9733 174.669 82.9733 174.669 86.7623 c +h +f +1.5 w +0.75 w +178.387 77.7161 m +178.387 81.5051 184.07 81.5051 184.07 77.7161 c +184.07 73.9271 178.387 73.9271 178.387 77.7161 c +h +f +1.5 w +0.75 w +182.104 72.692 m +182.104 76.481 187.787 76.481 187.787 72.692 c +187.787 68.903 182.104 68.903 182.104 72.692 c +h +f +1.5 w +0.75 w +185.821 68.398 m +185.821 72.187 191.505 72.187 191.505 68.398 c +191.505 64.6091 185.821 64.6091 185.821 68.398 c +h +f +1.5 w +0.75 w +189.539 64.9426 m +189.539 68.7316 195.222 68.7316 195.222 64.9426 c +195.222 61.1536 189.539 61.1536 189.539 64.9426 c +h +f +1.5 w +0.75 w +193.256 62.5221 m +193.256 66.3111 198.94 66.3111 198.94 62.5221 c +198.94 58.7331 193.256 58.7331 193.256 62.5221 c +h +f +1.5 w +0.75 w +196.973 60.979 m +196.973 64.768 202.657 64.768 202.657 60.979 c +202.657 57.19 196.973 57.19 196.973 60.979 c +h +f +1.5 w +0.75 w +200.691 59.9081 m +200.691 63.6971 206.374 63.6971 206.374 59.9081 c +206.374 56.1191 200.691 56.1191 200.691 59.9081 c +h +f +1.5 w +0.75 w +204.408 59.1253 m +204.408 62.9143 210.092 62.9143 210.092 59.1253 c +210.092 55.3363 204.408 55.3363 204.408 59.1253 c +h +f +1.5 w +0.75 w +208.126 58.7237 m +208.126 62.5127 213.809 62.5127 213.809 58.7237 c +213.809 54.9347 208.126 54.9347 208.126 58.7237 c +h +f +1.5 w +0.75 w +211.843 58.4067 m +211.843 62.1957 217.526 62.1957 217.526 58.4067 c +217.526 54.6177 211.843 54.6177 211.843 58.4067 c +h +f +1.5 w +0.75 w +215.56 58.2051 m +215.56 61.9941 221.244 61.9941 221.244 58.2051 c +221.244 54.4161 215.56 54.4161 215.56 58.2051 c +h +f +1.5 w +0.75 w +219.278 58.0455 m +219.278 61.8345 224.961 61.8345 224.961 58.0455 c +224.961 54.2565 219.278 54.2565 219.278 58.0455 c +h +f +1.5 w +0.75 w +222.995 57.9532 m +222.995 61.7422 228.679 61.7422 228.679 57.9532 c +228.679 54.1642 222.995 54.1642 222.995 57.9532 c +h +f +1.5 w +0.75 w +226.712 57.864 m +226.712 61.653 232.396 61.653 232.396 57.864 c +232.396 54.075 226.712 54.075 226.712 57.864 c +h +f +1.5 w +0.75 w +230.43 57.804 m +230.43 61.593 236.113 61.593 236.113 57.804 c +236.113 54.015 230.43 54.015 230.43 57.804 c +h +f +1.5 w +0.75 w +234.147 57.7669 m +234.147 61.5559 239.831 61.5559 239.831 57.7669 c +239.831 53.9779 234.147 53.9779 234.147 57.7669 c +h +f +1.5 w +0.75 w +237.865 57.7469 m +237.865 61.5359 243.548 61.5359 243.548 57.7469 c +243.548 53.9579 237.865 53.9579 237.865 57.7469 c +h +f +1.5 w +0.75 w +241.582 57.7037 m +241.582 61.4927 247.265 61.4927 247.265 57.7037 c +247.265 53.9147 241.582 53.9147 241.582 57.7037 c +h +f +1.5 w +0.75 w +245.299 57.6884 m +245.299 61.4774 250.983 61.4774 250.983 57.6884 c +250.983 53.8994 245.299 53.8994 245.299 57.6884 c +h +f +1.5 w +0.75 w +249.017 57.6698 m +249.017 61.4588 254.7 61.4588 254.7 57.6698 c +254.7 53.8808 249.017 53.8808 249.017 57.6698 c +h +f +1.5 w +0.75 w +252.734 57.6466 m +252.734 61.4356 258.418 61.4356 258.418 57.6466 c +258.418 53.8576 252.734 53.8576 252.734 57.6466 c +h +f +1.5 w +0.75 w +256.451 57.6421 m +256.451 61.4311 262.135 61.4311 262.135 57.6421 c +262.135 53.8531 256.451 53.8531 256.451 57.6421 c +h +f +1.5 w +0.75 w +260.169 57.6222 m +260.169 61.4112 265.852 61.4112 265.852 57.6222 c +265.852 53.8332 260.169 53.8332 260.169 57.6222 c +h +f +1.5 w +0.75 w +263.886 57.6194 m +263.886 61.4084 269.57 61.4084 269.57 57.6194 c +269.57 53.8304 263.886 53.8304 263.886 57.6194 c +h +f +1.5 w +0.75 w +267.604 57.6082 m +267.604 61.3972 273.287 61.3972 273.287 57.6082 c +273.287 53.8192 267.604 53.8192 267.604 57.6082 c +h +f +1.5 w +0.75 w +271.321 57.6055 m +271.321 61.3945 277.004 61.3945 277.004 57.6055 c +277.004 53.8165 271.321 53.8165 271.321 57.6055 c +h +f +1.5 w +0.75 w +275.038 57.6026 m +275.038 61.3916 280.722 61.3916 280.722 57.6026 c +280.722 53.8136 275.038 53.8136 275.038 57.6026 c +h +f +1.5 w +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +56.6963 43.9372 m +283.456 43.9372 l +S +q +0.0057 0.0055 283.453 274.573 re +W +[1 0 0 1 225.919 12.0774] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 15.6492 Tf +(Channel) 56.5249 Tj +Q +118.033 50.5269 m +118.033 43.9372 l +S +136.62 47.232 m +136.62 43.9372 l +S +155.207 47.232 m +155.207 43.9372 l +S +173.794 47.232 m +173.794 43.9372 l +S +192.38 50.5269 m +192.38 43.9372 l +S +210.967 47.232 m +210.967 43.9372 l +S +229.554 47.232 m +229.554 43.9372 l +S +248.141 47.232 m +248.141 43.9372 l +S +266.728 50.5269 m +266.728 43.9372 l +S +118.033 50.5269 m +118.033 43.9372 l +S +99.4461 47.232 m +99.4461 43.9372 l +S +80.8592 47.232 m +80.8592 43.9372 l +S +62.2724 47.232 m +62.2724 43.9372 l +S +266.728 50.5269 m +266.728 43.9372 l +S +q +0.0057 0.0055 283.453 274.573 re +W +[1 0 0 1 111.539 29.1279] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 12.8039 Tf +(20) 12.8039 Tj +Q +q +0.0057 0.0055 283.453 274.573 re +W +[1 0 0 1 185.424 29.1279] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 12.8039 Tf +(40) 12.8039 Tj +Q +q +0.0057 0.0055 283.453 274.573 re +W +[1 0 0 1 260.02 29.1279] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 12.8039 Tf +(60) 12.8039 Tj +Q +56.6963 274.576 m +283.456 274.576 l +S +118.033 267.986 m +118.033 274.576 l +S +136.62 271.281 m +136.62 274.576 l +S +155.207 271.281 m +155.207 274.576 l +S +173.794 271.281 m +173.794 274.576 l +S +192.38 267.986 m +192.38 274.576 l +S +210.967 271.281 m +210.967 274.576 l +S +229.554 271.281 m +229.554 274.576 l +S +248.141 271.281 m +248.141 274.576 l +S +266.728 267.986 m +266.728 274.576 l +S +118.033 267.986 m +118.033 274.576 l +S +99.4461 271.281 m +99.4461 274.576 l +S +80.8592 271.281 m +80.8592 274.576 l +S +62.2724 271.281 m +62.2724 274.576 l +S +266.728 267.986 m +266.728 274.576 l +S +56.6963 43.9372 m +56.6963 274.576 l +S +q +0.0057 0.0055 283.453 274.573 re +W +[0 1 -1 0 19.1818 269.256] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 15.6492 Tf +(s) 6.0875 Tj +Q +q +0.0057 0.0055 283.453 274.573 re +W +[0 1 -1 0 19.1818 260.02] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F18_0 15.6492 Tf +(m) 9.0139 Tj +Q +q +0.0057 0.0055 283.453 274.573 re +W +[0 1 -1 0 19.1818 196.081] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 15.6492 Tf +( / a.u./312) 64.3495 Tj +Q +q +0.0057 0.0055 283.453 274.573 re +W +[0 1 -1 0 23.4444 172.636] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 9.9586 Tf +(BCM) 23.2334 Tj +Q +q +0.0057 0.0055 283.453 274.573 re +W +[0 1 -1 0 19.1818 161.269] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 15.6492 Tf +(A) 11.2987 Tj +Q +63.8393 57.5042 m +56.6963 57.5042 l +S +60.2678 64.2877 m +56.6963 64.2877 l +S +60.2678 71.0712 m +56.6963 71.0712 l +S +60.2678 77.8546 m +56.6963 77.8546 l +S +60.2678 84.6381 m +56.6963 84.6381 l +S +63.8393 91.4216 m +56.6963 91.4216 l +S +60.2678 98.2051 m +56.6963 98.2051 l +S +60.2678 104.989 m +56.6963 104.989 l +S +60.2678 111.772 m +56.6963 111.772 l +S +60.2678 118.556 m +56.6963 118.556 l +S +63.8393 125.339 m +56.6963 125.339 l +S +60.2678 132.123 m +56.6963 132.123 l +S +60.2678 138.906 m +56.6963 138.906 l +S +60.2678 145.69 m +56.6963 145.69 l +S +60.2678 152.473 m +56.6963 152.473 l +S +63.8393 159.257 m +56.6963 159.257 l +S +60.2678 166.04 m +56.6963 166.04 l +S +60.2678 172.824 m +56.6963 172.824 l +S +60.2678 179.607 m +56.6963 179.607 l +S +60.2678 186.39 m +56.6963 186.39 l +S +63.8393 193.174 m +56.6963 193.174 l +S +60.2678 199.957 m +56.6963 199.957 l +S +60.2678 206.741 m +56.6963 206.741 l +S +60.2678 213.524 m +56.6963 213.524 l +S +60.2678 220.308 m +56.6963 220.308 l +S +63.8393 227.091 m +56.6963 227.091 l +S +60.2678 233.875 m +56.6963 233.875 l +S +60.2678 240.658 m +56.6963 240.658 l +S +60.2678 247.442 m +56.6963 247.442 l +S +60.2678 254.225 m +56.6963 254.225 l +S +63.8393 261.009 m +56.6963 261.009 l +S +63.8393 57.5042 m +56.6963 57.5042 l +S +60.2678 50.7207 m +56.6963 50.7207 l +S +60.2678 43.9372 m +56.6963 43.9372 l +S +63.8393 261.009 m +56.6963 261.009 l +S +60.2678 267.792 m +56.6963 267.792 l +S +60.2678 274.576 m +56.6963 274.576 l +S +q +0.0057 0.0055 283.453 274.573 re +W +[1 0 0 1 48.3097 52.5724] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 12.8039 Tf +(0) 6.402 Tj +Q +q +0.0057 0.0055 283.453 274.573 re +W +[1 0 0 1 35.5219 86.6734] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 12.8039 Tf +(500) 19.2059 Tj +Q +q +0.0057 0.0055 283.453 274.573 re +W +[1 0 0 1 29.1279 120.774] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 12.8039 Tf +(1000) 25.6078 Tj +Q +q +0.0057 0.0055 283.453 274.573 re +W +[1 0 0 1 29.1279 154.875] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 12.8039 Tf +(1500) 25.6078 Tj +Q +q +0.0057 0.0055 283.453 274.573 re +W +[1 0 0 1 29.1279 188.266] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 12.8039 Tf +(2000) 25.6078 Tj +Q +q +0.0057 0.0055 283.453 274.573 re +W +[1 0 0 1 29.1279 222.367] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 12.8039 Tf +(2500) 25.6078 Tj +Q +q +0.0057 0.0055 283.453 274.573 re +W +[1 0 0 1 29.1279 256.468] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 12.8039 Tf +(3000) 25.6078 Tj +Q +283.456 43.9372 m +283.456 274.576 l +S +276.313 57.5042 m +283.456 57.5042 l +S +279.885 64.2877 m +283.456 64.2877 l +S +279.885 71.0712 m +283.456 71.0712 l +S +279.885 77.8546 m +283.456 77.8546 l +S +279.885 84.6381 m +283.456 84.6381 l +S +276.313 91.4216 m +283.456 91.4216 l +S +279.885 98.2051 m +283.456 98.2051 l +S +279.885 104.989 m +283.456 104.989 l +S +279.885 111.772 m +283.456 111.772 l +S +279.885 118.556 m +283.456 118.556 l +S +276.313 125.339 m +283.456 125.339 l +S +279.885 132.123 m +283.456 132.123 l +S +279.885 138.906 m +283.456 138.906 l +S +279.885 145.69 m +283.456 145.69 l +S +279.885 152.473 m +283.456 152.473 l +S +276.313 159.257 m +283.456 159.257 l +S +279.885 166.04 m +283.456 166.04 l +S +279.885 172.824 m +283.456 172.824 l +S +279.885 179.607 m +283.456 179.607 l +S +279.885 186.39 m +283.456 186.39 l +S +276.313 193.174 m +283.456 193.174 l +S +279.885 199.957 m +283.456 199.957 l +S +279.885 206.741 m +283.456 206.741 l +S +279.885 213.524 m +283.456 213.524 l +S +279.885 220.308 m +283.456 220.308 l +S +276.313 227.091 m +283.456 227.091 l +S +279.885 233.875 m +283.456 233.875 l +S +279.885 240.658 m +283.456 240.658 l +S +279.885 247.442 m +283.456 247.442 l +S +279.885 254.225 m +283.456 254.225 l +S +276.313 261.009 m +283.456 261.009 l +S +276.313 57.5042 m +283.456 57.5042 l +S +279.885 50.7207 m +283.456 50.7207 l +S +279.885 43.9372 m +283.456 43.9372 l +S +276.313 261.009 m +283.456 261.009 l +S +279.885 267.792 m +283.456 267.792 l +S +279.885 274.576 m +283.456 274.576 l +S +0.75 w +55.7133 57.5782 m +55.7133 61.3672 61.3968 61.3672 61.3968 57.5782 c +61.3968 53.7892 55.7133 53.7892 55.7133 57.5782 c +h +f +1.5 w +0.75 w +59.4306 57.5754 m +59.4306 61.3644 65.1141 61.3644 65.1141 57.5754 c +65.1141 53.7864 59.4306 53.7864 59.4306 57.5754 c +h +f +1.5 w +0.75 w +63.148 57.5749 m +63.148 61.3639 68.8315 61.3639 68.8315 57.5749 c +68.8315 53.7859 63.148 53.7859 63.148 57.5749 c +h +f +1.5 w +0.75 w +66.8654 57.5803 m +66.8654 61.3693 72.5489 61.3693 72.5489 57.5803 c +72.5489 53.7913 66.8654 53.7913 66.8654 57.5803 c +h +f +1.5 w +0.75 w +70.5827 57.5819 m +70.5827 61.3709 76.2662 61.3709 76.2662 57.5819 c +76.2662 53.7929 70.5827 53.7929 70.5827 57.5819 c +h +f +1.5 w +0.75 w +74.3001 57.5818 m +74.3001 61.3708 79.9836 61.3708 79.9836 57.5818 c +79.9836 53.7928 74.3001 53.7928 74.3001 57.5818 c +h +f +1.5 w +0.75 w +78.0175 57.5847 m +78.0175 61.3737 83.701 61.3737 83.701 57.5847 c +83.701 53.7957 78.0175 53.7957 78.0175 57.5847 c +h +f +1.5 w +0.75 w +81.7349 57.5904 m +81.7349 61.3794 87.4184 61.3794 87.4184 57.5904 c +87.4184 53.8014 81.7349 53.8014 81.7349 57.5904 c +h +f +1.5 w +0.75 w +85.4522 57.5981 m +85.4522 61.3871 91.1357 61.3871 91.1357 57.5981 c +91.1357 53.8091 85.4522 53.8091 85.4522 57.5981 c +h +f +1.5 w +0.75 w +89.1696 57.6035 m +89.1696 61.3925 94.8531 61.3925 94.8531 57.6035 c +94.8531 53.8145 89.1696 53.8145 89.1696 57.6035 c +h +f +1.5 w +0.75 w +92.887 57.5992 m +92.887 61.3882 98.5705 61.3882 98.5705 57.5992 c +98.5705 53.8102 92.887 53.8102 92.887 57.5992 c +h +f +1.5 w +0.75 w +96.6044 57.6102 m +96.6044 61.3992 102.288 61.3992 102.288 57.6102 c +102.288 53.8212 96.6044 53.8212 96.6044 57.6102 c +h +f +1.5 w +0.75 w +100.322 57.6149 m +100.322 61.4039 106.005 61.4039 106.005 57.6149 c +106.005 53.8259 100.322 53.8259 100.322 57.6149 c +h +f +1.5 w +0.75 w +104.039 57.6291 m +104.039 61.4181 109.723 61.4181 109.723 57.6291 c +109.723 53.8401 104.039 53.8401 104.039 57.6291 c +h +f +1.5 w +0.75 w +107.756 57.6398 m +107.756 61.4288 113.44 61.4288 113.44 57.6398 c +113.44 53.8508 107.756 53.8508 107.756 57.6398 c +h +f +1.5 w +0.75 w +111.474 57.6517 m +111.474 61.4407 117.157 61.4407 117.157 57.6517 c +117.157 53.8627 111.474 53.8627 111.474 57.6517 c +h +f +1.5 w +0.75 w +115.191 57.6749 m +115.191 61.4639 120.875 61.4639 120.875 57.6749 c +120.875 53.8859 115.191 53.8859 115.191 57.6749 c +h +f +1.5 w +0.75 w +118.909 57.7 m +118.909 61.489 124.592 61.489 124.592 57.7 c +124.592 53.911 118.909 53.911 118.909 57.7 c +h +f +1.5 w +0.75 w +122.626 57.7452 m +122.626 61.5342 128.309 61.5342 128.309 57.7452 c +128.309 53.9562 122.626 53.9562 122.626 57.7452 c +h +f +1.5 w +0.75 w +126.343 57.8186 m +126.343 61.6076 132.027 61.6076 132.027 57.8186 c +132.027 54.0296 126.343 54.0296 126.343 57.8186 c +h +f +1.5 w +0.75 w +130.061 57.9864 m +130.061 61.7754 135.744 61.7754 135.744 57.9864 c +135.744 54.1974 130.061 54.1974 130.061 57.9864 c +h +f +1.5 w +0.75 w +133.778 58.363 m +133.778 62.152 139.462 62.152 139.462 58.363 c +139.462 54.574 133.778 54.574 133.778 58.363 c +h +f +1.5 w +0.75 w +137.495 59.4485 m +137.495 63.2375 143.179 63.2375 143.179 59.4485 c +143.179 55.6595 137.495 55.6595 137.495 59.4485 c +h +f +1.5 w +0.75 w +141.213 62.8786 m +141.213 66.6676 146.896 66.6676 146.896 62.8786 c +146.896 59.0896 141.213 59.0896 141.213 62.8786 c +h +f +1.5 w +0.75 w +144.93 71.9666 m +144.93 75.7556 150.614 75.7556 150.614 71.9666 c +150.614 68.1776 144.93 68.1776 144.93 71.9666 c +h +f +1.5 w +0.75 w +148.648 91.3822 m +148.648 95.1712 154.331 95.1712 154.331 91.3822 c +154.331 87.5932 148.648 87.5932 148.648 91.3822 c +h +f +1.5 w +0.75 w +152.365 120.099 m +152.365 123.888 158.048 123.888 158.048 120.099 c +158.048 116.31 152.365 116.31 152.365 120.099 c +h +f +1.5 w +0.75 w +156.082 144.032 m +156.082 147.821 161.766 147.821 161.766 144.032 c +161.766 140.243 156.082 140.243 156.082 144.032 c +h +f +1.5 w +0.75 w +159.8 141.121 m +159.8 144.91 165.483 144.91 165.483 141.121 c +165.483 137.332 159.8 137.332 159.8 141.121 c +h +f +1.5 w +0.75 w +163.517 116.065 m +163.517 119.854 169.201 119.854 169.201 116.065 c +169.201 112.276 163.517 112.276 163.517 116.065 c +h +f +1.5 w +0.75 w +167.234 87.4374 m +167.234 91.2264 172.918 91.2264 172.918 87.4374 c +172.918 83.6484 167.234 83.6484 167.234 87.4374 c +h +f +1.5 w +0.75 w +170.952 69.2607 m +170.952 73.0497 176.635 73.0497 176.635 69.2607 c +176.635 65.4717 170.952 65.4717 170.952 69.2607 c +h +f +1.5 w +0.75 w +174.669 61.7631 m +174.669 65.5521 180.353 65.5521 180.353 61.7631 c +180.353 57.9741 174.669 57.9741 174.669 61.7631 c +h +f +1.5 w +0.75 w +178.387 59.0786 m +178.387 62.8676 184.07 62.8676 184.07 59.0786 c +184.07 55.2896 178.387 55.2896 178.387 59.0786 c +h +f +1.5 w +0.75 w +182.104 58.3157 m +182.104 62.1047 187.787 62.1047 187.787 58.3157 c +187.787 54.5267 182.104 54.5267 182.104 58.3157 c +h +f +1.5 w +0.75 w +185.821 58.003 m +185.821 61.792 191.505 61.792 191.505 58.003 c +191.505 54.214 185.821 54.214 185.821 58.003 c +h +f +1.5 w +0.75 w +189.539 57.8629 m +189.539 61.6519 195.222 61.6519 195.222 57.8629 c +195.222 54.0739 189.539 54.0739 189.539 57.8629 c +h +f +1.5 w +0.75 w +193.256 57.7797 m +193.256 61.5687 198.94 61.5687 198.94 57.7797 c +198.94 53.9907 193.256 53.9907 193.256 57.7797 c +h +f +1.5 w +0.75 w +196.973 57.7351 m +196.973 61.5241 202.657 61.5241 202.657 57.7351 c +202.657 53.9461 196.973 53.9461 196.973 57.7351 c +h +f +1.5 w +0.75 w +200.691 57.7039 m +200.691 61.4929 206.374 61.4929 206.374 57.7039 c +206.374 53.9149 200.691 53.9149 200.691 57.7039 c +h +f +1.5 w +0.75 w +204.408 57.6823 m +204.408 61.4713 210.092 61.4713 210.092 57.6823 c +210.092 53.8933 204.408 53.8933 204.408 57.6823 c +h +f +1.5 w +0.75 w +208.126 57.6555 m +208.126 61.4445 213.809 61.4445 213.809 57.6555 c +213.809 53.8665 208.126 53.8665 208.126 57.6555 c +h +f +1.5 w +0.75 w +211.843 57.6341 m +211.843 61.4231 217.526 61.4231 217.526 57.6341 c +217.526 53.8451 211.843 53.8451 211.843 57.6341 c +h +f +1.5 w +0.75 w +215.56 57.6217 m +215.56 61.4107 221.244 61.4107 221.244 57.6217 c +221.244 53.8327 215.56 53.8327 215.56 57.6217 c +h +f +1.5 w +0.75 w +219.278 57.6131 m +219.278 61.4021 224.961 61.4021 224.961 57.6131 c +224.961 53.8241 219.278 53.8241 219.278 57.6131 c +h +f +1.5 w +0.75 w +222.995 57.6049 m +222.995 61.3939 228.679 61.3939 228.679 57.6049 c +228.679 53.8159 222.995 53.8159 222.995 57.6049 c +h +f +1.5 w +0.75 w +226.712 57.5928 m +226.712 61.3818 232.396 61.3818 232.396 57.5928 c +232.396 53.8038 226.712 53.8038 226.712 57.5928 c +h +f +1.5 w +0.75 w +230.43 57.584 m +230.43 61.373 236.113 61.373 236.113 57.584 c +236.113 53.795 230.43 53.795 230.43 57.584 c +h +f +1.5 w +0.75 w +234.147 57.5769 m +234.147 61.3659 239.831 61.3659 239.831 57.5769 c +239.831 53.7879 234.147 53.7879 234.147 57.5769 c +h +f +1.5 w +0.75 w +237.865 57.579 m +237.865 61.368 243.548 61.368 243.548 57.579 c +243.548 53.79 237.865 53.79 237.865 57.579 c +h +f +1.5 w +0.75 w +241.582 57.5734 m +241.582 61.3624 247.265 61.3624 247.265 57.5734 c +247.265 53.7844 241.582 53.7844 241.582 57.5734 c +h +f +1.5 w +0.75 w +245.299 57.5713 m +245.299 61.3603 250.983 61.3603 250.983 57.5713 c +250.983 53.7823 245.299 53.7823 245.299 57.5713 c +h +f +1.5 w +0.75 w +249.017 57.5696 m +249.017 61.3586 254.7 61.3586 254.7 57.5696 c +254.7 53.7806 249.017 53.7806 249.017 57.5696 c +h +f +1.5 w +0.75 w +252.734 57.5642 m +252.734 61.3532 258.418 61.3532 258.418 57.5642 c +258.418 53.7752 252.734 53.7752 252.734 57.5642 c +h +f +1.5 w +0.75 w +256.451 57.5704 m +256.451 61.3594 262.135 61.3594 262.135 57.5704 c +262.135 53.7814 256.451 53.7814 256.451 57.5704 c +h +f +1.5 w +0.75 w +260.169 57.561 m +260.169 61.35 265.852 61.35 265.852 57.561 c +265.852 53.772 260.169 53.772 260.169 57.561 c +h +f +1.5 w +0.75 w +263.886 57.5542 m +263.886 61.3432 269.57 61.3432 269.57 57.5542 c +269.57 53.7652 263.886 53.7652 263.886 57.5542 c +h +f +1.5 w +0.75 w +267.604 57.5566 m +267.604 61.3456 273.287 61.3456 273.287 57.5566 c +273.287 53.7676 267.604 53.7676 267.604 57.5566 c +h +f +1.5 w +0.75 w +271.321 57.5559 m +271.321 61.3449 277.004 61.3449 277.004 57.5559 c +277.004 53.7669 271.321 53.7669 271.321 57.5559 c +h +f +1.5 w +0.75 w +275.038 57.5494 m +275.038 61.3384 280.722 61.3384 280.722 57.5494 c +280.722 53.7604 275.038 53.7604 275.038 57.5494 c +h +f +1.5 w +q +0.0057 0.0055 283.453 274.573 re +W +[1 0 0 1 261.441 255.047] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 7.8246 Tf +(-1) 6.5179 Tj +Q +q +0.0057 0.0055 283.453 274.573 re +W +[1 0 0 1 254.337 251.495] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 11.3813 Tf +( s) 7.2727 Tj +Q +q +0.0057 0.0055 283.453 274.573 re +W +[1 0 0 1 250.074 257.178] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 7.8246 Tf +(7) 3.9123 Tj +Q +q +0.0057 0.0055 283.453 274.573 re +W +[1 0 0 1 238.707 251.495] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 11.3813 Tf +(10) 11.3813 Tj +Q +q +0.0057 0.0055 283.453 274.573 re +W +[1 0 0 1 236.576 251.495] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F18_0 11.3813 Tf +(\327) 2.8453 Tj +Q +q +0.0057 0.0055 283.453 274.573 re +W +[1 0 0 1 116.512 251.495] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 11.3813 Tf +(Carbon: 130 MeV/u, 3.0) 120.1296 Tj +Q +0.75 w +/DeviceRGB {} CS +[0.8 0.8 0.8] SC +/DeviceRGB {} cs +[0.8 0.8 0.8] sc +91.0578 253.986 m +91.0578 257.775 96.7413 257.775 96.7413 253.986 c +96.7413 250.197 91.0578 250.197 91.0578 253.986 c +h +f +1.5 w +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +q +0.0057 0.0055 283.453 274.573 re +W +[1 0 0 1 261.441 240.838] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 7.8246 Tf +(-1) 6.5179 Tj +Q +q +0.0057 0.0055 283.453 274.573 re +W +[1 0 0 1 254.337 237.286] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 11.3813 Tf +( s) 7.2727 Tj +Q +q +0.0057 0.0055 283.453 274.573 re +W +[1 0 0 1 250.074 242.97] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 7.8246 Tf +(7) 3.9123 Tj +Q +q +0.0057 0.0055 283.453 274.573 re +W +[1 0 0 1 238.707 237.286] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 11.3813 Tf +(10) 11.3813 Tj +Q +q +0.0057 0.0055 283.453 274.573 re +W +[1 0 0 1 236.576 237.286] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F18_0 11.3813 Tf +(\327) 2.8453 Tj +Q +q +0.0057 0.0055 283.453 274.573 re +W +[1 0 0 1 116.512 237.286] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 11.3813 Tf +(Carbon: 430 MeV/u, 3.0) 120.1296 Tj +Q +0.75 w +91.0578 240.257 m +91.0578 244.046 96.7413 244.046 96.7413 240.257 c +96.7413 236.468 91.0578 236.468 91.0578 240.257 c +h +f +1.5 w +/DeviceRGB {} CS +[1 1 1] SC +/DeviceRGB {} cs +[1 1 1] sc +q +0.002 w +[] 0 d +283.47 0.0055 283.453 274.573 re +f* +283.47 0.0055 283.453 274.573 re +S +Q +q +0.002 w +[] 0 d +283.473 43.9372 226.76 230.639 re +f* +283.473 43.9372 226.76 230.639 re +S +Q +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +283.473 43.9372 226.76 230.639 re +S +0.75 w +/DeviceRGB {} CS +[0.8 0.8 0.8] SC +/DeviceRGB {} cs +[0.8 0.8 0.8] sc +282.49 57.6233 m +282.49 61.4123 288.173 61.4123 288.173 57.6233 c +288.173 53.8343 282.49 53.8343 282.49 57.6233 c +h +f +1.5 w +0.75 w +286.207 57.6294 m +286.207 61.4184 291.891 61.4184 291.891 57.6294 c +291.891 53.8404 286.207 53.8404 286.207 57.6294 c +h +f +1.5 w +0.75 w +289.925 57.6361 m +289.925 61.4251 295.608 61.4251 295.608 57.6361 c +295.608 53.8471 289.925 53.8471 289.925 57.6361 c +h +f +1.5 w +0.75 w +293.642 57.6393 m +293.642 61.4283 299.326 61.4283 299.326 57.6393 c +299.326 53.8503 293.642 53.8503 293.642 57.6393 c +h +f +1.5 w +0.75 w +297.359 57.654 m +297.359 61.4431 303.043 61.4431 303.043 57.654 c +303.043 53.8651 297.359 53.8651 297.359 57.654 c +h +f +1.5 w +0.75 w +301.077 57.664 m +301.077 61.453 306.76 61.453 306.76 57.664 c +306.76 53.875 301.077 53.875 301.077 57.664 c +h +f +1.5 w +0.75 w +304.794 57.6783 m +304.794 61.4673 310.478 61.4673 310.478 57.6783 c +310.478 53.8893 304.794 53.8893 304.794 57.6783 c +h +f +1.5 w +0.75 w +308.512 57.7022 m +308.512 61.4912 314.195 61.4912 314.195 57.7022 c +314.195 53.9132 308.512 53.9132 308.512 57.7022 c +h +f +1.5 w +0.75 w +312.229 57.7302 m +312.229 61.5192 317.912 61.5192 317.912 57.7302 c +317.912 53.9412 312.229 53.9412 312.229 57.7302 c +h +f +1.5 w +0.75 w +315.946 57.7612 m +315.946 61.5502 321.63 61.5502 321.63 57.7612 c +321.63 53.9722 315.946 53.9722 315.946 57.7612 c +h +f +1.5 w +0.75 w +319.664 57.8093 m +319.664 61.5983 325.347 61.5983 325.347 57.8093 c +325.347 54.0203 319.664 54.0203 319.664 57.8093 c +h +f +1.5 w +0.75 w +323.381 57.873 m +323.381 61.662 329.065 61.662 329.065 57.873 c +329.065 54.084 323.381 54.084 323.381 57.873 c +h +f +1.5 w +0.75 w +327.098 57.9617 m +327.098 61.7507 332.782 61.7507 332.782 57.9617 c +332.782 54.1727 327.098 54.1727 327.098 57.9617 c +h +f +1.5 w +0.75 w +330.816 58.099 m +330.816 61.888 336.499 61.888 336.499 58.099 c +336.499 54.31 330.816 54.31 330.816 58.099 c +h +f +1.5 w +0.75 w +334.533 58.2801 m +334.533 62.0691 340.217 62.0691 340.217 58.2801 c +340.217 54.4911 334.533 54.4911 334.533 58.2801 c +h +f +1.5 w +0.75 w +338.251 58.5639 m +338.251 62.3529 343.934 62.3529 343.934 58.5639 c +343.934 54.7749 338.251 54.7749 338.251 58.5639 c +h +f +1.5 w +0.75 w +341.968 59.0563 m +341.968 62.8453 347.651 62.8453 347.651 59.0563 c +347.651 55.2673 341.968 55.2673 341.968 59.0563 c +h +f +1.5 w +0.75 w +345.685 59.7693 m +345.685 63.5583 351.369 63.5583 351.369 59.7693 c +351.369 55.9803 345.685 55.9803 345.685 59.7693 c +h +f +1.5 w +0.75 w +349.403 60.9676 m +349.403 64.7566 355.086 64.7566 355.086 60.9676 c +355.086 57.1786 349.403 57.1786 349.403 60.9676 c +h +f +1.5 w +0.75 w +353.12 62.934 m +353.12 66.723 358.804 66.723 358.804 62.934 c +358.804 59.145 353.12 59.145 353.12 62.934 c +h +f +1.5 w +0.75 w +356.837 66.0955 m +356.837 69.8845 362.521 69.8845 362.521 66.0955 c +362.521 62.3065 356.837 62.3065 356.837 66.0955 c +h +f +1.5 w +0.75 w +360.555 70.5976 m +360.555 74.3866 366.238 74.3866 366.238 70.5976 c +366.238 66.8086 360.555 66.8086 360.555 70.5976 c +h +f +1.5 w +0.75 w +364.272 76.3129 m +364.272 80.1019 369.956 80.1019 369.956 76.3129 c +369.956 72.5239 364.272 72.5239 364.272 76.3129 c +h +f +1.5 w +0.75 w +367.99 84.2162 m +367.99 88.0052 373.673 88.0052 373.673 84.2162 c +373.673 80.4272 367.99 80.4272 367.99 84.2162 c +h +f +1.5 w +0.75 w +371.707 91.3986 m +371.707 95.1876 377.39 95.1876 377.39 91.3986 c +377.39 87.6096 371.707 87.6096 371.707 91.3986 c +h +f +1.5 w +0.75 w +375.424 97.9877 m +375.424 101.777 381.108 101.777 381.108 97.9877 c +381.108 94.1987 375.424 94.1987 375.424 97.9877 c +h +f +1.5 w +0.75 w +379.142 103.084 m +379.142 106.873 384.825 106.873 384.825 103.084 c +384.825 99.2949 379.142 99.2949 379.142 103.084 c +h +f +1.5 w +0.75 w +382.859 105.079 m +382.859 108.868 388.543 108.868 388.543 105.079 c +388.543 101.29 382.859 101.29 382.859 105.079 c +h +f +1.5 w +0.75 w +386.576 102.147 m +386.576 105.936 392.26 105.936 392.26 102.147 c +392.26 98.3577 386.576 98.3577 386.576 102.147 c +h +f +1.5 w +0.75 w +390.294 97.1364 m +390.294 100.925 395.977 100.925 395.977 97.1364 c +395.977 93.3474 390.294 93.3474 390.294 97.1364 c +h +f +1.5 w +0.75 w +394.011 90.5706 m +394.011 94.3596 399.695 94.3596 399.695 90.5706 c +399.695 86.7816 394.011 86.7816 394.011 90.5706 c +h +f +1.5 w +0.75 w +397.729 82.5736 m +397.729 86.3626 403.412 86.3626 403.412 82.5736 c +403.412 78.7846 397.729 78.7846 397.729 82.5736 c +h +f +1.5 w +0.75 w +401.446 75.5157 m +401.446 79.3047 407.129 79.3047 407.129 75.5157 c +407.129 71.7267 401.446 71.7267 401.446 75.5157 c +h +f +1.5 w +0.75 w +405.163 68.827 m +405.163 72.616 410.847 72.616 410.847 68.827 c +410.847 65.038 405.163 65.038 405.163 68.827 c +h +f +1.5 w +0.75 w +408.881 65.2704 m +408.881 69.0594 414.564 69.0594 414.564 65.2704 c +414.564 61.4814 408.881 61.4814 408.881 65.2704 c +h +f +1.5 w +0.75 w +412.598 62.6279 m +412.598 66.4169 418.282 66.4169 418.282 62.6279 c +418.282 58.8389 412.598 58.8389 412.598 62.6279 c +h +f +1.5 w +0.75 w +416.315 60.7957 m +416.315 64.5847 421.999 64.5847 421.999 60.7957 c +421.999 57.0067 416.315 57.0067 416.315 60.7957 c +h +f +1.5 w +0.75 w +420.033 59.6238 m +420.033 63.4128 425.716 63.4128 425.716 59.6238 c +425.716 55.8348 420.033 55.8348 420.033 59.6238 c +h +f +1.5 w +0.75 w +423.75 58.96 m +423.75 62.749 429.434 62.749 429.434 58.96 c +429.434 55.171 423.75 55.171 423.75 58.96 c +h +f +1.5 w +0.75 w +427.468 58.5154 m +427.468 62.3044 433.151 62.3044 433.151 58.5154 c +433.151 54.7264 427.468 54.7264 427.468 58.5154 c +h +f +1.5 w +0.75 w +431.185 58.2087 m +431.185 61.9977 436.868 61.9977 436.868 58.2087 c +436.868 54.4197 431.185 54.4197 431.185 58.2087 c +h +f +1.5 w +0.75 w +434.902 58.0495 m +434.902 61.8385 440.586 61.8385 440.586 58.0495 c +440.586 54.2605 434.902 54.2605 434.902 58.0495 c +h +f +1.5 w +0.75 w +438.62 57.9288 m +438.62 61.7178 444.303 61.7178 444.303 57.9288 c +444.303 54.1398 438.62 54.1398 438.62 57.9288 c +h +f +1.5 w +0.75 w +442.337 57.8463 m +442.337 61.6353 448.021 61.6353 448.021 57.8463 c +448.021 54.0573 442.337 54.0573 442.337 57.8463 c +h +f +1.5 w +0.75 w +446.054 57.7843 m +446.054 61.5733 451.738 61.5733 451.738 57.7843 c +451.738 53.9953 446.054 53.9953 446.054 57.7843 c +h +f +1.5 w +0.75 w +449.772 57.7402 m +449.772 61.5292 455.455 61.5292 455.455 57.7402 c +455.455 53.9512 449.772 53.9512 449.772 57.7402 c +h +f +1.5 w +0.75 w +453.489 57.7023 m +453.489 61.4912 459.173 61.4912 459.173 57.7023 c +459.173 53.9132 453.489 53.9132 453.489 57.7023 c +h +f +1.5 w +0.75 w +457.207 57.6832 m +457.207 61.4722 462.89 61.4722 462.89 57.6832 c +462.89 53.8942 457.207 53.8942 457.207 57.6832 c +h +f +1.5 w +0.75 w +460.924 57.6595 m +460.924 61.4485 466.607 61.4485 466.607 57.6595 c +466.607 53.8705 460.924 53.8705 460.924 57.6595 c +h +f +1.5 w +0.75 w +464.641 57.6489 m +464.641 61.4379 470.325 61.4379 470.325 57.6489 c +470.325 53.8599 464.641 53.8599 464.641 57.6489 c +h +f +1.5 w +0.75 w +468.359 57.6382 m +468.359 61.4272 474.042 61.4272 474.042 57.6382 c +474.042 53.8492 468.359 53.8492 468.359 57.6382 c +h +f +1.5 w +0.75 w +472.076 57.6258 m +472.076 61.4148 477.76 61.4148 477.76 57.6258 c +477.76 53.8368 472.076 53.8368 472.076 57.6258 c +h +f +1.5 w +0.75 w +475.793 57.618 m +475.793 61.407 481.477 61.407 481.477 57.618 c +481.477 53.829 475.793 53.829 475.793 57.618 c +h +f +1.5 w +0.75 w +479.511 57.609 m +479.511 61.398 485.194 61.398 485.194 57.609 c +485.194 53.82 479.511 53.82 479.511 57.609 c +h +f +1.5 w +0.75 w +483.228 57.6009 m +483.228 61.3899 488.912 61.3899 488.912 57.6009 c +488.912 53.8119 483.228 53.8119 483.228 57.6009 c +h +f +1.5 w +0.75 w +486.946 57.5982 m +486.946 61.3872 492.629 61.3872 492.629 57.5982 c +492.629 53.8092 486.946 53.8092 486.946 57.5982 c +h +f +1.5 w +0.75 w +490.663 57.5868 m +490.663 61.3758 496.346 61.3758 496.346 57.5868 c +496.346 53.7978 490.663 53.7978 490.663 57.5868 c +h +f +1.5 w +0.75 w +494.38 57.5849 m +494.38 61.3739 500.064 61.3739 500.064 57.5849 c +500.064 53.7959 494.38 53.7959 494.38 57.5849 c +h +f +1.5 w +0.75 w +498.098 57.584 m +498.098 61.373 503.781 61.373 503.781 57.584 c +503.781 53.795 498.098 53.795 498.098 57.584 c +h +f +1.5 w +0.75 w +501.815 57.575 m +501.815 61.364 507.499 61.364 507.499 57.575 c +507.499 53.786 501.815 53.786 501.815 57.575 c +h +f +1.5 w +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +283.473 43.9372 m +510.233 43.9372 l +S +q +283.47 0.0055 283.453 274.573 re +W +[1 0 0 1 453.259 12.0774] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 15.6492 Tf +(Channel) 56.5249 Tj +Q +344.81 50.5269 m +344.81 43.9372 l +S +363.397 47.232 m +363.397 43.9372 l +S +381.983 47.232 m +381.983 43.9372 l +S +400.57 47.232 m +400.57 43.9372 l +S +419.157 50.5269 m +419.157 43.9372 l +S +437.744 47.232 m +437.744 43.9372 l +S +456.331 47.232 m +456.331 43.9372 l +S +474.918 47.232 m +474.918 43.9372 l +S +493.505 50.5269 m +493.505 43.9372 l +S +344.81 50.5269 m +344.81 43.9372 l +S +326.223 47.232 m +326.223 43.9372 l +S +307.636 47.232 m +307.636 43.9372 l +S +289.049 47.232 m +289.049 43.9372 l +S +493.505 50.5269 m +493.505 43.9372 l +S +q +283.47 0.0055 283.453 274.573 re +W +[1 0 0 1 338.168 29.1279] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 12.8039 Tf +(20) 12.8039 Tj +Q +q +283.47 0.0055 283.453 274.573 re +W +[1 0 0 1 412.054 29.1279] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 12.8039 Tf +(40) 12.8039 Tj +Q +q +283.47 0.0055 283.453 274.573 re +W +[1 0 0 1 486.65 29.1279] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 12.8039 Tf +(60) 12.8039 Tj +Q +283.473 274.576 m +510.233 274.576 l +S +344.81 267.986 m +344.81 274.576 l +S +363.397 271.281 m +363.397 274.576 l +S +381.983 271.281 m +381.983 274.576 l +S +400.57 271.281 m +400.57 274.576 l +S +419.157 267.986 m +419.157 274.576 l +S +437.744 271.281 m +437.744 274.576 l +S +456.331 271.281 m +456.331 274.576 l +S +474.918 271.281 m +474.918 274.576 l +S +493.505 267.986 m +493.505 274.576 l +S +344.81 267.986 m +344.81 274.576 l +S +326.223 271.281 m +326.223 274.576 l +S +307.636 271.281 m +307.636 274.576 l +S +289.049 271.281 m +289.049 274.576 l +S +493.505 267.986 m +493.505 274.576 l +S +283.473 43.9372 m +283.473 274.576 l +S +q +283.47 0.0055 283.453 274.573 re +W +[0 1 -1 0 245.811 269.256] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 15.6492 Tf +(s) 6.0875 Tj +Q +q +283.47 0.0055 283.453 274.573 re +W +[0 1 -1 0 245.811 260.02] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F18_0 15.6492 Tf +(m) 9.0139 Tj +Q +q +283.47 0.0055 283.453 274.573 re +W +[0 1 -1 0 245.811 196.081] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 15.6492 Tf +( / a.u./312) 64.3495 Tj +Q +q +283.47 0.0055 283.453 274.573 re +W +[0 1 -1 0 250.074 171.926] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 9.9586 Tf +(BOM) 23.7911 Tj +Q +q +283.47 0.0055 283.453 274.573 re +W +[0 1 -1 0 245.811 160.559] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 15.6492 Tf +(A) 11.2987 Tj +Q +290.616 57.5042 m +283.473 57.5042 l +S +287.045 64.2877 m +283.473 64.2877 l +S +287.045 71.0712 m +283.473 71.0712 l +S +287.045 77.8546 m +283.473 77.8546 l +S +287.045 84.6381 m +283.473 84.6381 l +S +290.616 91.4216 m +283.473 91.4216 l +S +287.045 98.2051 m +283.473 98.2051 l +S +287.045 104.989 m +283.473 104.989 l +S +287.045 111.772 m +283.473 111.772 l +S +287.045 118.556 m +283.473 118.556 l +S +290.616 125.339 m +283.473 125.339 l +S +287.045 132.123 m +283.473 132.123 l +S +287.045 138.906 m +283.473 138.906 l +S +287.045 145.69 m +283.473 145.69 l +S +287.045 152.473 m +283.473 152.473 l +S +290.616 159.257 m +283.473 159.257 l +S +287.045 166.04 m +283.473 166.04 l +S +287.045 172.824 m +283.473 172.824 l +S +287.045 179.607 m +283.473 179.607 l +S +287.045 186.39 m +283.473 186.39 l +S +290.616 193.174 m +283.473 193.174 l +S +287.045 199.957 m +283.473 199.957 l +S +287.045 206.741 m +283.473 206.741 l +S +287.045 213.524 m +283.473 213.524 l +S +287.045 220.308 m +283.473 220.308 l +S +290.616 227.091 m +283.473 227.091 l +S +287.045 233.875 m +283.473 233.875 l +S +287.045 240.658 m +283.473 240.658 l +S +287.045 247.442 m +283.473 247.442 l +S +287.045 254.225 m +283.473 254.225 l +S +290.616 261.009 m +283.473 261.009 l +S +290.616 57.5042 m +283.473 57.5042 l +S +287.045 50.7207 m +283.473 50.7207 l +S +287.045 43.9372 m +283.473 43.9372 l +S +290.616 261.009 m +283.473 261.009 l +S +287.045 267.792 m +283.473 267.792 l +S +287.045 274.576 m +283.473 274.576 l +S +q +283.47 0.0055 283.453 274.573 re +W +[1 0 0 1 275.65 52.5724] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 12.8039 Tf +(0) 6.402 Tj +Q +q +283.47 0.0055 283.453 274.573 re +W +[1 0 0 1 262.862 86.6734] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 12.8039 Tf +(500) 19.2059 Tj +Q +q +283.47 0.0055 283.453 274.573 re +W +[1 0 0 1 256.468 120.774] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 12.8039 Tf +(1000) 25.6078 Tj +Q +q +283.47 0.0055 283.453 274.573 re +W +[1 0 0 1 256.468 154.875] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 12.8039 Tf +(1500) 25.6078 Tj +Q +q +283.47 0.0055 283.453 274.573 re +W +[1 0 0 1 256.468 188.266] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 12.8039 Tf +(2000) 25.6078 Tj +Q +q +283.47 0.0055 283.453 274.573 re +W +[1 0 0 1 256.468 222.367] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 12.8039 Tf +(2500) 25.6078 Tj +Q +q +283.47 0.0055 283.453 274.573 re +W +[1 0 0 1 256.468 256.468] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 12.8039 Tf +(3000) 25.6078 Tj +Q +510.233 43.9372 m +510.233 274.576 l +S +503.09 57.5042 m +510.233 57.5042 l +S +506.661 64.2877 m +510.233 64.2877 l +S +506.661 71.0712 m +510.233 71.0712 l +S +506.661 77.8546 m +510.233 77.8546 l +S +506.661 84.6381 m +510.233 84.6381 l +S +503.09 91.4216 m +510.233 91.4216 l +S +506.661 98.2051 m +510.233 98.2051 l +S +506.661 104.989 m +510.233 104.989 l +S +506.661 111.772 m +510.233 111.772 l +S +506.661 118.556 m +510.233 118.556 l +S +503.09 125.339 m +510.233 125.339 l +S +506.661 132.123 m +510.233 132.123 l +S +506.661 138.906 m +510.233 138.906 l +S +506.661 145.69 m +510.233 145.69 l +S +506.661 152.473 m +510.233 152.473 l +S +503.09 159.257 m +510.233 159.257 l +S +506.661 166.04 m +510.233 166.04 l +S +506.661 172.824 m +510.233 172.824 l +S +506.661 179.607 m +510.233 179.607 l +S +506.661 186.39 m +510.233 186.39 l +S +503.09 193.174 m +510.233 193.174 l +S +506.661 199.957 m +510.233 199.957 l +S +506.661 206.741 m +510.233 206.741 l +S +506.661 213.524 m +510.233 213.524 l +S +506.661 220.308 m +510.233 220.308 l +S +503.09 227.091 m +510.233 227.091 l +S +506.661 233.875 m +510.233 233.875 l +S +506.661 240.658 m +510.233 240.658 l +S +506.661 247.442 m +510.233 247.442 l +S +506.661 254.225 m +510.233 254.225 l +S +503.09 261.009 m +510.233 261.009 l +S +503.09 57.5042 m +510.233 57.5042 l +S +506.661 50.7207 m +510.233 50.7207 l +S +506.661 43.9372 m +510.233 43.9372 l +S +503.09 261.009 m +510.233 261.009 l +S +506.661 267.792 m +510.233 267.792 l +S +506.661 274.576 m +510.233 274.576 l +S +0.75 w +282.49 57.5593 m +282.49 61.3483 288.173 61.3483 288.173 57.5593 c +288.173 53.7703 282.49 53.7703 282.49 57.5593 c +h +f +1.5 w +0.75 w +286.207 57.5599 m +286.207 61.3489 291.891 61.3489 291.891 57.5599 c +291.891 53.7709 286.207 53.7709 286.207 57.5599 c +h +f +1.5 w +0.75 w +289.925 57.5633 m +289.925 61.3523 295.608 61.3523 295.608 57.5633 c +295.608 53.7743 289.925 53.7743 289.925 57.5633 c +h +f +1.5 w +0.75 w +293.642 57.5638 m +293.642 61.3528 299.326 61.3528 299.326 57.5638 c +299.326 53.7748 293.642 53.7748 293.642 57.5638 c +h +f +1.5 w +0.75 w +297.359 57.5653 m +297.359 61.3543 303.043 61.3543 303.043 57.5653 c +303.043 53.7763 297.359 53.7763 297.359 57.5653 c +h +f +1.5 w +0.75 w +301.077 57.5669 m +301.077 61.3559 306.76 61.3559 306.76 57.5669 c +306.76 53.7779 301.077 53.7779 301.077 57.5669 c +h +f +1.5 w +0.75 w +304.794 57.5691 m +304.794 61.3581 310.478 61.3581 310.478 57.5691 c +310.478 53.7801 304.794 53.7801 304.794 57.5691 c +h +f +1.5 w +0.75 w +308.512 57.5652 m +308.512 61.3542 314.195 61.3542 314.195 57.5652 c +314.195 53.7762 308.512 53.7762 308.512 57.5652 c +h +f +1.5 w +0.75 w +312.229 57.5717 m +312.229 61.3607 317.912 61.3607 317.912 57.5717 c +317.912 53.7827 312.229 53.7827 312.229 57.5717 c +h +f +1.5 w +0.75 w +315.946 57.5786 m +315.946 61.3676 321.63 61.3676 321.63 57.5786 c +321.63 53.7896 315.946 53.7896 315.946 57.5786 c +h +f +1.5 w +0.75 w +319.664 57.5817 m +319.664 61.3707 325.347 61.3707 325.347 57.5817 c +325.347 53.7927 319.664 53.7927 319.664 57.5817 c +h +f +1.5 w +0.75 w +323.381 57.5854 m +323.381 61.3744 329.065 61.3744 329.065 57.5854 c +329.065 53.7964 323.381 53.7964 323.381 57.5854 c +h +f +1.5 w +0.75 w +327.098 57.5887 m +327.098 61.3777 332.782 61.3777 332.782 57.5887 c +332.782 53.7997 327.098 53.7997 327.098 57.5887 c +h +f +1.5 w +0.75 w +330.816 57.599 m +330.816 61.388 336.499 61.388 336.499 57.599 c +336.499 53.81 330.816 53.81 330.816 57.599 c +h +f +1.5 w +0.75 w +334.533 57.6068 m +334.533 61.3958 340.217 61.3958 340.217 57.6068 c +340.217 53.8178 334.533 53.8178 334.533 57.6068 c +h +f +1.5 w +0.75 w +338.251 57.6175 m +338.251 61.4065 343.934 61.4065 343.934 57.6175 c +343.934 53.8285 338.251 53.8285 338.251 57.6175 c +h +f +1.5 w +0.75 w +341.968 57.6348 m +341.968 61.4238 347.651 61.4238 347.651 57.6348 c +347.651 53.8458 341.968 53.8458 341.968 57.6348 c +h +f +1.5 w +0.75 w +345.685 57.6577 m +345.685 61.4468 351.369 61.4468 351.369 57.6577 c +351.369 53.8688 345.685 53.8688 345.685 57.6577 c +h +f +1.5 w +0.75 w +349.403 57.692 m +349.403 61.481 355.086 61.481 355.086 57.692 c +355.086 53.903 349.403 53.903 349.403 57.692 c +h +f +1.5 w +0.75 w +353.12 57.7559 m +353.12 61.5449 358.804 61.5449 358.804 57.7559 c +358.804 53.9669 353.12 53.9669 353.12 57.7559 c +h +f +1.5 w +0.75 w +356.837 57.8937 m +356.837 61.6827 362.521 61.6827 362.521 57.8937 c +362.521 54.1047 356.837 54.1047 356.837 57.8937 c +h +f +1.5 w +0.75 w +360.555 58.2018 m +360.555 61.9908 366.238 61.9908 366.238 58.2018 c +366.238 54.4128 360.555 54.4128 360.555 58.2018 c +h +f +1.5 w +0.75 w +364.272 59.036 m +364.272 62.825 369.956 62.825 369.956 59.036 c +369.956 55.247 364.272 55.247 364.272 59.036 c +h +f +1.5 w +0.75 w +367.99 61.7725 m +367.99 65.5615 373.673 65.5615 373.673 61.7725 c +373.673 57.9835 367.99 57.9835 367.99 61.7725 c +h +f +1.5 w +0.75 w +371.707 69.6951 m +371.707 73.4841 377.39 73.4841 377.39 69.6951 c +377.39 65.9061 371.707 65.9061 371.707 69.6951 c +h +f +1.5 w +0.75 w +375.424 88.0221 m +375.424 91.8111 381.108 91.8111 381.108 88.0221 c +381.108 84.2331 375.424 84.2331 375.424 88.0221 c +h +f +1.5 w +0.75 w +379.142 114.676 m +379.142 118.465 384.825 118.465 384.825 114.676 c +384.825 110.887 379.142 110.887 379.142 114.676 c +h +f +1.5 w +0.75 w +382.859 131.453 m +382.859 135.242 388.543 135.242 388.543 131.453 c +388.543 127.664 382.859 127.664 382.859 131.453 c +h +f +1.5 w +0.75 w +386.576 120.431 m +386.576 124.22 392.26 124.22 392.26 120.431 c +392.26 116.642 386.576 116.642 386.576 120.431 c +h +f +1.5 w +0.75 w +390.294 95.0733 m +390.294 98.8623 395.977 98.8623 395.977 95.0733 c +395.977 91.2843 390.294 91.2843 390.294 95.0733 c +h +f +1.5 w +0.75 w +394.011 74.0465 m +394.011 77.8355 399.695 77.8355 399.695 74.0465 c +399.695 70.2575 394.011 70.2575 394.011 74.0465 c +h +f +1.5 w +0.75 w +397.729 63.4541 m +397.729 67.2431 403.412 67.2431 403.412 63.4541 c +403.412 59.6651 397.729 59.6651 397.729 63.4541 c +h +f +1.5 w +0.75 w +401.446 59.6625 m +401.446 63.4515 407.129 63.4515 407.129 59.6625 c +407.129 55.8735 401.446 55.8735 401.446 59.6625 c +h +f +1.5 w +0.75 w +405.163 58.3771 m +405.163 62.1661 410.847 62.1661 410.847 58.3771 c +410.847 54.5881 405.163 54.5881 405.163 58.3771 c +h +f +1.5 w +0.75 w +408.881 58.0095 m +408.881 61.7985 414.564 61.7985 414.564 58.0095 c +414.564 54.2205 408.881 54.2205 408.881 58.0095 c +h +f +1.5 w +0.75 w +412.598 57.8536 m +412.598 61.6426 418.282 61.6426 418.282 57.8536 c +418.282 54.0646 412.598 54.0646 412.598 57.8536 c +h +f +1.5 w +0.75 w +416.315 57.7674 m +416.315 61.5564 421.999 61.5564 421.999 57.7674 c +421.999 53.9784 416.315 53.9784 416.315 57.7674 c +h +f +1.5 w +0.75 w +420.033 57.7117 m +420.033 61.5007 425.716 61.5007 425.716 57.7117 c +425.716 53.9227 420.033 53.9227 420.033 57.7117 c +h +f +1.5 w +0.75 w +423.75 57.6765 m +423.75 61.4655 429.434 61.4655 429.434 57.6765 c +429.434 53.8875 423.75 53.8875 423.75 57.6765 c +h +f +1.5 w +0.75 w +427.468 57.648 m +427.468 61.437 433.151 61.437 433.151 57.648 c +433.151 53.859 427.468 53.859 427.468 57.648 c +h +f +1.5 w +0.75 w +431.185 57.6266 m +431.185 61.4156 436.868 61.4156 436.868 57.6266 c +436.868 53.8376 431.185 53.8376 431.185 57.6266 c +h +f +1.5 w +0.75 w +434.902 57.6153 m +434.902 61.4043 440.586 61.4043 440.586 57.6153 c +440.586 53.8263 434.902 53.8263 434.902 57.6153 c +h +f +1.5 w +0.75 w +438.62 57.6035 m +438.62 61.3925 444.303 61.3925 444.303 57.6035 c +444.303 53.8145 438.62 53.8145 438.62 57.6035 c +h +f +1.5 w +0.75 w +442.337 57.5905 m +442.337 61.3795 448.021 61.3795 448.021 57.5905 c +448.021 53.8015 442.337 53.8015 442.337 57.5905 c +h +f +1.5 w +0.75 w +446.054 57.5838 m +446.054 61.3728 451.738 61.3728 451.738 57.5838 c +451.738 53.7948 446.054 53.7948 446.054 57.5838 c +h +f +1.5 w +0.75 w +449.772 57.5727 m +449.772 61.3617 455.455 61.3617 455.455 57.5727 c +455.455 53.7837 449.772 53.7837 449.772 57.5727 c +h +f +1.5 w +0.75 w +453.489 57.5691 m +453.489 61.3581 459.173 61.3581 459.173 57.5691 c +459.173 53.7801 453.489 53.7801 453.489 57.5691 c +h +f +1.5 w +0.75 w +457.207 57.5635 m +457.207 61.3525 462.89 61.3525 462.89 57.5635 c +462.89 53.7745 457.207 53.7745 457.207 57.5635 c +h +f +1.5 w +0.75 w +460.924 57.5616 m +460.924 61.3506 466.607 61.3506 466.607 57.5616 c +466.607 53.7726 460.924 53.7726 460.924 57.5616 c +h +f +1.5 w +0.75 w +464.641 57.5551 m +464.641 61.3441 470.325 61.3441 470.325 57.5551 c +470.325 53.7661 464.641 53.7661 464.641 57.5551 c +h +f +1.5 w +0.75 w +468.359 57.5546 m +468.359 61.3436 474.042 61.3436 474.042 57.5546 c +474.042 53.7656 468.359 53.7656 468.359 57.5546 c +h +f +1.5 w +0.75 w +472.076 57.5546 m +472.076 61.3436 477.76 61.3436 477.76 57.5546 c +477.76 53.7656 472.076 53.7656 472.076 57.5546 c +h +f +1.5 w +0.75 w +475.793 57.5533 m +475.793 61.3423 481.477 61.3423 481.477 57.5533 c +481.477 53.7643 475.793 53.7643 475.793 57.5533 c +h +f +1.5 w +0.75 w +479.511 57.5504 m +479.511 61.3394 485.194 61.3394 485.194 57.5504 c +485.194 53.7614 479.511 53.7614 479.511 57.5504 c +h +f +1.5 w +0.75 w +483.228 57.5457 m +483.228 61.3347 488.912 61.3347 488.912 57.5457 c +488.912 53.7567 483.228 53.7567 483.228 57.5457 c +h +f +1.5 w +0.75 w +486.946 57.5457 m +486.946 61.3347 492.629 61.3347 492.629 57.5457 c +492.629 53.7567 486.946 53.7567 486.946 57.5457 c +h +f +1.5 w +0.75 w +490.663 57.5424 m +490.663 61.3314 496.346 61.3314 496.346 57.5424 c +496.346 53.7534 490.663 53.7534 490.663 57.5424 c +h +f +1.5 w +0.75 w +494.38 57.5391 m +494.38 61.3281 500.064 61.3281 500.064 57.5391 c +500.064 53.7501 494.38 53.7501 494.38 57.5391 c +h +f +1.5 w +0.75 w +498.098 57.5338 m +498.098 61.3228 503.781 61.3228 503.781 57.5338 c +503.781 53.7448 498.098 53.7448 498.098 57.5338 c +h +f +1.5 w +0.75 w +501.815 57.5321 m +501.815 61.3211 507.499 61.3211 507.499 57.5321 c +507.499 53.7431 501.815 53.7431 501.815 57.5321 c +h +f +1.5 w +q +283.47 0.0055 283.453 274.573 re +W +[1 0 0 1 488.071 255.047] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 7.8246 Tf +(-1) 6.5179 Tj +Q +q +283.47 0.0055 283.453 274.573 re +W +[1 0 0 1 480.966 251.495] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 11.3813 Tf +( s) 7.2727 Tj +Q +q +283.47 0.0055 283.453 274.573 re +W +[1 0 0 1 476.704 257.178] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 7.8246 Tf +(7) 3.9123 Tj +Q +q +283.47 0.0055 283.453 274.573 re +W +[1 0 0 1 465.337 251.495] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 11.3813 Tf +(10) 11.3813 Tj +Q +q +283.47 0.0055 283.453 274.573 re +W +[1 0 0 1 463.205 251.495] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F18_0 11.3813 Tf +(\327) 2.8453 Tj +Q +q +283.47 0.0055 283.453 274.573 re +W +[1 0 0 1 343.141 251.495] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 11.3813 Tf +(Oxygen: 152 MeV/u, 1.5) 120.1296 Tj +Q +0.75 w +/DeviceRGB {} CS +[0.8 0.8 0.8] SC +/DeviceRGB {} cs +[0.8 0.8 0.8] sc +317.832 253.986 m +317.832 257.775 323.515 257.775 323.515 253.986 c +323.515 250.197 317.832 250.197 317.832 253.986 c +h +f +1.5 w +/DeviceRGB {} CS +[0 0 0] SC +/DeviceRGB {} cs +[0 0 0] sc +q +283.47 0.0055 283.453 274.573 re +W +[1 0 0 1 488.071 240.838] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 7.8246 Tf +(-1) 6.5179 Tj +Q +q +283.47 0.0055 283.453 274.573 re +W +[1 0 0 1 480.966 237.286] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 11.3813 Tf +( s) 7.2727 Tj +Q +q +283.47 0.0055 283.453 274.573 re +W +[1 0 0 1 476.704 242.97] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 7.8246 Tf +(7) 3.9123 Tj +Q +q +283.47 0.0055 283.453 274.573 re +W +[1 0 0 1 465.337 237.286] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 11.3813 Tf +(10) 11.3813 Tj +Q +q +283.47 0.0055 283.453 274.573 re +W +[1 0 0 1 463.205 237.286] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F18_0 11.3813 Tf +(\327) 2.8453 Tj +Q +q +283.47 0.0055 283.453 274.573 re +W +[1 0 0 1 343.141 237.286] cm +[1 0 0 1 0 0] Tm +0 0 Td +/F8_0 11.3813 Tf +(Oxygen: 423 MeV/u, 1.5) 120.1296 Tj +Q +0.75 w +317.832 240.257 m +317.832 244.046 323.515 244.046 323.515 240.257 c +323.515 236.468 317.832 236.468 317.832 240.257 c +h +f +1.5 w +Q +showpage +%%PageTrailer +pdfEndPage +%%Trailer +end +%%DocumentSuppliedResources: +%%EOF diff --git a/Scripts_20161126/figs/beamprofileexamples_avg.pdf b/Scripts_20161126/figs/beamprofileexamples_avg.pdf new file mode 100644 index 0000000..20746ff Binary files /dev/null and b/Scripts_20161126/figs/beamprofileexamples_avg.pdf differ diff --git a/Scripts_20161126/figs/beamprofileexamples_avg.png b/Scripts_20161126/figs/beamprofileexamples_avg.png new file mode 100644 index 0000000..a147dd2 Binary files /dev/null and b/Scripts_20161126/figs/beamprofileexamples_avg.png differ diff --git a/Scripts_20161126/figs/betadedxz2.C b/Scripts_20161126/figs/betadedxz2.C new file mode 100644 index 0000000..bba3a6c --- /dev/null +++ b/Scripts_20161126/figs/betadedxz2.C @@ -0,0 +1,446 @@ +void betadedxz2() +{ +//=========Macro generated from canvas: c1_n12/c1_n12 +//========= (Tue Dec 5 12:04:04 2017) by ROOT version6.06/02 + TCanvas *c1_n12 = new TCanvas("c1_n12", "c1_n12",10,71,700,500); + gStyle->SetOptStat(0); + gStyle->SetOptTitle(0); + c1_n12->Range(0.2050384,-0.2837461,0.7948584,1.489667); + c1_n12->SetFillColor(0); + c1_n12->SetBorderMode(0); + c1_n12->SetBorderSize(2); + c1_n12->SetTickx(1); + c1_n12->SetTicky(1); + c1_n12->SetLeftMargin(0.14); + c1_n12->SetRightMargin(0.08); + c1_n12->SetTopMargin(0.05); + c1_n12->SetBottomMargin(0.16); + c1_n12->SetFrameLineWidth(2); + c1_n12->SetFrameBorderMode(0); + c1_n12->SetFrameLineWidth(2); + c1_n12->SetFrameBorderMode(0); + + TMultiGraph *multigraph = new TMultiGraph(); + multigraph->SetName(""); + multigraph->SetTitle(" "); + + Double_t Graph_fx9[26] = { + 0.308525, + 0.340994, + 0.366173, + 0.386744, + 0.404198, + 0.419413, + 0.432945, + 0.44518, + 0.456345, + 0.466617, + 0.476154, + 0.485023, + 0.493348, + 0.501186, + 0.508639, + 0.515744, + 0.522563, + 0.529111, + 0.53538, + 0.541398, + 0.549576, + 0.557429, + 0.564849, + 0.571868, + 0.578541, + 0.5849}; + Double_t Graph_fy9[26] = { + 1.17009, + 1.22548, + 1.25412, + 1.26762, + 1.27924, + 1.28926, + 1.29822, + 1.30487, + 1.31167, + 1.31966, + 1.32693, + 1.33277, + 1.33748, + 1.342, + 1.34494, + 1.34552, + 1.34422, + 1.34555, + 1.34837, + 1.35181, + 1.35453, + 1.35491, + 1.35663, + 1.35679, + 1.35989, + 1.36464}; + TGraph *graph = new TGraph(26,Graph_fx9,Graph_fy9); + graph->SetName("Graph"); + graph->SetTitle("energylist_p_bpmbeta1.txt"); + graph->SetFillColor(1); + graph->SetLineWidth(2); + graph->SetMarkerStyle(20); + + TH1F *Graph_Graph9 = new TH1F("Graph_Graph9","energylist_p_bpmbeta1.txt",100,0.2808875,0.6125375); + Graph_Graph9->SetMinimum(1.150635); + Graph_Graph9->SetMaximum(1.384095); + Graph_Graph9->SetDirectory(0); + Graph_Graph9->SetStats(0); + Graph_Graph9->SetLineWidth(2); + Graph_Graph9->SetMarkerStyle(21); + Graph_Graph9->GetXaxis()->SetNdivisions(505); + Graph_Graph9->GetXaxis()->SetLabelFont(22); + Graph_Graph9->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph9->GetXaxis()->SetLabelSize(0.05); + Graph_Graph9->GetXaxis()->SetTitleSize(0.06); + Graph_Graph9->GetXaxis()->SetTitleFont(22); + Graph_Graph9->GetYaxis()->SetLabelFont(22); + Graph_Graph9->GetYaxis()->SetLabelSize(0.05); + Graph_Graph9->GetYaxis()->SetTitleSize(0.06); + Graph_Graph9->GetYaxis()->SetTitleFont(22); + Graph_Graph9->GetZaxis()->SetLabelFont(22); + Graph_Graph9->GetZaxis()->SetLabelSize(0.05); + Graph_Graph9->GetZaxis()->SetTitleSize(0.06); + Graph_Graph9->GetZaxis()->SetTitleFont(22); + graph->SetHistogram(Graph_Graph9); + + + TF1 *tf1_btvbeta110 = new TF1("tf1_btvbeta1","[0]*( (1- 0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1] -x*x) )/TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7 -x*x) ) / (1+[2]*(1- 0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1] -x*x) )/TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7 -x*x) )*1*1.65901*TMath::Power(x,-1.7218))+ (0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1] -x*x) )/TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7 -x*x) ) )",0.2808875,0.6125375); + tf1_btvbeta110->SetFillStyle(0); + tf1_btvbeta110->SetMarkerStyle(21); + tf1_btvbeta110->SetLineWidth(2); + tf1_btvbeta110->SetChisquare(0.001127477); + tf1_btvbeta110->SetNDF(23); + tf1_btvbeta110->GetXaxis()->SetNdivisions(505); + tf1_btvbeta110->GetXaxis()->SetLabelFont(22); + tf1_btvbeta110->GetXaxis()->SetLabelOffset(0.015); + tf1_btvbeta110->GetXaxis()->SetLabelSize(0.05); + tf1_btvbeta110->GetXaxis()->SetTitleSize(0.06); + tf1_btvbeta110->GetXaxis()->SetTitleFont(22); + tf1_btvbeta110->GetYaxis()->SetLabelFont(22); + tf1_btvbeta110->GetYaxis()->SetLabelSize(0.05); + tf1_btvbeta110->GetYaxis()->SetTitleSize(0.06); + tf1_btvbeta110->GetYaxis()->SetTitleFont(22); + tf1_btvbeta110->SetParameter(0,1.18145); + tf1_btvbeta110->SetParError(0,0.00692424); + tf1_btvbeta110->SetParLimits(0,0,0); + tf1_btvbeta110->SetParameter(1,0.05757586); + tf1_btvbeta110->SetParError(1,0.001610998); + tf1_btvbeta110->SetParLimits(1,0,0); + tf1_btvbeta110->SetParameter(2,-1.345384); + tf1_btvbeta110->SetParError(2,0.02225413); + tf1_btvbeta110->SetParLimits(2,0,0); + graph->GetListOfFunctions()->Add(tf1_btvbeta110); + multigraph->Add(graph,"p"); + + Double_t Graph_fx11[26] = { + 0.347272, + 0.371222, + 0.391037, + 0.408018, + 0.422922, + 0.436235, + 0.447968, + 0.459299, + 0.470415, + 0.478846, + 0.487649, + 0.495887, + 0.503656, + 0.510991, + 0.517959, + 0.524572, + 0.530889, + 0.536926, + 0.542699, + 0.550671, + 0.558452, + 0.565815, + 0.565815, + 0.572799, + 0.579449, + 0.585785}; + Double_t Graph_fy11[26] = { + 1.15061, + 1.18124, + 1.20539, + 1.21968, + 1.22856, + 1.23451, + 1.24983, + 1.2618, + 1.26521, + 1.26492, + 1.26371, + 1.27061, + 1.27334, + 1.27687, + 1.2796, + 1.28062, + 1.28058, + 1.28007, + 1.27389, + 1.27711, + 1.28057, + 1.28576, + 1.28604, + 1.29318, + 1.29729, + 1.29912}; + graph = new TGraph(26,Graph_fx11,Graph_fy11); + graph->SetName("Graph"); + graph->SetTitle("energylist_he_bpmbeta1.txt"); + graph->SetFillColor(1); + graph->SetLineWidth(2); + graph->SetMarkerStyle(21); + + TH1F *Graph_Graph11 = new TH1F("Graph_Graph11","energylist_he_bpmbeta1.txt",100,0.3234207,0.6096363); + Graph_Graph11->SetMinimum(1.135759); + Graph_Graph11->SetMaximum(1.313971); + Graph_Graph11->SetDirectory(0); + Graph_Graph11->SetStats(0); + Graph_Graph11->SetLineWidth(2); + Graph_Graph11->SetMarkerStyle(21); + Graph_Graph11->GetXaxis()->SetNdivisions(505); + Graph_Graph11->GetXaxis()->SetLabelFont(22); + Graph_Graph11->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph11->GetXaxis()->SetLabelSize(0.05); + Graph_Graph11->GetXaxis()->SetTitleSize(0.06); + Graph_Graph11->GetXaxis()->SetTitleFont(22); + Graph_Graph11->GetYaxis()->SetLabelFont(22); + Graph_Graph11->GetYaxis()->SetLabelSize(0.05); + Graph_Graph11->GetYaxis()->SetTitleSize(0.06); + Graph_Graph11->GetYaxis()->SetTitleFont(22); + Graph_Graph11->GetZaxis()->SetLabelFont(22); + Graph_Graph11->GetZaxis()->SetLabelSize(0.05); + Graph_Graph11->GetZaxis()->SetTitleSize(0.06); + Graph_Graph11->GetZaxis()->SetTitleFont(22); + graph->SetHistogram(Graph_Graph11); + + multigraph->Add(graph,"p"); + + Double_t Graph_fx12[26] = { + 0.407871, + 0.44884, + 0.479338, + 0.503822, + 0.524858, + 0.543065, + 0.5589, + 0.573741, + 0.586721, + 0.59808, + 0.608891, + 0.619196, + 0.628229, + 0.636893, + 0.645213, + 0.653209, + 0.6609, + 0.667643, + 0.674162, + 0.681086, + 0.689547, + 0.698204, + 0.705926, + 0.713327, + 0.719927, + 0.726761}; + Double_t Graph_fy12[26] = { + 0.70017, + 0.75557, + 0.795619, + 0.823137, + 0.846695, + 0.867102, + 0.886679, + 0.902141, + 0.91659, + 0.929151, + 0.94155, + 0.952243, + 0.961937, + 0.970188, + 0.976903, + 0.987228, + 0.994266, + 1.00407, + 1.00707, + 1.01511, + 1.02523, + 1.03263, + 1.04101, + 1.04986, + 1.05878, + 1.06459}; + graph = new TGraph(26,Graph_fx12,Graph_fy12); + graph->SetName("Graph"); + graph->SetTitle("energylist_c_bpmbeta1.txt"); + graph->SetFillColor(1); + graph->SetLineWidth(2); + graph->SetMarkerStyle(22); + + TH1F *Graph_Graph12 = new TH1F("Graph_Graph12","energylist_c_bpmbeta1.txt",100,0.375982,0.75865); + Graph_Graph12->SetMinimum(0.663728); + Graph_Graph12->SetMaximum(1.101032); + Graph_Graph12->SetDirectory(0); + Graph_Graph12->SetStats(0); + Graph_Graph12->SetLineWidth(2); + Graph_Graph12->SetMarkerStyle(21); + Graph_Graph12->GetXaxis()->SetNdivisions(505); + Graph_Graph12->GetXaxis()->SetLabelFont(22); + Graph_Graph12->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph12->GetXaxis()->SetLabelSize(0.05); + Graph_Graph12->GetXaxis()->SetTitleSize(0.06); + Graph_Graph12->GetXaxis()->SetTitleFont(22); + Graph_Graph12->GetYaxis()->SetLabelFont(22); + Graph_Graph12->GetYaxis()->SetLabelSize(0.05); + Graph_Graph12->GetYaxis()->SetTitleSize(0.06); + Graph_Graph12->GetYaxis()->SetTitleFont(22); + Graph_Graph12->GetZaxis()->SetLabelFont(22); + Graph_Graph12->GetZaxis()->SetLabelSize(0.05); + Graph_Graph12->GetZaxis()->SetTitleSize(0.06); + Graph_Graph12->GetZaxis()->SetTitleFont(22); + graph->SetHistogram(Graph_Graph12); + + multigraph->Add(graph,"p"); + + Double_t Graph_fx13[21] = { + 0.436386, + 0.479001, + 0.511349, + 0.537325, + 0.559062, + 0.577647, + 0.594124, + 0.608731, + 0.621998, + 0.634024, + 0.645051, + 0.655227, + 0.664724, + 0.673476, + 0.681811, + 0.689682, + 0.697243, + 0.704219, + 0.710969, + 0.717113, + 0.726111}; + Double_t Graph_fy13[21] = { + 0.637511, + 0.682739, + 0.716111, + 0.740358, + 0.761285, + 0.780592, + 0.797751, + 0.814711, + 0.828105, + 0.838841, + 0.851544, + 0.861821, + 0.871405, + 0.881324, + 0.891275, + 0.901056, + 0.909476, + 0.915073, + 0.921715, + 0.925899, + 0.939145}; + graph = new TGraph(21,Graph_fx13,Graph_fy13); + graph->SetName("Graph"); + graph->SetTitle("energylist_o_bpmbeta1.txt"); + graph->SetFillColor(1); + graph->SetLineWidth(2); + graph->SetMarkerStyle(23); + + TH1F *Graph_Graph13 = new TH1F("Graph_Graph13","energylist_o_bpmbeta1.txt",100,0.4074135,0.7550835); + Graph_Graph13->SetMinimum(0.6073476); + Graph_Graph13->SetMaximum(0.9693084); + Graph_Graph13->SetDirectory(0); + Graph_Graph13->SetStats(0); + Graph_Graph13->SetLineWidth(2); + Graph_Graph13->SetMarkerStyle(21); + Graph_Graph13->GetXaxis()->SetNdivisions(505); + Graph_Graph13->GetXaxis()->SetLabelFont(22); + Graph_Graph13->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph13->GetXaxis()->SetLabelSize(0.05); + Graph_Graph13->GetXaxis()->SetTitleSize(0.06); + Graph_Graph13->GetXaxis()->SetTitleFont(22); + Graph_Graph13->GetYaxis()->SetLabelFont(22); + Graph_Graph13->GetYaxis()->SetLabelSize(0.05); + Graph_Graph13->GetYaxis()->SetTitleSize(0.06); + Graph_Graph13->GetYaxis()->SetTitleFont(22); + Graph_Graph13->GetZaxis()->SetLabelFont(22); + Graph_Graph13->GetZaxis()->SetLabelSize(0.05); + Graph_Graph13->GetZaxis()->SetTitleSize(0.06); + Graph_Graph13->GetZaxis()->SetTitleFont(22); + graph->SetHistogram(Graph_Graph13); + + multigraph->Add(graph,"p"); + multigraph->Draw("a"); + multigraph->GetXaxis()->SetTitle("Lorentz #beta"); + multigraph->GetXaxis()->SetNdivisions(505); + multigraph->GetXaxis()->SetLabelFont(22); + multigraph->GetXaxis()->SetLabelOffset(0.015); + multigraph->GetXaxis()->SetLabelSize(0.05); + multigraph->GetXaxis()->SetTitleSize(0.06); + multigraph->GetXaxis()->SetTitleFont(22); + multigraph->GetYaxis()->SetTitle("#frac{dA}{dE}"); + multigraph->GetYaxis()->SetLabelFont(22); + multigraph->GetYaxis()->SetLabelSize(0.05); + multigraph->GetYaxis()->SetTitleSize(0.06); + multigraph->GetYaxis()->SetTitleFont(22); + + TLegend *leg = new TLegend(0.7,0.7,0.9,0.9,NULL,"brNDC"); + leg->SetBorderSize(0); + leg->SetTextFont(22); + leg->SetTextSize(0.047); + leg->SetLineColor(1); + leg->SetLineStyle(1); + leg->SetLineWidth(2); + leg->SetFillColor(0); + leg->SetFillStyle(0); + TLegendEntry *entry=leg->AddEntry("Graph","Protons","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(20); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("Graph","Helium","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(21); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("Graph","Carbon","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(22); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("Graph","Oxygen","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(23); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + leg->Draw(); + c1_n12->Modified(); + c1_n12->cd(); + c1_n12->SetSelected(c1_n12); +} diff --git a/Scripts_20161126/figs/betadedxz2.pdf b/Scripts_20161126/figs/betadedxz2.pdf new file mode 100644 index 0000000..d7c3472 Binary files /dev/null and b/Scripts_20161126/figs/betadedxz2.pdf differ diff --git a/Scripts_20161126/figs/betadedxz2.png b/Scripts_20161126/figs/betadedxz2.png new file mode 100644 index 0000000..8886716 Binary files /dev/null and b/Scripts_20161126/figs/betadedxz2.png differ diff --git a/Scripts_20161126/figs/betadedxz2_1.pdf b/Scripts_20161126/figs/betadedxz2_1.pdf new file mode 100644 index 0000000..920102b Binary files /dev/null and b/Scripts_20161126/figs/betadedxz2_1.pdf differ diff --git a/Scripts_20161126/figs/bpmbeta1.C b/Scripts_20161126/figs/bpmbeta1.C new file mode 100644 index 0000000..d1f3f1a --- /dev/null +++ b/Scripts_20161126/figs/bpmbeta1.C @@ -0,0 +1,423 @@ +{ +//=========Macro generated from canvas: c1/c1 +//========= (Mon Nov 20 18:14:20 2017) by ROOT version5.34/32 + TCanvas *c1 = new TCanvas("c1", "c1",10,71,700,500); + gStyle->SetOptStat(0); + gStyle->SetOptTitle(0); + c1->Range(0.2050384,-0.2837461,0.7948584,1.489667); + c1->SetFillColor(0); + c1->SetBorderMode(0); + c1->SetBorderSize(2); + c1->SetTickx(1); + c1->SetTicky(1); + c1->SetLeftMargin(0.14); + c1->SetRightMargin(0.08); + c1->SetTopMargin(0.05); + c1->SetBottomMargin(0.16); + c1->SetFrameLineWidth(2); + c1->SetFrameBorderMode(0); + c1->SetFrameLineWidth(2); + c1->SetFrameBorderMode(0); + + TMultiGraph *multigraph = new TMultiGraph(); + multigraph->SetName(""); + multigraph->SetTitle(" "); + + TGraph *graph = new TGraph(26); + graph->SetName("Graph"); + graph->SetTitle("energylist_p_bpmbeta1.txt"); + graph->SetFillColor(1); + graph->SetLineWidth(2); + graph->SetMarkerStyle(20); + graph->SetPoint(0,0.308525,1.17009); + graph->SetPoint(1,0.340994,1.22548); + graph->SetPoint(2,0.366173,1.25412); + graph->SetPoint(3,0.386744,1.26762); + graph->SetPoint(4,0.404198,1.27924); + graph->SetPoint(5,0.419413,1.28926); + graph->SetPoint(6,0.432945,1.29822); + graph->SetPoint(7,0.44518,1.30487); + graph->SetPoint(8,0.456345,1.31167); + graph->SetPoint(9,0.466617,1.31966); + graph->SetPoint(10,0.476154,1.32693); + graph->SetPoint(11,0.485023,1.33277); + graph->SetPoint(12,0.493348,1.33748); + graph->SetPoint(13,0.501186,1.342); + graph->SetPoint(14,0.508639,1.34494); + graph->SetPoint(15,0.515744,1.34552); + graph->SetPoint(16,0.522563,1.34422); + graph->SetPoint(17,0.529111,1.34555); + graph->SetPoint(18,0.53538,1.34837); + graph->SetPoint(19,0.541398,1.35181); + graph->SetPoint(20,0.549576,1.35453); + graph->SetPoint(21,0.557429,1.35491); + graph->SetPoint(22,0.564849,1.35663); + graph->SetPoint(23,0.571868,1.35679); + graph->SetPoint(24,0.578541,1.35989); + graph->SetPoint(25,0.5849,1.36464); + + TH1F *Graph_Graph1 = new TH1F("Graph_Graph1","energylist_p_bpmbeta1.txt",100,0.2808875,0.6125375); + Graph_Graph1->SetMinimum(1.150635); + Graph_Graph1->SetMaximum(1.384095); + Graph_Graph1->SetDirectory(0); + Graph_Graph1->SetStats(0); + Graph_Graph1->SetLineWidth(2); + Graph_Graph1->SetMarkerStyle(21); + Graph_Graph1->GetXaxis()->SetNdivisions(505); + Graph_Graph1->GetXaxis()->SetLabelFont(22); + Graph_Graph1->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1->GetXaxis()->SetTitleFont(22); + Graph_Graph1->GetYaxis()->SetLabelFont(22); + Graph_Graph1->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1->GetYaxis()->SetTitleFont(22); + Graph_Graph1->GetZaxis()->SetLabelFont(22); + Graph_Graph1->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1->GetZaxis()->SetTitleFont(22); + graph->SetHistogram(Graph_Graph1); + + + TF1 *tf1_btvbeta1 = new TF1("tf1_btvbeta1","[0]*((1-0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1])-x*x)/(TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7)-x*x))/(1+[2]*(1-0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1])-x*x)/(TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7)-x*x))*1*1.65901*TMath::Power(x,-1.7218))+0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1])-x*x)/(TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7)-x*x))",0.2808875,0.6125375); + tf1_btvbeta1->SetFillColor(1); + tf1_btvbeta1->SetFillStyle(0); + tf1_btvbeta1->SetMarkerStyle(21); + tf1_btvbeta1->SetLineWidth(2); + tf1_btvbeta1->SetChisquare(0.0008137057); + tf1_btvbeta1->SetNDF(23); + tf1_btvbeta1->GetXaxis()->SetNdivisions(505); + tf1_btvbeta1->GetXaxis()->SetLabelFont(22); + tf1_btvbeta1->GetXaxis()->SetLabelOffset(0.015); + tf1_btvbeta1->GetXaxis()->SetLabelSize(0.05); + tf1_btvbeta1->GetXaxis()->SetTitleSize(0.06); + tf1_btvbeta1->GetXaxis()->SetTitleFont(22); + tf1_btvbeta1->GetYaxis()->SetLabelFont(22); + tf1_btvbeta1->GetYaxis()->SetLabelSize(0.05); + tf1_btvbeta1->GetYaxis()->SetTitleSize(0.06); + tf1_btvbeta1->GetYaxis()->SetTitleFont(22); + tf1_btvbeta1->SetParameter(0,1.396095); + tf1_btvbeta1->SetParError(0,0.001879); + tf1_btvbeta1->SetParLimits(0,0,1.5); + tf1_btvbeta1->SetParameter(1,2.532585e-07); + tf1_btvbeta1->SetParError(1,4.30631e-07); + tf1_btvbeta1->SetParLimits(1,0,10000); + tf1_btvbeta1->SetParameter(2,0.01594335); + tf1_btvbeta1->SetParError(2,9.756116e-05); + tf1_btvbeta1->SetParLimits(2,0.001,0.03); + graph->GetListOfFunctions()->Add(tf1_btvbeta1); + multigraph->Add(graph,"p"); + + graph = new TGraph(26); + graph->SetName("Graph"); + graph->SetTitle("energylist_he_bpmbeta1.txt"); + graph->SetFillColor(1); + graph->SetLineWidth(2); + graph->SetMarkerStyle(21); + graph->SetPoint(0,0.347272,1.15061); + graph->SetPoint(1,0.371222,1.18124); + graph->SetPoint(2,0.391037,1.20539); + graph->SetPoint(3,0.408018,1.21968); + graph->SetPoint(4,0.422922,1.22856); + graph->SetPoint(5,0.436235,1.23451); + graph->SetPoint(6,0.447968,1.24983); + graph->SetPoint(7,0.459299,1.2618); + graph->SetPoint(8,0.470415,1.26521); + graph->SetPoint(9,0.478846,1.26492); + graph->SetPoint(10,0.487649,1.26371); + graph->SetPoint(11,0.495887,1.27061); + graph->SetPoint(12,0.503656,1.27334); + graph->SetPoint(13,0.510991,1.27687); + graph->SetPoint(14,0.517959,1.2796); + graph->SetPoint(15,0.524572,1.28062); + graph->SetPoint(16,0.530889,1.28058); + graph->SetPoint(17,0.536926,1.28007); + graph->SetPoint(18,0.542699,1.27389); + graph->SetPoint(19,0.550671,1.27711); + graph->SetPoint(20,0.558452,1.28057); + graph->SetPoint(21,0.565815,1.28576); + graph->SetPoint(22,0.565815,1.28604); + graph->SetPoint(23,0.572799,1.29318); + graph->SetPoint(24,0.579449,1.29729); + graph->SetPoint(25,0.585785,1.29912); + + TH1F *Graph_Graph2 = new TH1F("Graph_Graph2","energylist_he_bpmbeta1.txt",100,0.3234207,0.6096363); + Graph_Graph2->SetMinimum(1.135759); + Graph_Graph2->SetMaximum(1.313971); + Graph_Graph2->SetDirectory(0); + Graph_Graph2->SetStats(0); + Graph_Graph2->SetLineWidth(2); + Graph_Graph2->SetMarkerStyle(21); + Graph_Graph2->GetXaxis()->SetNdivisions(505); + Graph_Graph2->GetXaxis()->SetLabelFont(22); + Graph_Graph2->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph2->GetXaxis()->SetLabelSize(0.05); + Graph_Graph2->GetXaxis()->SetTitleSize(0.06); + Graph_Graph2->GetXaxis()->SetTitleFont(22); + Graph_Graph2->GetYaxis()->SetLabelFont(22); + Graph_Graph2->GetYaxis()->SetLabelSize(0.05); + Graph_Graph2->GetYaxis()->SetTitleSize(0.06); + Graph_Graph2->GetYaxis()->SetTitleFont(22); + Graph_Graph2->GetZaxis()->SetLabelFont(22); + Graph_Graph2->GetZaxis()->SetLabelSize(0.05); + Graph_Graph2->GetZaxis()->SetTitleSize(0.06); + Graph_Graph2->GetZaxis()->SetTitleFont(22); + graph->SetHistogram(Graph_Graph2); + + + TF1 *tf1_btvbeta1 = new TF1("tf1_btvbeta1","[0]*((1-0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1])-x*x)/(TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7)-x*x))/(1+[2]*(1-0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1])-x*x)/(TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7)-x*x))*4*1.65901*TMath::Power(x,-1.7218))+0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1])-x*x)/(TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7)-x*x))",0.3234207,0.6096363); + tf1_btvbeta1->SetFillColor(1); + tf1_btvbeta1->SetFillStyle(0); + tf1_btvbeta1->SetMarkerStyle(21); + tf1_btvbeta1->SetLineWidth(2); + tf1_btvbeta1->SetChisquare(0.0005577); + tf1_btvbeta1->SetNDF(23); + tf1_btvbeta1->GetXaxis()->SetNdivisions(505); + tf1_btvbeta1->GetXaxis()->SetLabelFont(22); + tf1_btvbeta1->GetXaxis()->SetLabelOffset(0.015); + tf1_btvbeta1->GetXaxis()->SetLabelSize(0.05); + tf1_btvbeta1->GetXaxis()->SetTitleSize(0.06); + tf1_btvbeta1->GetXaxis()->SetTitleFont(22); + tf1_btvbeta1->GetYaxis()->SetLabelFont(22); + tf1_btvbeta1->GetYaxis()->SetLabelSize(0.05); + tf1_btvbeta1->GetYaxis()->SetTitleSize(0.06); + tf1_btvbeta1->GetYaxis()->SetTitleFont(22); + tf1_btvbeta1->SetParameter(0,1.317853); + tf1_btvbeta1->SetParError(0,0.005430028); + tf1_btvbeta1->SetParLimits(0,0,1.5); + tf1_btvbeta1->SetParameter(1,0.0001552623); + tf1_btvbeta1->SetParError(1,0.00117284); + tf1_btvbeta1->SetParLimits(1,0,10000); + tf1_btvbeta1->SetParameter(2,0.01753411); + tf1_btvbeta1->SetParError(2,9.814077e-05); + tf1_btvbeta1->SetParLimits(2,0.001,0.03); + graph->GetListOfFunctions()->Add(tf1_btvbeta1); + multigraph->Add(graph,"p"); + + graph = new TGraph(26); + graph->SetName("Graph"); + graph->SetTitle("energylist_c_bpmbeta1.txt"); + graph->SetFillColor(1); + graph->SetLineWidth(2); + graph->SetMarkerStyle(22); + graph->SetPoint(0,0.407871,0.70017); + graph->SetPoint(1,0.44884,0.75557); + graph->SetPoint(2,0.479338,0.795619); + graph->SetPoint(3,0.503822,0.823137); + graph->SetPoint(4,0.524858,0.846695); + graph->SetPoint(5,0.543065,0.867102); + graph->SetPoint(6,0.5589,0.886679); + graph->SetPoint(7,0.573741,0.902141); + graph->SetPoint(8,0.586721,0.91659); + graph->SetPoint(9,0.59808,0.929151); + graph->SetPoint(10,0.608891,0.94155); + graph->SetPoint(11,0.619196,0.952243); + graph->SetPoint(12,0.628229,0.961937); + graph->SetPoint(13,0.636893,0.970188); + graph->SetPoint(14,0.645213,0.976903); + graph->SetPoint(15,0.653209,0.987228); + graph->SetPoint(16,0.6609,0.994266); + graph->SetPoint(17,0.667643,1.00407); + graph->SetPoint(18,0.674162,1.00707); + graph->SetPoint(19,0.681086,1.01511); + graph->SetPoint(20,0.689547,1.02523); + graph->SetPoint(21,0.698204,1.03263); + graph->SetPoint(22,0.705926,1.04101); + graph->SetPoint(23,0.713327,1.04986); + graph->SetPoint(24,0.719927,1.05878); + graph->SetPoint(25,0.726761,1.06459); + + TH1F *Graph_Graph3 = new TH1F("Graph_Graph3","energylist_c_bpmbeta1.txt",100,0.375982,0.75865); + Graph_Graph3->SetMinimum(0.663728); + Graph_Graph3->SetMaximum(1.101032); + Graph_Graph3->SetDirectory(0); + Graph_Graph3->SetStats(0); + Graph_Graph3->SetLineWidth(2); + Graph_Graph3->SetMarkerStyle(21); + Graph_Graph3->GetXaxis()->SetNdivisions(505); + Graph_Graph3->GetXaxis()->SetLabelFont(22); + Graph_Graph3->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph3->GetXaxis()->SetLabelSize(0.05); + Graph_Graph3->GetXaxis()->SetTitleSize(0.06); + Graph_Graph3->GetXaxis()->SetTitleFont(22); + Graph_Graph3->GetYaxis()->SetLabelFont(22); + Graph_Graph3->GetYaxis()->SetLabelSize(0.05); + Graph_Graph3->GetYaxis()->SetTitleSize(0.06); + Graph_Graph3->GetYaxis()->SetTitleFont(22); + Graph_Graph3->GetZaxis()->SetLabelFont(22); + Graph_Graph3->GetZaxis()->SetLabelSize(0.05); + Graph_Graph3->GetZaxis()->SetTitleSize(0.06); + Graph_Graph3->GetZaxis()->SetTitleFont(22); + graph->SetHistogram(Graph_Graph3); + + + TF1 *tf1_btvbeta1 = new TF1("tf1_btvbeta1","[0]*((1-0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1])-x*x)/(TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7)-x*x))/(1+[2]*(1-0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1])-x*x)/(TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7)-x*x))*36*1.65901*TMath::Power(x,-1.7218))+0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1])-x*x)/(TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7)-x*x))",0.375982,0.75865); + tf1_btvbeta1->SetFillColor(1); + tf1_btvbeta1->SetFillStyle(0); + tf1_btvbeta1->SetMarkerStyle(21); + tf1_btvbeta1->SetLineWidth(2); + tf1_btvbeta1->SetChisquare(6.524055e-05); + tf1_btvbeta1->SetNDF(23); + tf1_btvbeta1->GetXaxis()->SetNdivisions(505); + tf1_btvbeta1->GetXaxis()->SetLabelFont(22); + tf1_btvbeta1->GetXaxis()->SetLabelOffset(0.015); + tf1_btvbeta1->GetXaxis()->SetLabelSize(0.05); + tf1_btvbeta1->GetXaxis()->SetTitleSize(0.06); + tf1_btvbeta1->GetXaxis()->SetTitleFont(22); + tf1_btvbeta1->GetYaxis()->SetLabelFont(22); + tf1_btvbeta1->GetYaxis()->SetLabelSize(0.05); + tf1_btvbeta1->GetYaxis()->SetTitleSize(0.06); + tf1_btvbeta1->GetYaxis()->SetTitleFont(22); + tf1_btvbeta1->SetParameter(0,1.886126); + tf1_btvbeta1->SetParError(0,0.002531957); + tf1_btvbeta1->SetParLimits(0,0,2.5); + tf1_btvbeta1->SetParameter(1,5373.558); + tf1_btvbeta1->SetParError(1,12.31033); + tf1_btvbeta1->SetParLimits(1,0,10000); + tf1_btvbeta1->SetParameter(2,0.01908395); + tf1_btvbeta1->SetParError(2,2.85933e-05); + tf1_btvbeta1->SetParLimits(2,0.001,0.03); + graph->GetListOfFunctions()->Add(tf1_btvbeta1); + multigraph->Add(graph,"p"); + + graph = new TGraph(21); + graph->SetName("Graph"); + graph->SetTitle("energylist_o_bpmbeta1.txt"); + graph->SetFillColor(1); + graph->SetLineWidth(2); + graph->SetMarkerStyle(23); + graph->SetPoint(0,0.436386,0.637511); + graph->SetPoint(1,0.479001,0.682739); + graph->SetPoint(2,0.511349,0.716111); + graph->SetPoint(3,0.537325,0.740358); + graph->SetPoint(4,0.559062,0.761285); + graph->SetPoint(5,0.577647,0.780592); + graph->SetPoint(6,0.594124,0.797751); + graph->SetPoint(7,0.608731,0.814711); + graph->SetPoint(8,0.621998,0.828105); + graph->SetPoint(9,0.634024,0.838841); + graph->SetPoint(10,0.645051,0.851544); + graph->SetPoint(11,0.655227,0.861821); + graph->SetPoint(12,0.664724,0.871405); + graph->SetPoint(13,0.673476,0.881324); + graph->SetPoint(14,0.681811,0.891275); + graph->SetPoint(15,0.689682,0.901056); + graph->SetPoint(16,0.697243,0.909476); + graph->SetPoint(17,0.704219,0.915073); + graph->SetPoint(18,0.710969,0.921715); + graph->SetPoint(19,0.717113,0.925899); + graph->SetPoint(20,0.726111,0.939145); + + TH1F *Graph_Graph4 = new TH1F("Graph_Graph4","energylist_o_bpmbeta1.txt",100,0.4074135,0.7550835); + Graph_Graph4->SetMinimum(0.6073476); + Graph_Graph4->SetMaximum(0.9693084); + Graph_Graph4->SetDirectory(0); + Graph_Graph4->SetStats(0); + Graph_Graph4->SetLineWidth(2); + Graph_Graph4->SetMarkerStyle(21); + Graph_Graph4->GetXaxis()->SetNdivisions(505); + Graph_Graph4->GetXaxis()->SetLabelFont(22); + Graph_Graph4->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph4->GetXaxis()->SetLabelSize(0.05); + Graph_Graph4->GetXaxis()->SetTitleSize(0.06); + Graph_Graph4->GetXaxis()->SetTitleFont(22); + Graph_Graph4->GetYaxis()->SetLabelFont(22); + Graph_Graph4->GetYaxis()->SetLabelSize(0.05); + Graph_Graph4->GetYaxis()->SetTitleSize(0.06); + Graph_Graph4->GetYaxis()->SetTitleFont(22); + Graph_Graph4->GetZaxis()->SetLabelFont(22); + Graph_Graph4->GetZaxis()->SetLabelSize(0.05); + Graph_Graph4->GetZaxis()->SetTitleSize(0.06); + Graph_Graph4->GetZaxis()->SetTitleFont(22); + graph->SetHistogram(Graph_Graph4); + + + TF1 *tf1_btvbeta1 = new TF1("tf1_btvbeta1","[0]*((1-0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1])-x*x)/(TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7)-x*x))/(1+[2]*(1-0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1])-x*x)/(TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7)-x*x))*64*1.65901*TMath::Power(x,-1.7218))+0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1])-x*x)/(TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7)-x*x))",0.4074135,0.7550835); + tf1_btvbeta1->SetFillColor(1); + tf1_btvbeta1->SetFillStyle(0); + tf1_btvbeta1->SetMarkerStyle(21); + tf1_btvbeta1->SetLineWidth(2); + tf1_btvbeta1->SetChisquare(0.0001166363); + tf1_btvbeta1->SetNDF(18); + tf1_btvbeta1->GetXaxis()->SetNdivisions(505); + tf1_btvbeta1->GetXaxis()->SetLabelFont(22); + tf1_btvbeta1->GetXaxis()->SetLabelOffset(0.015); + tf1_btvbeta1->GetXaxis()->SetLabelSize(0.05); + tf1_btvbeta1->GetXaxis()->SetTitleSize(0.06); + tf1_btvbeta1->GetXaxis()->SetTitleFont(22); + tf1_btvbeta1->GetYaxis()->SetLabelFont(22); + tf1_btvbeta1->GetYaxis()->SetLabelSize(0.05); + tf1_btvbeta1->GetYaxis()->SetTitleSize(0.06); + tf1_btvbeta1->GetYaxis()->SetTitleFont(22); + tf1_btvbeta1->SetParameter(0,2.366976); + tf1_btvbeta1->SetParError(0,0.006102641); + tf1_btvbeta1->SetParLimits(0,0,2.5); + tf1_btvbeta1->SetParameter(1,9762.231); + tf1_btvbeta1->SetParError(1,12.85234); + tf1_btvbeta1->SetParLimits(1,0,10000); + tf1_btvbeta1->SetParameter(2,0.02586634); + tf1_btvbeta1->SetParError(2,4.541413e-05); + tf1_btvbeta1->SetParLimits(2,0.01,0.03); + graph->GetListOfFunctions()->Add(tf1_btvbeta1); + multigraph->Add(graph,"p"); + multigraph->Draw("a"); + multigraph->GetXaxis()->SetTitle("Lorentz #beta"); + multigraph->GetXaxis()->SetNdivisions(505); + multigraph->GetXaxis()->SetLabelFont(22); + multigraph->GetXaxis()->SetLabelOffset(0.015); + multigraph->GetXaxis()->SetLabelSize(0.05); + multigraph->GetXaxis()->SetTitleSize(0.06); + multigraph->GetXaxis()->SetTitleFont(22); + multigraph->GetYaxis()->SetTitle("#frac{dA}{dE}"); + multigraph->GetYaxis()->SetLabelFont(22); + multigraph->GetYaxis()->SetLabelSize(0.05); + multigraph->GetYaxis()->SetTitleSize(0.06); + multigraph->GetYaxis()->SetTitleFont(22); + + TLegend *leg = new TLegend(0.7,0.7,0.9,0.9,NULL,"brNDC"); + leg->SetBorderSize(0); + leg->SetTextFont(22); + leg->SetTextSize(0.047); + leg->SetLineColor(1); + leg->SetLineStyle(1); + leg->SetLineWidth(2); + leg->SetFillColor(0); + leg->SetFillStyle(0); + TLegendEntry *entry=leg->AddEntry("Graph","Protons","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(20); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("Graph","Helium","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(21); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("Graph","Carbon","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(22); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("Graph","Oxygen","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(23); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + leg->Draw(); + c1->Modified(); + c1->cd(); + c1->SetSelected(c1); +} diff --git a/Scripts_20161126/figs/bpmbeta1.pdf b/Scripts_20161126/figs/bpmbeta1.pdf new file mode 100644 index 0000000..5811657 Binary files /dev/null and b/Scripts_20161126/figs/bpmbeta1.pdf differ diff --git a/Scripts_20161126/figs/bpmbeta1.png b/Scripts_20161126/figs/bpmbeta1.png new file mode 100644 index 0000000..5a00473 Binary files /dev/null and b/Scripts_20161126/figs/bpmbeta1.png differ diff --git a/Scripts_20161126/figs/bvt_beta_combinedfit.C b/Scripts_20161126/figs/bvt_beta_combinedfit.C new file mode 100644 index 0000000..92fd49a --- /dev/null +++ b/Scripts_20161126/figs/bvt_beta_combinedfit.C @@ -0,0 +1,830 @@ +void bvt_beta_combinedfit() +{ +//=========Macro generated from canvas: Simfit/Simultaneous fit +//========= (Wed Nov 29 17:15:05 2017) by ROOT version6.06/02 + TCanvas *Simfit = new TCanvas("Simfit", "Simultaneous fit",10,71,700,500); + Simfit->Range(0.2301057,0.3875,0.8051803,1.5125); + Simfit->SetFillColor(0); + Simfit->SetBorderMode(0); + Simfit->SetBorderSize(2); + Simfit->SetFrameBorderMode(0); + Simfit->SetFrameBorderMode(0); + + TMultiGraph *multigraph = new TMultiGraph(); + multigraph->SetName(""); + multigraph->SetTitle(" "); + + Double_t Graph_fx1001[26] = { + 0.308525, + 0.340994, + 0.366173, + 0.386744, + 0.404198, + 0.419413, + 0.432945, + 0.44518, + 0.456345, + 0.466617, + 0.476154, + 0.485023, + 0.493348, + 0.501186, + 0.508639, + 0.515744, + 0.522563, + 0.529111, + 0.53538, + 0.541398, + 0.549576, + 0.557429, + 0.564849, + 0.571868, + 0.578541, + 0.5849}; + Double_t Graph_fy1001[26] = { + 1.17009, + 1.22548, + 1.25412, + 1.26762, + 1.27924, + 1.28926, + 1.29822, + 1.30487, + 1.31167, + 1.31966, + 1.32693, + 1.33277, + 1.33748, + 1.342, + 1.34494, + 1.34552, + 1.34422, + 1.34555, + 1.34837, + 1.35181, + 1.35453, + 1.35491, + 1.35663, + 1.35679, + 1.35989, + 1.36464}; + Double_t Graph_fex1001[26] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1001[26] = { + 0.00768545, + 0.00819192, + 0.00890086, + 0.00890319, + 0.00893001, + 0.00898034, + 0.00878207, + 0.00887555, + 0.00851766, + 0.00882661, + 0.00893656, + 0.00886456, + 0.00898026, + 0.00904985, + 0.00880901, + 0.00871377, + 0.00862534, + 0.00868173, + 0.0087194, + 0.00875697, + 0.00870121, + 0.00870414, + 0.00876418, + 0.00881008, + 0.00884663, + 0.00892479}; + TGraphErrors *gre = new TGraphErrors(26,Graph_fx1001,Graph_fy1001,Graph_fex1001,Graph_fey1001); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetMarkerStyle(20); + + TH1F *Graph_Graph1001 = new TH1F("Graph_Graph1001","Graph",100,0.2808875,0.6125375); + Graph_Graph1001->SetMinimum(1.141289); + Graph_Graph1001->SetMaximum(1.394681); + Graph_Graph1001->SetDirectory(0); + Graph_Graph1001->SetStats(0); + + Int_t ci; // for color index setting + TColor *color; // for color definition with alpha + ci = TColor::GetColor("#000099"); + Graph_Graph1001->SetLineColor(ci); + Graph_Graph1001->GetXaxis()->SetLabelFont(42); + Graph_Graph1001->GetXaxis()->SetLabelSize(0.035); + Graph_Graph1001->GetXaxis()->SetTitleSize(0.035); + Graph_Graph1001->GetXaxis()->SetTitleFont(42); + Graph_Graph1001->GetYaxis()->SetLabelFont(42); + Graph_Graph1001->GetYaxis()->SetLabelSize(0.035); + Graph_Graph1001->GetYaxis()->SetTitleSize(0.035); + Graph_Graph1001->GetYaxis()->SetTitleFont(42); + Graph_Graph1001->GetZaxis()->SetLabelFont(42); + Graph_Graph1001->GetZaxis()->SetLabelSize(0.035); + Graph_Graph1001->GetZaxis()->SetTitleSize(0.035); + Graph_Graph1001->GetZaxis()->SetTitleFont(42); + gre->SetHistogram(Graph_Graph1001); + + + TF1 *fB1002 = new TF1("fB","[0]*( (1- 0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1]) -x*x )/(TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7) -x*x )) / (1+[2]* (1- 0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1]) -x*x )/(TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7) -x*x ))*1.0*1.65901*TMath::Power(x,-1.7218)) + 0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1]) -x*x )/(TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7) -x*x ) ) ",0.3,0.59); + fB1002->SetFillColor(19); + fB1002->SetFillStyle(0); + + ci = TColor::GetColor("#ff0000"); + fB1002->SetLineColor(ci); + fB1002->SetLineWidth(2); + fB1002->SetChisquare(142.2405); + fB1002->SetNDF(93); + fB1002->GetXaxis()->SetLabelFont(42); + fB1002->GetXaxis()->SetLabelSize(0.035); + fB1002->GetXaxis()->SetTitleSize(0.035); + fB1002->GetXaxis()->SetTitleFont(42); + fB1002->GetYaxis()->SetLabelFont(42); + fB1002->GetYaxis()->SetLabelSize(0.035); + fB1002->GetYaxis()->SetTitleSize(0.035); + fB1002->GetYaxis()->SetTitleFont(42); + fB1002->SetParameter(0,1.425222); + fB1002->SetParError(0,0.003790996); + fB1002->SetParLimits(0,0,0); + fB1002->SetParameter(1,1.33225e+09); + fB1002->SetParError(1,4.565769e+08); + fB1002->SetParLimits(1,0,0); + fB1002->SetParameter(2,0.005428256); + fB1002->SetParError(2,0.0001593852); + fB1002->SetParLimits(2,0,0); + gre->GetListOfFunctions()->Add(fB1002); + multigraph->Add(gre,"p"); + + Double_t Graph_fx1003[26] = { + 0.347272, + 0.371222, + 0.391037, + 0.408018, + 0.422922, + 0.436235, + 0.447968, + 0.459299, + 0.470415, + 0.478846, + 0.487649, + 0.495887, + 0.503656, + 0.510991, + 0.517959, + 0.524572, + 0.530889, + 0.536926, + 0.542699, + 0.550671, + 0.558452, + 0.565815, + 0.565815, + 0.572799, + 0.579449, + 0.585785}; + Double_t Graph_fy1003[26] = { + 1.15061, + 1.18124, + 1.20539, + 1.21968, + 1.22856, + 1.23451, + 1.24983, + 1.2618, + 1.26521, + 1.26492, + 1.26371, + 1.27061, + 1.27334, + 1.27687, + 1.2796, + 1.28062, + 1.28058, + 1.28007, + 1.27389, + 1.27711, + 1.28057, + 1.28576, + 1.28604, + 1.29318, + 1.29729, + 1.29912}; + Double_t Graph_fex1003[26] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1003[26] = { + 0.0079386, + 0.00810356, + 0.00823989, + 0.00833216, + 0.00820763, + 0.00846215, + 0.00848127, + 0.00844473, + 0.00823922, + 0.00853495, + 0.00843892, + 0.00833523, + 0.00826832, + 0.0081901, + 0.00851587, + 0.00841711, + 0.00835539, + 0.00830596, + 0.00819119, + 0.00807461, + 0.00810535, + 0.00814576, + 0.00802676, + 0.0084179, + 0.00840238, + 0.00832066}; + gre = new TGraphErrors(26,Graph_fx1003,Graph_fy1003,Graph_fex1003,Graph_fey1003); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetMarkerStyle(21); + + TH1F *Graph_Graph1003 = new TH1F("Graph_Graph1003","Graph",100,0.3234207,0.6096363); + Graph_Graph1003->SetMinimum(1.126194); + Graph_Graph1003->SetMaximum(1.323918); + Graph_Graph1003->SetDirectory(0); + Graph_Graph1003->SetStats(0); + + ci = TColor::GetColor("#000099"); + Graph_Graph1003->SetLineColor(ci); + Graph_Graph1003->GetXaxis()->SetLabelFont(42); + Graph_Graph1003->GetXaxis()->SetLabelSize(0.035); + Graph_Graph1003->GetXaxis()->SetTitleSize(0.035); + Graph_Graph1003->GetXaxis()->SetTitleFont(42); + Graph_Graph1003->GetYaxis()->SetLabelFont(42); + Graph_Graph1003->GetYaxis()->SetLabelSize(0.035); + Graph_Graph1003->GetYaxis()->SetTitleSize(0.035); + Graph_Graph1003->GetYaxis()->SetTitleFont(42); + Graph_Graph1003->GetZaxis()->SetLabelFont(42); + Graph_Graph1003->GetZaxis()->SetLabelSize(0.035); + Graph_Graph1003->GetZaxis()->SetTitleSize(0.035); + Graph_Graph1003->GetZaxis()->SetTitleFont(42); + gre->SetHistogram(Graph_Graph1003); + + + TF1 *fSB21004 = new TF1("fSB2","[0]*( (1- 0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1]) -x*x )/(TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7) -x*x )) / (1+[2]* (1- 0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1]) -x*x )/(TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7) -x*x ))*4.0*1.65901*TMath::Power(x,-1.7218)) + 0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1]) -x*x )/(TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7) -x*x ) ) ",0.34,0.59); + fSB21004->SetFillColor(19); + fSB21004->SetFillStyle(0); + + ci = TColor::GetColor("#ff0000"); + fSB21004->SetLineColor(ci); + fSB21004->SetLineWidth(2); + fSB21004->SetChisquare(142.2405); + fSB21004->SetNDF(93); + fSB21004->GetXaxis()->SetLabelFont(42); + fSB21004->GetXaxis()->SetLabelSize(0.035); + fSB21004->GetXaxis()->SetTitleSize(0.035); + fSB21004->GetXaxis()->SetTitleFont(42); + fSB21004->GetYaxis()->SetLabelFont(42); + fSB21004->GetYaxis()->SetLabelSize(0.035); + fSB21004->GetYaxis()->SetTitleSize(0.035); + fSB21004->GetYaxis()->SetTitleFont(42); + fSB21004->SetParameter(0,1.425222); + fSB21004->SetParError(0,0.003790996); + fSB21004->SetParLimits(0,0,0); + fSB21004->SetParameter(1,279865); + fSB21004->SetParError(1,55607.49); + fSB21004->SetParLimits(1,0,0); + fSB21004->SetParameter(2,0.005428256); + fSB21004->SetParError(2,0.0001593852); + fSB21004->SetParLimits(2,0,0); + gre->GetListOfFunctions()->Add(fSB21004); + multigraph->Add(gre,"p"); + + Double_t Graph_fx1005[26] = { + 0.407871, + 0.44884, + 0.479338, + 0.503822, + 0.524858, + 0.543065, + 0.5589, + 0.573741, + 0.586721, + 0.59808, + 0.608891, + 0.619196, + 0.628229, + 0.636893, + 0.645213, + 0.653209, + 0.6609, + 0.667643, + 0.674162, + 0.681086, + 0.689547, + 0.698204, + 0.705926, + 0.713327, + 0.719927, + 0.726761}; + Double_t Graph_fy1005[26] = { + 0.70017, + 0.75557, + 0.795619, + 0.823137, + 0.846695, + 0.867102, + 0.886679, + 0.902141, + 0.91659, + 0.929151, + 0.94155, + 0.952243, + 0.961937, + 0.970188, + 0.976903, + 0.987228, + 0.994266, + 1.00407, + 1.00707, + 1.01511, + 1.02523, + 1.03263, + 1.04101, + 1.04986, + 1.05878, + 1.06459}; + Double_t Graph_fex1005[26] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1005[26] = { + 0.00468578, + 0.00504169, + 0.00532747, + 0.00543006, + 0.00559711, + 0.00569545, + 0.00575669, + 0.00598905, + 0.00611396, + 0.00620195, + 0.00635492, + 0.00637143, + 0.00639461, + 0.00642148, + 0.00647779, + 0.00661662, + 0.0066125, + 0.00669175, + 0.00661587, + 0.0068305, + 0.00700482, + 0.00688834, + 0.00696643, + 0.00696503, + 0.00713316, + 0.00731353}; + gre = new TGraphErrors(26,Graph_fx1005,Graph_fy1005,Graph_fex1005,Graph_fey1005); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetMarkerStyle(22); + + TH1F *Graph_Graph1005 = new TH1F("Graph_Graph1005","Graph",100,0.375982,0.75865); + Graph_Graph1005->SetMinimum(0.6578423); + Graph_Graph1005->SetMaximum(1.109545); + Graph_Graph1005->SetDirectory(0); + Graph_Graph1005->SetStats(0); + + ci = TColor::GetColor("#000099"); + Graph_Graph1005->SetLineColor(ci); + Graph_Graph1005->GetXaxis()->SetLabelFont(42); + Graph_Graph1005->GetXaxis()->SetLabelSize(0.035); + Graph_Graph1005->GetXaxis()->SetTitleSize(0.035); + Graph_Graph1005->GetXaxis()->SetTitleFont(42); + Graph_Graph1005->GetYaxis()->SetLabelFont(42); + Graph_Graph1005->GetYaxis()->SetLabelSize(0.035); + Graph_Graph1005->GetYaxis()->SetTitleSize(0.035); + Graph_Graph1005->GetYaxis()->SetTitleFont(42); + Graph_Graph1005->GetZaxis()->SetLabelFont(42); + Graph_Graph1005->GetZaxis()->SetLabelSize(0.035); + Graph_Graph1005->GetZaxis()->SetTitleSize(0.035); + Graph_Graph1005->GetZaxis()->SetTitleFont(42); + gre->SetHistogram(Graph_Graph1005); + + + TF1 *fSB31006 = new TF1("fSB3","[0]*( (1- 0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1]) -x*x )/(TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7) -x*x )) / (1+[2]* (1- 0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1]) -x*x )/(TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7) -x*x ))*36.0*1.65901*TMath::Power(x,-1.7218)) + 0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1]) -x*x )/(TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7) -x*x ) ) ",0.4,0.73); + fSB31006->SetFillColor(19); + fSB31006->SetFillStyle(0); + + ci = TColor::GetColor("#ff0000"); + fSB31006->SetLineColor(ci); + fSB31006->SetLineWidth(2); + fSB31006->SetChisquare(142.2405); + fSB31006->SetNDF(93); + fSB31006->GetXaxis()->SetLabelFont(42); + fSB31006->GetXaxis()->SetLabelSize(0.035); + fSB31006->GetXaxis()->SetTitleSize(0.035); + fSB31006->GetXaxis()->SetTitleFont(42); + fSB31006->GetYaxis()->SetLabelFont(42); + fSB31006->GetYaxis()->SetLabelSize(0.035); + fSB31006->GetYaxis()->SetTitleSize(0.035); + fSB31006->GetYaxis()->SetTitleFont(42); + fSB31006->SetParameter(0,1.425222); + fSB31006->SetParError(0,0.003790996); + fSB31006->SetParLimits(0,0,0); + fSB31006->SetParameter(1,32502.3); + fSB31006->SetParError(1,4376.858); + fSB31006->SetParLimits(1,0,0); + fSB31006->SetParameter(2,0.005428256); + fSB31006->SetParError(2,0.0001593852); + fSB31006->SetParLimits(2,0,0); + gre->GetListOfFunctions()->Add(fSB31006); + multigraph->Add(gre,"p"); + + Double_t Graph_fx1007[21] = { + 0.436386, + 0.479001, + 0.511349, + 0.537325, + 0.559062, + 0.577647, + 0.594124, + 0.608731, + 0.621998, + 0.634024, + 0.645051, + 0.655227, + 0.664724, + 0.673476, + 0.681811, + 0.689682, + 0.697243, + 0.704219, + 0.710969, + 0.717113, + 0.726111}; + Double_t Graph_fy1007[21] = { + 0.637511, + 0.682739, + 0.716111, + 0.740358, + 0.761285, + 0.780592, + 0.797751, + 0.814711, + 0.828105, + 0.838841, + 0.851544, + 0.861821, + 0.871405, + 0.881324, + 0.891275, + 0.901056, + 0.909476, + 0.915073, + 0.921715, + 0.925899, + 0.939145}; + Double_t Graph_fex1007[21] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1007[21] = { + 0.00399157, + 0.0045167, + 0.00489326, + 0.00506767, + 0.00518492, + 0.00527569, + 0.00540435, + 0.00568445, + 0.00568885, + 0.0060301, + 0.00605836, + 0.00619182, + 0.00632064, + 0.00669479, + 0.00658981, + 0.00673865, + 0.00682753, + 0.00691147, + 0.00720939, + 0.00730465, + 0.00751825}; + gre = new TGraphErrors(21,Graph_fx1007,Graph_fy1007,Graph_fex1007,Graph_fey1007); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetMarkerStyle(23); + + TH1F *Graph_Graph1007 = new TH1F("Graph_Graph1007","Graph",100,0.4074135,0.7550835); + Graph_Graph1007->SetMinimum(0.602205); + Graph_Graph1007->SetMaximum(0.9779776); + Graph_Graph1007->SetDirectory(0); + Graph_Graph1007->SetStats(0); + + ci = TColor::GetColor("#000099"); + Graph_Graph1007->SetLineColor(ci); + Graph_Graph1007->GetXaxis()->SetLabelFont(42); + Graph_Graph1007->GetXaxis()->SetLabelSize(0.035); + Graph_Graph1007->GetXaxis()->SetTitleSize(0.035); + Graph_Graph1007->GetXaxis()->SetTitleFont(42); + Graph_Graph1007->GetYaxis()->SetLabelFont(42); + Graph_Graph1007->GetYaxis()->SetLabelSize(0.035); + Graph_Graph1007->GetYaxis()->SetTitleSize(0.035); + Graph_Graph1007->GetYaxis()->SetTitleFont(42); + Graph_Graph1007->GetZaxis()->SetLabelFont(42); + Graph_Graph1007->GetZaxis()->SetLabelSize(0.035); + Graph_Graph1007->GetZaxis()->SetTitleSize(0.035); + Graph_Graph1007->GetZaxis()->SetTitleFont(42); + gre->SetHistogram(Graph_Graph1007); + + + TF1 *fSB41008 = new TF1("fSB4","[0]*( (1- 0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1]) -x*x )/(TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7) -x*x )) / (1+[2]* (1- 0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1]) -x*x )/(TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7) -x*x ))*64.0*1.65901*TMath::Power(x,-1.7218)) + 0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1]) -x*x )/(TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7) -x*x ) ) ",0.43,0.73); + fSB41008->SetFillColor(19); + fSB41008->SetFillStyle(0); + + ci = TColor::GetColor("#ff0000"); + fSB41008->SetLineColor(ci); + fSB41008->SetLineWidth(2); + fSB41008->SetChisquare(142.2405); + fSB41008->SetNDF(93); + fSB41008->GetXaxis()->SetLabelFont(42); + fSB41008->GetXaxis()->SetLabelSize(0.035); + fSB41008->GetXaxis()->SetTitleSize(0.035); + fSB41008->GetXaxis()->SetTitleFont(42); + fSB41008->GetYaxis()->SetLabelFont(42); + fSB41008->GetYaxis()->SetLabelSize(0.035); + fSB41008->GetYaxis()->SetTitleSize(0.035); + fSB41008->GetYaxis()->SetTitleFont(42); + fSB41008->SetParameter(0,1.425222); + fSB41008->SetParError(0,0.003790996); + fSB41008->SetParLimits(0,0,0); + fSB41008->SetParameter(1,15237.5); + fSB41008->SetParError(1,1698.199); + fSB41008->SetParLimits(1,0,0); + fSB41008->SetParameter(2,0.005428256); + fSB41008->SetParError(2,0.0001593852); + fSB41008->SetParLimits(2,0,0); + gre->GetListOfFunctions()->Add(fSB41008); + multigraph->Add(gre,"p"); + multigraph->Draw("a"); + multigraph->GetXaxis()->SetTitle("Lorentz #beta"); + multigraph->GetXaxis()->SetLabelFont(42); + multigraph->GetXaxis()->SetLabelSize(0.035); + multigraph->GetXaxis()->SetTitleSize(0.035); + multigraph->GetXaxis()->SetTitleFont(42); + multigraph->GetYaxis()->SetTitle("dA/dE / (10^{-6} a.u./(Mev#upointion#upoints^{-1})"); + multigraph->GetYaxis()->SetLabelFont(42); + multigraph->GetYaxis()->SetLabelSize(0.035); + multigraph->GetYaxis()->SetTitleSize(0.035); + multigraph->GetYaxis()->SetTitleFont(42); + + TPaveText *pt = new TPaveText(0.4821203,0.94,0.5178797,0.995,"blNDC"); + pt->SetName("title"); + pt->SetBorderSize(0); + pt->SetFillColor(0); + pt->SetFillStyle(0); + pt->SetTextFont(42); + TText *AText = pt->AddText(" "); + pt->Draw(); + + TF1 *tf1_birk11009 = new TF1("tf1_birk1","[0]*(1/(1+[1]*1.65901*TMath::Power(x,-1.7218)))",0.3,0.59); + tf1_birk11009->SetFillColor(19); + tf1_birk11009->SetFillStyle(0); + tf1_birk11009->SetLineWidth(2); + tf1_birk11009->SetLineStyle(2); + tf1_birk11009->GetXaxis()->SetLabelFont(42); + tf1_birk11009->GetXaxis()->SetLabelSize(0.035); + tf1_birk11009->GetXaxis()->SetTitleSize(0.035); + tf1_birk11009->GetXaxis()->SetTitleFont(42); + tf1_birk11009->GetYaxis()->SetLabelFont(42); + tf1_birk11009->GetYaxis()->SetLabelSize(0.035); + tf1_birk11009->GetYaxis()->SetTitleSize(0.035); + tf1_birk11009->GetYaxis()->SetTitleFont(42); + tf1_birk11009->SetParameter(0,1.46123); + tf1_birk11009->SetParError(0,0); + tf1_birk11009->SetParLimits(0,0,0); + tf1_birk11009->SetParameter(1,0.0177651); + tf1_birk11009->SetParError(1,0); + tf1_birk11009->SetParLimits(1,0,0); + tf1_birk11009->Draw("same"); + + TF1 *tf1_birk21010 = new TF1("tf1_birk2","[0]*(1/(1+[1]*4*1.65901*TMath::Power(x,-1.7218)))",0.34,0.59); + tf1_birk21010->SetFillColor(19); + tf1_birk21010->SetFillStyle(0); + tf1_birk21010->SetLineWidth(2); + tf1_birk21010->SetLineStyle(2); + tf1_birk21010->GetXaxis()->SetLabelFont(42); + tf1_birk21010->GetXaxis()->SetLabelSize(0.035); + tf1_birk21010->GetXaxis()->SetTitleSize(0.035); + tf1_birk21010->GetXaxis()->SetTitleFont(42); + tf1_birk21010->GetYaxis()->SetLabelFont(42); + tf1_birk21010->GetYaxis()->SetLabelSize(0.035); + tf1_birk21010->GetYaxis()->SetTitleSize(0.035); + tf1_birk21010->GetYaxis()->SetTitleFont(42); + tf1_birk21010->SetParameter(0,1.46123); + tf1_birk21010->SetParError(0,0); + tf1_birk21010->SetParLimits(0,0,0); + tf1_birk21010->SetParameter(1,0.00682331); + tf1_birk21010->SetParError(1,0); + tf1_birk21010->SetParLimits(1,0,0); + tf1_birk21010->Draw("same"); + + TF1 *tf1_birk31011 = new TF1("tf1_birk3","[0]*(1/(1+[1]*36*1.65901*TMath::Power(x,-1.7218)))",0.4,0.73); + tf1_birk31011->SetFillColor(19); + tf1_birk31011->SetFillStyle(0); + tf1_birk31011->SetLineWidth(2); + tf1_birk31011->SetLineStyle(2); + tf1_birk31011->GetXaxis()->SetLabelFont(42); + tf1_birk31011->GetXaxis()->SetLabelSize(0.035); + tf1_birk31011->GetXaxis()->SetTitleSize(0.035); + tf1_birk31011->GetXaxis()->SetTitleFont(42); + tf1_birk31011->GetYaxis()->SetLabelFont(42); + tf1_birk31011->GetYaxis()->SetLabelSize(0.035); + tf1_birk31011->GetYaxis()->SetTitleSize(0.035); + tf1_birk31011->GetYaxis()->SetTitleFont(42); + tf1_birk31011->SetParameter(0,1.46123); + tf1_birk31011->SetParError(0,0); + tf1_birk31011->SetParLimits(0,0,0); + tf1_birk31011->SetParameter(1,0.00389243); + tf1_birk31011->SetParError(1,0); + tf1_birk31011->SetParLimits(1,0,0); + tf1_birk31011->Draw("same"); + + TF1 *tf1_birk41012 = new TF1("tf1_birk4","[0]*(1/(1+[1]*64*1.65901*TMath::Power(x,-1.7218)))",0.43,0.73); + tf1_birk41012->SetFillColor(19); + tf1_birk41012->SetFillStyle(0); + tf1_birk41012->SetLineWidth(2); + tf1_birk41012->SetLineStyle(2); + tf1_birk41012->GetXaxis()->SetLabelFont(42); + tf1_birk41012->GetXaxis()->SetLabelSize(0.035); + tf1_birk41012->GetXaxis()->SetTitleSize(0.035); + tf1_birk41012->GetXaxis()->SetTitleFont(42); + tf1_birk41012->GetYaxis()->SetLabelFont(42); + tf1_birk41012->GetYaxis()->SetLabelSize(0.035); + tf1_birk41012->GetYaxis()->SetTitleSize(0.035); + tf1_birk41012->GetYaxis()->SetTitleFont(42); + tf1_birk41012->SetParameter(0,1.46123); + tf1_birk41012->SetParError(0,0); + tf1_birk41012->SetParLimits(0,0,0); + tf1_birk41012->SetParameter(1,0.00310792); + tf1_birk41012->SetParError(1,0); + tf1_birk41012->SetParLimits(1,0,0); + tf1_birk41012->Draw("same"); + + TLegend *leg = new TLegend(0.65,0.65,0.9,0.9,NULL,"brNDC"); + leg->SetBorderSize(0); + leg->SetTextFont(22); + leg->SetTextSize(0.035); + leg->SetLineColor(1); + leg->SetLineStyle(1); + leg->SetLineWidth(1); + leg->SetFillColor(0); + leg->SetFillStyle(1001); + TLegendEntry *entry=leg->AddEntry("Graph","Protons","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(20); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("Graph","Helium","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(21); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("Graph","Carbon","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(22); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("Graph","Oxygen","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(23); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("fB","BVT Fit","l"); + + ci = TColor::GetColor("#ff0000"); + entry->SetLineColor(ci); + entry->SetLineStyle(1); + entry->SetLineWidth(2); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(21); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("tf1_birk1","Birks Fit","l"); + entry->SetLineColor(1); + entry->SetLineStyle(2); + entry->SetLineWidth(2); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(21); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + leg->Draw(); + Simfit->Modified(); + Simfit->cd(); + Simfit->SetSelected(Simfit); +} diff --git a/Scripts_20161126/figs/bvt_beta_combinedfit.pdf b/Scripts_20161126/figs/bvt_beta_combinedfit.pdf new file mode 100644 index 0000000..52556d0 Binary files /dev/null and b/Scripts_20161126/figs/bvt_beta_combinedfit.pdf differ diff --git a/Scripts_20161126/figs/bvt_beta_combinedfit.png b/Scripts_20161126/figs/bvt_beta_combinedfit.png new file mode 100644 index 0000000..a013e30 Binary files /dev/null and b/Scripts_20161126/figs/bvt_beta_combinedfit.png differ diff --git a/Scripts_20161126/figs/bvt_beta_combinedfit_birk2.pdf b/Scripts_20161126/figs/bvt_beta_combinedfit_birk2.pdf new file mode 100644 index 0000000..4cd8cc3 Binary files /dev/null and b/Scripts_20161126/figs/bvt_beta_combinedfit_birk2.pdf differ diff --git a/Scripts_20161126/figs/bvt_beta_combinedfitbirks2.C b/Scripts_20161126/figs/bvt_beta_combinedfitbirks2.C new file mode 100644 index 0000000..6bcbe5b --- /dev/null +++ b/Scripts_20161126/figs/bvt_beta_combinedfitbirks2.C @@ -0,0 +1,826 @@ +void bvt_beta_combinedfitbirks2() +{ +//=========Macro generated from canvas: Simfit/Simultaneous fit +//========= (Wed Nov 29 17:14:20 2017) by ROOT version6.06/02 + TCanvas *Simfit = new TCanvas("Simfit", "Simultaneous fit",10,71,700,500); + Simfit->Range(0.2301057,0.3875,0.8051803,1.5125); + Simfit->SetFillColor(0); + Simfit->SetBorderMode(0); + Simfit->SetBorderSize(2); + Simfit->SetFrameBorderMode(0); + Simfit->SetFrameBorderMode(0); + + TMultiGraph *multigraph = new TMultiGraph(); + multigraph->SetName(""); + multigraph->SetTitle(" "); + + Double_t Graph_fx1001[26] = { + 0.308525, + 0.340994, + 0.366173, + 0.386744, + 0.404198, + 0.419413, + 0.432945, + 0.44518, + 0.456345, + 0.466617, + 0.476154, + 0.485023, + 0.493348, + 0.501186, + 0.508639, + 0.515744, + 0.522563, + 0.529111, + 0.53538, + 0.541398, + 0.549576, + 0.557429, + 0.564849, + 0.571868, + 0.578541, + 0.5849}; + Double_t Graph_fy1001[26] = { + 1.17009, + 1.22548, + 1.25412, + 1.26762, + 1.27924, + 1.28926, + 1.29822, + 1.30487, + 1.31167, + 1.31966, + 1.32693, + 1.33277, + 1.33748, + 1.342, + 1.34494, + 1.34552, + 1.34422, + 1.34555, + 1.34837, + 1.35181, + 1.35453, + 1.35491, + 1.35663, + 1.35679, + 1.35989, + 1.36464}; + Double_t Graph_fex1001[26] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1001[26] = { + 0.00768545, + 0.00819192, + 0.00890086, + 0.00890319, + 0.00893001, + 0.00898034, + 0.00878207, + 0.00887555, + 0.00851766, + 0.00882661, + 0.00893656, + 0.00886456, + 0.00898026, + 0.00904985, + 0.00880901, + 0.00871377, + 0.00862534, + 0.00868173, + 0.0087194, + 0.00875697, + 0.00870121, + 0.00870414, + 0.00876418, + 0.00881008, + 0.00884663, + 0.00892479}; + TGraphErrors *gre = new TGraphErrors(26,Graph_fx1001,Graph_fy1001,Graph_fex1001,Graph_fey1001); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetMarkerStyle(20); + + TH1F *Graph_Graph1001 = new TH1F("Graph_Graph1001","Graph",100,0.2808875,0.6125375); + Graph_Graph1001->SetMinimum(1.141289); + Graph_Graph1001->SetMaximum(1.394681); + Graph_Graph1001->SetDirectory(0); + Graph_Graph1001->SetStats(0); + + Int_t ci; // for color index setting + TColor *color; // for color definition with alpha + ci = TColor::GetColor("#000099"); + Graph_Graph1001->SetLineColor(ci); + Graph_Graph1001->GetXaxis()->SetLabelFont(42); + Graph_Graph1001->GetXaxis()->SetLabelSize(0.035); + Graph_Graph1001->GetXaxis()->SetTitleSize(0.035); + Graph_Graph1001->GetXaxis()->SetTitleFont(42); + Graph_Graph1001->GetYaxis()->SetLabelFont(42); + Graph_Graph1001->GetYaxis()->SetLabelSize(0.035); + Graph_Graph1001->GetYaxis()->SetTitleSize(0.035); + Graph_Graph1001->GetYaxis()->SetTitleFont(42); + Graph_Graph1001->GetZaxis()->SetLabelFont(42); + Graph_Graph1001->GetZaxis()->SetLabelSize(0.035); + Graph_Graph1001->GetZaxis()->SetTitleSize(0.035); + Graph_Graph1001->GetZaxis()->SetTitleFont(42); + gre->SetHistogram(Graph_Graph1001); + + + TF1 *fB1002 = new TF1("fB","[0]*(1/(1+[1]*1.65901*TMath::Power(x,-1.7218)))",0.3,0.59); + fB1002->SetFillColor(19); + fB1002->SetFillStyle(0); + + ci = TColor::GetColor("#ff0000"); + fB1002->SetLineColor(ci); + fB1002->SetLineWidth(2); + fB1002->SetChisquare(191.3612); + fB1002->SetNDF(94); + fB1002->GetXaxis()->SetLabelFont(42); + fB1002->GetXaxis()->SetLabelSize(0.035); + fB1002->GetXaxis()->SetTitleSize(0.035); + fB1002->GetXaxis()->SetTitleFont(42); + fB1002->GetYaxis()->SetLabelFont(42); + fB1002->GetYaxis()->SetLabelSize(0.035); + fB1002->GetYaxis()->SetTitleSize(0.035); + fB1002->GetYaxis()->SetTitleFont(42); + fB1002->SetParameter(0,1.461227); + fB1002->SetParError(0,0.004670547); + fB1002->SetParLimits(0,0,0); + fB1002->SetParameter(1,0.01776508); + fB1002->SetParError(1,0.0005790538); + fB1002->SetParLimits(1,0,0); + gre->GetListOfFunctions()->Add(fB1002); + multigraph->Add(gre,"p"); + + Double_t Graph_fx1003[26] = { + 0.347272, + 0.371222, + 0.391037, + 0.408018, + 0.422922, + 0.436235, + 0.447968, + 0.459299, + 0.470415, + 0.478846, + 0.487649, + 0.495887, + 0.503656, + 0.510991, + 0.517959, + 0.524572, + 0.530889, + 0.536926, + 0.542699, + 0.550671, + 0.558452, + 0.565815, + 0.565815, + 0.572799, + 0.579449, + 0.585785}; + Double_t Graph_fy1003[26] = { + 1.15061, + 1.18124, + 1.20539, + 1.21968, + 1.22856, + 1.23451, + 1.24983, + 1.2618, + 1.26521, + 1.26492, + 1.26371, + 1.27061, + 1.27334, + 1.27687, + 1.2796, + 1.28062, + 1.28058, + 1.28007, + 1.27389, + 1.27711, + 1.28057, + 1.28576, + 1.28604, + 1.29318, + 1.29729, + 1.29912}; + Double_t Graph_fex1003[26] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1003[26] = { + 0.0079386, + 0.00810356, + 0.00823989, + 0.00833216, + 0.00820763, + 0.00846215, + 0.00848127, + 0.00844473, + 0.00823922, + 0.00853495, + 0.00843892, + 0.00833523, + 0.00826832, + 0.0081901, + 0.00851587, + 0.00841711, + 0.00835539, + 0.00830596, + 0.00819119, + 0.00807461, + 0.00810535, + 0.00814576, + 0.00802676, + 0.0084179, + 0.00840238, + 0.00832066}; + gre = new TGraphErrors(26,Graph_fx1003,Graph_fy1003,Graph_fex1003,Graph_fey1003); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetMarkerStyle(21); + + TH1F *Graph_Graph1003 = new TH1F("Graph_Graph1003","Graph",100,0.3234207,0.6096363); + Graph_Graph1003->SetMinimum(1.126194); + Graph_Graph1003->SetMaximum(1.323918); + Graph_Graph1003->SetDirectory(0); + Graph_Graph1003->SetStats(0); + + ci = TColor::GetColor("#000099"); + Graph_Graph1003->SetLineColor(ci); + Graph_Graph1003->GetXaxis()->SetLabelFont(42); + Graph_Graph1003->GetXaxis()->SetLabelSize(0.035); + Graph_Graph1003->GetXaxis()->SetTitleSize(0.035); + Graph_Graph1003->GetXaxis()->SetTitleFont(42); + Graph_Graph1003->GetYaxis()->SetLabelFont(42); + Graph_Graph1003->GetYaxis()->SetLabelSize(0.035); + Graph_Graph1003->GetYaxis()->SetTitleSize(0.035); + Graph_Graph1003->GetYaxis()->SetTitleFont(42); + Graph_Graph1003->GetZaxis()->SetLabelFont(42); + Graph_Graph1003->GetZaxis()->SetLabelSize(0.035); + Graph_Graph1003->GetZaxis()->SetTitleSize(0.035); + Graph_Graph1003->GetZaxis()->SetTitleFont(42); + gre->SetHistogram(Graph_Graph1003); + + + TF1 *fSB21004 = new TF1("fSB2","[0]*(1/(1+[1]*4*1.65901*TMath::Power(x,-1.7218)))",0.34,0.59); + fSB21004->SetFillColor(19); + fSB21004->SetFillStyle(0); + + ci = TColor::GetColor("#ff0000"); + fSB21004->SetLineColor(ci); + fSB21004->SetLineWidth(2); + fSB21004->SetChisquare(191.3612); + fSB21004->SetNDF(94); + fSB21004->GetXaxis()->SetLabelFont(42); + fSB21004->GetXaxis()->SetLabelSize(0.035); + fSB21004->GetXaxis()->SetTitleSize(0.035); + fSB21004->GetXaxis()->SetTitleFont(42); + fSB21004->GetYaxis()->SetLabelFont(42); + fSB21004->GetYaxis()->SetLabelSize(0.035); + fSB21004->GetYaxis()->SetTitleSize(0.035); + fSB21004->GetYaxis()->SetTitleFont(42); + fSB21004->SetParameter(0,1.461227); + fSB21004->SetParError(0,0.004670547); + fSB21004->SetParLimits(0,0,0); + fSB21004->SetParameter(1,0.006823313); + fSB21004->SetParError(1,0.000167657); + fSB21004->SetParLimits(1,0,0); + gre->GetListOfFunctions()->Add(fSB21004); + multigraph->Add(gre,"p"); + + Double_t Graph_fx1005[26] = { + 0.407871, + 0.44884, + 0.479338, + 0.503822, + 0.524858, + 0.543065, + 0.5589, + 0.573741, + 0.586721, + 0.59808, + 0.608891, + 0.619196, + 0.628229, + 0.636893, + 0.645213, + 0.653209, + 0.6609, + 0.667643, + 0.674162, + 0.681086, + 0.689547, + 0.698204, + 0.705926, + 0.713327, + 0.719927, + 0.726761}; + Double_t Graph_fy1005[26] = { + 0.70017, + 0.75557, + 0.795619, + 0.823137, + 0.846695, + 0.867102, + 0.886679, + 0.902141, + 0.91659, + 0.929151, + 0.94155, + 0.952243, + 0.961937, + 0.970188, + 0.976903, + 0.987228, + 0.994266, + 1.00407, + 1.00707, + 1.01511, + 1.02523, + 1.03263, + 1.04101, + 1.04986, + 1.05878, + 1.06459}; + Double_t Graph_fex1005[26] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1005[26] = { + 0.00468578, + 0.00504169, + 0.00532747, + 0.00543006, + 0.00559711, + 0.00569545, + 0.00575669, + 0.00598905, + 0.00611396, + 0.00620195, + 0.00635492, + 0.00637143, + 0.00639461, + 0.00642148, + 0.00647779, + 0.00661662, + 0.0066125, + 0.00669175, + 0.00661587, + 0.0068305, + 0.00700482, + 0.00688834, + 0.00696643, + 0.00696503, + 0.00713316, + 0.00731353}; + gre = new TGraphErrors(26,Graph_fx1005,Graph_fy1005,Graph_fex1005,Graph_fey1005); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetMarkerStyle(22); + + TH1F *Graph_Graph1005 = new TH1F("Graph_Graph1005","Graph",100,0.375982,0.75865); + Graph_Graph1005->SetMinimum(0.6578423); + Graph_Graph1005->SetMaximum(1.109545); + Graph_Graph1005->SetDirectory(0); + Graph_Graph1005->SetStats(0); + + ci = TColor::GetColor("#000099"); + Graph_Graph1005->SetLineColor(ci); + Graph_Graph1005->GetXaxis()->SetLabelFont(42); + Graph_Graph1005->GetXaxis()->SetLabelSize(0.035); + Graph_Graph1005->GetXaxis()->SetTitleSize(0.035); + Graph_Graph1005->GetXaxis()->SetTitleFont(42); + Graph_Graph1005->GetYaxis()->SetLabelFont(42); + Graph_Graph1005->GetYaxis()->SetLabelSize(0.035); + Graph_Graph1005->GetYaxis()->SetTitleSize(0.035); + Graph_Graph1005->GetYaxis()->SetTitleFont(42); + Graph_Graph1005->GetZaxis()->SetLabelFont(42); + Graph_Graph1005->GetZaxis()->SetLabelSize(0.035); + Graph_Graph1005->GetZaxis()->SetTitleSize(0.035); + Graph_Graph1005->GetZaxis()->SetTitleFont(42); + gre->SetHistogram(Graph_Graph1005); + + + TF1 *fSB31006 = new TF1("fSB3","[0]*(1/(1+[1]*36*1.65901*TMath::Power(x,-1.7218)))",0.4,0.73); + fSB31006->SetFillColor(19); + fSB31006->SetFillStyle(0); + + ci = TColor::GetColor("#ff0000"); + fSB31006->SetLineColor(ci); + fSB31006->SetLineWidth(2); + fSB31006->SetChisquare(191.3612); + fSB31006->SetNDF(94); + fSB31006->GetXaxis()->SetLabelFont(42); + fSB31006->GetXaxis()->SetLabelSize(0.035); + fSB31006->GetXaxis()->SetTitleSize(0.035); + fSB31006->GetXaxis()->SetTitleFont(42); + fSB31006->GetYaxis()->SetLabelFont(42); + fSB31006->GetYaxis()->SetLabelSize(0.035); + fSB31006->GetYaxis()->SetTitleSize(0.035); + fSB31006->GetYaxis()->SetTitleFont(42); + fSB31006->SetParameter(0,1.461227); + fSB31006->SetParError(0,0.004670547); + fSB31006->SetParLimits(0,0,0); + fSB31006->SetParameter(1,0.003892427); + fSB31006->SetParError(1,3.657036e-05); + fSB31006->SetParLimits(1,0,0); + gre->GetListOfFunctions()->Add(fSB31006); + multigraph->Add(gre,"p"); + + Double_t Graph_fx1007[21] = { + 0.436386, + 0.479001, + 0.511349, + 0.537325, + 0.559062, + 0.577647, + 0.594124, + 0.608731, + 0.621998, + 0.634024, + 0.645051, + 0.655227, + 0.664724, + 0.673476, + 0.681811, + 0.689682, + 0.697243, + 0.704219, + 0.710969, + 0.717113, + 0.726111}; + Double_t Graph_fy1007[21] = { + 0.637511, + 0.682739, + 0.716111, + 0.740358, + 0.761285, + 0.780592, + 0.797751, + 0.814711, + 0.828105, + 0.838841, + 0.851544, + 0.861821, + 0.871405, + 0.881324, + 0.891275, + 0.901056, + 0.909476, + 0.915073, + 0.921715, + 0.925899, + 0.939145}; + Double_t Graph_fex1007[21] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1007[21] = { + 0.00399157, + 0.0045167, + 0.00489326, + 0.00506767, + 0.00518492, + 0.00527569, + 0.00540435, + 0.00568445, + 0.00568885, + 0.0060301, + 0.00605836, + 0.00619182, + 0.00632064, + 0.00669479, + 0.00658981, + 0.00673865, + 0.00682753, + 0.00691147, + 0.00720939, + 0.00730465, + 0.00751825}; + gre = new TGraphErrors(21,Graph_fx1007,Graph_fy1007,Graph_fex1007,Graph_fey1007); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetMarkerStyle(23); + + TH1F *Graph_Graph1007 = new TH1F("Graph_Graph1007","Graph",100,0.4074135,0.7550835); + Graph_Graph1007->SetMinimum(0.602205); + Graph_Graph1007->SetMaximum(0.9779776); + Graph_Graph1007->SetDirectory(0); + Graph_Graph1007->SetStats(0); + + ci = TColor::GetColor("#000099"); + Graph_Graph1007->SetLineColor(ci); + Graph_Graph1007->GetXaxis()->SetLabelFont(42); + Graph_Graph1007->GetXaxis()->SetLabelSize(0.035); + Graph_Graph1007->GetXaxis()->SetTitleSize(0.035); + Graph_Graph1007->GetXaxis()->SetTitleFont(42); + Graph_Graph1007->GetYaxis()->SetLabelFont(42); + Graph_Graph1007->GetYaxis()->SetLabelSize(0.035); + Graph_Graph1007->GetYaxis()->SetTitleSize(0.035); + Graph_Graph1007->GetYaxis()->SetTitleFont(42); + Graph_Graph1007->GetZaxis()->SetLabelFont(42); + Graph_Graph1007->GetZaxis()->SetLabelSize(0.035); + Graph_Graph1007->GetZaxis()->SetTitleSize(0.035); + Graph_Graph1007->GetZaxis()->SetTitleFont(42); + gre->SetHistogram(Graph_Graph1007); + + + TF1 *fSB41008 = new TF1("fSB4","[0]*(1/(1+[1]*64*1.65901*TMath::Power(x,-1.7218)))",0.43,0.73); + fSB41008->SetFillColor(19); + fSB41008->SetFillStyle(0); + + ci = TColor::GetColor("#ff0000"); + fSB41008->SetLineColor(ci); + fSB41008->SetLineWidth(2); + fSB41008->SetChisquare(191.3612); + fSB41008->SetNDF(94); + fSB41008->GetXaxis()->SetLabelFont(42); + fSB41008->GetXaxis()->SetLabelSize(0.035); + fSB41008->GetXaxis()->SetTitleSize(0.035); + fSB41008->GetXaxis()->SetTitleFont(42); + fSB41008->GetYaxis()->SetLabelFont(42); + fSB41008->GetYaxis()->SetLabelSize(0.035); + fSB41008->GetYaxis()->SetTitleSize(0.035); + fSB41008->GetYaxis()->SetTitleFont(42); + fSB41008->SetParameter(0,1.461227); + fSB41008->SetParError(0,0.004670547); + fSB41008->SetParLimits(0,0,0); + fSB41008->SetParameter(1,0.003107919); + fSB41008->SetParError(1,2.49478e-05); + fSB41008->SetParLimits(1,0,0); + gre->GetListOfFunctions()->Add(fSB41008); + multigraph->Add(gre,"p"); + multigraph->Draw("a"); + multigraph->GetXaxis()->SetTitle("Lorentz #beta"); + multigraph->GetXaxis()->SetLabelFont(42); + multigraph->GetXaxis()->SetLabelSize(0.035); + multigraph->GetXaxis()->SetTitleSize(0.035); + multigraph->GetXaxis()->SetTitleFont(42); + multigraph->GetYaxis()->SetTitle("dA/dE / (10^{-6} a.u./(Mev#upointion#upoints^{-1})"); + multigraph->GetYaxis()->SetLabelFont(42); + multigraph->GetYaxis()->SetLabelSize(0.035); + multigraph->GetYaxis()->SetTitleSize(0.035); + multigraph->GetYaxis()->SetTitleFont(42); + + TPaveText *pt = new TPaveText(0.4821203,0.94,0.5178797,0.995,"blNDC"); + pt->SetName("title"); + pt->SetBorderSize(0); + pt->SetFillColor(0); + pt->SetFillStyle(0); + pt->SetTextFont(42); + TText *AText = pt->AddText(" "); + pt->Draw(); + + TF1 *tf1_birk11009 = new TF1("tf1_birk1","[0]*(1/(1+[1]*1.65901*TMath::Power(x,-1.7218)))",0.3,0.59); + tf1_birk11009->SetFillColor(19); + tf1_birk11009->SetFillStyle(0); + tf1_birk11009->SetLineWidth(2); + tf1_birk11009->SetLineStyle(2); + tf1_birk11009->SetChisquare(6.966278); + tf1_birk11009->SetNDF(24); + tf1_birk11009->GetXaxis()->SetLabelFont(42); + tf1_birk11009->GetXaxis()->SetLabelSize(0.035); + tf1_birk11009->GetXaxis()->SetTitleSize(0.035); + tf1_birk11009->GetXaxis()->SetTitleFont(42); + tf1_birk11009->GetYaxis()->SetLabelFont(42); + tf1_birk11009->GetYaxis()->SetLabelSize(0.035); + tf1_birk11009->GetYaxis()->SetTitleSize(0.035); + tf1_birk11009->GetYaxis()->SetTitleFont(42); + tf1_birk11009->SetParameter(0,1.483503); + tf1_birk11009->SetParError(0,0.007048719); + tf1_birk11009->SetParLimits(0,0,0); + tf1_birk11009->SetParameter(1,0.02031807); + tf1_birk11009->SetParError(1,0.0008434079); + tf1_birk11009->SetParLimits(1,0,0); + tf1_birk11009->Draw("same"); + + TF1 *tf1_birk21010 = new TF1("tf1_birk2","[0]*(1/(1+[1]*4*1.65901*TMath::Power(x,-1.7218)))",0.34,0.59); + tf1_birk21010->SetFillColor(19); + tf1_birk21010->SetFillStyle(0); + tf1_birk21010->SetLineWidth(2); + tf1_birk21010->SetLineStyle(2); + tf1_birk21010->SetChisquare(18.14934); + tf1_birk21010->SetNDF(24); + tf1_birk21010->GetXaxis()->SetLabelFont(42); + tf1_birk21010->GetXaxis()->SetLabelSize(0.035); + tf1_birk21010->GetXaxis()->SetTitleSize(0.035); + tf1_birk21010->GetXaxis()->SetTitleFont(42); + tf1_birk21010->GetYaxis()->SetLabelFont(42); + tf1_birk21010->GetYaxis()->SetLabelSize(0.035); + tf1_birk21010->GetYaxis()->SetTitleSize(0.035); + tf1_birk21010->GetYaxis()->SetTitleFont(42); + tf1_birk21010->SetParameter(0,1.409186); + tf1_birk21010->SetParError(0,0.007975704); + tf1_birk21010->SetParLimits(0,0,0); + tf1_birk21010->SetParameter(1,0.005106407); + tf1_birk21010->SetParError(1,0.0002685225); + tf1_birk21010->SetParLimits(1,0,0); + tf1_birk21010->Draw("same"); + + TF1 *tf1_birk31011 = new TF1("tf1_birk3","[0]*(1/(1+[1]*36*1.65901*TMath::Power(x,-1.7218)))",0.4,0.73); + tf1_birk31011->SetFillColor(19); + tf1_birk31011->SetFillStyle(0); + tf1_birk31011->SetLineWidth(2); + tf1_birk31011->SetLineStyle(2); + tf1_birk31011->SetChisquare(28.99199); + tf1_birk31011->SetNDF(24); + tf1_birk31011->GetXaxis()->SetLabelFont(42); + tf1_birk31011->GetXaxis()->SetLabelSize(0.035); + tf1_birk31011->GetXaxis()->SetTitleSize(0.035); + tf1_birk31011->GetXaxis()->SetTitleFont(42); + tf1_birk31011->GetYaxis()->SetLabelFont(42); + tf1_birk31011->GetYaxis()->SetLabelSize(0.035); + tf1_birk31011->GetYaxis()->SetTitleSize(0.035); + tf1_birk31011->GetYaxis()->SetTitleFont(42); + tf1_birk31011->SetParameter(0,1.524827); + tf1_birk31011->SetParError(0,0.01273139); + tf1_birk31011->SetParLimits(0,0,0); + tf1_birk31011->SetParameter(1,0.00435401); + tf1_birk31011->SetParError(1,9.38925e-05); + tf1_birk31011->SetParLimits(1,0,0); + tf1_birk31011->Draw("same"); + + TF1 *tf1_birk41012 = new TF1("tf1_birk4","[0]*(1/(1+[1]*64*1.65901*TMath::Power(x,-1.7218)))",0.43,0.73); + tf1_birk41012->SetFillColor(19); + tf1_birk41012->SetFillStyle(0); + tf1_birk41012->SetLineWidth(2); + tf1_birk41012->SetLineStyle(2); + tf1_birk41012->SetChisquare(48.98117); + tf1_birk41012->SetNDF(19); + tf1_birk41012->GetXaxis()->SetLabelFont(42); + tf1_birk41012->GetXaxis()->SetLabelSize(0.035); + tf1_birk41012->GetXaxis()->SetTitleSize(0.035); + tf1_birk41012->GetXaxis()->SetTitleFont(42); + tf1_birk41012->GetYaxis()->SetLabelFont(42); + tf1_birk41012->GetYaxis()->SetLabelSize(0.035); + tf1_birk41012->GetYaxis()->SetTitleSize(0.035); + tf1_birk41012->GetYaxis()->SetTitleFont(42); + tf1_birk41012->SetParameter(0,1.406416); + tf1_birk41012->SetParError(0,0.01567856); + tf1_birk41012->SetParLimits(0,0,0); + tf1_birk41012->SetParameter(1,0.002845708); + tf1_birk41012->SetParError(1,7.55654e-05); + tf1_birk41012->SetParLimits(1,0,0); + tf1_birk41012->Draw("same"); + + TLegend *leg = new TLegend(0.65,0.65,0.9,0.9,NULL,"brNDC"); + leg->SetBorderSize(0); + leg->SetTextFont(22); + leg->SetTextSize(0.035); + leg->SetLineColor(1); + leg->SetLineStyle(1); + leg->SetLineWidth(1); + leg->SetFillColor(0); + leg->SetFillStyle(1001); + TLegendEntry *entry=leg->AddEntry("Graph","Protons","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(20); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("Graph","Helium","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(21); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("Graph","Carbon","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(22); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("Graph","Oxygen","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(23); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("fB","Birks Fit 1","l"); + + ci = TColor::GetColor("#ff0000"); + entry->SetLineColor(ci); + entry->SetLineStyle(1); + entry->SetLineWidth(2); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(21); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("tf1_birk1","Birks Fit 2","l"); + entry->SetLineColor(1); + entry->SetLineStyle(2); + entry->SetLineWidth(2); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(21); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + leg->Draw(); + Simfit->Modified(); + Simfit->cd(); + Simfit->SetSelected(Simfit); +} diff --git a/Scripts_20161126/figs/bvt_beta_combinedfitbirks2.pdf b/Scripts_20161126/figs/bvt_beta_combinedfitbirks2.pdf new file mode 100644 index 0000000..6bfa05b Binary files /dev/null and b/Scripts_20161126/figs/bvt_beta_combinedfitbirks2.pdf differ diff --git a/Scripts_20161126/figs/bvt_beta_combinedfitbirks2.png b/Scripts_20161126/figs/bvt_beta_combinedfitbirks2.png new file mode 100644 index 0000000..54497db Binary files /dev/null and b/Scripts_20161126/figs/bvt_beta_combinedfitbirks2.png differ diff --git a/Scripts_20161126/figs/deltaFIT_HeE101I8.pdf b/Scripts_20161126/figs/deltaFIT_HeE101I8.pdf new file mode 100644 index 0000000..ee7ad76 Binary files /dev/null and b/Scripts_20161126/figs/deltaFIT_HeE101I8.pdf differ diff --git a/Scripts_20161126/figs/energylist_p_bpm1.C b/Scripts_20161126/figs/energylist_p_bpm1.C new file mode 100644 index 0000000..c3f6259 --- /dev/null +++ b/Scripts_20161126/figs/energylist_p_bpm1.C @@ -0,0 +1,628 @@ +void energylist_p_bpm1() +{ +//=========Macro generated from canvas: c1_n3/c1_n3 +//========= (Tue Dec 5 12:03:45 2017) by ROOT version6.06/02 + TCanvas *c1_n3 = new TCanvas("c1_n3", "c1_n3",10,71,700,500); + gStyle->SetOptStat(0); + gStyle->SetOptTitle(0); + c1_n3->Range(-0.268968,-0.6075949,2.929125,3.189873); + c1_n3->SetFillColor(0); + c1_n3->SetBorderMode(0); + c1_n3->SetBorderSize(2); + c1_n3->SetLogx(); + c1_n3->SetLogy(); + c1_n3->SetTickx(1); + c1_n3->SetTicky(1); + c1_n3->SetLeftMargin(0.14); + c1_n3->SetRightMargin(0.08); + c1_n3->SetTopMargin(0.05); + c1_n3->SetBottomMargin(0.16); + c1_n3->SetFrameLineWidth(2); + c1_n3->SetFrameBorderMode(0); + c1_n3->SetFrameLineWidth(2); + c1_n3->SetFrameBorderMode(0); + + TMultiGraph *multigraph = new TMultiGraph(); + multigraph->SetName(""); + multigraph->SetTitle(" "); + + Double_t Graph_fx1005[26] = { + 12.6088, + 10.5936, + 9.36031, + 8.51336, + 7.88605, + 7.39682, + 7.00082, + 6.67084, + 6.39059, + 6.14881, + 5.93691, + 5.74999, + 5.58275, + 5.43216, + 5.29477, + 5.16875, + 5.05214, + 4.94396, + 4.84371, + 4.7504, + 4.62797, + 4.51492, + 4.41193, + 4.31778, + 4.23108, + 4.15089}; + Double_t Graph_fy1005[26] = { + 14.7533, + 12.9823, + 11.739, + 10.7917, + 10.0881, + 9.53643, + 9.08859, + 8.70457, + 8.38237, + 8.11432, + 7.87787, + 7.66343, + 7.4668, + 7.28997, + 7.12113, + 6.95465, + 6.79119, + 6.65235, + 6.53111, + 6.42166, + 6.26875, + 6.11729, + 5.98535, + 5.8583, + 5.75379, + 5.66446}; + Double_t Graph_fex1005[26] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1005[26] = { + 0.096904, + 0.0867817, + 0.0833148, + 0.0757961, + 0.0704225, + 0.066426, + 0.0614816, + 0.0592074, + 0.0544328, + 0.0542731, + 0.0530555, + 0.0509711, + 0.0501345, + 0.0491602, + 0.0466416, + 0.0450393, + 0.0435765, + 0.0429222, + 0.0422342, + 0.0415991, + 0.040269, + 0.0392985, + 0.0386669, + 0.03804, + 0.0374308, + 0.0370458}; + TGraphErrors *gre = new TGraphErrors(26,Graph_fx1005,Graph_fy1005,Graph_fex1005,Graph_fey1005); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineWidth(2); + gre->SetMarkerStyle(20); + + TH1F *Graph_Graph1005 = new TH1F("Graph_Graph1005","Graph",100,3.305099,13.45459); + Graph_Graph1005->SetMinimum(4.705135); + Graph_Graph1005->SetMaximum(15.77248); + Graph_Graph1005->SetDirectory(0); + Graph_Graph1005->SetStats(0); + Graph_Graph1005->SetLineWidth(2); + Graph_Graph1005->SetMarkerStyle(21); + Graph_Graph1005->GetXaxis()->SetNdivisions(505); + Graph_Graph1005->GetXaxis()->SetLabelFont(22); + Graph_Graph1005->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1005->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1005->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1005->GetXaxis()->SetTitleFont(22); + Graph_Graph1005->GetYaxis()->SetLabelFont(22); + Graph_Graph1005->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1005->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1005->GetYaxis()->SetTitleFont(22); + Graph_Graph1005->GetZaxis()->SetLabelFont(22); + Graph_Graph1005->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1005->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1005->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1005); + + multigraph->Add(gre,"p"); + + Double_t Graph_fx1006[26] = { + 40.9872, + 36.5311, + 33.3966, + 31.0354, + 29.1728, + 27.6535, + 26.4152, + 25.2997, + 24.2755, + 23.5412, + 22.8107, + 22.1585, + 21.5696, + 21.0355, + 20.5468, + 20.099, + 19.6851, + 19.3016, + 18.9455, + 18.4699, + 18.0231, + 17.6151, + 17.6151, + 17.2409, + 16.8956, + 16.5761}; + Double_t Graph_fy1006[26] = { + 47.1601, + 43.1518, + 40.2558, + 37.8531, + 35.8407, + 34.1384, + 33.0144, + 31.9231, + 30.7137, + 29.7778, + 28.8261, + 28.1549, + 27.4654, + 26.8597, + 26.2916, + 25.7392, + 25.2084, + 24.7074, + 24.1346, + 23.5882, + 23.0798, + 22.6489, + 22.6537, + 22.2957, + 21.9185, + 21.5344}; + Double_t Graph_fex1006[26] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1006[26] = { + 0.325381, + 0.296032, + 0.275185, + 0.258592, + 0.23944, + 0.234008, + 0.224034, + 0.213649, + 0.200011, + 0.200923, + 0.192497, + 0.184697, + 0.178344, + 0.172283, + 0.174974, + 0.169175, + 0.164477, + 0.160319, + 0.155186, + 0.149138, + 0.146083, + 0.143489, + 0.141393, + 0.145132, + 0.141963, + 0.137924}; + gre = new TGraphErrors(26,Graph_fx1006,Graph_fy1006,Graph_fex1006,Graph_fey1006); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineWidth(2); + gre->SetMarkerStyle(21); + + TH1F *Graph_Graph1006 = new TH1F("Graph_Graph1006","Graph",100,14.13499,43.42831); + Graph_Graph1006->SetMinimum(18.78758); + Graph_Graph1006->SetMaximum(50.09438); + Graph_Graph1006->SetDirectory(0); + Graph_Graph1006->SetStats(0); + Graph_Graph1006->SetLineWidth(2); + Graph_Graph1006->SetMarkerStyle(21); + Graph_Graph1006->GetXaxis()->SetNdivisions(505); + Graph_Graph1006->GetXaxis()->SetLabelFont(22); + Graph_Graph1006->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1006->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1006->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1006->GetXaxis()->SetTitleFont(22); + Graph_Graph1006->GetYaxis()->SetLabelFont(22); + Graph_Graph1006->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1006->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1006->GetYaxis()->SetTitleFont(22); + Graph_Graph1006->GetZaxis()->SetLabelFont(22); + Graph_Graph1006->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1006->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1006->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1006); + + multigraph->Add(gre,"p"); + + Double_t Graph_fx1007[26] = { + 281.17, + 238.032, + 212.434, + 194.949, + 181.707, + 171.379, + 163.143, + 155.987, + 150.13, + 145.288, + 140.907, + 136.922, + 133.574, + 130.481, + 127.616, + 124.954, + 122.474, + 120.362, + 118.373, + 116.315, + 113.872, + 111.453, + 109.36, + 107.408, + 105.71, + 103.993}; + Double_t Graph_fy1007[26] = { + 196.867, + 179.85, + 169.016, + 160.469, + 153.851, + 148.603, + 144.656, + 140.722, + 137.608, + 134.995, + 132.671, + 130.383, + 128.49, + 126.591, + 124.669, + 123.359, + 121.772, + 120.852, + 119.21, + 118.072, + 116.746, + 115.09, + 113.845, + 112.763, + 111.924, + 110.711}; + Double_t Graph_fex1007[26] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1007[26] = { + 1.3175, + 1.20008, + 1.13173, + 1.05858, + 1.01704, + 0.976083, + 0.939167, + 0.934211, + 0.917891, + 0.901069, + 0.89545, + 0.872389, + 0.854152, + 0.837884, + 0.826673, + 0.826776, + 0.809861, + 0.805432, + 0.78314, + 0.794487, + 0.797656, + 0.767728, + 0.761847, + 0.748099, + 0.754045, + 0.760557}; + gre = new TGraphErrors(26,Graph_fx1007,Graph_fy1007,Graph_fex1007,Graph_fey1007); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineWidth(2); + gre->SetMarkerStyle(22); + + TH1F *Graph_Graph1007 = new TH1F("Graph_Graph1007","Graph",100,86.2753,298.8877); + Graph_Graph1007->SetMinimum(101.127); + Graph_Graph1007->SetMaximum(207.0079); + Graph_Graph1007->SetDirectory(0); + Graph_Graph1007->SetStats(0); + Graph_Graph1007->SetLineWidth(2); + Graph_Graph1007->SetMarkerStyle(21); + Graph_Graph1007->GetXaxis()->SetNdivisions(505); + Graph_Graph1007->GetXaxis()->SetLabelFont(22); + Graph_Graph1007->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1007->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1007->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1007->GetXaxis()->SetTitleFont(22); + Graph_Graph1007->GetYaxis()->SetLabelFont(22); + Graph_Graph1007->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1007->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1007->GetYaxis()->SetTitleFont(22); + Graph_Graph1007->GetZaxis()->SetLabelFont(22); + Graph_Graph1007->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1007->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1007->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1007); + + multigraph->Add(gre,"p"); + + Double_t Graph_fx1008[21] = { + 444.422, + 377.991, + 337.641, + 310.049, + 289.655, + 273.879, + 261.017, + 250.406, + 241.353, + 233.587, + 226.809, + 220.824, + 215.458, + 210.691, + 206.301, + 202.283, + 198.535, + 195.17, + 191.994, + 189.171, + 185.146}; + Double_t Graph_fy1008[21] = { + 283.324, + 258.069, + 241.789, + 229.547, + 220.51, + 213.788, + 208.227, + 204.009, + 199.865, + 195.942, + 193.137, + 190.311, + 187.751, + 185.687, + 183.871, + 182.269, + 180.563, + 178.594, + 176.964, + 175.153, + 173.879}; + Double_t Graph_fex1008[21] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1008[21] = { + 1.77394, + 1.70727, + 1.65216, + 1.57122, + 1.50184, + 1.4449, + 1.41063, + 1.42342, + 1.37302, + 1.40855, + 1.37409, + 1.3673, + 1.36183, + 1.41053, + 1.35948, + 1.36312, + 1.3555, + 1.34891, + 1.38416, + 1.38183, + 1.39197}; + gre = new TGraphErrors(21,Graph_fx1008,Graph_fy1008,Graph_fex1008,Graph_fey1008); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineWidth(2); + gre->SetMarkerStyle(23); + + TH1F *Graph_Graph1008 = new TH1F("Graph_Graph1008","Graph",100,159.2184,470.3496); + Graph_Graph1008->SetMinimum(161.2259); + Graph_Graph1008->SetMaximum(296.359); + Graph_Graph1008->SetDirectory(0); + Graph_Graph1008->SetStats(0); + Graph_Graph1008->SetLineWidth(2); + Graph_Graph1008->SetMarkerStyle(21); + Graph_Graph1008->GetXaxis()->SetNdivisions(505); + Graph_Graph1008->GetXaxis()->SetLabelFont(22); + Graph_Graph1008->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1008->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1008->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1008->GetXaxis()->SetTitleFont(22); + Graph_Graph1008->GetYaxis()->SetLabelFont(22); + Graph_Graph1008->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1008->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1008->GetYaxis()->SetTitleFont(22); + Graph_Graph1008->GetZaxis()->SetLabelFont(22); + Graph_Graph1008->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1008->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1008->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1008); + + multigraph->Add(gre,"p"); + multigraph->Draw("a"); + multigraph->GetXaxis()->SetTitle("Stopping Power / MeV#upointcm^{2}g^{-1}"); + multigraph->GetXaxis()->SetRange(5,101); + multigraph->GetXaxis()->SetNdivisions(505); + multigraph->GetXaxis()->SetLabelFont(22); + multigraph->GetXaxis()->SetLabelOffset(0.015); + multigraph->GetXaxis()->SetLabelSize(0.05); + multigraph->GetXaxis()->SetTitleSize(0.06); + multigraph->GetXaxis()->SetTitleFont(22); + multigraph->GetYaxis()->SetTitle("#bar{A}_{BPM} / a.u.#upoint10^{-6}#upointion^{-1}s^{-1}"); + multigraph->GetYaxis()->SetLabelFont(22); + multigraph->GetYaxis()->SetLabelSize(0.05); + multigraph->GetYaxis()->SetTitleSize(0.06); + multigraph->GetYaxis()->SetTitleFont(22); + + TLegend *leg = new TLegend(0.2,0.6,0.45,0.9,NULL,"brNDC"); + leg->SetBorderSize(0); + leg->SetTextFont(22); + leg->SetTextSize(0.045); + leg->SetLineColor(1); + leg->SetLineStyle(1); + leg->SetLineWidth(2); + leg->SetFillColor(0); + leg->SetFillStyle(0); + TLegendEntry *entry=leg->AddEntry("Graph","Protons","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(20); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("Graph","Helium","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(21); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("Graph","Carbon","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(22); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("Graph","Oxygen","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(23); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + leg->Draw(); + c1_n3->Modified(); + c1_n3->cd(); + c1_n3->SetSelected(c1_n3); +} diff --git a/Scripts_20161126/figs/energylist_p_bpm1.pdf b/Scripts_20161126/figs/energylist_p_bpm1.pdf new file mode 100644 index 0000000..667101b Binary files /dev/null and b/Scripts_20161126/figs/energylist_p_bpm1.pdf differ diff --git a/Scripts_20161126/figs/energylist_p_bpm1.png b/Scripts_20161126/figs/energylist_p_bpm1.png new file mode 100644 index 0000000..52ba792 Binary files /dev/null and b/Scripts_20161126/figs/energylist_p_bpm1.png differ diff --git a/Scripts_20161126/figs/energylist_p_bpm1_linear.pdf b/Scripts_20161126/figs/energylist_p_bpm1_linear.pdf new file mode 100644 index 0000000..290d7d2 Binary files /dev/null and b/Scripts_20161126/figs/energylist_p_bpm1_linear.pdf differ diff --git a/Scripts_20161126/figs/energylist_p_bpm1ratio.C b/Scripts_20161126/figs/energylist_p_bpm1ratio.C new file mode 100644 index 0000000..fc59955 --- /dev/null +++ b/Scripts_20161126/figs/energylist_p_bpm1ratio.C @@ -0,0 +1,626 @@ +void energylist_p_bpm1ratio() +{ +//=========Macro generated from canvas: c1_n5/c1_n5 +//========= (Tue Dec 5 12:03:49 2017) by ROOT version6.06/02 + TCanvas *c1_n5 = new TCanvas("c1_n5", "c1_n5",10,71,700,500); + gStyle->SetOptStat(0); + gStyle->SetOptTitle(0); + c1_n5->Range(-0.2681628,-0.2632911,2.924179,1.382278); + c1_n5->SetFillColor(0); + c1_n5->SetBorderMode(0); + c1_n5->SetBorderSize(2); + c1_n5->SetLogx(); + c1_n5->SetTickx(1); + c1_n5->SetTicky(1); + c1_n5->SetLeftMargin(0.14); + c1_n5->SetRightMargin(0.08); + c1_n5->SetTopMargin(0.05); + c1_n5->SetBottomMargin(0.16); + c1_n5->SetFrameLineWidth(2); + c1_n5->SetFrameBorderMode(0); + c1_n5->SetFrameLineWidth(2); + c1_n5->SetFrameBorderMode(0); + + TMultiGraph *multigraph = new TMultiGraph(); + multigraph->SetName(""); + multigraph->SetTitle(" "); + + Double_t Graph_fx1013[26] = { + 12.6088, + 10.5936, + 9.36031, + 8.51336, + 7.88605, + 7.39682, + 7.00082, + 6.67084, + 6.39059, + 6.14881, + 5.93691, + 5.74999, + 5.58275, + 5.43216, + 5.29477, + 5.16875, + 5.05214, + 4.94396, + 4.84371, + 4.7504, + 4.62797, + 4.51492, + 4.41193, + 4.31778, + 4.23108, + 4.15089}; + Double_t Graph_fy1013[26] = { + 0.846875, + 0.887343, + 0.907533, + 0.932063, + 0.927223, + 0.934388, + 0.941687, + 0.946871, + 0.954023, + 0.959175, + 0.967165, + 0.969136, + 0.976766, + 0.974111, + 0.978422, + 0.97894, + 0.97749, + 0.979042, + 0.982174, + 0.982609, + 0.985496, + 0.986499, + 0.986779, + 0.987506, + 0.989358, + 0.995765}; + Double_t Graph_fex1013[26] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1013[26] = { + 0.162587, + 0.0879311, + 0.0762469, + 0.200989, + 0.0684706, + 0.0656731, + 0.0665411, + 0.0590399, + 0.0832979, + 0.0822801, + 0.11564, + 0.0859334, + 0.139394, + 0.0706902, + 0.0862178, + 0.0827282, + 0.0733657, + 0.0861606, + 0.10259, + 0.0792495, + 0.0745409, + 0.0945878, + 0.0897324, + 0.0860912, + 0.0817015, + 0.120135}; + TGraphErrors *gre = new TGraphErrors(26,Graph_fx1013,Graph_fy1013,Graph_fex1013,Graph_fey1013); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineWidth(2); + gre->SetMarkerStyle(20); + + TH1F *Graph_Graph1013 = new TH1F("Graph_Graph1013","Graph",100,3.305099,13.45459); + Graph_Graph1013->SetMinimum(0.6394116); + Graph_Graph1013->SetMaximum(1.177928); + Graph_Graph1013->SetDirectory(0); + Graph_Graph1013->SetStats(0); + Graph_Graph1013->SetLineWidth(2); + Graph_Graph1013->SetMarkerStyle(21); + Graph_Graph1013->GetXaxis()->SetNdivisions(505); + Graph_Graph1013->GetXaxis()->SetLabelFont(22); + Graph_Graph1013->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1013->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1013->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1013->GetXaxis()->SetTitleFont(22); + Graph_Graph1013->GetYaxis()->SetLabelFont(22); + Graph_Graph1013->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1013->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1013->GetYaxis()->SetTitleFont(22); + Graph_Graph1013->GetZaxis()->SetLabelFont(22); + Graph_Graph1013->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1013->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1013->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1013); + + multigraph->Add(gre,"p"); + + Double_t Graph_fx1014[26] = { + 40.9872, + 36.5311, + 33.3966, + 31.0354, + 29.1728, + 27.6535, + 26.4152, + 25.2997, + 24.2755, + 23.5412, + 22.8107, + 22.1585, + 21.5696, + 21.0355, + 20.5468, + 20.099, + 19.6851, + 19.3016, + 18.9455, + 18.4699, + 18.0231, + 17.6151, + 17.6151, + 17.2409, + 16.8956, + 16.5761}; + Double_t Graph_fy1014[26] = { + 0.837155, + 0.859363, + 0.877586, + 0.888242, + 0.895211, + 0.90126, + 0.911994, + 0.922294, + 0.921898, + 0.923219, + 0.92169, + 0.926626, + 0.929649, + 0.930499, + 0.933104, + 0.933214, + 0.933477, + 0.934968, + 0.928811, + 0.929971, + 0.935956, + 0.93865, + 0.937032, + 0.940977, + 0.947256, + 0.950791}; + Double_t Graph_fex1014[26] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1014[26] = { + 0.119765, + 0.113341, + 0.115817, + 0.119597, + 0.117185, + 0.142076, + 0.133823, + 0.143838, + 0.11313, + 0.144729, + 0.131699, + 0.124226, + 0.124038, + 0.103947, + 0.128883, + 0.112198, + 0.114058, + 0.131146, + 0.110757, + 0.091714, + 0.124491, + 0.114269, + 0.0918229, + 0.107415, + 0.134408, + 0.15948}; + gre = new TGraphErrors(26,Graph_fx1014,Graph_fy1014,Graph_fex1014,Graph_fey1014); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineWidth(2); + gre->SetMarkerStyle(21); + + TH1F *Graph_Graph1014 = new TH1F("Graph_Graph1014","Graph",100,14.13499,43.42831); + Graph_Graph1014->SetMinimum(0.6781019); + Graph_Graph1014->SetMaximum(1.149559); + Graph_Graph1014->SetDirectory(0); + Graph_Graph1014->SetStats(0); + Graph_Graph1014->SetLineWidth(2); + Graph_Graph1014->SetMarkerStyle(21); + Graph_Graph1014->GetXaxis()->SetNdivisions(505); + Graph_Graph1014->GetXaxis()->SetLabelFont(22); + Graph_Graph1014->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1014->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1014->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1014->GetXaxis()->SetTitleFont(22); + Graph_Graph1014->GetYaxis()->SetLabelFont(22); + Graph_Graph1014->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1014->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1014->GetYaxis()->SetTitleFont(22); + Graph_Graph1014->GetZaxis()->SetLabelFont(22); + Graph_Graph1014->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1014->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1014->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1014); + + multigraph->Add(gre,"p"); + + Double_t Graph_fx1015[26] = { + 281.17, + 238.032, + 212.434, + 194.949, + 181.707, + 171.379, + 163.143, + 155.987, + 150.13, + 145.288, + 140.907, + 136.922, + 133.574, + 130.481, + 127.616, + 124.954, + 122.474, + 120.362, + 118.373, + 116.315, + 113.872, + 111.453, + 109.36, + 107.408, + 105.71, + 103.993}; + Double_t Graph_fy1015[26] = { + 0.511747, + 0.550471, + 0.578648, + 0.600649, + 0.618462, + 0.631073, + 0.645186, + 0.657305, + 0.66727, + 0.676203, + 0.684881, + 0.694878, + 0.700551, + 0.706417, + 0.711568, + 0.71947, + 0.723455, + 0.730006, + 0.732592, + 0.739325, + 0.746295, + 0.750604, + 0.757457, + 0.763871, + 0.769927, + 0.777465}; + Double_t Graph_fex1015[26] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1015[26] = { + 0.0991432, + 0.0776159, + 0.069855, + 0.0828653, + 0.0881503, + 0.0670831, + 0.0636568, + 0.0762452, + 0.0689592, + 0.0657185, + 0.0666931, + 0.0919361, + 0.072031, + 0.0706179, + 0.0727347, + 0.0908468, + 0.0714208, + 0.0667801, + 0.0640762, + 0.0827212, + 0.09357, + 0.0640238, + 0.0726045, + 0.0697857, + 0.0629636, + 0.107248}; + gre = new TGraphErrors(26,Graph_fx1015,Graph_fy1015,Graph_fex1015,Graph_fey1015); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineWidth(2); + gre->SetMarkerStyle(22); + + TH1F *Graph_Graph1015 = new TH1F("Graph_Graph1015","Graph",100,86.2753,298.8877); + Graph_Graph1015->SetMinimum(0.3653929); + Graph_Graph1015->SetMaximum(0.9319239); + Graph_Graph1015->SetDirectory(0); + Graph_Graph1015->SetStats(0); + Graph_Graph1015->SetLineWidth(2); + Graph_Graph1015->SetMarkerStyle(21); + Graph_Graph1015->GetXaxis()->SetNdivisions(505); + Graph_Graph1015->GetXaxis()->SetLabelFont(22); + Graph_Graph1015->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1015->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1015->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1015->GetXaxis()->SetTitleFont(22); + Graph_Graph1015->GetYaxis()->SetLabelFont(22); + Graph_Graph1015->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1015->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1015->GetYaxis()->SetTitleFont(22); + Graph_Graph1015->GetZaxis()->SetLabelFont(22); + Graph_Graph1015->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1015->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1015->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1015); + + multigraph->Add(gre,"p"); + + Double_t Graph_fx1016[21] = { + 444.422, + 377.991, + 337.641, + 310.049, + 289.655, + 273.879, + 261.017, + 250.406, + 241.353, + 233.587, + 226.809, + 220.824, + 215.458, + 210.691, + 206.301, + 202.283, + 198.535, + 195.17, + 191.994, + 189.171, + 185.146}; + Double_t Graph_fy1016[21] = { + 0.463955, + 0.49717, + 0.522513, + 0.540532, + 0.554082, + 0.569026, + 0.582256, + 0.59429, + 0.604949, + 0.613851, + 0.621925, + 0.627908, + 0.639176, + 0.642942, + 0.651644, + 0.658283, + 0.665819, + 0.67072, + 0.673946, + 0.674636, + 0.689113}; + Double_t Graph_fex1016[21] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1016[21] = { + 0.0472485, + 0.0600861, + 0.0773371, + 0.0823137, + 0.0728014, + 0.0813242, + 0.0873147, + 0.101642, + 0.101284, + 0.12513, + 0.1197, + 0.112074, + 0.141836, + 0.144067, + 0.140007, + 0.142713, + 0.153575, + 0.156159, + 0.167684, + 0.158734, + 0.195112}; + gre = new TGraphErrors(21,Graph_fx1016,Graph_fy1016,Graph_fex1016,Graph_fey1016); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineWidth(2); + gre->SetMarkerStyle(23); + + TH1F *Graph_Graph1016 = new TH1F("Graph_Graph1016","Graph",100,159.2184,470.3496); + Graph_Graph1016->SetMinimum(0.3699546); + Graph_Graph1016->SetMaximum(0.9309769); + Graph_Graph1016->SetDirectory(0); + Graph_Graph1016->SetStats(0); + Graph_Graph1016->SetLineWidth(2); + Graph_Graph1016->SetMarkerStyle(21); + Graph_Graph1016->GetXaxis()->SetNdivisions(505); + Graph_Graph1016->GetXaxis()->SetLabelFont(22); + Graph_Graph1016->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1016->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1016->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1016->GetXaxis()->SetTitleFont(22); + Graph_Graph1016->GetYaxis()->SetLabelFont(22); + Graph_Graph1016->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1016->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1016->GetYaxis()->SetTitleFont(22); + Graph_Graph1016->GetZaxis()->SetLabelFont(22); + Graph_Graph1016->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1016->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1016->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1016); + + multigraph->Add(gre,"p"); + multigraph->Draw("a"); + multigraph->GetXaxis()->SetTitle("S_{ps} / MeV#upointcm^{2}g^{-1}"); + multigraph->GetXaxis()->SetNdivisions(505); + multigraph->GetXaxis()->SetLabelFont(22); + multigraph->GetXaxis()->SetLabelOffset(0.015); + multigraph->GetXaxis()->SetLabelSize(0.05); + multigraph->GetXaxis()->SetTitleSize(0.06); + multigraph->GetXaxis()->SetTitleFont(22); + multigraph->GetYaxis()->SetTitle("(#bar{A}_{BPM} / #bar{A}_{IC})#upoint(S_{air} / S_{ps}) "); + multigraph->GetYaxis()->SetLabelFont(22); + multigraph->GetYaxis()->SetLabelSize(0.05); + multigraph->GetYaxis()->SetTitleSize(0.06); + multigraph->GetYaxis()->SetTitleFont(22); + + TLegend *leg = new TLegend(0.2,0.2,0.45,0.5,NULL,"brNDC"); + leg->SetBorderSize(0); + leg->SetTextFont(22); + leg->SetTextSize(0.045); + leg->SetLineColor(1); + leg->SetLineStyle(1); + leg->SetLineWidth(2); + leg->SetFillColor(0); + leg->SetFillStyle(0); + TLegendEntry *entry=leg->AddEntry("Graph","Protons","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(20); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("Graph","Helium","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(21); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("Graph","Carbon","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(22); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("Graph","Oxygen","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(23); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + leg->Draw(); + c1_n5->Modified(); + c1_n5->cd(); + c1_n5->SetSelected(c1_n5); +} diff --git a/Scripts_20161126/figs/energylist_p_bpm1ratio.pdf b/Scripts_20161126/figs/energylist_p_bpm1ratio.pdf new file mode 100644 index 0000000..83b286e Binary files /dev/null and b/Scripts_20161126/figs/energylist_p_bpm1ratio.pdf differ diff --git a/Scripts_20161126/figs/energylist_p_bpm1ratio.png b/Scripts_20161126/figs/energylist_p_bpm1ratio.png new file mode 100644 index 0000000..6b300d6 Binary files /dev/null and b/Scripts_20161126/figs/energylist_p_bpm1ratio.png differ diff --git a/Scripts_20161126/figs/energylist_p_focus.C b/Scripts_20161126/figs/energylist_p_focus.C new file mode 100644 index 0000000..f533be9 --- /dev/null +++ b/Scripts_20161126/figs/energylist_p_focus.C @@ -0,0 +1,866 @@ +void energylist_p_focus() +{ +//=========Macro generated from canvas: c1_n8/c1_n8 +//========= (Tue Dec 5 12:03:56 2017) by ROOT version6.06/02 + TCanvas *c1_n8 = new TCanvas("c1_n8", "c1_n8",10,71,700,500); + gStyle->SetOptStat(0); + gStyle->SetOptTitle(0); + c1_n8->Range(-0.2681628,-8.101265,2.924179,42.53165); + c1_n8->SetFillColor(0); + c1_n8->SetBorderMode(0); + c1_n8->SetBorderSize(2); + c1_n8->SetLogx(); + c1_n8->SetTickx(1); + c1_n8->SetTicky(1); + c1_n8->SetLeftMargin(0.14); + c1_n8->SetRightMargin(0.08); + c1_n8->SetTopMargin(0.05); + c1_n8->SetBottomMargin(0.16); + c1_n8->SetFrameLineWidth(2); + c1_n8->SetFrameBorderMode(0); + c1_n8->SetFrameLineWidth(2); + c1_n8->SetFrameBorderMode(0); + + TMultiGraph *multigraph = new TMultiGraph(); + multigraph->SetName(""); + multigraph->SetTitle(" "); + + Double_t Graph_fx1025[26] = { + 12.6088, + 10.5936, + 9.36031, + 8.51336, + 7.88605, + 7.39682, + 7.00082, + 6.67084, + 6.39059, + 6.14881, + 5.93691, + 5.74999, + 5.58275, + 5.43216, + 5.29477, + 5.16875, + 5.05214, + 4.94396, + 4.84371, + 4.7504, + 4.62797, + 4.51492, + 4.41193, + 4.31778, + 4.23108, + 4.15089}; + Double_t Graph_fy1025[26] = { + 23.2202, + 22.3925, + 21.5149, + 20.6234, + 19.6743, + 18.7674, + 17.9374, + 17.1555, + 16.4424, + 15.8897, + 15.343, + 14.8706, + 14.527, + 14.2756, + 13.9383, + 13.3496, + 12.841, + 12.4378, + 12.1803, + 11.9333, + 11.5727, + 11.191, + 10.8187, + 10.5284, + 10.3842, + 10.2094}; + Double_t Graph_fex1025[26] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1025[26] = { + 1.30071, + 0.609153, + 0.597366, + 0.45632, + 0.362185, + 0.336758, + 0.293683, + 0.289904, + 0.246882, + 0.280069, + 0.23936, + 0.235769, + 0.27967, + 0.266778, + 0.243623, + 0.244766, + 0.238929, + 0.238023, + 0.239261, + 0.233253, + 0.229587, + 0.227382, + 0.223042, + 0.236156, + 0.223226, + 0.227092}; + TGraphErrors *gre = new TGraphErrors(26,Graph_fx1025,Graph_fy1025,Graph_fex1025,Graph_fey1025); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineWidth(2); + gre->SetMarkerStyle(20); + + TH1F *Graph_Graph1025 = new TH1F("Graph_Graph1025","Graph",100,3.305099,13.45459); + Graph_Graph1025->SetMinimum(8.528448); + Graph_Graph1025->SetMaximum(25.97477); + Graph_Graph1025->SetDirectory(0); + Graph_Graph1025->SetStats(0); + Graph_Graph1025->SetLineWidth(2); + Graph_Graph1025->SetMarkerStyle(21); + Graph_Graph1025->GetXaxis()->SetNdivisions(505); + Graph_Graph1025->GetXaxis()->SetLabelFont(22); + Graph_Graph1025->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1025->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1025->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1025->GetXaxis()->SetTitleFont(22); + Graph_Graph1025->GetYaxis()->SetLabelFont(22); + Graph_Graph1025->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1025->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1025->GetYaxis()->SetTitleFont(22); + Graph_Graph1025->GetZaxis()->SetLabelFont(22); + Graph_Graph1025->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1025->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1025->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1025); + + multigraph->Add(gre,"p"); + + Double_t Graph_fx1026[26] = { + 40.9872, + 36.5311, + 33.3966, + 31.0354, + 29.1728, + 27.6535, + 26.4152, + 25.2997, + 24.2755, + 23.5412, + 22.8107, + 22.1585, + 21.5696, + 21.0355, + 20.5468, + 20.099, + 19.6851, + 19.3016, + 18.9455, + 18.4699, + 18.0231, + 17.6151, + 17.6151, + 17.2409, + 16.8956, + 16.5761}; + Double_t Graph_fy1026[26] = { + 15.9221, + 14.2921, + 12.8768, + 11.8021, + 10.9673, + 10.3418, + 9.98036, + 9.65909, + 9.23717, + 8.86011, + 8.47676, + 8.17635, + 7.93508, + 7.7211, + 7.6021, + 7.46468, + 7.23694, + 6.90511, + 6.60379, + 6.34687, + 6.2449, + 6.16995, + 6.16264, + 6.08753, + 5.9945, + 5.75543}; + Double_t Graph_fex1026[26] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1026[26] = { + 0.423793, + 0.358463, + 0.346412, + 0.317436, + 0.295563, + 0.274694, + 0.250454, + 0.232713, + 0.227609, + 0.201864, + 0.19754, + 0.181417, + 0.177604, + 0.198354, + 0.18296, + 0.171901, + 0.171037, + 0.165608, + 0.162897, + 0.162767, + 0.1577, + 0.164441, + 0.156679, + 0.154969, + 0.140838, + 0.1449}; + gre = new TGraphErrors(26,Graph_fx1026,Graph_fy1026,Graph_fex1026,Graph_fey1026); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineWidth(2); + gre->SetMarkerStyle(21); + + TH1F *Graph_Graph1026 = new TH1F("Graph_Graph1026","Graph",100,14.13499,43.42831); + Graph_Graph1026->SetMinimum(4.536994); + Graph_Graph1026->SetMaximum(17.41943); + Graph_Graph1026->SetDirectory(0); + Graph_Graph1026->SetStats(0); + Graph_Graph1026->SetLineWidth(2); + Graph_Graph1026->SetMarkerStyle(21); + Graph_Graph1026->GetXaxis()->SetNdivisions(505); + Graph_Graph1026->GetXaxis()->SetLabelFont(22); + Graph_Graph1026->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1026->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1026->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1026->GetXaxis()->SetTitleFont(22); + Graph_Graph1026->GetYaxis()->SetLabelFont(22); + Graph_Graph1026->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1026->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1026->GetYaxis()->SetTitleFont(22); + Graph_Graph1026->GetZaxis()->SetLabelFont(22); + Graph_Graph1026->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1026->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1026->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1026); + + multigraph->Add(gre,"p"); + + Double_t Graph_fx1027[26] = { + 281.17, + 238.032, + 212.434, + 194.949, + 181.707, + 171.379, + 163.143, + 155.987, + 150.13, + 145.288, + 140.907, + 136.922, + 133.574, + 130.481, + 127.616, + 124.954, + 122.474, + 120.362, + 118.373, + 116.315, + 113.872, + 111.453, + 109.36, + 107.408, + 105.71, + 103.993}; + Double_t Graph_fy1027[26] = { + 11.6173, + 9.81008, + 8.63341, + 7.75115, + 7.09651, + 6.58813, + 6.2041, + 5.86053, + 5.61335, + 5.42964, + 5.23743, + 5.00862, + 4.82878, + 4.6612, + 4.50058, + 4.44307, + 4.32668, + 4.26544, + 4.1406, + 4.00506, + 3.89954, + 3.82633, + 3.73899, + 3.69418, + 3.62339, + 3.58926}; + Double_t Graph_fex1027[26] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1027[26] = { + 0.526113, + 0.320042, + 0.236798, + 0.221266, + 0.213813, + 0.184163, + 0.184757, + 0.173209, + 0.161585, + 0.155038, + 0.157624, + 0.15949, + 0.150554, + 0.150529, + 0.148177, + 0.157311, + 0.171126, + 0.151631, + 0.147127, + 0.149328, + 0.152054, + 0.157703, + 0.147235, + 0.150126, + 0.153794, + 0.164296}; + gre = new TGraphErrors(26,Graph_fx1027,Graph_fy1027,Graph_fex1027,Graph_fey1027); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineWidth(2); + gre->SetMarkerStyle(22); + + TH1F *Graph_Graph1027 = new TH1F("Graph_Graph1027","Graph",100,86.2753,298.8877); + Graph_Graph1027->SetMinimum(2.553119); + Graph_Graph1027->SetMaximum(13.01526); + Graph_Graph1027->SetDirectory(0); + Graph_Graph1027->SetStats(0); + Graph_Graph1027->SetLineWidth(2); + Graph_Graph1027->SetMarkerStyle(21); + Graph_Graph1027->GetXaxis()->SetNdivisions(505); + Graph_Graph1027->GetXaxis()->SetLabelFont(22); + Graph_Graph1027->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1027->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1027->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1027->GetXaxis()->SetTitleFont(22); + Graph_Graph1027->GetYaxis()->SetLabelFont(22); + Graph_Graph1027->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1027->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1027->GetYaxis()->SetTitleFont(22); + Graph_Graph1027->GetZaxis()->SetLabelFont(22); + Graph_Graph1027->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1027->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1027->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1027); + + multigraph->Add(gre,"p"); + + Double_t Graph_fx1028[21] = { + 444.422, + 377.991, + 337.641, + 310.049, + 289.655, + 273.879, + 261.017, + 250.406, + 241.353, + 233.587, + 226.809, + 220.824, + 215.458, + 210.691, + 206.301, + 202.283, + 198.535, + 195.17, + 191.994, + 189.171, + 185.146}; + Double_t Graph_fy1028[21] = { + 10.1353, + 8.48151, + 7.42582, + 6.65796, + 6.09796, + 5.67039, + 5.3283, + 5.05531, + 4.81381, + 4.62773, + 4.46468, + 4.31942, + 4.16624, + 4.0485, + 3.90285, + 3.79799, + 3.71399, + 3.61246, + 3.53538, + 3.44765, + 3.36929}; + Double_t Graph_fex1028[21] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1028[21] = { + 0.436406, + 0.298185, + 0.247136, + 0.240059, + 0.21942, + 0.198437, + 0.190017, + 0.188966, + 0.181183, + 0.185274, + 0.181001, + 0.177293, + 0.177119, + 0.179361, + 0.17064, + 0.183338, + 0.163782, + 0.166099, + 0.166417, + 0.166759, + 0.167733}; + gre = new TGraphErrors(21,Graph_fx1028,Graph_fy1028,Graph_fex1028,Graph_fey1028); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineWidth(2); + gre->SetMarkerStyle(23); + + TH1F *Graph_Graph1028 = new TH1F("Graph_Graph1028","Graph",100,159.2184,470.3496); + Graph_Graph1028->SetMinimum(2.464542); + Graph_Graph1028->SetMaximum(11.30872); + Graph_Graph1028->SetDirectory(0); + Graph_Graph1028->SetStats(0); + Graph_Graph1028->SetLineWidth(2); + Graph_Graph1028->SetMarkerStyle(21); + Graph_Graph1028->GetXaxis()->SetNdivisions(505); + Graph_Graph1028->GetXaxis()->SetLabelFont(22); + Graph_Graph1028->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1028->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1028->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1028->GetXaxis()->SetTitleFont(22); + Graph_Graph1028->GetYaxis()->SetLabelFont(22); + Graph_Graph1028->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1028->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1028->GetYaxis()->SetTitleFont(22); + Graph_Graph1028->GetZaxis()->SetLabelFont(22); + Graph_Graph1028->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1028->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1028->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1028); + + multigraph->Add(gre,"p"); + + Double_t Graph_fx2[99] = { + 12.6088, + 10.5936, + 9.36031, + 8.51336, + 7.88605, + 7.39682, + 7.00082, + 6.67084, + 6.39059, + 6.14881, + 5.93691, + 5.74999, + 5.58275, + 5.43216, + 5.29477, + 5.16875, + 5.05214, + 4.94396, + 4.84371, + 4.7504, + 4.62797, + 4.51492, + 4.41193, + 4.31778, + 4.23108, + 4.15089, + 40.9872, + 36.5311, + 33.3966, + 31.0354, + 29.1728, + 27.6535, + 26.4152, + 25.2997, + 24.2755, + 23.5412, + 22.8107, + 22.1585, + 21.5696, + 21.0355, + 20.5468, + 20.099, + 19.6851, + 19.3016, + 18.9455, + 18.4699, + 18.0231, + 17.6151, + 17.6151, + 17.2409, + 16.8956, + 16.5761, + 281.17, + 238.032, + 212.434, + 194.949, + 181.707, + 171.379, + 163.143, + 155.987, + 150.13, + 145.288, + 140.907, + 136.922, + 133.574, + 130.481, + 127.616, + 124.954, + 122.474, + 120.362, + 118.373, + 116.315, + 113.872, + 111.453, + 109.36, + 107.408, + 105.71, + 103.993, + 444.422, + 377.991, + 337.641, + 310.049, + 289.655, + 273.879, + 261.017, + 250.406, + 241.353, + 233.587, + 226.809, + 220.824, + 215.458, + 210.691, + 206.301, + 202.283, + 198.535, + 195.17, + 191.994, + 189.171, + 185.146}; + Double_t Graph_fy2[99] = { + 32.4, + 26.8, + 22.8, + 20, + 18, + 16.5, + 15.4, + 14.5, + 13.7, + 13.1, + 12.6, + 12.2, + 11.8, + 11.4, + 11.1, + 10.8, + 10.4, + 10.1, + 9.8, + 9.5, + 9.1, + 8.8, + 8.5, + 8.2, + 8.1, + 8.1, + 15.4, + 13, + 11.5, + 10.5, + 9.7, + 9.2, + 8.7, + 8.3, + 7.9, + 7.6, + 7.3, + 7, + 6.8, + 6.5, + 6.3, + 6.1, + 5.9, + 5.8, + 5.6, + 5.4, + 5.3, + 5.1, + 5.1, + 5, + 5, + 4.9, + 9.8, + 8.4, + 7.4, + 6.6, + 6.1, + 5.6, + 5.3, + 5, + 4.8, + 4.6, + 4.4, + 4.3, + 4.2, + 4.1, + 4, + 3.9, + 3.8, + 3.8, + 3.7, + 3.7, + 3.6, + 3.6, + 3.5, + 3.5, + 3.4, + 3.4, + 8.8, + 7.3, + 6.2, + 5.5, + 5, + 4.6, + 4.4, + 4.1, + 4, + 3.8, + 3.7, + 3.5, + 3.4, + 3.3, + 3.2, + 3.1, + 3, + 2.9, + 2.8, + 2.7, + 2.7}; + graph = new TGraph(99,Graph_fx2,Graph_fy2); + graph->SetName("Graph"); + graph->SetTitle("focusHITfile.txt"); + graph->SetFillColor(1); + graph->SetLineWidth(2); + graph->SetMarkerStyle(30); + + TH1F *Graph_Graph2 = new TH1F("Graph_Graph2","focusHITfile.txt",100,3.735801,488.4491); + Graph_Graph2->SetMinimum(0); + Graph_Graph2->SetMaximum(35.37); + Graph_Graph2->SetDirectory(0); + Graph_Graph2->SetStats(0); + Graph_Graph2->SetLineWidth(2); + Graph_Graph2->SetMarkerStyle(21); + Graph_Graph2->GetXaxis()->SetNdivisions(505); + Graph_Graph2->GetXaxis()->SetLabelFont(22); + Graph_Graph2->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph2->GetXaxis()->SetLabelSize(0.05); + Graph_Graph2->GetXaxis()->SetTitleSize(0.06); + Graph_Graph2->GetXaxis()->SetTitleFont(22); + Graph_Graph2->GetYaxis()->SetLabelFont(22); + Graph_Graph2->GetYaxis()->SetLabelSize(0.05); + Graph_Graph2->GetYaxis()->SetTitleSize(0.06); + Graph_Graph2->GetYaxis()->SetTitleFont(22); + Graph_Graph2->GetZaxis()->SetLabelFont(22); + Graph_Graph2->GetZaxis()->SetLabelSize(0.05); + Graph_Graph2->GetZaxis()->SetTitleSize(0.06); + Graph_Graph2->GetZaxis()->SetTitleFont(22); + graph->SetHistogram(Graph_Graph2); + + multigraph->Add(graph,"p"); + multigraph->Draw("a"); + multigraph->GetXaxis()->SetTitle("S_{ps} / MeV#upointcm^{2}g^{-1}"); + multigraph->GetXaxis()->SetNdivisions(505); + multigraph->GetXaxis()->SetLabelFont(22); + multigraph->GetXaxis()->SetLabelOffset(0.015); + multigraph->GetXaxis()->SetLabelSize(0.05); + multigraph->GetXaxis()->SetTitleSize(0.06); + multigraph->GetXaxis()->SetTitleFont(22); + multigraph->GetYaxis()->SetTitle("Beam Width (FWHM) / mm"); + multigraph->GetYaxis()->SetLabelFont(22); + multigraph->GetYaxis()->SetLabelSize(0.05); + multigraph->GetYaxis()->SetTitleSize(0.06); + multigraph->GetYaxis()->SetTitleFont(22); + + TLegend *leg = new TLegend(0.6,0.7,0.9,0.9,NULL,"brNDC"); + leg->SetBorderSize(0); + leg->SetTextFont(22); + leg->SetTextSize(0.045); + leg->SetLineColor(1); + leg->SetLineStyle(1); + leg->SetLineWidth(2); + leg->SetFillColor(0); + leg->SetFillStyle(0); + TLegendEntry *entry=leg->AddEntry("Graph","Protons","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(20); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("Graph","Helium","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(21); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("Graph","Carbon","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(22); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("Graph","Oxygen","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(23); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("Graph","HIT nominal","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(30); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + leg->Draw(); + c1_n8->Modified(); + c1_n8->cd(); + c1_n8->SetSelected(c1_n8); +} diff --git a/Scripts_20161126/figs/energylist_p_focus.pdf b/Scripts_20161126/figs/energylist_p_focus.pdf new file mode 100644 index 0000000..d03a6f9 Binary files /dev/null and b/Scripts_20161126/figs/energylist_p_focus.pdf differ diff --git a/Scripts_20161126/figs/energylist_p_focus.png b/Scripts_20161126/figs/energylist_p_focus.png new file mode 100644 index 0000000..6b97b7b Binary files /dev/null and b/Scripts_20161126/figs/energylist_p_focus.png differ diff --git a/Scripts_20161126/figs/energylist_p_focusfit.C b/Scripts_20161126/figs/energylist_p_focusfit.C new file mode 100644 index 0000000..3b48086 --- /dev/null +++ b/Scripts_20161126/figs/energylist_p_focusfit.C @@ -0,0 +1,866 @@ +void energylist_p_focusfit() +{ +//=========Macro generated from canvas: c1_n7/c1_n7 +//========= (Tue Dec 5 12:03:54 2017) by ROOT version6.06/02 + TCanvas *c1_n7 = new TCanvas("c1_n7", "c1_n7",10,71,700,500); + gStyle->SetOptStat(0); + gStyle->SetOptTitle(0); + c1_n7->Range(-0.2681628,-8.101265,2.924179,42.53165); + c1_n7->SetFillColor(0); + c1_n7->SetBorderMode(0); + c1_n7->SetBorderSize(2); + c1_n7->SetLogx(); + c1_n7->SetTickx(1); + c1_n7->SetTicky(1); + c1_n7->SetLeftMargin(0.14); + c1_n7->SetRightMargin(0.08); + c1_n7->SetTopMargin(0.05); + c1_n7->SetBottomMargin(0.16); + c1_n7->SetFrameLineWidth(2); + c1_n7->SetFrameBorderMode(0); + c1_n7->SetFrameLineWidth(2); + c1_n7->SetFrameBorderMode(0); + + TMultiGraph *multigraph = new TMultiGraph(); + multigraph->SetName(""); + multigraph->SetTitle(" "); + + Double_t Graph_fx1021[26] = { + 12.6088, + 10.5936, + 9.36031, + 8.51336, + 7.88605, + 7.39682, + 7.00082, + 6.67084, + 6.39059, + 6.14881, + 5.93691, + 5.74999, + 5.58275, + 5.43216, + 5.29477, + 5.16875, + 5.05214, + 4.94396, + 4.84371, + 4.7504, + 4.62797, + 4.51492, + 4.41193, + 4.31778, + 4.23108, + 4.15089}; + Double_t Graph_fy1021[26] = { + 32.9013, + 27.744, + 24.4059, + 21.995, + 20.1596, + 18.7334, + 17.5547, + 16.5428, + 15.6484, + 15.0075, + 14.3766, + 13.8591, + 13.6084, + 13.387, + 13.0491, + 12.3962, + 11.8307, + 11.4052, + 11.1674, + 10.9495, + 10.604, + 10.2355, + 9.8712, + 9.59144, + 9.5084, + 9.37103}; + Double_t Graph_fex1021[26] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1021[26] = { + 1.98679, + 0.796985, + 0.381944, + 0.250191, + 0.17974, + 0.13563, + 0.107492, + 0.0929105, + 0.0805071, + 0.0771068, + 0.0709875, + 0.0686077, + 0.13478, + 0.104907, + 0.108599, + 0.122035, + 0.0855704, + 0.0992709, + 0.0902259, + 0.110161, + 0.10467, + 0.0894564, + 0.0979918, + 0.0985891, + 0.114279, + 0.126649}; + TGraphErrors *gre = new TGraphErrors(26,Graph_fx1021,Graph_fy1021,Graph_fex1021,Graph_fey1021); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineWidth(2); + gre->SetMarkerStyle(20); + + TH1F *Graph_Graph1021 = new TH1F("Graph_Graph1021","Graph",100,3.305099,13.45459); + Graph_Graph1021->SetMinimum(6.68001); + Graph_Graph1021->SetMaximum(37.45246); + Graph_Graph1021->SetDirectory(0); + Graph_Graph1021->SetStats(0); + Graph_Graph1021->SetLineWidth(2); + Graph_Graph1021->SetMarkerStyle(21); + Graph_Graph1021->GetXaxis()->SetNdivisions(505); + Graph_Graph1021->GetXaxis()->SetLabelFont(22); + Graph_Graph1021->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1021->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1021->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1021->GetXaxis()->SetTitleFont(22); + Graph_Graph1021->GetYaxis()->SetLabelFont(22); + Graph_Graph1021->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1021->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1021->GetYaxis()->SetTitleFont(22); + Graph_Graph1021->GetZaxis()->SetLabelFont(22); + Graph_Graph1021->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1021->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1021->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1021); + + multigraph->Add(gre,"p"); + + Double_t Graph_fx1022[26] = { + 40.9872, + 36.5311, + 33.3966, + 31.0354, + 29.1728, + 27.6535, + 26.4152, + 25.2997, + 24.2755, + 23.5412, + 22.8107, + 22.1585, + 21.5696, + 21.0355, + 20.5468, + 20.099, + 19.6851, + 19.3016, + 18.9455, + 18.4699, + 18.0231, + 17.6151, + 17.6151, + 17.2409, + 16.8956, + 16.5761}; + Double_t Graph_fy1022[26] = { + 15.1594, + 13.3055, + 11.8374, + 10.7895, + 10.0051, + 9.44939, + 9.17732, + 8.93682, + 8.5593, + 8.2007, + 7.83545, + 7.54864, + 7.33297, + 7.14276, + 7.07923, + 6.97124, + 6.7461, + 6.37544, + 6.0389, + 5.78302, + 5.7198, + 5.68573, + 5.68278, + 5.64649, + 5.58385, + 5.32082}; + Double_t Graph_fex1022[26] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1022[26] = { + 0.157637, + 0.110274, + 0.0889165, + 0.0836284, + 0.0751865, + 0.065632, + 0.0644147, + 0.0645154, + 0.0622379, + 0.0585808, + 0.0540224, + 0.0516892, + 0.0495544, + 0.060412, + 0.0498132, + 0.0492933, + 0.0464559, + 0.0451538, + 0.0469093, + 0.0474983, + 0.0488553, + 0.0504578, + 0.0590019, + 0.0511971, + 0.0536603, + 0.0536564}; + gre = new TGraphErrors(26,Graph_fx1022,Graph_fy1022,Graph_fex1022,Graph_fey1022); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineWidth(2); + gre->SetMarkerStyle(21); + + TH1F *Graph_Graph1022 = new TH1F("Graph_Graph1022","Graph",100,14.13499,43.42831); + Graph_Graph1022->SetMinimum(4.262176); + Graph_Graph1022->SetMaximum(16.32202); + Graph_Graph1022->SetDirectory(0); + Graph_Graph1022->SetStats(0); + Graph_Graph1022->SetLineWidth(2); + Graph_Graph1022->SetMarkerStyle(21); + Graph_Graph1022->GetXaxis()->SetNdivisions(505); + Graph_Graph1022->GetXaxis()->SetLabelFont(22); + Graph_Graph1022->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1022->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1022->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1022->GetXaxis()->SetTitleFont(22); + Graph_Graph1022->GetYaxis()->SetLabelFont(22); + Graph_Graph1022->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1022->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1022->GetYaxis()->SetTitleFont(22); + Graph_Graph1022->GetZaxis()->SetLabelFont(22); + Graph_Graph1022->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1022->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1022->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1022); + + multigraph->Add(gre,"p"); + + Double_t Graph_fx1023[26] = { + 281.17, + 238.032, + 212.434, + 194.949, + 181.707, + 171.379, + 163.143, + 155.987, + 150.13, + 145.288, + 140.907, + 136.922, + 133.574, + 130.481, + 127.616, + 124.954, + 122.474, + 120.362, + 118.373, + 116.315, + 113.872, + 111.453, + 109.36, + 107.408, + 105.71, + 103.993}; + Double_t Graph_fy1023[26] = { + 11.2876, + 9.21783, + 8.02, + 7.18651, + 6.56283, + 6.08487, + 5.73336, + 5.41198, + 5.1947, + 5.04038, + 4.86282, + 4.62808, + 4.45099, + 4.28634, + 4.1333, + 4.09938, + 3.98776, + 3.95148, + 3.82589, + 3.68008, + 3.58183, + 3.5244, + 3.44571, + 3.40738, + 3.35017, + 3.32749}; + Double_t Graph_fex1023[26] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1023[26] = { + 0.283868, + 0.166625, + 0.126836, + 0.110407, + 0.0998927, + 0.0913746, + 0.0873942, + 0.0816706, + 0.0854009, + 0.0915793, + 0.0995636, + 0.0873889, + 0.0859766, + 0.0791057, + 0.0805856, + 0.113435, + 0.100129, + 0.107079, + 0.0995612, + 0.0926725, + 0.101117, + 0.0858192, + 0.0940819, + 0.102715, + 0.116638, + 0.139817}; + gre = new TGraphErrors(26,Graph_fx1023,Graph_fy1023,Graph_fex1023,Graph_fey1023); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineWidth(2); + gre->SetMarkerStyle(22); + + TH1F *Graph_Graph1023 = new TH1F("Graph_Graph1023","Graph",100,86.2753,298.8877); + Graph_Graph1023->SetMinimum(2.349294); + Graph_Graph1023->SetMaximum(12.40985); + Graph_Graph1023->SetDirectory(0); + Graph_Graph1023->SetStats(0); + Graph_Graph1023->SetLineWidth(2); + Graph_Graph1023->SetMarkerStyle(21); + Graph_Graph1023->GetXaxis()->SetNdivisions(505); + Graph_Graph1023->GetXaxis()->SetLabelFont(22); + Graph_Graph1023->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1023->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1023->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1023->GetXaxis()->SetTitleFont(22); + Graph_Graph1023->GetYaxis()->SetLabelFont(22); + Graph_Graph1023->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1023->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1023->GetYaxis()->SetTitleFont(22); + Graph_Graph1023->GetZaxis()->SetLabelFont(22); + Graph_Graph1023->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1023->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1023->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1023); + + multigraph->Add(gre,"p"); + + Double_t Graph_fx1024[21] = { + 444.422, + 377.991, + 337.641, + 310.049, + 289.655, + 273.879, + 261.017, + 250.406, + 241.353, + 233.587, + 226.809, + 220.824, + 215.458, + 210.691, + 206.301, + 202.283, + 198.535, + 195.17, + 191.994, + 189.171, + 185.146}; + Double_t Graph_fy1024[21] = { + 9.86271, + 8.00956, + 6.9215, + 6.18437, + 5.65443, + 5.23921, + 4.91583, + 4.65659, + 4.42609, + 4.25642, + 4.10471, + 3.9663, + 3.81957, + 3.71291, + 3.56508, + 3.46133, + 3.39023, + 3.29698, + 3.23568, + 3.1601, + 3.08344}; + Double_t Graph_fex1024[21] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1024[21] = { + 0.309402, + 0.189579, + 0.146643, + 0.13183, + 0.118702, + 0.106218, + 0.100768, + 0.0979168, + 0.0936621, + 0.0930374, + 0.0878046, + 0.0841938, + 0.082233, + 0.0845847, + 0.0764382, + 0.0758902, + 0.0763753, + 0.0732074, + 0.0698015, + 0.0784281, + 0.0714811}; + gre = new TGraphErrors(21,Graph_fx1024,Graph_fy1024,Graph_fex1024,Graph_fey1024); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineWidth(2); + gre->SetMarkerStyle(23); + + TH1F *Graph_Graph1024 = new TH1F("Graph_Graph1024","Graph",100,159.2184,470.3496); + Graph_Graph1024->SetMinimum(2.295944); + Graph_Graph1024->SetMaximum(10.88813); + Graph_Graph1024->SetDirectory(0); + Graph_Graph1024->SetStats(0); + Graph_Graph1024->SetLineWidth(2); + Graph_Graph1024->SetMarkerStyle(21); + Graph_Graph1024->GetXaxis()->SetNdivisions(505); + Graph_Graph1024->GetXaxis()->SetLabelFont(22); + Graph_Graph1024->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1024->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1024->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1024->GetXaxis()->SetTitleFont(22); + Graph_Graph1024->GetYaxis()->SetLabelFont(22); + Graph_Graph1024->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1024->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1024->GetYaxis()->SetTitleFont(22); + Graph_Graph1024->GetZaxis()->SetLabelFont(22); + Graph_Graph1024->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1024->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1024->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1024); + + multigraph->Add(gre,"p"); + + Double_t Graph_fx1[99] = { + 12.6088, + 10.5936, + 9.36031, + 8.51336, + 7.88605, + 7.39682, + 7.00082, + 6.67084, + 6.39059, + 6.14881, + 5.93691, + 5.74999, + 5.58275, + 5.43216, + 5.29477, + 5.16875, + 5.05214, + 4.94396, + 4.84371, + 4.7504, + 4.62797, + 4.51492, + 4.41193, + 4.31778, + 4.23108, + 4.15089, + 40.9872, + 36.5311, + 33.3966, + 31.0354, + 29.1728, + 27.6535, + 26.4152, + 25.2997, + 24.2755, + 23.5412, + 22.8107, + 22.1585, + 21.5696, + 21.0355, + 20.5468, + 20.099, + 19.6851, + 19.3016, + 18.9455, + 18.4699, + 18.0231, + 17.6151, + 17.6151, + 17.2409, + 16.8956, + 16.5761, + 281.17, + 238.032, + 212.434, + 194.949, + 181.707, + 171.379, + 163.143, + 155.987, + 150.13, + 145.288, + 140.907, + 136.922, + 133.574, + 130.481, + 127.616, + 124.954, + 122.474, + 120.362, + 118.373, + 116.315, + 113.872, + 111.453, + 109.36, + 107.408, + 105.71, + 103.993, + 444.422, + 377.991, + 337.641, + 310.049, + 289.655, + 273.879, + 261.017, + 250.406, + 241.353, + 233.587, + 226.809, + 220.824, + 215.458, + 210.691, + 206.301, + 202.283, + 198.535, + 195.17, + 191.994, + 189.171, + 185.146}; + Double_t Graph_fy1[99] = { + 32.4, + 26.8, + 22.8, + 20, + 18, + 16.5, + 15.4, + 14.5, + 13.7, + 13.1, + 12.6, + 12.2, + 11.8, + 11.4, + 11.1, + 10.8, + 10.4, + 10.1, + 9.8, + 9.5, + 9.1, + 8.8, + 8.5, + 8.2, + 8.1, + 8.1, + 15.4, + 13, + 11.5, + 10.5, + 9.7, + 9.2, + 8.7, + 8.3, + 7.9, + 7.6, + 7.3, + 7, + 6.8, + 6.5, + 6.3, + 6.1, + 5.9, + 5.8, + 5.6, + 5.4, + 5.3, + 5.1, + 5.1, + 5, + 5, + 4.9, + 9.8, + 8.4, + 7.4, + 6.6, + 6.1, + 5.6, + 5.3, + 5, + 4.8, + 4.6, + 4.4, + 4.3, + 4.2, + 4.1, + 4, + 3.9, + 3.8, + 3.8, + 3.7, + 3.7, + 3.6, + 3.6, + 3.5, + 3.5, + 3.4, + 3.4, + 8.8, + 7.3, + 6.2, + 5.5, + 5, + 4.6, + 4.4, + 4.1, + 4, + 3.8, + 3.7, + 3.5, + 3.4, + 3.3, + 3.2, + 3.1, + 3, + 2.9, + 2.8, + 2.7, + 2.7}; + graph = new TGraph(99,Graph_fx1,Graph_fy1); + graph->SetName("Graph"); + graph->SetTitle("focusHITfile.txt"); + graph->SetFillColor(1); + graph->SetLineWidth(2); + graph->SetMarkerStyle(30); + + TH1F *Graph_Graph1 = new TH1F("Graph_Graph1","focusHITfile.txt",100,3.735801,488.4491); + Graph_Graph1->SetMinimum(0); + Graph_Graph1->SetMaximum(35.37); + Graph_Graph1->SetDirectory(0); + Graph_Graph1->SetStats(0); + Graph_Graph1->SetLineWidth(2); + Graph_Graph1->SetMarkerStyle(21); + Graph_Graph1->GetXaxis()->SetNdivisions(505); + Graph_Graph1->GetXaxis()->SetLabelFont(22); + Graph_Graph1->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1->GetXaxis()->SetTitleFont(22); + Graph_Graph1->GetYaxis()->SetLabelFont(22); + Graph_Graph1->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1->GetYaxis()->SetTitleFont(22); + Graph_Graph1->GetZaxis()->SetLabelFont(22); + Graph_Graph1->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1->GetZaxis()->SetTitleFont(22); + graph->SetHistogram(Graph_Graph1); + + multigraph->Add(graph,"p"); + multigraph->Draw("a"); + multigraph->GetXaxis()->SetTitle("S_{ps} / MeV#upointcm^{2}g^{-1}"); + multigraph->GetXaxis()->SetNdivisions(505); + multigraph->GetXaxis()->SetLabelFont(22); + multigraph->GetXaxis()->SetLabelOffset(0.015); + multigraph->GetXaxis()->SetLabelSize(0.05); + multigraph->GetXaxis()->SetTitleSize(0.06); + multigraph->GetXaxis()->SetTitleFont(22); + multigraph->GetYaxis()->SetTitle("Beam Width (FWHM) / mm"); + multigraph->GetYaxis()->SetLabelFont(22); + multigraph->GetYaxis()->SetLabelSize(0.05); + multigraph->GetYaxis()->SetTitleSize(0.06); + multigraph->GetYaxis()->SetTitleFont(22); + + TLegend *leg = new TLegend(0.6,0.7,0.9,0.9,NULL,"brNDC"); + leg->SetBorderSize(0); + leg->SetTextFont(22); + leg->SetTextSize(0.045); + leg->SetLineColor(1); + leg->SetLineStyle(1); + leg->SetLineWidth(2); + leg->SetFillColor(0); + leg->SetFillStyle(0); + TLegendEntry *entry=leg->AddEntry("Graph","Protons","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(20); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("Graph","Helium","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(21); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("Graph","Carbon","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(22); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("Graph","Oxygen","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(23); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("Graph","HIT nominal","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(30); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + leg->Draw(); + c1_n7->Modified(); + c1_n7->cd(); + c1_n7->SetSelected(c1_n7); +} diff --git a/Scripts_20161126/figs/energylist_p_focusfit.pdf b/Scripts_20161126/figs/energylist_p_focusfit.pdf new file mode 100644 index 0000000..ab70632 Binary files /dev/null and b/Scripts_20161126/figs/energylist_p_focusfit.pdf differ diff --git a/Scripts_20161126/figs/energylist_p_focusfit.png b/Scripts_20161126/figs/energylist_p_focusfit.png new file mode 100644 index 0000000..7ef4a14 Binary files /dev/null and b/Scripts_20161126/figs/energylist_p_focusfit.png differ diff --git a/Scripts_20161126/figs/energylist_p_ic1.C b/Scripts_20161126/figs/energylist_p_ic1.C new file mode 100644 index 0000000..cf2499b --- /dev/null +++ b/Scripts_20161126/figs/energylist_p_ic1.C @@ -0,0 +1,625 @@ +void energylist_p_ic1() +{ +//=========Macro generated from canvas: c1_n4/c1_n4 +//========= (Tue Dec 5 12:03:47 2017) by ROOT version6.06/02 + TCanvas *c1_n4 = new TCanvas("c1_n4", "c1_n4",10,71,700,500); + gStyle->SetOptStat(0); + gStyle->SetOptTitle(0); + c1_n4->Range(-98.28255,-1.445452,483.297,7.588622); + c1_n4->SetFillColor(0); + c1_n4->SetBorderMode(0); + c1_n4->SetBorderSize(2); + c1_n4->SetTickx(1); + c1_n4->SetTicky(1); + c1_n4->SetLeftMargin(0.14); + c1_n4->SetRightMargin(0.08); + c1_n4->SetTopMargin(0.05); + c1_n4->SetBottomMargin(0.16); + c1_n4->SetFrameLineWidth(2); + c1_n4->SetFrameBorderMode(0); + c1_n4->SetFrameLineWidth(2); + c1_n4->SetFrameBorderMode(0); + + TMultiGraph *multigraph = new TMultiGraph(); + multigraph->SetName(""); + multigraph->SetTitle(" "); + + Double_t Graph_fx1009[26] = { + 11.3093, + 9.5264, + 8.43143, + 7.67749, + 7.1179, + 6.68074, + 6.32635, + 6.03068, + 5.77926, + 5.56214, + 5.37167, + 5.2035, + 5.05292, + 4.91723, + 4.79334, + 4.67963, + 4.57435, + 4.47662, + 4.386, + 4.3016, + 4.1908, + 4.08841, + 3.99507, + 3.9097, + 3.83102, + 3.75822}; + Double_t Graph_fy1009[26] = { + 0.183659, + 0.154705, + 0.136923, + 0.124679, + 0.115592, + 0.108492, + 0.102737, + 0.0979356, + 0.0938527, + 0.0903267, + 0.0872336, + 0.0845025, + 0.0820573, + 0.0798536, + 0.0778418, + 0.0759952, + 0.0742855, + 0.0726983, + 0.0712267, + 0.0698562, + 0.0680568, + 0.0663941, + 0.0648783, + 0.0634918, + 0.0622141, + 0.0610318}; + Double_t Graph_fex1009[26] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1009[26] = { + 0.00117077, + 0.00102858, + 0.00096873, + 0.000871756, + 0.000802586, + 0.000751885, + 0.000691779, + 0.000662707, + 0.000606031, + 0.000599825, + 0.000583303, + 0.000558259, + 0.000547287, + 0.000534201, + 0.000505923, + 0.000488392, + 0.000473244, + 0.000465682, + 0.000456407, + 0.000448572, + 0.000434087, + 0.000422286, + 0.000413852, + 0.000407902, + 0.000401176, + 0.000395632}; + TGraphErrors *gre = new TGraphErrors(26,Graph_fx1009,Graph_fy1009,Graph_fex1009,Graph_fey1009); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineWidth(2); + gre->SetMarkerStyle(20); + + TH1F *Graph_Graph1009 = new TH1F("Graph_Graph1009","Graph",100,3.003112,12.06441); + Graph_Graph1009->SetMinimum(0.04821681); + Graph_Graph1009->SetMaximum(0.1972491); + Graph_Graph1009->SetDirectory(0); + Graph_Graph1009->SetStats(0); + Graph_Graph1009->SetLineWidth(2); + Graph_Graph1009->SetMarkerStyle(21); + Graph_Graph1009->GetXaxis()->SetNdivisions(505); + Graph_Graph1009->GetXaxis()->SetLabelFont(22); + Graph_Graph1009->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1009->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1009->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1009->GetXaxis()->SetTitleFont(22); + Graph_Graph1009->GetYaxis()->SetLabelFont(22); + Graph_Graph1009->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1009->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1009->GetYaxis()->SetTitleFont(22); + Graph_Graph1009->GetZaxis()->SetLabelFont(22); + Graph_Graph1009->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1009->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1009->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1009); + + multigraph->Add(gre,"p"); + + Double_t Graph_fx1010[26] = { + 36.9312, + 32.9287, + 30.1125, + 27.9903, + 26.316, + 24.95, + 23.8365, + 22.8333, + 21.912, + 21.2514, + 20.5941, + 20.0073, + 19.4773, + 18.9966, + 18.5568, + 18.1537, + 17.7811, + 17.4359, + 17.1152, + 16.687, + 16.2846, + 15.9173, + 15.9173, + 15.5802, + 15.2692, + 14.9814}; + Double_t Graph_fy1010[26] = { + 0.599746, + 0.534748, + 0.489013, + 0.454551, + 0.427361, + 0.405178, + 0.387094, + 0.370802, + 0.355841, + 0.345113, + 0.334439, + 0.32491, + 0.316303, + 0.308497, + 0.301354, + 0.294808, + 0.288757, + 0.283151, + 0.277944, + 0.27099, + 0.264455, + 0.258489, + 0.258489, + 0.253016, + 0.247965, + 0.243291}; + Double_t Graph_fex1010[26] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1010[26] = { + 0.00406694, + 0.00361452, + 0.00329485, + 0.0030533, + 0.00281565, + 0.00273157, + 0.00258457, + 0.002451, + 0.00229435, + 0.00229615, + 0.00220292, + 0.00210673, + 0.00203096, + 0.00195993, + 0.00197873, + 0.00191426, + 0.00186095, + 0.00181536, + 0.00176825, + 0.00170039, + 0.00165894, + 0.00162654, + 0.00160302, + 0.00162981, + 0.00159113, + 0.00154646}; + gre = new TGraphErrors(26,Graph_fx1010,Graph_fy1010,Graph_fex1010,Graph_fey1010); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineWidth(2); + gre->SetMarkerStyle(21); + + TH1F *Graph_Graph1010 = new TH1F("Graph_Graph1010","Graph",100,12.78642,39.12618); + Graph_Graph1010->SetMinimum(0.2055377); + Graph_Graph1010->SetMaximum(0.6400198); + Graph_Graph1010->SetDirectory(0); + Graph_Graph1010->SetStats(0); + Graph_Graph1010->SetLineWidth(2); + Graph_Graph1010->SetMarkerStyle(21); + Graph_Graph1010->GetXaxis()->SetNdivisions(505); + Graph_Graph1010->GetXaxis()->SetLabelFont(22); + Graph_Graph1010->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1010->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1010->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1010->GetXaxis()->SetTitleFont(22); + Graph_Graph1010->GetYaxis()->SetLabelFont(22); + Graph_Graph1010->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1010->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1010->GetYaxis()->SetTitleFont(22); + Graph_Graph1010->GetZaxis()->SetLabelFont(22); + Graph_Graph1010->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1010->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1010->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1010); + + multigraph->Add(gre,"p"); + + Double_t Graph_fx1011[26] = { + 254.499, + 215.483, + 192.343, + 176.544, + 164.584, + 155.258, + 147.823, + 141.364, + 136.079, + 131.711, + 127.758, + 124.164, + 121.145, + 118.356, + 115.773, + 113.374, + 111.138, + 109.234, + 107.442, + 105.587, + 103.386, + 101.207, + 99.3211, + 97.563, + 96.0339, + 94.488}; + Double_t Graph_fy1011[26] = { + 4.13296, + 3.49934, + 3.12357, + 2.867, + 2.67278, + 2.52133, + 2.40059, + 2.29569, + 2.20987, + 2.13892, + 2.07474, + 2.01637, + 1.96734, + 1.92206, + 1.88011, + 1.84114, + 1.80483, + 1.77392, + 1.74481, + 1.71468, + 1.67895, + 1.64356, + 1.61293, + 1.58438, + 1.55955, + 1.53444}; + Double_t Graph_fex1011[26] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1011[26] = { + 0.0271597, + 0.0229583, + 0.0205949, + 0.0186617, + 0.0174517, + 0.0163584, + 0.0154053, + 0.0150784, + 0.0145734, + 0.0141145, + 0.0138419, + 0.0133276, + 0.0129158, + 0.0125667, + 0.012318, + 0.0122102, + 0.0118726, + 0.0117092, + 0.011332, + 0.0114041, + 0.0113347, + 0.0108603, + 0.0106958, + 0.0104304, + 0.0104298, + 0.0104569}; + gre = new TGraphErrors(26,Graph_fx1011,Graph_fy1011,Graph_fex1011,Graph_fey1011); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineWidth(2); + gre->SetMarkerStyle(22); + + TH1F *Graph_Graph1011 = new TH1F("Graph_Graph1011","Graph",100,78.4869,270.5001); + Graph_Graph1011->SetMinimum(1.260369); + Graph_Graph1011->SetMaximum(4.423733); + Graph_Graph1011->SetDirectory(0); + Graph_Graph1011->SetStats(0); + Graph_Graph1011->SetLineWidth(2); + Graph_Graph1011->SetMarkerStyle(21); + Graph_Graph1011->GetXaxis()->SetNdivisions(505); + Graph_Graph1011->GetXaxis()->SetLabelFont(22); + Graph_Graph1011->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1011->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1011->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1011->GetXaxis()->SetTitleFont(22); + Graph_Graph1011->GetYaxis()->SetLabelFont(22); + Graph_Graph1011->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1011->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1011->GetYaxis()->SetTitleFont(22); + Graph_Graph1011->GetZaxis()->SetLabelFont(22); + Graph_Graph1011->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1011->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1011->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1011); + + multigraph->Add(gre,"p"); + + Double_t Graph_fx1012[21] = { + 416.151, + 353.682, + 315.718, + 289.746, + 270.543, + 255.685, + 243.568, + 233.57, + 225.037, + 217.717, + 211.327, + 205.684, + 200.624, + 196.128, + 191.987, + 188.197, + 184.661, + 181.485, + 178.489, + 175.824, + 172.026}; + Double_t Graph_fy1012[21] = { + 6.75811, + 5.74365, + 5.12712, + 4.70535, + 4.3935, + 4.15221, + 3.95544, + 3.79307, + 3.65451, + 3.53563, + 3.43186, + 3.34022, + 3.25804, + 3.18503, + 3.11779, + 3.05624, + 2.99881, + 2.94724, + 2.89859, + 2.85531, + 2.79362}; + Double_t Graph_fex1012[21] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1012[21] = { + 0.0418425, + 0.0374351, + 0.0343866, + 0.0316226, + 0.0293093, + 0.0275087, + 0.0262334, + 0.025866, + 0.024529, + 0.0247171, + 0.0237828, + 0.0233477, + 0.0229768, + 0.0234044, + 0.022362, + 0.0221984, + 0.0218315, + 0.0216234, + 0.0219119, + 0.0217452, + 0.0216389}; + gre = new TGraphErrors(21,Graph_fx1012,Graph_fy1012,Graph_fex1012,Graph_fey1012); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineWidth(2); + gre->SetMarkerStyle(23); + + TH1F *Graph_Graph1012 = new TH1F("Graph_Graph1012","Graph",100,147.6135,440.5635); + Graph_Graph1012->SetMinimum(2.369184); + Graph_Graph1012->SetMaximum(7.20275); + Graph_Graph1012->SetDirectory(0); + Graph_Graph1012->SetStats(0); + Graph_Graph1012->SetLineWidth(2); + Graph_Graph1012->SetMarkerStyle(21); + Graph_Graph1012->GetXaxis()->SetNdivisions(505); + Graph_Graph1012->GetXaxis()->SetLabelFont(22); + Graph_Graph1012->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1012->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1012->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1012->GetXaxis()->SetTitleFont(22); + Graph_Graph1012->GetYaxis()->SetLabelFont(22); + Graph_Graph1012->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1012->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1012->GetYaxis()->SetTitleFont(22); + Graph_Graph1012->GetZaxis()->SetLabelFont(22); + Graph_Graph1012->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1012->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1012->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1012); + + multigraph->Add(gre,"p"); + multigraph->Draw("a"); + multigraph->GetXaxis()->SetTitle("Stopping Power / MeV#upointcm^{2}g^{-1}"); + multigraph->GetXaxis()->SetNdivisions(505); + multigraph->GetXaxis()->SetLabelFont(22); + multigraph->GetXaxis()->SetLabelOffset(0.015); + multigraph->GetXaxis()->SetLabelSize(0.05); + multigraph->GetXaxis()->SetTitleSize(0.06); + multigraph->GetXaxis()->SetTitleFont(22); + multigraph->GetYaxis()->SetTitle("#bar{A}_{BPM} / a.u.#upoint10^{-6}#upointion^{-1}s^{-1}"); + multigraph->GetYaxis()->SetLabelFont(22); + multigraph->GetYaxis()->SetLabelSize(0.05); + multigraph->GetYaxis()->SetTitleSize(0.06); + multigraph->GetYaxis()->SetTitleFont(22); + + TLegend *leg = new TLegend(0.2,0.6,0.45,0.9,NULL,"brNDC"); + leg->SetBorderSize(0); + leg->SetTextFont(22); + leg->SetTextSize(0.045); + leg->SetLineColor(1); + leg->SetLineStyle(1); + leg->SetLineWidth(2); + leg->SetFillColor(0); + leg->SetFillStyle(0); + TLegendEntry *entry=leg->AddEntry("Graph","Protons","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(20); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("Graph","Helium","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(21); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("Graph","Carbon","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(22); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("Graph","Oxygen","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(23); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + leg->Draw(); + c1_n4->Modified(); + c1_n4->cd(); + c1_n4->SetSelected(c1_n4); +} diff --git a/Scripts_20161126/figs/energylist_p_ic1.pdf b/Scripts_20161126/figs/energylist_p_ic1.pdf new file mode 100644 index 0000000..39bf743 Binary files /dev/null and b/Scripts_20161126/figs/energylist_p_ic1.pdf differ diff --git a/Scripts_20161126/figs/energylist_p_ic1.png b/Scripts_20161126/figs/energylist_p_ic1.png new file mode 100644 index 0000000..9bbd11f Binary files /dev/null and b/Scripts_20161126/figs/energylist_p_ic1.png differ diff --git a/Scripts_20161126/figs/energylist_p_ic1ratio.C b/Scripts_20161126/figs/energylist_p_ic1ratio.C new file mode 100644 index 0000000..c94b03e --- /dev/null +++ b/Scripts_20161126/figs/energylist_p_ic1ratio.C @@ -0,0 +1,626 @@ +void energylist_p_ic1ratio() +{ +//=========Macro generated from canvas: c1_n6/c1_n6 +//========= (Tue Dec 5 12:03:52 2017) by ROOT version6.06/02 + TCanvas *c1_n6 = new TCanvas("c1_n6", "c1_n6",10,71,700,500); + gStyle->SetOptStat(0); + gStyle->SetOptTitle(0); + c1_n6->Range(-0.3458951,0.4582279,2.899919,1.344304); + c1_n6->SetFillColor(0); + c1_n6->SetBorderMode(0); + c1_n6->SetBorderSize(2); + c1_n6->SetLogx(); + c1_n6->SetTickx(1); + c1_n6->SetTicky(1); + c1_n6->SetLeftMargin(0.14); + c1_n6->SetRightMargin(0.08); + c1_n6->SetTopMargin(0.05); + c1_n6->SetBottomMargin(0.16); + c1_n6->SetFrameLineWidth(2); + c1_n6->SetFrameBorderMode(0); + c1_n6->SetFrameLineWidth(2); + c1_n6->SetFrameBorderMode(0); + + TMultiGraph *multigraph = new TMultiGraph(); + multigraph->SetName(""); + multigraph->SetTitle(" "); + + Double_t Graph_fx1017[26] = { + 11.3093, + 9.5264, + 8.43143, + 7.67749, + 7.1179, + 6.68074, + 6.32635, + 6.03068, + 5.77926, + 5.56214, + 5.37167, + 5.2035, + 5.05292, + 4.91723, + 4.79334, + 4.67963, + 4.57435, + 4.47662, + 4.386, + 4.3016, + 4.1908, + 4.08841, + 3.99507, + 3.9097, + 3.83102, + 3.75822}; + Double_t Graph_fy1017[26] = { + 0.875362, + 0.956761, + 0.97329, + 0.836673, + 0.97414, + 0.977426, + 0.96967, + 0.977745, + 0.937204, + 0.950673, + 0.918863, + 0.945228, + 0.892151, + 0.966497, + 0.93725, + 0.935821, + 0.943885, + 0.927274, + 0.903434, + 0.93812, + 0.940951, + 0.906276, + 0.917244, + 0.926774, + 0.935791, + 0.884807}; + Double_t Graph_fex1017[26] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1017[26] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + TGraphErrors *gre = new TGraphErrors(26,Graph_fx1017,Graph_fy1017,Graph_fex1017,Graph_fey1017); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineWidth(2); + gre->SetMarkerStyle(20); + + TH1F *Graph_Graph1017 = new TH1F("Graph_Graph1017","Graph",100,3.003112,12.06441); + Graph_Graph1017->SetMinimum(0.8225658); + Graph_Graph1017->SetMaximum(0.9918522); + Graph_Graph1017->SetDirectory(0); + Graph_Graph1017->SetStats(0); + Graph_Graph1017->SetLineWidth(2); + Graph_Graph1017->SetMarkerStyle(21); + Graph_Graph1017->GetXaxis()->SetNdivisions(505); + Graph_Graph1017->GetXaxis()->SetLabelFont(22); + Graph_Graph1017->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1017->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1017->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1017->GetXaxis()->SetTitleFont(22); + Graph_Graph1017->GetYaxis()->SetLabelFont(22); + Graph_Graph1017->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1017->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1017->GetYaxis()->SetTitleFont(22); + Graph_Graph1017->GetZaxis()->SetLabelFont(22); + Graph_Graph1017->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1017->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1017->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1017); + + multigraph->Add(gre,"p"); + + Double_t Graph_fx1018[26] = { + 36.9312, + 32.9287, + 30.1125, + 27.9903, + 26.316, + 24.95, + 23.8365, + 22.8333, + 21.912, + 21.2514, + 20.5941, + 20.0073, + 19.4773, + 18.9966, + 18.5568, + 18.1537, + 17.7811, + 17.4359, + 17.1152, + 16.687, + 16.2846, + 15.9173, + 15.9173, + 15.5802, + 15.2692, + 14.9814}; + Double_t Graph_fy1018[26] = { + 0.917436, + 0.907649, + 0.907305, + 0.900293, + 0.887237, + 0.876085, + 0.878532, + 0.862414, + 0.88259, + 0.864072, + 0.872034, + 0.872613, + 0.862322, + 0.891, + 0.881325, + 0.894299, + 0.885777, + 0.849629, + 0.879188, + 0.904921, + 0.832804, + 0.850892, + 0.895537, + 0.897175, + 0.846152, + 0.844238}; + Double_t Graph_fex1018[26] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1018[26] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + gre = new TGraphErrors(26,Graph_fx1018,Graph_fy1018,Graph_fex1018,Graph_fey1018); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineWidth(2); + gre->SetMarkerStyle(21); + + TH1F *Graph_Graph1018 = new TH1F("Graph_Graph1018","Graph",100,12.78642,39.12618); + Graph_Graph1018->SetMinimum(0.8243408); + Graph_Graph1018->SetMaximum(0.9258992); + Graph_Graph1018->SetDirectory(0); + Graph_Graph1018->SetStats(0); + Graph_Graph1018->SetLineWidth(2); + Graph_Graph1018->SetMarkerStyle(21); + Graph_Graph1018->GetXaxis()->SetNdivisions(505); + Graph_Graph1018->GetXaxis()->SetLabelFont(22); + Graph_Graph1018->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1018->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1018->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1018->GetXaxis()->SetTitleFont(22); + Graph_Graph1018->GetYaxis()->SetLabelFont(22); + Graph_Graph1018->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1018->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1018->GetYaxis()->SetTitleFont(22); + Graph_Graph1018->GetZaxis()->SetLabelFont(22); + Graph_Graph1018->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1018->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1018->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1018); + + multigraph->Add(gre,"p"); + + Double_t Graph_fx1019[26] = { + 254.499, + 215.483, + 192.343, + 176.544, + 164.584, + 155.258, + 147.823, + 141.364, + 136.079, + 131.711, + 127.758, + 124.164, + 121.145, + 118.356, + 115.773, + 113.374, + 111.138, + 109.234, + 107.442, + 105.587, + 103.386, + 101.207, + 99.3211, + 97.563, + 96.0339, + 94.488}; + Double_t Graph_fy1019[26] = { + 0.885089, + 0.90409, + 0.914465, + 0.886048, + 0.881621, + 0.927782, + 0.930192, + 0.929105, + 0.939976, + 0.948007, + 0.952699, + 0.909048, + 0.939753, + 0.942121, + 0.939456, + 0.922044, + 0.943682, + 0.951689, + 0.95128, + 0.935016, + 0.929894, + 0.957823, + 0.951092, + 0.95056, + 0.965003, + 0.923935}; + Double_t Graph_fex1019[26] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1019[26] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + gre = new TGraphErrors(26,Graph_fx1019,Graph_fy1019,Graph_fex1019,Graph_fey1019); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineWidth(2); + gre->SetMarkerStyle(22); + + TH1F *Graph_Graph1019 = new TH1F("Graph_Graph1019","Graph",100,78.4869,270.5001); + Graph_Graph1019->SetMinimum(0.8732828); + Graph_Graph1019->SetMaximum(0.9733412); + Graph_Graph1019->SetDirectory(0); + Graph_Graph1019->SetStats(0); + Graph_Graph1019->SetLineWidth(2); + Graph_Graph1019->SetMarkerStyle(21); + Graph_Graph1019->GetXaxis()->SetNdivisions(505); + Graph_Graph1019->GetXaxis()->SetLabelFont(22); + Graph_Graph1019->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1019->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1019->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1019->GetXaxis()->SetTitleFont(22); + Graph_Graph1019->GetYaxis()->SetLabelFont(22); + Graph_Graph1019->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1019->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1019->GetYaxis()->SetTitleFont(22); + Graph_Graph1019->GetZaxis()->SetLabelFont(22); + Graph_Graph1019->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1019->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1019->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1019); + + multigraph->Add(gre,"p"); + + Double_t Graph_fx1020[21] = { + 416.151, + 353.682, + 315.718, + 289.746, + 270.543, + 255.685, + 243.568, + 233.57, + 225.037, + 217.717, + 211.327, + 205.684, + 200.624, + 196.128, + 191.987, + 188.197, + 184.661, + 181.485, + 178.489, + 175.824, + 172.026}; + Double_t Graph_fy1020[21] = { + 0.941174, + 0.925095, + 0.892407, + 0.88503, + 0.907785, + 0.889439, + 0.877005, + 0.877723, + 0.86436, + 0.858901, + 0.866923, + 0.888274, + 0.846301, + 0.87631, + 0.869604, + 0.879467, + 0.862564, + 0.868013, + 0.87785, + 0.889568, + 0.865953}; + Double_t Graph_fex1020[21] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1020[21] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + gre = new TGraphErrors(21,Graph_fx1020,Graph_fy1020,Graph_fex1020,Graph_fey1020); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineWidth(2); + gre->SetMarkerStyle(23); + + TH1F *Graph_Graph1020 = new TH1F("Graph_Graph1020","Graph",100,147.6135,440.5635); + Graph_Graph1020->SetMinimum(0.8368137); + Graph_Graph1020->SetMaximum(0.9506613); + Graph_Graph1020->SetDirectory(0); + Graph_Graph1020->SetStats(0); + Graph_Graph1020->SetLineWidth(2); + Graph_Graph1020->SetMarkerStyle(21); + Graph_Graph1020->GetXaxis()->SetNdivisions(505); + Graph_Graph1020->GetXaxis()->SetLabelFont(22); + Graph_Graph1020->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1020->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1020->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1020->GetXaxis()->SetTitleFont(22); + Graph_Graph1020->GetYaxis()->SetLabelFont(22); + Graph_Graph1020->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1020->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1020->GetYaxis()->SetTitleFont(22); + Graph_Graph1020->GetZaxis()->SetLabelFont(22); + Graph_Graph1020->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1020->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1020->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1020); + + multigraph->Add(gre,"p"); + multigraph->Draw("a"); + multigraph->GetXaxis()->SetTitle("S_{ps} / MeV#upointcm^{2}g^{-1}"); + multigraph->GetXaxis()->SetNdivisions(505); + multigraph->GetXaxis()->SetLabelFont(22); + multigraph->GetXaxis()->SetLabelOffset(0.015); + multigraph->GetXaxis()->SetLabelSize(0.05); + multigraph->GetXaxis()->SetTitleSize(0.06); + multigraph->GetXaxis()->SetTitleFont(22); + multigraph->GetYaxis()->SetTitle("(#bar{A}_{BPM}: #bar{A}_{IC}) correlation "); + multigraph->GetYaxis()->SetLabelFont(22); + multigraph->GetYaxis()->SetLabelSize(0.05); + multigraph->GetYaxis()->SetTitleSize(0.06); + multigraph->GetYaxis()->SetTitleFont(22); + + TLegend *leg = new TLegend(0.2,0.7,0.45,0.9,NULL,"brNDC"); + leg->SetBorderSize(0); + leg->SetTextFont(22); + leg->SetTextSize(0.045); + leg->SetLineColor(1); + leg->SetLineStyle(1); + leg->SetLineWidth(2); + leg->SetFillColor(0); + leg->SetFillStyle(0); + TLegendEntry *entry=leg->AddEntry("Graph","Protons","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(20); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("Graph","Helium","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(21); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("Graph","Carbon","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(22); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("Graph","Oxygen","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(23); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + leg->Draw(); + c1_n6->Modified(); + c1_n6->cd(); + c1_n6->SetSelected(c1_n6); +} diff --git a/Scripts_20161126/figs/energylist_p_ic1ratio.pdf b/Scripts_20161126/figs/energylist_p_ic1ratio.pdf new file mode 100644 index 0000000..bcd9961 Binary files /dev/null and b/Scripts_20161126/figs/energylist_p_ic1ratio.pdf differ diff --git a/Scripts_20161126/figs/energylist_p_ic1ratio.png b/Scripts_20161126/figs/energylist_p_ic1ratio.png new file mode 100644 index 0000000..dc9c48a Binary files /dev/null and b/Scripts_20161126/figs/energylist_p_ic1ratio.png differ diff --git a/Scripts_20161126/figs/energylist_p_kurt.C b/Scripts_20161126/figs/energylist_p_kurt.C new file mode 100644 index 0000000..9c3c035 --- /dev/null +++ b/Scripts_20161126/figs/energylist_p_kurt.C @@ -0,0 +1,626 @@ +void energylist_p_kurt() +{ +//=========Macro generated from canvas: c1_n10/c1_n10 +//========= (Tue Dec 5 12:04:00 2017) by ROOT version6.06/02 + TCanvas *c1_n10 = new TCanvas("c1_n10", "c1_n10",10,71,700,500); + gStyle->SetOptStat(0); + gStyle->SetOptTitle(0); + c1_n10->Range(-0.2681628,-0.2090798,2.924179,1.097669); + c1_n10->SetFillColor(0); + c1_n10->SetBorderMode(0); + c1_n10->SetBorderSize(2); + c1_n10->SetLogx(); + c1_n10->SetTickx(1); + c1_n10->SetTicky(1); + c1_n10->SetLeftMargin(0.14); + c1_n10->SetRightMargin(0.08); + c1_n10->SetTopMargin(0.05); + c1_n10->SetBottomMargin(0.16); + c1_n10->SetFrameLineWidth(2); + c1_n10->SetFrameBorderMode(0); + c1_n10->SetFrameLineWidth(2); + c1_n10->SetFrameBorderMode(0); + + TMultiGraph *multigraph = new TMultiGraph(); + multigraph->SetName(""); + multigraph->SetTitle(" "); + + Double_t Graph_fx1033[26] = { + 12.6088, + 10.5936, + 9.36031, + 8.51336, + 7.88605, + 7.39682, + 7.00082, + 6.67084, + 6.39059, + 6.14881, + 5.93691, + 5.74999, + 5.58275, + 5.43216, + 5.29477, + 5.16875, + 5.05214, + 4.94396, + 4.84371, + 4.7504, + 4.62797, + 4.51492, + 4.41193, + 4.31778, + 4.23108, + 4.15089}; + Double_t Graph_fy1033[26] = { + -0.744136, + -0.635556, + -0.519635, + -0.404028, + -0.297951, + -0.204785, + -0.11727, + -0.0375088, + 0.0413851, + 0.0960896, + 0.153248, + 0.201237, + 0.198602, + 0.210643, + 0.235006, + 0.300105, + 0.366449, + 0.410503, + 0.424225, + 0.429286, + 0.455989, + 0.483797, + 0.514377, + 0.542605, + 0.513153, + 0.503945}; + Double_t Graph_fex1033[26] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1033[26] = { + 0.000251997, + 0.000153178, + 0.00019486, + 0.000199052, + 0.000193776, + 0.000222115, + 0.000250413, + 0.000330798, + 0.000353434, + 0.000439675, + 0.000514665, + 0.000574853, + 0.00072239, + 0.000744263, + 0.000791398, + 0.000927326, + 0.00104199, + 0.0011509, + 0.00121132, + 0.00124945, + 0.00133598, + 0.00141302, + 0.00149148, + 0.00158946, + 0.00159354, + 0.00162372}; + TGraphErrors *gre = new TGraphErrors(26,Graph_fx1033,Graph_fy1033,Graph_fex1033,Graph_fey1033); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineWidth(2); + gre->SetMarkerStyle(20); + + TH1F *Graph_Graph1033 = new TH1F("Graph_Graph1033","Graph",100,3.305099,13.45459); + Graph_Graph1033->SetMinimum(-0.8732462); + Graph_Graph1033->SetMaximum(0.6730527); + Graph_Graph1033->SetDirectory(0); + Graph_Graph1033->SetStats(0); + Graph_Graph1033->SetLineWidth(2); + Graph_Graph1033->SetMarkerStyle(21); + Graph_Graph1033->GetXaxis()->SetNdivisions(505); + Graph_Graph1033->GetXaxis()->SetLabelFont(22); + Graph_Graph1033->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1033->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1033->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1033->GetXaxis()->SetTitleFont(22); + Graph_Graph1033->GetYaxis()->SetLabelFont(22); + Graph_Graph1033->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1033->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1033->GetYaxis()->SetTitleFont(22); + Graph_Graph1033->GetZaxis()->SetLabelFont(22); + Graph_Graph1033->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1033->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1033->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1033); + + multigraph->Add(gre,"p"); + + Double_t Graph_fx1034[26] = { + 40.9872, + 36.5311, + 33.3966, + 31.0354, + 29.1728, + 27.6535, + 26.4152, + 25.2997, + 24.2755, + 23.5412, + 22.8107, + 22.1585, + 21.5696, + 21.0355, + 20.5468, + 20.099, + 19.6851, + 19.3016, + 18.9455, + 18.4699, + 18.0231, + 17.6151, + 17.6151, + 17.2409, + 16.8956, + 16.5761}; + Double_t Graph_fy1034[26] = { + 0.062149, + 0.26801, + 0.417309, + 0.516133, + 0.57681, + 0.601425, + 0.576202, + 0.552416, + 0.572242, + 0.599514, + 0.622563, + 0.657125, + 0.668196, + 0.679962, + 0.646933, + 0.629794, + 0.661712, + 0.753138, + 0.839607, + 0.904866, + 0.88544, + 0.824344, + 0.832551, + 0.793757, + 0.753537, + 0.847073}; + Double_t Graph_fex1034[26] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1034[26] = { + 0.000502374, + 0.000752224, + 0.00102226, + 0.00129087, + 0.00147873, + 0.00160397, + 0.00163652, + 0.00164094, + 0.00178198, + 0.00184313, + 0.00195299, + 0.00209616, + 0.00218858, + 0.00241972, + 0.00257645, + 0.00255621, + 0.00280398, + 0.00299473, + 0.00315274, + 0.00344225, + 0.00380291, + 0.00376951, + 0.00371834, + 0.00391352, + 0.00377728, + 0.00420923}; + gre = new TGraphErrors(26,Graph_fx1034,Graph_fy1034,Graph_fex1034,Graph_fey1034); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineWidth(2); + gre->SetMarkerStyle(21); + + TH1F *Graph_Graph1034 = new TH1F("Graph_Graph1034","Graph",100,14.13499,43.42831); + Graph_Graph1034->SetMinimum(0); + Graph_Graph1034->SetMaximum(0.9929744); + Graph_Graph1034->SetDirectory(0); + Graph_Graph1034->SetStats(0); + Graph_Graph1034->SetLineWidth(2); + Graph_Graph1034->SetMarkerStyle(21); + Graph_Graph1034->GetXaxis()->SetNdivisions(505); + Graph_Graph1034->GetXaxis()->SetLabelFont(22); + Graph_Graph1034->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1034->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1034->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1034->GetXaxis()->SetTitleFont(22); + Graph_Graph1034->GetYaxis()->SetLabelFont(22); + Graph_Graph1034->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1034->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1034->GetYaxis()->SetTitleFont(22); + Graph_Graph1034->GetZaxis()->SetLabelFont(22); + Graph_Graph1034->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1034->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1034->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1034); + + multigraph->Add(gre,"p"); + + Double_t Graph_fx1035[26] = { + 281.17, + 238.032, + 212.434, + 194.949, + 181.707, + 171.379, + 163.143, + 155.987, + 150.13, + 145.288, + 140.907, + 136.922, + 133.574, + 130.481, + 127.616, + 124.954, + 122.474, + 120.362, + 118.373, + 116.315, + 113.872, + 111.453, + 109.36, + 107.408, + 105.71, + 103.993}; + Double_t Graph_fy1035[26] = { + 0.0356758, + 0.320209, + 0.49406, + 0.558706, + 0.630652, + 0.66606, + 0.727336, + 0.733897, + 0.720708, + 0.713137, + 0.725848, + 0.781209, + 0.800686, + 0.834471, + 0.848479, + 0.848781, + 0.830013, + 0.81721, + 0.866358, + 0.883082, + 0.886597, + 0.886818, + 0.905571, + 0.86823, + 0.848611, + 0.890782}; + Double_t Graph_fex1035[26] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1035[26] = { + 0.00107116, + 0.00159163, + 0.00213649, + 0.00254213, + 0.00314274, + 0.00333442, + 0.00416318, + 0.00423606, + 0.00416761, + 0.00424307, + 0.00456726, + 0.00478593, + 0.00467725, + 0.0047637, + 0.00463475, + 0.00515817, + 0.00457454, + 0.0048051, + 0.00483772, + 0.00458012, + 0.00470424, + 0.0045689, + 0.0048629, + 0.00470287, + 0.00462913, + 0.00520447}; + gre = new TGraphErrors(26,Graph_fx1035,Graph_fy1035,Graph_fex1035,Graph_fey1035); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineWidth(2); + gre->SetMarkerStyle(22); + + TH1F *Graph_Graph1035 = new TH1F("Graph_Graph1035","Graph",100,86.2753,298.8877); + Graph_Graph1035->SetMinimum(0); + Graph_Graph1035->SetMaximum(0.9980168); + Graph_Graph1035->SetDirectory(0); + Graph_Graph1035->SetStats(0); + Graph_Graph1035->SetLineWidth(2); + Graph_Graph1035->SetMarkerStyle(21); + Graph_Graph1035->GetXaxis()->SetNdivisions(505); + Graph_Graph1035->GetXaxis()->SetLabelFont(22); + Graph_Graph1035->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1035->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1035->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1035->GetXaxis()->SetTitleFont(22); + Graph_Graph1035->GetYaxis()->SetLabelFont(22); + Graph_Graph1035->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1035->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1035->GetYaxis()->SetTitleFont(22); + Graph_Graph1035->GetZaxis()->SetLabelFont(22); + Graph_Graph1035->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1035->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1035->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1035); + + multigraph->Add(gre,"p"); + + Double_t Graph_fx1036[21] = { + 444.422, + 377.991, + 337.641, + 310.049, + 289.655, + 273.879, + 261.017, + 250.406, + 241.353, + 233.587, + 226.809, + 220.824, + 215.458, + 210.691, + 206.301, + 202.283, + 198.535, + 195.17, + 191.994, + 189.171, + 185.146}; + Double_t Graph_fy1036[21] = { + 0.0391801, + 0.301277, + 0.484785, + 0.556202, + 0.598105, + 0.668359, + 0.708683, + 0.725855, + 0.748311, + 0.845926, + 0.843351, + 0.861779, + 0.897915, + 0.859559, + 0.861972, + 0.890871, + 0.885117, + 0.916953, + 0.942331, + 0.924809, + 0.904397}; + Double_t Graph_fex1036[21] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1036[21] = { + 0.00125918, + 0.00195732, + 0.00272705, + 0.00332809, + 0.00364761, + 0.00429699, + 0.00454656, + 0.00454412, + 0.0044552, + 0.00582114, + 0.00561141, + 0.00558332, + 0.00575129, + 0.00541461, + 0.0048006, + 0.00495878, + 0.00500067, + 0.00500143, + 0.005395, + 0.00503647, + 0.00505454}; + gre = new TGraphErrors(21,Graph_fx1036,Graph_fy1036,Graph_fex1036,Graph_fey1036); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineWidth(2); + gre->SetMarkerStyle(23); + + TH1F *Graph_Graph1036 = new TH1F("Graph_Graph1036","Graph",100,159.2184,470.3496); + Graph_Graph1036->SetMinimum(0); + Graph_Graph1036->SetMaximum(1.038707); + Graph_Graph1036->SetDirectory(0); + Graph_Graph1036->SetStats(0); + Graph_Graph1036->SetLineWidth(2); + Graph_Graph1036->SetMarkerStyle(21); + Graph_Graph1036->GetXaxis()->SetNdivisions(505); + Graph_Graph1036->GetXaxis()->SetLabelFont(22); + Graph_Graph1036->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1036->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1036->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1036->GetXaxis()->SetTitleFont(22); + Graph_Graph1036->GetYaxis()->SetLabelFont(22); + Graph_Graph1036->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1036->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1036->GetYaxis()->SetTitleFont(22); + Graph_Graph1036->GetZaxis()->SetLabelFont(22); + Graph_Graph1036->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1036->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1036->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1036); + + multigraph->Add(gre,"p"); + multigraph->Draw("a"); + multigraph->GetXaxis()->SetTitle("S_{ps} / MeV#upointcm^{2}g^{-1}"); + multigraph->GetXaxis()->SetNdivisions(505); + multigraph->GetXaxis()->SetLabelFont(22); + multigraph->GetXaxis()->SetLabelOffset(0.015); + multigraph->GetXaxis()->SetLabelSize(0.05); + multigraph->GetXaxis()->SetTitleSize(0.06); + multigraph->GetXaxis()->SetTitleFont(22); + multigraph->GetYaxis()->SetTitle("Beam Kurt"); + multigraph->GetYaxis()->SetLabelFont(22); + multigraph->GetYaxis()->SetLabelSize(0.05); + multigraph->GetYaxis()->SetTitleSize(0.06); + multigraph->GetYaxis()->SetTitleFont(22); + + TLegend *leg = new TLegend(0.7,0.7,0.9,0.9,NULL,"brNDC"); + leg->SetBorderSize(0); + leg->SetTextFont(22); + leg->SetTextSize(0.047); + leg->SetLineColor(1); + leg->SetLineStyle(1); + leg->SetLineWidth(2); + leg->SetFillColor(0); + leg->SetFillStyle(0); + TLegendEntry *entry=leg->AddEntry("Graph","Protons","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(20); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("Graph","Helium","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(21); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("Graph","Carbon","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(22); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("Graph","Oxygen","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(23); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + leg->Draw(); + c1_n10->Modified(); + c1_n10->cd(); + c1_n10->SetSelected(c1_n10); +} diff --git a/Scripts_20161126/figs/energylist_p_kurt.pdf b/Scripts_20161126/figs/energylist_p_kurt.pdf new file mode 100644 index 0000000..702965d Binary files /dev/null and b/Scripts_20161126/figs/energylist_p_kurt.pdf differ diff --git a/Scripts_20161126/figs/energylist_p_kurt.png b/Scripts_20161126/figs/energylist_p_kurt.png new file mode 100644 index 0000000..2c2c2c3 Binary files /dev/null and b/Scripts_20161126/figs/energylist_p_kurt.png differ diff --git a/Scripts_20161126/figs/energylist_p_skew.C b/Scripts_20161126/figs/energylist_p_skew.C new file mode 100644 index 0000000..7681279 --- /dev/null +++ b/Scripts_20161126/figs/energylist_p_skew.C @@ -0,0 +1,626 @@ +void energylist_p_skew() +{ +//=========Macro generated from canvas: c1_n9/c1_n9 +//========= (Tue Dec 5 12:03:58 2017) by ROOT version6.06/02 + TCanvas *c1_n9 = new TCanvas("c1_n9", "c1_n9",10,71,700,500); + gStyle->SetOptStat(0); + gStyle->SetOptTitle(0); + c1_n9->Range(-0.2681628,-0.01642221,2.924179,0.08621661); + c1_n9->SetFillColor(0); + c1_n9->SetBorderMode(0); + c1_n9->SetBorderSize(2); + c1_n9->SetLogx(); + c1_n9->SetTickx(1); + c1_n9->SetTicky(1); + c1_n9->SetLeftMargin(0.14); + c1_n9->SetRightMargin(0.08); + c1_n9->SetTopMargin(0.05); + c1_n9->SetBottomMargin(0.16); + c1_n9->SetFrameLineWidth(2); + c1_n9->SetFrameBorderMode(0); + c1_n9->SetFrameLineWidth(2); + c1_n9->SetFrameBorderMode(0); + + TMultiGraph *multigraph = new TMultiGraph(); + multigraph->SetName(""); + multigraph->SetTitle(" "); + + Double_t Graph_fx1029[26] = { + 12.6088, + 10.5936, + 9.36031, + 8.51336, + 7.88605, + 7.39682, + 7.00082, + 6.67084, + 6.39059, + 6.14881, + 5.93691, + 5.74999, + 5.58275, + 5.43216, + 5.29477, + 5.16875, + 5.05214, + 4.94396, + 4.84371, + 4.7504, + 4.62797, + 4.51492, + 4.41193, + 4.31778, + 4.23108, + 4.15089}; + Double_t Graph_fy1029[26] = { + 0.0727608, + 0.0572971, + 0.0468522, + 0.043189, + 0.0355665, + 0.0260337, + 0.0184117, + 0.0102188, + 0.00442483, + 0.00373327, + 0.00288418, + 0.000894669, + -0.00299652, + -0.00177812, + -0.000247082, + -0.00814118, + -0.0141199, + -0.016307, + -0.0150386, + -0.0143416, + -0.0133818, + -0.0159281, + -0.0174882, + -0.0179604, + -0.0148217, + -0.0078541}; + Double_t Graph_fex1029[26] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1029[26] = { + 0.000283934, + 0.000159944, + 0.000165883, + 0.000126012, + 0.000104809, + 0.000101641, + 0.000118286, + 0.000140931, + 0.000122168, + 0.000137908, + 0.000134949, + 0.00014388, + 0.000142959, + 0.000150106, + 0.000142952, + 0.000152731, + 0.00016785, + 0.000167286, + 0.000176112, + 0.000173907, + 0.000185495, + 0.00019147, + 0.000190264, + 0.000199685, + 0.000189875, + 0.000195279}; + TGraphErrors *gre = new TGraphErrors(26,Graph_fx1029,Graph_fy1029,Graph_fex1029,Graph_fey1029); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineWidth(2); + gre->SetMarkerStyle(20); + + TH1F *Graph_Graph1029 = new TH1F("Graph_Graph1029","Graph",100,3.305099,13.45459); + Graph_Graph1029->SetMinimum(-0.02728057); + Graph_Graph1029->SetMaximum(0.08216522); + Graph_Graph1029->SetDirectory(0); + Graph_Graph1029->SetStats(0); + Graph_Graph1029->SetLineWidth(2); + Graph_Graph1029->SetMarkerStyle(21); + Graph_Graph1029->GetXaxis()->SetNdivisions(505); + Graph_Graph1029->GetXaxis()->SetLabelFont(22); + Graph_Graph1029->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1029->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1029->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1029->GetXaxis()->SetTitleFont(22); + Graph_Graph1029->GetYaxis()->SetLabelFont(22); + Graph_Graph1029->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1029->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1029->GetYaxis()->SetTitleFont(22); + Graph_Graph1029->GetZaxis()->SetLabelFont(22); + Graph_Graph1029->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1029->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1029->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1029); + + multigraph->Add(gre,"p"); + + Double_t Graph_fx1030[26] = { + 40.9872, + 36.5311, + 33.3966, + 31.0354, + 29.1728, + 27.6535, + 26.4152, + 25.2997, + 24.2755, + 23.5412, + 22.8107, + 22.1585, + 21.5696, + 21.0355, + 20.5468, + 20.099, + 19.6851, + 19.3016, + 18.9455, + 18.4699, + 18.0231, + 17.6151, + 17.6151, + 17.2409, + 16.8956, + 16.5761}; + Double_t Graph_fy1030[26] = { + 0.010948, + -0.00203, + -0.0103664, + -0.015916, + -0.0208106, + -0.0344067, + -0.0285648, + -0.0306445, + -0.0345809, + -0.0410346, + -0.0433163, + -0.0409883, + -0.0400524, + -0.0409011, + -0.0533499, + -0.0613756, + -0.0653937, + -0.0570107, + -0.062355, + -0.0637269, + -0.0646381, + -0.0668969, + -0.0689966, + -0.0722478, + -0.0730202, + -0.0728579}; + Double_t Graph_fex1030[26] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1030[26] = { + 0.000211011, + 0.000277193, + 0.000308383, + 0.000344433, + 0.000352361, + 0.000329169, + 0.000335402, + 0.000309011, + 0.000356599, + 0.000298393, + 0.000315473, + 0.000315195, + 0.000329647, + 0.000405011, + 0.0003929, + 0.000368003, + 0.000414132, + 0.000393711, + 0.000411582, + 0.000410686, + 0.000443125, + 0.000532587, + 0.000465528, + 0.00047688, + 0.000397724, + 0.000449836}; + gre = new TGraphErrors(26,Graph_fx1030,Graph_fy1030,Graph_fex1030,Graph_fey1030); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineWidth(2); + gre->SetMarkerStyle(21); + + TH1F *Graph_Graph1030 = new TH1F("Graph_Graph1030","Graph",100,14.13499,43.42831); + Graph_Graph1030->SetMinimum(-0.08187562); + Graph_Graph1030->SetMaximum(0.0196167); + Graph_Graph1030->SetDirectory(0); + Graph_Graph1030->SetStats(0); + Graph_Graph1030->SetLineWidth(2); + Graph_Graph1030->SetMarkerStyle(21); + Graph_Graph1030->GetXaxis()->SetNdivisions(505); + Graph_Graph1030->GetXaxis()->SetLabelFont(22); + Graph_Graph1030->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1030->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1030->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1030->GetXaxis()->SetTitleFont(22); + Graph_Graph1030->GetYaxis()->SetLabelFont(22); + Graph_Graph1030->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1030->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1030->GetYaxis()->SetTitleFont(22); + Graph_Graph1030->GetZaxis()->SetLabelFont(22); + Graph_Graph1030->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1030->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1030->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1030); + + multigraph->Add(gre,"p"); + + Double_t Graph_fx1031[26] = { + 281.17, + 238.032, + 212.434, + 194.949, + 181.707, + 171.379, + 163.143, + 155.987, + 150.13, + 145.288, + 140.907, + 136.922, + 133.574, + 130.481, + 127.616, + 124.954, + 122.474, + 120.362, + 118.373, + 116.315, + 113.872, + 111.453, + 109.36, + 107.408, + 105.71, + 103.993}; + Double_t Graph_fy1031[26] = { + -0.0244641, + -0.0291883, + -0.0321315, + -0.0377581, + -0.041645, + -0.0440514, + -0.0479717, + -0.0459235, + -0.0449714, + -0.0557605, + -0.0604744, + -0.0480572, + -0.0499332, + -0.0568798, + -0.059508, + -0.0792876, + -0.0769971, + -0.0710605, + -0.0627967, + -0.0661404, + -0.0503979, + -0.078437, + -0.079987, + -0.0869617, + -0.0801575, + -0.0756168}; + Double_t Graph_fex1031[26] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1031[26] = { + 0.00029967, + 0.000307723, + 0.000342685, + 0.00036608, + 0.000426071, + 0.000386359, + 0.000457673, + 0.00045976, + 0.000435774, + 0.000472567, + 0.000488399, + 0.000558716, + 0.00050712, + 0.000572831, + 0.000559064, + 0.000651931, + 0.000577415, + 0.000636362, + 0.000716938, + 0.000645743, + 0.000697906, + 0.000733403, + 0.000807965, + 0.00079218, + 0.000840558, + 0.00100789}; + gre = new TGraphErrors(26,Graph_fx1031,Graph_fy1031,Graph_fex1031,Graph_fey1031); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineWidth(2); + gre->SetMarkerStyle(22); + + TH1F *Graph_Graph1031 = new TH1F("Graph_Graph1031","Graph",100,86.2753,298.8877); + Graph_Graph1031->SetMinimum(-0.09411283); + Graph_Graph1031->SetMaximum(-0.01780548); + Graph_Graph1031->SetDirectory(0); + Graph_Graph1031->SetStats(0); + Graph_Graph1031->SetLineWidth(2); + Graph_Graph1031->SetMarkerStyle(21); + Graph_Graph1031->GetXaxis()->SetNdivisions(505); + Graph_Graph1031->GetXaxis()->SetLabelFont(22); + Graph_Graph1031->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1031->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1031->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1031->GetXaxis()->SetTitleFont(22); + Graph_Graph1031->GetYaxis()->SetLabelFont(22); + Graph_Graph1031->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1031->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1031->GetYaxis()->SetTitleFont(22); + Graph_Graph1031->GetZaxis()->SetLabelFont(22); + Graph_Graph1031->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1031->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1031->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1031); + + multigraph->Add(gre,"p"); + + Double_t Graph_fx1032[21] = { + 444.422, + 377.991, + 337.641, + 310.049, + 289.655, + 273.879, + 261.017, + 250.406, + 241.353, + 233.587, + 226.809, + 220.824, + 215.458, + 210.691, + 206.301, + 202.283, + 198.535, + 195.17, + 191.994, + 189.171, + 185.146}; + Double_t Graph_fy1032[21] = { + -0.0280469, + -0.0330713, + -0.0353204, + -0.0422523, + -0.0467927, + -0.0497144, + -0.0499807, + -0.0495207, + -0.045314, + -0.0675023, + -0.0597604, + -0.0579474, + -0.0630855, + -0.0573608, + -0.0420676, + -0.035546, + -0.0339243, + -0.06218, + -0.0551722, + -0.0273813, + -0.0539994}; + Double_t Graph_fex1032[21] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1032[21] = { + 0.000364346, + 0.000389986, + 0.000429569, + 0.000465556, + 0.000476789, + 0.000542298, + 0.000562507, + 0.0005861, + 0.000593588, + 0.000899926, + 0.000832946, + 0.00097652, + 0.000921185, + 0.000917137, + 0.000786955, + 0.000837714, + 0.000822717, + 0.000901306, + 0.00110734, + 0.000948981, + 0.000995197}; + gre = new TGraphErrors(21,Graph_fx1032,Graph_fy1032,Graph_fex1032,Graph_fey1032); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineWidth(2); + gre->SetMarkerStyle(23); + + TH1F *Graph_Graph1032 = new TH1F("Graph_Graph1032","Graph",100,159.2184,470.3496); + Graph_Graph1032->SetMinimum(-0.07259922); + Graph_Graph1032->SetMaximum(-0.02223533); + Graph_Graph1032->SetDirectory(0); + Graph_Graph1032->SetStats(0); + Graph_Graph1032->SetLineWidth(2); + Graph_Graph1032->SetMarkerStyle(21); + Graph_Graph1032->GetXaxis()->SetNdivisions(505); + Graph_Graph1032->GetXaxis()->SetLabelFont(22); + Graph_Graph1032->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1032->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1032->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1032->GetXaxis()->SetTitleFont(22); + Graph_Graph1032->GetYaxis()->SetLabelFont(22); + Graph_Graph1032->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1032->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1032->GetYaxis()->SetTitleFont(22); + Graph_Graph1032->GetZaxis()->SetLabelFont(22); + Graph_Graph1032->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1032->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1032->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1032); + + multigraph->Add(gre,"p"); + multigraph->Draw("a"); + multigraph->GetXaxis()->SetTitle("S_{ps} / MeV#upointcm^{2}g^{-1}"); + multigraph->GetXaxis()->SetNdivisions(505); + multigraph->GetXaxis()->SetLabelFont(22); + multigraph->GetXaxis()->SetLabelOffset(0.015); + multigraph->GetXaxis()->SetLabelSize(0.05); + multigraph->GetXaxis()->SetTitleSize(0.06); + multigraph->GetXaxis()->SetTitleFont(22); + multigraph->GetYaxis()->SetTitle("Beam Skew"); + multigraph->GetYaxis()->SetLabelFont(22); + multigraph->GetYaxis()->SetLabelSize(0.05); + multigraph->GetYaxis()->SetTitleSize(0.06); + multigraph->GetYaxis()->SetTitleFont(22); + + TLegend *leg = new TLegend(0.6,0.7,0.9,0.9,NULL,"brNDC"); + leg->SetBorderSize(0); + leg->SetTextFont(22); + leg->SetTextSize(0.046); + leg->SetLineColor(1); + leg->SetLineStyle(1); + leg->SetLineWidth(2); + leg->SetFillColor(0); + leg->SetFillStyle(0); + TLegendEntry *entry=leg->AddEntry("Graph","Protons","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(20); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("Graph","Helium","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(21); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("Graph","Carbon","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(22); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("Graph","Oxygen","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(23); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + leg->Draw(); + c1_n9->Modified(); + c1_n9->cd(); + c1_n9->SetSelected(c1_n9); +} diff --git a/Scripts_20161126/figs/energylist_p_skew.pdf b/Scripts_20161126/figs/energylist_p_skew.pdf new file mode 100644 index 0000000..14cb1b3 Binary files /dev/null and b/Scripts_20161126/figs/energylist_p_skew.pdf differ diff --git a/Scripts_20161126/figs/energylist_p_skew.png b/Scripts_20161126/figs/energylist_p_skew.png new file mode 100644 index 0000000..7c4f831 Binary files /dev/null and b/Scripts_20161126/figs/energylist_p_skew.png differ diff --git a/Scripts_20161126/figs/example_HeE101I8.pdf b/Scripts_20161126/figs/example_HeE101I8.pdf new file mode 100644 index 0000000..a946398 Binary files /dev/null and b/Scripts_20161126/figs/example_HeE101I8.pdf differ diff --git a/Scripts_20161126/figs/h_beamsignal_0.pdf b/Scripts_20161126/figs/h_beamsignal_0.pdf new file mode 100644 index 0000000..e950423 Binary files /dev/null and b/Scripts_20161126/figs/h_beamsignal_0.pdf differ diff --git a/Scripts_20161126/figs/h_beamsignal_1.pdf b/Scripts_20161126/figs/h_beamsignal_1.pdf new file mode 100644 index 0000000..7fcc2f4 Binary files /dev/null and b/Scripts_20161126/figs/h_beamsignal_1.pdf differ diff --git a/Scripts_20161126/figs/h_beamsignal_10.pdf b/Scripts_20161126/figs/h_beamsignal_10.pdf new file mode 100644 index 0000000..dd52f02 Binary files /dev/null and b/Scripts_20161126/figs/h_beamsignal_10.pdf differ diff --git a/Scripts_20161126/figs/h_beamsignal_11.pdf b/Scripts_20161126/figs/h_beamsignal_11.pdf new file mode 100644 index 0000000..73c0ea1 Binary files /dev/null and b/Scripts_20161126/figs/h_beamsignal_11.pdf differ diff --git a/Scripts_20161126/figs/h_beamsignal_12.pdf b/Scripts_20161126/figs/h_beamsignal_12.pdf new file mode 100644 index 0000000..c9e2290 Binary files /dev/null and b/Scripts_20161126/figs/h_beamsignal_12.pdf differ diff --git a/Scripts_20161126/figs/h_beamsignal_13.pdf b/Scripts_20161126/figs/h_beamsignal_13.pdf new file mode 100644 index 0000000..736d9bc Binary files /dev/null and b/Scripts_20161126/figs/h_beamsignal_13.pdf differ diff --git a/Scripts_20161126/figs/h_beamsignal_14.pdf b/Scripts_20161126/figs/h_beamsignal_14.pdf new file mode 100644 index 0000000..29ab3fe Binary files /dev/null and b/Scripts_20161126/figs/h_beamsignal_14.pdf differ diff --git a/Scripts_20161126/figs/h_beamsignal_15.pdf b/Scripts_20161126/figs/h_beamsignal_15.pdf new file mode 100644 index 0000000..c568bb6 Binary files /dev/null and b/Scripts_20161126/figs/h_beamsignal_15.pdf differ diff --git a/Scripts_20161126/figs/h_beamsignal_16.pdf b/Scripts_20161126/figs/h_beamsignal_16.pdf new file mode 100644 index 0000000..1c84863 Binary files /dev/null and b/Scripts_20161126/figs/h_beamsignal_16.pdf differ diff --git a/Scripts_20161126/figs/h_beamsignal_17.pdf b/Scripts_20161126/figs/h_beamsignal_17.pdf new file mode 100644 index 0000000..4b8d424 Binary files /dev/null and b/Scripts_20161126/figs/h_beamsignal_17.pdf differ diff --git a/Scripts_20161126/figs/h_beamsignal_18.pdf b/Scripts_20161126/figs/h_beamsignal_18.pdf new file mode 100644 index 0000000..c599400 Binary files /dev/null and b/Scripts_20161126/figs/h_beamsignal_18.pdf differ diff --git a/Scripts_20161126/figs/h_beamsignal_19.pdf b/Scripts_20161126/figs/h_beamsignal_19.pdf new file mode 100644 index 0000000..60737f0 Binary files /dev/null and b/Scripts_20161126/figs/h_beamsignal_19.pdf differ diff --git a/Scripts_20161126/figs/h_beamsignal_2.pdf b/Scripts_20161126/figs/h_beamsignal_2.pdf new file mode 100644 index 0000000..a04be12 Binary files /dev/null and b/Scripts_20161126/figs/h_beamsignal_2.pdf differ diff --git a/Scripts_20161126/figs/h_beamsignal_20.pdf b/Scripts_20161126/figs/h_beamsignal_20.pdf new file mode 100644 index 0000000..ced851f Binary files /dev/null and b/Scripts_20161126/figs/h_beamsignal_20.pdf differ diff --git a/Scripts_20161126/figs/h_beamsignal_21.pdf b/Scripts_20161126/figs/h_beamsignal_21.pdf new file mode 100644 index 0000000..6cc9a7b Binary files /dev/null and b/Scripts_20161126/figs/h_beamsignal_21.pdf differ diff --git a/Scripts_20161126/figs/h_beamsignal_22.pdf b/Scripts_20161126/figs/h_beamsignal_22.pdf new file mode 100644 index 0000000..34a7814 Binary files /dev/null and b/Scripts_20161126/figs/h_beamsignal_22.pdf differ diff --git a/Scripts_20161126/figs/h_beamsignal_23.pdf b/Scripts_20161126/figs/h_beamsignal_23.pdf new file mode 100644 index 0000000..d710e4b Binary files /dev/null and b/Scripts_20161126/figs/h_beamsignal_23.pdf differ diff --git a/Scripts_20161126/figs/h_beamsignal_24.pdf b/Scripts_20161126/figs/h_beamsignal_24.pdf new file mode 100644 index 0000000..3fc8820 Binary files /dev/null and b/Scripts_20161126/figs/h_beamsignal_24.pdf differ diff --git a/Scripts_20161126/figs/h_beamsignal_25.pdf b/Scripts_20161126/figs/h_beamsignal_25.pdf new file mode 100644 index 0000000..5f6500d Binary files /dev/null and b/Scripts_20161126/figs/h_beamsignal_25.pdf differ diff --git a/Scripts_20161126/figs/h_beamsignal_3.pdf b/Scripts_20161126/figs/h_beamsignal_3.pdf new file mode 100644 index 0000000..3b83e08 Binary files /dev/null and b/Scripts_20161126/figs/h_beamsignal_3.pdf differ diff --git a/Scripts_20161126/figs/h_beamsignal_4.pdf b/Scripts_20161126/figs/h_beamsignal_4.pdf new file mode 100644 index 0000000..fe86467 Binary files /dev/null and b/Scripts_20161126/figs/h_beamsignal_4.pdf differ diff --git a/Scripts_20161126/figs/h_beamsignal_5.pdf b/Scripts_20161126/figs/h_beamsignal_5.pdf new file mode 100644 index 0000000..f256a93 Binary files /dev/null and b/Scripts_20161126/figs/h_beamsignal_5.pdf differ diff --git a/Scripts_20161126/figs/h_beamsignal_6.pdf b/Scripts_20161126/figs/h_beamsignal_6.pdf new file mode 100644 index 0000000..2ab0998 Binary files /dev/null and b/Scripts_20161126/figs/h_beamsignal_6.pdf differ diff --git a/Scripts_20161126/figs/h_beamsignal_7.pdf b/Scripts_20161126/figs/h_beamsignal_7.pdf new file mode 100644 index 0000000..3f9a27b Binary files /dev/null and b/Scripts_20161126/figs/h_beamsignal_7.pdf differ diff --git a/Scripts_20161126/figs/h_beamsignal_8.pdf b/Scripts_20161126/figs/h_beamsignal_8.pdf new file mode 100644 index 0000000..d339cd0 Binary files /dev/null and b/Scripts_20161126/figs/h_beamsignal_8.pdf differ diff --git a/Scripts_20161126/figs/h_beamsignal_9.pdf b/Scripts_20161126/figs/h_beamsignal_9.pdf new file mode 100644 index 0000000..cd07388 Binary files /dev/null and b/Scripts_20161126/figs/h_beamsignal_9.pdf differ diff --git a/Scripts_20161126/focusFitfile.txt b/Scripts_20161126/focusFitfile.txt new file mode 100644 index 0000000..26015e7 --- /dev/null +++ b/Scripts_20161126/focusFitfile.txt @@ -0,0 +1,99 @@ +12.6088 38.1924 2.32148 +10.5936 30.7947 0.795744 +9.36031 25.9529 0.344038 +8.51336 22.8826 0.225739 +7.88605 20.7272 0.162155 +7.39682 19.132 0.125191 +7.00082 17.8543 0.109134 +6.67084 16.7795 0.0867285 +6.39059 15.8423 0.0766198 +6.14881 15.1736 0.0730682 +5.93691 14.5201 0.0680745 +5.74999 13.9838 0.0650207 +5.58275 13.7179 0.067308 +5.43216 13.4857 0.0744663 +5.29477 13.1388 0.0856418 +5.16875 12.4743 0.0828631 +5.05214 11.9011 0.0745681 +4.94396 11.4685 0.081805 +4.84371 11.2257 0.0778904 +4.7504 11.003 0.0862163 +4.62797 10.6519 0.0859901 +4.51492 10.2786 0.0861338 +4.41193 9.90982 0.0944159 +4.31778 9.627 0.0955711 +4.23108 9.54207 0.106008 +4.15089 9.40224 0.121357 +40.9872 15.321 0.152819 +36.5311 13.4022 0.10705 +33.3966 11.9024 0.0860162 +31.0354 10.837 0.0784991 +29.1728 10.0416 0.0698136 +27.6535 9.47957 0.0664301 +26.4152 9.20272 0.0633741 +25.2997 8.95826 0.0629719 +24.2755 8.57789 0.0600744 +23.5412 8.21715 0.0560587 +22.8107 7.84986 0.0539317 +22.1585 7.56155 0.0499439 +21.5696 7.34463 0.0492335 +21.0355 7.15338 0.0603723 +20.5468 7.08912 0.0492341 +20.099 6.98044 0.0482294 +19.6851 6.75463 0.0452179 +19.3016 6.38345 0.0452319 +18.9455 6.04642 0.0458672 +18.4699 5.78998 0.0474322 +18.0231 5.72625 0.0487344 +17.6151 5.6917 0.0504009 +17.6151 5.6887 0.0588608 +17.2409 5.65197 0.0510989 +16.8956 5.58886 0.0533042 +16.5761 5.32572 0.0535511 +281.17 11.3417 0.275356 +238.032 9.24629 0.162072 +212.434 8.03832 0.1214 +194.949 7.20004 0.107067 +181.707 6.57342 0.0978949 +171.379 6.09308 0.0899797 +163.143 5.7404 0.0865428 +155.987 5.41798 0.0813326 +150.13 5.19995 0.0850485 +145.288 5.04505 0.0913567 +140.907 4.86709 0.0993753 +136.922 4.63197 0.0870349 +133.574 4.45469 0.0858348 +130.481 4.28969 0.0789912 +127.616 4.13641 0.0805038 +124.954 4.10228 0.113362 +122.474 3.99048 0.100059 +120.362 3.95404 0.106974 +118.373 3.82826 0.0994636 +116.315 3.68234 0.092611 +113.872 3.58399 0.101045 +111.453 3.52637 0.0857476 +109.36 3.44757 0.0940446 +107.408 3.40917 0.102681 +105.71 3.35181 0.116585 +103.993 3.32899 0.138355 +444.422 9.8987 0.305962 +377.991 8.0287 0.18807 +337.641 6.93392 0.143571 +310.049 6.19377 0.130898 +289.655 5.66172 0.118131 +273.879 5.24527 0.105681 +261.017 4.92095 0.100382 +250.406 4.66126 0.0974916 +241.353 4.43009 0.0933883 +233.587 4.26011 0.0926537 +226.809 4.10796 0.0874654 +220.824 3.96935 0.0838943 +215.458 3.82244 0.0818344 +210.691 3.71547 0.0842687 +206.301 3.56755 0.0762217 +202.283 3.46369 0.0757942 +198.535 3.39236 0.0763302 +195.17 3.29902 0.0730671 +191.994 3.23745 0.069637 +189.171 3.16161 0.0724433 +185.146 3.08506 0.0714054 diff --git a/Scripts_20161126/focusFitfile_int_c.txt b/Scripts_20161126/focusFitfile_int_c.txt new file mode 100644 index 0000000..709b093 --- /dev/null +++ b/Scripts_20161126/focusFitfile_int_c.txt @@ -0,0 +1,9 @@ +1.99418 3.43652 0.399577 +2.99221 3.49624 0.63894 +4.99357 3.45994 0.277399 +8.00451 3.45187 0.261838 +9.96037 3.47409 0.247991 +14.9624 3.45329 0.428211 +19.9591 3.45763 0.219281 +29.9598 3.44118 0.204149 +50.0967 3.46892 0.319636 diff --git a/Scripts_20161126/focusFitfile_int_p.txt b/Scripts_20161126/focusFitfile_int_p.txt new file mode 100644 index 0000000..2ce1e2a --- /dev/null +++ b/Scripts_20161126/focusFitfile_int_p.txt @@ -0,0 +1,10 @@ +77.5122 9.48608 0.616301 +116.351 9.48084 0.367711 +193.951 9.46898 0.289229 +310.193 9.46249 0.339095 +387.817 9.46158 0.316503 +581.737 9.44707 0.326303 +776.317 9.44254 0.330947 +1164.85 9.48623 0.396323 +1948.34 9.50528 0.525796 +3130.55 9.54358 0.713724 diff --git a/Scripts_20161126/focusHITfile.txt b/Scripts_20161126/focusHITfile.txt new file mode 100644 index 0000000..2ceb699 --- /dev/null +++ b/Scripts_20161126/focusHITfile.txt @@ -0,0 +1,99 @@ +12.6088 32.4 +10.5936 26.8 +9.36031 22.8 +8.51336 20 +7.88605 18 +7.39682 16.5 +7.00082 15.4 +6.67084 14.5 +6.39059 13.7 +6.14881 13.1 +5.93691 12.6 +5.74999 12.2 +5.58275 11.8 +5.43216 11.4 +5.29477 11.1 +5.16875 10.8 +5.05214 10.4 +4.94396 10.1 +4.84371 9.8 +4.7504 9.5 +4.62797 9.1 +4.51492 8.8 +4.41193 8.5 +4.31778 8.2 +4.23108 8.1 +4.15089 8.1 +40.9872 15.4 +36.5311 13 +33.3966 11.5 +31.0354 10.5 +29.1728 9.7 +27.6535 9.2 +26.4152 8.7 +25.2997 8.3 +24.2755 7.9 +23.5412 7.6 +22.8107 7.3 +22.1585 7 +21.5696 6.8 +21.0355 6.5 +20.5468 6.3 +20.099 6.1 +19.6851 5.9 +19.3016 5.8 +18.9455 5.6 +18.4699 5.4 +18.0231 5.3 +17.6151 5.1 +17.6151 5.1 +17.2409 5 +16.8956 5 +16.5761 4.9 +281.17 9.8 +238.032 8.4 +212.434 7.4 +194.949 6.6 +181.707 6.1 +171.379 5.6 +163.143 5.3 +155.987 5 +150.13 4.8 +145.288 4.6 +140.907 4.4 +136.922 4.3 +133.574 4.2 +130.481 4.1 +127.616 4 +124.954 3.9 +122.474 3.8 +120.362 3.8 +118.373 3.7 +116.315 3.7 +113.872 3.6 +111.453 3.6 +109.36 3.5 +107.408 3.5 +105.71 3.4 +103.993 3.4 +444.422 8.8 +377.991 7.3 +337.641 6.2 +310.049 5.5 +289.655 5 +273.879 4.6 +261.017 4.4 +250.406 4.1 +241.353 4 +233.587 3.8 +226.809 3.7 +220.824 3.5 +215.458 3.4 +210.691 3.3 +206.301 3.2 +202.283 3.1 +198.535 3 +195.17 2.9 +191.994 2.8 +189.171 2.7 +185.146 2.7 diff --git a/Scripts_20161126/focusHITfile_int_c.txt b/Scripts_20161126/focusHITfile_int_c.txt new file mode 100644 index 0000000..6ef162c --- /dev/null +++ b/Scripts_20161126/focusHITfile_int_c.txt @@ -0,0 +1,9 @@ +1.99418 3.4 +2.99221 3.4 +4.99357 3.4 +8.00451 3.4 +9.96037 3.4 +14.9624 3.4 +19.9591 3.4 +29.9598 3.4 +50.0967 3.4 diff --git a/Scripts_20161126/focusHITfile_int_p.txt b/Scripts_20161126/focusHITfile_int_p.txt new file mode 100644 index 0000000..552c973 --- /dev/null +++ b/Scripts_20161126/focusHITfile_int_p.txt @@ -0,0 +1,10 @@ +77.5122 8.1 +116.351 8.1 +193.951 8.1 +310.193 8.1 +387.817 8.1 +581.737 8.1 +776.317 8.1 +1164.85 8.1 +1948.34 8.1 +3130.55 8.1 diff --git a/Scripts_20161126/focusfile.txt b/Scripts_20161126/focusfile.txt new file mode 100644 index 0000000..248e0b8 --- /dev/null +++ b/Scripts_20161126/focusfile.txt @@ -0,0 +1,99 @@ +12.6088 25.399 2.05323 +10.5936 24.2178 1.6374 +9.36031 23.0069 1.54513 +8.51336 21.8172 1.53386 +7.88605 20.6896 1.18057 +7.39682 19.6232 1.09812 +7.00082 18.6704 1.00077 +6.67084 17.8073 0.934234 +6.39059 17.023 0.879828 +6.14881 16.3987 0.836756 +5.93691 15.7778 0.837951 +5.74999 15.2297 0.821093 +5.58275 14.9257 0.898871 +5.43216 14.5927 0.812537 +5.29477 14.2462 0.817379 +5.16875 13.6319 0.792305 +5.05214 13.0844 0.734162 +4.94396 12.651 0.724978 +4.84371 12.3822 0.685765 +4.7504 12.1094 0.677845 +4.62797 11.7389 0.658325 +4.51492 11.3315 0.635503 +4.41193 10.9418 0.600957 +4.31778 10.6491 0.588026 +4.23108 10.4971 0.595433 +4.15089 10.3221 0.602943 +40.9872 16.429 1.03097 +36.5311 14.6334 1.01024 +33.3966 13.1197 0.897883 +31.0354 12.0009 0.810151 +29.1728 11.1164 0.754348 +27.6535 10.4793 0.70644 +26.4152 10.1078 0.655835 +25.2997 9.76736 0.653992 +24.2755 9.33858 0.612225 +23.5412 8.94025 0.556713 +22.8107 8.54769 0.539205 +22.1585 8.25173 0.528117 +21.5696 8.00908 0.509027 +21.0355 7.80211 0.528309 +20.5468 7.71069 0.595809 +20.099 7.55085 0.527313 +19.6851 7.32688 0.518441 +19.3016 6.98675 0.503037 +18.9455 6.66517 0.422361 +18.4699 6.41264 0.426599 +18.0231 6.33163 0.504004 +17.6151 6.23481 0.434819 +17.6151 6.2466 0.474255 +17.2409 6.16232 0.503233 +16.8956 6.04725 0.414928 +16.5761 5.81425 0.418223 +281.17 11.6941 0.954009 +238.032 9.88132 0.685876 +212.434 8.6922 0.582885 +194.949 7.81864 0.561571 +181.707 7.15875 0.551011 +171.379 6.6232 0.451899 +163.143 6.25889 0.51096 +155.987 5.89065 0.400793 +150.13 5.64166 0.379783 +145.288 5.46213 0.41381 +140.907 5.26913 0.402638 +136.922 5.04064 0.43127 +133.574 4.85443 0.342246 +130.481 4.68707 0.368537 +127.616 4.52139 0.315422 +124.954 4.48015 0.434853 +122.474 4.34551 0.29279 +120.362 4.28542 0.289474 +118.373 4.16878 0.339272 +116.315 4.02261 0.309 +113.872 3.91615 0.382003 +111.453 3.84735 0.336722 +109.36 3.76553 0.349769 +107.408 3.71295 0.337292 +105.71 3.64274 0.344411 +103.993 3.63176 0.492502 +444.422 10.1593 0.805217 +377.991 8.51757 0.620168 +337.641 7.45668 0.530828 +310.049 6.68692 0.505283 +289.655 6.11923 0.4429 +273.879 5.69421 0.401465 +261.017 5.35589 0.428834 +250.406 5.07676 0.355597 +241.353 4.83008 0.35628 +233.587 4.7018 0.642794 +226.809 4.5153 0.521679 +220.824 4.37878 0.608745 +215.458 4.21633 0.529898 +210.691 4.07769 0.455419 +206.301 3.91667 0.336041 +202.283 3.81207 0.340962 +198.535 3.72633 0.326691 +195.17 3.63164 0.370445 +191.994 3.55717 0.379298 +189.171 3.46449 0.337824 +185.146 3.38131 0.34228 diff --git a/Scripts_20161126/focusfile_int_c.txt b/Scripts_20161126/focusfile_int_c.txt new file mode 100644 index 0000000..34e1ade --- /dev/null +++ b/Scripts_20161126/focusfile_int_c.txt @@ -0,0 +1,9 @@ +1.99418 3.37146 0.703547 +2.99221 3.51836 0.659609 +4.99357 3.59721 0.468743 +8.00451 3.64593 0.478203 +9.96037 3.66789 0.593798 +14.9624 3.68376 0.519349 +19.9591 3.69854 0.410147 +29.9598 3.69927 0.30345 +50.0967 3.78958 0.374928 diff --git a/Scripts_20161126/focusfile_int_p.txt b/Scripts_20161126/focusfile_int_p.txt new file mode 100644 index 0000000..e947d87 --- /dev/null +++ b/Scripts_20161126/focusfile_int_p.txt @@ -0,0 +1,10 @@ +77.5122 8.01301 1.38134 +116.351 8.69148 1.04474 +193.951 9.25364 0.930238 +310.193 9.68447 0.915588 +387.817 9.79243 0.673461 +581.737 10.0157 0.630665 +776.317 10.1366 0.578005 +1164.85 10.3539 0.580989 +1948.34 10.5708 0.755355 +3130.55 10.7221 0.93306 diff --git a/Scripts_20161126/heliumAIR_40_300MeV.txt b/Scripts_20161126/heliumAIR_40_300MeV.txt new file mode 100644 index 0000000..877da0c --- /dev/null +++ b/Scripts_20161126/heliumAIR_40_300MeV.txt @@ -0,0 +1,20 @@ +4.375000E+01 4.856890E+01 +5.000000E+01 4.368480E+01 +5.625000E+01 3.981220E+01 +6.250000E+01 3.666270E+01 +6.875000E+01 3.404870E+01 +7.500000E+01 3.184270E+01 +8.750000E+01 2.832080E+01 +1.000000E+02 2.563090E+01 +1.125000E+02 2.350720E+01 +1.250000E+02 2.178700E+01 +1.375000E+02 2.036450E+01 +1.500000E+02 1.916860E+01 +1.625000E+02 1.814890E+01 +1.750000E+02 1.726910E+01 +1.875000E+02 1.650240E+01 +2.000000E+02 1.582830E+01 +2.125000E+02 1.523120E+01 +2.250000E+02 1.469860E+01 +2.375000E+02 1.422080E+01 +2.500000E+02 1.378970E+01 diff --git a/Scripts_20161126/heliumPS_40_300MeV.txt b/Scripts_20161126/heliumPS_40_300MeV.txt new file mode 100644 index 0000000..513e247 --- /dev/null +++ b/Scripts_20161126/heliumPS_40_300MeV.txt @@ -0,0 +1,22 @@ +3.750000E+01 6.112530E+01 +4.375000E+01 5.400280E+01 +5.000000E+01 4.854260E+01 +5.625000E+01 4.421680E+01 +6.250000E+01 4.070100E+01 +6.875000E+01 3.778460E+01 +7.500000E+01 3.532470E+01 +8.750000E+01 3.139990E+01 +1.000000E+02 2.840420E+01 +1.125000E+02 2.604040E+01 +1.250000E+02 2.412650E+01 +1.375000E+02 2.254470E+01 +1.500000E+02 2.121510E+01 +1.625000E+02 2.008170E+01 +1.750000E+02 1.910420E+01 +1.875000E+02 1.825240E+01 +2.000000E+02 1.750370E+01 +2.125000E+02 1.684060E+01 +2.250000E+02 1.624920E+01 +2.375000E+02 1.571870E+01 +2.500000E+02 1.524020E+01 +3.125000E+02 1.341600E+01 diff --git a/Scripts_20161126/ic1energyfile.txt b/Scripts_20161126/ic1energyfile.txt new file mode 100644 index 0000000..4498203 --- /dev/null +++ b/Scripts_20161126/ic1energyfile.txt @@ -0,0 +1,99 @@ +11.3093 0.183659 0.000252472 SAVE_PiN_run5.root +9.5264 0.154705 0.000255054 SAVE_PiN_run7.root +8.43143 0.136923 0.000284116 SAVE_PiN_run8.root +7.67749 0.124679 0.000248361 SAVE_PiN_run9.root +7.1179 0.115592 0.000224628 SAVE_PiN_run11.root +6.68074 0.108492 0.000209424 SAVE_PiN_run12.root +6.32635 0.102737 0.000178093 SAVE_PiN_run13.root +6.03068 0.0979356 0.000173029 SAVE_PiN_run14.root +5.77926 0.0938527 0.000136767 SAVE_PiN_run15.root +5.56214 0.0903267 0.000148191 SAVE_PiN_run16.root +5.37167 0.0872336 0.000147135 SAVE_PiN_run17.root +5.2035 0.0845025 0.000135746 SAVE_PiN_run18.root +5.05292 0.0820573 0.000137001 SAVE_PiN_run19.root +4.91723 0.0798536 0.000134933 SAVE_PiN_run20.root +4.79334 0.0778418 0.000116714 SAVE_PiN_run21.root +4.67963 0.0759952 0.000108416 SAVE_PiN_run22.root +4.57435 0.0742855 0.000101816 SAVE_PiN_run23.root +4.47662 0.0726983 0.00010219 SAVE_PiN_run24.root +4.386 0.0712267 0.000100273 SAVE_PiN_run25.root +4.3016 0.0698562 9.92911e-05 SAVE_PiN_run26.root +4.1908 0.0680568 9.3803e-05 SAVE_PiN_run27.root +4.08841 0.0663941 9.03159e-05 SAVE_PiN_run28.root +3.99507 0.0648783 8.94608e-05 SAVE_PiN_run29.root +3.9097 0.0634918 9.04432e-05 SAVE_PiN_run30.root +3.83102 0.0622141 9.01052e-05 SAVE_PiN_run31.root +3.75822 0.0610318 9.04732e-05 SAVE_PiN_run32.root +36.9312 0.599746 0.00107235 SAVE_PiN_run34.root +32.9287 0.534748 0.000943243 SAVE_PiN_run35.root +30.1125 0.489013 0.00085227 SAVE_PiN_run36.root +27.9903 0.454551 0.000782117 SAVE_PiN_run37.root +26.316 0.427361 0.000681366 SAVE_PiN_run38.root +24.95 0.405178 0.000705679 SAVE_PiN_run39.root +23.8365 0.387094 0.000649102 SAVE_PiN_run40.root +22.8333 0.370802 0.000596988 SAVE_PiN_run41.root +21.912 0.355841 0.000515146 SAVE_PiN_run43.root +21.2514 0.345113 0.000570585 SAVE_PiN_run44.root +20.5941 0.334439 0.000530726 SAVE_PiN_run45.root +20.0073 0.32491 0.000482183 SAVE_PiN_run46.root +19.4773 0.316303 0.000449442 SAVE_PiN_run47.root +18.9966 0.308497 0.000417442 SAVE_PiN_run48.root +18.5568 0.301354 0.000471964 SAVE_PiN_run49.root +18.1537 0.294808 0.00044022 SAVE_PiN_run50.root +17.7811 0.288757 0.000417162 SAVE_PiN_run51.root +17.4359 0.283151 0.000399609 SAVE_PiN_run52.root +17.1152 0.277944 0.000378534 SAVE_PiN_run53.root +16.687 0.27099 0.000345445 SAVE_PiN_run54.root +16.2846 0.264455 0.000336658 SAVE_PiN_run55.root +15.9173 0.258489 0.000334094 SAVE_PiN_run56.root +15.9173 0.258489 0.000310577 SAVE_PiN_run57.root +15.5802 0.253016 0.000364733 SAVE_PiN_run58.root +15.2692 0.247965 0.00035131 SAVE_PiN_run59.root +14.9814 0.243291 0.000330007 SAVE_PiN_run60.root +254.499 4.13296 0.00649488 SAVE_PiN_run61.root +215.483 3.49934 0.00546155 SAVE_PiN_run62.root +192.343 3.12357 0.0049771 SAVE_PiN_run63.root +176.544 2.867 0.00432667 SAVE_PiN_run64.root +164.584 2.67278 0.00408782 SAVE_PiN_run65.root +155.258 2.52133 0.00375172 SAVE_PiN_run66.root +147.823 2.40059 0.00340242 SAVE_PiN_run67.root +141.364 2.29569 0.00359997 SAVE_PiN_run68.root +136.079 2.20987 0.00352408 SAVE_PiN_run69.root +131.711 2.13892 0.00341984 SAVE_PiN_run70.root +127.758 2.07474 0.0034682 SAVE_PiN_run71.root +124.164 2.01637 0.00324576 SAVE_PiN_run72.root +121.145 1.96734 0.00307915 SAVE_PiN_run73.root +118.356 1.92206 0.00295645 SAVE_PiN_run74.root +115.773 1.88011 0.00291742 SAVE_PiN_run75.root +113.374 1.84114 0.00300453 SAVE_PiN_run76.root +111.138 1.80483 0.00284844 SAVE_PiN_run77.root +109.234 1.77392 0.00283963 SAVE_PiN_run78.root +107.442 1.74481 0.00260798 SAVE_PiN_run79.root +105.587 1.71468 0.00283069 SAVE_PiN_run80.root +103.386 1.67895 0.00293997 SAVE_PiN_run81.root +101.207 1.64356 0.0026425 SAVE_PiN_run82.root +99.3211 1.61293 0.00263118 SAVE_PiN_run83.root +97.563 1.58438 0.00250847 SAVE_PiN_run84.root +96.0339 1.55955 0.00263201 SAVE_PiN_run85.root +94.488 1.53444 0.00278468 SAVE_PiN_run86.root +416.151 6.75811 0.00805198 SAVE_PiN_run87.root +353.682 5.74365 0.0087169 SAVE_PiN_run88.root +315.718 5.12712 0.00875102 SAVE_PiN_run89.root +289.746 4.70535 0.0080959 SAVE_PiN_run90.root +270.543 4.3935 0.00734179 SAVE_PiN_run91.root +255.685 4.15221 0.00674764 SAVE_PiN_run92.root +243.568 3.95544 0.00645622 SAVE_PiN_run93.root +233.57 3.79307 0.00690067 SAVE_PiN_run94.root +225.037 3.65451 0.00625647 SAVE_PiN_run95.root +217.717 3.53563 0.00703896 SAVE_PiN_run96.root +211.327 3.43186 0.00662352 SAVE_PiN_run97.root +205.684 3.34022 0.00664661 SAVE_PiN_run98.root +200.624 3.25804 0.00668657 SAVE_PiN_run99.root +196.128 3.18503 0.00747929 SAVE_PiN_run100.root +191.987 3.11779 0.00677309 SAVE_PiN_run101.root +188.197 3.05624 0.00691724 SAVE_PiN_run103.root +184.661 2.99881 0.00683745 SAVE_PiN_run104.root +181.485 2.94724 0.00688722 SAVE_PiN_run105.root +178.489 2.89859 0.00741901 SAVE_PiN_run106.root +175.824 2.85531 0.00746864 SAVE_PiN_run107.root +172.026 2.79362 0.00767083 SAVE_PiN_run108.root diff --git a/Scripts_20161126/ic1energyfile_int_c.txt b/Scripts_20161126/ic1energyfile_int_c.txt new file mode 100644 index 0000000..0484dc9 --- /dev/null +++ b/Scripts_20161126/ic1energyfile_int_c.txt @@ -0,0 +1,9 @@ +1.99418 2.96114 0.00555208 SAVE_PiN_run121.root +2.99221 4.44172 0.00743915 SAVE_PiN_run122.root +4.99357 7.40286 0.0125223 SAVE_PiN_run123.root +8.00451 11.8446 0.0192501 SAVE_PiN_run124.root +9.96037 14.8057 0.0411843 SAVE_PiN_run125.root +14.9624 22.2086 0.0412701 SAVE_PiN_run126.root +19.9591 29.6114 0.0566398 SAVE_PiN_run127.root +29.9598 44.4172 0.0896551 SAVE_PiN_run128.root +50.0967 74.0286 0.128094 SAVE_PiN_run129.root diff --git a/Scripts_20161126/ic1energyfile_int_p.txt b/Scripts_20161126/ic1energyfile_int_p.txt new file mode 100644 index 0000000..01f5173 --- /dev/null +++ b/Scripts_20161126/ic1energyfile_int_p.txt @@ -0,0 +1,10 @@ +77.5122 4.70273 0.00708266 SAVE_PiN_run111.root +116.351 7.0541 0.010382 SAVE_PiN_run112.root +193.951 11.7568 0.0175582 SAVE_PiN_run113.root +310.193 18.8109 0.0275753 SAVE_PiN_run114.root +387.817 23.5137 0.0357551 SAVE_PiN_run115.root +581.737 35.2705 0.0560722 SAVE_PiN_run116.root +776.317 47.0273 0.0718516 SAVE_PiN_run117.root +1164.85 70.541 0.104825 SAVE_PiN_run118.root +1948.34 117.568 0.166721 SAVE_PiN_run119.root +3130.55 188.109 0.280986 SAVE_PiN_run120.root diff --git a/Scripts_20161126/ic2energyfile.txt b/Scripts_20161126/ic2energyfile.txt new file mode 100644 index 0000000..4761615 --- /dev/null +++ b/Scripts_20161126/ic2energyfile.txt @@ -0,0 +1,99 @@ +11.3093 0.956413 +9.5264 0.966749 +8.43143 0.97211 +7.67749 0.836872 +7.1179 0.973445 +6.68074 0.976791 +6.32635 0.968896 +6.03068 0.976583 +5.77926 0.936752 +5.56214 0.949809 +5.37167 0.918838 +5.2035 0.944405 +5.05292 0.892109 +4.91723 0.965148 +4.79334 0.935405 +4.67963 0.93349 +4.57435 0.942085 +4.47662 0.925383 +4.386 0.903204 +4.3016 0.936577 +4.1908 0.939063 +4.08841 0.904957 +3.99507 0.916267 +3.9097 0.924663 +3.83102 0.934234 +3.75822 0.884711 +36.9312 0.909552 +32.9287 0.900402 +30.1125 0.901286 +27.9903 0.896272 +26.316 0.885248 +24.95 0.874645 +23.8365 0.878162 +22.8333 0.863392 +21.912 0.883998 +21.2514 0.867982 +20.5941 0.874685 +20.0073 0.875423 +19.4773 0.866295 +18.9966 0.8936 +18.5568 0.882933 +18.1537 0.895969 +17.7811 0.887657 +17.4359 0.853914 +17.1152 0.882496 +16.687 0.908041 +16.2846 0.837824 +15.9173 0.856443 +15.9173 0.899596 +15.5802 0.900284 +15.2692 0.852189 +14.9814 0.850408 +254.499 0.881558 +215.483 0.901923 +192.343 0.913365 +176.544 0.887048 +164.584 0.8811 +155.258 0.926694 +147.823 0.928508 +141.364 0.927534 +136.079 0.939146 +131.711 0.946904 +127.758 0.95154 +124.164 0.90868 +121.145 0.938459 +118.356 0.941303 +115.773 0.938643 +113.374 0.922091 +111.138 0.943439 +109.234 0.951091 +107.442 0.950213 +105.587 0.934963 +103.386 0.930185 +101.207 0.957279 +99.3211 0.950495 +97.563 0.949873 +96.0339 0.964595 +94.488 0.924081 +416.151 0.9312 +353.682 0.921439 +315.718 0.891648 +289.746 0.883939 +270.543 0.906897 +255.685 0.888948 +243.568 0.875953 +233.57 0.879002 +225.037 0.86434 +217.717 0.858192 +211.327 0.867334 +205.684 0.887996 +200.624 0.846042 +196.128 0.876614 +191.987 0.870144 +188.197 0.880071 +184.661 0.863413 +181.485 0.868405 +178.489 0.878083 +175.824 0.889693 +172.026 0.866532 diff --git a/Scripts_20161126/ic2energyfile_int_c.txt b/Scripts_20161126/ic2energyfile_int_c.txt new file mode 100644 index 0000000..f870b45 --- /dev/null +++ b/Scripts_20161126/ic2energyfile_int_c.txt @@ -0,0 +1,9 @@ +1.99418 0.85137 +2.99221 0.898188 +4.99357 0.933941 +8.00451 0.943887 +9.96037 0.95515 +14.9624 0.962296 +19.9591 0.965039 +29.9598 0.969374 +50.0967 0.957994 diff --git a/Scripts_20161126/ic2energyfile_int_p.txt b/Scripts_20161126/ic2energyfile_int_p.txt new file mode 100644 index 0000000..57edecb --- /dev/null +++ b/Scripts_20161126/ic2energyfile_int_p.txt @@ -0,0 +1,10 @@ +77.5122 0.824766 +116.351 0.88009 +193.951 0.859952 +310.193 0.93276 +387.817 0.957951 +581.737 0.967951 +776.317 0.963933 +1164.85 0.955123 +1948.34 0.949307 +3130.55 0.857718 diff --git a/Scripts_20161126/jobs/runjob10.sh b/Scripts_20161126/jobs/runjob10.sh new file mode 100644 index 0000000..fe36d75 --- /dev/null +++ b/Scripts_20161126/jobs/runjob10.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run10.root diff --git a/Scripts_20161126/jobs/runjob100.sh b/Scripts_20161126/jobs/runjob100.sh new file mode 100644 index 0000000..5624c09 --- /dev/null +++ b/Scripts_20161126/jobs/runjob100.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run100.root diff --git a/Scripts_20161126/jobs/runjob101.sh b/Scripts_20161126/jobs/runjob101.sh new file mode 100644 index 0000000..af26325 --- /dev/null +++ b/Scripts_20161126/jobs/runjob101.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run101.root diff --git a/Scripts_20161126/jobs/runjob102.sh b/Scripts_20161126/jobs/runjob102.sh new file mode 100644 index 0000000..31b612f --- /dev/null +++ b/Scripts_20161126/jobs/runjob102.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run102.root diff --git a/Scripts_20161126/jobs/runjob103.sh b/Scripts_20161126/jobs/runjob103.sh new file mode 100644 index 0000000..4a64105 --- /dev/null +++ b/Scripts_20161126/jobs/runjob103.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run103.root diff --git a/Scripts_20161126/jobs/runjob104.sh b/Scripts_20161126/jobs/runjob104.sh new file mode 100644 index 0000000..ae8ebd3 --- /dev/null +++ b/Scripts_20161126/jobs/runjob104.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run104.root diff --git a/Scripts_20161126/jobs/runjob105.sh b/Scripts_20161126/jobs/runjob105.sh new file mode 100644 index 0000000..f77d2a9 --- /dev/null +++ b/Scripts_20161126/jobs/runjob105.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run105.root diff --git a/Scripts_20161126/jobs/runjob106.sh b/Scripts_20161126/jobs/runjob106.sh new file mode 100644 index 0000000..30c7036 --- /dev/null +++ b/Scripts_20161126/jobs/runjob106.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run106.root diff --git a/Scripts_20161126/jobs/runjob107.sh b/Scripts_20161126/jobs/runjob107.sh new file mode 100644 index 0000000..3b9baa5 --- /dev/null +++ b/Scripts_20161126/jobs/runjob107.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run107.root diff --git a/Scripts_20161126/jobs/runjob108.sh b/Scripts_20161126/jobs/runjob108.sh new file mode 100644 index 0000000..9e202e1 --- /dev/null +++ b/Scripts_20161126/jobs/runjob108.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run108.root diff --git a/Scripts_20161126/jobs/runjob109.sh b/Scripts_20161126/jobs/runjob109.sh new file mode 100644 index 0000000..0b88f1f --- /dev/null +++ b/Scripts_20161126/jobs/runjob109.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run109.root diff --git a/Scripts_20161126/jobs/runjob11.sh b/Scripts_20161126/jobs/runjob11.sh new file mode 100644 index 0000000..892a8ee --- /dev/null +++ b/Scripts_20161126/jobs/runjob11.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run11.root diff --git a/Scripts_20161126/jobs/runjob110.sh b/Scripts_20161126/jobs/runjob110.sh new file mode 100644 index 0000000..e82a679 --- /dev/null +++ b/Scripts_20161126/jobs/runjob110.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run110.root diff --git a/Scripts_20161126/jobs/runjob111.sh b/Scripts_20161126/jobs/runjob111.sh new file mode 100644 index 0000000..e514653 --- /dev/null +++ b/Scripts_20161126/jobs/runjob111.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run111.root diff --git a/Scripts_20161126/jobs/runjob112.sh b/Scripts_20161126/jobs/runjob112.sh new file mode 100644 index 0000000..f325737 --- /dev/null +++ b/Scripts_20161126/jobs/runjob112.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run112.root diff --git a/Scripts_20161126/jobs/runjob113.sh b/Scripts_20161126/jobs/runjob113.sh new file mode 100644 index 0000000..1b58c4f --- /dev/null +++ b/Scripts_20161126/jobs/runjob113.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run113.root diff --git a/Scripts_20161126/jobs/runjob114.sh b/Scripts_20161126/jobs/runjob114.sh new file mode 100644 index 0000000..9fb6db5 --- /dev/null +++ b/Scripts_20161126/jobs/runjob114.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run114.root diff --git a/Scripts_20161126/jobs/runjob115.sh b/Scripts_20161126/jobs/runjob115.sh new file mode 100644 index 0000000..78b203b --- /dev/null +++ b/Scripts_20161126/jobs/runjob115.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run115.root diff --git a/Scripts_20161126/jobs/runjob116.sh b/Scripts_20161126/jobs/runjob116.sh new file mode 100644 index 0000000..42e8dcd --- /dev/null +++ b/Scripts_20161126/jobs/runjob116.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run116.root diff --git a/Scripts_20161126/jobs/runjob117.sh b/Scripts_20161126/jobs/runjob117.sh new file mode 100644 index 0000000..2835cfc --- /dev/null +++ b/Scripts_20161126/jobs/runjob117.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run117.root diff --git a/Scripts_20161126/jobs/runjob118.sh b/Scripts_20161126/jobs/runjob118.sh new file mode 100644 index 0000000..42f6598 --- /dev/null +++ b/Scripts_20161126/jobs/runjob118.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run118.root diff --git a/Scripts_20161126/jobs/runjob119.sh b/Scripts_20161126/jobs/runjob119.sh new file mode 100644 index 0000000..e9332e7 --- /dev/null +++ b/Scripts_20161126/jobs/runjob119.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run119.root diff --git a/Scripts_20161126/jobs/runjob12.sh b/Scripts_20161126/jobs/runjob12.sh new file mode 100644 index 0000000..5dc1527 --- /dev/null +++ b/Scripts_20161126/jobs/runjob12.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run12.root diff --git a/Scripts_20161126/jobs/runjob120.sh b/Scripts_20161126/jobs/runjob120.sh new file mode 100644 index 0000000..4153bea --- /dev/null +++ b/Scripts_20161126/jobs/runjob120.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run120.root diff --git a/Scripts_20161126/jobs/runjob121.sh b/Scripts_20161126/jobs/runjob121.sh new file mode 100644 index 0000000..18fe104 --- /dev/null +++ b/Scripts_20161126/jobs/runjob121.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run121.root diff --git a/Scripts_20161126/jobs/runjob122.sh b/Scripts_20161126/jobs/runjob122.sh new file mode 100644 index 0000000..9918005 --- /dev/null +++ b/Scripts_20161126/jobs/runjob122.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run122.root diff --git a/Scripts_20161126/jobs/runjob123.sh b/Scripts_20161126/jobs/runjob123.sh new file mode 100644 index 0000000..3462358 --- /dev/null +++ b/Scripts_20161126/jobs/runjob123.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run123.root diff --git a/Scripts_20161126/jobs/runjob124.sh b/Scripts_20161126/jobs/runjob124.sh new file mode 100644 index 0000000..d0f3932 --- /dev/null +++ b/Scripts_20161126/jobs/runjob124.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run124.root diff --git a/Scripts_20161126/jobs/runjob125.sh b/Scripts_20161126/jobs/runjob125.sh new file mode 100644 index 0000000..729c3ff --- /dev/null +++ b/Scripts_20161126/jobs/runjob125.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run125.root diff --git a/Scripts_20161126/jobs/runjob126.sh b/Scripts_20161126/jobs/runjob126.sh new file mode 100644 index 0000000..8263ef3 --- /dev/null +++ b/Scripts_20161126/jobs/runjob126.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run126.root diff --git a/Scripts_20161126/jobs/runjob127.sh b/Scripts_20161126/jobs/runjob127.sh new file mode 100644 index 0000000..7a5202e --- /dev/null +++ b/Scripts_20161126/jobs/runjob127.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run127.root diff --git a/Scripts_20161126/jobs/runjob128.sh b/Scripts_20161126/jobs/runjob128.sh new file mode 100644 index 0000000..2eb7f22 --- /dev/null +++ b/Scripts_20161126/jobs/runjob128.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run128.root diff --git a/Scripts_20161126/jobs/runjob129.sh b/Scripts_20161126/jobs/runjob129.sh new file mode 100644 index 0000000..21bd4a3 --- /dev/null +++ b/Scripts_20161126/jobs/runjob129.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run129.root diff --git a/Scripts_20161126/jobs/runjob13.sh b/Scripts_20161126/jobs/runjob13.sh new file mode 100644 index 0000000..041cde2 --- /dev/null +++ b/Scripts_20161126/jobs/runjob13.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run13.root diff --git a/Scripts_20161126/jobs/runjob14.sh b/Scripts_20161126/jobs/runjob14.sh new file mode 100644 index 0000000..0fdce99 --- /dev/null +++ b/Scripts_20161126/jobs/runjob14.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run14.root diff --git a/Scripts_20161126/jobs/runjob15.sh b/Scripts_20161126/jobs/runjob15.sh new file mode 100644 index 0000000..c989e0d --- /dev/null +++ b/Scripts_20161126/jobs/runjob15.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run15.root diff --git a/Scripts_20161126/jobs/runjob16.sh b/Scripts_20161126/jobs/runjob16.sh new file mode 100644 index 0000000..a34370d --- /dev/null +++ b/Scripts_20161126/jobs/runjob16.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run16.root diff --git a/Scripts_20161126/jobs/runjob17.sh b/Scripts_20161126/jobs/runjob17.sh new file mode 100644 index 0000000..c92eacb --- /dev/null +++ b/Scripts_20161126/jobs/runjob17.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run17.root diff --git a/Scripts_20161126/jobs/runjob18.sh b/Scripts_20161126/jobs/runjob18.sh new file mode 100644 index 0000000..9ab1bd2 --- /dev/null +++ b/Scripts_20161126/jobs/runjob18.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run18.root diff --git a/Scripts_20161126/jobs/runjob19.sh b/Scripts_20161126/jobs/runjob19.sh new file mode 100644 index 0000000..6b7e5bb --- /dev/null +++ b/Scripts_20161126/jobs/runjob19.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run19.root diff --git a/Scripts_20161126/jobs/runjob20.sh b/Scripts_20161126/jobs/runjob20.sh new file mode 100644 index 0000000..39efe6f --- /dev/null +++ b/Scripts_20161126/jobs/runjob20.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run20.root diff --git a/Scripts_20161126/jobs/runjob21.sh b/Scripts_20161126/jobs/runjob21.sh new file mode 100644 index 0000000..65c597c --- /dev/null +++ b/Scripts_20161126/jobs/runjob21.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run21.root diff --git a/Scripts_20161126/jobs/runjob22.sh b/Scripts_20161126/jobs/runjob22.sh new file mode 100644 index 0000000..4930e10 --- /dev/null +++ b/Scripts_20161126/jobs/runjob22.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run22.root diff --git a/Scripts_20161126/jobs/runjob23.sh b/Scripts_20161126/jobs/runjob23.sh new file mode 100644 index 0000000..06a8b40 --- /dev/null +++ b/Scripts_20161126/jobs/runjob23.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run23.root diff --git a/Scripts_20161126/jobs/runjob24.sh b/Scripts_20161126/jobs/runjob24.sh new file mode 100644 index 0000000..113f5b7 --- /dev/null +++ b/Scripts_20161126/jobs/runjob24.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run24.root diff --git a/Scripts_20161126/jobs/runjob25.sh b/Scripts_20161126/jobs/runjob25.sh new file mode 100644 index 0000000..a845dd7 --- /dev/null +++ b/Scripts_20161126/jobs/runjob25.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run25.root diff --git a/Scripts_20161126/jobs/runjob26.sh b/Scripts_20161126/jobs/runjob26.sh new file mode 100644 index 0000000..0568549 --- /dev/null +++ b/Scripts_20161126/jobs/runjob26.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run26.root diff --git a/Scripts_20161126/jobs/runjob27.sh b/Scripts_20161126/jobs/runjob27.sh new file mode 100644 index 0000000..6400882 --- /dev/null +++ b/Scripts_20161126/jobs/runjob27.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run27.root diff --git a/Scripts_20161126/jobs/runjob28.sh b/Scripts_20161126/jobs/runjob28.sh new file mode 100644 index 0000000..fbfa53e --- /dev/null +++ b/Scripts_20161126/jobs/runjob28.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run28.root diff --git a/Scripts_20161126/jobs/runjob29.sh b/Scripts_20161126/jobs/runjob29.sh new file mode 100644 index 0000000..ac53334 --- /dev/null +++ b/Scripts_20161126/jobs/runjob29.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run29.root diff --git a/Scripts_20161126/jobs/runjob30.sh b/Scripts_20161126/jobs/runjob30.sh new file mode 100644 index 0000000..afbaf62 --- /dev/null +++ b/Scripts_20161126/jobs/runjob30.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run30.root diff --git a/Scripts_20161126/jobs/runjob31.sh b/Scripts_20161126/jobs/runjob31.sh new file mode 100644 index 0000000..7b57add --- /dev/null +++ b/Scripts_20161126/jobs/runjob31.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run31.root diff --git a/Scripts_20161126/jobs/runjob32.sh b/Scripts_20161126/jobs/runjob32.sh new file mode 100644 index 0000000..f146a74 --- /dev/null +++ b/Scripts_20161126/jobs/runjob32.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run32.root diff --git a/Scripts_20161126/jobs/runjob33.sh b/Scripts_20161126/jobs/runjob33.sh new file mode 100644 index 0000000..f030f73 --- /dev/null +++ b/Scripts_20161126/jobs/runjob33.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run33.root diff --git a/Scripts_20161126/jobs/runjob34.sh b/Scripts_20161126/jobs/runjob34.sh new file mode 100644 index 0000000..ee499d1 --- /dev/null +++ b/Scripts_20161126/jobs/runjob34.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run34.root diff --git a/Scripts_20161126/jobs/runjob35.sh b/Scripts_20161126/jobs/runjob35.sh new file mode 100644 index 0000000..b2be932 --- /dev/null +++ b/Scripts_20161126/jobs/runjob35.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run35.root diff --git a/Scripts_20161126/jobs/runjob36.sh b/Scripts_20161126/jobs/runjob36.sh new file mode 100644 index 0000000..6030d71 --- /dev/null +++ b/Scripts_20161126/jobs/runjob36.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run36.root diff --git a/Scripts_20161126/jobs/runjob37.sh b/Scripts_20161126/jobs/runjob37.sh new file mode 100644 index 0000000..84f346e --- /dev/null +++ b/Scripts_20161126/jobs/runjob37.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run37.root diff --git a/Scripts_20161126/jobs/runjob38.sh b/Scripts_20161126/jobs/runjob38.sh new file mode 100644 index 0000000..0ca6aaa --- /dev/null +++ b/Scripts_20161126/jobs/runjob38.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run38.root diff --git a/Scripts_20161126/jobs/runjob39.sh b/Scripts_20161126/jobs/runjob39.sh new file mode 100644 index 0000000..f68946d --- /dev/null +++ b/Scripts_20161126/jobs/runjob39.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run39.root diff --git a/Scripts_20161126/jobs/runjob40.sh b/Scripts_20161126/jobs/runjob40.sh new file mode 100644 index 0000000..4c3a471 --- /dev/null +++ b/Scripts_20161126/jobs/runjob40.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run40.root diff --git a/Scripts_20161126/jobs/runjob41.sh b/Scripts_20161126/jobs/runjob41.sh new file mode 100644 index 0000000..f72443d --- /dev/null +++ b/Scripts_20161126/jobs/runjob41.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run41.root diff --git a/Scripts_20161126/jobs/runjob42.sh b/Scripts_20161126/jobs/runjob42.sh new file mode 100644 index 0000000..b50a8b9 --- /dev/null +++ b/Scripts_20161126/jobs/runjob42.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run42.root diff --git a/Scripts_20161126/jobs/runjob43.sh b/Scripts_20161126/jobs/runjob43.sh new file mode 100644 index 0000000..fa5d4f1 --- /dev/null +++ b/Scripts_20161126/jobs/runjob43.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run43.root diff --git a/Scripts_20161126/jobs/runjob44.sh b/Scripts_20161126/jobs/runjob44.sh new file mode 100644 index 0000000..7375594 --- /dev/null +++ b/Scripts_20161126/jobs/runjob44.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run44.root diff --git a/Scripts_20161126/jobs/runjob45.sh b/Scripts_20161126/jobs/runjob45.sh new file mode 100644 index 0000000..e091d35 --- /dev/null +++ b/Scripts_20161126/jobs/runjob45.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run45.root diff --git a/Scripts_20161126/jobs/runjob46.sh b/Scripts_20161126/jobs/runjob46.sh new file mode 100644 index 0000000..bfb564c --- /dev/null +++ b/Scripts_20161126/jobs/runjob46.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run46.root diff --git a/Scripts_20161126/jobs/runjob47.sh b/Scripts_20161126/jobs/runjob47.sh new file mode 100644 index 0000000..ce93702 --- /dev/null +++ b/Scripts_20161126/jobs/runjob47.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run47.root diff --git a/Scripts_20161126/jobs/runjob48.sh b/Scripts_20161126/jobs/runjob48.sh new file mode 100644 index 0000000..ac13f31 --- /dev/null +++ b/Scripts_20161126/jobs/runjob48.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run48.root diff --git a/Scripts_20161126/jobs/runjob49.sh b/Scripts_20161126/jobs/runjob49.sh new file mode 100644 index 0000000..8339401 --- /dev/null +++ b/Scripts_20161126/jobs/runjob49.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run49.root diff --git a/Scripts_20161126/jobs/runjob5.sh b/Scripts_20161126/jobs/runjob5.sh new file mode 100644 index 0000000..53e8754 --- /dev/null +++ b/Scripts_20161126/jobs/runjob5.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run5.root diff --git a/Scripts_20161126/jobs/runjob50.sh b/Scripts_20161126/jobs/runjob50.sh new file mode 100644 index 0000000..8e22d57 --- /dev/null +++ b/Scripts_20161126/jobs/runjob50.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run50.root diff --git a/Scripts_20161126/jobs/runjob51.sh b/Scripts_20161126/jobs/runjob51.sh new file mode 100644 index 0000000..34d7539 --- /dev/null +++ b/Scripts_20161126/jobs/runjob51.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run51.root diff --git a/Scripts_20161126/jobs/runjob52.sh b/Scripts_20161126/jobs/runjob52.sh new file mode 100644 index 0000000..64120d5 --- /dev/null +++ b/Scripts_20161126/jobs/runjob52.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run52.root diff --git a/Scripts_20161126/jobs/runjob53.sh b/Scripts_20161126/jobs/runjob53.sh new file mode 100644 index 0000000..2df8b7f --- /dev/null +++ b/Scripts_20161126/jobs/runjob53.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run53.root diff --git a/Scripts_20161126/jobs/runjob54.sh b/Scripts_20161126/jobs/runjob54.sh new file mode 100644 index 0000000..0150c5d --- /dev/null +++ b/Scripts_20161126/jobs/runjob54.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run54.root diff --git a/Scripts_20161126/jobs/runjob55.sh b/Scripts_20161126/jobs/runjob55.sh new file mode 100644 index 0000000..abe70cc --- /dev/null +++ b/Scripts_20161126/jobs/runjob55.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run55.root diff --git a/Scripts_20161126/jobs/runjob56.sh b/Scripts_20161126/jobs/runjob56.sh new file mode 100644 index 0000000..d2c6e3a --- /dev/null +++ b/Scripts_20161126/jobs/runjob56.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run56.root diff --git a/Scripts_20161126/jobs/runjob57.sh b/Scripts_20161126/jobs/runjob57.sh new file mode 100644 index 0000000..26dbe46 --- /dev/null +++ b/Scripts_20161126/jobs/runjob57.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run57.root diff --git a/Scripts_20161126/jobs/runjob58.sh b/Scripts_20161126/jobs/runjob58.sh new file mode 100644 index 0000000..0fcb959 --- /dev/null +++ b/Scripts_20161126/jobs/runjob58.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run58.root diff --git a/Scripts_20161126/jobs/runjob59.sh b/Scripts_20161126/jobs/runjob59.sh new file mode 100644 index 0000000..157a5fd --- /dev/null +++ b/Scripts_20161126/jobs/runjob59.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run59.root diff --git a/Scripts_20161126/jobs/runjob6.sh b/Scripts_20161126/jobs/runjob6.sh new file mode 100644 index 0000000..d043525 --- /dev/null +++ b/Scripts_20161126/jobs/runjob6.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run6.root diff --git a/Scripts_20161126/jobs/runjob60.sh b/Scripts_20161126/jobs/runjob60.sh new file mode 100644 index 0000000..9d00bfb --- /dev/null +++ b/Scripts_20161126/jobs/runjob60.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run60.root diff --git a/Scripts_20161126/jobs/runjob61.sh b/Scripts_20161126/jobs/runjob61.sh new file mode 100644 index 0000000..22ba367 --- /dev/null +++ b/Scripts_20161126/jobs/runjob61.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run61.root diff --git a/Scripts_20161126/jobs/runjob62.sh b/Scripts_20161126/jobs/runjob62.sh new file mode 100644 index 0000000..4217a4c --- /dev/null +++ b/Scripts_20161126/jobs/runjob62.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run62.root diff --git a/Scripts_20161126/jobs/runjob63.sh b/Scripts_20161126/jobs/runjob63.sh new file mode 100644 index 0000000..cd28697 --- /dev/null +++ b/Scripts_20161126/jobs/runjob63.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run63.root diff --git a/Scripts_20161126/jobs/runjob64.sh b/Scripts_20161126/jobs/runjob64.sh new file mode 100644 index 0000000..00461b6 --- /dev/null +++ b/Scripts_20161126/jobs/runjob64.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run64.root diff --git a/Scripts_20161126/jobs/runjob65.sh b/Scripts_20161126/jobs/runjob65.sh new file mode 100644 index 0000000..e5dec57 --- /dev/null +++ b/Scripts_20161126/jobs/runjob65.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run65.root diff --git a/Scripts_20161126/jobs/runjob66.sh b/Scripts_20161126/jobs/runjob66.sh new file mode 100644 index 0000000..ac1059e --- /dev/null +++ b/Scripts_20161126/jobs/runjob66.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run66.root diff --git a/Scripts_20161126/jobs/runjob67.sh b/Scripts_20161126/jobs/runjob67.sh new file mode 100644 index 0000000..95cae56 --- /dev/null +++ b/Scripts_20161126/jobs/runjob67.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run67.root diff --git a/Scripts_20161126/jobs/runjob68.sh b/Scripts_20161126/jobs/runjob68.sh new file mode 100644 index 0000000..71665b5 --- /dev/null +++ b/Scripts_20161126/jobs/runjob68.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run68.root diff --git a/Scripts_20161126/jobs/runjob69.sh b/Scripts_20161126/jobs/runjob69.sh new file mode 100644 index 0000000..c3324e8 --- /dev/null +++ b/Scripts_20161126/jobs/runjob69.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run69.root diff --git a/Scripts_20161126/jobs/runjob7.sh b/Scripts_20161126/jobs/runjob7.sh new file mode 100644 index 0000000..fe8531d --- /dev/null +++ b/Scripts_20161126/jobs/runjob7.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run7.root diff --git a/Scripts_20161126/jobs/runjob70.sh b/Scripts_20161126/jobs/runjob70.sh new file mode 100644 index 0000000..40e8b11 --- /dev/null +++ b/Scripts_20161126/jobs/runjob70.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run70.root diff --git a/Scripts_20161126/jobs/runjob71.sh b/Scripts_20161126/jobs/runjob71.sh new file mode 100644 index 0000000..8fe89fa --- /dev/null +++ b/Scripts_20161126/jobs/runjob71.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run71.root diff --git a/Scripts_20161126/jobs/runjob72.sh b/Scripts_20161126/jobs/runjob72.sh new file mode 100644 index 0000000..77c8868 --- /dev/null +++ b/Scripts_20161126/jobs/runjob72.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run72.root diff --git a/Scripts_20161126/jobs/runjob73.sh b/Scripts_20161126/jobs/runjob73.sh new file mode 100644 index 0000000..feb5e33 --- /dev/null +++ b/Scripts_20161126/jobs/runjob73.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run73.root diff --git a/Scripts_20161126/jobs/runjob74.sh b/Scripts_20161126/jobs/runjob74.sh new file mode 100644 index 0000000..803ab20 --- /dev/null +++ b/Scripts_20161126/jobs/runjob74.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run74.root diff --git a/Scripts_20161126/jobs/runjob75.sh b/Scripts_20161126/jobs/runjob75.sh new file mode 100644 index 0000000..a5ae9d9 --- /dev/null +++ b/Scripts_20161126/jobs/runjob75.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run75.root diff --git a/Scripts_20161126/jobs/runjob76.sh b/Scripts_20161126/jobs/runjob76.sh new file mode 100644 index 0000000..36eee5b --- /dev/null +++ b/Scripts_20161126/jobs/runjob76.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run76.root diff --git a/Scripts_20161126/jobs/runjob77.sh b/Scripts_20161126/jobs/runjob77.sh new file mode 100644 index 0000000..e775d7d --- /dev/null +++ b/Scripts_20161126/jobs/runjob77.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run77.root diff --git a/Scripts_20161126/jobs/runjob78.sh b/Scripts_20161126/jobs/runjob78.sh new file mode 100644 index 0000000..f4b8187 --- /dev/null +++ b/Scripts_20161126/jobs/runjob78.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run78.root diff --git a/Scripts_20161126/jobs/runjob79.sh b/Scripts_20161126/jobs/runjob79.sh new file mode 100644 index 0000000..f3e7476 --- /dev/null +++ b/Scripts_20161126/jobs/runjob79.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run79.root diff --git a/Scripts_20161126/jobs/runjob8.sh b/Scripts_20161126/jobs/runjob8.sh new file mode 100644 index 0000000..3899451 --- /dev/null +++ b/Scripts_20161126/jobs/runjob8.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run8.root diff --git a/Scripts_20161126/jobs/runjob80.sh b/Scripts_20161126/jobs/runjob80.sh new file mode 100644 index 0000000..89a7408 --- /dev/null +++ b/Scripts_20161126/jobs/runjob80.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run80.root diff --git a/Scripts_20161126/jobs/runjob81.sh b/Scripts_20161126/jobs/runjob81.sh new file mode 100644 index 0000000..376afd9 --- /dev/null +++ b/Scripts_20161126/jobs/runjob81.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run81.root diff --git a/Scripts_20161126/jobs/runjob82.sh b/Scripts_20161126/jobs/runjob82.sh new file mode 100644 index 0000000..2cd5bf9 --- /dev/null +++ b/Scripts_20161126/jobs/runjob82.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run82.root diff --git a/Scripts_20161126/jobs/runjob83.sh b/Scripts_20161126/jobs/runjob83.sh new file mode 100644 index 0000000..45db153 --- /dev/null +++ b/Scripts_20161126/jobs/runjob83.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run83.root diff --git a/Scripts_20161126/jobs/runjob84.sh b/Scripts_20161126/jobs/runjob84.sh new file mode 100644 index 0000000..e0f2309 --- /dev/null +++ b/Scripts_20161126/jobs/runjob84.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run84.root diff --git a/Scripts_20161126/jobs/runjob85.sh b/Scripts_20161126/jobs/runjob85.sh new file mode 100644 index 0000000..301f802 --- /dev/null +++ b/Scripts_20161126/jobs/runjob85.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run85.root diff --git a/Scripts_20161126/jobs/runjob86.sh b/Scripts_20161126/jobs/runjob86.sh new file mode 100644 index 0000000..52db880 --- /dev/null +++ b/Scripts_20161126/jobs/runjob86.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run86.root diff --git a/Scripts_20161126/jobs/runjob87.sh b/Scripts_20161126/jobs/runjob87.sh new file mode 100644 index 0000000..729edfc --- /dev/null +++ b/Scripts_20161126/jobs/runjob87.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run87.root diff --git a/Scripts_20161126/jobs/runjob88.sh b/Scripts_20161126/jobs/runjob88.sh new file mode 100644 index 0000000..cbaae59 --- /dev/null +++ b/Scripts_20161126/jobs/runjob88.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run88.root diff --git a/Scripts_20161126/jobs/runjob89.sh b/Scripts_20161126/jobs/runjob89.sh new file mode 100644 index 0000000..0d23fae --- /dev/null +++ b/Scripts_20161126/jobs/runjob89.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run89.root diff --git a/Scripts_20161126/jobs/runjob9.sh b/Scripts_20161126/jobs/runjob9.sh new file mode 100644 index 0000000..8fcc525 --- /dev/null +++ b/Scripts_20161126/jobs/runjob9.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run9.root diff --git a/Scripts_20161126/jobs/runjob90.sh b/Scripts_20161126/jobs/runjob90.sh new file mode 100644 index 0000000..b46cc19 --- /dev/null +++ b/Scripts_20161126/jobs/runjob90.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run90.root diff --git a/Scripts_20161126/jobs/runjob91.sh b/Scripts_20161126/jobs/runjob91.sh new file mode 100644 index 0000000..d81bea7 --- /dev/null +++ b/Scripts_20161126/jobs/runjob91.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run91.root diff --git a/Scripts_20161126/jobs/runjob92.sh b/Scripts_20161126/jobs/runjob92.sh new file mode 100644 index 0000000..6637a2a --- /dev/null +++ b/Scripts_20161126/jobs/runjob92.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run92.root diff --git a/Scripts_20161126/jobs/runjob93.sh b/Scripts_20161126/jobs/runjob93.sh new file mode 100644 index 0000000..90310a5 --- /dev/null +++ b/Scripts_20161126/jobs/runjob93.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run93.root diff --git a/Scripts_20161126/jobs/runjob94.sh b/Scripts_20161126/jobs/runjob94.sh new file mode 100644 index 0000000..f571493 --- /dev/null +++ b/Scripts_20161126/jobs/runjob94.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run94.root diff --git a/Scripts_20161126/jobs/runjob95.sh b/Scripts_20161126/jobs/runjob95.sh new file mode 100644 index 0000000..22074d0 --- /dev/null +++ b/Scripts_20161126/jobs/runjob95.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run95.root diff --git a/Scripts_20161126/jobs/runjob96.sh b/Scripts_20161126/jobs/runjob96.sh new file mode 100644 index 0000000..368d51d --- /dev/null +++ b/Scripts_20161126/jobs/runjob96.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run96.root diff --git a/Scripts_20161126/jobs/runjob97.sh b/Scripts_20161126/jobs/runjob97.sh new file mode 100644 index 0000000..0679d11 --- /dev/null +++ b/Scripts_20161126/jobs/runjob97.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run97.root diff --git a/Scripts_20161126/jobs/runjob98.sh b/Scripts_20161126/jobs/runjob98.sh new file mode 100644 index 0000000..c600d92 --- /dev/null +++ b/Scripts_20161126/jobs/runjob98.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run98.root diff --git a/Scripts_20161126/jobs/runjob99.sh b/Scripts_20161126/jobs/runjob99.sh new file mode 100644 index 0000000..aadd9cf --- /dev/null +++ b/Scripts_20161126/jobs/runjob99.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run99.root diff --git a/Scripts_20161126/kurtfile.txt b/Scripts_20161126/kurtfile.txt new file mode 100644 index 0000000..e1a0182 --- /dev/null +++ b/Scripts_20161126/kurtfile.txt @@ -0,0 +1,99 @@ +12.6088 2.19692 1.67326 +10.5936 2.38018 0 +9.36031 0 0 +8.51336 0 0 +7.88605 0 0 +7.39682 0.0327403 0.0282967 +7.00082 0.019015 0.0178014 +6.67084 0.0677336 0.0492887 +6.39059 0.132532 0.0778678 +6.14881 0.185543 0.0941881 +5.93691 0.230748 0.116333 +5.74999 0.259906 0.132354 +5.58275 0.294419 0.178985 +5.43216 0.273889 0.172576 +5.29477 0.291302 0.196198 +5.16875 0.338277 0.237097 +5.05214 0.371356 0.257625 +4.94396 0.398266 0.272353 +4.84371 0.404928 0.282608 +4.7504 0.400853 0.281588 +4.62797 0.418023 0.295127 +4.51492 0.433194 0.293744 +4.41193 0.45263 0.297984 +4.31778 0.473938 0.3105 +4.23108 0.448532 0.312707 +4.15089 0.444737 0.33414 +40.9872 0.177376 0.106247 +36.5311 0.362872 0.184827 +33.3966 0.476606 0.267396 +31.0354 0.550806 0.336185 +29.1728 0.580573 0.351475 +27.6535 0.599529 0.375996 +26.4152 0.572624 0.403004 +25.2997 0.543937 0.408614 +24.2755 0.553085 0.418271 +23.5412 0.557157 0.405242 +22.8107 0.578596 0.441977 +22.1585 0.609428 0.472718 +21.5696 0.615329 0.485379 +21.0355 0.635862 0.553272 +20.5468 0.642079 0.669435 +20.099 0.594993 0.587887 +19.6851 0.627948 0.637284 +19.3016 0.698339 0.636656 +18.9455 0.759278 0.535535 +18.4699 0.819645 0.573537 +18.0231 0.82205 0.71056 +17.6151 0.749459 0.631632 +17.6151 0.77673 0.71031 +17.2409 0.730092 0.722078 +16.8956 0.664191 0.583641 +16.5761 0.749286 0.654247 +281.17 0.21107 0.522496 +238.032 0.306688 0.404112 +212.434 0.414679 0.422241 +194.949 0.463477 0.423841 +181.707 0.51586 0.514425 +171.379 0.525412 0.479817 +163.143 0.571003 0.533828 +155.987 0.561656 0.453631 +150.13 0.558973 0.450191 +145.288 0.558132 0.511071 +140.907 0.568061 0.523062 +136.922 0.614158 0.562477 +133.574 0.625771 0.510307 +130.481 0.656274 0.549396 +127.616 0.676734 0.534565 +124.954 0.692079 0.662722 +122.474 0.676821 0.532494 +120.362 0.661368 0.548614 +118.373 0.727317 0.641224 +116.315 0.730993 0.589354 +113.872 0.724062 0.601887 +111.453 0.749835 0.590835 +109.36 0.776931 0.680898 +107.408 0.731647 0.612379 +105.71 0.714746 0.645442 +103.993 0.786281 0.766618 +444.422 0.194624 0.625944 +377.991 0.276975 0.371539 +337.641 0.384928 0.393284 +310.049 0.431122 0.382673 +289.655 0.458871 0.445853 +273.879 0.504376 0.441458 +261.017 0.540993 0.470929 +250.406 0.560696 0.458453 +241.353 0.574206 0.46632 +233.587 0.691409 0.729076 +226.809 0.687244 0.680861 +220.824 0.711257 0.729283 +215.458 0.738949 0.729508 +210.691 0.705756 0.672587 +206.301 0.689304 0.570238 +202.283 0.718913 0.607885 +198.535 0.715745 0.60676 +195.17 0.76725 0.634546 +191.994 0.806652 0.745089 +189.171 0.784483 0.683175 +185.146 0.768122 0.668853 diff --git a/Scripts_20161126/kurtfile_int_c.txt b/Scripts_20161126/kurtfile_int_c.txt new file mode 100644 index 0000000..6a0062a --- /dev/null +++ b/Scripts_20161126/kurtfile_int_c.txt @@ -0,0 +1,9 @@ +1.99418 0.176538 0.44983 +2.99221 0.208279 0.19023 +4.99357 0.276556 0.247746 +8.00451 0.371233 0.329596 +9.96037 0.420933 0.38809 +14.9624 0.492733 0.450778 +19.9591 0.544695 0.533154 +29.9598 0.674648 0.586884 +50.0967 0.956609 0.902715 diff --git a/Scripts_20161126/kurtfile_int_p.txt b/Scripts_20161126/kurtfile_int_p.txt new file mode 100644 index 0000000..9aba0cd --- /dev/null +++ b/Scripts_20161126/kurtfile_int_p.txt @@ -0,0 +1,10 @@ +77.5122 0.137362 0.122911 +116.351 0.389314 2.07016 +193.951 0.194254 0.212723 +310.193 0.216501 0.276484 +387.817 0.16517 0.200891 +581.737 0.205252 0.230448 +776.317 0.256193 0.248418 +1164.85 0.393961 0.296236 +1948.34 0.656433 0.41751 +3130.55 0.894885 0.422589 diff --git a/Scripts_20161126/lhcbStyle.C b/Scripts_20161126/lhcbStyle.C new file mode 100644 index 0000000..da30aa4 --- /dev/null +++ b/Scripts_20161126/lhcbStyle.C @@ -0,0 +1,179 @@ +{ +//////////////////////////////////////////////////////////////////// +// PURPOSE: +// +// This macro defines a reasonable style for (black-and-white) +// "publication quality" ROOT plots. The default settings contain +// many features that are either not desirable for printing on white +// paper or impair the general readibility of plots. +// +// USAGE: +// +// Simply include the line +// gROOT->ProcessLine(".x $LHCBSTYLE/root/lhcbstyle.C"); +// at the beginning of your root macro. +// +// SOME COMMENTS: +// +// Statistics and fit boxes: +// +// "Decorative" items around the histogram are kept to a minimum. +// In particular there is no box with statistics or fit information. +// You can easily change this either by editing your private copy +// of this style file or by calls to "gStyle" in your macro. +// For example, +// gStyle->SetOptFit(1011); +// will add some fit information. +// +// Font: +// +// The font is chosen to be 62, i.e.helvetica-bold-r-normal with +// precision 2. Font is of course a matter of taste, but most people +// will probably agree that Helvetica bold gives close to optimal +// readibility in presentations. It appears to be the ROOT default, +// and since there are still some features in ROOT that simply won't +// respond to any font requests, it is the wise choice to avoid +// ugly font mixtures on the same plot... The precision of the font (2) +// is chosen in order to have a rotatable and scalable font. Be sure +// to use true-type fonts! I.e. +// Unix.*.Root.UseTTFonts: true in your .rootrc file. +// +// "Landscape histograms": +// +// The style here is designed for more or less quadratic plots. +// For very long histograms, adjustements are needed. For instance, +// for a canvas with 1x5 histograms: +// TCanvas* c1 = new TCanvas("c1", "L0 muons", 600, 800); +// c1->Divide(1,5); +// adaptions like the following will be needed: +// gStyle->SetTickLength(0.05,"x"); +// gStyle->SetTickLength(0.01,"y"); +// gStyle->SetLabelSize(0.15,"x"); +// gStyle->SetLabelSize(0.1,"y"); +// gStyle->SetStatW(0.15); +// gStyle->SetStatH(0.5); +// +//////////////////////////////////////////////////////////////////// + +gROOT->Reset(); + +cout << "executing lhcbStyle.C:" << endl; +cout << " " << endl; +cout << " " << endl; +cout << " $ $ $ $$$ $ " << endl; +cout << " $ $ $ $ $ " << endl; +cout << " $ $$$$$ $ $$$ " << endl; +cout << " $ $ $ $ $ $ " << endl; +cout << " $$$$$ $ $ $$$ $$$ " << endl; +cout << " " << endl; +cout << " LHCb ROOT style file " << endl; +cout << " " << endl; +cout << +" Problems, suggestions, contributions to Thomas.Schietinger@cern.ch" + << endl; +cout << " " << endl; + +TStyle *lhcbStyle= new TStyle("lhcbStyle","LHCb official plots style"); + +// use helvetica-bold-r-normal, precision 2 (rotatable) + Int_t lhcbFont = 22; //62; +// line thickness +Double_t lhcbWidth = 2; + +// use plain black on white colors +lhcbStyle->SetFrameBorderMode(0); +lhcbStyle->SetCanvasBorderMode(0); +lhcbStyle->SetPadBorderMode(0); +lhcbStyle->SetPadColor(0); +lhcbStyle->SetCanvasColor(0); +lhcbStyle->SetStatColor(0); +lhcbStyle->SetPalette(1); +lhcbStyle->SetTitleColor(1); + lhcbStyle->SetFillColor(0);//1 + lhcbStyle->SetFillStyle(0); + +// set the paper & margin sizes +lhcbStyle->SetPaperSize(20,26); +lhcbStyle->SetPadTopMargin(0.05); +//lhcbStyle->SetPadRightMargin(0.05); // increase for colz plots!! +lhcbStyle->SetPadRightMargin(0.08); // increase for colz plots!! +lhcbStyle->SetPadBottomMargin(0.16); +lhcbStyle->SetPadLeftMargin(0.14); + +// use large fonts +lhcbStyle->SetTextFont(lhcbFont); +lhcbStyle->SetTextSize(0.08); +lhcbStyle->SetLabelFont(lhcbFont,"x"); +lhcbStyle->SetLabelFont(lhcbFont,"y"); +lhcbStyle->SetLabelFont(lhcbFont,"z"); +lhcbStyle->SetLabelSize(0.05,"x"); +lhcbStyle->SetLabelSize(0.05,"y"); +lhcbStyle->SetLabelSize(0.05,"z"); +lhcbStyle->SetTitleFont(lhcbFont); +lhcbStyle->SetTitleFont(lhcbFont,"y"); +lhcbStyle->SetTitleFont(lhcbFont,"x"); +lhcbStyle->SetTitleFont(lhcbFont,"z"); +lhcbStyle->SetTitleSize(0.06,"x"); +lhcbStyle->SetTitleSize(0.06,"y"); +lhcbStyle->SetTitleSize(0.06,"z"); + +// use bold lines and markers +lhcbStyle->SetLineWidth(lhcbWidth); +lhcbStyle->SetFrameLineWidth(lhcbWidth); +lhcbStyle->SetHistLineWidth(lhcbWidth); +lhcbStyle->SetFuncWidth(lhcbWidth); +lhcbStyle->SetGridWidth(lhcbWidth); +lhcbStyle->SetLineStyleString(2,"[12 12]"); // postscript dashes +lhcbStyle->SetMarkerStyle(21); +lhcbStyle->SetMarkerSize(1.0); + +// label offsets +lhcbStyle->SetLabelOffset(0.015); + +// by default, do not display histogram decorations: +lhcbStyle->SetOptStat(0); +//lhcbStyle->SetOptStat(1110); // show only nent, mean, rms +lhcbStyle->SetOptTitle(0); +lhcbStyle->SetOptFit(0); +//lhcbStyle->SetOptFit(1011); // show probability, parameters and errors + +// look of the statistics box: +lhcbStyle->SetStatBorderSize(1); +lhcbStyle->SetStatFont(lhcbFont); +lhcbStyle->SetStatFontSize(0.05); +lhcbStyle->SetStatX(0.9); +lhcbStyle->SetStatY(0.9); +lhcbStyle->SetStatW(0.25); +lhcbStyle->SetStatH(0.15); + +// put tick marks on top and RHS of plots +lhcbStyle->SetPadTickX(1); +lhcbStyle->SetPadTickY(1); + +// histogram divisions: only 5 in x to avoid label overlaps +lhcbStyle->SetNdivisions(505,"x"); +lhcbStyle->SetNdivisions(510,"y"); + +gROOT->SetStyle("lhcbStyle"); +gROOT->ForceStyle(); + +TPaveText *lhcbName = new TPaveText(0.65,0.8,0.9,0.9,"BRNDC"); +lhcbName->SetFillColor(0); +lhcbName->SetTextAlign(12); +lhcbName->SetBorderSize(0); +lhcbName->AddText("LHCb"); + +TText *lhcbLabel = new TText(); +lhcbLabel->SetTextFont(lhcbFont); +lhcbLabel->SetTextColor(1); +lhcbLabel->SetTextSize(0.04); +lhcbLabel->SetTextAlign(12); + +TLatex *lhcbLatex = new TLatex(); +lhcbLatex->SetTextFont(lhcbFont); +lhcbLatex->SetTextColor(1); +lhcbLatex->SetTextSize(0.04); +lhcbLatex->SetTextAlign(12); +lhcbStyle->SetLegendFillColor(kWhite); + +} diff --git a/Scripts_20161126/noisefile.txt b/Scripts_20161126/noisefile.txt new file mode 100644 index 0000000..e83c6f5 --- /dev/null +++ b/Scripts_20161126/noisefile.txt @@ -0,0 +1,99 @@ +12.6088 -0.0381319 9.13905 +10.5936 0.0229805 9.07751 +9.36031 -0.163127 9.16924 +8.51336 -0.073277 9.09055 +7.88605 0.0105527 8.74277 +7.39682 -0.0396685 8.04183 +7.00082 -0.0121889 7.53254 +6.67084 0.0432702 8.82198 +6.39059 -0.0873416 8.52387 +6.14881 0.00527392 7.76973 +5.93691 0.0202651 6.84699 +5.74999 0.00435701 6.20527 +5.58275 -0.0321429 7.36123 +5.43216 -0.0762316 7.67736 +5.29477 -0.0969601 8.35033 +5.16875 0.129156 8.50019 +5.05214 0.0920098 8.45706 +4.94396 -0.0197884 8.30331 +4.84371 0.0341125 6.56841 +4.7504 -0.0783546 7.27665 +4.62797 -0.0129993 6.57172 +4.51492 0.0248155 6.06966 +4.41193 0.144623 6.51444 +4.31778 0.0166886 6.14929 +4.23108 0.0763828 8.05132 +4.15089 0.124674 6.23333 +40.9872 0.0907693 9.0404 +36.5311 -0.114624 8.03533 +33.3966 0.0739249 7.77771 +31.0354 -0.0797303 8.4556 +29.1728 0.0957379 6.00886 +27.6535 0.0169903 6.71134 +26.4152 -0.00831133 6.83634 +25.2997 0.00625121 7.04404 +24.2755 -0.0709542 7.69864 +23.5412 -0.106325 5.93381 +22.8107 -0.0289266 6.1212 +22.1585 -0.021199 8.16651 +21.5696 -0.0615789 8.03329 +21.0355 0.00902604 8.22651 +20.5468 0.000964529 8.52766 +20.099 0.00978403 8.69545 +19.6851 -0.125431 8.35675 +19.3016 0.111513 8.65042 +18.9455 0.0479698 8.72494 +18.4699 0.113175 8.68838 +18.0231 -0.0610166 9.1184 +17.6151 -0.0228421 8.43948 +17.6151 -0.00349188 8.85769 +17.2409 0.0209996 8.55378 +16.8956 -0.0725304 8.09427 +16.5761 0.0894327 7.664 +281.17 0.0951588 8.32344 +238.032 0.0592451 7.74989 +212.434 -0.0351296 6.66716 +194.949 0.0984721 7.22182 +181.707 -0.0721369 7.75374 +171.379 0.0129299 8.39957 +163.143 0.0364104 7.46192 +155.987 0.00417705 7.32121 +150.13 -0.0155063 7.10115 +145.288 0.0580136 7.21786 +140.907 -0.012564 6.70641 +136.922 0.0161248 6.88752 +133.574 0.0241872 6.01433 +130.481 -0.00668754 5.99136 +127.616 -0.028617 6.38002 +124.954 -0.0114989 6.50708 +122.474 0.0126697 7.88635 +120.362 -0.0283078 7.28673 +118.373 -0.0396834 6.18225 +116.315 -0.0103058 7.45979 +113.872 -0.0716595 5.92234 +111.453 0.0119976 6.31534 +109.36 0.0338752 5.91695 +107.408 -0.140158 6.10205 +105.71 -0.0362593 6.62066 +103.993 0.0717063 7.67349 +444.422 -0.00489616 6.68537 +377.991 0.0243297 6.38303 +337.641 0.106515 7.24391 +310.049 0.0288923 6.10859 +289.655 -0.105939 6.30075 +273.879 -0.0502152 5.92397 +261.017 0.00964585 6.12448 +250.406 -0.0951886 6.3359 +241.353 0.0920268 5.89285 +233.587 -0.00596982 8.13928 +226.809 0.069777 8.64053 +220.824 -0.0615429 8.78081 +215.458 0.0121637 8.50478 +210.691 -0.037111 8.30072 +206.301 0.00137241 6.90519 +202.283 -0.0266904 6.40269 +198.535 -0.0889237 5.85698 +195.17 -0.13955 6.19566 +191.994 0.000563917 6.85085 +189.171 0.0417185 6.79554 +185.146 0.052973 5.99332 diff --git a/Scripts_20161126/noisefile_int_c.txt b/Scripts_20161126/noisefile_int_c.txt new file mode 100644 index 0000000..d96666a --- /dev/null +++ b/Scripts_20161126/noisefile_int_c.txt @@ -0,0 +1,9 @@ +1.99418 0.0462997 6.15185 +2.99221 -0.0255641 7.16546 +4.99357 0.106896 5.87677 +8.00451 -0.0610723 5.89895 +9.96037 -0.139268 8.36664 +14.9624 -0.0372841 7.96148 +19.9591 -0.0388248 7.85487 +29.9598 0.0779242 6.11953 +50.0967 0.0319548 5.99413 diff --git a/Scripts_20161126/noisefile_int_p.txt b/Scripts_20161126/noisefile_int_p.txt new file mode 100644 index 0000000..1db0894 --- /dev/null +++ b/Scripts_20161126/noisefile_int_p.txt @@ -0,0 +1,10 @@ +77.5122 0.182809 7.3966 +116.351 0.0203506 7.07927 +193.951 0.00316999 6.10397 +310.193 0.0473352 8.59286 +387.817 -0.0250183 6.77069 +581.737 -0.019255 5.82432 +776.317 0.0554905 6.51053 +1164.85 0.112585 5.98225 +1948.34 0.165957 7.77653 +3130.55 -0.0508745 6.49591 diff --git a/Scripts_20161126/oxygenAIR_75_500MeV.txt b/Scripts_20161126/oxygenAIR_75_500MeV.txt new file mode 100644 index 0000000..a3803f5 --- /dev/null +++ b/Scripts_20161126/oxygenAIR_75_500MeV.txt @@ -0,0 +1,19 @@ +7.500000E+01 5.145697E+02 +8.750000E+01 4.576613E+02 +1.000000E+02 4.141943E+02 +1.125000E+02 3.798759E+02 +1.250000E+02 3.520777E+02 +1.375000E+02 3.290902E+02 +1.500000E+02 3.097645E+02 +1.625000E+02 2.932862E+02 +1.750000E+02 2.790686E+02 +1.875000E+02 2.666788E+02 +2.000000E+02 2.557853E+02 +2.125000E+02 2.461362E+02 +2.250000E+02 2.375294E+02 +2.375000E+02 2.298081E+02 +2.500000E+02 2.228416E+02 +3.125000E+02 1.962794E+02 +3.750000E+02 1.785680E+02 +4.375000E+02 1.659955E+02 +5.000000E+02 1.566922E+02 diff --git a/Scripts_20161126/oxygenPS_75_500MeV.txt b/Scripts_20161126/oxygenPS_75_500MeV.txt new file mode 100644 index 0000000..c24daa6 --- /dev/null +++ b/Scripts_20161126/oxygenPS_75_500MeV.txt @@ -0,0 +1,20 @@ +7.500000E+01 5.687419E+02 +8.750000E+01 5.055662E+02 +1.000000E+02 4.573440E+02 +1.125000E+02 4.192925E+02 +1.250000E+02 3.884825E+02 +1.375000E+02 3.630181E+02 +1.500000E+02 3.416134E+02 +1.625000E+02 3.233670E+02 +1.750000E+02 3.076301E+02 +1.875000E+02 2.939167E+02 +2.000000E+02 2.818631E+02 +2.125000E+02 2.711874E+02 +2.250000E+02 2.616661E+02 +2.375000E+02 2.531251E+02 +2.500000E+02 2.454212E+02 +3.125000E+02 2.160512E+02 +3.750000E+02 1.964730E+02 +4.375000E+02 1.825781E+02 +5.000000E+02 1.722897E+02 + diff --git a/Scripts_20161126/pastar_protonsaair.txt b/Scripts_20161126/pastar_protonsaair.txt new file mode 100644 index 0000000..a2a3661 --- /dev/null +++ b/Scripts_20161126/pastar_protonsaair.txt @@ -0,0 +1,163 @@ + +Kinetic Electron. Projected +Energy Stp. Pow. Range +MeV MeV cm2/g g/cm2 + +1.000E-03 1.197E+02 3.257E-06 +1.500E-03 1.467E+02 4.925E-06 +2.000E-03 1.693E+02 6.577E-06 +2.500E-03 1.893E+02 8.189E-06 +3.000E-03 2.074E+02 9.759E-06 +4.000E-03 2.395E+02 1.277E-05 +5.000E-03 2.678E+02 1.563E-05 +6.000E-03 2.933E+02 1.834E-05 +7.000E-03 3.168E+02 2.094E-05 +8.000E-03 3.387E+02 2.342E-05 +9.000E-03 3.592E+02 2.580E-05 +1.000E-02 3.787E+02 2.810E-05 +1.250E-02 4.170E+02 3.356E-05 +1.500E-02 4.504E+02 3.869E-05 +1.750E-02 4.801E+02 4.356E-05 +2.000E-02 5.067E+02 4.822E-05 +2.250E-02 5.307E+02 5.269E-05 +2.500E-02 5.526E+02 5.701E-05 +2.750E-02 5.724E+02 6.120E-05 +3.000E-02 5.905E+02 6.527E-05 +3.500E-02 6.221E+02 7.313E-05 +4.000E-02 6.483E+02 8.069E-05 +4.500E-02 6.700E+02 8.800E-05 +5.000E-02 6.877E+02 9.513E-05 +5.500E-02 7.020E+02 1.021E-04 +6.000E-02 7.132E+02 1.090E-04 +6.500E-02 7.217E+02 1.158E-04 +7.000E-02 7.278E+02 1.226E-04 +7.500E-02 7.319E+02 1.293E-04 +8.000E-02 7.341E+02 1.360E-04 +8.500E-02 7.348E+02 1.426E-04 +9.000E-02 7.340E+02 1.493E-04 +9.500E-02 7.320E+02 1.561E-04 +1.000E-01 7.290E+02 1.628E-04 +1.250E-01 7.029E+02 1.972E-04 +1.500E-01 6.672E+02 2.333E-04 +1.750E-01 6.291E+02 2.715E-04 +2.000E-01 5.922E+02 3.121E-04 +2.250E-01 5.583E+02 3.553E-04 +2.500E-01 5.278E+02 4.010E-04 +2.750E-01 5.006E+02 4.493E-04 +3.000E-01 4.763E+02 5.002E-04 +3.500E-01 4.349E+02 6.095E-04 +4.000E-01 4.012E+02 7.287E-04 +4.500E-01 3.733E+02 8.573E-04 +5.000E-01 3.498E+02 9.951E-04 +5.500E-01 3.297E+02 1.142E-03 +6.000E-01 3.121E+02 1.297E-03 +6.500E-01 2.964E+02 1.461E-03 +7.000E-01 2.824E+02 1.633E-03 +7.500E-01 2.699E+02 1.813E-03 +8.000E-01 2.587E+02 2.002E-03 +8.500E-01 2.485E+02 2.198E-03 +9.000E-01 2.391E+02 2.402E-03 +9.500E-01 2.306E+02 2.614E-03 +1.000E+00 2.227E+02 2.834E-03 +1.250E+00 1.911E+02 4.046E-03 +1.500E+00 1.682E+02 5.438E-03 +1.750E+00 1.508E+02 7.006E-03 +2.000E+00 1.370E+02 8.742E-03 +2.250E+00 1.258E+02 1.064E-02 +2.500E+00 1.164E+02 1.270E-02 +2.750E+00 1.085E+02 1.492E-02 +3.000E+00 1.017E+02 1.730E-02 +3.500E+00 9.063E+01 2.250E-02 +4.000E+00 8.192E+01 2.829E-02 +4.500E+00 7.488E+01 3.466E-02 +5.000E+00 6.905E+01 4.161E-02 +5.500E+00 6.414E+01 4.910E-02 +6.000E+00 5.994E+01 5.715E-02 +6.500E+00 5.630E+01 6.574E-02 +7.000E+00 5.312E+01 7.486E-02 +7.500E+00 5.031E+01 8.452E-02 +8.000E+00 4.781E+01 9.469E-02 +8.500E+00 4.557E+01 1.054E-01 +9.000E+00 4.355E+01 1.166E-01 +9.500E+00 4.171E+01 1.283E-01 +1.000E+01 4.004E+01 1.405E-01 +1.250E+01 3.349E+01 2.089E-01 +1.500E+01 2.892E+01 2.893E-01 +1.750E+01 2.554E+01 3.813E-01 +2.000E+01 2.293E+01 4.845E-01 +2.500E+01 1.914E+01 7.238E-01 +2.750E+01 1.773E+01 8.593E-01 +3.000E+01 1.652E+01 1.005E+00 +3.500E+01 1.460E+01 1.327E+00 +4.000E+01 1.312E+01 1.688E+00 +4.500E+01 1.194E+01 2.088E+00 +4.812E+01 1.132E+01 2.356E+00 +5.000E+01 1.098E+01 2.524E+00 +5.500E+01 1.019E+01 2.996E+00 +5.982E+01 9.536E+00 3.485E+00 +6.000E+01 9.514E+00 3.504E+00 +6.500E+01 8.938E+00 4.045E+00 +7.000E+01 8.440E+00 4.620E+00 +7.003E+01 8.437E+00 4.624E+00 +7.500E+01 8.003E+00 5.228E+00 +7.917E+01 7.679E+00 5.759E+00 +8.000E+01 7.618E+00 5.867E+00 +8.500E+01 7.275E+00 6.538E+00 +8.753E+01 7.115E+00 6.889E+00 +9.000E+01 6.968E+00 7.239E+00 +9.500E+01 6.691E+00 7.970E+00 +9.530E+01 6.675E+00 8.015E+00 +1.000E+02 6.441E+00 8.731E+00 +1.026E+02 6.319E+00 9.139E+00 +1.096E+02 6.022E+00 1.026E+01 +1.162E+02 5.769E+00 1.139E+01 +1.226E+02 5.551E+00 1.251E+01 +1.250E+02 5.474E+00 1.295E+01 +1.287E+02 5.360E+00 1.364E+01 +1.346E+02 5.192E+00 1.476E+01 +1.404E+02 5.041E+00 1.589E+01 +1.460E+02 4.906E+00 1.701E+01 +1.500E+02 4.815E+00 1.783E+01 +1.515E+02 4.782E+00 1.814E+01 +1.569E+02 4.669E+00 1.928E+01 +1.622E+02 4.564E+00 2.043E+01 +1.675E+02 4.467E+00 2.159E+01 +1.726E+02 4.377E+00 2.276E+01 +1.750E+02 4.337E+00 2.330E+01 +1.777E+02 4.293E+00 2.393E+01 +1.848E+02 4.184E+00 2.560E+01 +1.919E+02 4.082E+00 2.731E+01 +1.988E+02 3.990E+00 2.901E+01 +2.000E+02 3.975E+00 2.933E+01 +2.055E+02 3.906E+00 3.071E+01 +2.121E+02 3.829E+00 3.241E+01 +2.185E+02 3.758E+00 3.411E+01 +2.250E+02 3.690E+00 3.585E+01 +2.500E+02 3.462E+00 4.284E+01 +2.750E+02 3.274E+00 5.026E+01 +3.000E+02 3.117E+00 5.809E+01 +3.500E+02 2.870E+00 7.481E+01 +4.000E+02 2.686E+00 9.282E+01 +4.500E+02 2.544E+00 1.119E+02 +5.000E+02 2.431E+00 1.320E+02 +5.500E+02 2.340E+00 1.530E+02 +6.000E+02 2.265E+00 1.747E+02 +6.500E+02 2.203E+00 1.971E+02 +7.000E+02 2.151E+00 2.200E+02 +7.500E+02 2.107E+00 2.435E+02 +8.000E+02 2.069E+00 2.674E+02 +8.500E+02 2.036E+00 2.918E+02 +9.000E+02 2.008E+00 3.165E+02 +9.500E+02 1.984E+00 3.415E+02 +1.000E+03 1.962E+00 3.668E+02 +1.500E+03 1.850E+00 6.306E+02 +2.000E+03 1.820E+00 9.035E+02 +2.500E+03 1.818E+00 1.178E+03 +3.000E+03 1.828E+00 1.453E+03 +4.000E+03 1.861E+00 1.995E+03 +5.000E+03 1.898E+00 2.527E+03 +6.000E+03 1.933E+00 3.049E+03 +7.000E+03 1.967E+00 3.561E+03 +8.000E+03 1.998E+00 4.066E+03 +9.000E+03 2.026E+00 4.563E+03 +1.000E+04 2.052E+00 5.053E+03 diff --git a/Scripts_20161126/plot b/Scripts_20161126/plot new file mode 100755 index 0000000..064ec60 Binary files /dev/null and b/Scripts_20161126/plot differ diff --git a/Scripts_20161126/plot.c b/Scripts_20161126/plot.c new file mode 100644 index 0000000..28e8cfa --- /dev/null +++ b/Scripts_20161126/plot.c @@ -0,0 +1,375 @@ +#include +#include +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + + +#include +#include +#include + +#include + + + +using namespace std; + + +int main(int argc, char **argv) +{ + + // Working directories + const char *dirname = "/work/leverington/beamprofilemonitor/hitdata/HIT_26-11-2016/with_timestamp/"; + + + const char *listfile = NULL; + int ion = atoi(argv[1]); + if (ion==1) {listfile = "energylist_p";} + else if (ion==2) {listfile = "energylist_he";} + else if (ion==3) {listfile = "energylist_c";} + else if (ion==4) {listfile = "energylist_o";} + else {cerr<< argv[1] << " not allowed" << endl; + cerr << "specify (1, 2, 3, or 4) for p, He4, C12, or O16" << endl; + return 1; + } + ifstream in; + ofstream ic1energyfile,ic2energyfile, beamenergyfile,beamenergyfile_iccorr, noisefile, focusfile,focusHITfile, skewfile, kurtfile,focusFitfile,chi2Fitfile; + ofstream beamenergyfile_beta, peakFitfile; + TFile *f; + TTree *tree; + Int_t nfiles = 0; + Int_t EList = 0; + Double_t Energy = 0.; + Double_t F1 = 0.; + Double_t Intensity = 0.; + Double_t SP = 0.; + char Filename[50]; + Int_t id = 0; + Double_t signalmean = 0.; + Double_t signalmeanerror = 0.; + Double_t signalmean_corr = 0.; + Double_t signalmeanerror_corr = 0.; + Double_t signalmean_offsetcorr = 0.; + Double_t signalmeanerror_offsetcorr = 0.; + + Double_t ic1mean = 0.; + Double_t ic1meanerror = 0.; + Double_t ic2mean = 0.; + Double_t ic2meanerror = 0.; + + Double_t sp_air = 0.; + Double_t sp_ps = 0.; + Double_t sp2_air = 0.; + Double_t sp2_ps = 0.; + + Double_t ic_beam_ratio = 0.; + Double_t ic_beam_ratioerror = 0.; + + Double_t totalcurrent = 0.; + Double_t totaltime = 0.; + Double_t intcorr = 0.; + Double_t icbpmcorrelation = 0.; + + Double_t noisemean = 0.; + Double_t noiseRMS = 0.; + Double_t focusmean = 0.; + Double_t focusRMS = 0.; + Double_t skewmean = 0.; + Double_t skewRMS = 0.; + Double_t kurtmean = 0.; + Double_t kurtRMS = 0.; + Double_t focusFitmean = 0.; + Double_t focusFitRMS = 0.; + Double_t chi2Fitmean = 0.; + Double_t chi2FitRMS = 0.; + Double_t peakFitmean = 0.; + Double_t peakFitRMS = 0.; + Double_t beta = 0.; + Double_t gamma = 0.; + Double_t zsqr = 0.; + cout << "Trying to open"<< Form(": %s%s",dirname, listfile)<<"... " << endl; + + in.open(Form("%s%s.prn",dirname, listfile)); + + ic1energyfile.open(Form("%s_ic1.txt",listfile )); + ic2energyfile.open(Form("%s_ic1ratio.txt",listfile )); + + beamenergyfile.open(Form("%s_bpm1.txt",listfile )); + beamenergyfile_beta.open(Form("%s_bpmbeta1.txt",listfile )); + + beamenergyfile_iccorr.open(Form("%s_bpm1ratio.txt",listfile )); + + noisefile.open(Form("%s_noise.txt",listfile )); + focusfile.open(Form("%s_focus1.txt",listfile )); + focusHITfile.open(Form("%s_focusHIT.txt",listfile )); + skewfile.open(Form("%s_skew1.txt",listfile )); + kurtfile.open(Form("%s_kurt1.txt",listfile )); + focusFitfile.open(Form("%s_focusfit.txt",listfile )); + chi2Fitfile.open(Form("%s_chi2fit.txt",listfile )); + peakFitfile.open(Form("%s_peakfit.txt",listfile )); + + + TF1 * f_sp_air = new TF1("f_sp_air","[0]*pow(x,[1])+[2]", 50, 250); //stopping power of protons in Air [MeV cm2 /g] + f_sp_air->SetParameters(303.746, -0.873697,1.01335); //protons between 50 and 300 MeV + + TF1 * f_sp_ps = new TF1("f_sp_ps","[0]*pow(x,[1])+[2]", 50, 250); //stopping power of protons in polystyrene [MeV cm2 /g] + f_sp_ps->SetParameters(361.936, -0.892255, 1.19133); //protons between 50 and 220 MeV + + TF1 * f_h2sp_air = new TF1("f_h2sp_air","[0]*pow(x,[1])+[2]", 50, 250); //stopping power of helium in air [MeV cm2 /g] + f_h2sp_air->SetParameters(1236.51, -0.880225, 4.17041); //helium between 50 and 300 MeV + + TF1 * f_h2sp_ps = new TF1("f_h2sp_ps","[0]*pow(x,[1])+[2]", 50, 250); //stopping power of helium in polystyrene [MeV cm2 /g] + f_h2sp_ps->SetParameters(1387.08, -0.882686,4.60833); //heelium between 50 and 300 MeV + + TF1 * f_c12sp_air = new TF1("f_c12sp_air","[0]*pow(x,[1])+[2]", 80, 480); //stopping power of carbon in air [MeV cm2 /g] + f_c12sp_air->SetParameters(13291.2, -0.925464,45.3876); //carbon between 80 and 480 MeV + + TF1 * f_c12sp_ps = new TF1("f_c12sp_ps","[0]*pow(x,[1])+[2]", 80, 480); //stopping power of carbon in polystyrene [MeV cm2 /g] + f_c12sp_ps->SetParameters(14538.9, -0.922423,49.2859); //carbon between 80 and 480 MeV + + TF1 * f_o16sp_air = new TF1("f_o16sp_air","[0]*pow(x,[1])+[2]", 80, 480); //stopping power of oxygen in air [MeV cm2 /g] + f_o16sp_air->SetParameters(24624.9, -0.925425,80.6828); //oxygen between 80 and 480 MeV + + TF1 * f_o16sp_ps = new TF1("f_o16sp_ps","[0]*pow(x,[1])+[2]", 80,480); //stopping power of oxygen in polystyrene [MeV cm2 /g] + f_o16sp_ps->SetParameters(26465.6, -0.928309,88.6728); //oxygen between 80 and 480 MeV + + ///// ic1/SP intensity correction factor = 19.8E6+/-0.1E6 particles/s per nA/(Mevcm2/g) + + if (!in) { + cout << Form("%s%s",dirname, listfile) << " not found." << endl; + return 0;} + cout << Form("%s%s",dirname, listfile) << " opened." << endl; + + in >> EList >> Energy >> F1 >> Intensity >> SP >> Filename >> id;//prime the while loop + while (!in.eof()) { + TFile * file = TFile::Open(Form("%s%s",dirname,Filename)); + TFile * outfile = TFile::Open(Form("plots/%s_plots",Filename),"RECREATE"); + cout << Filename << endl; + // TH1D* signalDist = 0; + // file->GetObject("signalDist",signalDist); + // signalmean = signalDist->GetMean(); + // signalmeanerror = signalDist->GetMeanError(); + // cout << signalmean << " " << signalmeanerror << endl; + // delete signalDist; + + // TCanvas *c1 = new TCanvas("c1"); + TTree *data; + file->GetObject("newdata", data); + TH2D *h_beamSignal_channel = (TH2D*)file->Get("th2d_beamSignal_channel"); + TH2D *h_bkg_channel = (TH2D*)file->Get("th2d_bkg_channel"); + + noisemean = h_bkg_channel->GetMean(2); + noiseRMS = h_bkg_channel->GetRMS(2); + + + TVectorD *v = (TVectorD*)file->Get("icinfo"); + // v->Print(); + totalcurrent = (*v)[0]; + totaltime = (*v)[1]; + // data->Print(); + TH1D* h_beamSignal_1 = new TH1D("h_beamSignal_1","h_beamSignal_1",510,-500,50000); + TH1D* h_ic1_1 = new TH1D("h_ic1_1","h_ic1_1",510,-50,500); + TH1D* h_ic2_1 = new TH1D("h_ic2_1","h_ic2_1",510,-50,500); + + + + TH1D* h_ic_beam_ratio = new TH1D("h_ic_beam_ratio","h_ic_beam_ratio",500,0,500.); + TH2D* h_beamSignal_v_ic = new TH2D("h_beamSignal_v_ic","h_beamSignal_v_ic",510,-50,500,510,-500,50000); + + TH1D* h_beamFocusX_1 = new TH1D("h_beamFocusX_1","h_beamFocusX_1",200,0,50.); + TH1D* h_beamSkewX_1 = new TH1D("h_beamSkewX_1","h_beamSkewX_1",200,-10,10.); + TH1D* h_beamKurtX_1 = new TH1D("h_beamKurtX_1","h_beamKurtX_1",200,-10,10.); + TH1D* h_beamFocusX_fit = new TH1D("h_beamFocusX_fit","h_beamFocusX_fit",200,0,50.); + TH1D* h_beamChi2_fit = new TH1D("h_beamChi2_fit","h_beamChi2_fit",200,0,50.); + TH1D* h_beamPeakX_fit = new TH1D("h_beamPeakX_fit","h_beamPeakX_fit",1000,0,8000.); + + + + + if (id>=0&&id<=26){ + //protons + sp_air = f_sp_air->Eval(Energy)*(Intensity/1.0E6); + sp_ps = f_sp_ps->Eval(Energy)*(Intensity/1.0E6); + sp2_air = f_sp_air->Eval(Energy); + sp2_ps = f_sp_ps->Eval(Energy); + gamma = Energy/938.272 +1.; // gamma = E_u/M_u +1 + beta = sqrt(1. - 1./(gamma*gamma)); + zsqr = 1.; + } + else if (id>=27&&id<=52){ + //helium + sp_air = f_h2sp_air->Eval(Energy)*(Intensity/1.0E6); + sp_ps = f_h2sp_ps->Eval(Energy)*(Intensity/1.0E6); + sp2_air = f_h2sp_air->Eval(Energy); + sp2_ps = f_h2sp_ps->Eval(Energy); + gamma = Energy/932.1055 +1.;// gamma = E_u/M_u +1 + beta = sqrt(1. - 1./(gamma*gamma)); + zsqr = 4.; + + } + else if (id>=53&&id<=78){ + //carbon + sp_air = f_c12sp_air->Eval(Energy)*(Intensity/1.0E6); + sp_ps = f_c12sp_ps->Eval(Energy)*(Intensity/1.0E6); + sp2_air = f_c12sp_air->Eval(Energy); + sp2_ps = f_c12sp_ps->Eval(Energy); + gamma = Energy/932.3539 +1.;// gamma = E_u/M_u +1 + beta = sqrt(1. - 1./(gamma*gamma)); + zsqr = 36.; + + } + else if (id>=79&&id<=99){ + //oxygen + sp_air = f_o16sp_air->Eval(Energy)*(Intensity/1.0E6); + sp_ps = f_o16sp_ps->Eval(Energy)*(Intensity/1.0E6); + sp2_air = f_o16sp_air->Eval(Energy); + sp2_ps = f_o16sp_ps->Eval(Energy); + gamma = Energy/931.4418 +1.;// gamma = E_u/M_u +1 + beta = sqrt(1. - 1./(gamma*gamma)); + zsqr = 64.; + + } + else { + sp_air = -1.; + sp_ps = -1.; + sp2_air = -1.; + sp2_ps = -1.; + gamma = 0.; + beta = 0.; + zsqr = -1.; + + } + + + // cout << Form("beamPeakX_fit*sqrt(2)*%F/2.3548",F1) << endl; + // data->Project("h_beamSignal_1","beamSignal_1","beamon==1&&beamSignal_1>50"); + // data->Project("h_beamSignal_1", Form("beamPeakX_fit*sqrt(2)*%F/2.3548",F1) ,"beamon==1&&ic1_1>0.005&&beamChi2_fit<200&&beamPeakX_fit>20"); + data->Project("h_beamSignal_1", "beamPeakX_fit*sqrt(2)*beamFocusX_fit/2.3548" ,"beamon==1&&ic1_1>0.001&&beamChi2_fit<200&&beamPeakX_fit>20"); + + data->Project("h_beamFocusX_1","beamFocusX_1","beamon==1&&ic1_1>0.005&&beamSignal_1>100"); + data->Project("h_beamSkewX_1","beamSkewX_1","beamon==1&&ic1_1>0.005&&beamSignal_1>100"); + data->Project("h_beamKurtX_1","beamKurtX_1","beamon==1&&ic1_1>0.005&&beamSignal_1>100"); + data->Project("h_beamFocusX_fit","beamFocusX_fit","beamon==1&&ic1_1>0.005&&beamChi2_fit<200&&beamPeakX_fit>20"); + data->Project("h_beamChi2_fit","beamChi2_fit","beamon==1&&ic1_1>0.005&&beamChi2_fit<200&&beamPeakX_fit>20"); + data->Project("h_beamPeakX_fit","beamPeakX_fit","beamon==1&&ic1_1>0.005&&beamChi2_fit<200&&beamPeakX_fit>20"); + + focusmean = h_beamFocusX_1->GetMean(); + focusRMS = h_beamFocusX_1->GetRMS(); + skewmean = h_beamSkewX_1->GetMean(); + skewRMS = h_beamSkewX_1->GetMeanError(); + kurtmean = h_beamKurtX_1->GetMean(); + kurtRMS = h_beamKurtX_1->GetMeanError(); + focusFitmean = h_beamFocusX_fit->GetMean(); + focusFitRMS = h_beamFocusX_fit->GetRMS(); + chi2Fitmean = h_beamChi2_fit->GetMean(); + chi2FitRMS = h_beamChi2_fit->GetRMS(); + peakFitmean = h_beamPeakX_fit->GetMean(); + peakFitRMS = h_beamPeakX_fit->GetRMS(); + + data->Project("h_ic1_1","ic1_1","ic1_1>0.01"); + data->Project("h_ic2_1","ic2_1","ic2_1>0.01"); + + + + + data->Project("h_beamSignal_v_ic","(beamPeakX_fit*sqrt(2)*beamFocusX_fit/2.3548):ic1_1","beamon==1&&ic1_1>0.005&&beamChi2_fit<200&&beamPeakX_fit>20"); + icbpmcorrelation = h_beamSignal_v_ic->GetCorrelationFactor(); + + data->Project("h_ic_beam_ratio","(beamPeakX_fit*sqrt(2)*beamFocusX_fit/2.3548)/ic1_1","beamon==1&&ic1_1>0.005&&beamChi2_fit<200&&beamPeakX_fit>20"); + + signalmean = h_beamSignal_1->GetMean(); + signalmeanerror = h_beamSignal_1->GetMeanError(); + + + ic1mean = h_ic1_1->GetMean(); + ic1meanerror = h_ic1_1->GetMeanError(); + ic2mean = h_ic2_1->GetMean(); + ic2meanerror = h_ic2_1->GetMeanError(); + + ic_beam_ratio=h_ic_beam_ratio->GetMean(); + ic_beam_ratioerror=h_ic_beam_ratio->GetRMS(); + // intcorr = (Intensity /19.8E6) / (totalcurrent/sp2_air/totaltime); + intcorr = (Intensity / 19.8E6) / (ic1mean/sp2_air)/ 3.11; + + + + cout << id << " " <Draw(""); + // c1->SaveAs(Form("figs/h_beamsignal_%i.pdf",nfiles)); + // c1->Destructor(); + + // f->Close(); + outfile->Write(); + outfile->Close(); + file->Close(); + in >> EList >> Energy >> F1 >> Intensity >> SP >> Filename >> id; + // cout << EList << Energy << F1 << Intensity << SP << Filename << id << endl; + nfiles++; + + } + ic1energyfile.close(); + ic2energyfile.close(); + + beamenergyfile.close(); + beamenergyfile_iccorr.close(); + beamenergyfile_beta.close(); + noisefile.close(); + focusfile.close(); + focusHITfile.close(); + skewfile.close(); + kurtfile.close(); + in.close(); + focusFitfile.close(); + chi2Fitfile.close(); + return 0; +} diff --git a/Scripts_20161126/plotdata_intensity_carbon b/Scripts_20161126/plotdata_intensity_carbon new file mode 100755 index 0000000..f20fab1 Binary files /dev/null and b/Scripts_20161126/plotdata_intensity_carbon differ diff --git a/Scripts_20161126/plotdata_intensity_carbon.c b/Scripts_20161126/plotdata_intensity_carbon.c new file mode 100644 index 0000000..ee60a77 --- /dev/null +++ b/Scripts_20161126/plotdata_intensity_carbon.c @@ -0,0 +1,337 @@ +#include +#include +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + + +#include +#include +#include + +#include + + + +using namespace std; + + +int main(int argc, char **argv) +{ + + // Working directories + const char *dirname = "/work/leverington/beamprofilemonitor/hitdata/HIT_26-11-2016/with_timestamp/"; + const char *listfile = "intensitylist_carbon.prn"; + ifstream in; + ofstream ic1energyfile,ic2energyfile, beamenergyfile,beamenergyfile_iccorr, noisefile, focusfile,focusHITfile, skewfile, kurtfile,focusFitfile,chi2Fitfile; + + TFile *f; + TTree *tree; + Int_t nfiles = 0; + Int_t EList = 0; + Double_t Energy = 0.; + Double_t F1 = 0.; + Double_t Intensity = 0.; + Double_t SP = 0.; + char Filename[50]; + Int_t id = 0; + Double_t signalmean = 0.; + Double_t signalmeanerror = 0.; + Double_t signalmean_corr = 0.; + Double_t signalmeanerror_corr = 0.; + Double_t signalmean_offsetcorr = 0.; + Double_t signalmeanerror_offsetcorr = 0.; + + Double_t ic1mean = 0.; + Double_t ic1meanerror = 0.; + Double_t ic2mean = 0.; + Double_t ic2meanerror = 0.; + + Double_t sp_air = 0.; + Double_t sp_ps = 0.; + Double_t sp2_air = 0.; + Double_t sp2_ps = 0.; + + Double_t ic_beam_ratio = 0.; + Double_t ic_beam_ratioerror = 0.; + + Double_t totalcurrent = 0.; + Double_t totaltime = 0.; + Double_t intcorr = 0.; + Double_t icbpmcorrelation = 0.; + + Double_t noisemean = 0.; + Double_t noiseRMS = 0.; + Double_t focusmean = 0.; + Double_t focusRMS = 0.; + Double_t skewmean = 0.; + Double_t skewRMS = 0.; + Double_t kurtmean = 0.; + Double_t kurtRMS = 0.; + Double_t focusFitmean = 0.; + Double_t focusFitRMS = 0.; + Double_t chi2Fitmean = 0.; + Double_t chi2FitRMS = 0.; + + cout << "Trying to open"<< Form(": %s%s",dirname, listfile)<<"... " << endl; + + in.open(Form("%s%s",dirname, listfile)); + ic1energyfile.open("ic1energyfile_int_c.txt"); + ic2energyfile.open("ic2energyfile_int_c.txt"); + + beamenergyfile.open("beamenergyfile_int_c.txt"); + beamenergyfile_iccorr.open("beamenergyfile_iccorr_int_c.txt"); + + noisefile.open("noisefile_int_c.txt"); + focusfile.open("focusfile_int_c.txt"); + focusHITfile.open("focusHITfile_int_c.txt"); + skewfile.open("skewfile_int_c.txt"); + kurtfile.open("kurtfile_int_c.txt"); + focusFitfile.open("focusFitfile_int_c.txt"); + chi2Fitfile.open("chi2Fitfile_int_c.txt"); + + + TF1 * f_sp_air = new TF1("f_sp_air","[0]*pow(x,[1])+[2]", 50, 250); //stopping power of protons in Air [MeV cm2 /g] + f_sp_air->SetParameters(303.746, -0.873697,1.01335); //protons between 50 and 300 MeV + + TF1 * f_sp_ps = new TF1("f_sp_ps","[0]*pow(x,[1])+[2]", 50, 250); //stopping power of protons in polystyrene [MeV cm2 /g] + f_sp_ps->SetParameters(361.936, -0.892255, 1.19133); //protons between 50 and 220 MeV + + TF1 * f_h2sp_air = new TF1("f_h2sp_air","[0]*pow(x,[1])+[2]", 50, 250); //stopping power of helium in air [MeV cm2 /g] + f_h2sp_air->SetParameters(1236.51, -0.880225, 4.17041); //helium between 50 and 300 MeV + + TF1 * f_h2sp_ps = new TF1("f_h2sp_ps","[0]*pow(x,[1])+[2]", 50, 250); //stopping power of helium in polystyrene [MeV cm2 /g] + f_h2sp_ps->SetParameters(1387.08, -0.882686,4.60833); //heelium between 50 and 300 MeV + + TF1 * f_c12sp_air = new TF1("f_c12sp_air","[0]*pow(x,[1])+[2]", 80, 480); //stopping power of carbon in air [MeV cm2 /g] + f_c12sp_air->SetParameters(13291.2, -0.925464,45.3876); //carbon between 80 and 480 MeV + + TF1 * f_c12sp_ps = new TF1("f_c12sp_ps","[0]*pow(x,[1])+[2]", 80, 480); //stopping power of carbon in polystyrene [MeV cm2 /g] + f_c12sp_ps->SetParameters(14538.9, -0.922423,49.2859); //carbon between 80 and 480 MeV + + TF1 * f_o16sp_air = new TF1("f_o16sp_air","[0]*pow(x,[1])+[2]", 80, 480); //stopping power of oxygen in air [MeV cm2 /g] + f_o16sp_air->SetParameters(24624.9, -0.925425,80.6828); //oxygen between 80 and 480 MeV + + TF1 * f_o16sp_ps = new TF1("f_o16sp_ps","[0]*pow(x,[1])+[2]", 80,480); //stopping power of oxygen in polystyrene [MeV cm2 /g] + f_o16sp_ps->SetParameters(26465.6, -0.928309,88.6728); //oxygen between 80 and 480 MeV + + ///// ic1/SP intensity correction factor = 19.8E6+/-0.1E6 particles/s per nA/(Mevcm2/g) + + if (!in) { + cout << Form("%s%s",dirname, listfile) << " not found." << endl; + return 0;} + cout << Form("%s%s",dirname, listfile) << " opened." << endl; + + in >> EList >> Energy >> F1 >> Intensity >> SP >> Filename >> id;//prime the while loop + while (!in.eof()) { + TFile * file = TFile::Open(Form("%s%s",dirname,Filename)); + TFile * outfile = TFile::Open(Form("plots/%s_plots",Filename),"RECREATE"); + cout << Filename << endl; + // TH1D* signalDist = 0; + // file->GetObject("signalDist",signalDist); + // signalmean = signalDist->GetMean(); + // signalmeanerror = signalDist->GetMeanError(); + // cout << signalmean << " " << signalmeanerror << endl; + // delete signalDist; + + // TCanvas *c1 = new TCanvas("c1"); + TTree *data; + file->GetObject("newdata", data); + TH2D *h_beamSignal_channel = (TH2D*)file->Get("th2d_beamSignal_channel"); + TH2D *h_bkg_channel = (TH2D*)file->Get("th2d_bkg_channel"); + + noisemean = h_bkg_channel->GetMean(2); + noiseRMS = h_bkg_channel->GetRMS(2); + + + TVectorD *v = (TVectorD*)file->Get("icinfo"); + // v->Print(); + totalcurrent = (*v)[0]; + totaltime = (*v)[1]; + // data->Print(); + TH1D* h_beamSignal_1 = new TH1D("h_beamSignal_1","h_beamSignal_1",510,-5000,50000); + TH1D* h_ic1_1 = new TH1D("h_ic1_1","h_ic1_1",510,-5000,50000); + TH1D* h_ic2_1 = new TH1D("h_ic2_1","h_ic2_1",510,-5000,50000); + TH1D* h_ic1_corr = new TH1D("h_ic1_corr","h_ic1_corr",210,-0.04,8); + TH1D* h_ic2_corr = new TH1D("h_ic2_corr","h_ic2_corr",210,-0.04,8); + TH2D* h_beamSignal_v_ic_pscorr = new TH2D("h_beamSignal_v_ic_pscorr","h_beamSignal_v_ic_pscorr",400,-0.05,8.,400,-.05,3.0); + TH1D* h_beamSignal_offsetcorr = new TH1D("h_beamSignal_offsetcorr","h_beamSignal_offsetcorr",210,-.05,8.); + + TH1D* h_beamSignal_corr = new TH1D("h_beamSignal_corr","h_beamSignal_corr",210,-.0500,8); + TH1D* h_ic_beam_diff = new TH1D("h_ic_beam_diff","h_ic_beam_diff",400,-4,4); + TH2D* h_beamSignal_v_ic_corr = new TH2D("h_beamSignal_v_ic_corr","h_beamSignal_v_ic_corr",210,-.05,8.,410,-3.0,3.0); + TH2D* h_ic_v_ic_pscorr = new TH2D("h_ic_v_ic_pscorr","h_ic_v_ic_pscorr",400,-.05,8.,400,-0.05,8); + TH2D* h_ic_v_ic_corr = new TH2D("h_ic_v_ic_corr","h_ic_v_ic_corr",210,-.05,8.,410,-3.0,3.0); + TH1D* h_ic_beam_ratio = new TH1D("h_ic_beam_ratio","h_ic_beam_ratio",500,0,500.); + TH2D* h_beamSignal_v_ic = new TH2D("h_beamSignal_v_ic","h_beamSignal_v_ic",510,-5000,50000,510,-5000,50000); + + TH1D* h_beamFocusX_1 = new TH1D("h_beamFocusX_1","h_beamFocusX_1",200,0,50.); + TH1D* h_beamSkewX_1 = new TH1D("h_beamSkewX_1","h_beamSkewX_1",200,0,50.); + TH1D* h_beamKurtX_1 = new TH1D("h_beamKurtX_1","h_beamKurtX_1",200,0,50.); + TH1D* h_beamFocusX_fit = new TH1D("h_beamFocusX_fit","h_beamFocusX_fit",200,0,50.); + TH1D* h_beamChi2_fit = new TH1D("h_beamChi2_fit","h_beamChi2_fit",200,0,50.); + + + + + + sp_air = f_c12sp_air->Eval(Energy)*(Intensity/1.0E6); + sp_ps = f_c12sp_ps->Eval(Energy)*(Intensity/1.0E6); + sp2_air = f_c12sp_air->Eval(Energy); + sp2_ps = f_c12sp_ps->Eval(Energy); + + + + cout << sp_air << " " << sp_ps << " " << sp2_air << " " << sp2_ps << endl; + // data->Project("h_beamSignal_1","beamPeakX_fit","ic1_1>0.1&&beamChi2_fit<1000"); + // data->Project("h_beamSignal_1","beamSignal_1-beamSidebandNoise_1","ic1_1>0.1"); + data->Project("h_beamSignal_1", "beamPeakX_fit*sqrt(2)*beamFocusX_fit/2.3548" ,"beamon==1&&ic1_1>0.001&&beamChi2_fit<200&&beamPeakX_fit>20"); + + data->Project("h_beamFocusX_1","beamFocusX_1","ic1_1>0.01"); + data->Project("h_beamSkewX_1","beamSkewX_1","ic1_1>0.01"); + data->Project("h_beamKurtX_1","beamKurtX_1","ic1_1>0.01"); + data->Project("h_beamFocusX_fit","beamFocusX_fit","ic1_1>0.01&&beamChi2_fit<1000"); + data->Project("h_beamChi2_fit","beamChi2_fit","ic1_1>0.01&&beamChi2_fit<1000"); + + focusmean = h_beamFocusX_1->GetMean(); + focusRMS = h_beamFocusX_1->GetRMS(); + skewmean = h_beamSkewX_1->GetMean(); + skewRMS = h_beamSkewX_1->GetRMS(); + kurtmean = h_beamKurtX_1->GetMean(); + kurtRMS = h_beamKurtX_1->GetRMS(); + focusFitmean = h_beamFocusX_fit->GetMean(); + focusFitRMS = h_beamFocusX_fit->GetRMS(); + chi2Fitmean = h_beamChi2_fit->GetMean(); + chi2FitRMS = h_beamChi2_fit->GetRMS(); + + + data->Project("h_ic1_1","ic1_1","ic1_1>0.01"); + data->Project("h_ic2_1","ic2_1","ic2_1>0.01"); + + data->Project("h_ic1_corr",Form("ic1_1/%f",sp_air),"ic1_1>0.01"); + data->Project("h_ic2_corr",Form("ic2_1/%f",sp_air),"ic2_1>0.01"); + + + data->Project("h_ic_v_ic_pscorr",Form("ic1_1/%f:ic2_1/%f", sp_air, sp_air),"ic1_1>0.01&&ic2_1>0.01"); + h_ic_v_ic_pscorr->FitSlicesY(0,0,-1,5); + TF1 * f2 = new TF1("f2","pol1"); + f2->SetParameters(10, 1.0); + TH1D* h_ic_v_ic_pscorr_1 = (TH1D*)gDirectory->Get("h_ic_v_ic_pscorr_1"); + Int_t fitsuccess2 = h_ic_v_ic_pscorr_1->Fit(f2,"R","",0.2,4.5); + data->Project("h_ic_v_ic_corr",Form("((ic1_1/%f-%f)/%f - ic2_1/%f)/(ic2_1/%f):ic2_1/%f", sp_air,f2->GetParameter(0), f2->GetParameter(1), sp_air,sp_air,sp_air),"ic1_1>0.01&&ic2_1>0.01"); + h_ic_v_ic_corr->FitSlicesY(0,0,-1,5); + + data->Project("h_beamSignal_v_ic_pscorr",Form("beamSignal_1/%f:ic2_1/%f",sp_ps,sp_air),"ic2_1>0.01"); + data->Project("h_beamSignal_v_ic","beamSignal_1:ic1_1","ic2_1>0.01"); + icbpmcorrelation = h_beamSignal_v_ic->GetCorrelationFactor(); + h_beamSignal_v_ic_pscorr->FitSlicesY(0,0,-1,10); + TH1D* h_beamSignal_v_ic_pscorr_1 = (TH1D*)gDirectory->Get("h_beamSignal_v_ic_pscorr_1"); + TF1 * f1 = new TF1("f1","pol1"); + f1->SetParameters(10, 1.0); + Int_t fitsuccess = h_beamSignal_v_ic_pscorr_1->Fit(f1,"R","",0.2,4.5); + // cout << fitsuccess << " " << f1->GetParameter(0) << " " << f1->GetParameter(1) << endl;; + data->Project("h_beamSignal_corr",Form("(beamSignal_1/%f-%f)/%f",sp_ps, f1->GetParameter(0), f1->GetParameter(1)),"ic2_1>0.01"); + data->Project("h_beamSignal_offsetcorr",Form("(beamSignal_1/%f-%f)",sp_ps, f1->GetParameter(0)),"ic2_1>0.01"); + + data->Project("h_ic_beam_diff",Form("(beamSignal_1/%f-%f)/%f-(ic2_1/%f)", sp_ps,f1->GetParameter(0), f1->GetParameter(1),sp_air),"ic2_1>0.01"); + data->Project("h_beamSignal_v_ic_corr",Form("((beamSignal_1/%f-%f)/%f-(ic2_1)/%f)/(ic2_1/%f):(ic2_1)/%f", sp_ps,f1->GetParameter(0), f1->GetParameter(1),sp_air,sp_air,sp_air),"ic2_1>0.01"); + data->Project("h_ic_beam_ratio","(beamSignal_1/ic1_1)","ic1_1>0.01"); + + + h_beamSignal_v_ic_corr->FitSlicesY(0,0,-1,5); + + + signalmean = h_beamSignal_1->GetMean(); + signalmeanerror = h_beamSignal_1->GetMeanError(); + + signalmean_corr = h_beamSignal_corr->GetMean(); + signalmeanerror_corr = h_beamSignal_corr->GetMeanError(); + signalmean_offsetcorr = h_beamSignal_offsetcorr->GetMean(); + signalmeanerror_offsetcorr = h_beamSignal_offsetcorr->GetMeanError(); + + + ic1mean = h_ic1_1->GetMean(); + ic1meanerror = h_ic1_1->GetMeanError(); + ic2mean = h_ic2_1->GetMean(); + ic2meanerror = h_ic2_1->GetMeanError(); + + ic_beam_ratio=h_ic_beam_ratio->GetMean(); + ic_beam_ratioerror=h_ic_beam_ratio->GetRMS(); + intcorr = (Intensity /19.8E6) / (totalcurrent/sp2_air/totaltime); + + //cout << id << " " <Draw(""); + // c1->SaveAs(Form("figs/h_beamsignal_%i.pdf",nfiles)); + // c1->Destructor(); + file->Close(); + outfile->Write(); + outfile->Close(); + in >> EList >> Energy >> F1 >> Intensity >> SP >> Filename >> id; + // cout << EList << Energy << F1 << Intensity << SP << Filename << id << endl; + + nfiles++; + + } + ic1energyfile.close(); + ic2energyfile.close(); + + beamenergyfile.close(); + beamenergyfile_iccorr.close(); + + noisefile.close(); + focusfile.close(); + focusHITfile.close(); + skewfile.close(); + kurtfile.close(); + in.close(); + focusFitfile.close(); + chi2Fitfile.close(); + return 0; +} diff --git a/Scripts_20161126/plotdata_intensity_proton b/Scripts_20161126/plotdata_intensity_proton new file mode 100755 index 0000000..5149bc9 Binary files /dev/null and b/Scripts_20161126/plotdata_intensity_proton differ diff --git a/Scripts_20161126/plotdata_intensity_proton.c b/Scripts_20161126/plotdata_intensity_proton.c new file mode 100644 index 0000000..cd4e633 --- /dev/null +++ b/Scripts_20161126/plotdata_intensity_proton.c @@ -0,0 +1,363 @@ +#include +#include +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + + +#include +#include +#include + +#include + + + +using namespace std; + + +int main(int argc, char **argv) +{ + + // Working directories + const char *dirname = "/work/leverington/beamprofilemonitor/hitdata/HIT_26-11-2016/with_timestamp/"; + const char *listfile = "intensitylist_protons.prn"; + ifstream in; + ofstream ic1energyfile,ic2energyfile, beamenergyfile,beamenergyfile_iccorr, noisefile, focusfile,focusHITfile, skewfile, kurtfile,focusFitfile,chi2Fitfile, peakFitfile; + + TFile *f; + TTree *tree; + Int_t nfiles = 0; + Int_t EList = 0; + Double_t Energy = 0.; + Double_t F1 = 0.; + Double_t Intensity = 0.; + Double_t SP = 0.; + char Filename[50]; + Int_t id = 0; + Double_t signalmean = 0.; + Double_t signalmeanerror = 0.; + Double_t signalmean_corr = 0.; + Double_t signalmeanerror_corr = 0.; + Double_t signalmean_offsetcorr = 0.; + Double_t signalmeanerror_offsetcorr = 0.; + + Double_t ic1mean = 0.; + Double_t ic1meanerror = 0.; + Double_t ic2mean = 0.; + Double_t ic2meanerror = 0.; + + Double_t sp_air = 0.; + Double_t sp_ps = 0.; + Double_t sp2_air = 0.; + Double_t sp2_ps = 0.; + + Double_t ic_beam_ratio = 0.; + Double_t ic_beam_ratioerror = 0.; + + Double_t totalcurrent = 0.; + Double_t totaltime = 0.; + Double_t intcorr = 0.; + Double_t icbpmcorrelation = 0.; + + Double_t noisemean = 0.; + Double_t noiseRMS = 0.; + Double_t focusmean = 0.; + Double_t focusRMS = 0.; + Double_t skewmean = 0.; + Double_t skewRMS = 0.; + Double_t kurtmean = 0.; + Double_t kurtRMS = 0.; + Double_t focusFitmean = 0.; + Double_t focusFitRMS = 0.; + Double_t chi2Fitmean = 0.; + Double_t chi2FitRMS = 0.; + Double_t peakFitmean = 0.; + Double_t peakFitRMS = 0.; + cout << "Trying to open"<< Form(": %s%s",dirname, listfile)<<"... " << endl; + + in.open(Form("%s%s",dirname, listfile)); + ic1energyfile.open("ic1energyfile_int_p.txt"); + ic2energyfile.open("ic2energyfile_int_p.txt"); + + beamenergyfile.open("beamenergyfile_int_p.txt"); + beamenergyfile_iccorr.open("beamenergyfile_iccorr_int_p.txt"); + + noisefile.open("noisefile_int_p.txt"); + focusfile.open("focusfile_int_p.txt"); + focusHITfile.open("focusHITfile_int_p.txt"); + skewfile.open("skewfile_int_p.txt"); + kurtfile.open("kurtfile_int_p.txt"); + focusFitfile.open("focusFitfile_int_p.txt"); + chi2Fitfile.open("chi2Fitfile_int_p.txt"); + peakFitfile.open(Form("%s_peakfit.txt",listfile )); + + + TF1 * f_sp_air = new TF1("f_sp_air","[0]*pow(x,[1])+[2]", 50, 250); //stopping power of protons in Air [MeV cm2 /g] + f_sp_air->SetParameters(303.746, -0.873697,1.01335); //protons between 50 and 300 MeV + + TF1 * f_sp_ps = new TF1("f_sp_ps","[0]*pow(x,[1])+[2]", 50, 250); //stopping power of protons in polystyrene [MeV cm2 /g] + f_sp_ps->SetParameters(361.936, -0.892255, 1.19133); //protons between 50 and 220 MeV + + TF1 * f_h2sp_air = new TF1("f_h2sp_air","[0]*pow(x,[1])+[2]", 50, 250); //stopping power of helium in air [MeV cm2 /g] + f_h2sp_air->SetParameters(1236.51, -0.880225, 4.17041); //helium between 50 and 300 MeV + + TF1 * f_h2sp_ps = new TF1("f_h2sp_ps","[0]*pow(x,[1])+[2]", 50, 250); //stopping power of helium in polystyrene [MeV cm2 /g] + f_h2sp_ps->SetParameters(1387.08, -0.882686,4.60833); //heelium between 50 and 300 MeV + + TF1 * f_c12sp_air = new TF1("f_c12sp_air","[0]*pow(x,[1])+[2]", 80, 480); //stopping power of carbon in air [MeV cm2 /g] + f_c12sp_air->SetParameters(13291.2, -0.925464,45.3876); //carbon between 80 and 480 MeV + + TF1 * f_c12sp_ps = new TF1("f_c12sp_ps","[0]*pow(x,[1])+[2]", 80, 480); //stopping power of carbon in polystyrene [MeV cm2 /g] + f_c12sp_ps->SetParameters(14538.9, -0.922423,49.2859); //carbon between 80 and 480 MeV + + TF1 * f_o16sp_air = new TF1("f_o16sp_air","[0]*pow(x,[1])+[2]", 80, 480); //stopping power of oxygen in air [MeV cm2 /g] + f_o16sp_air->SetParameters(24624.9, -0.925425,80.6828); //oxygen between 80 and 480 MeV + + TF1 * f_o16sp_ps = new TF1("f_o16sp_ps","[0]*pow(x,[1])+[2]", 80,480); //stopping power of oxygen in polystyrene [MeV cm2 /g] + f_o16sp_ps->SetParameters(26465.6, -0.928309,88.6728); //oxygen between 80 and 480 MeV + + ///// ic1/SP intensity correction factor = 19.8E6+/-0.1E6 particles/s per nA/(Mevcm2/g) + + if (!in) { + cout << Form("%s%s",dirname, listfile) << " not found." << endl; + return 0;} + cout << Form("%s%s",dirname, listfile) << " opened." << endl; + + in >> EList >> Energy >> F1 >> Intensity >> SP >> Filename >> id;//prime the while loop + while (!in.eof()) { + TFile * file = TFile::Open(Form("%s%s",dirname,Filename)); + TFile * outfile = TFile::Open(Form("plots/%s_plots",Filename),"RECREATE"); + cout << Filename << endl; + // TH1D* signalDist = 0; + // file->GetObject("signalDist",signalDist); + // signalmean = signalDist->GetMean(); + // signalmeanerror = signalDist->GetMeanError(); + // cout << signalmean << " " << signalmeanerror << endl; + // delete signalDist; + + // TCanvas *c1 = new TCanvas("c1"); + TTree *data; + file->GetObject("newdata", data); + TH2D *h_beamSignal_channel = (TH2D*)file->Get("th2d_beamSignal_channel"); + TH2D *h_bkg_channel = (TH2D*)file->Get("th2d_bkg_channel"); + + noisemean = h_bkg_channel->GetMean(2); + noiseRMS = h_bkg_channel->GetRMS(2); + + + TVectorD *v = (TVectorD*)file->Get("icinfo"); + // v->Print(); + totalcurrent = (*v)[0]; + totaltime = (*v)[1]; + // data->Print(); + TH1D* h_beamSignal_1 = new TH1D("h_beamSignal_1","h_beamSignal_1",5100,-5000,50000); + TH1D* h_ic1_1 = new TH1D("h_ic1_1","h_ic1_1",5100,-50,1000); + TH1D* h_ic2_1 = new TH1D("h_ic2_1","h_ic2_1",5100,-50,1000); + TH1D* h_ic1_corr = new TH1D("h_ic1_corr","h_ic1_corr",210,-0.04,8); + TH1D* h_ic2_corr = new TH1D("h_ic2_corr","h_ic2_corr",210,-0.04,8); + TH2D* h_beamSignal_v_ic_pscorr = new TH2D("h_beamSignal_v_ic_pscorr","h_beamSignal_v_ic_pscorr",400,-0.05,8.,400,-.05,3.0); + TH1D* h_beamSignal_offsetcorr = new TH1D("h_beamSignal_offsetcorr","h_beamSignal_offsetcorr",210,-.05,8.); + + TH1D* h_beamSignal_corr = new TH1D("h_beamSignal_corr","h_beamSignal_corr",210,-.0500,8); + TH1D* h_ic_beam_diff = new TH1D("h_ic_beam_diff","h_ic_beam_diff",400,-4,4); + TH2D* h_beamSignal_v_ic_corr = new TH2D("h_beamSignal_v_ic_corr","h_beamSignal_v_ic_corr",210,-.05,8.,410,-3.0,3.0); + TH2D* h_ic_v_ic_pscorr = new TH2D("h_ic_v_ic_pscorr","h_ic_v_ic_pscorr",400,-.05,8.,400,-0.05,8); + TH2D* h_ic_v_ic_corr = new TH2D("h_ic_v_ic_corr","h_ic_v_ic_corr",210,-.05,8.,410,-3.0,3.0); + TH1D* h_ic_beam_ratio = new TH1D("h_ic_beam_ratio","h_ic_beam_ratio",500,0,500.); + TH2D* h_beamSignal_v_ic = new TH2D("h_beamSignal_v_ic","h_beamSignal_v_ic",510,-5000,50000,510,-5000,50000); + + TH1D* h_beamFocusX_1 = new TH1D("h_beamFocusX_1","h_beamFocusX_1",200,0,50.); + TH1D* h_beamSkewX_1 = new TH1D("h_beamSkewX_1","h_beamSkewX_1",200,0,50.); + TH1D* h_beamKurtX_1 = new TH1D("h_beamKurtX_1","h_beamKurtX_1",200,0,50.); + TH1D* h_beamFocusX_fit = new TH1D("h_beamFocusX_fit","h_beamFocusX_fit",200,0,50.); + TH1D* h_beamChi2_fit = new TH1D("h_beamChi2_fit","h_beamChi2_fit",200,0,50.); + TH1D* h_beamPeakX_fit = new TH1D("h_beamPeakX_fit","h_beamPeakX_fit",1000,0,8000.); + + + + + if (id>=0&&id<=26){ + sp_air = f_sp_air->Eval(Energy)*(Intensity/1.0E6); + sp_ps = f_sp_ps->Eval(Energy)*(Intensity/1.0E6); + sp2_air = f_sp_air->Eval(Energy); + sp2_ps = f_sp_ps->Eval(Energy); + } + else if (id>=27&&id<=52){ + sp_air = f_h2sp_air->Eval(Energy)*(Intensity/1.0E6); + sp_ps = f_h2sp_ps->Eval(Energy)*(Intensity/1.0E6); + sp2_air = f_h2sp_air->Eval(Energy); + sp2_ps = f_h2sp_ps->Eval(Energy); + } + else if (id>=53&&id<=78){ + sp_air = f_c12sp_air->Eval(Energy)*(Intensity/1.0E6); + sp_ps = f_c12sp_ps->Eval(Energy)*(Intensity/1.0E6); + sp2_air = f_c12sp_air->Eval(Energy); + sp2_ps = f_c12sp_ps->Eval(Energy); + } + else if (id>=79&&id<=99){ + sp_air = f_o16sp_air->Eval(Energy)*(Intensity/1.0E6); + sp_ps = f_o16sp_ps->Eval(Energy)*(Intensity/1.0E6); + sp2_air = f_o16sp_air->Eval(Energy); + sp2_ps = f_o16sp_ps->Eval(Energy); + } + else { + sp_air = -1.; + sp_ps = -1.; + sp2_air = -1.; + sp2_ps = -1.; + } + + + cout << sp_air << " " << sp_ps << " " << sp2_air << " " << sp2_ps << endl; + // data->Project("h_beamSignal_1","beamSignal_1","ic1_1>0.01"); + // data->Project("h_beamSignal_1","beamPeakX_fit","ic1_1>0.1&&beamChi2_fit<1000"); + // data->Project("h_beamSignal_1","beamSignal_1","ic1_1>0.1"); + data->Project("h_beamSignal_1", "beamPeakX_fit*sqrt(2)*beamFocusX_fit/2.3548" ,"beamon==1&&ic1_1>0.001&&beamChi2_fit<200&&beamPeakX_fit>20"); + data->Project("h_beamFocusX_1","beamFocusX_1","ic1_1>0.01"); + data->Project("h_beamSkewX_1","beamSkewX_1","ic1_1>0.01"); + data->Project("h_beamKurtX_1","beamKurtX_1","ic1_1>0.01"); + data->Project("h_beamFocusX_fit","beamFocusX_fit","beamon==1&&ic1_1>0.005&&beamChi2_fit<200&&beamPeakX_fit>20"); + data->Project("h_beamChi2_fit","beamChi2_fit","beamon==1&&ic1_1>0.005&&beamChi2_fit<200&&beamPeakX_fit>20"); + data->Project("h_beamPeakX_fit","beamPeakX_fit","beamon==1&&ic1_1>0.005&&beamChi2_fit<200&&beamPeakX_fit>20"); + focusmean = h_beamFocusX_1->GetMean(); + focusRMS = h_beamFocusX_1->GetRMS(); + skewmean = h_beamSkewX_1->GetMean(); + skewRMS = h_beamSkewX_1->GetRMS(); + kurtmean = h_beamKurtX_1->GetMean(); + kurtRMS = h_beamKurtX_1->GetRMS(); + focusFitmean = h_beamFocusX_fit->GetMean(); + focusFitRMS = h_beamFocusX_fit->GetRMS(); + chi2Fitmean = h_beamChi2_fit->GetMean(); + chi2FitRMS = h_beamChi2_fit->GetRMS(); + + + data->Project("h_ic1_1","ic1_1","ic1_1>0.01"); + data->Project("h_ic2_1","ic2_1","ic2_1>0.01"); + + data->Project("h_ic1_corr",Form("ic1_1/%f",sp_air),"ic1_1>0.01"); + data->Project("h_ic2_corr",Form("ic2_1/%f",sp_air),"ic2_1>0.01"); + + + data->Project("h_ic_v_ic_pscorr",Form("ic1_1/%f:ic2_1/%f", sp_air, sp_air),"ic1_1>0.01&&ic2_1>0.01"); + h_ic_v_ic_pscorr->FitSlicesY(0,0,-1,5); + TF1 * f2 = new TF1("f2","pol1"); + f2->SetParameters(10, 1.0); + TH1D* h_ic_v_ic_pscorr_1 = (TH1D*)gDirectory->Get("h_ic_v_ic_pscorr_1"); + Int_t fitsuccess2 = h_ic_v_ic_pscorr_1->Fit(f2,"R","",0.2,4.5); + data->Project("h_ic_v_ic_corr",Form("((ic1_1/%f-%f)/%f - ic2_1/%f)/(ic2_1/%f):ic2_1/%f", sp_air,f2->GetParameter(0), f2->GetParameter(1), sp_air,sp_air,sp_air),"ic1_1>0.01&&ic2_1>0.01"); + h_ic_v_ic_corr->FitSlicesY(0,0,-1,5); + + data->Project("h_beamSignal_v_ic_pscorr",Form("beamSignal_1/%f:ic2_1/%f",sp_ps,sp_air),"ic2_1>0.01"); + data->Project("h_beamSignal_v_ic","beamSignal_1:ic1_1","ic2_1>0.01"); + icbpmcorrelation = h_beamSignal_v_ic->GetCorrelationFactor(); + h_beamSignal_v_ic_pscorr->FitSlicesY(0,0,-1,10); + TH1D* h_beamSignal_v_ic_pscorr_1 = (TH1D*)gDirectory->Get("h_beamSignal_v_ic_pscorr_1"); + TF1 * f1 = new TF1("f1","pol1"); + f1->SetParameters(10, 1.0); + Int_t fitsuccess = h_beamSignal_v_ic_pscorr_1->Fit(f1,"R","",0.2,4.5); + // cout << fitsuccess << " " << f1->GetParameter(0) << " " << f1->GetParameter(1) << endl;; + data->Project("h_beamSignal_corr",Form("(beamSignal_1/%f-%f)/%f",sp_ps, f1->GetParameter(0), f1->GetParameter(1)),"ic2_1>0.01"); + data->Project("h_beamSignal_offsetcorr",Form("(beamSignal_1/%f-%f)",sp_ps, f1->GetParameter(0)),"ic2_1>0.01"); + + data->Project("h_ic_beam_diff",Form("(beamSignal_1/%f-%f)/%f-(ic2_1/%f)", sp_ps,f1->GetParameter(0), f1->GetParameter(1),sp_air),"ic2_1>0.01"); + data->Project("h_beamSignal_v_ic_corr",Form("((beamSignal_1/%f-%f)/%f-(ic2_1)/%f)/(ic2_1/%f):(ic2_1)/%f", sp_ps,f1->GetParameter(0), f1->GetParameter(1),sp_air,sp_air,sp_air),"ic2_1>0.01"); + data->Project("h_ic_beam_ratio","(beamSignal_1/ic1_1)","ic1_1>0.01"); + + + h_beamSignal_v_ic_corr->FitSlicesY(0,0,-1,5); + + + signalmean = h_beamSignal_1->GetMean(); + signalmeanerror = h_beamSignal_1->GetMeanError(); + + signalmean_corr = h_beamSignal_corr->GetMean(); + signalmeanerror_corr = h_beamSignal_corr->GetMeanError(); + signalmean_offsetcorr = h_beamSignal_offsetcorr->GetMean(); + signalmeanerror_offsetcorr = h_beamSignal_offsetcorr->GetMeanError(); + + + ic1mean = h_ic1_1->GetMean(); + ic1meanerror = h_ic1_1->GetMeanError(); + ic2mean = h_ic2_1->GetMean(); + ic2meanerror = h_ic2_1->GetMeanError(); + + ic_beam_ratio=h_ic_beam_ratio->GetMean(); + ic_beam_ratioerror=h_ic_beam_ratio->GetRMS(); + intcorr = (Intensity /19.8E6) / (totalcurrent/sp2_air/totaltime); + + //cout << id << " " <Draw(""); + // c1->SaveAs(Form("figs/h_beamsignal_%i.pdf",nfiles)); + // c1->Destructor(); + file->Close(); + outfile->Write(); + outfile->Close(); + in >> EList >> Energy >> F1 >> Intensity >> SP >> Filename >> id; + // cout << EList << Energy << F1 << Intensity << SP << Filename << id << endl; + + nfiles++; + + } + ic1energyfile.close(); + ic2energyfile.close(); + + beamenergyfile.close(); + beamenergyfile_iccorr.close(); + + noisefile.close(); + focusfile.close(); + focusHITfile.close(); + skewfile.close(); + kurtfile.close(); + in.close(); + focusFitfile.close(); + chi2Fitfile.close(); + return 0; +} diff --git a/Scripts_20161126/plotmacro.C b/Scripts_20161126/plotmacro.C new file mode 100644 index 0000000..4a4aa67 --- /dev/null +++ b/Scripts_20161126/plotmacro.C @@ -0,0 +1,440 @@ +{ + + gROOT->ProcessLine(".x lhcbStyle.C"); + TCanvas c1_g1_c; + TGraphErrors * g1_c = new TGraphErrors("beamenergyfile_int_c.txt","%lg %lg %lg"); + for (int i=0;iGetN();i++) g1_c->GetY()[i] *= 0.001; //scale graph + for (int i=0;iGetN();i++) g1_c->GetEY()[i] *= 0.001; //scale errors + g1_c->SetMarkerStyle(22); + g1_c->SetTitle("Carbon Ions"); + g1_c->GetXaxis()->SetTitle("Intensity / 10^{6}s^{-1}"); + g1_c->GetYaxis()->SetTitle("#bar{A}_{BPM} / 10^{3} a.u."); + g1_c->GetYaxis()->SetRangeUser(0,6); + g1_c->Draw("AP"); + g1_c->Fit("pol1"); + c1_g1_c.SaveAs("figs/beamenergyfile_int_c.pdf"); + c1_g1_c.SaveAs("figs/beamenergyfile_int_c.png"); + c1_g1_c.SaveAs("figs/beamenergyfile_int_c.C"); + + + TCanvas c1_g1_p; + TGraphErrors * g1_p = new TGraphErrors("beamenergyfile_int_p.txt","%lg %lg %lg"); + for (int i=0;iGetN();i++) g1_p->GetY()[i] *= 0.001; //scale graph + for (int i=0;iGetN();i++) g1_p->GetEY()[i] *= 0.001; //scale errors + g1_p->SetMarkerStyle(20); + g1_p->SetTitle("Protons"); + g1_p->GetXaxis()->SetTitle("Intensity / 10^{6}s^{-1}"); + g1_p->GetYaxis()->SetTitle("#bar{A}_{BPM} / 10^{3} a.u."); + g1_p->GetYaxis()->SetRangeUser(0,20); + g1_p->Draw("AP"); + g1_p->Fit("pol1"); + c1_g1_p.SaveAs("figs/beamenergyfile_int_p.pdf"); + c1_g1_p.SaveAs("figs/beamenergyfile_int_p.png"); + c1_g1_p.SaveAs("figs/beamenergyfile_int_p.C"); + + + + TCanvas c1_mg1_e1; + + TGraphErrors * ge1_p = new TGraphErrors("energylist_p_bpm1.txt","%lg %lg %lg"); + TGraphErrors * ge1_he = new TGraphErrors("energylist_he_bpm1.txt","%lg %lg %lg"); + TGraphErrors * ge1_c = new TGraphErrors("energylist_c_bpm1.txt","%lg %lg %lg"); + TGraphErrors * ge1_o = new TGraphErrors("energylist_o_bpm1.txt","%lg %lg %lg"); + TMultiGraph * mg_e1 = new TMultiGraph(); + mg_e1->Add(ge1_p,"p"); ge1_p->SetMarkerStyle(20); + mg_e1->Add(ge1_he,"p"); ge1_he->SetMarkerStyle(21); + mg_e1->Add(ge1_c,"p"); ge1_c->SetMarkerStyle(22); + mg_e1->Add(ge1_o,"p"); ge1_o->SetMarkerStyle(23); + mg_e1->Draw("a"); + mg_e1->SetTitle(" "); + mg_e1->GetXaxis()->SetTitle("Stopping Power / MeV#upointcm^{2}g^{-1}"); + mg_e1->GetYaxis()->SetTitle("#bar{A}_{BPM} / a.u.#upoint10^{-6}#upointion^{-1}s^{-1}"); + mg_e1->GetXaxis()->SetRangeUser(2,600); + mg_e1->GetYaxis()->SetRangeUser(2,600); + mg_e1->SetMinimum(1.); + mg_e1->SetMaximum(1000.); + c1_mg1_e1.SetLogy(1); + c1_mg1_e1.SetLogx(1); + TF1 * tf1_birk1 = new TF1("tf1_birk1","[0]*x*(1/(1+[1]*x))",3,14); + TF1 * tf1_birk2 = new TF1("tf1_birk2","[0]*x*(1/(1+[1]*x))",15,44); + TF1 * tf1_birk3 = new TF1("tf1_birk3","[0]*x*(1/(1+[1]*x))",100,300); + TF1 * tf1_birk4 = new TF1("tf1_birk4","[0]*x*(1/(1+[1]*x))",180,460); + TF1 * tf1_btv1 = new TF1("tf1_btv1","[0]*x*((1-[1])/(1+[2]*(1-[1])*x)+[1])",3,14); + TF1 * tf1_btv2 = new TF1("tf1_btv2","[0]*x*((1-[1])/(1+[2]*(1-[1])*x)+[1])",15,44); + TF1 * tf1_btv3 = new TF1("tf1_btv3","[0]*x*((1-[1])/(1+[2]*(1-[1])*x)+[1])",100,300); + TF1 * tf1_btv4 = new TF1("tf1_btv4","[0]*x*((1-[1])/(1+[2]*(1-[1])*x)+[1])",180,460); + tf1_birk1->SetParameters(1,0.01);tf1_birk1->SetLineStyle(2); + tf1_birk2->SetParameters(1,0.01);tf1_birk2->SetLineStyle(2); + tf1_birk3->SetParameters(1,0.01);tf1_birk3->SetLineStyle(2); + tf1_birk4->SetParameters(1,0.01);tf1_birk4->SetLineStyle(2); + //ge1_p->Fit(tf1_birk1); + // ge1_he->Fit(tf1_birk2); + //ge1_c->Fit(tf1_birk3); + // ge1_o->Fit(tf1_birk4); + tf1_btv1->SetParameters(1,0.5,0.01);;tf1_btv1->SetLineColor(kRed); + tf1_btv2->SetParameters(1,0.5,0.01);tf1_btv2->SetLineColor(kRed); + tf1_btv3->SetParameters(1,0.5,0.01);tf1_btv3->SetLineColor(kRed); + tf1_btv4->SetParameters(1,0.5,0.01);tf1_btv4->SetLineColor(kRed); + tf1_btv1->SetParLimits(1,0.,1.0); + tf1_btv2->SetParLimits(1,0.,1.0); + tf1_btv3->SetParLimits(1,0.,1.0); + tf1_btv4->SetParLimits(1,0.,1.0); + + // ge1_p->Fit(tf1_btv1);tf1_birk1->Draw("same"); + // ge1_he->Fit(tf1_btv2);tf1_birk2->Draw("same"); + // ge1_c->Fit(tf1_btv3);tf1_birk3->Draw("same"); + // ge1_o->Fit(tf1_btv4);tf1_birk4->Draw("same"); + + TLegend * mylegend = new TLegend(0.20,0.6,0.45,0.9); + mylegend->SetFillColor(0); // white background + mylegend->SetTextFont(22); + mylegend->SetBorderSize(0); // get rid of the box + mylegend->SetTextSize(0.045); // set text size + mylegend->AddEntry(ge1_p,"Protons","p"); // options: p,l,f + mylegend->AddEntry(ge1_he,"Helium","p"); // options: p,l,f + mylegend->AddEntry(ge1_c,"Carbon","p"); // options: p,l,f + mylegend->AddEntry(ge1_o,"Oxygen","p"); // options: p,l,f + // mylegend->AddEntry(tf1_birk1,"Birk's Model","l"); // options: p,l,f + // mylegend->AddEntry(tf1_btv1,"BVT Model","l"); // options: p,l,f + mylegend->Draw(); + gPad->Modified(); + c1_mg1_e1.SaveAs("figs/energylist_p_bpm1.pdf"); + c1_mg1_e1.SaveAs("figs/energylist_p_bpm1.png"); + c1_mg1_e1.SaveAs("figs/energylist_p_bpm1.C"); + + +TCanvas c1_mg1_e1ic; + + TGraphErrors * ge1ic_p = new TGraphErrors("energylist_p_ic1.txt","%lg %lg %lg"); + TGraphErrors * ge1ic_he = new TGraphErrors("energylist_he_ic1.txt","%lg %lg %lg"); + TGraphErrors * ge1ic_c = new TGraphErrors("energylist_c_ic1.txt","%lg %lg %lg"); + TGraphErrors * ge1ic_o = new TGraphErrors("energylist_o_ic1.txt","%lg %lg %lg"); + TMultiGraph * mg_e1ic = new TMultiGraph(); + mg_e1ic->Add(ge1ic_p,"p"); ge1ic_p->SetMarkerStyle(20); + mg_e1ic->Add(ge1ic_he,"p"); ge1ic_he->SetMarkerStyle(21); + mg_e1ic->Add(ge1ic_c,"p"); ge1ic_c->SetMarkerStyle(22); + mg_e1ic->Add(ge1ic_o,"p"); ge1ic_o->SetMarkerStyle(23); + mg_e1ic->Draw("a"); + mg_e1ic->SetTitle(" "); + mg_e1ic->GetXaxis()->SetTitle("Stopping Power / MeV#upointcm^{2}g^{-1}"); + mg_e1ic->GetYaxis()->SetTitle("#bar{A}_{BPM} / a.u.#upoint10^{-6}#upointion^{-1}s^{-1}"); + TLegend * mylegendic = new TLegend(0.20,0.6,0.45,0.9); + mylegendic->SetFillColor(0); // white background + mylegendic->SetTextFont(22); + mylegendic->SetBorderSize(0); // get rid of the box + mylegendic->SetTextSize(0.045); // set text size + mylegendic->AddEntry(ge1ic_p,"Protons","p"); // options: p,l,f + mylegendic->AddEntry(ge1ic_he,"Helium","p"); // options: p,l,f + mylegendic->AddEntry(ge1ic_c,"Carbon","p"); // options: p,l,f + mylegendic->AddEntry(ge1ic_o,"Oxygen","p"); // options: p,l,f + + mylegendic->Draw(); + gPad->Modified(); + c1_mg1_e1ic.SaveAs("figs/energylist_p_ic1.pdf"); + c1_mg1_e1ic.SaveAs("figs/energylist_p_ic1.png"); + c1_mg1_e1ic.SaveAs("figs/energylist_p_ic1.C"); + + + // c1->SetLogx(); + TCanvas c1_mg1_e2; + + TGraphErrors * ge2_p = new TGraphErrors("energylist_p_bpm1ratio.txt","%lg %lg %lg"); + TGraphErrors * ge2_he = new TGraphErrors("energylist_he_bpm1ratio.txt","%lg %lg %lg"); + TGraphErrors * ge2_c = new TGraphErrors("energylist_c_bpm1ratio.txt","%lg %lg %lg"); + TGraphErrors * ge2_o = new TGraphErrors("energylist_o_bpm1ratio.txt","%lg %lg %lg"); + TMultiGraph * mg_e2 = new TMultiGraph(); + mg_e2->Add(ge2_p,"p"); ge2_p->SetMarkerStyle(20); + mg_e2->Add(ge2_he,"p"); ge2_he->SetMarkerStyle(21); + mg_e2->Add(ge2_c,"p"); ge2_c->SetMarkerStyle(22); + mg_e2->Add(ge2_o,"p"); ge2_o->SetMarkerStyle(23); + mg_e2->Draw("a"); + mg_e2->SetTitle(" "); + mg_e2->GetXaxis()->SetTitle("S_{ps} / MeV#upointcm^{2}g^{-1}"); + mg_e2->GetYaxis()->SetTitle("(#bar{A}_{BPM} / #bar{A}_{IC})#upoint(S_{air} / S_{ps}) "); + mg_e2->SetMinimum(0.); + mg_e2->SetMaximum(1.3); + gPad->SetLogx(); +TLegend * mylegend2 = new TLegend(0.20,0.2,0.45,0.5); + mylegend2->SetFillColor(0); // white background + mylegend2->SetTextFont(22); + mylegend2->SetBorderSize(0); // get rid of the box + mylegend2->SetTextSize(0.045); // set text size + mylegend2->AddEntry(ge2_p,"Protons","p"); // options: p,l,f + mylegend2->AddEntry(ge2_he,"Helium","p"); // options: p,l,f + mylegend2->AddEntry(ge2_c,"Carbon","p"); // options: p,l,f + mylegend2->AddEntry(ge2_o,"Oxygen","p"); // options: p,l,f + mylegend2->Draw(); + gPad->Modified(); + c1_mg1_e2.SaveAs("figs/energylist_p_bpm1ratio.pdf"); + c1_mg1_e2.SaveAs("figs/energylist_p_bpm1ratio.png"); + c1_mg1_e2.SaveAs("figs/energylist_p_bpm1ratio.C"); + + // c1->SetLogx(); + TCanvas c1_mg1_e3; + + TGraphErrors * ge3_p = new TGraphErrors("energylist_p_ic1ratio.txt","%lg %lg %lg"); + TGraphErrors * ge3_he = new TGraphErrors("energylist_he_ic1ratio.txt","%lg %lg %lg"); + TGraphErrors * ge3_c = new TGraphErrors("energylist_c_ic1ratio.txt","%lg %lg %lg"); + TGraphErrors * ge3_o = new TGraphErrors("energylist_o_ic1ratio.txt","%lg %lg %lg"); + TMultiGraph * mg_e3 = new TMultiGraph(); + mg_e3->Add(ge3_p,"p"); ge3_p->SetMarkerStyle(20); + mg_e3->Add(ge3_he,"p"); ge3_he->SetMarkerStyle(21); + mg_e3->Add(ge3_c,"p"); ge3_c->SetMarkerStyle(22); + mg_e3->Add(ge3_o,"p"); ge3_o->SetMarkerStyle(23); + mg_e3->Draw("a"); + mg_e3->SetTitle(" "); + mg_e3->GetXaxis()->SetTitle("S_{ps} / MeV#upointcm^{2}g^{-1}"); + mg_e3->GetYaxis()->SetTitle("(#bar{A}_{BPM}: #bar{A}_{IC}) correlation "); + mg_e3->SetMinimum(0.6); + mg_e3->SetMaximum(1.3); + gPad->SetLogx(); + TLegend * mylegend3 = new TLegend(0.20,0.7,0.45,0.9); + mylegend3->SetFillColor(0); // white background + mylegend3->SetTextFont(22); + mylegend3->SetBorderSize(0); // get rid of the box + mylegend3->SetTextSize(0.045); // set text size + mylegend3->AddEntry(ge3_p,"Protons","p"); // options: p,l,f + mylegend3->AddEntry(ge3_he,"Helium","p"); // options: p,l,f + mylegend3->AddEntry(ge3_c,"Carbon","p"); // options: p,l,f + mylegend3->AddEntry(ge3_o,"Oxygen","p"); // options: p,l,f + mylegend3->Draw(); + gPad->Modified(); + c1_mg1_e3.SaveAs("figs/energylist_p_ic1ratio.pdf"); + c1_mg1_e3.SaveAs("figs/energylist_p_ic1ratio.png"); + c1_mg1_e3.SaveAs("figs/energylist_p_ic1ratio.C"); + +TCanvas c1_mg1_e4; + + TGraphErrors * ge4_p = new TGraphErrors("energylist_p_focusfit.txt","%lg %lg %lg"); + TGraphErrors * ge4_he = new TGraphErrors("energylist_he_focusfit.txt","%lg %lg %lg"); + TGraphErrors * ge4_c = new TGraphErrors("energylist_c_focusfit.txt","%lg %lg %lg"); + TGraphErrors * ge4_o = new TGraphErrors("energylist_o_focusfit.txt","%lg %lg %lg"); + TGraph * ge4_hit = new TGraph("focusHITfile.txt","%lg %lg"); + TMultiGraph * mg_e4 = new TMultiGraph(); + mg_e4->Add(ge4_p,"p"); ge4_p->SetMarkerStyle(20); + mg_e4->Add(ge4_he,"p"); ge4_he->SetMarkerStyle(21); + mg_e4->Add(ge4_c,"p"); ge4_c->SetMarkerStyle(22); + mg_e4->Add(ge4_o,"p"); ge4_o->SetMarkerStyle(23); + mg_e4->Add(ge4_hit,"p"); ge4_hit->SetMarkerStyle(30); + + mg_e4->Draw("a"); + mg_e4->SetTitle(" "); + mg_e4->GetXaxis()->SetTitle("S_{ps} / MeV#upointcm^{2}g^{-1}"); + mg_e4->GetYaxis()->SetTitle("Beam Width (FWHM) / mm"); + mg_e4->SetMinimum(0.0); + mg_e4->SetMaximum(40.); + gPad->SetLogx(); + TLegend * mylegend4 = new TLegend(0.60,0.7,0.9,0.9); + mylegend4->SetFillColor(0); // white background + mylegend4->SetTextFont(22); + mylegend4->SetBorderSize(0); // get rid of the box + mylegend4->SetTextSize(0.045); // set text size + mylegend4->AddEntry(ge4_p,"Protons","p"); // options: p,l,f + mylegend4->AddEntry(ge4_he,"Helium","p"); // options: p,l,f + mylegend4->AddEntry(ge4_c,"Carbon","p"); // options: p,l,f + mylegend4->AddEntry(ge4_o,"Oxygen","p"); // options: p,l,f + mylegend4->AddEntry(ge4_hit,"HIT nominal","p"); // options: p,l,f + + mylegend4->Draw(); + gPad->Modified(); + c1_mg1_e4.SaveAs("figs/energylist_p_focusfit.pdf"); + c1_mg1_e4.SaveAs("figs/energylist_p_focusfit.png"); + c1_mg1_e4.SaveAs("figs/energylist_p_focusfit.C"); + +TCanvas c1_mg1_e5; + + TGraphErrors * ge5_p = new TGraphErrors("energylist_p_focus1.txt","%lg %lg %lg"); + TGraphErrors * ge5_he = new TGraphErrors("energylist_he_focus1.txt","%lg %lg %lg"); + TGraphErrors * ge5_c = new TGraphErrors("energylist_c_focus1.txt","%lg %lg %lg"); + TGraphErrors * ge5_o = new TGraphErrors("energylist_o_focus1.txt","%lg %lg %lg"); + TGraph * ge5_hit = new TGraph("focusHITfile.txt","%lg %lg"); + TMultiGraph * mg_e5 = new TMultiGraph(); + mg_e5->Add(ge5_p,"p"); ge5_p->SetMarkerStyle(20); + mg_e5->Add(ge5_he,"p"); ge5_he->SetMarkerStyle(21); + mg_e5->Add(ge5_c,"p"); ge5_c->SetMarkerStyle(22); + mg_e5->Add(ge5_o,"p"); ge5_o->SetMarkerStyle(23); + mg_e5->Add(ge5_hit,"p"); ge5_hit->SetMarkerStyle(30); + + mg_e5->Draw("a"); + mg_e5->SetTitle(" "); + mg_e5->GetXaxis()->SetTitle("S_{ps} / MeV#upointcm^{2}g^{-1}"); + mg_e5->GetYaxis()->SetTitle("Beam Width (FWHM) / mm"); + mg_e5->SetMinimum(0.0); + mg_e5->SetMaximum(40.); + gPad->SetLogx(); +TLegend * mylegend5 = new TLegend(0.60,0.7,0.9,0.9); + mylegend5->SetFillColor(0); // white background + mylegend5->SetTextFont(22); + mylegend5->SetBorderSize(0); // get rid of the box + mylegend5->SetTextSize(0.045); // set text size + mylegend5->AddEntry(ge5_p,"Protons","p"); // options: p,l,f + mylegend5->AddEntry(ge5_he,"Helium","p"); // options: p,l,f + mylegend5->AddEntry(ge5_c,"Carbon","p"); // options: p,l,f + mylegend5->AddEntry(ge5_o,"Oxygen","p"); // options: p,l,f + mylegend5->AddEntry(ge5_hit,"HIT nominal","p"); // options: p,l,f + + mylegend5->Draw(); + gPad->Modified(); + c1_mg1_e5.SaveAs("figs/energylist_p_focus.pdf"); + c1_mg1_e5.SaveAs("figs/energylist_p_focus.png"); + c1_mg1_e5.SaveAs("figs/energylist_p_focus.C"); + + +TCanvas c1_mg1_e6; + + TGraphErrors * ge6_p = new TGraphErrors("energylist_p_skew1.txt","%lg %lg %lg"); + TGraphErrors * ge6_he = new TGraphErrors("energylist_he_skew1.txt","%lg %lg %lg"); + TGraphErrors * ge6_c = new TGraphErrors("energylist_c_skew1.txt","%lg %lg %lg"); + TGraphErrors * ge6_o = new TGraphErrors("energylist_o_skew1.txt","%lg %lg %lg"); + TMultiGraph * mg_e6 = new TMultiGraph(); + mg_e6->Add(ge6_p,"p"); ge6_p->SetMarkerStyle(20); + mg_e6->Add(ge6_he,"p"); ge6_he->SetMarkerStyle(21); + mg_e6->Add(ge6_c,"p"); ge6_c->SetMarkerStyle(22); + mg_e6->Add(ge6_o,"p"); ge6_o->SetMarkerStyle(23); + + mg_e6->Draw("a"); + mg_e6->SetTitle(" "); + mg_e6->GetXaxis()->SetTitle("S_{ps} / MeV#upointcm^{2}g^{-1}"); + mg_e6->GetYaxis()->SetTitle("Beam Skew"); + mg_e6->SetMinimum(0.0); + // mg_e6->SetMaximum(40.); + gPad->SetLogx(); +TLegend * mylegend6 = new TLegend(0.60,0.7,0.9,0.9); + mylegend6->SetFillColor(0); // white background + mylegend6->SetTextFont(22); + mylegend6->SetBorderSize(0); // get rid of the box + mylegend6->SetTextSize(0.046); // set text size + mylegend6->AddEntry(ge6_p,"Protons","p"); // options: p,l,f + mylegend6->AddEntry(ge6_he,"Helium","p"); // options: p,l,f + mylegend6->AddEntry(ge6_c,"Carbon","p"); // options: p,l,f + mylegend6->AddEntry(ge6_o,"Oxygen","p"); // options: p,l,f + + mylegend6->Draw(); + gPad->Modified(); + c1_mg1_e6.SaveAs("figs/energylist_p_skew.pdf"); + c1_mg1_e6.SaveAs("figs/energylist_p_skew.png"); + c1_mg1_e6.SaveAs("figs/energylist_p_skew.C"); + + +TCanvas c1_mg1_e7; + + TGraphErrors * ge7_p = new TGraphErrors("energylist_p_kurt1.txt","%lg %lg %lg"); + TGraphErrors * ge7_he = new TGraphErrors("energylist_he_kurt1.txt","%lg %lg %lg"); + TGraphErrors * ge7_c = new TGraphErrors("energylist_c_kurt1.txt","%lg %lg %lg"); + TGraphErrors * ge7_o = new TGraphErrors("energylist_o_kurt1.txt","%lg %lg %lg"); + TMultiGraph * mg_e7 = new TMultiGraph(); + mg_e7->Add(ge7_p,"p"); ge7_p->SetMarkerStyle(20); + mg_e7->Add(ge7_he,"p"); ge7_he->SetMarkerStyle(21); + mg_e7->Add(ge7_c,"p"); ge7_c->SetMarkerStyle(22); + mg_e7->Add(ge7_o,"p"); ge7_o->SetMarkerStyle(23); + + mg_e7->Draw("a"); + mg_e7->SetTitle(" "); + mg_e7->GetXaxis()->SetTitle("S_{ps} / MeV#upointcm^{2}g^{-1}"); + mg_e7->GetYaxis()->SetTitle("Beam Kurt"); + mg_e7->SetMinimum(0.0); + // mg_e7->SetMaximum(40.); + gPad->SetLogx(); +TLegend * mylegend7 = new TLegend(0.70,0.7,0.9,0.9); + mylegend7->SetFillColor(0); // white background + mylegend7->SetTextFont(22); + mylegend7->SetBorderSize(0); // get rid of the box + mylegend7->SetTextSize(0.047); // set text size + mylegend7->AddEntry(ge7_p,"Protons","p"); // options: p,l,f + mylegend7->AddEntry(ge7_he,"Helium","p"); // options: p,l,f + mylegend7->AddEntry(ge7_c,"Carbon","p"); // options: p,l,f + mylegend7->AddEntry(ge7_o,"Oxygen","p"); // options: p,l,f + + mylegend7->Draw(); + gPad->Modified(); + c1_mg1_e7.SaveAs("figs/energylist_p_kurt.pdf"); + c1_mg1_e7.SaveAs("figs/energylist_p_kurt.png"); + c1_mg1_e7.SaveAs("figs/energylist_p_kurt.C"); + + + +TCanvas c1_mg1_e8; + + TGraph * ge8_p = new TGraph("betadedxz2_p.prn","%lg %lg "); + TGraph * ge8_he = new TGraph("betadedxz2_he.prn","%lg %lg"); + TGraph * ge8_c = new TGraph("betadedxz2_c.prn","%lg %lg "); + TGraph * ge8_o = new TGraph("betadedxz2_o.prn","%lg %lg "); + TGraph * ge8_sum = new TGraph("betadedxz2_sum.prn","%lg %lg "); + + TMultiGraph * mg_e8 = new TMultiGraph(); + mg_e8->Add(ge8_p,"p"); ge8_p->SetMarkerStyle(20); + mg_e8->Add(ge8_he,"p"); ge8_he->SetMarkerStyle(21); + mg_e8->Add(ge8_c,"p"); ge8_c->SetMarkerStyle(22); + mg_e8->Add(ge8_o,"p"); ge8_o->SetMarkerStyle(23); + mg_e8->Add(ge8_sum,"p"); ge8_sum->SetMarkerStyle(1); + + mg_e8->Draw("a"); + mg_e8->SetTitle(" "); + mg_e8->GetXaxis()->SetTitle("Lorentz #beta"); + mg_e8->GetYaxis()->SetTitle("#frac{1}{Z^{2}} #upoint #frac{dE}{dx}"); + mg_e8->SetMinimum(0.0); + TF1 * tf1_pow1 = new TF1("tf1_pow1","[0]*pow(x,[1])",0,1); + tf1_pow1->SetParameters(1.6,-1.7); + tf1_pow1->SetLineColor(kRed); + ge8_sum->Fit(tf1_pow1); + // mg_e8->SetMaximum(40.); + // gPad->SetLogx(); + TLegend * mylegende8 = new TLegend(0.70,0.7,0.9,0.9); + mylegende8->SetFillColor(0); // white background + mylegende8->SetTextFont(22); + mylegende8->SetBorderSize(0); // get rid of the box + mylegende8->SetTextSize(0.047); // set text size + mylegende8->AddEntry(ge8_p,"Protons","p"); // options: p,l,f + mylegende8->AddEntry(ge8_he,"Helium","p"); // options: p,l,f + mylegende8->AddEntry(ge8_c,"Carbon","p"); // options: p,l,f + mylegende8->AddEntry(ge8_o,"Oxygen","p"); // options: p,l,f + mylegende8->AddEntry(tf1_pow1,"[1]#upointpow(#beta,[2])}","l"); // options: p,l,f + mylegende8->Draw(); + gPad->Modified(); + c1_mg1_e8.SaveAs("figs/betadedxz2.pdf"); + c1_mg1_e8.SaveAs("figs/betadedxz2.png"); + c1_mg1_e8.SaveAs("figs/betadedxz2.C"); + + +TCanvas c1_mg1_e9; + + TGraph * ge9_p = new TGraph("energylist_p_bpmbeta1.txt","%lg %lg "); + TGraph * ge9_he = new TGraph("energylist_he_bpmbeta1.txt","%lg %lg"); + TGraph * ge9_c = new TGraph("energylist_c_bpmbeta1.txt","%lg %lg "); + TGraph * ge9_o = new TGraph("energylist_o_bpmbeta1.txt","%lg %lg "); + TMultiGraph * mg_e9 = new TMultiGraph(); + mg_e9->Add(ge9_p,"p"); ge9_p->SetMarkerStyle(20); + mg_e9->Add(ge9_he,"p"); ge9_he->SetMarkerStyle(21); + mg_e9->Add(ge9_c,"p"); ge9_c->SetMarkerStyle(22); + mg_e9->Add(ge9_o,"p"); ge9_o->SetMarkerStyle(23); + // mg_e9->Add(ge9_sum,"p"); ge9_sum->SetMarkerStyle(1); + + TF1 * tf1_btvbeta1 = new TF1("tf1_btvbeta1","[0]*( (1- 0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1] -x*x) )/TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7 -x*x) ) / (1+[2]*(1- 0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1] -x*x) )/TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7 -x*x) )*1*1.65901*TMath::Power(x,-1.7218))+ (0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1] -x*x) )/TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7 -x*x) ) )",0,1); + tf1_btvbeta1->SetParameters(1,9.7, 0.05); + + mg_e9->Draw("a"); + mg_e9->SetTitle(" "); + mg_e9->GetXaxis()->SetTitle("Lorentz #beta"); + mg_e9->GetYaxis()->SetTitle("#frac{dA}{dE}"); + mg_e9->SetMinimum(0.0); + // mg_e9->SetMaximum(40.); + // gPad->SetLogx(); + ge9_p->Fit(tf1_btvbeta1); + + TLegend * mylegende9 = new TLegend(0.70,0.7,0.9,0.9); + mylegende9->SetFillColor(0); // white background + mylegende9->SetTextFont(22); + mylegende9->SetBorderSize(0); // get rid of the box + mylegende9->SetTextSize(0.047); // set text size + mylegende9->AddEntry(ge9_p,"Protons","p"); // options: p,l,f + mylegende9->AddEntry(ge9_he,"Helium","p"); // options: p,l,f + mylegende9->AddEntry(ge9_c,"Carbon","p"); // options: p,l,f + mylegende9->AddEntry(ge9_o,"Oxygen","p"); // options: p,l,f + // mylegende9->AddEntry(tf1_pow1,"[1]#upointpow(#beta,[2])}","l"); // options: p,l,f + mylegende9->Draw(); + gPad->Modified(); + c1_mg1_e9.SaveAs("figs/betadedxz2.pdf"); + c1_mg1_e9.SaveAs("figs/betadedxz2.png"); + c1_mg1_e9.SaveAs("figs/betadedxz2.C"); + +} diff --git a/Scripts_20161126/plots/1.06E+01_plots b/Scripts_20161126/plots/1.06E+01_plots new file mode 100644 index 0000000..d1076b2 Binary files /dev/null and b/Scripts_20161126/plots/1.06E+01_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run100.root_plots b/Scripts_20161126/plots/SAVE_PiN_run100.root_plots new file mode 100644 index 0000000..9f24b31 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run100.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run101.root_plots b/Scripts_20161126/plots/SAVE_PiN_run101.root_plots new file mode 100644 index 0000000..967cda6 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run101.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run102.root_plots b/Scripts_20161126/plots/SAVE_PiN_run102.root_plots new file mode 100644 index 0000000..ed6a403 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run102.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run103.root_plots b/Scripts_20161126/plots/SAVE_PiN_run103.root_plots new file mode 100644 index 0000000..6553001 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run103.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run104.root_plots b/Scripts_20161126/plots/SAVE_PiN_run104.root_plots new file mode 100644 index 0000000..5d78a84 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run104.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run105.root_plots b/Scripts_20161126/plots/SAVE_PiN_run105.root_plots new file mode 100644 index 0000000..34e7b41 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run105.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run106.root_plots b/Scripts_20161126/plots/SAVE_PiN_run106.root_plots new file mode 100644 index 0000000..a75d0d7 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run106.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run107.root_plots b/Scripts_20161126/plots/SAVE_PiN_run107.root_plots new file mode 100644 index 0000000..b5dda0e Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run107.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run108.root_plots b/Scripts_20161126/plots/SAVE_PiN_run108.root_plots new file mode 100644 index 0000000..68fd2b2 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run108.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run11.root_plots b/Scripts_20161126/plots/SAVE_PiN_run11.root_plots new file mode 100644 index 0000000..81a52af Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run11.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run111.root_plots b/Scripts_20161126/plots/SAVE_PiN_run111.root_plots new file mode 100644 index 0000000..d14aabf Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run111.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run112.root_plots b/Scripts_20161126/plots/SAVE_PiN_run112.root_plots new file mode 100644 index 0000000..463141a Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run112.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run113.root_plots b/Scripts_20161126/plots/SAVE_PiN_run113.root_plots new file mode 100644 index 0000000..ccc8f7b Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run113.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run114.root_plots b/Scripts_20161126/plots/SAVE_PiN_run114.root_plots new file mode 100644 index 0000000..7effb1f Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run114.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run115.root_plots b/Scripts_20161126/plots/SAVE_PiN_run115.root_plots new file mode 100644 index 0000000..817000c Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run115.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run116.root_plots b/Scripts_20161126/plots/SAVE_PiN_run116.root_plots new file mode 100644 index 0000000..aebcb3d Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run116.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run117.root_plots b/Scripts_20161126/plots/SAVE_PiN_run117.root_plots new file mode 100644 index 0000000..65211ff Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run117.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run118.root_plots b/Scripts_20161126/plots/SAVE_PiN_run118.root_plots new file mode 100644 index 0000000..c558c51 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run118.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run119.root_plots b/Scripts_20161126/plots/SAVE_PiN_run119.root_plots new file mode 100644 index 0000000..ad15f6a Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run119.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run12.root_plots b/Scripts_20161126/plots/SAVE_PiN_run12.root_plots new file mode 100644 index 0000000..7188740 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run12.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run120.root_plots b/Scripts_20161126/plots/SAVE_PiN_run120.root_plots new file mode 100644 index 0000000..7610c30 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run120.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run121.root_plots b/Scripts_20161126/plots/SAVE_PiN_run121.root_plots new file mode 100644 index 0000000..2cc29f7 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run121.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run122.root_plots b/Scripts_20161126/plots/SAVE_PiN_run122.root_plots new file mode 100644 index 0000000..1bd7f84 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run122.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run123.root_plots b/Scripts_20161126/plots/SAVE_PiN_run123.root_plots new file mode 100644 index 0000000..c7a8a63 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run123.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run124.root_plots b/Scripts_20161126/plots/SAVE_PiN_run124.root_plots new file mode 100644 index 0000000..398e38e Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run124.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run125.root_plots b/Scripts_20161126/plots/SAVE_PiN_run125.root_plots new file mode 100644 index 0000000..87f3302 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run125.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run126.root_plots b/Scripts_20161126/plots/SAVE_PiN_run126.root_plots new file mode 100644 index 0000000..15e87f7 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run126.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run127.root_plots b/Scripts_20161126/plots/SAVE_PiN_run127.root_plots new file mode 100644 index 0000000..06fb880 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run127.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run128.root_plots b/Scripts_20161126/plots/SAVE_PiN_run128.root_plots new file mode 100644 index 0000000..5e4f7fe Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run128.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run129.root_plots b/Scripts_20161126/plots/SAVE_PiN_run129.root_plots new file mode 100644 index 0000000..4b7fac8 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run129.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run13.root_plots b/Scripts_20161126/plots/SAVE_PiN_run13.root_plots new file mode 100644 index 0000000..82198f3 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run13.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run14.root_plots b/Scripts_20161126/plots/SAVE_PiN_run14.root_plots new file mode 100644 index 0000000..1c96bf3 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run14.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run15.root_plots b/Scripts_20161126/plots/SAVE_PiN_run15.root_plots new file mode 100644 index 0000000..011c61d Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run15.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run16.root_plots b/Scripts_20161126/plots/SAVE_PiN_run16.root_plots new file mode 100644 index 0000000..ebcef59 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run16.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run17.root_plots b/Scripts_20161126/plots/SAVE_PiN_run17.root_plots new file mode 100644 index 0000000..3fff360 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run17.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run18.root_plots b/Scripts_20161126/plots/SAVE_PiN_run18.root_plots new file mode 100644 index 0000000..43de085 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run18.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run19.root_plots b/Scripts_20161126/plots/SAVE_PiN_run19.root_plots new file mode 100644 index 0000000..f554892 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run19.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run20.root_plots b/Scripts_20161126/plots/SAVE_PiN_run20.root_plots new file mode 100644 index 0000000..3685ad5 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run20.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run21.root_plots b/Scripts_20161126/plots/SAVE_PiN_run21.root_plots new file mode 100644 index 0000000..2fdfb3d Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run21.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run22.root_plots b/Scripts_20161126/plots/SAVE_PiN_run22.root_plots new file mode 100644 index 0000000..e0ea60a Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run22.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run23.root_plots b/Scripts_20161126/plots/SAVE_PiN_run23.root_plots new file mode 100644 index 0000000..9915011 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run23.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run24.root_plots b/Scripts_20161126/plots/SAVE_PiN_run24.root_plots new file mode 100644 index 0000000..4b85d65 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run24.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run25.root_plots b/Scripts_20161126/plots/SAVE_PiN_run25.root_plots new file mode 100644 index 0000000..d5d1c6f Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run25.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run26.root_plots b/Scripts_20161126/plots/SAVE_PiN_run26.root_plots new file mode 100644 index 0000000..427a5c6 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run26.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run27.root_plots b/Scripts_20161126/plots/SAVE_PiN_run27.root_plots new file mode 100644 index 0000000..5963df3 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run27.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run28.root_plots b/Scripts_20161126/plots/SAVE_PiN_run28.root_plots new file mode 100644 index 0000000..e7a725b Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run28.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run29.root_plots b/Scripts_20161126/plots/SAVE_PiN_run29.root_plots new file mode 100644 index 0000000..0dadca7 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run29.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run30.root_plots b/Scripts_20161126/plots/SAVE_PiN_run30.root_plots new file mode 100644 index 0000000..26b5593 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run30.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run31.root_plots b/Scripts_20161126/plots/SAVE_PiN_run31.root_plots new file mode 100644 index 0000000..e9d53f1 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run31.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run32.root_plots b/Scripts_20161126/plots/SAVE_PiN_run32.root_plots new file mode 100644 index 0000000..059a0a9 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run32.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run34.root_plots b/Scripts_20161126/plots/SAVE_PiN_run34.root_plots new file mode 100644 index 0000000..b5f4e97 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run34.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run35.root_plots b/Scripts_20161126/plots/SAVE_PiN_run35.root_plots new file mode 100644 index 0000000..77ce02b Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run35.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run36.root_plots b/Scripts_20161126/plots/SAVE_PiN_run36.root_plots new file mode 100644 index 0000000..e40ae31 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run36.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run37.root_plots b/Scripts_20161126/plots/SAVE_PiN_run37.root_plots new file mode 100644 index 0000000..77a37fb Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run37.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run38.root_plots b/Scripts_20161126/plots/SAVE_PiN_run38.root_plots new file mode 100644 index 0000000..88dae93 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run38.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run39.roo_plots b/Scripts_20161126/plots/SAVE_PiN_run39.roo_plots new file mode 100644 index 0000000..b1915ba Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run39.roo_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run39.root_plots b/Scripts_20161126/plots/SAVE_PiN_run39.root_plots new file mode 100644 index 0000000..d9c3b9b Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run39.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run40.root_plots b/Scripts_20161126/plots/SAVE_PiN_run40.root_plots new file mode 100644 index 0000000..17fc8d8 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run40.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run41.root_plots b/Scripts_20161126/plots/SAVE_PiN_run41.root_plots new file mode 100644 index 0000000..c888e6f Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run41.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run43.root_plots b/Scripts_20161126/plots/SAVE_PiN_run43.root_plots new file mode 100644 index 0000000..15bd06e Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run43.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run44.root_plots b/Scripts_20161126/plots/SAVE_PiN_run44.root_plots new file mode 100644 index 0000000..ce9077d Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run44.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run45.root_plots b/Scripts_20161126/plots/SAVE_PiN_run45.root_plots new file mode 100644 index 0000000..142b31e Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run45.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run46.root_plots b/Scripts_20161126/plots/SAVE_PiN_run46.root_plots new file mode 100644 index 0000000..911b056 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run46.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run47.root_plots b/Scripts_20161126/plots/SAVE_PiN_run47.root_plots new file mode 100644 index 0000000..a67e56f Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run47.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run48.root_plots b/Scripts_20161126/plots/SAVE_PiN_run48.root_plots new file mode 100644 index 0000000..705be33 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run48.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run49.root_plots b/Scripts_20161126/plots/SAVE_PiN_run49.root_plots new file mode 100644 index 0000000..f3fd6f7 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run49.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run5.root_plots b/Scripts_20161126/plots/SAVE_PiN_run5.root_plots new file mode 100644 index 0000000..a0994fe Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run5.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run50.root_plots b/Scripts_20161126/plots/SAVE_PiN_run50.root_plots new file mode 100644 index 0000000..e96549c Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run50.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run51.root_plots b/Scripts_20161126/plots/SAVE_PiN_run51.root_plots new file mode 100644 index 0000000..e499534 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run51.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run52.root_plots b/Scripts_20161126/plots/SAVE_PiN_run52.root_plots new file mode 100644 index 0000000..4afb53d Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run52.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run53.root_plots b/Scripts_20161126/plots/SAVE_PiN_run53.root_plots new file mode 100644 index 0000000..27dcd95 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run53.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run54.root_plots b/Scripts_20161126/plots/SAVE_PiN_run54.root_plots new file mode 100644 index 0000000..ffbc395 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run54.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run55.root_plots b/Scripts_20161126/plots/SAVE_PiN_run55.root_plots new file mode 100644 index 0000000..2be1c73 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run55.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run56.root_plots b/Scripts_20161126/plots/SAVE_PiN_run56.root_plots new file mode 100644 index 0000000..8b8d5d3 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run56.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run57.root_plots b/Scripts_20161126/plots/SAVE_PiN_run57.root_plots new file mode 100644 index 0000000..40d0a00 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run57.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run58.root_plots b/Scripts_20161126/plots/SAVE_PiN_run58.root_plots new file mode 100644 index 0000000..c648eb2 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run58.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run59.root_plots b/Scripts_20161126/plots/SAVE_PiN_run59.root_plots new file mode 100644 index 0000000..84818de Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run59.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run60.root_plots b/Scripts_20161126/plots/SAVE_PiN_run60.root_plots new file mode 100644 index 0000000..4eb89a1 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run60.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run61.root_plots b/Scripts_20161126/plots/SAVE_PiN_run61.root_plots new file mode 100644 index 0000000..dd3222c Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run61.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run62.root_plots b/Scripts_20161126/plots/SAVE_PiN_run62.root_plots new file mode 100644 index 0000000..55732c4 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run62.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run63.root_plots b/Scripts_20161126/plots/SAVE_PiN_run63.root_plots new file mode 100644 index 0000000..9d9135c Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run63.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run64.root_plots b/Scripts_20161126/plots/SAVE_PiN_run64.root_plots new file mode 100644 index 0000000..c47c878 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run64.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run65.root_plots b/Scripts_20161126/plots/SAVE_PiN_run65.root_plots new file mode 100644 index 0000000..2faebfc Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run65.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run66.root_plots b/Scripts_20161126/plots/SAVE_PiN_run66.root_plots new file mode 100644 index 0000000..10ff56c Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run66.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run66root_plots b/Scripts_20161126/plots/SAVE_PiN_run66root_plots new file mode 100644 index 0000000..bdbb2d1 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run66root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run67.root_plots b/Scripts_20161126/plots/SAVE_PiN_run67.root_plots new file mode 100644 index 0000000..bdb7ed0 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run67.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run68.root_plots b/Scripts_20161126/plots/SAVE_PiN_run68.root_plots new file mode 100644 index 0000000..74e05b7 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run68.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run69.root_plots b/Scripts_20161126/plots/SAVE_PiN_run69.root_plots new file mode 100644 index 0000000..49d42e2 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run69.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run7.root_plots b/Scripts_20161126/plots/SAVE_PiN_run7.root_plots new file mode 100644 index 0000000..d33c5d9 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run7.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run70.root_plots b/Scripts_20161126/plots/SAVE_PiN_run70.root_plots new file mode 100644 index 0000000..7e7155a Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run70.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run71.root_plots b/Scripts_20161126/plots/SAVE_PiN_run71.root_plots new file mode 100644 index 0000000..3439fcc Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run71.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run72.root_plots b/Scripts_20161126/plots/SAVE_PiN_run72.root_plots new file mode 100644 index 0000000..8ff9cfa Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run72.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run73.root_plots b/Scripts_20161126/plots/SAVE_PiN_run73.root_plots new file mode 100644 index 0000000..2a2da6c Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run73.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run74.root_plots b/Scripts_20161126/plots/SAVE_PiN_run74.root_plots new file mode 100644 index 0000000..6e61f4c Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run74.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run75.root_plots b/Scripts_20161126/plots/SAVE_PiN_run75.root_plots new file mode 100644 index 0000000..0cadcb5 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run75.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run76.root_plots b/Scripts_20161126/plots/SAVE_PiN_run76.root_plots new file mode 100644 index 0000000..7ed65eb Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run76.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run77.root_plots b/Scripts_20161126/plots/SAVE_PiN_run77.root_plots new file mode 100644 index 0000000..1f521af Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run77.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run78.root_plots b/Scripts_20161126/plots/SAVE_PiN_run78.root_plots new file mode 100644 index 0000000..91b50ae Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run78.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run79.root_plots b/Scripts_20161126/plots/SAVE_PiN_run79.root_plots new file mode 100644 index 0000000..4f59c4d Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run79.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run8.root_plots b/Scripts_20161126/plots/SAVE_PiN_run8.root_plots new file mode 100644 index 0000000..6717ea4 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run8.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run80.root_plots b/Scripts_20161126/plots/SAVE_PiN_run80.root_plots new file mode 100644 index 0000000..3daad6a Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run80.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run81.root_plots b/Scripts_20161126/plots/SAVE_PiN_run81.root_plots new file mode 100644 index 0000000..cf4380b Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run81.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run82.root_plots b/Scripts_20161126/plots/SAVE_PiN_run82.root_plots new file mode 100644 index 0000000..b2cf606 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run82.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run83.root_plots b/Scripts_20161126/plots/SAVE_PiN_run83.root_plots new file mode 100644 index 0000000..16cabba Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run83.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run84.root_plots b/Scripts_20161126/plots/SAVE_PiN_run84.root_plots new file mode 100644 index 0000000..d292bb4 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run84.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run85.root_plots b/Scripts_20161126/plots/SAVE_PiN_run85.root_plots new file mode 100644 index 0000000..1355574 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run85.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run86.root_plots b/Scripts_20161126/plots/SAVE_PiN_run86.root_plots new file mode 100644 index 0000000..180eb4c Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run86.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run87.root_plots b/Scripts_20161126/plots/SAVE_PiN_run87.root_plots new file mode 100644 index 0000000..b6bdfb8 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run87.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run88.root_plots b/Scripts_20161126/plots/SAVE_PiN_run88.root_plots new file mode 100644 index 0000000..0c71fe9 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run88.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run89.root_plots b/Scripts_20161126/plots/SAVE_PiN_run89.root_plots new file mode 100644 index 0000000..8ab9d28 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run89.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run9.root_plots b/Scripts_20161126/plots/SAVE_PiN_run9.root_plots new file mode 100644 index 0000000..d9d31e8 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run9.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run90.root_plots b/Scripts_20161126/plots/SAVE_PiN_run90.root_plots new file mode 100644 index 0000000..996b4d9 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run90.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run91.root_plots b/Scripts_20161126/plots/SAVE_PiN_run91.root_plots new file mode 100644 index 0000000..695f325 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run91.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run92.root_plots b/Scripts_20161126/plots/SAVE_PiN_run92.root_plots new file mode 100644 index 0000000..3234a8f Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run92.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run93.root_plots b/Scripts_20161126/plots/SAVE_PiN_run93.root_plots new file mode 100644 index 0000000..396ea35 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run93.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run94.root_plots b/Scripts_20161126/plots/SAVE_PiN_run94.root_plots new file mode 100644 index 0000000..d174932 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run94.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run95.root_plots b/Scripts_20161126/plots/SAVE_PiN_run95.root_plots new file mode 100644 index 0000000..1eda5a5 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run95.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run96.root_plots b/Scripts_20161126/plots/SAVE_PiN_run96.root_plots new file mode 100644 index 0000000..c47fbdc Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run96.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run97.root_plots b/Scripts_20161126/plots/SAVE_PiN_run97.root_plots new file mode 100644 index 0000000..578b64d Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run97.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run98.root_plots b/Scripts_20161126/plots/SAVE_PiN_run98.root_plots new file mode 100644 index 0000000..bd87d31 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run98.root_plots differ diff --git a/Scripts_20161126/plots/SAVE_PiN_run99.root_plots b/Scripts_20161126/plots/SAVE_PiN_run99.root_plots new file mode 100644 index 0000000..ee9dd65 Binary files /dev/null and b/Scripts_20161126/plots/SAVE_PiN_run99.root_plots differ diff --git a/Scripts_20161126/process.c b/Scripts_20161126/process.c new file mode 100644 index 0000000..a8d274c --- /dev/null +++ b/Scripts_20161126/process.c @@ -0,0 +1,688 @@ +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +using namespace std; + +TFile *fileIn; +TFile *fileOut; +TTree *data; +int spill_profile_number = 0; +double readOutFrequency = 3000; +double maxSignal; +double minSignal; +double minPosX; +double maxPosX; +double c3 = 0.8; + +void CompareWidth(const char *dirname, const char *filename); +void SavePDF(const char *dirname, const char *filename); +double CalFWHM(TH1D *hist); +Double_t fitfunc(Double_t *x, Double_t *par); + +void process() +{ + const char *dirname = "/mnt/g/HIT/time_aligned/20161126/"; + const char *pin_dirname = "/mnt/g/HIT/time_aligned/20161126/pin/"; + const char *ext = ".root"; + + TSystemDirectory dir(dirname, dirname); + TSystemDirectory pin_dir(pin_dirname, pin_dirname); + + TList *files = dir.GetListOfFiles(); + if (files) + { + TSystemFile *file; + TString fname; + TIter next(files); + + while ((file = (TSystemFile *)next())) + { + fname = file->GetName(); + if (!file->IsDirectory() && fname.EndsWith(ext) && (fname.BeginsWith("SAVE_PiN_run"))) + { + CompareWidth(dirname, fname.Data()); + SavePDF(dirname, fname.Data()); + } + } + } +} + +void CompareWidth(const char *dirname, const char *filename) +{ + + TString fn = TString(filename); + TString dn = TString(dirname); + TString inName = dn + fn; + TString outName = dn + "Output/New_" + fn; + fileIn = new TFile(inName, "read"); + fileOut = new TFile(outName, "recreate"); + fileIn->GetObject("newdata", data); + + TH2D *sigIcScatterPlot14, *mwPosScatterPlot13; + TH1D *signalDist, *icSignal, *icSignal2; + TH2D *deltaPos_time[10]; + fileIn->GetObject("sigIcScatterPlot11", sigIcScatterPlot14); + fileIn->GetObject("mwPosScatterPlot11", mwPosScatterPlot13); + fileIn->GetObject("signalDist", signalDist); + fileIn->GetObject("icSignal", icSignal); + //fileIn->GetObject("icSignal2", icSignal2); + TH1D *icFitSlicesX = (TH1D *)sigIcScatterPlot14->ProfileX(); + TH1D *pos_mw = mwPosScatterPlot13->ProfileY(); + TH1D *pos_mw_x = mwPosScatterPlot13->ProfileX(); + TH1D *beamPosX = (TH1D *)fileIn->Get("beamPosX"); + TH1D *mwPosX = (TH1D *)fileIn->Get("mwPosX"); + TH1D *beamFocusX = (TH1D *)fileIn->Get("beamFocusX"); + TH1D *sigHist = (TH1D *)fileIn->Get("sigHist"); + TH1D *ic1Hist = (TH1D *)fileIn->Get("ic1Hist"); + TH1D *ic2Hist = (TH1D *)fileIn->Get("ic2Hist"); + TCanvas *SignalComp; + Double_t norm_sig = sigHist->Integral(); + Double_t norm_ic1 = ic1Hist->Integral(); + Double_t norm_ic2 = ic2Hist->Integral(); + + double mean = beamPosX->GetMean(); + double mean_mw = mwPosX->GetMean(); + double sigma = beamPosX->GetStdDev(); + double sigma_min = beamFocusX->GetMinimum(); + double sigma_max = beamFocusX->GetMaximum(); + minPosX = mean - 3 * sigma; + maxPosX = mean + 3 * sigma; + icFitSlicesX->Fit("pol1"); + + pos_mw->Fit("pol1", "", "", mean - 3 * sigma, mean + 3 * sigma); + maxSignal = icFitSlicesX->GetMaximum(); + minSignal = icFitSlicesX->GetMinimum(); + double posX, FocusX, beamSignal, ic1, ic2, mw1_posx, mw1_focusx, beamOn, mw2_posx, mw2_focusx; + + TBranch *b_ic1 = data->GetBranch("ic1_1"); + b_ic1->SetAddress(&ic1); + TBranch *b_ic2 = data->GetBranch("ic2_1"); + b_ic2->SetAddress(&ic2); + TBranch *b_mw1_focusx = data->GetBranch("mw1_focusx_1"); + b_mw1_focusx->SetAddress(&mw1_focusx); + TBranch *b_mw1_posx = data->GetBranch("mw1_posx_1"); + b_mw1_posx->SetAddress(&mw1_posx); + TBranch *b_mw2_focusx = data->GetBranch("mw2_focusx_1"); + b_mw2_focusx->SetAddress(&mw2_focusx); + TBranch *b_mw2_posx = data->GetBranch("mw2_posx_1"); + b_mw2_posx->SetAddress(&mw2_posx); + TBranch *b_beamPosX = data->GetBranch("beamPosX_1"); + b_beamPosX->SetAddress(&posX); + TBranch *b_beamFocusX = data->GetBranch("beamFocusX_1"); + b_beamFocusX->SetAddress(&FocusX); + TBranch *b_beamSignal = data->GetBranch("beamSignal_1"); + b_beamSignal->SetAddress(&beamSignal); + TBranch *b_beamOn = data->GetBranch("beamOn"); + b_beamOn->SetAddress(&beamOn); + + data->Draw("mw1_posx_1>>his"); + data->Draw("mw2_posx_1>>his2"); + TH1F *his = (TH1F *)gDirectory->Get("his"); + TH1F *his2 = (TH1F *)gDirectory->Get("his2"); + double shift_MWPC = his->GetMean() - his2->GetMean(); + + vector spillTimes; + + int nevents = data->GetEntries(); + int countspillsize = 1; + spillTimes.push_back(0); + for (int i = 0; i < nevents; i++) + { + data->GetEntry(i); + if (beamOn == 0) + { + if ((i - spillTimes[countspillsize - 1]) < 10) + { + continue; + } + spillTimes.push_back(i); + countspillsize++; + } + } + + int nspills = spillTimes.size() - 1; + printf("N_Spills: %d\n", nspills); + + TH2D *timeCenters = new TH2D("timeCenters", "", nevents / 100, 0., nevents / readOutFrequency, 100, mean - 6. * sigma, mean + 6 * sigma); + TH2D *timeWidths = new TH2D("timeWidths", "", nevents / 100, 0., nevents / readOutFrequency, 100, 0., 25); + TH1D *signalResCompare = new TH1D("signalCompare_new", "", 100, -0.5, 0.5); + TH1D *ICResCompare = new TH1D("ICCompare_new", "", 100, -0.2, 0.2); + TH1D *posCompare = new TH1D("posCompare_new", "", 100, -1, 1); + for (int j = 0; j < nspills; j++) + { + TString name; + name.Form("deltaPos_time%d", j); + printf("spilltime_start: %d\n", spillTimes[j]); + printf("spilltime_end: %d\n", spillTimes[j + 1]); + deltaPos_time[j] = new TH2D(name.Data(), name.Data(), 1000, (double)spillTimes[j] / readOutFrequency, (double)spillTimes[j + 1] / readOutFrequency, 100, -0.4, 0.4); + } + TH2D *deltaPos_time_MWPC = new TH2D("deltaPos_time_MWPC", "deltaPos_time_MWPC", 1000, (double)spillTimes[spill_profile_number] / readOutFrequency, (double)spillTimes[spill_profile_number + 1] / readOutFrequency, 100, -0.4, 0.4); + TH2D *deltaSig_time = new TH2D("deltaSig_time", "", nevents / 100, 0., nevents / readOutFrequency, 100, -0.5, 0.5); + TH2D *deltaSig2_time = new TH2D("deltaSig2_time", "", nevents / 100, 0., nevents / readOutFrequency, 100, -0.5, 0.5); + TH2D *ic1_ic2_time = new TH2D("ic1_ic2_time", "", nevents / 100, 0., nevents / readOutFrequency, 100, -0.5, 0.5); + TH2D *deltaSig_Sig = new TH2D("deltaSig_Sig", "", 100, minSignal - 25, maxSignal + 25, 100, -1, 1); + TH2D *deltaIC_IC = new TH2D("deltaIC_IC", "", 100, minSignal - 25, maxSignal + 25, 100, -1, 1); + TH2D *Sig_time = new TH2D("Sig_time", "", nevents / 100, 0., nevents / readOutFrequency, 100, 0, maxSignal); + TH2D *ic1_time = new TH2D("ic1_time", "", nevents / 100, 0., nevents / readOutFrequency, 100, 0, maxSignal); + TH2D *ic2_time = new TH2D("ic2_time", "", nevents / 100, 0., nevents / readOutFrequency, 100, 0, maxSignal); + TH2D *Fibre_posx_Signal = new TH2D("Center_Signal", "", 100, minSignal - 25, maxSignal + 25, 100, (mean - 6. * sigma), (mean + 6. * sigma)); + TH1D *SignalFiberScaled = new TH1D("SignalFiberScaled", "", 100, 0, maxSignal + 25); + + for (int j = 0; j < nspills; j++) + { + printf("spilltime_start: %d\n", spillTimes[j]); + printf("spilltime_end: %d\n", spillTimes[j + 1]); + for (int i = spillTimes[j]; i < spillTimes[j + 1]; i++) + { + data->GetEntry(i); + /*if (beamOn == 0) + { + // deltaPos_time->Write(); + // deltaSig_time->Write(); + //spillTimes.push_back(i); + continue; + }*/ + timeCenters->Fill(i / readOutFrequency, posX); + timeWidths->Fill(i / readOutFrequency, FocusX); + posCompare->Fill(posX - mean - 1.25 * (mw1_posx - mean_mw)); + deltaPos_time_MWPC->Fill(i / readOutFrequency, mw1_posx - mw2_posx - shift_MWPC); + + signalResCompare->Fill((beamSignal - ic1 * norm_sig / norm_ic1) * 2 / (beamSignal + ic1 * norm_sig / norm_ic1)); + ICResCompare->Fill((ic2 - ic1 * norm_ic2 / norm_ic1) * 2 / (ic2 + ic1)); + deltaSig_time->Fill(i / readOutFrequency, (beamSignal - ic1 * norm_sig / norm_ic1) / beamSignal); + deltaSig2_time->Fill(i / readOutFrequency, (beamSignal - ic1 * norm_sig / norm_ic1) / beamSignal); + ic1_ic2_time->Fill(i / readOutFrequency, (ic2 - ic1 * norm_ic2 / norm_ic1) / ic1); + deltaPos_time[j]->Fill(i / readOutFrequency, posX - mean - 1.25 * (mw1_posx - mean_mw)); + deltaSig_Sig->Fill(beamSignal, (beamSignal - ic1 * norm_sig / norm_ic1) / beamSignal); + deltaIC_IC->Fill(ic1, (ic2 - ic1 * norm_ic2 / norm_ic1) * 2 / (ic2 + ic1)); + Sig_time->Fill(i / readOutFrequency, beamSignal); + ic1_time->Fill(i / readOutFrequency, ic1); + SignalFiberScaled->Fill(beamSignal); + Fibre_posx_Signal->Fill(beamSignal, posX); + } + } + + fileIn->Close(); + fileOut->cd(); + + signalResCompare->Fit("gaus"); + TObjArray aSlices, bSlices; + + timeCenters->Write(); + timeWidths->Write(); + icFitSlicesX->Write(); + pos_mw->Write(); + posCompare->Write(); + deltaPos_time_MWPC->Write(); + TH1D *tmp = deltaPos_time_MWPC->ProjectionY(); + tmp->SetStats(1111); + + tmp->Fit("gaus"); + tmp->Write(); + signalResCompare->Write(); + ICResCompare->Write(); + for (int j = 0; j < nspills; j++) + { + deltaPos_time[j]->Write(); + } + deltaSig_time->Write(); + deltaSig_time->FitSlicesY(0, 0, -1, 5, "QNR", &aSlices); + for (int i = 0; i < 4; i++) + { + aSlices[i]->Write(); + } + deltaSig2_time->Write(); + ic1_ic2_time->Write(); + deltaSig_Sig->Write(); + deltaIC_IC->Write(); + deltaSig_Sig->FitSlicesY(0, 0, -1, 5, "QNR", &aSlices); + for (int i = 0; i < 4; i++) + { + aSlices[i]->Write(); + } + deltaIC_IC->FitSlicesY(0, 0, -1, 5, "QNR", &aSlices); + for (int i = 0; i < 4; i++) + { + aSlices[i]->Write(); + } + Sig_time->Write(); + ic1_time->Write(); + //Fibre_posx_Signal->Fit("pol1"); + Fibre_posx_Signal->Write(); + SignalFiberScaled->Write(); + + //fileOut->Write(); + fileOut->Save(); +} + +void SavePDF(const char *dirname, const char *filename) +{ + //Set PDF line width = minimum + gStyle->SetLineScalePS(1); + gStyle->SetOptFit(kTRUE); + + TString fn = TString(filename); + TString dn = TString(dirname); + TString inName = dn + fn; + TString outName = dn + "Output/New_" + fn; + TString outPDF = outName; + outPDF.Replace(outPDF.Length() - 4, 4, TString("pdf")); + fileIn = new TFile(inName, "read"); + fileOut = new TFile(outName, "read"); + TString str; + TF1 *func = new TF1("doublegaus", fitfunc, 0, 64, 6); + double mean; + double sigma; + double constant; + + //Define Canvas: + TCanvas *canvas1_1 = new TCanvas("canvas1", "", 1024, 768); + TCanvas *canvas2_1 = new TCanvas("canvas2", "", 1280, 500); + canvas2_1->Divide(2, 1); + TCanvas *canvas3_1 = new TCanvas("canvas3", "", 1366, 500); + canvas3_1->Divide(3, 1); + TCanvas *canvas2_2 = new TCanvas("canvas4", "", 1366, 1024); + canvas2_2->Divide(2, 2); + + //Get Histos + TH2D *timeCenters = (TH2D *)fileIn->Get("timeCenters"); + TH2D *timeCenters_MWPC = (TH2D *)fileIn->Get("timeCenters_MWPC"); + TH2D *timeWidths = (TH2D *)fileIn->Get("timeWidths"); + TH2D *timeWidths_MWPC = (TH2D *)fileIn->Get("timeWidths_MWPC"); + + TH2D *Center_Signal = (TH2D *)fileOut->Get("Center_Signal"); + TH1D *Center_Signal_pfc = Center_Signal->ProfileX(); + + TString name; + name.Form("deltaPos_time%d", spill_profile_number); + TH2D *Diff_time = (TH2D *)fileOut->Get(name.Data()); //(TH2D *)fileIn->Get("Diff_time"); + TH1D *posCompare = Diff_time->ProjectionY(); //(TH1D *)fileOut->Get("posCompare_new"); + TH2D *Diff_time_MWPC = (TH2D *)fileOut->Get("deltaPos_time_MWPC"); + TH1D *posCompare_MWPC = Diff_time_MWPC->ProjectionY(); + + TH1D *comppos_weighted = (TH1D *)fileIn->Get("comppos_weighted"); + TH1D *compsig_weighted = (TH1D *)fileIn->Get("compsig_weighted"); + + TH1D *signalResCompare = (TH1D *)fileOut->Get("signalCompare_new"); + TH2D *signalRes_Sig = (TH2D *)fileOut->Get("deltaSig_Sig"); + TH1D *signalRes_Sig_1 = (TH1D *)fileOut->Get("deltaSig_Sig_1"); + TH1D *signalRes_Sig_2 = (TH1D *)fileOut->Get("deltaSig_Sig_2"); + + TH1D *ICResCompare = (TH1D *)fileOut->Get("ICCompare_new"); + TH2D *deltaIC_IC = (TH2D *)fileOut->Get("deltaIC_IC"); + TH1D *deltaIC_IC_1 = (TH1D *)fileOut->Get("deltaIC_IC_1"); + TH1D *deltaIC_IC_2 = (TH1D *)fileOut->Get("deltaIC_IC_2"); + //TH2D * + + TH2D *deltaSig_time = (TH2D *)fileOut->Get("deltaSig_time"); + TH1D *deltaSig_time_fs2 = (TH1D *)fileOut->Get("deltaSig_time_2"); + TH2D *deltaPos_time = (TH2D *)fileOut->Get(name.Data()); + TH2D *deltaSig2_time = (TH2D *)fileOut->Get("deltaSig2_time"); + TH2D *ic1_ic2_time = (TH2D *)fileOut->Get("ic1_ic2_time"); + TH2D *Sig_time = (TH2D *)fileOut->Get("Sig_time"); + TH2D *ic1_time = (TH2D *)fileOut->Get("ic1_time"); + + TH2D *mwPosScatterPlot = (TH2D *)fileIn->Get("mwPosScatterPlot11"); + TH2D *sigIcScatterPlot = (TH2D *)fileIn->Get("sigIcScatterPlot11"); + TH1D *mwPosScatterPlot_pfx = mwPosScatterPlot->ProfileX(); + TH1D *sigIcScatterPlot_pfx = sigIcScatterPlot->ProfileX(); + + //Draw in canvas + //page1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 + canvas2_2->cd(1); + timeCenters->Draw("colz"); + timeCenters->GetXaxis()->SetTitle("time [s]"); + timeCenters->GetYaxis()->SetTitle("Beam Position [mm]"); + timeCenters->SetTitle("Fiber position vs time"); + canvas2_2->cd(2); + timeCenters_MWPC->Draw("colz"); + timeCenters_MWPC->GetXaxis()->SetTitle("time [s]"); + timeCenters_MWPC->GetYaxis()->SetTitle("Beam Position [mm]"); + timeCenters_MWPC->SetTitle("MWPC position vs time"); + canvas2_2->cd(3); + timeWidths->Draw("colz"); + timeWidths->GetXaxis()->SetTitle("time [s]"); + timeWidths->GetYaxis()->SetTitle("Beam widths [mm]"); + timeWidths->SetTitle("Fiber widths vs time"); + canvas2_2->cd(4); + timeWidths_MWPC->Draw("colz"); + timeWidths_MWPC->GetXaxis()->SetTitle("time [s]"); + timeWidths_MWPC->GetYaxis()->SetTitle("Beam widths [mm]"); + timeWidths_MWPC->SetTitle("MWPC Beam widths vs time"); + canvas2_2->Print(outPDF + "(", "Title: position vs Time"); + + //page222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222 + canvas2_1->cd(1); + Center_Signal->Draw("colz"); + Center_Signal->GetXaxis()->SetTitle("Signal [particles]"); + Center_Signal->GetYaxis()->SetTitle("Beam Position [mm]"); + Center_Signal->SetTitle("Fiber position vs signal"); + canvas2_1->cd(2); + Center_Signal_pfc->Draw("E1"); + canvas2_1->Update(); + Center_Signal_pfc->SetTitle("Average Fiber position vs signal"); + Center_Signal_pfc->Fit("pol1"); + double slope_c = Center_Signal_pfc->GetFunction("pol1")->GetParameter(1); + str.Form("Slope = %.9f", slope_c); + TPaveStats *st0 = (TPaveStats *)Center_Signal_pfc->FindObject("stats"); + st0->SetName("mystats"); + st0->AddText(str.Data()); + Center_Signal_pfc->SetStats(0); + canvas2_1->Modified(); + Center_Signal_pfc->GetXaxis()->SetTitle("Signal [particles]"); + Center_Signal_pfc->GetYaxis()->SetTitle("Average Beam Position [mm]"); + Center_Signal_pfc->SetAxisRange(minPosX + 0.05, maxPosX - 0.05, "Y"); + Center_Signal_pfc->SetAxisRange(0, 0.8 * maxSignal, "X"); + canvas2_1->Print(outPDF, "Title: Position vs Signal"); + + //page333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333 + canvas2_2->cd(1); + Diff_time->SetTitle("X(fibre)-X(MWPC) vs time"); + Diff_time->Draw("colz"); + Diff_time->GetXaxis()->SetTitle("time [s]"); + Diff_time->GetYaxis()->SetTitle("posX(fiber)-posX(MWPC) / [mm]"); + canvas2_2->cd(2); + posCompare->SetTitle("X(fibre)-X(MWPC) distribution"); + //fit gaus + posCompare->Fit("gaus"); + mean = posCompare->GetFunction("gaus")->GetParameter(1); + sigma = posCompare->GetFunction("gaus")->GetParameter(2); + constant = posCompare->GetFunction("gaus")->GetParameter(0); + //fit doublegaus + func->SetNpx(1000); + func->SetParameter(0, constant); + func->SetParameter(1, mean); + func->SetParameter(2, sigma); + func->SetParameter(3, constant); + func->SetParameter(4, sigma); + func->SetParameter(5, 0.); + posCompare->Fit("doublegaus"); + double val, x1, x2, pos = -1, fwhm; + int bin1, bin2; + bin1 = posCompare->FindFirstBinAbove(posCompare->GetMaximum() / 2); + bin2 = posCompare->FindLastBinAbove(posCompare->GetMaximum() / 2); + fwhm = (posCompare->GetBinCenter(bin2) + posCompare->GetBinCenter(bin2 + 1) - posCompare->GetBinCenter(bin1) - posCompare->GetBinCenter(bin1 - 1)) * 0.5; + str.Form("fwhm = %.3f mm", fwhm); + TText *t = new TText(300.5, 300.5, str.Data()); + //t->Draw("SAME"); + posCompare->Draw("E1"); + printf("FWHM: %f\n", fwhm); + canvas2_2->Update(); + TPaveStats *st = (TPaveStats *)posCompare->FindObject("stats"); + st->SetName("mystats"); + TList *listOfLines = st->GetListOfLines(); + TLatex *myt = new TLatex(0, 0, str.Data()); + listOfLines->Add(myt); + str.Form("c3 = %.3f ", c3); + TLatex *latex_page3_2 = new TLatex(); + latex_page3_2->DrawLatex(-0.2, 40., str.Data()); + posCompare->SetStats(0); + canvas2_2->Modified(); + posCompare->GetXaxis()->SetTitle("X(fiber)-X(MWPC)"); + posCompare->GetYaxis()->SetTitle("counts"); + canvas2_2->cd(3); + Diff_time_MWPC->SetTitle("MWPC PosX1-PosX2"); + Diff_time_MWPC->Draw("colz"); + Diff_time_MWPC->GetXaxis()->SetTitle("time [s]"); + Diff_time_MWPC->GetYaxis()->SetTitle("X(MWPC1)-X(MWPC2) / [mm]"); + canvas2_2->cd(4); + posCompare_MWPC->SetTitle("MWPC PosX1-PosX2"); + posCompare_MWPC->Draw("colz"); + posCompare_MWPC->GetXaxis()->SetTitle("X(MWPC1)-X(MWPC2) / [mm]"); + posCompare_MWPC->GetYaxis()->SetTitle(""); + + posCompare_MWPC->Fit("gaus"); + mean = posCompare_MWPC->GetFunction("gaus")->GetParameter(1); + sigma = posCompare_MWPC->GetFunction("gaus")->GetParameter(2); + constant = posCompare_MWPC->GetFunction("gaus")->GetParameter(0); + func->SetNpx(1000); + func->SetParameter(0, constant); + func->SetParameter(1, mean); + func->SetParameter(2, sigma); + func->SetParameter(3, constant / 10.); + func->SetParameter(4, sigma * 4.); + func->SetParameter(5, 0.); + posCompare_MWPC->Fit("doublegaus"); + posCompare_MWPC->Draw("E1"); + bin1 = posCompare_MWPC->FindFirstBinAbove(posCompare_MWPC->GetMaximum() / 2); + bin2 = posCompare_MWPC->FindLastBinAbove(posCompare_MWPC->GetMaximum() / 2); + fwhm = (posCompare_MWPC->GetBinCenter(bin2) + posCompare_MWPC->GetBinCenter(bin2 + 1) - posCompare_MWPC->GetBinCenter(bin1) - posCompare_MWPC->GetBinCenter(bin1 - 1)) * 0.5; + str.Form("fwhm = %.3f", fwhm); + //t->Draw("SAME"); + posCompare_MWPC->Draw("E1"); + printf("FWHM: %f\n", fwhm); + canvas2_2->Update(); + st = (TPaveStats *)posCompare_MWPC->FindObject("stats"); + st->SetName("mystats"); + listOfLines = st->GetListOfLines(); + myt = new TLatex(0, 0, str.Data()); + listOfLines->Add(myt); + posCompare_MWPC->SetStats(0); + canvas2_2->Modified(); + canvas2_2->Print(outPDF, "Title: Position compare"); + + //page444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444 + canvas2_2->cd(1); + signalRes_Sig->SetTitle("S(Fibre)-S(IC) vs S(Fibre)"); + signalRes_Sig->Draw("colz"); + canvas2_2->cd(2); + signalResCompare->SetTitle("S(Fibre)-S(IC) distribution"); + signalResCompare->Fit("gaus"); + mean = signalResCompare->GetFunction("gaus")->GetParameter(1); + sigma = signalResCompare->GetFunction("gaus")->GetParameter(2); + constant = signalResCompare->GetFunction("gaus")->GetParameter(0); + func->SetNpx(1000); + func->SetParameter(0, constant); + func->SetParameter(1, mean); + func->SetParameter(2, sigma); + func->SetParameter(3, constant / 10.); + func->SetParameter(4, sigma * 4.); + func->SetParameter(5, 0.); + signalResCompare->Fit("doublegaus"); + signalResCompare->Draw("E1"); + bin1 = signalResCompare->FindFirstBinAbove(signalResCompare->GetMaximum() / 2); + bin2 = signalResCompare->FindLastBinAbove(signalResCompare->GetMaximum() / 2); + fwhm = (signalResCompare->GetBinCenter(bin2) + signalResCompare->GetBinCenter(bin2 + 1) - signalResCompare->GetBinCenter(bin1) - signalResCompare->GetBinCenter(bin1 - 1)) * 0.5; + str.Form("fwhm = %.3f", fwhm); + //t->Draw("SAME"); + signalResCompare->Draw("E1"); + printf("FWHM: %f\n", fwhm); + canvas2_2->Update(); + st = (TPaveStats *)signalResCompare->FindObject("stats"); + st->SetName("mystats"); + listOfLines = st->GetListOfLines(); + TLatex *myt2 = new TLatex(0, 0, str.Data()); + listOfLines->Add(myt2); + signalResCompare->SetStats(0); + canvas2_2->Modified(); + signalResCompare->GetXaxis()->SetTitle("S(Fibre)-S(IC)/S"); + signalResCompare->GetYaxis()->SetTitle("counts"); + canvas2_2->cd(3); + signalRes_Sig_1->SetTitle("S(Fibre)-S(IC) vs S(Fibre)"); + signalRes_Sig_1->Draw("E1"); + signalRes_Sig_1->GetXaxis()->SetTitle("E(fiber)"); + signalRes_Sig_1->GetYaxis()->SetTitle("(E(fiber)-E(MWPC))//E"); + signalRes_Sig_1->SetAxisRange(0, maxSignal * 0.7, "X"); + signalRes_Sig_1->SetAxisRange(-0.4, 0.4, "Y"); + canvas2_2->cd(4); + signalRes_Sig_2->SetTitle("sigma(S(Fibre)-S(IC)) vs S(Fibre)"); + signalRes_Sig_2->Draw("E1"); + signalRes_Sig_2->GetXaxis()->SetTitle("E(fiber)"); + signalRes_Sig_2->GetYaxis()->SetTitle("sigma(E(fiber)-E(MWPC))//E"); + signalRes_Sig_2->SetAxisRange(0, maxSignal, "X"); + signalRes_Sig_2->SetAxisRange(0.01, 0.25, "Y"); + canvas2_2->Print(outPDF, "Title: IC Signal Resolution vs Signal"); + + //page44545454545454545455454545454545454545454545445454545454545454545454545454555454545454545454545454545454 + canvas2_2->cd(1); + deltaIC_IC->SetTitle("S(IC2)-S(IC2)/S vs S(IC1)"); + deltaIC_IC->Draw("colz"); + canvas2_2->cd(2); + ICResCompare->SetTitle("S(IC2)-S(IC2)/S distribution"); + ICResCompare->Fit("gaus"); + mean = ICResCompare->GetFunction("gaus")->GetParameter(1); + sigma = ICResCompare->GetFunction("gaus")->GetParameter(2); + constant = ICResCompare->GetFunction("gaus")->GetParameter(0); + func->SetNpx(1000); + func->SetParameter(0, constant); + func->SetParameter(1, mean); + func->SetParameter(2, sigma); + func->SetParameter(3, constant / 10.); + func->SetParameter(4, sigma * 4.); + func->SetParameter(5, 0.); + ICResCompare->Fit("doublegaus"); + ICResCompare->Draw("E1"); + bin1 = ICResCompare->FindFirstBinAbove(ICResCompare->GetMaximum() / 2); + bin2 = ICResCompare->FindLastBinAbove(ICResCompare->GetMaximum() / 2); + fwhm = (ICResCompare->GetBinCenter(bin2) + ICResCompare->GetBinCenter(bin2 + 1) - ICResCompare->GetBinCenter(bin1) - ICResCompare->GetBinCenter(bin1 - 1)) * 0.5; + str.Form("fwhm = %.3f", fwhm); + //t->Draw("SAME"); + ICResCompare->Draw("E1"); + printf("FWHM: %f\n", fwhm); + canvas2_2->Update(); + st = (TPaveStats *)ICResCompare->FindObject("stats"); + st->SetName("mystats"); + listOfLines = st->GetListOfLines(); + TLatex *myt3 = new TLatex(0, 0, str.Data()); + listOfLines->Add(myt3); + ICResCompare->SetStats(0); + canvas2_2->Modified(); + ICResCompare->GetXaxis()->SetTitle("S(IC2)-S(IC2)/S"); + ICResCompare->GetYaxis()->SetTitle("counts"); + canvas2_2->cd(3); + deltaIC_IC_1->SetTitle("S(IC2)-S(IC2)/S vs S(IC1)"); + deltaIC_IC_1->Draw("E1"); + deltaIC_IC_1->GetXaxis()->SetTitle("S(IC)"); + deltaIC_IC_1->GetYaxis()->SetTitle("S(IC2)-S(IC2)/S"); + deltaIC_IC_1->SetAxisRange(0, maxSignal * 0.7, "X"); + deltaIC_IC_1->SetAxisRange(-0.4, 0.4, "Y"); + canvas2_2->cd(4); + deltaIC_IC_2->SetTitle("sigma(S(IC2)-S(IC2)/S) vs S(IC)"); + deltaIC_IC_2->Draw("E1"); + deltaIC_IC_2->GetXaxis()->SetTitle("E(fiber)"); + deltaIC_IC_2->GetYaxis()->SetTitle("sigma(S(IC2)-S(IC2)/S)"); + deltaIC_IC_2->SetAxisRange(0, maxSignal, "X"); + deltaIC_IC_2->SetAxisRange(0.01, 0.25, "Y"); + canvas2_2->Print(outPDF, "Title: IC Signal Resolution vs Signal"); + + //page555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555 + canvas2_2->cd(1); + deltaSig_time->SetTitle("S(Fibre)-S(IC1) vs time"); + deltaSig_time->Draw("colz"); + deltaSig_time->GetXaxis()->SetTitle("time [s]"); + deltaSig_time->GetYaxis()->SetTitle("signal difference/signal %"); + canvas2_2->cd(2); + deltaSig_time_fs2->SetTitle("Signal difference vs time_fitSlicesY_(sigma)"); + deltaSig_time_fs2->Draw("colz"); + deltaSig_time_fs2->GetXaxis()->SetTitle("time [s]"); + deltaSig_time_fs2->GetYaxis()->SetTitle("sigma(signal difference) [particles]"); + canvas2_2->cd(3); + deltaSig2_time->SetTitle("S(Fibre)-S(IC2) vs time"); + deltaSig2_time->Draw("colz"); + deltaSig2_time->GetXaxis()->SetTitle("time [s]"); + deltaSig2_time->GetYaxis()->SetTitle("signal [particles]"); + canvas2_2->cd(4); + ic1_ic2_time->SetTitle("S(ic1)-S(ic2) vs time"); + ic1_ic2_time->Draw("colz"); + ic1_ic2_time->GetXaxis()->SetTitle("time [s]"); + ic1_ic2_time->GetYaxis()->SetTitle("signal [particles]"); + canvas2_2->Print(outPDF, "Title: Beam position vs Time"); + + //page 6666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666 + + canvas2_1->cd(1); + comppos_weighted->Draw(); + str.Form("fwhm = %.3f", CalFWHM(comppos_weighted)); + TLatex *latex = new TLatex(); + latex->DrawLatex(-0.2, 40., str.Data()); + canvas2_1->cd(2); + compsig_weighted->Draw(); + str.Form("fwhm = %.3f", CalFWHM(compsig_weighted)); + TLatex *latex2 = new TLatex(); + latex2->DrawLatex(-0.2, 45., str.Data()); + canvas2_1->Print(outPDF, "Title: weighted resoultion"); + + //page 777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777 + canvas2_2->cd(1); + mwPosScatterPlot->SetTitle("Fibre position vs MWPC position"); + mwPosScatterPlot->Draw("colz"); + mwPosScatterPlot->GetXaxis()->SetTitle("MWPC position [mm]"); + mwPosScatterPlot->GetYaxis()->SetTitle("Fibre position [mm]"); + canvas2_2->cd(2); + mwPosScatterPlot_pfx->SetTitle("mean MWPC position vs Fibre position"); + mwPosScatterPlot_pfx->Fit("pol1"); + mwPosScatterPlot_pfx->Draw("colz"); + mwPosScatterPlot_pfx->SetAxisRange(minPosX, maxPosX, "Y"); + mwPosScatterPlot_pfx->GetXaxis()->SetTitle("MWPC position [mm]"); + mwPosScatterPlot_pfx->GetYaxis()->SetTitle("Fibre position [mm]"); + canvas2_2->cd(3); + sigIcScatterPlot->SetTitle("Fibre signal vs ic signal"); + sigIcScatterPlot->Draw("colz"); + sigIcScatterPlot->GetXaxis()->SetTitle("ic signal [n]"); + sigIcScatterPlot->GetYaxis()->SetTitle("Fibre signal [n]"); + canvas2_2->cd(4); + sigIcScatterPlot_pfx->SetTitle("mean IC signal vs Fibre signal"); + sigIcScatterPlot_pfx->Fit("pol1"); + sigIcScatterPlot_pfx->Draw("colz"); + canvas2_2->Update(); + st = (TPaveStats *)sigIcScatterPlot_pfx->FindObject("stats"); + st->SetName("mystats"); + listOfLines = st->GetListOfLines(); + TText *tconst = st->GetLineWith("Mean x"); + TText *tconst1 = st->GetLineWith("Entries"); + TText *tconst2 = st->GetLineWith("Mean y"); + listOfLines->Remove(tconst); + listOfLines->Remove(tconst1); + listOfLines->Remove(tconst2); + + sigIcScatterPlot_pfx->GetXaxis()->SetTitle("ic signal [n]"); + sigIcScatterPlot_pfx->GetYaxis()->SetTitle("Fibre signal [n]"); + canvas2_2->Print(outPDF + ")", "Title: Alignment"); +} + +Double_t fitfunc(Double_t *x, Double_t *par) +{ + Double_t arg1 = 0; + if (par[2] != 0) + arg1 = (x[0] - par[1]) / par[2]; + Double_t fitval1 = par[0] * TMath::Exp(-0.5 * arg1 * arg1); + Double_t arg2 = 0; + if (par[4] != 0) + arg2 = (x[0] - par[1]) / par[4]; + Double_t fitval2 = par[3] * TMath::Exp(-0.5 * arg2 * arg2); + Double_t fitsum = par[5] + fitval1 + fitval2; + return fitsum; +} + +double CalFWHM(TH1D *hist) +{ + double val, x1, x2, pos = -1, fwhm; + int bin1, bin2; + bin1 = hist->FindFirstBinAbove(hist->GetMaximum() / 2); + bin2 = hist->FindLastBinAbove(hist->GetMaximum() / 2); + fwhm = (hist->GetBinCenter(bin2) + hist->GetBinCenter(bin2 + 1) - hist->GetBinCenter(bin1) - hist->GetBinCenter(bin1 - 1)) * 0.5; + return fwhm; +} \ No newline at end of file diff --git a/Scripts_20161126/protonsAIR_40_300MeV.txt b/Scripts_20161126/protonsAIR_40_300MeV.txt new file mode 100644 index 0000000..b9863a5 --- /dev/null +++ b/Scripts_20161126/protonsAIR_40_300MeV.txt @@ -0,0 +1,47 @@ +4.00E+01 1.31E+01 +4.50E+01 1.19E+01 +4.81E+01 1.13E+01 +5.00E+01 1.10E+01 +5.50E+01 1.02E+01 +5.98E+01 9.54E+00 +6.00E+01 9.51E+00 +6.50E+01 8.94E+00 +7.00E+01 8.44E+00 +7.00E+01 8.44E+00 +7.50E+01 8.00E+00 +7.92E+01 7.68E+00 +8.00E+01 7.62E+00 +8.50E+01 7.28E+00 +8.75E+01 7.12E+00 +9.00E+01 6.97E+00 +9.50E+01 6.69E+00 +9.53E+01 6.68E+00 +1.00E+02 6.44E+00 +1.03E+02 6.32E+00 +1.10E+02 6.02E+00 +1.16E+02 5.77E+00 +1.23E+02 5.55E+00 +1.25E+02 5.47E+00 +1.29E+02 5.36E+00 +1.35E+02 5.19E+00 +1.40E+02 5.04E+00 +1.46E+02 4.91E+00 +1.50E+02 4.82E+00 +1.52E+02 4.78E+00 +1.57E+02 4.67E+00 +1.62E+02 4.56E+00 +1.68E+02 4.47E+00 +1.73E+02 4.38E+00 +1.75E+02 4.34E+00 +1.78E+02 4.29E+00 +1.85E+02 4.18E+00 +1.92E+02 4.08E+00 +1.99E+02 3.99E+00 +2.00E+02 3.98E+00 +2.06E+02 3.91E+00 +2.12E+02 3.83E+00 +2.19E+02 3.76E+00 +2.25E+02 3.69E+00 +2.50E+02 3.46E+00 +2.75E+02 3.27E+00 +3.00E+02 3.12E+00 diff --git a/Scripts_20161126/protonsPS_48_221MeV.txt b/Scripts_20161126/protonsPS_48_221MeV.txt new file mode 100644 index 0000000..8525707 --- /dev/null +++ b/Scripts_20161126/protonsPS_48_221MeV.txt @@ -0,0 +1,255 @@ +4.812E+01 1.26E+01 +4.937E+01 1.23E+01 +5.060E+01 1.21E+01 +5.182E+01 1.19E+01 +5.301E+01 1.17E+01 +5.419E+01 1.15E+01 +5.534E+01 1.13E+01 +5.649E+01 1.11E+01 +5.761E+01 1.09E+01 +5.872E+01 1.07E+01 +5.982E+01 1.06E+01 +6.090E+01 1.04E+01 +6.197E+01 1.03E+01 +6.302E+01 1.02E+01 +6.405E+01 1.00E+01 +6.508E+01 9.91E+00 +6.609E+01 9.79E+00 +6.710E+01 9.68E+00 +6.808E+01 9.57E+00 +6.906E+01 9.46E+00 +7.003E+01 9.36E+00 +7.099E+01 9.26E+00 +7.194E+01 9.17E+00 +7.287E+01 9.08E+00 +7.380E+01 8.99E+00 +7.472E+01 8.90E+00 +7.562E+01 8.82E+00 +7.652E+01 8.74E+00 +7.742E+01 8.66E+00 +7.830E+01 8.59E+00 +7.917E+01 8.52E+00 +8.000E+01 8.45E+00 +8.090E+01 8.38E+00 +8.175E+01 8.31E+00 +8.260E+01 8.25E+00 +8.344E+01 8.18E+00 +8.427E+01 8.12E+00 +8.509E+01 8.06E+00 +8.591E+01 8.00E+00 +8.672E+01 7.95E+00 +8.753E+01 7.89E+00 +8.833E+01 7.84E+00 +8.913E+01 7.78E+00 +8.991E+01 7.73E+00 +9.070E+01 7.68E+00 +9.148E+01 7.63E+00 +9.225E+01 7.58E+00 +9.302E+01 7.54E+00 +9.379E+01 7.49E+00 +9.454E+01 7.44E+00 +9.530E+01 7.40E+00 +9.605E+01 7.36E+00 +9.679E+01 7.31E+00 +9.753E+01 7.27E+00 +9.827E+01 7.23E+00 +9.901E+01 7.19E+00 +9.974E+01 7.15E+00 +1.005E+02 7.11E+00 +1.012E+02 7.08E+00 +1.019E+02 7.04E+00 +1.026E+02 7.00E+00 +1.033E+02 6.97E+00 +1.040E+02 6.93E+00 +1.047E+02 6.90E+00 +1.054E+02 6.86E+00 +1.061E+02 6.83E+00 +1.068E+02 6.80E+00 +1.075E+02 6.77E+00 +1.082E+02 6.73E+00 +1.089E+02 6.70E+00 +1.096E+02 6.67E+00 +1.102E+02 6.64E+00 +1.109E+02 6.61E+00 +1.116E+02 6.58E+00 +1.122E+02 6.55E+00 +1.129E+02 6.53E+00 +1.136E+02 6.50E+00 +1.142E+02 6.47E+00 +1.149E+02 6.44E+00 +1.156E+02 6.42E+00 +1.162E+02 6.39E+00 +1.168E+02 6.36E+00 +1.175E+02 6.34E+00 +1.181E+02 6.31E+00 +1.188E+02 6.29E+00 +1.194E+02 6.27E+00 +1.201E+02 6.24E+00 +1.207E+02 6.22E+00 +1.213E+02 6.19E+00 +1.219E+02 6.17E+00 +1.226E+02 6.15E+00 +1.232E+02 6.13E+00 +1.238E+02 6.10E+00 +1.244E+02 6.08E+00 +1.251E+02 6.06E+00 +1.257E+02 6.04E+00 +1.263E+02 6.02E+00 +1.269E+02 6.00E+00 +1.275E+02 5.98E+00 +1.281E+02 5.96E+00 +1.287E+02 5.94E+00 +1.293E+02 5.92E+00 +1.299E+02 5.90E+00 +1.305E+02 5.88E+00 +1.311E+02 5.86E+00 +1.317E+02 5.84E+00 +1.323E+02 5.82E+00 +1.329E+02 5.80E+00 +1.335E+02 5.78E+00 +1.341E+02 5.77E+00 +1.346E+02 5.75E+00 +1.352E+02 5.73E+00 +1.358E+02 5.71E+00 +1.364E+02 5.70E+00 +1.370E+02 5.68E+00 +1.376E+02 5.66E+00 +1.381E+02 5.65E+00 +1.387E+02 5.63E+00 +1.393E+02 5.61E+00 +1.398E+02 5.60E+00 +1.404E+02 5.58E+00 +1.410E+02 5.57E+00 +1.415E+02 5.55E+00 +1.421E+02 5.53E+00 +1.427E+02 5.52E+00 +1.432E+02 5.50E+00 +1.438E+02 5.49E+00 +1.443E+02 5.47E+00 +1.449E+02 5.46E+00 +1.455E+02 5.44E+00 +1.460E+02 5.43E+00 +1.466E+02 5.42E+00 +1.471E+02 5.40E+00 +1.477E+02 5.39E+00 +1.482E+02 5.37E+00 +1.488E+02 5.36E+00 +1.493E+02 5.35E+00 +1.499E+02 5.33E+00 +1.504E+02 5.32E+00 +1.509E+02 5.31E+00 +1.515E+02 5.29E+00 +1.520E+02 5.28E+00 +1.526E+02 5.27E+00 +1.531E+02 5.25E+00 +1.537E+02 5.24E+00 +1.542E+02 5.23E+00 +1.547E+02 5.22E+00 +1.553E+02 5.20E+00 +1.558E+02 5.19E+00 +1.564E+02 5.18E+00 +1.569E+02 5.17E+00 +1.574E+02 5.15E+00 +1.580E+02 5.14E+00 +1.585E+02 5.13E+00 +1.590E+02 5.12E+00 +1.596E+02 5.11E+00 +1.601E+02 5.10E+00 +1.606E+02 5.08E+00 +1.611E+02 5.07E+00 +1.617E+02 5.06E+00 +1.622E+02 5.05E+00 +1.627E+02 5.04E+00 +1.633E+02 5.03E+00 +1.638E+02 5.02E+00 +1.643E+02 5.01E+00 +1.648E+02 5.00E+00 +1.654E+02 4.98E+00 +1.659E+02 4.97E+00 +1.664E+02 4.96E+00 +1.669E+02 4.95E+00 +1.675E+02 4.94E+00 +1.680E+02 4.93E+00 +1.685E+02 4.92E+00 +1.690E+02 4.91E+00 +1.695E+02 4.90E+00 +1.701E+02 4.89E+00 +1.706E+02 4.88E+00 +1.711E+02 4.87E+00 +1.716E+02 4.86E+00 +1.721E+02 4.85E+00 +1.726E+02 4.84E+00 +1.731E+02 4.83E+00 +1.739E+02 4.82E+00 +1.743E+02 4.81E+00 +1.748E+02 4.80E+00 +1.753E+02 4.79E+00 +1.758E+02 4.78E+00 +1.763E+02 4.78E+00 +1.768E+02 4.77E+00 +1.772E+02 4.76E+00 +1.777E+02 4.75E+00 +1.782E+02 4.74E+00 +1.790E+02 4.73E+00 +1.798E+02 4.71E+00 +1.805E+02 4.70E+00 +1.812E+02 4.69E+00 +1.819E+02 4.68E+00 +1.827E+02 4.66E+00 +1.834E+02 4.65E+00 +1.841E+02 4.64E+00 +1.848E+02 4.63E+00 +1.855E+02 4.62E+00 +1.862E+02 4.60E+00 +1.869E+02 4.59E+00 +1.877E+02 4.58E+00 +1.884E+02 4.57E+00 +1.891E+02 4.56E+00 +1.898E+02 4.55E+00 +1.905E+02 4.54E+00 +1.912E+02 4.53E+00 +1.919E+02 4.52E+00 +1.926E+02 4.50E+00 +1.933E+02 4.49E+00 +1.940E+02 4.48E+00 +1.946E+02 4.47E+00 +1.953E+02 4.46E+00 +1.960E+02 4.45E+00 +1.967E+02 4.44E+00 +1.974E+02 4.43E+00 +1.981E+02 4.42E+00 +1.988E+02 4.41E+00 +1.994E+02 4.40E+00 +2.001E+02 4.39E+00 +2.008E+02 4.38E+00 +2.015E+02 4.38E+00 +2.021E+02 4.37E+00 +2.028E+02 4.36E+00 +2.035E+02 4.35E+00 +2.041E+02 4.34E+00 +2.048E+02 4.33E+00 +2.055E+02 4.32E+00 +2.061E+02 4.31E+00 +2.068E+02 4.30E+00 +2.075E+02 4.29E+00 +2.081E+02 4.29E+00 +2.088E+02 4.28E+00 +2.094E+02 4.27E+00 +2.101E+02 4.26E+00 +2.108E+02 4.25E+00 +2.114E+02 4.24E+00 +2.121E+02 4.23E+00 +2.127E+02 4.23E+00 +2.134E+02 4.22E+00 +2.140E+02 4.21E+00 +2.147E+02 4.20E+00 +2.153E+02 4.19E+00 +2.1590E+02 4.1860E+00 +2.166E+02 4.18E+00 +2.172E+02 4.17E+00 +2.179E+02 4.16E+00 +2.185E+02 4.16E+00 +2.191E+02 4.15E+00 +2.198E+02 4.14E+00 +2.204E+02 4.13E+00 +2.211E+02 4.13E+00 diff --git a/Scripts_20161126/runJob.sh b/Scripts_20161126/runJob.sh new file mode 100755 index 0000000..c41887c --- /dev/null +++ b/Scripts_20161126/runJob.sh @@ -0,0 +1,27 @@ +HOME=/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126 +mkdir -p $HOME/jobs #make the directory if it doesn't exist +JOB_HOME=$HOME/jobs +rm -rf $JOB_HOME/* #clean up the directory if it does exist +cd $JOB_HOME +for i in {5..129} #129 +do + touch $JOB_HOME/runjob$i.sh + echo "#!/bin/bash" >> $JOB_HOME/runjob$i.sh + echo ". /local/env.sh" >> $JOB_HOME/runjob$i.sh + echo ". /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt" >> $JOB_HOME/runjob$i.sh +# echo ". SetupProject.sh Geant4" >> $JOB_HOME/runjob$i.sh + + echo "source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh" >> $JOB_HOME/runjob$i.sh + #point to the correct CERN ROOT + echo "source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh " >> $JOB_HOME/runjob$i.sh + #include the gsl libraries + echo "export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/work/leverington/gsl-2.4/lib " >> $JOB_HOME/runjob$i.sh + + #execute this command + echo "/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/analyse2 PiN_run$i.root" >> $JOB_HOME/runjob$i.sh + + + + qsub -l os=slc6 -l ujl=20 -cwd -j yes $JOB_HOME/runjob$i.sh +sleep 1 +done diff --git a/Scripts_20161126/runconvertJob.sh b/Scripts_20161126/runconvertJob.sh new file mode 100755 index 0000000..2398d53 --- /dev/null +++ b/Scripts_20161126/runconvertJob.sh @@ -0,0 +1,24 @@ +HOME=/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126 +mkdir -p $HOME/jobs +JOB_HOME=$HOME/jobs + +cd $JOB_HOME +for i in {1..129} +do + rm $JOB_HOME/runconvertjob$i.sh + touch $JOB_HOME/runconvertjob$i.sh + echo "#!/bin/bash" >> $JOB_HOME/runconvertjob$i.sh + echo ". /local/env.sh" >> $JOB_HOME/runconvertjob$i.sh + echo ". /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v8r1p1/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc48-opt" >> $JOB_HOME/runconvertjob$i.sh +# echo ". SetupProject.sh Geant4" >> $JOB_HOME/runconvertjob$i.sh + echo "source /home/lhcb/leverington/.profile" >> $JOB_HOME/runconvertjob$i.sh + #point to the correct CERN ROOT + echo "source /work/leverington/root-install/bin/thisroot.sh" >> $JOB_HOME/runconvertjob$i.sh + #execute this command + echo "/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161126/convert_batch PiN_run$i.csv" >> $JOB_HOME/runconvertjob$i.sh + + + + qsub -l os=slc6 -l ujl=20 -cwd -j yes $JOB_HOME/runconvertjob$i.sh +sleep 1 +done diff --git a/Scripts_20161126/skewfile.txt b/Scripts_20161126/skewfile.txt new file mode 100644 index 0000000..1db1e7a --- /dev/null +++ b/Scripts_20161126/skewfile.txt @@ -0,0 +1,99 @@ +12.6088 0.104547 0.0598724 +10.5936 0.0854995 0.0404541 +9.36031 0.0806685 0.0380138 +8.51336 0.0833804 0.0280558 +7.88605 0.0747833 0.0232352 +7.39682 0.0605598 0.0259975 +7.00082 0.0481367 0.0270569 +6.67084 0.0411384 0.029664 +6.39059 0.037589 0.0329703 +6.14881 0.0344978 0.0342072 +5.93691 0.0309391 0.0329856 +5.74999 0.0273383 0.030044 +5.58275 0.0298266 0.0399458 +5.43216 0.0212692 0.0263525 +5.29477 0.0220903 0.0287275 +5.16875 0.0208591 0.0312274 +5.05214 0.0169415 0.0269199 +4.94396 0.0162001 0.028039 +4.84371 0.0169133 0.0294658 +4.7504 0.0156461 0.023593 +4.62797 0.0155633 0.0224694 +4.51492 0.0143291 0.0240945 +4.41193 0.0135304 0.0203419 +4.31778 0.0140509 0.0237585 +4.23108 0.0132554 0.0190672 +4.15089 0.0164206 0.0236732 +40.9872 0.0490469 0.0765623 +36.5311 0.0431931 0.0864726 +33.3966 0.0358693 0.0823902 +31.0354 0.0350977 0.0783519 +29.1728 0.0437811 0.100641 +27.6535 0.0655916 0.125864 +26.4152 0.0565436 0.111143 +25.2997 0.0549188 0.102876 +24.2755 0.0677072 0.121064 +23.5412 0.0757419 0.131307 +22.8107 0.0804714 0.132615 +22.1585 0.0806455 0.132077 +21.5696 0.0774543 0.133442 +21.0355 0.0779955 0.145967 +20.5468 0.106328 0.14739 +20.099 0.121001 0.170284 +19.6851 0.120603 0.172381 +19.3016 0.104795 0.151612 +18.9455 0.0522211 0.115898 +18.4699 0.0435309 0.0950811 +18.0231 0.0507989 0.116904 +17.6151 0.0597459 0.197881 +17.6151 0.0569971 0.126304 +17.2409 0.0703261 0.1282 +16.8956 0.0745205 0.123539 +16.5761 0.0838024 0.137186 +281.17 0.0596172 0.0596484 +238.032 0.0406623 0.0676249 +212.434 0.0338255 0.0494346 +194.949 0.033794 0.100223 +181.707 0.0337548 0.0555547 +171.379 0.0310395 0.03185 +163.143 0.0290953 0.0379269 +155.987 0.0303026 0.222464 +150.13 0.0255917 0.0291719 +145.288 0.0259861 0.0403615 +140.907 0.0241999 0.0284604 +136.922 0.0236714 0.0293949 +133.574 0.0245857 0.0409196 +130.481 0.0238549 0.027706 +127.616 0.0258582 0.0345401 +124.954 0.027636 0.0299221 +122.474 0.0327859 0.260365 +120.362 0.0269804 0.0268286 +118.373 0.0293499 0.0281481 +116.315 0.0280115 0.030968 +113.872 0.0295452 0.0658751 +111.453 0.0296539 0.0282995 +109.36 0.031546 0.0303119 +107.408 0.0280381 0.029692 +105.71 0.0275871 0.0279682 +103.993 0.0349282 0.0330846 +444.422 0.0668169 0.125855 +377.991 0.047373 0.0480068 +337.641 0.0403514 0.0464993 +310.049 0.0404474 0.0408478 +289.655 0.0404782 0.0709546 +273.879 0.0400891 0.0588049 +261.017 0.0410605 0.0509597 +250.406 0.0366475 0.0367953 +241.353 0.0378284 0.276402 +233.587 0.0419373 0.0390912 +226.809 0.0416365 0.0370636 +220.824 0.0414282 0.0370641 +215.458 0.0437128 0.0392907 +210.691 0.040934 0.0374278 +206.301 0.0396396 0.0353792 +202.283 0.0408388 0.0369678 +198.535 0.0410783 0.0366643 +195.17 0.0418097 0.0369665 +191.994 0.0472962 0.0381209 +189.171 0.046627 0.0377065 +185.146 0.0453549 0.0395054 diff --git a/Scripts_20161126/skewfile_int_c.txt b/Scripts_20161126/skewfile_int_c.txt new file mode 100644 index 0000000..1a2939e --- /dev/null +++ b/Scripts_20161126/skewfile_int_c.txt @@ -0,0 +1,9 @@ +1.99418 0.0801807 0.0641747 +2.99221 0.0781907 0.0657205 +4.99357 0.0710283 0.0571989 +8.00451 0.0645954 0.0514026 +9.96037 0.0614197 0.0492925 +14.9624 0.0643935 0.0533545 +19.9591 0.0628996 0.0512291 +29.9598 0.0571731 0.047731 +50.0967 0.0564874 0.045095 diff --git a/Scripts_20161126/skewfile_int_p.txt b/Scripts_20161126/skewfile_int_p.txt new file mode 100644 index 0000000..1f3a767 --- /dev/null +++ b/Scripts_20161126/skewfile_int_p.txt @@ -0,0 +1,10 @@ +77.5122 0.0591244 0.0570536 +116.351 0.0410839 0.041758 +193.951 0.0285528 0.0287509 +310.193 0.0226184 0.0218521 +387.817 0.0197053 0.0183498 +581.737 0.0174172 0.0165854 +776.317 0.0165637 0.0164118 +1164.85 0.0160625 0.0179056 +1948.34 0.0176946 0.0277332 +3130.55 0.0189052 0.0322914 diff --git a/Scripts_20161126/testmacro.C b/Scripts_20161126/testmacro.C new file mode 100644 index 0000000..a5d3e62 --- /dev/null +++ b/Scripts_20161126/testmacro.C @@ -0,0 +1,78 @@ +{ + gROOT->ProcessLine(".x lhcbStyle.C"); + + TCanvas c1_mg1_e9; + + TGraph * ge9_p = new TGraph("energylist_p_bpmbeta1.txt","%lg %lg "); + TGraph * ge9_he = new TGraph("energylist_he_bpmbeta1.txt","%lg %lg"); + TGraph * ge9_c = new TGraph("energylist_c_bpmbeta1.txt","%lg %lg "); + TGraph * ge9_o = new TGraph("energylist_o_bpmbeta1.txt","%lg %lg "); + TMultiGraph * mg_e9 = new TMultiGraph(); + mg_e9->Add(ge9_p,"p"); ge9_p->SetMarkerStyle(20); + mg_e9->Add(ge9_he,"p"); ge9_he->SetMarkerStyle(21); + mg_e9->Add(ge9_c,"p"); ge9_c->SetMarkerStyle(22); + mg_e9->Add(ge9_o,"p"); ge9_o->SetMarkerStyle(23); + // mg_e9->Add(ge9_sum,"p"); ge9_sum->SetMarkerStyle(1); + + + TF1 * tf1_btvbeta1 = new TF1("tf1_btvbeta1","[0]*( (1- 0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1]) -x*x )/(TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7) -x*x )) / (1+[2]* (1- 0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1]) -x*x )/(TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7) -x*x ))*1*1.65901*TMath::Power(x,-1.7218)) + 0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1]) -x*x )/(TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7) -x*x ) ) ",0,1); + + tf1_btvbeta1->SetParLimits(0,0,1.5); + tf1_btvbeta1->SetParLimits(1,0,1E4.); + tf1_btvbeta1->SetParLimits(2,0.001,.03); + tf1_btvbeta1->SetParameters(1,0, 0.01); + +TF1 * tf1_btvbeta2 = new TF1("tf1_btvbeta1","[0]*( (1- 0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1]) -x*x )/(TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7) -x*x )) / (1+[2]* (1- 0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1]) -x*x )/(TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7) -x*x ))*4*1.65901*TMath::Power(x,-1.7218)) + 0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1]) -x*x )/(TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7) -x*x ) ) ",0,1); + + tf1_btvbeta2->SetParLimits(0,0,1.5); + tf1_btvbeta2->SetParLimits(1,0,1E4.); + tf1_btvbeta2->SetParLimits(2,0.001,.03); + tf1_btvbeta2->SetParameters(1,0.002, 0.01); + +TF1 * tf1_btvbeta3 = new TF1("tf1_btvbeta1","[0]*( (1- 0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1]) -x*x )/(TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7) -x*x )) / (1+[2]* (1- 0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1]) -x*x )/(TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7) -x*x ))*36*1.65901*TMath::Power(x,-1.7218)) + 0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1]) -x*x )/(TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7) -x*x ) ) ",0,1); + + tf1_btvbeta3->SetParLimits(0,0,2.5); + tf1_btvbeta3->SetParLimits(1,0,1E4.); + tf1_btvbeta3->SetParLimits(2,0.001,0.03); + tf1_btvbeta3->SetParameters(1,9.7E3, 0.01); + +TF1 * tf1_btvbeta4 = new TF1("tf1_btvbeta1","[0]*( (1- 0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1]) -x*x )/(TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7) -x*x )) / (1+[2]* (1- 0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1]) -x*x )/(TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7) -x*x ))*64*1.65901*TMath::Power(x,-1.7218)) + 0.5*(TMath::Log(2*0.511E6*x*x/(1-x*x)/[1]) -x*x )/(TMath::Log(2*0.511E6*x*x/(1-x*x)/68.7) -x*x ) ) ",0,1); + + tf1_btvbeta4->SetParLimits(0,0,2.5); + tf1_btvbeta4->SetParLimits(1,0,1E4.); + tf1_btvbeta4->SetParLimits(2,0.01,0.03); + tf1_btvbeta4->SetParameters(1,9.7E3, 0.01); + + + mg_e9->Draw("a"); + mg_e9->SetTitle(" "); + mg_e9->GetXaxis()->SetTitle("Lorentz #beta"); + mg_e9->GetYaxis()->SetTitle("#frac{dA}{dE}"); + mg_e9->SetMinimum(0.0); + // mg_e9->SetMaximum(40.); + // gPad->SetLogx(); + ge9_p->Fit(tf1_btvbeta1); + ge9_he->Fit(tf1_btvbeta2); + ge9_c->Fit(tf1_btvbeta3); + ge9_o->Fit(tf1_btvbeta4); + + + + mylegende9 = new TLegend(0.70,0.7,0.9,0.9); + mylegende9->SetFillColor(0); // white background + mylegende9->SetTextFont(22); + mylegende9->SetBorderSize(0); // get rid of the box + mylegende9->SetTextSize(0.047); // set text size + mylegende9->AddEntry(ge9_p,"Protons","p"); // options: p,l,f + mylegende9->AddEntry(ge9_he,"Helium","p"); // options: p,l,f + mylegende9->AddEntry(ge9_c,"Carbon","p"); // options: p,l,f + mylegende9->AddEntry(ge9_o,"Oxygen","p"); // options: p,l,f + // mylegende9->AddEntry(tf1_pow1,"[1]#upointpow(#beta,[2])}","l"); // options: p,l,f + mylegende9->Draw(); + gPad->Modified(); + c1_mg1_e9->SaveAs("figs/bpmbeta1.pdf"); + c1_mg1_e9->SaveAs("figs/bpmbeta1.png"); + c1_mg1_e9->SaveAs("figs/bpmbeta1.C"); + + +} diff --git a/Scripts_20161201/Scripts_20161201/#Makefile# b/Scripts_20161201/Scripts_20161201/#Makefile# new file mode 100644 index 0000000..a2b69f0 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/#Makefile# @@ -0,0 +1,32 @@ +PROGNAME = convert +#convert ## analyse +SOURCEFILES = convert.c +OBJS = $(patsubst %.c, %.o, $(SOURCEFILES)) + + +ROOTCFLAGS := $(shell root-config --cflags) +ROOTLIBS := $(shell root-config --libs) +ROOTGLIBS := $(shell root-config --glibs) + +LDFLAGS = -O +LIBS += $(ROOTLIBS) +CFLAGS += $(ROOTCFLAGS) + +# Not sure why Minuit isn't being included -- put in by hand +# +LIBS += -lMinuit + + + +$(PROGNAME): $(OBJS) + g++ -o $@ $(OBJS) $(LDFLAGS) $(LIBS) + +%.o: %.c + g++ ${CFLAGS} -c -g $< + +test: + @echo $(ROOTCFLAGS) + +clean: + -rm -f ${PROGNAME} ${OBJS} + diff --git a/Scripts_20161201/Scripts_20161201/Makefile b/Scripts_20161201/Scripts_20161201/Makefile new file mode 100644 index 0000000..d50c19a --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/Makefile @@ -0,0 +1,83 @@ + +ROOTCFLAGS := $(shell root-config --cflags) +ROOTLIBS := $(shell root-config --libs) +ROOTGLIBS := $(shell root-config --glibs) + +GSLCFLAGS := $(shell gsl-config --cflags) +GSLLIBS := $(shell gsl-config --libs) +GSLGLIBS := $(shell gsl-config --glibs) + + +LDFLAGS = -O +LIBS += $(ROOTLIBS) $(GSLLIBS) +CFLAGS += $(ROOTCFLAGS) $(GSLCFLAGS) #-std=gnu++11 + +# Not sure why Minuit isn't being included -- put in by hand +# +LIBS += -lMinuit + + +all: convert analyse analyse_batch plot + + +plot: plot.o + g++ -o plot plot.o $(LDFLAGS) $(LIBS) + +%.o: %.c + g++ ${CFLAGS} -c -g $< + +plotdata_intensity_proton: plotdata_intensity_proton.o + g++ -o plotdata_intensity_proton plotdata_intensity_proton.o $(LDFLAGS) $(LIBS) + +%.o: %.c + g++ ${CFLAGS} -c -g $< + +plotdata_intensity_carbon: plotdata_intensity_carbon.o + g++ -o plotdata_intensity_carbon plotdata_intensity_carbon.o $(LDFLAGS) $(LIBS) + +%.o: %.c + g++ ${CFLAGS} -c -g $< + + +analyse: analyse.o + g++ -o analyse analyse.o $(LDFLAGS) $(LIBS) + +%.o: %.c + g++ ${CFLAGS} -c -g $< + + +convert: convert.o + g++ -o convert convert.o $(LDFLAGS) $(LIBS) + +%.o: %.c + g++ ${CFLAGS} -c -g $< + + +convert_batch: convert_batch.o + g++ -o convert_batch convert_batch.o $(LDFLAGS) $(LIBS) + +%.o: %.c + g++ ${CFLAGS} -c -g $< + + +analyse_batch: analyse_batch.o + g++ -o analyse_batch analyse_batch.o $(LDFLAGS) $(LIBS) + +%.o: %.c + g++ ${CFLAGS} -c -g $< + +analyse2: analyse2.o + g++ -o analyse2 analyse2.o $(LDFLAGS) $(LIBS) + +%.o: %.c + g++ ${CFLAGS} -c -g $< + + +test: + @echo $(ROOTCFLAGS) + @echo $(LDFLAGS) + @echo $(LIBS) + +clean: + -rm -f *.o + diff --git a/Scripts_20161201/Scripts_20161201/Readme.txt b/Scripts_20161201/Scripts_20161201/Readme.txt new file mode 100644 index 0000000..bcb5357 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/Readme.txt @@ -0,0 +1,14 @@ +These scripts are for the data on 2016.11.26 + +1. The raw data of HIT and Fiber in csv format is converted into root tree with "./convert" + + //"convert" is compiled form convert.c with MAKEFILE + //Before using it, please change the PATH for the HIT data and Fiber data in "convert.c", and the filename in MAKEFILE + +2. Then analyse the data with "./analyse". The output is a root file with multiple histograms. + + //"analyse" is compiled form analyse.c with MAKEFILE + //Before using it, please change the PATH for the root file in "analyse.c", and the filename in MAKEFILE + +3. A PDF file is generated from the root file with command "root -q -b process.c" + It contains some histograms of the root file. diff --git a/Scripts_20161201/Scripts_20161201/analyse b/Scripts_20161201/Scripts_20161201/analyse new file mode 100755 index 0000000..202dadf Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/analyse differ diff --git a/Scripts_20161201/Scripts_20161201/analyse.c b/Scripts_20161201/Scripts_20161201/analyse.c new file mode 100644 index 0000000..41d7114 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/analyse.c @@ -0,0 +1,52 @@ +#include +#include +#include +#include +#include + +#include +#include +#include + +#include "beammon.h" + +using namespace std; + +int main(int argc, char **argv) +{ + + // Working directories + const char *dirname = "/work/leverington/beamprofilemonitor/hitdata/HIT_01-12-2016/"; + const char *pin_dirname = "/work/leverington/beamprofilemonitor/hitdata/HIT_01-12-2016/with_timestamp/"; + const char *ext = ".root"; + TSystemDirectory pin_dir(pin_dirname, pin_dirname); + TList *files = pin_dir.GetListOfFiles(); + + if (files) + { + TSystemFile* file; + TString fname = ' '; + TIter next(files); + + while ((file = (TSystemFile *)next())) + { + fname = file->GetName(); + + // Loop over all files PiN_run***.root + if (!file->IsDirectory() && fname.EndsWith(ext) && !fname.BeginsWith("SAVE") && fname.BeginsWith("PiN_run")) + { + Beammon *mon = new Beammon(); + printf("File name: %s \n", fname.Data()); + + // Main part + // Initialize(DIRName, FileName, baselineEvents, prelimEvents, beamLevel, firstFibermat, readOutFrequency in Hz, integrationTime in us) + mon->Initialize(dirname, fname.Data(), 16700, 10000, 1., true, 1000., 100.); + mon->Save(); + + delete mon; + } + } + } + + return 0; +} diff --git a/Scripts_20161201/Scripts_20161201/analyse2 b/Scripts_20161201/Scripts_20161201/analyse2 new file mode 100755 index 0000000..ec67883 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/analyse2 differ diff --git a/Scripts_20161201/Scripts_20161201/analyse2.c b/Scripts_20161201/Scripts_20161201/analyse2.c new file mode 100644 index 0000000..a1a42da --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/analyse2.c @@ -0,0 +1,324 @@ +#define analyse2_cxx +#include "analyse2.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include +#include +using namespace std; + + + +void analyse2::Loop() +{ +// In a ROOT session, you can do: +// Root > .L analyse2.C +// Root > analyse2 t +// Root > t.GetEntry(12); // Fill t data members with entry number 12 +// Root > t.Show(); // Show values of entry 12 +// Root > t.Show(16); // Read and show values of entry 16 +// Root > t.Loop(); // Loop on all entries +// + +// This is the loop skeleton where: +// jentry is the global entry number in the chain +// ientry is the entry number in the current Tree +// Note that the argument to GetEntry must be: +// jentry for TChain::GetEntry +// ientry for TTree::GetEntry and TBranch::GetEntry +// +// To read only selected branches, Insert statements like: +// METHOD1: +// fChain-> ve types of modulesSetBranchStatus("*",0); // disable all branches +// fChain->SetBranchStatus("branchname",1); // activate branchname +// METHOD2: replace line +// fChain->GetEntry(jentry); //read all branches +//by b_branchname->GetEntry(ientry); //read only this branch + if (fChain == 0) return; + + Double_t totalcurrent = 0.; + Double_t totaltime = 0.; + const int length = 100; + double array[length] = {0.}; + double arrayavg = 0.; + TF1 * bkgfunc = new TF1("bkgfunc","[0]+[1]*TMath::Cos(x*[2]*(2*3.14159)+[3])"); + bkgfunc->SetParameters( bkgfitPar0[64], bkgfitPar1[64], bkgfitPar2[64], bkgfitPar3[64]); + TF1 * gausfunc = new TF1("gausfunc","gaus(0)+[3]"); + TF1 * gausfunc2 = new TF1("gausfunc2","gaus(0)+[3]"); + + // TF1 * gausfunc2 = new TF1("gausfunc2","[0]*exp(-((x-[1])/[2])^2) +[3]*exp(-((x-[1])/[4])^2) + [5]"); + TGraphErrors * gausgraph; + + int numoverthresh=0; + double maxchannelamp = 0.; + double threshold = 10.; + int maxchannel = 0; + int numtocalc = 0; + int sidenumtocalc= 0; + Long64_t nentries = fChain->GetEntries(); + Long64_t ientry = LoadTree(1); + fChain->GetEntry(1); + Double_t basetimeoffset = time; + Double_t channelamp[128] = {0.}; + Double_t abschannelamp[128] = {0.}; + Double_t channelamp2[128] = {0.}; + Double_t abschannelamp2[128] = {0.}; + + Bool_t beamonflag = false; + Int_t waitcounter = 0; + Int_t lastfit = 0; + Int_t lastfit2 = 0; + Double_t channellist_gsl[128]; + Double_t channellist_gsl2[128]; + + Long64_t nbytes = 0, nb = 0; + for (Long64_t jentry=0; jentryGetEntry(jentry); nbytes += nb; + // if (Cut(ientry) < 0) continue; + time_1 = time-basetimeoffset; + ic1_1 = ic1; + ic2_1 = ic2; + mw1_focusx_1 = mw1_focusx; + mw1_focusy_1 = mw1_focusy; + mw2_focusx_1 = mw2_focusx; + mw2_focusy_1 = mw2_focusy; + mw1_posx_1 = mw1_posx; + mw1_posy_1 = mw1_posy; + mw2_posx_1 = mw2_posx; + mw2_posy_1= mw2_posy; + eventid_1 = jentry; + if (jentry % 1000 ==0) cout << jentry << " events completed..." << endl; + + //calculate a rolling average of the signal + arrayavg = 0; + + for (int i = 1; i-100) array[length-1] = ic1_1 ; + + for (int i = 0; i0.5 && !beamonflag && jentry>5000) { + beamonflag = true; beamon = 1; + cout << "Beam On: " << jentry << endl; + + Baseline(true,1800,int(jentry-2000),true); + // bkgfunc->SetParameters( bkgfitPar0[128], bkgfitPar1[128], bkgfitPar2[128], bkgfitPar3[128]); + + } + if(rollingavg <0.25 && beamonflag && jentry>5000 ) + { + beamonflag = false; + beamon = 0; + } + + + + if (ic1_1>0.01) {totaltime+=0.100; totalcurrent+=ic1_1;} + for (int ch = 4; ch < 128; ch++){ + bkgfunc->SetParameters( bkgfitPar0[ch], bkgfitPar1[ch], bkgfitPar2[ch], bkgfitPar3[ch]); //set the parameters for the common mode subtraction + channelamp[ch] = channels[ch]- baseline[ch] - bkgfunc->Eval(time_1); //subtract the baseline + if (beamon==1&&ic1_1>0.01) th2d_beamSignal_channel->Fill(ch,channelamp[ch]); + if (beamon==0&&ic1_1<=0.01) th2d_bkg_channel->Fill(ch,channelamp[ch]); + + } + // calculate mean and integral + beamSignal_1 = 0.; + numoverthresh=0; + maxchannelamp = 0.; + threshold = 20.; + maxchannel = 0; + // cout << (time_1-basetimeoffset)<< endl; + for (int ch = 4; ch < 64; ch++){ + // bkgfunc->SetParameters( bkgfitPar0[ch], bkgfitPar1[ch], bkgfitPar2[ch], bkgfitPar3[ch]); //set the parameters for the common mode subtraction + // channelamp[ch] = channels[ch]- baseline[ch] - bkgfunc->Eval(time_1); //subtract the baseline + //channelamp_smooth[ch] = channelamp[ch];//to be smoothed later + if (channelamp[ch] < 0.) {abschannelamp[ch] = 0.;} + else {abschannelamp[ch] = channelamp[ch];} + + if (ic1_1>0.01) th2d_beamSignal_channel->Fill(ch,channelamp[ch]); + if (ic1_1<=0.01) th2d_bkg_channel->Fill(ch,channelamp[ch]); + + if ( channelamp[ch] >threshold) { + numoverthresh++; + if ( channelamp[ch] > maxchannelamp) { + maxchannelamp = channelamp[ch] ; + maxchannel = ch; + } + } + channellist_gsl[ch] = 0; + channelamp_smooth[ch] = 0.; + } + numoverthresh+=4; + numtocalc = 0; + sidenumtocalc = 0; + for (int ch = maxchannel-numoverthresh/2 ; ch < maxchannel + numoverthresh/2; ch++){ + if (ch>=4 && ch<=63){ + beamSignal_1 += channelamp[ch]; //integrate the signal around the peak channel + channelamp_smooth[numtocalc] =channelamp[ch] ; + channellist_gsl[numtocalc] = ch; + numtocalc++; + } + } + beamSidebandNoise_1 = 0.; + for (int ch = 4; ch < maxchannel-numoverthresh/2; ch++){ + if (ch>=4 && ch<=63){ + beamSidebandNoise_1 += channelamp[ch]; //integrate the noise outside the peak + sidenumtocalc++; + } + } + for (int ch = maxchannel+numoverthresh/2; ch < 64; ch++){ + if (ch>=4 && ch<=63){ + beamSidebandNoise_1 += channelamp[ch]; //integrate the noise outside the peak + sidenumtocalc++; + } + } + beamSidebandNoise_1 = beamSidebandNoise_1 /double(sidenumtocalc)*double(numtocalc); + + // if (ic1_1<=5 && ic2_1<=5 && jentry<1000) { cout << beamSignal_1 << " "<<(time_1)<<" " << bkgfunc->Eval((time_1)) << endl; } + // beamSignal_1 -= bkgfunc->Eval(time_1); + + //statistical analysis of the beam position + // FFTsmoothing(channelamp_smooth);//Fourier transform smoothing + + + + beamPosX_1 = gsl_stats_wmean(channelamp_smooth,1,channellist_gsl,1,numtocalc); //calculate the weighted mean + beamFocusX_1 = gsl_stats_wsd_with_fixed_mean(channelamp_smooth,1,channellist_gsl,1,numtocalc,beamPosX_1); //SD + beamSkewX_1 = gsl_stats_wskew_m_sd(channelamp_smooth,1,channellist_gsl,1,numtocalc,beamPosX_1,beamFocusX_1); //skewness (symmetry) + beamKurtX_1 = gsl_stats_wkurtosis_m_sd(channelamp_smooth,1,channellist_gsl,1,numtocalc,beamPosX_1,beamFocusX_1); //excess kurtosis (well behaved tails) + beamNumX_1 = numtocalc; + beamFocusX_1 *=2.3548;//SD-->FWHM + + + if (ic1_1>0.01 && beamSignal_1>5) th2d_mw1_beamPosX->Fill(mw1_posx_1,beamPosX_1); + if (ic1_1>0.01 && beamSignal_1>5) th2d_ic1_beamSignal->Fill(ic1_1,beamSignal_1); + if (ic1_1>0.01 && beamSignal_1>5) th1d_beamSignal_ic1ratio->Fill(beamSignal_1/ic1_1); + + + //fit with a gaussian function; + if (beamon==1&&ic1_1>0.05){ + if (numtocalc>10&&numtocalc<50){ + gausfunc->SetParameters(beamSignal_1/(sqrt(2)*beamFocusX_1/2.3548),beamPosX_1,beamFocusX_1/2.3548,0.); + gausfunc2->SetParameters(beamSignal_1/(sqrt(2)*beamFocusX_1/2.3548),128-beamPosX_1,beamFocusX_1/2.3548,0.); + + } + else{ + gausfunc->SetParameters(500.,32.,10.,0.); + gausfunc2->SetParameters(500.,92.,10.,0.); + } + + + gausfunc->SetParLimits(0,0.,10000.); + gausfunc->SetParLimits(1,10.,50.); + gausfunc->SetParLimits(2,0.5,30.); + gausfunc->SetParLimits(3,-150.,150.); + + gausfunc2->SetParLimits(0,0.,10000.); + gausfunc2->SetParLimits(1,64,124); + gausfunc2->SetParLimits(2,0.5,30.); + gausfunc2->SetParLimits(3,-150.,150.); + + gausgraph = new TGraphErrors(128,channellist,channelamp,errorx,errory); + lastfit = gausgraph->Fit(gausfunc,"QRN","",4,60); // single gaussian fit + lastfit2 = gausgraph->Fit(gausfunc2,"QRN","",68,124);// second peak + + beamPosX_fit = gausfunc->GetParameter(1); + beamFocusX_fit =2.3548* gausfunc->GetParameter(2); + beamChi2_fit = gausfunc->GetChisquare()/gausfunc->GetNDF(); + beamPeakX_fit = gausfunc->GetParameter(0); + + beamPosX_fit2 = gausfunc2->GetParameter(1); + beamFocusX_fit2 =2.3548* gausfunc2->GetParameter(2); + beamChi2_fit2 = gausfunc2->GetChisquare()/gausfunc2->GetNDF(); + beamPeakX_fit2 = gausfunc2->GetParameter(0); + + for (int ch = 4; ch < 64; ch++){ + th2d_fitdiff_channel->Fill(ch, double(channelamp[ch]-gausfunc->Eval(ch))); + } + for (int ch = 64; ch < 128; ch++){ + th2d_fit2diff_channel->Fill(ch, double(channelamp[ch]-gausfunc2->Eval(ch))); + } + + } + + + newdata->Fill(); + + } + TVectorD v(10); + v[0] = totalcurrent; + v[1] = totaltime; + v.Write("icinfo"); + th2d_mw1_beamPosX->Write(); + th2d_ic1_beamSignal->Write(); + th1d_beamSignal_ic1ratio->Write(); + th2d_beamSignal_channel->Write(); + th2d_bkg_channel->Write(); + th2d_fitdiff_channel->Write(); + th2d_fit2diff_channel->Write(); + newdata->Write(); +} + + +int main(int argc, char **argv) +{ + // Working directories + const char *dirname = "/work/leverington/beamprofilemonitor/hitdata/HIT_01-12-2016/with_timestamp/"; + const char *pin_dirname = "/work/leverington/beamprofilemonitor/hitdata/HIT_01-12-2016/with_timestamp/pin/"; + const char *ext = ".root"; + TSystemDirectory pin_dir(pin_dirname, pin_dirname); + + if (true) + { + TSystemFile* file; + TString fname = argv[1]; + + + + // fname = file->GetName(); + + // execute single PiN_run***.root + if ( fname.EndsWith(ext) && !fname.BeginsWith("SAVE") && fname.BeginsWith("PiN_run")) + { + analyse2 *mon = new analyse2(); + printf("File name: %s \n", fname.Data()); + + // Main part + // Initialize(DIRName, FileName, baselineEvents, prelimEvents, beamLevel, firstFibermat, readOutFrequency in Hz, integrationTime in us) + mon->Initialize(dirname, fname.Data(), 3200, 10000, 1., true, 1000., 0.); + mon->Baseline(true,1000,1,true); + mon->Loop(); //analysis loop + + // cout << th2d_mw1_beamPosX->GetCorrelationFactor() << endl; + mon->Save();//save output tree file + // mon->Close();//close output tree file + + delete mon; + + } + + } + return 0; +} diff --git a/Scripts_20161201/Scripts_20161201/analyse2.h b/Scripts_20161201/Scripts_20161201/analyse2.h new file mode 100644 index 0000000..20406d1 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/analyse2.h @@ -0,0 +1,989 @@ +////////////////////////////////////////////////////////// +// This class has been automatically generated on +// Tue Sep 12 15:40:57 2017 by ROOT version 5.34/32 +// from TTree t/t +// found on file: ../../HIT_26-11-2016/with_timestamp/pin/PiN_run1.root +////////////////////////////////////////////////////////// + +#ifndef analyse2_h +#define analyse2_h + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + + +using namespace std; + +// Header file for the classes stored in the TTree if any. + +// Fixed size dimensions of array or collections stored in the TTree if any. + +class analyse2 { + + + +public : + TTree *fChain; //!pointer to the analyzed TTree or TChain + Int_t fCurrent; //!current Tree number in a TChain + TTree *data; + TTree *newdata; + // Declaration of leaf types + Double_t time; + Double_t event_id; + Double_t sync_out; + Double_t sync_in; + Double_t data_ok; + Double_t led_voltage; + Double_t current; + Double_t ch00; + Double_t ch01; + Double_t ch02; + Double_t ch03; + Double_t ch04; + Double_t ch05; + Double_t ch06; + Double_t ch07; + Double_t ch08; + Double_t ch09; + Double_t ch10; + Double_t ch11; + Double_t ch12; + Double_t ch13; + Double_t ch14; + Double_t ch15; + Double_t ch16; + Double_t ch17; + Double_t ch18; + Double_t ch19; + Double_t ch20; + Double_t ch21; + Double_t ch22; + Double_t ch23; + Double_t ch24; + Double_t ch25; + Double_t ch26; + Double_t ch27; + Double_t ch28; + Double_t ch29; + Double_t ch30; + Double_t ch31; + Double_t ch32; + Double_t ch33; + Double_t ch34; + Double_t ch35; + Double_t ch36; + Double_t ch37; + Double_t ch38; + Double_t ch39; + Double_t ch40; + Double_t ch41; + Double_t ch42; + Double_t ch43; + Double_t ch44; + Double_t ch45; + Double_t ch46; + Double_t ch47; + Double_t ch48; + Double_t ch49; + Double_t ch50; + Double_t ch51; + Double_t ch52; + Double_t ch53; + Double_t ch54; + Double_t ch55; + Double_t ch56; + Double_t ch57; + Double_t ch58; + Double_t ch59; + Double_t ch60; + Double_t ch61; + Double_t ch62; + Double_t ch63; + Double_t ch64; + Double_t ch65; + Double_t ch66; + Double_t ch67; + Double_t ch68; + Double_t ch69; + Double_t ch70; + Double_t ch71; + Double_t ch72; + Double_t ch73; + Double_t ch74; + Double_t ch75; + Double_t ch76; + Double_t ch77; + Double_t ch78; + Double_t ch79; + Double_t ch80; + Double_t ch81; + Double_t ch82; + Double_t ch83; + Double_t ch84; + Double_t ch85; + Double_t ch86; + Double_t ch87; + Double_t ch88; + Double_t ch89; + Double_t ch90; + Double_t ch91; + Double_t ch92; + Double_t ch93; + Double_t ch94; + Double_t ch95; + Double_t ch96; + Double_t ch97; + Double_t ch98; + Double_t ch99; + Double_t ch100; + Double_t ch101; + Double_t ch102; + Double_t ch103; + Double_t ch104; + Double_t ch105; + Double_t ch106; + Double_t ch107; + Double_t ch108; + Double_t ch109; + Double_t ch110; + Double_t ch111; + Double_t ch112; + Double_t ch113; + Double_t ch114; + Double_t ch115; + Double_t ch116; + Double_t ch117; + Double_t ch118; + Double_t ch119; + Double_t ch120; + Double_t ch121; + Double_t ch122; + Double_t ch123; + Double_t ch124; + Double_t ch125; + Double_t ch126; + Double_t ch127; + Double_t ic1; + Double_t ic2; + Double_t mw1_focusx; + Double_t mw1_focusy; + Double_t mw2_focusx; + Double_t mw2_focusy; + Double_t mw1_posx; + Double_t mw1_posy; + Double_t mw2_posx; + Double_t mw2_posy; + + // List of branches + TBranch *b_time; //! + TBranch *b_event_id; //! + TBranch *b_sync_out; //! + TBranch *b_sync_in; //! + TBranch *b_data_ok; //! + TBranch *b_led_voltage; //! + TBranch *b_current; //! + TBranch *b_ch00; //! + TBranch *b_ch01; //! + TBranch *b_ch02; //! + TBranch *b_ch03; //! + TBranch *b_ch04; //! + TBranch *b_ch05; //! + TBranch *b_ch06; //! + TBranch *b_ch07; //! + TBranch *b_ch08; //! + TBranch *b_ch09; //! + TBranch *b_ch10; //! + TBranch *b_ch11; //! + TBranch *b_ch12; //! + TBranch *b_ch13; //! + TBranch *b_ch14; //! + TBranch *b_ch15; //! + TBranch *b_ch16; //! + TBranch *b_ch17; //! + TBranch *b_ch18; //! + TBranch *b_ch19; //! + TBranch *b_ch20; //! + TBranch *b_ch21; //! + TBranch *b_ch22; //! + TBranch *b_ch23; //! + TBranch *b_ch24; //! + TBranch *b_ch25; //! + TBranch *b_ch26; //! + TBranch *b_ch27; //! + TBranch *b_ch28; //! + TBranch *b_ch29; //! + TBranch *b_ch30; //! + TBranch *b_ch31; //! + TBranch *b_ch32; //! + TBranch *b_ch33; //! + TBranch *b_ch34; //! + TBranch *b_ch35; //! + TBranch *b_ch36; //! + TBranch *b_ch37; //! + TBranch *b_ch38; //! + TBranch *b_ch39; //! + TBranch *b_ch40; //! + TBranch *b_ch41; //! + TBranch *b_ch42; //! + TBranch *b_ch43; //! + TBranch *b_ch44; //! + TBranch *b_ch45; //! + TBranch *b_ch46; //! + TBranch *b_ch47; //! + TBranch *b_ch48; //! + TBranch *b_ch49; //! + TBranch *b_ch50; //! + TBranch *b_ch51; //! + TBranch *b_ch52; //! + TBranch *b_ch53; //! + TBranch *b_ch54; //! + TBranch *b_ch55; //! + TBranch *b_ch56; //! + TBranch *b_ch57; //! + TBranch *b_ch58; //! + TBranch *b_ch59; //! + TBranch *b_ch60; //! + TBranch *b_ch61; //! + TBranch *b_ch62; //! + TBranch *b_ch63; //! +TBranch *b_ch64; //! + TBranch *b_ch65; //! + TBranch *b_ch66; //! + TBranch *b_ch67; //! + TBranch *b_ch68; //! + TBranch *b_ch69; //! + TBranch *b_ch70; //! + TBranch *b_ch71; //! + TBranch *b_ch72; //! + TBranch *b_ch73; //! + TBranch *b_ch74; //! + TBranch *b_ch75; //! + TBranch *b_ch76; //! + TBranch *b_ch77; //! + TBranch *b_ch78; //! + TBranch *b_ch79; //! + TBranch *b_ch80; //! + TBranch *b_ch81; //! + TBranch *b_ch82; //! + TBranch *b_ch83; //! + TBranch *b_ch84; //! + TBranch *b_ch85; //! + TBranch *b_ch86; //! + TBranch *b_ch87; //! + TBranch *b_ch88; //! + TBranch *b_ch89; //! + TBranch *b_ch90; //! + TBranch *b_ch91; //! + TBranch *b_ch92; //! + TBranch *b_ch93; //! + TBranch *b_ch94; //! + TBranch *b_ch95; //! + TBranch *b_ch96; //! + TBranch *b_ch97; //! + TBranch *b_ch98; //! + TBranch *b_ch99; //! + TBranch *b_ch100; //! + TBranch *b_ch101; //! + TBranch *b_ch102; //! + TBranch *b_ch103; //! + TBranch *b_ch104; //! + TBranch *b_ch105; //! + TBranch *b_ch106; //! + TBranch *b_ch107; //! + TBranch *b_ch108; //! + TBranch *b_ch109; //! + TBranch *b_ch110; //! + TBranch *b_ch111; //! + TBranch *b_ch112; //! + TBranch *b_ch113; //! + TBranch *b_ch114; //! + TBranch *b_ch115; //! + TBranch *b_ch116; //! + TBranch *b_ch117; //! + TBranch *b_ch118; //! + TBranch *b_ch119; //! + TBranch *b_ch120; //! + TBranch *b_ch121; //! + TBranch *b_ch122; //! + TBranch *b_ch123; //! + TBranch *b_ch124; //! + TBranch *b_ch125; //! + TBranch *b_ch126; //! + TBranch *b_ch127; //! + TBranch *b_ic1; //! + TBranch *b_ic2; //! + TBranch *b_mw1_focusx; //! + TBranch *b_mw1_focusy; //! + TBranch *b_mw2_focusx; //! + TBranch *b_mw2_focusy; //! + TBranch *b_mw1_posx; //! + TBranch *b_mw1_posy; //! + TBranch *b_mw2_posx; //! + TBranch *b_mw2_posy; //! + + char *file; + TFile *fileIn; + TFile *fileOut; + TObjArray objectArray; + TBranch *b_channels[128]; + TBranch *b_baseline[128]; + double channels[128]; + double channelamp_smooth[128]; + + double baseline[128]; + double channellist[128]; + double errorx[128]; + double errory[128]; + + TBranch *b_beamNumX_1; + TBranch *b_beamPosX_1; + TBranch *b_beamFocusX_1; + TBranch *b_beamSignal_1; + TBranch *b_beamSidebandNoise_1; + + TBranch *b_beamSkewX_1; + TBranch *b_beamKurtX_1; + TBranch *b_beamPosX_fit; + TBranch *b_beamFocusX_fit; + TBranch *b_beamChi2_fit; + TBranch *b_beamPeakX_fit; + TBranch *b_beamPosX_fit2; + TBranch *b_beamFocusX_fit2; + TBranch *b_beamChi2_fit2; + TBranch *b_beamPeakX_fit2; + + TBranch *b_ic1_1; //! + TBranch *b_ic2_1; //! + TBranch *b_mw1_focusx_1; //! + TBranch *b_mw1_focusy_1; //! + TBranch *b_mw2_focusx_1; //! + TBranch *b_mw2_focusy_1; //! + TBranch *b_mw1_posx_1; //! + TBranch *b_mw1_posy_1; //! + TBranch *b_mw2_posx_1; //! + TBranch *b_mw2_posy_1; //! + TBranch *b_baseline_integral; + TBranch *b_time_1; //! + TBranch *b_eventid_1; //! + TBranch *b_rollingavg; //! + TBranch *b_beamon; //! + + double time_1; + double ic1_1; + double ic2_1; + double mw1_focusx_1; + double mw2_focusx_1; + double mw2_posx_1; + double mw1_posx_1; + double mw1_focusy_1; + double mw2_focusy_1; + double mw2_posy_1; + double mw1_posy_1; + + double beamNumX_1; + double beamPosX_1; + double beamFocusX_1; + double beamSignal_1; + double beamSidebandNoise_1; + + double beamSkewX_1; + double beamKurtX_1; + double baseline_integral; + double chargeintegral; + double timeintegral; + double eventid_1; + double rollingavg; + int beamon; + + double beamPosX_fit; + double beamFocusX_fit; + double beamChi2_fit; + double beamPeakX_fit; + double beamPosX_fit2; + double beamFocusX_fit2; + double beamChi2_fit2; + double beamPeakX_fit2; + + analyse2(TTree *tree=0); + virtual ~analyse2(); + virtual Int_t Cut(Long64_t entry); + virtual Int_t GetEntry(Long64_t entry); + virtual Long64_t LoadTree(Long64_t entry); + virtual void Init(TTree *tree); + virtual void Loop(); + virtual Bool_t Notify(); + virtual void Show(Long64_t entry = -1); + + double channelWidth; + + + + void Initialize(const char *dirname, const char *filename, int baselineEvents = 1000, int prelimEvents = 10000, double beamLevel = 0.1, bool firstFibermat = true, double readOutFrequency = 1000., int integrationTime = 100); + void Baseline(bool useFirstEvents, int nBaselineEvents, int StartEvent, bool run50hz); + void Save(); + void Close(); + double * FFTsmoothing(double arr[]); + + // double RollingAverage(const int length, double newdata); + + + TH2D * th2d_mw1_beamPosX; + TH2D * th2d_ic1_beamSignal; + TH1D * th1d_beamSignal_ic1ratio; + TH2D * th2d_beamSignal_channel; + TH2D * th2d_bkg_channel; + TH1D * th1d_baseline; + TH1D * th1d_baselinesub; + TH1D * th1d_chbaseline; + TH1D * th1d_chbaselinesub; + TH2D * th2d_fitdiff_channel; + TH2D * th2d_fit2diff_channel; + TH2D * th2d_AmpFFT_channel; + TH2D * th2d_PhaseFFT_channel; + + TFitResultPtr bkgfitResult; + Double_t bkgfitPar0[130]; + Double_t bkgfitPar1[130]; + Double_t bkgfitPar2[130]; + Double_t bkgfitPar3[130]; + Double_t bkgfitPar4[130]; + +}; + +#endif + +#ifdef analyse2_cxx +analyse2::analyse2(TTree *tree) : fChain(0) +{ +// if parameter tree is not specified (or zero), connect the file +// used to generate this class and read the Tree. + if (tree == 0) { + cerr << "no TTree found." << endl; + } + Init(tree); +} + +analyse2::~analyse2() +{ + if (!fChain) return; + delete fChain->GetCurrentFile(); +} + +Int_t analyse2::GetEntry(Long64_t entry) +{ +// Read contents of entry. + if (!fChain) return 0; + return fChain->GetEntry(entry); +} +Long64_t analyse2::LoadTree(Long64_t entry) +{ +// Set the environment to read one entry + if (!fChain) return -5; + Long64_t centry = fChain->LoadTree(entry); + if (centry < 0) return centry; + if (fChain->GetTreeNumber() != fCurrent) { + fCurrent = fChain->GetTreeNumber(); + Notify(); + } + return centry; +} + +void analyse2::Init(TTree *tree) +{ + // The Init() function is called when the selector needs to initialize + // a new tree or chain. Typically here the branch addresses and branch + // pointers of the tree will be set. + // It is normally not necessary to make changes to the generated + // code, but the routine can be extended by the user if needed. + // Init() will be called many times when running on PROOF + // (once per file to be processed). + + // Set branch addresses and branch pointers + if (!tree) return; + fChain = tree; + fCurrent = -1; + fChain->SetMakeClass(1); + + fChain->SetBranchAddress("time", &time, &b_time); + fChain->SetBranchAddress("event_id", &event_id, &b_event_id); + fChain->SetBranchAddress("sync_out", &sync_out, &b_sync_out); + fChain->SetBranchAddress("sync_in", &sync_in, &b_sync_in); + fChain->SetBranchAddress("data_ok", &data_ok, &b_data_ok); + fChain->SetBranchAddress("led_voltage", &led_voltage, &b_led_voltage); + fChain->SetBranchAddress("current", ¤t, &b_current); + fChain->SetBranchAddress("ch00", &ch00, &b_ch00); + fChain->SetBranchAddress("ch01", &ch01, &b_ch01); + fChain->SetBranchAddress("ch02", &ch02, &b_ch02); + fChain->SetBranchAddress("ch03", &ch03, &b_ch03); + fChain->SetBranchAddress("ch04", &ch04, &b_ch04); + fChain->SetBranchAddress("ch05", &ch05, &b_ch05); + fChain->SetBranchAddress("ch06", &ch06, &b_ch06); + fChain->SetBranchAddress("ch07", &ch07, &b_ch07); + fChain->SetBranchAddress("ch08", &ch08, &b_ch08); + fChain->SetBranchAddress("ch09", &ch09, &b_ch09); + fChain->SetBranchAddress("ch10", &ch10, &b_ch10); + fChain->SetBranchAddress("ch11", &ch11, &b_ch11); + fChain->SetBranchAddress("ch12", &ch12, &b_ch12); + fChain->SetBranchAddress("ch13", &ch13, &b_ch13); + fChain->SetBranchAddress("ch14", &ch14, &b_ch14); + fChain->SetBranchAddress("ch15", &ch15, &b_ch15); + fChain->SetBranchAddress("ch16", &ch16, &b_ch16); + fChain->SetBranchAddress("ch17", &ch17, &b_ch17); + fChain->SetBranchAddress("ch18", &ch18, &b_ch18); + fChain->SetBranchAddress("ch19", &ch19, &b_ch19); + fChain->SetBranchAddress("ch20", &ch20, &b_ch20); + fChain->SetBranchAddress("ch21", &ch21, &b_ch21); + fChain->SetBranchAddress("ch22", &ch22, &b_ch22); + fChain->SetBranchAddress("ch23", &ch23, &b_ch23); + fChain->SetBranchAddress("ch24", &ch24, &b_ch24); + fChain->SetBranchAddress("ch25", &ch25, &b_ch25); + fChain->SetBranchAddress("ch26", &ch26, &b_ch26); + fChain->SetBranchAddress("ch27", &ch27, &b_ch27); + fChain->SetBranchAddress("ch28", &ch28, &b_ch28); + fChain->SetBranchAddress("ch29", &ch29, &b_ch29); + fChain->SetBranchAddress("ch30", &ch30, &b_ch30); + fChain->SetBranchAddress("ch31", &ch31, &b_ch31); + fChain->SetBranchAddress("ch32", &ch32, &b_ch32); + fChain->SetBranchAddress("ch33", &ch33, &b_ch33); + fChain->SetBranchAddress("ch34", &ch34, &b_ch34); + fChain->SetBranchAddress("ch35", &ch35, &b_ch35); + fChain->SetBranchAddress("ch36", &ch36, &b_ch36); + fChain->SetBranchAddress("ch37", &ch37, &b_ch37); + fChain->SetBranchAddress("ch38", &ch38, &b_ch38); + fChain->SetBranchAddress("ch39", &ch39, &b_ch39); + fChain->SetBranchAddress("ch40", &ch40, &b_ch40); + fChain->SetBranchAddress("ch41", &ch41, &b_ch41); + fChain->SetBranchAddress("ch42", &ch42, &b_ch42); + fChain->SetBranchAddress("ch43", &ch43, &b_ch43); + fChain->SetBranchAddress("ch44", &ch44, &b_ch44); + fChain->SetBranchAddress("ch45", &ch45, &b_ch45); + fChain->SetBranchAddress("ch46", &ch46, &b_ch46); + fChain->SetBranchAddress("ch47", &ch47, &b_ch47); + fChain->SetBranchAddress("ch48", &ch48, &b_ch48); + fChain->SetBranchAddress("ch49", &ch49, &b_ch49); + fChain->SetBranchAddress("ch50", &ch50, &b_ch50); + fChain->SetBranchAddress("ch51", &ch51, &b_ch51); + fChain->SetBranchAddress("ch52", &ch52, &b_ch52); + fChain->SetBranchAddress("ch53", &ch53, &b_ch53); + fChain->SetBranchAddress("ch54", &ch54, &b_ch54); + fChain->SetBranchAddress("ch55", &ch55, &b_ch55); + fChain->SetBranchAddress("ch56", &ch56, &b_ch56); + fChain->SetBranchAddress("ch57", &ch57, &b_ch57); + fChain->SetBranchAddress("ch58", &ch58, &b_ch58); + fChain->SetBranchAddress("ch59", &ch59, &b_ch59); + fChain->SetBranchAddress("ch60", &ch60, &b_ch60); + fChain->SetBranchAddress("ch61", &ch61, &b_ch61); + fChain->SetBranchAddress("ch62", &ch62, &b_ch62); + fChain->SetBranchAddress("ch63", &ch63, &b_ch63); + fChain->SetBranchAddress("ch64", &ch64, &b_ch64); + fChain->SetBranchAddress("ch65", &ch65, &b_ch65); + fChain->SetBranchAddress("ch66", &ch66, &b_ch66); + fChain->SetBranchAddress("ch67", &ch67, &b_ch67); + fChain->SetBranchAddress("ch68", &ch68, &b_ch68); + fChain->SetBranchAddress("ch69", &ch69, &b_ch69); + fChain->SetBranchAddress("ch70", &ch70, &b_ch70); + fChain->SetBranchAddress("ch71", &ch71, &b_ch71); + fChain->SetBranchAddress("ch72", &ch72, &b_ch72); + fChain->SetBranchAddress("ch73", &ch73, &b_ch73); + fChain->SetBranchAddress("ch74", &ch74, &b_ch74); + fChain->SetBranchAddress("ch75", &ch75, &b_ch75); + fChain->SetBranchAddress("ch76", &ch76, &b_ch76); + fChain->SetBranchAddress("ch77", &ch77, &b_ch77); + fChain->SetBranchAddress("ch78", &ch78, &b_ch78); + fChain->SetBranchAddress("ch79", &ch79, &b_ch79); + fChain->SetBranchAddress("ch80", &ch80, &b_ch80); + fChain->SetBranchAddress("ch81", &ch81, &b_ch81); + fChain->SetBranchAddress("ch82", &ch82, &b_ch82); + fChain->SetBranchAddress("ch83", &ch83, &b_ch83); + fChain->SetBranchAddress("ch84", &ch84, &b_ch84); + fChain->SetBranchAddress("ch85", &ch85, &b_ch85); + fChain->SetBranchAddress("ch86", &ch86, &b_ch86); + fChain->SetBranchAddress("ch87", &ch87, &b_ch87); + fChain->SetBranchAddress("ch88", &ch88, &b_ch88); + fChain->SetBranchAddress("ch89", &ch89, &b_ch89); + fChain->SetBranchAddress("ch90", &ch90, &b_ch90); + fChain->SetBranchAddress("ch91", &ch91, &b_ch91); + fChain->SetBranchAddress("ch92", &ch92, &b_ch92); + fChain->SetBranchAddress("ch93", &ch93, &b_ch93); + fChain->SetBranchAddress("ch94", &ch94, &b_ch94); + fChain->SetBranchAddress("ch95", &ch95, &b_ch95); + fChain->SetBranchAddress("ch96", &ch96, &b_ch96); + fChain->SetBranchAddress("ch97", &ch97, &b_ch97); + fChain->SetBranchAddress("ch98", &ch98, &b_ch98); + fChain->SetBranchAddress("ch99", &ch99, &b_ch99); + fChain->SetBranchAddress("ch100", &ch100, &b_ch100); + fChain->SetBranchAddress("ch101", &ch101, &b_ch101); + fChain->SetBranchAddress("ch102", &ch102, &b_ch102); + fChain->SetBranchAddress("ch103", &ch103, &b_ch103); + fChain->SetBranchAddress("ch104", &ch104, &b_ch104); + fChain->SetBranchAddress("ch105", &ch105, &b_ch105); + fChain->SetBranchAddress("ch106", &ch106, &b_ch106); + fChain->SetBranchAddress("ch107", &ch107, &b_ch107); + fChain->SetBranchAddress("ch108", &ch108, &b_ch108); + fChain->SetBranchAddress("ch109", &ch109, &b_ch109); + fChain->SetBranchAddress("ch110", &ch110, &b_ch110); + fChain->SetBranchAddress("ch111", &ch111, &b_ch111); + fChain->SetBranchAddress("ch112", &ch112, &b_ch112); + fChain->SetBranchAddress("ch113", &ch113, &b_ch113); + fChain->SetBranchAddress("ch114", &ch114, &b_ch114); + fChain->SetBranchAddress("ch115", &ch115, &b_ch115); + fChain->SetBranchAddress("ch116", &ch116, &b_ch116); + fChain->SetBranchAddress("ch117", &ch117, &b_ch117); + fChain->SetBranchAddress("ch118", &ch118, &b_ch118); + fChain->SetBranchAddress("ch119", &ch119, &b_ch119); + fChain->SetBranchAddress("ch120", &ch120, &b_ch120); + fChain->SetBranchAddress("ch121", &ch121, &b_ch121); + fChain->SetBranchAddress("ch122", &ch122, &b_ch122); + fChain->SetBranchAddress("ch123", &ch123, &b_ch123); + fChain->SetBranchAddress("ch124", &ch124, &b_ch124); + fChain->SetBranchAddress("ch125", &ch125, &b_ch125); + fChain->SetBranchAddress("ch126", &ch126, &b_ch126); + fChain->SetBranchAddress("ch127", &ch127, &b_ch127); + fChain->SetBranchAddress("ic1", &ic1, &b_ic1); + fChain->SetBranchAddress("ic2", &ic2, &b_ic2); + fChain->SetBranchAddress("mw1_focusx", &mw1_focusx, &b_mw1_focusx); + fChain->SetBranchAddress("mw1_focusy", &mw1_focusy, &b_mw1_focusy); + fChain->SetBranchAddress("mw2_focusx", &mw2_focusx, &b_mw2_focusx); + fChain->SetBranchAddress("mw2_focusy", &mw2_focusy, &b_mw2_focusy); + fChain->SetBranchAddress("mw1_posx", &mw1_posx, &b_mw1_posx); + fChain->SetBranchAddress("mw1_posy", &mw1_posy, &b_mw1_posy); + fChain->SetBranchAddress("mw2_posx", &mw2_posx, &b_mw2_posx); + fChain->SetBranchAddress("mw2_posy", &mw2_posy, &b_mw2_posy); + + // v->ResizeTo(10); + + Notify(); +} + +Bool_t analyse2::Notify() +{ + // The Notify() function is called when a new file is opened. This + // can be either for a new TTree in a TChain or when when a new TTree + // is started when using PROOF. It is normally not necessary to make changes + // to the generated code, but the routine can be extended by the + // user if needed. The return value is currently not used. + + return kTRUE; +} + +void analyse2::Show(Long64_t entry) +{ +// Print contents of entry. +// If entry is not specified, print current entry + if (!fChain) return; + fChain->Show(entry); + +} +Int_t analyse2::Cut(Long64_t entry) +{ +// This function may be called from Loop. +// returns 1 if entry is accepted. +// returns -1 otherwise. + return 1; +} + +void analyse2::Initialize(const char *dirname, const char *filename, int baselineEvents, int prelimEvents, double beamLevel, bool firstFibermat, double readOutFrequency, int integrationTime) +{ + + TString fn = TString(filename); + TString dn = TString(dirname); + channelWidth = 0.8; + + TString inName = dn + "pin/" + fn; + fileIn = new TFile(inName, "READ"); + fileIn->GetObject("t", fChain); + fChain->Print(); + Init(fChain); + TString outname = filename; + outname.Insert(0, "SAVE_"); + outname.Insert(0, dirname); + fileOut = new TFile(outname.Data(), "RECREATE"); + newdata = new TTree("newdata", "newdata"); + + + for (int n = 0; n < 128; n++) + { + baseline[n] = 0.; + channellist[n] = double(n); + errorx[n] = 0.0; + errory[n] = 7.0; + char bname[20]; + + sprintf(bname, "ch%02d", n); + b_channels[n] = fChain->GetBranch(bname); + b_channels[n]->SetAddress(&channels[n]); + } + b_eventid_1 = newdata->Branch("eventid_1", &eventid_1); + + b_beamNumX_1 = newdata->Branch("beamNumX_1", &beamNumX_1); + b_beamPosX_1 = newdata->Branch("beamPosX_1", &beamPosX_1); + b_beamFocusX_1 = newdata->Branch("beamFocusX_1", &beamFocusX_1); + b_beamSignal_1 = newdata->Branch("beamSignal_1", &beamSignal_1); + b_beamSidebandNoise_1 = newdata->Branch("beamSidebandNoise_1", &beamSidebandNoise_1); + b_beamSkewX_1 = newdata->Branch("beamSkewX_1", &beamSkewX_1); + b_beamKurtX_1 = newdata->Branch("beamKurtX_1", &beamKurtX_1); + + b_beamPosX_fit = newdata->Branch("beamPosX_fit", &beamPosX_fit); + b_beamFocusX_fit = newdata->Branch("beamFocusX_fit", &beamFocusX_fit); + b_beamChi2_fit = newdata->Branch("beamChi2_fit", &beamChi2_fit); + b_beamPeakX_fit = newdata->Branch("beamPeakX_fit", &beamPeakX_fit); + + b_beamPosX_fit2 = newdata->Branch("beamPosX_fit2", &beamPosX_fit2); + b_beamFocusX_fit2 = newdata->Branch("beamFocusX_fit2", &beamFocusX_fit2); + b_beamChi2_fit2 = newdata->Branch("beamChi2_fit2", &beamChi2_fit2); + b_beamPeakX_fit2 = newdata->Branch("beamPeakX_fit2", &beamPeakX_fit2); + + + + b_ic1_1 = newdata->Branch("ic1_1", &ic1_1); + b_ic2_1 = newdata->Branch("ic2_1", &ic2_1); + b_mw1_focusx_1 = newdata->Branch("mw1_focusx_1", &mw1_focusx_1); + b_mw1_posx_1 = newdata->Branch("mw1_posx_1", &mw1_posx_1); + b_mw2_focusx_1 = newdata->Branch("mw2_focusx_1", &mw2_focusx_1); + b_mw2_posx_1 = newdata->Branch("mw2_posx_1", &mw2_posx_1); + + + b_mw1_focusy_1 = newdata->Branch("mw1_focusy_1", &mw1_focusy_1); + b_mw1_posy_1 = newdata->Branch("mw1_posy_1", &mw1_posy_1); + b_mw2_focusy_1 = newdata->Branch("mw2_focusy_1", &mw2_focusy_1); + b_mw2_posy_1 = newdata->Branch("mw2_posy_1", &mw2_posy_1); + b_rollingavg = newdata->Branch("rollingavg", &rollingavg); + b_beamon = newdata->Branch("beamon", &beamon); + + + b_time_1 = newdata->Branch("time_1", &time_1); + //histograms; + th2d_mw1_beamPosX = new TH2D("th2d_mw1_beamPosX","th2d_mw1_beamPosX",1000,0,64,1000,0,60); + th2d_ic1_beamSignal = new TH2D("th2d_ic1_beamSignal","th2d_ic1_beamSignal",500,0,500,500,0,100000); + th1d_beamSignal_ic1ratio = new TH1D("th1d_beamSignal_ic1ratio","th1d_beamSignal_ic1ratio",500,0,500.); + th2d_beamSignal_channel = new TH2D("th2d_beamSignal_channel","th2d_beamSignal_channel",129,-0.5,128.5,5100,-1000,10000); + th2d_fitdiff_channel = new TH2D("th2d_fitdiff_channel","th2d_fitdiff_channel",129,-0.5,128.5,510,-1000,1000); + th2d_fit2diff_channel = new TH2D("th2d_fit2diff_channel","th2d_fit2diff_channel",129,-0.5,128.5,510,-1000,1000); + + th2d_bkg_channel = new TH2D("th2d_bkg_channel","th2d_bkg_channel",65,-0.5,64.5,500,-500,500); + + th1d_baseline = new TH1D("th1d_baseline","th1d_baseline",500,-1500,1500.); + th1d_baselinesub = new TH1D("th1d_baselinesub","th1d_baselinesub",500,-1500,1500.); + th1d_chbaseline = new TH1D("th1d_chbaseline","th1d_chbaseline",2100,-100,1000.); + th1d_chbaselinesub = new TH1D("th1d_chbaselinesub","th1d_chbaselinesub",200,-100,100.); + + +} + + + + +void analyse2::Baseline(bool useFirstEvents, const int nBaselineEvents, int startevent, bool run50hz) +{ + Long64_t nevents = fChain->GetEntriesFast(); + baseline_integral = 0.; + // use the first/last nBaselineEvents events to calculate the average/baseline + cout << "Start background subtraction event:" << startevent << endl; + const int numbaseline = 1800; + Double_t channelamp[numbaseline]; + Double_t basetime[numbaseline] = {0.}; + + TGraph * g1; + TF1 * fitfunc = new TF1("fitfunc","[0]+[1]*TMath::Cos(x*[2]*(2*3.14159)+[3])"); + fitfunc->SetParameters( 0.0, 10.0, 0.05, 0.0 ); + fitfunc->FixParameter(2,0.05); + + fChain->GetEvent(1); + Double_t basetimeoffsetzero = time; + + fChain->GetEvent(startevent+numbaseline); + Double_t basetimeoffset = time-basetimeoffsetzero; + + fChain->GetEvent(startevent); + Double_t basetimeoffsetstart = time-basetimeoffsetzero; + Int_t counter = 0; + char bname[20]; + for (int ch = 0; ch < 128; ch++) + { + baseline[ch] =0.; + } + + if (!useFirstEvents) + { // last + for (int i = nevents- numbaseline; i < nevents; i++) + { + fChain->GetEvent(i); + for (int ch = 0; ch < 128; ch++) + { + if (channels[ch]>-100) baseline[ch] += channels[ch] / double(numbaseline); + if (channels[ch]>-100) baseline_integral +=baseline[ch]; + th1d_chbaseline->Fill(channels[ch]); + } + + } + // cout << "baseline int: " << baseline_integral << endl; + } + else + { + for (int i = startevent ; i <= startevent+ numbaseline; i++) + { + fChain->GetEvent(i); + for (int ch = 0; ch < 128; ch++) + { + if (channels[ch]>-100) baseline[ch] += channels[ch] / double(numbaseline); + if (channels[ch]>-100) baseline_integral +=baseline[ch]; + th1d_chbaseline->Fill(channels[ch]); + } + // cout << "baseline int: " << baseline_integral << endl; + } + } + + if (run50hz){ + + ///fit a 50Hz background noise to each channel + for (int ch = 0; ch < 128; ch++) + { + counter = 0; + for (int i = startevent ; i < startevent+numbaseline; i++) + { + fChain->GetEvent(i); + // for (int ch = 0; ch < 64; ch++) + //{ + channelamp[counter]= channels[ch]- baseline[ch]; + //} + basetime[counter] = time-basetimeoffsetzero; + counter++; + } + + + g1 = new TGraph(numbaseline,basetime,channelamp); + ///////finished here. 1) need to fit the baseline to a Cosine function 2) return 3 parameters per channel. 50 Hz is fixed. + bkgfitResult = g1->Fit(fitfunc,"QSR","",basetimeoffsetstart,basetimeoffset ); + + + bkgfitPar0[ch] = bkgfitResult->Parameter(0); + bkgfitPar1[ch] = bkgfitResult->Parameter(1); + bkgfitPar2[ch] = bkgfitResult->Parameter(2); + bkgfitPar3[ch] = bkgfitResult->Parameter(3); + + sprintf(bname, "bkg_ch%02d_graph", ch); + g1->SetTitle(bname); + g1->SetName(bname); + + //fitResult->Print("V"); + // bkgfitResult->Write(); + g1->Write(); + + + } //end for (int ch = ... + for (int ch = 0; ch < 128; ch++) + { + counter = 0; + fitfunc->SetParameters( bkgfitPar0[ch], bkgfitPar1[ch], bkgfitPar2[ch], bkgfitPar3[ch]); + for (Long64_t i = startevent ; i GetEvent(i); + channelamp[counter] = channels[ch]- baseline[ch]- fitfunc->Eval(time-basetimeoffsetzero); + th1d_chbaselinesub->Fill(channelamp[counter]); + counter++; + th2d_bkg_channel->Fill(ch,channelamp[counter]); + } + } + + Double_t channelampsum[numbaseline] = {0.}; + + + + counter = 0; + ///fit a 50Hz background noise to the sum of all channels + + for (Long64_t i = startevent ; i GetEvent(i); + channelampsum[counter]=0.; + for (int ch = 0; ch < 128; ch++){ + if (channels[ch]>-100 && baseline[ch]>-100) channelampsum[counter] += channels[ch] - baseline[ch]; //integrate the signal + + } + + basetime[counter] = (time-basetimeoffsetzero); + counter++; + } + + TGraph * g2 = new TGraph(counter,basetime,channelampsum); + TF1 * fitfunc2 = new TF1("fitfunc2","[0]+[1]*TMath::Cos(x*[2]*(2*3.14159)+[3])"); + fitfunc2->SetParameters( 5120.0, 450.0, 0.05, 0.0 ); + // fitfunc2->SetParLimits(1,0.,1000.); + fitfunc2->FixParameter(2,0.05); + + TFitResultPtr sumbkgfitResult = g2->Fit(fitfunc2,"QRS","", basetimeoffsetstart, basetimeoffset); + g2->SetName("commonmodenoise"); g2->SetTitle("commonmodenoise"); + // g2->Write(); + sumbkgfitResult->Write(); + // fitfunc2->Write(); + bkgfitPar0[128] = fitfunc2->GetParameter(0); + bkgfitPar1[128] = fitfunc2->GetParameter(1); + bkgfitPar2[128] = fitfunc2->GetParameter(2); + bkgfitPar3[128] = fitfunc2->GetParameter(3); + + counter=0; +for (Long64_t i = startevent ; i GetEvent(i); + channelampsum[counter] -= fitfunc2->Eval(time-basetimeoffsetzero); + th1d_baselinesub->Fill(channelampsum[counter]); + counter++; + + } + th1d_baseline->Write(); + th1d_baselinesub->Write(); + th1d_chbaseline->Write(); + th1d_chbaselinesub->Write(); + TGraph * g3 = new TGraph(counter,basetime,channelampsum); + g3->SetName("commonmodenoisesub"); g2->SetTitle("commonmodenoisesub"); + g3->Write(); + } +} + + +void analyse2::Save() +{ + //fileIn->Close(); + //fileOut->cd(); + newdata->AutoSave(); + +} + + +void analyse2::Close() +{ + fileIn->Close(); + fileOut->Close(); + if(fChain) delete fChain->GetCurrentFile(); +} + + +#endif // #ifdef analyse2_cxx diff --git a/Scripts_20161201/Scripts_20161201/beammon.h b/Scripts_20161201/Scripts_20161201/beammon.h new file mode 100644 index 0000000..94b7f2c --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/beammon.h @@ -0,0 +1,2164 @@ +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +using namespace std; + +double globalUpperBound = 63; +double globalLowerBound = 1; +double measurementsPerSecond = 3000; +int Fit_Fail_Counts = 0; +int signalScale = 1; +int alignint = 1; +int alignintIc = 1; +double discardUpperThreshold = 0.01; +double discardLowerThreshold = -0.015; + +Double_t fitfunc(Double_t *x, Double_t *par) +{ + Double_t arg1 = 0; + if (par[2] != 0) + arg1 = (x[0] - par[1]) / par[2]; + Double_t fitval1 = par[0] * TMath::Exp(-0.5 * arg1 * arg1); + Double_t arg2 = 0; + if (par[4] != 0) + arg2 = (x[0] - par[1]) / par[4]; + Double_t fitval2 = par[3] * TMath::Exp(-0.5 * arg2 * arg2); + Double_t fitsum = par[5] + fitval1 + fitval2; + return fitsum; +} + +class Beammon +{ + +private: + TTree *data; + TTree *newdata; + TBranch *b_time; + TBranch *b_ic1; + TBranch *b_ic2; + TBranch *b_mw1_focusx; + TBranch *b_mw1_focusy; + TBranch *b_mw2_focusx; + TBranch *b_mw2_focusy; + TBranch *b_mw1_posx; + TBranch *b_mw1_posy; + TBranch *b_mw2_posx; + TBranch *b_mw2_posy; + TBranch *b_channels[64]; + + TBranch *bb_ic1; + TBranch *bb_ic2; + TBranch *bb_mw1_focusx; + TBranch *bb_mw2_focusx; + TBranch *bb_mw1_posx; + TBranch *bb_mw2_posx; + TBranch *b_beamPosX_1; + TBranch *b_beamFocusX_1; + TBranch *b_beamSignal_1; + TBranch *b_beamPosX_2; + TBranch *b_beamFocusX_2; + TBranch *b_beamSignal_2; + TBranch *b_beamOn; + + double beamPosX_1; + double beamFocusX_1; + double beamSignal_1; + double beamPosX_2; + double beamFocusX_2; + double beamSignal_2; + double beamOn; + double sigma_pos = 0.1; + + char *file; + TFile *fileIn; + TFile *fileOut; + + TObjArray objectArray; + + bool isSipm; + bool firstMat; + double channelWidth; + + double shift; + + long nevents; + int nBaselineEvents; + int nPrelimEvents; + int highestChannelBin; + int highestTimeBin; + double beamOnAdcVal; + double referenceIntegral; + double beamOnLevel; + double prelimMean; + double prelimSigma; + double highVal; + double readOutFreq; + int intTime; + double chi2ndf; + double fwhm; + + double mean_ave; + double sigma_ave; + + double signalToParticles = 1; // multiply signal by this amount, so that mean of singal (photodiode) and icChamber distribution are the same + double signalDistScale = 1; // icChamber signal distribution has more entries than signal (photodiode) one, so increase bin content in signal dist. by 1*this factor, to achieve the same integral + + double time; + int startTime; + int stopTime; + int timesteps; + double intSignal; + int beamOnTime; + double baselineIntegral; + + double ic1; + double ic2; + double mw1_focusx; + double mw1_focusy; + double mw2_focusx; + double mw2_focusy; + double mw2_posx; + double mw2_posy; + double mw1_posx; + double mw1_posy; + double icIntegral; + double completeIntegral; + + double ic1_1; + double ic2_1; + double mw1_focusx_1; + double mw2_focusx_1; + double mw2_posx_1; + double mw1_posx_1; + + vector > spillTimes; + + double channels[64]; + double baseline[64]; + double channelErrors[64]; + double current; + + TGraph *gChannelErrors; + TH1D *meanHistOn; + TH1D *widthHistOn; + TH2D *timePosHist; + TH1D *prelimBeam; + TH2D *timeCenters; + TH2D *timeCenters_MWPC; + TH2D *timeWidths; + TH2D *timeWidths_MWPC; + TH1D *signalDist; + TH1D *signalNoiseDist; + TH1D *signalNoiseChannel; + TH2D *simpleView; + TH1D *timeIntSignal; + TH1D *timeIntSignal_MWPC; + TH1D *beamPosHist; + TH1D *beamWidthHist; + TH1D *icSignalDist; + TGraphErrors *beamPosTimeGraph; + TGraphErrors *signalTimeGraph; + TGraphErrors *sigIcScatterGraph; + TGraphErrors *mwPosScatterGraph; + TH2D *sigIcScatterPlot[20]; + TH2D *sigIcScatterPlot_ic2; + TH2D *mwPosScatterPlot[20]; + TH1D *ic1Hist; + TH1D *ic2Hist; + TH1D *signalComp; + TH1D *positionComp; + TH1D *widthComp; + TH1D *mw1_focusxHist; + TH1D *mw1_focusyHist; + TH1D *mw2_focusxHist; + TH1D *mw2_focusyHist; + TH1D *mw1_posxHist; + TH1D *mw1_posyHist; + TH1D *mw2_posxHist; + TH1D *mw2_posyHist; + TH1D *channelSig[64]; + TH1D *chisquareDist; + TH1D *mwPosX; + TH1D *mwFocusX; + TH1D *beamPosX; + TH1D *beamFocusX; + TH1D *sigHist; + TH1D *sigHist_weighted; + TH1D *fibreHist; + TH1D *fibreHist_weighted; + TH1D *mwpcHist; + + TH2D *Center_Signal; + TH2D *Diff_timeCenters; + TH2D *Diff_Signal; + TH2D *Diff_ic1; + TH1D *Diff_hist; + TH2D *deltaSig_time; + TH2D *deltaSig_Sig; + TH1D *SlicesAvg; + TH2D *SignalErrHist; + + void calcBaseline(bool useFirstEvents); + void calcBaselineIntegral(); + void prelimProfile(); + TH1D *AverageHist(int dir, int timeStart = -1, int timeStop = -1); + TH1D *TimeAverage(int timeStart, int timeStop); + TH1D *TimeIntSignal(int timeStart = -1, int timeStop = -1); + bool isAboveThreshold(TH1D *slice); + bool isAboveThreshold(double val); + bool isAboveThreshold(TGraphErrors *slice); + TH1D *calcTimeCenters(int start, int stop); + double calcBeamTime(); + + // Tom Add + +public: + Beammon(); + ~Beammon(); + + void Initialize(const char *dirname, const char *filename, int baselineEvents = 1000, int prelimEvents = 10000, double beamLevel = 0.1, bool firstFibermat = true, double readOutFrequency = 1000., int integrationTime = 100); + TH1D *GetPrelimProfile(); + void ProcessData(); + TH1D *GetChannelAvg(bool beamOn = false); + TH1D *GetChannelSigDist(int channel); + TH1D *GetTimeAvg(); + TH1D *GetTimeAvg(int nSpill); + TH1D *GetTimeAvg(int nSpill, int nMeasurements); + TH2D *GetTimeAvgScatter(); + TH2D *GetTimeAvgScatter(int nSpill, int nMeasurements); + TH1D *GetChannelSlice(int time = -1, int offset = 0); + TH1D *GetChannelSlice2(int time = -1, int offset = 0); + TGraphErrors *GetChannelGraph(int time = -1, int offset = 0); + TH1D *GetChannelGraphHist(int time, int offset); + TH1D *GetTimeSlice(int channel = -1, int startTime = -1, int stopTime = -1, bool beamOn = false); + TCanvas *GetTimeSliceCanvas(int channel = -1); + TCanvas *GetSignalNoiseChannel(int channel = -1); + TH1D *GetSignalOverTime(); + void GetTimeCenters(); + void GetTimeWidths(); + void PrintSpillTimes(); + pair GetSpillTimes(int nSpill); + TH2D *GetSpillCenters(int nSpill); + TH1D *GetSpillSlice(int nSpill); + TH1D *GetSignalDistribution(); + TCanvas *GetSignalDistributionCanvas(); + TH2D *GetSimpleView(); + TH1D *GetBaselineHist(); + TH1D *icSignalComp(); + double GetIntSignal(); + int GetBeamOnTime(); + double GetSignalStd(); + TCanvas *signalOverTime2d(); + TCanvas *FitSnapshot(int offset); + TCanvas *FitAverage(); + TCanvas *PrintBaseline(); + TCanvas *PrintChannelNoise(int channel); + TCanvas *PrintProfile(int offset); + TCanvas *IcFitSlicesY(); + TCanvas *PrintSigIcGraph(); + TH1D *GetMwPosComp(); + void Save(); + void Close(); + + TCanvas *GetSig_e_ic_Hist(); + TCanvas *GetSig_e_ic_Hist_Weighted(); + + int Fit_Fail_Number = 200; + int event_count = 0; +}; + +Beammon::Beammon() {} + +Beammon::~Beammon() {} + +void Beammon::Initialize(const char *dirname, const char *filename, int baselineEvents, int prelimEvents, double beamLevel, bool firstFibermat, double readOutFrequency, int integrationTime) +{ + + signalToParticles = 7937 / 1.443e4; // FOR RUN 26 only + signalDistScale = 1.; //44585./26225;// FOR RUN 26 ONLY + intTime = integrationTime; + readOutFreq = readOutFrequency; + firstMat = firstFibermat; + highestChannelBin = 20; + highestTimeBin = 0; + icIntegral = 0; + completeIntegral = 0; + + TString fn = TString(filename); + TString dn = TString(dirname); + if (fn.Contains("sipm")) + { + channelWidth = 0.25; + isSipm = true; + } + + else + { + channelWidth = 0.8; + isSipm = false; + } + TString inName = dn + "pin/" + fn; + fileIn = new TFile(inName, "UPDATE"); + fileIn->GetObject("t", data); + TString outname = filename; + if (firstMat) + outname.Insert(0, "SAVE_"); + else + outname.Insert(0, "SAVE_mat2_"); + outname.Insert(0, dirname); + data->SetBranchStatus("ch*", 0); + fileOut = new TFile(outname.Data(), "RECREATE"); + newdata = new TTree("newdata", "newdata"); + + data->SetBranchStatus("ch*", 1); + b_time = data->GetBranch("time"); + b_time->SetAddress(&time); + + for (int n = 0; n < 64; n++) + { + baseline[n] = 0.; + char bname[20]; + if (firstMat) + { + sprintf(bname, "ch%02d", n); + b_channels[n] = data->GetBranch(bname); + b_channels[n]->SetAddress(&channels[n]); + } + else + { + sprintf(bname, "ch%d", n + 64); + printf("%s\n", bname); + b_channels[n] = data->GetBranch(bname); + b_channels[n]->SetAddress(&channels[63 - n]); + } + } + + b_ic1 = data->GetBranch("ic1"); + b_ic1->SetAddress(&ic1); + b_ic2 = data->GetBranch("ic2"); + b_ic2->SetAddress(&ic2); + b_mw1_focusx = data->GetBranch("mw1_focusx"); + b_mw1_focusx->SetAddress(&mw1_focusx); + b_mw1_focusy = data->GetBranch("mw1_focusy"); + b_mw1_focusy->SetAddress(&mw1_focusy); + b_mw2_focusx = data->GetBranch("mw2_focusx"); + b_mw2_focusx->SetAddress(&mw2_focusx); + b_mw2_focusy = data->GetBranch("mw2_focusy"); + b_mw2_focusy->SetAddress(&mw2_focusy); + b_mw1_posx = data->GetBranch("mw1_posx"); + b_mw1_posx->SetAddress(&mw1_posx); + b_mw1_posy = data->GetBranch("mw1_posy"); + b_mw1_posy->SetAddress(&mw1_posy); + b_mw2_posx = data->GetBranch("mw2_posx"); + b_mw2_posx->SetAddress(&mw2_posx); + b_mw2_posy = data->GetBranch("mw2_posy"); + b_mw2_posy->SetAddress(&mw2_posy); + + nevents = data->GetEntries(); + startTime = 0; + stopTime = nevents - 1; + + timePosHist = new TH2D("timePosHist", "beam position", 64, 0.5, 64.5, nevents, 0, nevents - 1); //display in seconds (y-axis), but with bins of 100ms + SignalErrHist = new TH2D("SignalErrHist", "SignalErrHist", 64, 0.5, 64.5, 200, 0, -1); + chisquareDist = new TH1D("chiqsuareDist", "chiqsuareDist", 100, -1, -1); + prelimBeam = new TH1D("prelimBeam", "preliminary beam profile", 64, 0.5, 64.5); + beamPosHist = new TH1D("beamPosHist", "mean positions", readOutFreq, 0., 64. * channelWidth); + beamWidthHist = new TH1D("beamWidthHist", "beam width", 500, 0., 50.); + beamPosTimeGraph = new TGraphErrors(nevents); + beamPosTimeGraph->SetName("beamPosTimeGraph"); + signalTimeGraph = new TGraphErrors(nevents); + signalTimeGraph->SetName("signalTimeGraph"); + sigIcScatterGraph = new TGraphErrors(); + mwPosScatterGraph = new TGraphErrors(); + //sigIcScatterPlot = new TH2D("sigIcScatterPlot", "", 100, 0, -1, 100, 0, -1); + signalComp = new TH1D("signalComp", "signalComp", 200., -1., 1.); + positionComp = new TH1D("positionComp", "positionComp", 200., -3., 3.); + widthComp = new TH1D("widthComp", "widthComp", 200., 0., 3.5); + ic1Hist = new TH1D("ic1Hist", "ic1Hist", nevents, 0., nevents - 1); + ic2Hist = new TH1D("ic2Hist", "ic2Hist", nevents, 0., nevents - 1); + sigHist = new TH1D("sigHist", "sigHist", nevents, 0., nevents - 1); + sigHist_weighted = new TH1D("sigHist_weighted", "sigHist_weighted", nevents, 0., nevents - 1); + fibreHist = new TH1D("fibreHist", "fibreHist", nevents, 0., nevents - 1); + fibreHist_weighted = new TH1D("fibreHist_weighted", "fibreHist_weighted", nevents, 0., nevents - 1); + mwpcHist = new TH1D("mwpcHist", "mwpcHist", nevents, 0., nevents - 1); + mw1_focusxHist = new TH1D("mw1_focusxHist", "mw1_focusxHist", nevents, 0, nevents - 1); + mw1_focusyHist = new TH1D("mw1_focusyHist", "mw1_focusyHist", nevents, 0, nevents - 1); + mw2_focusxHist = new TH1D("mw2_focusxHist", "mw2_focusxHist", nevents, 0, nevents - 1); + mw2_focusyHist = new TH1D("mw2_focusyHist", "mw2_focusyHist", nevents, 0, nevents - 1); + mw1_posxHist = new TH1D("mw1_posxHist", "mw1_posxHist", nevents, 0, nevents - 1); + mw1_posyHist = new TH1D("mw1_posyHist", "mw1_posyHist", nevents, 0, nevents - 1); + mw2_posxHist = new TH1D("mw2_posxHist", "mw2_posxHist", nevents, 0, nevents - 1); + mw2_posyHist = new TH1D("mw2_posyHist", "mw2_posyHist", nevents, 0, nevents - 1); + mwPosX = new TH1D("mwPosX", "", 200, 0, 20); + mwFocusX = new TH1D("mwFocusX", "", 200, 2, 3.5); + beamPosX = new TH1D("beamPosX", "", 200, 20, 30); + beamFocusX = new TH1D("beamFocusX", "", 200, 0, 20); + + nBaselineEvents = baselineEvents; + nPrelimEvents = prelimEvents; + + beamOnLevel = beamLevel; + beamOnAdcVal = 0; + beamOnTime = 0; + if (!isSipm) + { + if (fn.Contains("int1")) + calcBaseline(false); + else + calcBaseline(true); + } + prelimProfile(); + calcBaselineIntegral(); + ProcessData(); +} + +void Beammon::Save() +{ + fileIn->Close(); + fileOut->cd(); + for (int i = 0; i < 5; i++) + PrintProfile(i)->Write(); + FitAverage()->Write(); + + PrintBaseline()->Write(); + //for(int i=0;i<64;i++) + // PrintChannelNoise(i)->Write(); + GetSignalOverTime()->Write(); + for (int i = 0; i < 5; i++) + GetChannelSlice2(-1, i)->Write(); + //fileIn->Close(); + + GetTimeSliceCanvas(-1)->Write(); + timePosHist->ProjectionX()->Write(); + GetTimeCenters(); + + GetSignalDistributionCanvas()->Write(); + GetSignalDistribution()->Write(); + GetSignalNoiseChannel()->Write(); + chisquareDist->Write(); + sigIcScatterGraph->Write(); + mwPosScatterGraph->Write(); + for (int i = 6; i < 15; i++) + { + sigIcScatterPlot[i]->Write(); + mwPosScatterPlot[i]->Write(); + } + mwPosScatterPlot[11]->Write(); + sigIcScatterPlot[11]->Write(); + mw1_focusxHist->Write(); + mw1_posxHist->Write(); + mwPosX->Write(); + mwFocusX->Write(); + beamPosX->Write(); + beamFocusX->Write(); + TVectorD v(6); + v[0] = GetIntSignal(); + v[1] = GetBeamOnTime(); + v[2] = signalDist->GetStdDev(); + v[3] = icIntegral; + v[4] = completeIntegral; + v[5] = fwhm; + v.Write("beaminfo"); + beamPosTimeGraph->Write(); + signalTimeGraph->Write(); + gChannelErrors->Write(); + ic1Hist->Write(); + ic2Hist->Write(); + sigHist->Write(); + fibreHist->Write(); + mwpcHist->Write(); + fibreHist_weighted->Write(); + sigHist_weighted->Write(); + GetSig_e_ic_Hist()->Write(); + GetSig_e_ic_Hist_Weighted()->Write(); + signalComp->Write(); + GetMwPosComp()->Write(); + widthComp->Write(); + icSignalComp()->Write(); + signalOverTime2d(); + IcFitSlicesY(); + PrintSigIcGraph()->Write(); + + //GetTimeCenters(); + + newdata->AutoSave(); + + Close(); + // v.Delete(); +} + +void Beammon::calcBaseline(bool useFirstEvents) +{ + // use the first/last nBaselineEvents events to calculate the average/baseline + if (!useFirstEvents) + { // last + for (int i = nevents - nBaselineEvents; i < nevents; i++) + { + data->GetEvent(i); + for (int ch = 0; ch < 64; ch++) + { + baseline[ch] += channels[ch] / nBaselineEvents; + } + } + } + else + { + for (int i = 1; i <= nBaselineEvents; i++) + { + data->GetEvent(i); + for (int ch = 0; ch < 64; ch++) + { + baseline[ch] += channels[ch] / nBaselineEvents; + } + } + } +} + +TCanvas *Beammon::PrintBaseline() +{ + TCanvas *c1 = new TCanvas(); + c1->cd(); + TGraphErrors *g = new TGraphErrors(64); + for (int k = 0; k < 64; k++) + { + double stdDev = channelSig[k]->GetStdDev(); + channelErrors[k] = stdDev; + g->SetPoint(k, k, baseline[k]); + g->SetPointError(k, 0., channelErrors[k]); + } + g->SetTitle(""); + g->SetName("baseline"); + g->GetXaxis()->SetTitle("channel"); + TString label; + label.Form("adc counts / %d #mus", intTime); + g->GetYaxis()->SetTitle(label.Data()); + g->Draw("AP"); + c1->SetName("baseline"); + delete g;//added + return c1; +} + +void Beammon::calcBaselineIntegral() +{ + /*baselineIntegral = 0; + for(int i=1; i <= nBaselineEvents;i++){ + data->GetEvent(i); + double currentIntegral = 0; + for(int ch=0;ch<64;ch++){ + currentIntegral += channels[ch] - baseline[ch]; + } + if(currentIntegral > baselineIntegral) + baselineIntegral = currentIntegral; + } + printf("baseline int: %f \n",baselineIntegral);*/ + + double highVal = 0; + for (int i = 1; i <= nBaselineEvents; i++) + { + data->GetEvent(i); + double val = channels[highestChannelBin] - baseline[highestChannelBin]; + if (val > highVal) + highVal = val; + } + beamOnAdcVal = beamOnLevel * highVal; + int maxNoise = floor(highVal); + for (int j = 0; j < 64; j++) + { + TString name; + name.Form("channelSig%d", j); + channelSig[j] = new TH1D(name.Data(), name.Data(), maxNoise * 2, -maxNoise, maxNoise); + } + + for (int i = 1; i <= nBaselineEvents; i++) + { + data->GetEvent(i); + for (int ch = 0; ch < 64; ch++) + channelSig[ch]->Fill(channels[ch] - baseline[ch]); + } + gChannelErrors = new TGraph(64); + for (int k = 0; k < 64; k++) + { + double stdDev = channelSig[k]->GetStdDev(); + channelErrors[k] = stdDev; + gChannelErrors->SetPoint(k + 1, k + 1, stdDev); + } +} + +void Beammon::prelimProfile() +{ + + highVal = 0; + int histChannel = 0; + double highVal_tmp[64]; + + for (int i = 1; i < nevents - 1000; i += 1) + { //nevents/nPrelimEvents){ + data->GetEvent(i); + for (int ch = 0; ch < 64; ch++) + { + double val = channels[ch] - baseline[ch]; + /* if (val > highVal_tmp[ch]) + { + highVal_tmp[ch] = val; + }*/ + if (isSipm) + histChannel = 64 - ch; + else + histChannel = ch + 1; + prelimBeam->SetBinContent(histChannel, prelimBeam->GetBinContent(histChannel) + val / nPrelimEvents); //nPrelimEvents); + } + } + TF1 *fit = new TF1("fitfunc", "gaus", 1, 64); + fit->SetParameter(1, prelimBeam->GetMean()); + // printf("Mean: %f \n", prelimBeam->GetMean()); + // printf("Sigma: %f \n", prelimBeam->GetStdDev()); + // cout << prelimBeam->GetStdDev() << endl; + + fit->SetParameter(2, prelimBeam->GetStdDev()); + prelimBeam->Fit("fitfunc", "Q"); + prelimMean = fit->GetParameter(1); + prelimSigma = fit->GetParameter(2); + highestChannelBin = floor(prelimMean); + + if (highestChannelBin < 0) + highestChannelBin = 0; + /* + highVal = 0; + + for (int i = 0; i < 64; i++) + { + if ( highVal_tmp[i] > highVal) + { + highVal = highVal_tmp[i]; + } + }*/ + + // beamOnAdcVal = beamOnLevel * highVal; + delete fit; + printf("\ncenter channel: %d \n", highestChannelBin); +} + +void Beammon::ProcessData() +{ + + bool beamOn = false; + bool previousBeamStatus = false; + int lastSpillOn = 0; + int lastSpillOff = 0; + int minSpillTime = 3000; // in ms + int histChannel; + + int highestSigVal = 0; + + for (int i = 1; i < nevents; i++) + { + + if (i % 10000 == 00) + printf("Event: %d / %ld \n", i, nevents); + // cout << "Event: " << i << endl; + data->GetEvent(i); + + double maxSignal = channels[highestChannelBin] - baseline[highestChannelBin]; + /* + for(int j=0;j<64;j++){ + double val = channels[j] - baseline[j]; + if (val > maxSignal) + maxSignal = val; + }*/ + + if (isAboveThreshold(maxSignal) && (i > nBaselineEvents)) + { + beamOn = true; + if ((i - lastSpillOff) > minSpillTime && !previousBeamStatus) + { + if (lastSpillOff != 0) + spillTimes.push_back(make_pair(lastSpillOn, lastSpillOff)); + lastSpillOn = i; + } + } + else + { + beamOn = false; + if (previousBeamStatus) + lastSpillOff = i; + } + previousBeamStatus = beamOn; + + int sigVal = 0; + + for (int j = 0; j < 64; j++) + { + + int chan; + if (isSipm) + { + if (j % 2 == 0) + histChannel = 64 - (j + 1); + else + histChannel = 64 - (j - 1); + } + else + histChannel = j + 1; + + double chVal = channels[j] - baseline[j]; + sigVal += chVal; + timePosHist->SetBinContent(histChannel, i, chVal); + completeIntegral += chVal; + } + if (sigVal > highestSigVal) + { + highestSigVal = sigVal; + highestTimeBin = i; + } + + // IONISATION CHAMBERS + double chargeToParts = 1. / 3.2886706587037837e-15 * 1e-9 * 312e-6; + if (!(ic1 != ic1)) + ic1Hist->SetBinContent(i, ic1 * chargeToParts); + if (!(ic2 != ic2)) + ic2Hist->SetBinContent(i, ic2 * chargeToParts); + + // MW CHAMBERS + if (!(mw1_focusx != mw1_focusx)) + mw1_focusxHist->SetBinContent(i, mw1_focusx); + mw1_focusyHist->SetBinContent(i, mw1_focusy); + mw2_focusxHist->SetBinContent(i, mw2_focusx); + mw2_focusyHist->SetBinContent(i, mw2_focusy); + + if (!(mw1_posx != mw1_posx)) + mw1_posxHist->SetBinContent(i, mw1_posx); + mw1_posyHist->SetBinContent(i, mw1_posy); + mw2_posxHist->SetBinContent(i, mw2_posx); + mw2_posyHist->SetBinContent(i, mw2_posy); + + if (mw1_posx < 100) + { + mwPosX->Fill(mw1_posx); + mwFocusX->Fill(mw1_focusx); + } + } + spillTimes.push_back(make_pair(lastSpillOn, lastSpillOff)); + + TH1D *tmp = GetChannelSlice(-1); + tmp->Fit("gaus"); + TF1 *fit = tmp->GetFunction("gaus"); + referenceIntegral = fit->GetParameter(0); // this is the constant in front of the gaus!! The real integral is constant*sigma*sqrt(2*pi), but because sigma is the same in one measurement it doesn't matter! + signalDist = new TH1D("signalDist", "signal distribution", 200, 0., referenceIntegral * 2.51 * fit->GetParameter(2)); + signalNoiseDist = new TH1D("signalNoiseDist", "", 200, 0., referenceIntegral * 2.51 * fit->GetParameter(2)); + signalNoiseChannel = new TH1D("signalNoiseChannel", "", 200, 0., tmp->GetMaximum()); + calcBeamTime(); + + printf("HighestBin: %d \n", highestTimeBin); +} + +TH1D *Beammon::GetPrelimProfile() +{ + if (!prelimBeam) + { + printf("WARNING: preliminary profile not yet generated"); + } + return prelimBeam; +} + +TH1D *Beammon::TimeAverage(int timeStart, int timeStop) +{ + if (timeStart == -1) + timeStart = startTime; + if (timeStop == -1) + timeStop = stopTime; + int count = 0; + TH1D *res = new TH1D("timeAverage", "time average", 64, 0.5, 64.5); + TH1D *tmp; + printf("\n\n start: %d, stop: %d \n\n", timeStart, timeStop); + for (int i = timeStart; i <= timeStop; i++) + { + tmp = GetChannelSlice(i, 0); + if (isAboveThreshold(tmp)) + { + res->Add(tmp, 1.); + count++; + } + delete tmp; + } + if (count) + { + for (int n = 1; n <= 64; n++) + { + res->SetBinContent(n, res->GetBinContent(n) / count); + } + return res; + } + else + return 0; +} + +TH1D *Beammon::TimeIntSignal(int timeStart, int timeStop) +{ + if (timeStart == -1) + timeStart = startTime; + if (timeStop == -1) + timeStop = stopTime; + TH1D *res = new TH1D("timeAverage", "time average", 64, 0.5, 64.5); + TH1D *tmp; + for (int i = timeStart; i < timeStop; i++) + { + tmp = GetChannelSlice(i, 0); + if (isAboveThreshold(tmp)) + { + res->Add(tmp, 1.); + beamOnTime++; + } + delete tmp; + } + return res; +} + +TH1D *Beammon::AverageHist(int dir, int timeStart, int timeStop) +{ // dir = 0 => x direction, 1 => y + + TH2D *hist = timePosHist; + + int nbins1, nbins2; + double binStart, binStop; + int firstBin, secondBin; + if (!dir) + { + // Timeaverage + if ((timeStart != -1) && (timeStop != -1)) + { + firstBin = timeStart; //hist->GetYaxis()->FindBin((timeStart-startTime)/readOutFreq); + secondBin = timeStop; //hist->GetYaxis()->FindBin((timeStop-startTime)/readOutFreq); + nbins1 = hist->GetNbinsX(); + nbins2 = secondBin - firstBin; + binStart = hist->GetXaxis()->GetBinCenter(1); + binStop = hist->GetXaxis()->GetBinCenter(nbins1); + } + else + { + nbins1 = hist->GetNbinsX(); + nbins2 = hist->GetNbinsY(); + binStart = hist->GetXaxis()->GetBinCenter(1); + binStop = hist->GetXaxis()->GetBinCenter(nbins1); + firstBin = 1; + secondBin = nbins2; + } + } + else + { + nbins1 = hist->GetNbinsY(); + nbins2 = hist->GetNbinsX(); + binStart = hist->GetYaxis()->GetBinCenter(1); + binStop = hist->GetYaxis()->GetBinCenter(nbins1); + firstBin = 1; + secondBin = hist->GetNbinsX(); + } + + TH1D *retHist = new TH1D("average", "average", nbins1, binStart, binStop); + for (int i = 1; i <= nbins1; i++) + { + int count = 0; + double avg = 0; + + for (int j = firstBin; j <= secondBin; j++) + { + + if (!dir) + { + /*bool beam = beamOnVector[j]; + if(beam==false) + continue; + //else + //printf("TRUE");*/ + avg += hist->GetBinContent(i, j); + } + else + avg += hist->GetBinContent(j, i); + count++; + } + if (count > 0) + avg /= count; + retHist->SetBinContent(i, avg); + } + + return retHist; +} + +TH1D *Beammon::GetTimeAvg() +{ + int n = spillTimes.size(); + TH1D *res = new TH1D("timeAverage", "time average", 64, 0.5, 64.5); + for (int i = 0; i < n; i++) + { + TH1D *tmp = TimeAverage(spillTimes[i].first, spillTimes[i].second); + if (!tmp) + printf("\n\n timeAvgHist is Null! \n\n"); + if (tmp) + res->Add(tmp, 1. / n); + } + res->SetTitle("average beam profile"); + return res; +} + +TH1D *Beammon::GetTimeAvg(int nSpill) +{ + if (nSpill >= spillTimes.size()) + return 0; + TH1D *res = TimeAverage(spillTimes[nSpill].first, spillTimes[nSpill].second); + res->SetTitle("average beam profile"); + return res; +} + +TH1D *Beammon::GetTimeAvg(int nSpill, int nMeasurements) +{ + if (nSpill >= spillTimes.size()) + return 0; + TH1D *res = TimeAverage(spillTimes[nSpill].second - nMeasurements, spillTimes[nSpill].second); + TString title = TString::Format("average beam profile, %d ms, spill %d", nMeasurements, nSpill); + TString name = TString::Format("avg%dmsspill%d", nMeasurements, nSpill); + res->SetTitle(title.Data()); + res->SetName(name.Data()); + return res; +} + +TH2D *Beammon::GetTimeAvgScatter(int nSpill, int nMeasurements) +{ + + int tStart = spillTimes[nSpill].first; + if (nMeasurements == -1) + tStart = spillTimes[nSpill].second - nMeasurements; + + TH2D *res = new TH2D("tavgScatter", "tavgScatter", 64, 0.5, 64.5, 400, 0., highVal); + for (int i = spillTimes[nSpill].first; i < spillTimes[nSpill].second; i++) + { + TH1D *tmp = GetChannelSlice(i, 0); + if (!isAboveThreshold(tmp)) + continue; + for (int bin = 1; bin <= 64; bin++) + { + res->Fill(bin, tmp->GetBinContent(bin)); + } + delete tmp; + } + TString title = TString::Format("beam profile, %d ms, spill %d", nMeasurements, nSpill); + res->SetTitle(title.Data()); + return res; +} + +TH2D *Beammon::GetTimeAvgScatter() +{ + TH2D *res = new TH2D("tavgScatter", "tavgScatter", 64, 0.5, 64.5, 400, 0., highVal); + int n = spillTimes.size(); + for (int i = 0; i < n; i++) + { + res->Add(GetTimeAvgScatter(i, -1), 1. / n); + } + return res; +} + +TH1D *Beammon::GetChannelSigDist(int channel) +{ + + TString sName = TString("signal distribution channel ") + TString(channel); + double maxAmp = 0; + for (int n = 0; n < spillTimes.size(); n++) + { + TH1D *tmp = GetSpillSlice(n); + if (tmp->GetMaximum() > maxAmp) + maxAmp = tmp->GetMaximum(); + delete tmp; + } + TH1D *res = new TH1D(sName.Data(), sName.Data(), 200, 0., maxAmp); + for (int n = 0; n < spillTimes.size(); n++) + { + TH1D *tmp = GetSpillSlice(n); + for (int bin = 1; bin <= tmp->GetNbinsX(); bin++) + { + res->Fill(tmp->GetBinContent(bin)); + //printf("bin: %d, amp: %f \n", bin, tmp->GetBinContent(bin)); + } + delete tmp; + } + return res; +} + +TH1D *Beammon::GetChannelAvg(bool beamOn) +{ + return AverageHist(1, -1, -1); +} + +TH1D *Beammon::GetTimeSlice(int channel, int timeStart, int timeStop, bool beamOn) +{ + + if (timeStart == -1) + timeStart = startTime; + if (timeStop == -1) + timeStop = stopTime; + + int nbins = timeStop - timeStart; + + TH1D *tmp2 = new TH1D("ts", "timeslice", nbins, (timeStart - startTime) / readOutFreq, (timeStop - startTime) / readOutFreq); + + if (channel == -1) + channel = highestChannelBin; + + TH1D *tmp = timePosHist->ProjectionY("", channel, channel); + + int offset = tmp->GetXaxis()->FindBin(timeStart); + for (int bin = 1; bin <= nbins; bin++) + { + tmp2->SetBinContent(bin, tmp->GetBinContent(bin + offset)); + } + TString title = TString::Format("time projection of channel %d", channel); + tmp2->SetTitle(title.Data()); + + return tmp2; +} + +TCanvas *Beammon::GetTimeSliceCanvas(int channel) +{ + + TCanvas *c1 = new TCanvas(); + c1->SetName("timeslice"); + int nbins = stopTime - startTime; + + TH1D *tmp2 = new TH1D("timeslice", "", nbins, 0., (stopTime - startTime) / readOutFreq); + + if (channel == -1) + channel = highestChannelBin; + + TH1D *tmp = timePosHist->ProjectionY("", channel, channel); + + for (int bin = 1; bin <= nbins; bin++) + { + tmp2->SetBinContent(bin, tmp->GetBinContent(bin)); + } + + tmp2->GetXaxis()->SetTitle("times [s]"); + TString label; + label.Form("adc counts / %d #mus", intTime); + tmp2->GetYaxis()->SetTitle(label.Data()); + + tmp2->Draw("P"); + return c1; +} + +TCanvas *Beammon::GetSignalNoiseChannel(int channel) +{ + + TCanvas *c1 = new TCanvas(); + c1->SetName("signalNoiseChannel"); + int nbins = stopTime - startTime; + + if (channel == -1) + channel = highestChannelBin; + + TH1D *tmp = timePosHist->ProjectionY("", channel, channel); + + for (int bin = 1; bin <= nbins; bin++) + { + signalNoiseChannel->Fill(tmp->GetBinContent(bin)); + } + + signalNoiseChannel->GetYaxis()->SetTitle("entries"); + TString label; + label.Form("adc counts / %d #mus", intTime); + signalNoiseChannel->GetXaxis()->SetTitle(label.Data()); + + signalNoiseChannel->Draw(); + return c1; +} + +TH1D *Beammon::GetChannelSlice(int time, int offset) +{ + if (time == -1) + time = highestTimeBin + offset; + //printf("time: %d\n", time); + TH1D *res = timePosHist->ProjectionX("", time, time); //timePosHist->ProjectionX("",timePosHist->GetYaxis()->FindBin(time+offset),timePosHist->GetYaxis()->FindBin(time+offset)); + //res->SetError(channelErrors); + res->SetTitle("single measurement (1ms)"); + res->SetName("Channel_" + (TString)time); + res->Fit("gaus", "Q0"); + double mean = res->GetFunction("gaus")->GetParameter(1); + double sigma = res->GetFunction("gaus")->GetParameter(2); + return res; +} + +TH1D *Beammon::GetChannelSlice2(int time, int offset) +{ + if (time == -1) + time = highestTimeBin + offset; + //printf("time: %d\n", time); + TH1D *res = timePosHist->ProjectionX("", time, time); //timePosHist->ProjectionX("",timePosHist->GetYaxis()->FindBin(time+offset),timePosHist->GetYaxis()->FindBin(time+offset)); + //res->SetError(channelErrors); + res->SetTitle("single measurement (1ms)"); + res->SetName("Channel_" + (TString)time); + res->Fit("gaus", "Q0"); + double mean = res->GetFunction("gaus")->GetParameter(1); + mean_ave += mean; + double sigma = res->GetFunction("gaus")->GetParameter(2); + sigma_ave += sigma; + return res; +} + +TGraphErrors *Beammon::GetChannelGraph(int time, int offset) +{ + if (time == -1) + time = highestTimeBin + offset; + double xErr = 0.8 / sqrt(12); + TH1D *res = timePosHist->ProjectionX("", time, time); + TGraphErrors *graph = new TGraphErrors(64); + for (int ch = 1; ch <= 64; ch++) + { + graph->SetPoint(ch, ch, res->GetBinContent(ch)); + // graph->SetPointError(ch,xErr,channelErrors[ch-1]);//sqrt(channelErrors[ch-1]*channelErrors[ch-1]+res->GetBinContent(ch))); + graph->SetPointError(ch, xErr, channelErrors[ch - 1]); + } + delete res; + return graph; +} + +TH1D *Beammon::GetChannelGraphHist(int time, int offset) +{ + if (time == -1) + time = highestTimeBin + offset; + double xErr = 0.8 / sqrt(12); + TH1D *res = timePosHist->ProjectionX("", time, time); + return res; +} + +TH1D *Beammon::GetSignalOverTime() +{ + TH1D *tmp = timePosHist->ProjectionY("", 1, 64); + tmp->SetTitle("signal over time"); + tmp->SetName("signal over time"); + return tmp; +} + +void Beammon::PrintSpillTimes() +{ + printf("%lu spills recorded: \n", spillTimes.size()); + // cout << spillTimes.size() << "spills recorded: " << endl; + for (int n = 0; n < spillTimes.size(); n++) + printf("%02d: %f - %f \n", n, (spillTimes[n].first - startTime) / readOutFreq, (spillTimes[n].second - startTime) / readOutFreq); +} + +TH1D *Beammon::calcTimeCenters(int start, int stop) +{ + + int tStart = start; + int tStop = stop; + + if (start == -1) + tStart = startTime; + if (stop == -1) + tStop = stopTime; + + int nbins = (tStop - tStart); + double mean = 0; + double sigma = 0; + + double constant; + + + TH1D *res = new TH1D("timeIntSignal_tmp", "time integrated signal", 64, 0.5, 64.5); + TCanvas *tmpcanvas = new TCanvas(); + int offset = tStart; + + TF1 *fit = new TF1("gaus_L", "gaus+[3]", 1, 64); + + TF1 *fit2 = new TF1("gaus_2", "gaus", 1, 64); + fit2->SetParameter(0, 2000); + fit2->SetParameter(1, mean_ave); + fit2->SetParameter(2, sigma_ave); + + for (int bin = tStart; bin <= tStop; bin++) + { + TGraphErrors *tmp = GetChannelGraph(bin, 0); + TH1D *tmp2 = GetChannelGraphHist(bin, 0); + + tmp->Fit("gaus_2", "Q0", "", mean_ave - 3 * sigma_ave, mean_ave + 3 * sigma_ave); + TF1 *func = tmp->GetFunction("gaus_2"); + + if (tmp2->GetMean() * 0.8 > 0) + fibreHist_weighted->SetBinContent(bin + 1, tmp2->GetMean() * 0.8); + else + fibreHist_weighted->SetBinContent(bin + 1, 0); + if (tmp2->GetEntries() > 0) + sigHist_weighted->SetBinContent(bin - 1, tmp2->GetEntries() * signalToParticles); + else + sigHist_weighted->SetBinContent(bin - 1, 0); + + if (func) + { + + if (!isAboveThreshold(tmp)) + continue; + + constant = func->GetParameter(0); + mean = func->GetParameter(1) * channelWidth; + sigma = func->GetParameter(2) * channelWidth; + + if (mean <= 0 || mean > 64) + continue; + + /*if (constant > 1e5 || mean > (mean_ave * channelWidth + 0.2) || mean < (mean_ave * channelWidth - 0.2)) + { + fit->SetParameter(0, 1000); + fit->SetParameter(1, mean_ave); + fit->SetParameter(2, sigma_ave); + fit->SetParameter(3, 0.1); + fit->SetParLimits(0, 100, 2e5); + fit->SetParLimits(1, 1, 64); + fit->SetParLimits(2, 1, 10); + fit->SetParLimits(3, -50, 50); + tmp->Fit("gaus", "Q0", "", mean_ave - 3 * sigma_ave, mean_ave + 3 * sigma_ave); + func = tmp->GetFunction("gaus"); + constant = func->GetParameter(0); + mean = func->GetParameter(1) * channelWidth; + sigma = func->GetParameter(2) * channelWidth; + }*/ + + if (abs(constant) > 1e5) + { + + Fit_Fail_Number = Fit_Fail_Number - 1; + if (Fit_Fail_Number > 0) + { + tmpcanvas->cd(); + tmp->Draw("AP"); + func->Draw("SAME"); + tmpcanvas->Modified(); + tmpcanvas->Write(); + } + continue; + } + + //Fill the error hidto + double erry, tmpx; + bool discard = false; + int nPoint = 0; + for (int chn = 1; chn < 65; chn++) + { + tmp->GetPoint(nPoint, tmpx, erry); + SignalErrHist->Fill((double)tmpx, (erry - func->Eval(tmpx)) / (constant * sigma)); + if ((erry - func->Eval(tmpx)) / (constant * sigma) > discardUpperThreshold || (erry - func->Eval(tmpx)) / (constant * sigma) < discardLowerThreshold) + { + tmp->RemovePoint(nPoint); + nPoint--; + discard = true; + } + nPoint++; + } + + + double signal = sigma * 2.51 * constant * signalToParticles; + + //Fill the new tree + event_count++; + //data->GetEntry(bin); + beamPosX_1 = mean; + beamFocusX_1 = 2.35 * sigma; + beamSignal_1 = signal; + ic1_1 = ic1Hist->GetBinContent(bin - alignintIc); + ic2_1 = ic2Hist->GetBinContent(bin - alignintIc); + mw1_focusx_1 = mw1_focusxHist->GetBinContent(bin - alignint); + mw1_posx_1 = mw1_posxHist->GetBinContent(bin - alignint); + mw2_focusx_1 = mw2_focusxHist->GetBinContent(bin - alignint); + mw2_posx_1 = mw2_posxHist->GetBinContent(bin - alignint); + beamOn = 1; + newdata->Fill(); + if (event_count % 5000 == 0) + { + printf("Signal events: %d ", event_count); + printf("Event number: %d\n", bin); + } + + if (signal < 0 || signal != signal) + continue; + + //Fill the Histograms + beamPosX->Fill(mean); + fibreHist->Fill(bin, mean); + mwpcHist->Fill(bin, mw1_posxHist->GetBinContent(bin - alignint)); + beamFocusX->Fill(2.35 * sigma); + beamPosTimeGraph->SetPoint(bin, bin, mean); + beamPosTimeGraph->SetPointError(bin, 0., func->GetParError(1)); + timeCenters->Fill((bin) / readOutFreq, mean); + timeWidths->Fill((bin) / readOutFreq, sigma * 2.35); + timeCenters_MWPC->Fill((bin) / readOutFreq, mw1_posxHist->GetBinContent(bin - alignint)); + timeWidths_MWPC->Fill((bin) / readOutFreq, mw1_focusxHist->GetBinContent(bin - alignint)); + Diff_timeCenters->Fill((bin) / readOutFreq, mean - mw1_posxHist->GetBinContent(bin - alignint) - shift); + + if (mw1_posxHist->GetBinContent(bin - alignint) < 20) + { + mwPosScatterGraph->SetPoint(mwPosScatterGraph->GetN(), mw1_posxHist->GetBinContent(bin - alignint), mean); + //positionComp->Fill(mean - mw1_posxHist->GetBinContent(bin-4) +111.5415 - 32.02); + for (int i = 0; i < 20; i++) + mwPosScatterPlot[i]->Fill(mw1_posxHist->GetBinContent(bin - i + 10), mean); + } + double sigError = 2.51 * sqrt(sigma * sigma * func->GetParError(0) * func->GetParError(0) + constant * constant * func->GetParError(2) * func->GetParError(2)) * signalToParticles; + if (signal > 1e5 || sigError > signal) + { + //signal = 0; + sigError = 0; + } + if (signal) + { + signalDist->Fill(signal); + if (ic1Hist->GetBinContent(bin - alignintIc)) + { + sigHist->Fill(bin - alignintIc - 1, signal); + signalComp->Fill((signal - ic1Hist->GetBinContent(bin - alignintIc)) / signal); + double x, y, totalSignal = 0, signalError = 0; + for (int k = 0; k < 63; k++) + { + tmp->GetPoint(k, x, y); + signalError += tmp->GetErrorY(k) * tmp->GetErrorY(k); + totalSignal += y * signalToParticles; + } + signalError = sqrt(signalError) * signalToParticles; + sigIcScatterGraph->SetPoint(sigIcScatterGraph->GetN(), ic1Hist->GetBinContent(bin - alignintIc), totalSignal); + sigIcScatterGraph->SetPointError(sigIcScatterGraph->GetN(), 0, signalError); + for (int i = 0; i < 20; i++) + sigIcScatterPlot[i]->Fill(ic1Hist->GetBinContent(bin - i + 10), signal); + Center_Signal->Fill(signal, mean); + // sigIcScatterPlot[14]->Fill(ic1Hist->GetBinContent(bin - 14 + 10), signal); + sigIcScatterPlot_ic2->Fill(ic2Hist->GetBinContent(bin - 14 + 10), signal); + } + } + else + { + //ic1Hist->SetBinContent(bin, 0); + } + + widthComp->Fill(sigma * 2.51 - mw1_focusxHist->GetBinContent(bin - alignint)); + //Center_Signal->Fill(totalSignal, mean); + Diff_hist->Fill(mean - mw1_posxHist->GetBinContent(bin - alignint) - shift); + Diff_Signal->Fill(signal, mean - mw1_posxHist->GetBinContent(bin - alignint) - shift); + Diff_ic1->Fill(ic1Hist->GetBinContent(bin - alignintIc), mean - mw1_posxHist->GetBinContent(bin - alignint) - shift); + + icIntegral += ic1Hist->GetBinContent(bin); + signalTimeGraph->SetPoint(bin, bin, signal); + + signalTimeGraph->SetPointError(bin, 0., sigError); + beamOnTime++; + + double c2 = func->GetChisquare() / func->GetNDF(); + if (c2 < 100) + chisquareDist->Fill(c2); + } + delete func; + delete tmp; + delete tmp2; + } + delete tmpcanvas; + return res; +} + +void Beammon::GetTimeCenters() +{ + + TH1D *tmp_TimeCenter; + double mean_MWPC = mwPosX->GetMean(); + shift = mean_ave * 0.8 / 5 - mwPosX->GetMean(); + double max_ic1 = ic1Hist->GetMaximum(); + + beamOnTime = 0; + int nbins = stopTime - startTime; + mean_ave = prelimBeam->GetMean(); + sigma_ave = prelimBeam->GetStdDev(); + printf("Mean: %f \n", mean_ave); + printf("Sigma: %f \n", sigma_ave); + + timeCenters = new TH2D("timeCenters", "", nbins / 100, 0., (stopTime - startTime) / readOutFreq, 200, (0.8 * mean_ave - 6. * sigma_pos), (0.8 * mean_ave + 6 * sigma_pos)); + timeWidths = new TH2D("timeWidths", "", nbins / 100, 0., (stopTime - startTime) / readOutFreq, 200, 0.4 * sigma_ave * 2.35, 0.95 * sigma_ave * 2.35); + timeIntSignal = new TH1D("timeIntSignal", "time integrated signal", 64, 0.5, 64.5); + timeCenters_MWPC = new TH2D("timeCenters_MWPC", "", nbins / 100, 0., (stopTime - startTime) / readOutFreq, 200, mean_MWPC - 5 * sigma_pos, mean_MWPC + 5 * sigma_pos); + timeWidths_MWPC = new TH2D("timeWidths_MWPC", "", nbins / 100, 0., (stopTime - startTime) / readOutFreq, 200, 1.5, mw1_focusxHist->GetMaximum() * 1.05); + timeIntSignal_MWPC = new TH1D("timeIntSignal_MWPC", "time integrated signal", 64, 0.5, 64.5); + + for (int j = 0; j < 20; j++) + { + TString name; + name.Form("sigIcScatterPlot%d", j); + sigIcScatterPlot[j] = new TH2D(name.Data(), name.Data(), 200, 0, -1, 200, 0, -1); + TString name2; + name2.Form("mwPosScatterPlot%d", j); + mwPosScatterPlot[j] = new TH2D(name2.Data(), name2.Data(), 200, mean_MWPC - 0.1 * sigma_ave, mean_MWPC + 0.1 * sigma_ave, 200, 0.8 * (mean_ave - 0.15 * sigma_ave), 0.8 * (mean_ave + 0.15 * sigma_ave)); + } + sigIcScatterPlot_ic2 = new TH2D("sigIcScatterPlot_ic2", "sigIcScatterPlot_ic2", 200, 0, -1, 200, 0, -1); + + Center_Signal = new TH2D("Center_Signal", "", 200, 0., max_ic1 - 5000, 200, (0.8 * mean_ave - 5 * sigma_pos), (0.8 * mean_ave + 5 * sigma_pos)); + Diff_timeCenters = new TH2D("Diff_time", "", nbins / 100, 0., (stopTime - startTime) / readOutFreq, 200, -6 * sigma_pos, 6 * sigma_pos); + Diff_hist = new TH1D("Diff_hist", "l", 200, -2, 2.); + Diff_Signal = new TH2D("Diff_Signal", "", 200, 0., max_ic1 - 5000, 200, -6 * sigma_pos, 6 * sigma_pos); + Diff_ic1 = new TH2D("Diff_ic1", "", 200, 0., max_ic1 - 5000, 200, -6 * sigma_pos, 6 * sigma_pos); + + b_beamPosX_1 = newdata->Branch("beamPosX_1", &beamPosX_1); + b_beamFocusX_1 = newdata->Branch("beamFocusX_1", &beamFocusX_1); + b_beamSignal_1 = newdata->Branch("beamSignal_1", &beamSignal_1); + bb_ic1 = newdata->Branch("ic1_1", &ic1_1); + bb_ic2 = newdata->Branch("ic2_1", &ic2_1); + bb_mw1_focusx = newdata->Branch("mw1_focusx_1", &mw1_focusx_1); + bb_mw1_posx = newdata->Branch("mw1_posx_1", &mw1_posx_1); + bb_mw2_focusx = newdata->Branch("mw2_focusx_1", &mw2_focusx_1); + bb_mw2_posx = newdata->Branch("mw2_posx_1", &mw2_posx_1); + b_beamOn = newdata->Branch("beamOn", &beamOn); + + newdata->SetBranchStatus("*", 1); + for (int i = 0; i < spillTimes.size(); i++) + { + tmp_TimeCenter = calcTimeCenters(spillTimes[i].first + 200, spillTimes[i].second); + timeIntSignal->Add(tmp_TimeCenter, 1.); + delete tmp_TimeCenter; + beamPosX_1 = 0; + beamFocusX_1 = 0; + beamSignal_1 = 0; + ic1_1 = 0; + mw1_focusx_1 = 0; + mw1_posx_1 = 0; + beamOn = 0; + newdata->Fill(); + } + SignalErrHist->Write(); + printf("Fit_Fail_Counts=%d\n", Fit_Fail_Counts); + + //Draw timeCenter + timeCenters->GetXaxis()->SetTitle("time [s]"); + TString label; + label.Form("mean position[mm]"); + timeCenters->GetYaxis()->SetTitle(label.Data()); + timeCenters->Write(); + + //Draw timeCenter_MWPC + timeCenters_MWPC->GetXaxis()->SetTitle("time [s]"); + TString label2; + label2.Form("mean position[mm]"); + timeCenters_MWPC->GetYaxis()->SetTitle(label.Data()); + timeCenters_MWPC->Write(); + + //Draw timeWidths + timeWidths->GetXaxis()->SetTitle("time [s]"); + TString label12; + label12.Form("width fiber[mm]"); + timeWidths->GetYaxis()->SetTitle(label12.Data()); + timeWidths->Write(); + + //Draw timeWidths_MWPC + timeWidths_MWPC->GetXaxis()->SetTitle("time [s]"); + TString label13; + label13.Form("width MWPC[mm]"); + timeWidths_MWPC->GetYaxis()->SetTitle(label12.Data()); + timeWidths_MWPC->Write(); + + Center_Signal->GetXaxis()->SetTitle("Signal [particles]"); + TString label123; + label123.Form("Position_Fiber[mm]"); + Center_Signal->GetYaxis()->SetTitle(label123.Data()); + Center_Signal->Write(); + Center_Signal->ProfileX()->Write(); + + //Draw Diff_timeCenters + Diff_timeCenters->GetXaxis()->SetTitle("time [s]"); + TString label3; + label3.Form("mean position diff[mm]"); + Diff_timeCenters->GetYaxis()->SetTitle(label.Data()); + Diff_timeCenters->Write(); + + //Draw Diff_Signal + Diff_Signal->GetXaxis()->SetTitle("signal"); + TString label4; + label4.Form("mean position diff[mm]"); + Diff_Signal->GetYaxis()->SetTitle(label.Data()); + Diff_Signal->Write(); + + //Draw Diff_Signal + Diff_ic1->GetXaxis()->SetTitle("ic1"); + TString label5; + label5.Form("mean position diff[mm]"); + Diff_ic1->GetYaxis()->SetTitle(label.Data()); + Diff_ic1->Write(); + + TObjArray aSlices, bSlices; + Diff_Signal->FitSlicesY(0, 0, -1, 5, "QNR", &aSlices); + for (int i = 0; i < 4; i++) + { + aSlices[i]->Write(); + } + Diff_ic1->FitSlicesY(0, 0, -1, 5, "QNR", &bSlices); + for (int i = 0; i < 4; i++) + { + bSlices[i]->Write(); + } + mean_ave = beamPosX->GetMean(); + sigma_pos = beamPosX->GetStdDev(); + sigma_ave = beamFocusX->GetMean(); + return; +} + +pair Beammon::GetSpillTimes(int nSpill) +{ + + return spillTimes[nSpill]; +} + +TH2D *Beammon::GetSpillCenters(int nSpill) +{ + + //return calcTimeCenters(spillTimes[nSpill].first, spillTimes[nSpill].second); +} + +TH1D *Beammon::GetSpillSlice(int nSpill) +{ + return GetTimeSlice(-1, spillTimes[nSpill].first - 500, spillTimes[nSpill].second + 500, true); +} + +TH1D *Beammon::GetSignalDistribution() +{ + /*int n = signalDist->GetNbinsX(); + for(int i = 1; i<= n; i++){ + signalDist->SetBinContent(i,signalDist->GetBinContent(i)*signalDistScale); + }*/ + signalDist->Scale(signalDistScale); + return signalDist; +} + +TCanvas *Beammon::GetSignalDistributionCanvas() +{ + TCanvas *c1 = new TCanvas(); + c1->SetName("signalDistributionCanvas"); + + signalDist->Draw(); + signalDist->SetTitle(""); + signalDist->GetYaxis()->SetTitle("entries"); + TString label; + label.Form("integrated signal [adc counts / %d #mus]", intTime); + signalDist->GetXaxis()->SetTitle(label.Data()); + //c1->SaveAs("dummy"); + return c1; +} + +TH2D *Beammon::GetSimpleView() +{ + return timePosHist; +} + +TH1D *Beammon::GetBaselineHist() +{ + TH1D *tmp = new TH1D("baseline", "baseline", 64, 0.5, 64.5); + for (int n = 1; n <= 64; n++) + { + tmp->SetBinContent(n, baseline[n - 1]); + } + return tmp; +} + +void Beammon::Close() +{ + + delete timePosHist; + fileOut->Close(); +} + +double Beammon::GetIntSignal() +{ + + return intSignal; +} + +int Beammon::GetBeamOnTime() +{ + return beamOnTime; +} + +double Beammon::GetSignalStd() +{ + return signalDist->GetStdDev(1); +} + +bool Beammon::isAboveThreshold(TGraphErrors *slice) +{ + double channel, signal; + slice->GetPoint(highestChannelBin, channel, signal); + if (signal > beamOnAdcVal) + return true; + else + return false; +} + +bool Beammon::isAboveThreshold(TH1D *slice) +{ + double val = slice->GetBinContent(highestChannelBin); + if (val > beamOnAdcVal) + return true; + else + return false; +} + +bool Beammon::isAboveThreshold(double val) +{ + // old version using the gaussian fit to the measurement + if (val > beamOnAdcVal) + return true; + else + return false; + /* + if(val > baselineIntegral * 1.5 && val < baselineIntegral *100) + return true; + else + return false;*/ +} + +TH1D *Beammon::icSignalComp() +{ + icSignalDist = new TH1D("icSignal", "icSignal", 200, 0., ic1Hist->GetMaximum()); + TH1D *icSignalDist2 = new TH1D("icSignal2", "icSignal2", 200, 0., ic2Hist->GetMaximum()); + for (int i = 0; i < ic1Hist->GetNbinsX(); i++) + { + if (ic1Hist->GetBinContent(i) != 0) + icSignalDist->Fill(ic1Hist->GetBinContent(i)); + if (ic2Hist->GetBinContent(i) != 0) + icSignalDist2->Fill(ic2Hist->GetBinContent(i)); + } + icSignalDist2->Write(); + return icSignalDist; +} + +TCanvas *Beammon::signalOverTime2d() +{ + + TCanvas *c1 = new TCanvas(); + c1->SetName("signalOverTime2d"); + TH1D *tmp = GetSignalOverTime(); + int binsX = tmp->GetNbinsX(); + int max = tmp->GetMaximum(); + int min = tmp->GetMinimum(); + TH2D *res = new TH2D("sigTime2d", "", binsX / 200, 0., binsX / readOutFreq, 100, min, max); + for (int k = 0; k < binsX; k++) + { + res->Fill(k / readOutFreq, tmp->GetBinContent(k)); + } + + res->Draw("colz"); + res->GetXaxis()->SetTitle("time [s]"); + TString label; + label.Form("adc counts / %d #mus", intTime); + res->GetYaxis()->SetTitle(label.Data()); + //c1->SaveAs("dummy"); + res->Write(); + return c1; +} + +double Beammon::calcBeamTime() +{ + + beamOnTime = 0; + for (int i = 0; i < spillTimes.size(); i++) + { + beamOnTime += spillTimes[i].second - spillTimes[i].first; + } + return beamOnTime; +} + +TCanvas *Beammon::PrintProfile(int offset) +{ + TCanvas *c1 = new TCanvas(); + c1->cd(); + //TH1D *res = GetChannelSlice(-1,offset); + TGraphErrors *res = new TGraphErrors(64); + TGraphErrors *tmp = GetChannelGraph(-1, offset); + + double x, y, errx, erry; + for (int ch = 0; ch < 63; ch++) + { + tmp->GetPoint(ch, x, y); + x *= 0.8; + errx = 0; + erry = tmp->GetErrorY(ch); + res->SetPoint(ch, x, y); + res->SetPointError(ch, errx, erry); + } + + res->Fit("gaus", "Q0"); + + double stepsize = 0.01; + double lim = res->GetFunction("gaus")->GetMaximum() / 2; + + double val, x1, x2, pos = 0; + bool below = true; + while (pos <= 64) + { + val = res->GetFunction("gaus")->Eval(pos); + if (below && val >= lim) + { + x1 = pos; + below = false; + } + else if (below == false && val <= lim) + { + x2 = pos; + break; + } + pos += stepsize; + } + fwhm = (x2 - x1) * channelWidth; + + res->Draw("AP"); + + TString sName; + sName.Form("Profile%d", offset); + c1->SetName(sName.Data()); + res->SetTitle(""); + res->GetXaxis()->SetTitle("position [mm]"); + TString label; + label.Form("adc counts / %d #mus", intTime); + res->GetYaxis()->SetTitle(label.Data()); + res->GetYaxis()->SetTitleOffset(1.4); + + TString str; + str.Form("fwhm = %.3f mm", fwhm); + TText *t = new TText(34, 900, str.Data()); + t->Draw("SAME"); + delete t; + delete res; + + c1->Update(); + c1->Modified(); + //c1->SaveAs(sName.Data()); + return c1; +} +TCanvas *Beammon::FitSnapshot(int offset) +{ + + //gSyle->SetOptFit(1111); + TCanvas *c1 = new TCanvas(); + c1->cd(); + TGraphErrors *res = GetChannelGraph(-1, offset); + TString sName; + sName.Form("Snapshot%d", offset); + c1->SetName(sName.Data()); + res->SetTitle(""); + res->GetXaxis()->SetTitle("channel"); + TString label; + label.Form("adc counts / %d #mus", intTime); + res->GetYaxis()->SetTitle(label.Data()); + res->GetYaxis()->SetTitleOffset(1.4); + //res->Fit("gaus"); + + res->Fit("gaus"); + double mean = res->GetFunction("gaus")->GetParameter(1); + double sigma = res->GetFunction("gaus")->GetParameter(2); + double constant = res->GetFunction("gaus")->GetParameter(0); + + TF1 *func = new TF1("doublegaus", fitfunc, 0, 64, 6); // t + func->SetNpx(1000); + func->SetParameter(0, constant); + func->SetParameter(1, mean); + func->SetParameter(2, sigma); + func->SetParameter(3, constant); + func->SetParameter(4, sigma); + func->SetParameter(5, 0.); + func->SetParLimits(1, 0., 64.); + func->SetParLimits(2, 1., 20.); + func->SetParLimits(4, 5., 100.); + //func->SetParameter(5,0.); + res->Fit("doublegaus"); + + res->Draw("AP"); + c1->SaveAs(sName.Data()); + return c1; +} + +TCanvas *Beammon::FitAverage() +{ + + TCanvas *c1 = new TCanvas(); + c1->cd(); + int n = spillTimes.size(); + double yValues[64]; + double yErrors[64]; + double xValues[64]; + double xErrors[64]; + int count = 0; + double x, y, errY; + TGraphErrors *tmp; + yValues[0] = 0; + + for (int i = 0; i < n; i++) + { + int start = spillTimes[i].first; + int stop = spillTimes[i].second; + for (int k = start; k <= stop; k++) + { + count++; + tmp = GetChannelGraph(k, 0); + for (int bin = 1; bin <= 64; bin++) + { + errY = tmp->GetErrorY(bin); + tmp->GetPoint(bin, x, y); + if (!(y != y || errY != errY)) + + { + yValues[bin - 1] += y; + yErrors[bin - 1] += errY * errY; + } + else + { + yValues[bin - 1] += 0; + yErrors[bin - 1] += 0; + } + } + delete tmp; + } + } + + for (int bin = 0; bin < 64; bin++) + { + xValues[bin] = bin; + xErrors[bin] = 1. / sqrt(12); + yValues[bin] *= 1. / count; + yErrors[bin] = sqrt(yErrors[bin]) / count; + } + + /*for (int i = 0; i < 64; i++) + { + printf("channelErrors[%d]: %f ", i, channelErrors[i]); + printf("yValue[%d]: %f ", i, yValues[i]); + printf("yError[%d]: %f \n", i, yErrors[i]); + }*/ + TGraph *res = new TGraph(64, xValues, yValues); //, xErrors, yErrors); + + c1->SetName("avgGraph"); + res->SetTitle(""); + res->GetXaxis()->SetTitle("channel"); + TString label; + label.Form("adc counts / %d #mus", intTime); + res->GetYaxis()->SetTitle(label.Data()); + res->GetYaxis()->SetTitleOffset(1.4); + + res->Fit("gaus", "Q0"); + double mean = res->GetFunction("gaus")->GetParameter(1); + //mean_ave = mean; + double sigma = res->GetFunction("gaus")->GetParameter(2); + //sigma_ave = sigma; + double constant = res->GetFunction("gaus")->GetParameter(0); + //res->Fit("gaus","","",mean-1.5*sigma,mean+1.5*sigma); + + TF1 *func = new TF1("doublegaus", fitfunc, 0, 64, 6); // t + func->SetNpx(1000); + func->SetParameter(0, constant); + func->SetParameter(1, mean); + func->SetParameter(2, sigma); + func->SetParameter(3, constant); + func->SetParameter(4, sigma); + func->SetParameter(5, 0.); + func->SetParLimits(1, 0., 64.); + func->SetParLimits(2, 1., 20.); + func->SetParLimits(4, 5., 100.); + //func->SetParameter(5,0.); + res->Fit("doublegaus"); + + res->Draw("AP"); + //c1->SaveAs("avgFit"); + + // find fwhm + double stepsize = 0.01; + double lim = res->GetFunction("doublegaus")->GetMaximum() / 2; + + double val, x1, x2, pos = 0; + bool below = true; + while (pos <= 64) + { + val = func->Eval(pos); + if (below && val >= lim) + { + x1 = pos; + below = false; + } + else if (below == false && val <= lim) + { + x2 = pos; + break; + } + pos += stepsize; + } + fwhm = (x2 - x1) * channelWidth; + return c1; +} + +TCanvas *Beammon::PrintChannelNoise(int channel) +{ + + TCanvas *c1 = new TCanvas(); + c1->cd(); + TString name; + name.Form("channelNoise%d", channel); + TString label; + label.Form("adc counts / %d #mus", intTime); + c1->SetName(name.Data()); + channelSig[channel]->SetTitle(""); + channelSig[channel]->SetName(name.Data()); + channelSig[channel]->GetXaxis()->SetTitle(label.Data()); + channelSig[channel]->GetYaxis()->SetTitle("entries"); + + channelSig[channel]->Draw(); + gStyle->SetOptStat("mr"); + gPad->Modified(); + //c1->SaveAs("blub"); + return c1; +} + +TCanvas *Beammon::IcFitSlicesY() +{ + TCanvas *c1 = new TCanvas(); + c1->cd(); + c1->SetName("icFitSlicesY"); + + TH1D *tmp = timePosHist->ProjectionY("", 1, 64); + + TH1D *means = (TH1D *)sigIcScatterPlot[10 + alignintIc]->ProfileY(); //(TH1D*)objectArray[1]; + means->SetLineColor(kBlack); + + //sigIcScatterPlot->Draw(); + means->Draw("E"); + means->GetXaxis()->SetRangeUser(0., means->GetXaxis()->GetXmax()); + means->SetMinimum(0.); + means->SetTitle(""); + //means->SetName("icFitSlicesY"); + TString label1, label2; + label1.Form("mean photodiode signal [particles / %d #mus]", intTime); + label2.Form("ionisation chamber signal [particles / %d #mus]", intTime); + means->GetXaxis()->SetTitle(label2.Data()); + means->GetYaxis()->SetTitle(label1.Data()); + + means->Fit("pol1"); + + //sigIcScatterPlot->Draw(); + gPad->Modified(); + //c1->SaveAs("blub"); + means->Write(); + return c1; +} + +TCanvas *Beammon::PrintSigIcGraph() +{ + TCanvas *c1 = new TCanvas(); + c1->cd(); + + TString name; + name.Form("sigIcScatterGraph"); + TString label, label2; + label.Form("adc counts / %d #mus", intTime); + label2.Form("whatever / %d #mus", intTime); + c1->SetName(name.Data()); + sigIcScatterGraph->SetTitle(""); + sigIcScatterGraph->SetName(name.Data()); + sigIcScatterGraph->GetXaxis()->SetTitle(label2.Data()); + sigIcScatterGraph->GetYaxis()->SetTitle(label.Data()); + + sigIcScatterGraph->Fit("pol1", "W"); + sigIcScatterGraph->Draw("AP"); + gPad->Modified(); + //c1->SaveAs("blub"); + return c1; +} + +TH1D *Beammon::GetMwPosComp() +{ + double bin, mean; + double shift = beamPosX->GetMean() - mwPosX->GetMean(); + //printf("beam: %f \n",beamPosTimeGraph->GetMean(2)); + int n = beamPosTimeGraph->GetN(); + for (int i = 0; i < n; i++) + { + beamPosTimeGraph->GetPoint(i, bin, mean); + if (!mean) + continue; + positionComp->Fill(mean - mw1_posxHist->GetBinContent(bin - alignint) - shift); + } + return positionComp; +} + +// +/// +///////////////////////////////////////////////////////////////////////////// + +TCanvas *Beammon::GetSig_e_ic_Hist() +{ + shift = beamPosX->GetMean() - mwPosX->GetMean(); + printf("shift = %f", shift); + TCanvas *c1 = new TCanvas(); + c1->cd(); + c1->SetName("SignalComp_vs_Time"); + Double_t norm = ic1Hist->Integral(); + ic1Hist->Scale(1. / norm); + ic1Hist->SetLineColor(kRed); + ic1Hist->Draw("HIST L"); + Double_t norm0 = sigHist->Integral(); + Double_t scaleSig = norm / norm0; + sigHist->Scale(1. / norm0); + sigHist->Draw("HIST SAME L"); + TLegend* legend = new TLegend(0.1, 0.7, 0.48, 0.9); + legend->AddEntry(ic1Hist, "ic", "l"); + legend->AddEntry(sigHist, "Fibre", "l"); + legend->Draw(); + + TH1D *compsig = new TH1D("compsig", "compsig", 200, -0.5, 0.5); + for (int i = 0; i < nevents; i++) + { + compsig->Fill((ic1Hist->GetBinContent(i) - sigHist->GetBinContent(i)) * 2 / (ic1Hist->GetBinContent(i) + sigHist->GetBinContent(i))); + } + compsig->Write(); + + TCanvas *c2 = new TCanvas(); + c2->cd(); + c2->SetName("PositionComp_vs_Time"); + TH1D *fibreHistNew = new TH1D("fibreHistNew", "fibreHistNew", nevents, 0., nevents - 1); + for (int i = 0; i < nevents; i++) + { + if (fibreHist->GetBinContent(i) != 0) + { + fibreHistNew->SetBinContent(i, fibreHist->GetBinContent(i) - shift); + } + else + fibreHistNew->SetBinContent(i, 0); + } + fibreHistNew->Draw("HIST L"); + mwpcHist->SetLineColor(kRed); + mwpcHist->SetLineColor(kRed); + mwpcHist->Draw("HIST SAME L"); + TLegend * legend2 = new TLegend(0.1, 0.7, 0.48, 0.9); + legend2->AddEntry(mwpcHist, "MWPC", "l"); + legend2->AddEntry(fibreHistNew, "Fibre", "l"); + legend2->Draw(); + c2->Write(); + return c1; +} + +TCanvas *Beammon::GetSig_e_ic_Hist_Weighted() +{ + TCanvas *c1 = new TCanvas(); + c1->cd(); + c1->SetName("SignalComp_vs_Time_all"); + Double_t norm = ic1Hist->Integral(); + ic1Hist->Scale(1. / norm); + ic1Hist->SetLineColor(kRed); + ic1Hist->SetLineWidth(2); + ic1Hist->Draw("HIST L"); + Double_t norm0 = sigHist_weighted->Integral(); + sigHist_weighted->Scale(1. / norm0); + sigHist_weighted->Draw("HIST SAME L"); + Double_t norm1 = sigHist->Integral(); + sigHist->Scale(1. / norm1); + sigHist->SetLineColor(kBlue); + sigHist->Draw("HIST SAME L"); + TLegend * legend = new TLegend(0.1, 0.7, 0.48, 0.9); + legend->AddEntry(ic1Hist, "ic", "l"); + legend->AddEntry(sigHist, "Fibre_fit", "l"); + legend->AddEntry(sigHist_weighted, "Fibre_sum", "l"); + legend->Draw(); + c1->Write(); + + TH1D *compsig_weighted = new TH1D("compsig_weighted", "compsig", 200, -0.5, 0.5); + for (int i = 0; i < nevents; i++) + { + compsig_weighted->Fill((ic1Hist->GetBinContent(i) - sigHist_weighted->GetBinContent(i)) * 2 / (ic1Hist->GetBinContent(i) + sigHist_weighted->GetBinContent(i))); + } + compsig_weighted->SetLineColor(kRed); + compsig_weighted->Write(); + TH1D *compsig = new TH1D("compsig", "compsig", 200, -0.5, 0.5); + for (int i = 0; i < nevents; i++) + { + compsig->Fill((ic1Hist->GetBinContent(i) - sigHist->GetBinContent(i)) * 2 / (ic1Hist->GetBinContent(i) + sigHist->GetBinContent(i))); + } + c1->cd(); + c1->SetName("CompSig_all"); + compsig->Draw(); + compsig_weighted->Draw("SAME"); + TLegend * legend2 = new TLegend(0.1, 0.7, 0.48, 0.9); + legend2->AddEntry(compsig_weighted, "Weighted", "l"); + legend2->AddEntry(compsig, "Fit", "l"); + legend2->Draw(); + c1->Write(); + + TCanvas *c2 = new TCanvas(); + c2->cd(); + c2->SetName("PositionComp_vs_Time_all"); + TH1D *fibreHistNew_weighted = new TH1D("fibreHistNew_weighted", "fibreHistNew_weighted", nevents, 0., nevents - 1); + for (int i = 0; i < nevents; i++) + { + if (fibreHist_weighted->GetBinContent(i) != 0) + { + fibreHistNew_weighted->SetBinContent(i, fibreHist_weighted->GetBinContent(i) - shift); + } + else + fibreHistNew_weighted->SetBinContent(i, 0); + } + TH1D *fibreHistNew = new TH1D("fibreHistNew", "fibreHistNew", nevents, 0., nevents - 1); + for (int i = 0; i < nevents; i++) + { + if (fibreHist->GetBinContent(i) != 0) + { + fibreHistNew->SetBinContent(i, fibreHist->GetBinContent(i) - shift); + } + else + fibreHistNew->SetBinContent(i, 0); + } + fibreHistNew->Draw("HIST L"); + fibreHistNew->SetLineColor(kBlue); + fibreHistNew_weighted->Draw("HIST L SAME"); + mwpcHist->SetLineColor(kRed); + mwpcHist->SetLineWidth(2); + mwpcHist->Draw("HIST SAME L"); + TLegend * legend3 = new TLegend(0.1, 0.7, 0.48, 0.9); + legend3->AddEntry(mwpcHist, "MWPC", "l"); + legend3->AddEntry(fibreHistNew, "Fibre_fit", "l"); + legend3->AddEntry(fibreHistNew_weighted, "Fibre_Weighted", "l"); + legend3->Draw(); + c2->Write(); + + c2->cd(); + c2->Clear(); + c2->SetName("PosComp_All"); + TH1D *comppos_weighted = new TH1D("comppos_weighted", "comppos", 200, -0.4, 0.4); + for (int i = 0; i < nevents; i++) + { + comppos_weighted->Fill((mwpcHist->GetBinContent(i) - fibreHist_weighted->GetBinContent(i) + shift)); + } + comppos_weighted->SetLineColor(kRed); + comppos_weighted->Write(); + TH1D *comppos = new TH1D("comppos", "comppos", 200, -0.4, 0.4); + for (int i = 0; i < nevents; i++) + { + comppos->Fill((mwpcHist->GetBinContent(i) - fibreHist->GetBinContent(i) + shift)); + } + comppos->Draw(); + comppos_weighted->Draw("SAME"); + TLegend * legend4 = new TLegend(0.1, 0.7, 0.48, 0.9); + legend4->AddEntry(comppos_weighted, "Weighted", "l"); + legend4->AddEntry(comppos, "Fit", "l"); + legend4->Draw(); + return c2; +} diff --git a/Scripts_20161201/Scripts_20161201/convert b/Scripts_20161201/Scripts_20161201/convert new file mode 100755 index 0000000..ad6ada1 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/convert differ diff --git a/Scripts_20161201/Scripts_20161201/convert.c b/Scripts_20161201/Scripts_20161201/convert.c new file mode 100644 index 0000000..a2956a1 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/convert.c @@ -0,0 +1,212 @@ +#include +#include +#include +#include +#include +#include +#include +#include + +using namespace std; + +void csvToRoot(TString filename) +{ +} +Int_t main(Int_t argc, const char *argv[]) +{ + const char *foldername = "/work/leverington/beamprofilemonitor/hitdata/HIT_01-12-2016"; + const char *dbasename = Form("%s/database.csv",foldername); + const char *dirname = Form("%s/with_timestamp/",foldername); + const char *dirCsv = Form("%s/hit_csv/with_timestamp/",foldername); + const char *ext = ".csv"; + + //read database + string key, value; + ifstream infile(dbasename, ios::in); + map database; + while (infile >> key >> value) + { + database[key] = value; + cout << value << endl; + } + + TSystemDirectory dir(dirname, dirname); + TList *files = dir.GetListOfFiles(); + if (files) + { + TSystemFile *file; + TString fname; + TIter next(files); + + while ((file = (TSystemFile *)next())) + { + fname = file->GetName(); + if (fname == "database.csv") + continue; + if (!file->IsDirectory() && fname.EndsWith(ext)) + { + + TTree *tree = new TTree("t", "t"); + cout << fname << endl; + tree->ReadFile(TString(TString(dirname) + file->GetName()), "time/D:event_id:sync_out:sync_in:data_ok:led_voltage:current:ch00:ch01:ch02:ch03:ch04:ch05:ch06:ch07:ch08:ch09:ch10:ch11:ch12:ch13:ch14:ch15:ch16:ch17:ch18:ch19:ch20:ch21:ch22:ch23:ch24:ch25:ch26:ch27:ch28:ch29:ch30:ch31:ch32:ch33:ch34:ch35:ch36:ch37:ch38:ch39:ch40:ch41:ch42:ch43:ch44:ch45:ch46:ch47:ch48:ch49:ch50:ch51:ch52:ch53:ch54:ch55:ch56:ch57:ch58:ch59:ch60:ch61:ch62:ch63:ch64:ch65:ch66:ch67:ch68:ch69:ch70:ch71:ch72:ch73:ch74:ch75:ch76:ch77:ch78:ch79:ch80:ch81:ch82:ch83:ch84:ch85:ch86:ch87:ch88:ch89:ch90:ch91:ch92:ch93:ch94:ch95:ch96:ch97:ch98:ch99:ch100:ch101:ch102:ch103:ch104:ch105:ch106:ch107:ch108:ch109:ch110:ch111:ch112:ch113:ch114:ch115:ch116:ch117:ch118:ch119:ch120:ch121:ch122:ch123:ch124:ch125:ch126:ch127", '\t'); + // tree->ReadFile(TString(TString(dirname) + file->GetName()), "time/D:event_id:sync_out:sync_in:data_ok:led_voltage:current:ch00:ch01:ch02:ch03:ch04:ch05:ch06:ch07:ch08:ch09:ch10:ch11:ch12:ch13:ch14:ch15:ch16:ch17:ch18:ch19:ch20:ch21:ch22:ch23:ch24:ch25:ch26:ch27:ch28:ch29:ch30:ch31:ch32:ch33:ch34:ch35:ch36:ch37:ch38:ch39:ch40:ch41:ch42:ch43:ch44:ch45:ch46:ch47:ch48:ch49:ch50:ch51:ch52:ch53:ch54:ch55:ch56:ch57:ch58:ch59:ch60:ch61:ch62:ch63", '\t'); + TString outname = TString(dirname) + fname; + outname.Replace(outname.Length() - 3, 3, TString("root")); + TFile *outfile = new TFile(outname.Data(), "recreate"); + outfile->cd(); + //outfile = tree->GetCurrentFile(); + + TTree *tree2 = new TTree("t2", "t2"); + + fname.Replace(fname.Length() - 3, 3, TString("root")); + string key = string(fname.Data()); + key.erase(key.end() - 5, key.end()); + if(database[key] == "nothing"){ + outfile->Close(); + continue; + } + printf("%s\n", database[key].c_str()); + string value = string(dirCsv) + database[key] + ".csv"; + printf("name1: %s , name2: %s\n", key.data(), value.data()); + + tree2->ReadFile(value.data(), "TIME2/D:IC1:IC2:MW1_FOCUSX:MW1_FOCUSY:MW2_FOCUSX:MW2_FOCUSY:MW1_POSX:MW1_POSY:MW2_POSX:MW2_POSY:TCS-SPAM:TCS-KO:BNEXTPOINT:ANALOG_IN1:ANALOG_IN2:ENERGY:INTENSITY:ION-SORT", '\t'); + + int k = 0; + int count = 0; + double ic1, ic2, mw1_focusx, mw1_focusy, mw2_focusx, mw2_focusy, mw1_posx, mw1_posy, mw2_posx, mw2_posy; + double ic1_avg, ic2_avg, mw1_focusx_avg, mw1_focusy_avg, mw2_focusx_avg, mw2_focusy_avg, mw1_posx_avg, mw1_posy_avg, mw2_posx_avg, mw2_posy_avg; + double time; + double time2; + + tree->SetBranchAddress("time", &time); + + tree2->SetBranchAddress("TIME2", &time2); + tree2->SetBranchAddress("IC1", &ic1); + tree2->SetBranchAddress("IC2", &ic2); + tree2->SetBranchAddress("MW1_FOCUSX", &mw1_focusx); + tree2->SetBranchAddress("MW1_FOCUSY", &mw1_focusy); + tree2->SetBranchAddress("MW2_FOCUSX", &mw2_focusx); + tree2->SetBranchAddress("MW2_FOCUSY", &mw2_focusy); + tree2->SetBranchAddress("MW1_POSX", &mw1_posx); + tree2->SetBranchAddress("MW1_POSY", &mw1_posy); + tree2->SetBranchAddress("MW2_POSX", &mw2_posx); + tree2->SetBranchAddress("MW2_POSY", &mw2_posy); + + TBranch *bic1 = tree->Branch("ic1", &ic1_avg, "ic1/D"); + TBranch *bic2 = tree->Branch("ic2", &ic2_avg, "ic2/D"); + TBranch *bmw1_focusx = tree->Branch("mw1_focusx", &mw1_focusx_avg, "mw1_focusx/D"); + TBranch *bmw1_focusy = tree->Branch("mw1_focusy", &mw1_focusy_avg, "mw1_focusy/D"); + TBranch *bmw2_focusx = tree->Branch("mw2_focusx", &mw2_focusx_avg, "mw2_focusx/D"); + TBranch *bmw2_focusy = tree->Branch("mw2_focusy", &mw2_focusy_avg, "mw2_focusy/D"); + TBranch *bmw1_posx = tree->Branch("mw1_posx", &mw1_posx_avg, "mw1_posx/D"); + TBranch *bmw1_posy = tree->Branch("mw1_posy", &mw1_posy_avg, "mw1_posy/D"); + TBranch *bmw2_posx = tree->Branch("mw2_posx", &mw2_posx_avg, "mw2_posx/D"); + TBranch *bmw2_posy = tree->Branch("mw2_posy", &mw2_posy_avg, "mw2_posy/D"); + + int currentEntryTree2 = 1; + + int nevents = tree->GetEntries(); + int nevents2 = tree2->GetEntries(); + ic1_avg = 0; + ic2_avg = 0; + mw1_focusx_avg = 0; + mw1_focusy_avg = 0; + mw2_focusx_avg = 0; + mw2_focusy_avg = 0; + mw1_posx_avg = 0; + mw1_posy_avg = 0; + mw2_posx_avg = 0; + mw2_posy_avg = 0; + time2 = 0; + tree2->GetEntry(currentEntryTree2); + + for (int i = 0; i < nevents; i++) + { + + tree->GetEntry(i); + + if (i % 10000 == 0) + { + + printf("merging event %d ,", i); + printf("Time %f \n", time); + printf("Entry hit %d ,", currentEntryTree2); + printf("Time hit %f \n", time2); + } + + int count = 0; + int count2 = 0; + + while (time2 <= (time + 0.2) && currentEntryTree2 < nevents2) + { + if ((time2 - time) <= 0.1 && (time2 - time) >= 0) + + { + tree2->GetEntry(currentEntryTree2); + + ic1_avg += ic1; + ic2_avg += ic2; + + count++; + } + tree2->GetEntry(currentEntryTree2); + + if ((time2 - time) <= 0.1 && (time2 - time) >= 0) + { + tree2->GetEntry(currentEntryTree2 - 4); + mw1_focusx_avg += mw1_focusx; + mw1_focusy_avg += mw1_focusy; + mw2_focusx_avg += mw2_focusx; + mw2_focusy_avg += mw2_focusy; + mw1_posx_avg += mw1_posx; + mw1_posy_avg += mw1_posy; + mw2_posx_avg += mw2_posx; + mw2_posy_avg += mw2_posy; + count2++; + } + + tree2->GetEntry(currentEntryTree2); + + currentEntryTree2++; + } + + ic1_avg /= count; + ic2_avg /= count; + mw1_focusx_avg /= count2; + mw1_focusy_avg /= count2; + mw2_focusx_avg /= count2; + mw2_focusy_avg /= count2; + mw1_posx_avg /= count2; + mw1_posy_avg /= count2; + mw2_posx_avg /= count2; + mw2_posy_avg /= count2; + + bic1->Fill(); + bic2->Fill(); + bmw1_focusx->Fill(); + bmw1_focusy->Fill(); + bmw2_focusx->Fill(); + bmw2_focusy->Fill(); + bmw1_posx->Fill(); + bmw1_posy->Fill(); + bmw2_posx->Fill(); + bmw2_posy->Fill(); + ic1_avg = 0; + ic2_avg = 0; + mw1_focusx_avg = 0; + mw1_focusy_avg = 0; + mw2_focusx_avg = 0; + mw2_focusy_avg = 0; + mw1_posx_avg = 0; + mw1_posy_avg = 0; + mw2_posx_avg = 0; + mw2_posy_avg = 0; + } + + tree->Write(); + outfile->Close(); + } + } + } + return 0; +} diff --git a/Scripts_20161201/Scripts_20161201/convert_batch b/Scripts_20161201/Scripts_20161201/convert_batch new file mode 100755 index 0000000..3c9e21a Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/convert_batch differ diff --git a/Scripts_20161201/Scripts_20161201/convert_batch.c b/Scripts_20161201/Scripts_20161201/convert_batch.c new file mode 100644 index 0000000..22e7960 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/convert_batch.c @@ -0,0 +1,276 @@ +#include +#include +#include +#include +#include +#include +#include +#include + +using namespace std; + +void csvToRoot(TString filename) +{ +} +Int_t main(Int_t argc, const char *argv[]) +{ + double timeoffset; + int mwoffset; + double timewindow; + double timeoffset2; + double timewindow2; + if (argc==7){ + timeoffset = atof(argv[2]); + mwoffset = atoi(argv[3]); + timewindow = atof(argv[4]); + timeoffset2 = atof(argv[5]); + timewindow2 = atof(argv[6]); + printf("Time offsets: %f %f\n", timeoffset, timeoffset2); + } + else if (argc==2){ + timeoffset = -0.50; //offset between ic and bpm readouts + mwoffset = 0; // offset for timestamped event. MW chamber position correlation seems to be better in other windows + timewindow = -0.099; //should be a negative number. window size in time to average over. + timeoffset2 = -0.50; //offset between ic and bpm readouts + timewindow2 = -0.05; //should be a negative number. window size in time to average over. + + printf("Default timeoffsets:%f\n", timeoffset); + printf("Default mwoffset:%i\n", mwoffset); + } + else { + printf("./convert_batch PiN_run32.csv \n"); + printf("or\n"); + printf("./convert_batch PiN_run32.csv -0.25 2 -0.312 -0.21 0.05\n"); + return 1; + } + + + + const char *dbasename = "/work/leverington/beamprofilemonitor/hitdata/HIT_01-12-2016/database.csv"; + const char *dirname = "/work/leverington/beamprofilemonitor/hitdata/HIT_01-12-2016/with_timestamp/csv/"; + const char *outputdirname = "/work/leverington/beamprofilemonitor/hitdata/HIT_01-12-2016/with_timestamp/pin/"; + const char *dirCsv = "/work/leverington/beamprofilemonitor/hitdata/HIT_01-12-2016/hit_csv/with_timestamp/"; + const char *ext = ".csv"; + + //read database + string key, value; + ifstream infile(dbasename, ios::in); + map database; + while (infile >> key >> value) + { + database[key] = value; + // cout << value << endl; + } + + TSystemDirectory dir(dirname, dirname); + if (true) + { + TSystemFile *file; + TString fname = argv[1]; + if (fname.EndsWith(ext)) + { + + TTree *tree = new TTree("t", "t"); + cout << fname << endl; + tree->ReadFile(TString(TString(dirname) + fname.Data()), "time/D:event_id:sync_out:sync_in:data_ok:led_voltage:current:ch00:ch01:ch02:ch03:ch04:ch05:ch06:ch07:ch08:ch09:ch10:ch11:ch12:ch13:ch14:ch15:ch16:ch17:ch18:ch19:ch20:ch21:ch22:ch23:ch24:ch25:ch26:ch27:ch28:ch29:ch30:ch31:ch32:ch33:ch34:ch35:ch36:ch37:ch38:ch39:ch40:ch41:ch42:ch43:ch44:ch45:ch46:ch47:ch48:ch49:ch50:ch51:ch52:ch53:ch54:ch55:ch56:ch57:ch58:ch59:ch60:ch61:ch62:ch63:ch64:ch65:ch66:ch67:ch68:ch69:ch70:ch71:ch72:ch73:ch74:ch75:ch76:ch77:ch78:ch79:ch80:ch81:ch82:ch83:ch84:ch85:ch86:ch87:ch88:ch89:ch90:ch91:ch92:ch93:ch94:ch95:ch96:ch97:ch98:ch99:ch100:ch101:ch102:ch103:ch104:ch105:ch106:ch107:ch108:ch109:ch110:ch111:ch112:ch113:ch114:ch115:ch116:ch117:ch118:ch119:ch120:ch121:ch122:ch123:ch124:ch125:ch126:ch127", '\t'); + // tree->ReadFile(TString(TString(dirname) + fname.Data()), "time/D:event_id:sync_out:sync_in:data_ok:led_voltage:current:ch00:ch01:ch02:ch03:ch04:ch05:ch06:ch07:ch08:ch09:ch10:ch11:ch12:ch13:ch14:ch15:ch16:ch17:ch18:ch19:ch20:ch21:ch22:ch23:ch24:ch25:ch26:ch27:ch28:ch29:ch30:ch31:ch32:ch33:ch34:ch35:ch36:ch37:ch38:ch39:ch40:ch41:ch42:ch43:ch44:ch45:ch46:ch47:ch48:ch49:ch50:ch51:ch52:ch53:ch54:ch55:ch56:ch57:ch58:ch59:ch60:ch61:ch62:ch63", '\t'); + TString outname = TString(outputdirname) + fname ; + outname.Replace(outname.Length() - 4, 4, TString(TString(argv[2])+".root")); + TFile *outfile = new TFile(outname.Data(), "recreate"); + outfile->cd(); + //outfile = tree->GetCurrentFile(); + + TTree *tree2 = new TTree("t2", "t2"); + + fname.Replace(fname.Length() - 3, 3, TString("root")); + string key = string(fname.Data()); + key.erase(key.end() - 5, key.end()); + if(database[key] == "nothing"){ + outfile->Close(); + return 1; + } + printf("%s\n", database[key].c_str()); + string value = string(dirCsv) + database[key] + ".csv"; + printf("name1: %s , name2: %s\n", key.data(), value.data()); + + tree2->ReadFile(value.data(), "TIME2/D:IC1:IC2:MW1_FOCUSX:MW1_FOCUSY:MW2_FOCUSX:MW2_FOCUSY:MW1_POSX:MW1_POSY:MW2_POSX:MW2_POSY:TCS-SPAM:TCS-KO:BNEXTPOINT:ANALOG_IN1:ANALOG_IN2:ENERGY:INTENSITY:ION-SORT", '\t'); + + int k = 0; + int count = 0; + double ic1, ic2, mw1_focusx, mw1_focusy, mw2_focusx, mw2_focusy, mw1_posx, mw1_posy, mw2_posx, mw2_posy; + double ic1_avg, ic2_avg, mw1_focusx_avg, mw1_focusy_avg, mw2_focusx_avg, mw2_focusy_avg, mw1_posx_avg, mw1_posy_avg, mw2_posx_avg, mw2_posy_avg; + double time; + double energy; + double intensity; + double ionsort; + + double time2; + + + tree->SetBranchAddress("time", &time); + + tree2->SetBranchAddress("TIME2", &time2); + tree2->SetBranchAddress("IC1", &ic1); + tree2->SetBranchAddress("IC2", &ic2); + tree2->SetBranchAddress("MW1_FOCUSX", &mw1_focusx); + tree2->SetBranchAddress("MW1_FOCUSY", &mw1_focusy); + tree2->SetBranchAddress("MW2_FOCUSX", &mw2_focusx); + tree2->SetBranchAddress("MW2_FOCUSY", &mw2_focusy); + tree2->SetBranchAddress("MW1_POSX", &mw1_posx); + tree2->SetBranchAddress("MW1_POSY", &mw1_posy); + tree2->SetBranchAddress("MW2_POSX", &mw2_posx); + tree2->SetBranchAddress("MW2_POSY", &mw2_posy); + tree2->SetBranchAddress("ENERGY", &energy); + tree2->SetBranchAddress("INTENSITY", &intensity); + tree2->SetBranchAddress("ION-SORT", &ionsort); + + + TBranch *bic1 = tree->Branch("ic1", &ic1_avg, "ic1/D"); + TBranch *bic2 = tree->Branch("ic2", &ic2_avg, "ic2/D"); + TBranch *bmw1_focusx = tree->Branch("mw1_focusx", &mw1_focusx_avg, "mw1_focusx/D"); + TBranch *bmw1_focusy = tree->Branch("mw1_focusy", &mw1_focusy_avg, "mw1_focusy/D"); + TBranch *bmw2_focusx = tree->Branch("mw2_focusx", &mw2_focusx_avg, "mw2_focusx/D"); + TBranch *bmw2_focusy = tree->Branch("mw2_focusy", &mw2_focusy_avg, "mw2_focusy/D"); + TBranch *bmw1_posx = tree->Branch("mw1_posx", &mw1_posx_avg, "mw1_posx/D"); + TBranch *bmw1_posy = tree->Branch("mw1_posy", &mw1_posy_avg, "mw1_posy/D"); + TBranch *bmw2_posx = tree->Branch("mw2_posx", &mw2_posx_avg, "mw2_posx/D"); + TBranch *bmw2_posy = tree->Branch("mw2_posy", &mw2_posy_avg, "mw2_posy/D"); + TBranch *benergy = tree->Branch("energy", &energy, "energy/D"); + TBranch *bintensity = tree->Branch("intensity", &intensity, "intensity/D"); + TBranch *bionsort = tree->Branch("ionsort", &ionsort, "ionsort/D"); + + + + int currentEntryTree2 = 1; + + int nevents = tree->GetEntries(); + int nevents2 = tree2->GetEntries(); + ic1_avg = 0; + ic2_avg = 0; + mw1_focusx_avg = 0; + mw1_focusy_avg = 0; + mw2_focusx_avg = 0; + mw2_focusy_avg = 0; + mw1_posx_avg = 0; + mw1_posy_avg = 0; + mw2_posx_avg = 0; + mw2_posy_avg = 0; + time2 = 0; + tree2->GetEntry(currentEntryTree2); + + + + + for (int i = 0; i < nevents; i++) + { + + tree->GetEntry(i); + + if (i % 10000 == 0) + { + + printf("merging event %d ,", i); + printf("Time %f \n", time); + printf("Entry hit %d ,", currentEntryTree2); + printf("Time hit %f \n", time2); + } + + int count = 0; + int count2 = 0; + + while ( time2 < time + timeoffset && currentEntryTree2 < nevents2) + { + if (time2 - time - timeoffset > timewindow) + { + tree2->GetEntry(currentEntryTree2); + + if (ic1>0) ic1_avg += ic1; + if (ic2>0) ic2_avg += ic2; + + if (ic1>0) count++; + // if (i % 2000 == 0) printf("%i %2.3f %2.3f %2.3f %2.3f %2.3f %i \n", count, ic1, time2, time, timeoffset, time2 - time - timeoffset, mwoffset); + energy = energy; + intensity = intensity; + ionsort = ionsort; + } + + tree2->GetEntry(currentEntryTree2); + + if ( time2 - time - timeoffset2 > timewindow2) + { + tree2->GetEntry(currentEntryTree2 + mwoffset); //why currentEtryTree2-4? + mw1_focusx_avg += mw1_focusx; + mw1_focusy_avg += mw1_focusy; + mw2_focusx_avg += mw2_focusx; + mw2_focusy_avg += mw2_focusy; + mw1_posx_avg += mw1_posx; + mw1_posy_avg += mw1_posy; + mw2_posx_avg += mw2_posx; + mw2_posy_avg += mw2_posy; + + if (i % 2000 == 0) printf("%i %2.3f %2.3f %2.3f %2.3f %2.3f %2.3f %i \n", count2, mw1_posx, mw2_posx, time2, time, timeoffset, time2 - time - timeoffset, mwoffset); + count2++; + // if (i % 2000 == 0) printf("%i %2.3f %2.3f %2.3f %2.3f\n", count2, time, time2, ic1, mw1_posx); + //if (i % 2001 == 0) printf("%i %2.3f %2.3f %2.3f %2.3f\n", count2, time, time2, ic1, mw1_posx); + // if (i % 2002 == 0) printf("%i %2.3f %2.3f %2.3f %2.3f\n", count2, time, time2, ic1, mw1_posx); + // printf("%i %2.3f %2.3f %2.3f %2.3f\n", count2, time, time2, ic1, mw1_posx); + } + // currentEntryTree2++; + tree2->GetEntry(currentEntryTree2); + + currentEntryTree2++; + + } + + + if (count2>0){ + mw1_focusx_avg /= double(count2); + mw1_focusy_avg /= double(count2); + mw2_focusx_avg /= double(count2); + mw2_focusy_avg /= double(count2); + mw1_posx_avg /= double(count2); //the positions are weighted by the charge + mw1_posy_avg /= double(count2); + mw2_posx_avg /= double(count2); + mw2_posy_avg /= double(count2); + } + if(count>0){ + ic1_avg /= double(count); + ic2_avg /= double(count); + } + // if (i % 2000 == 0) cout << ic1_avg << " " << ic2_avg << endl; + if (i % 2000 == 0) cout << mw1_posx_avg << " " << mw2_posx_avg << endl; + + bic1->Fill(); + bic2->Fill(); + bmw1_focusx->Fill(); + bmw1_focusy->Fill(); + bmw2_focusx->Fill(); + bmw2_focusy->Fill(); + bmw1_posx->Fill(); + bmw1_posy->Fill(); + bmw2_posx->Fill(); + bmw2_posy->Fill(); + bintensity->Fill(); + benergy->Fill(); + bionsort->Fill(); + + ic1_avg = 0.; + ic2_avg = 0.; + mw1_focusx_avg = 0.; + mw1_focusy_avg = 0.; + mw2_focusx_avg = 0.; + mw2_focusy_avg = 0.; + mw1_posx_avg = 0.; + mw1_posy_avg = 0.; + mw2_posx_avg = 0.; + mw2_posy_avg = 0.; + } + + tree->Write(); + outfile->Close(); + } + } + + + return 0; +} diff --git a/Scripts_20161201/Scripts_20161201/figs/amplitudeBPM_vs_time.C b/Scripts_20161201/Scripts_20161201/figs/amplitudeBPM_vs_time.C new file mode 100644 index 0000000..cc359ff --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/figs/amplitudeBPM_vs_time.C @@ -0,0 +1,341 @@ +{ +//=========Macro generated from canvas: c1/c1 +//========= (Mon Nov 13 13:42:46 2017) by ROOT version5.34/32 + TCanvas *c1 = new TCanvas("c1", "c1",358,132,700,502); + gStyle->SetOptTitle(0); + c1->Range(-17.66667,-32.78481,115.6667,359.6203); + c1->SetFillColor(0); + c1->SetBorderMode(0); + c1->SetBorderSize(2); + c1->SetTickx(1); + c1->SetTicky(1); + c1->SetLeftMargin(0.14); + c1->SetRightMargin(0.08); + c1->SetTopMargin(0.05); + c1->SetBottomMargin(0.16); + c1->SetFrameLineWidth(2); + c1->SetFrameBorderMode(0); + c1->SetFrameLineWidth(2); + c1->SetFrameBorderMode(0); + + TH2F *htemp__3 = new TH2F("htemp__3","(beamPeakX_fit2*sqrt(2)*beamFocusX_fit2/2.3548)/69.5:eventid_1-45000 {beamon==1&&eventid_1>45000&&eventid_1<45100}",40,1,105,40,30,340); + htemp__3->SetDirectory(0); + htemp__3->SetStats(0); + htemp__3->SetLineWidth(2); + htemp__3->SetMarkerStyle(21); + htemp__3->GetXaxis()->SetTitle("time / 100 #musec"); + htemp__3->GetXaxis()->SetRange(1,40); + htemp__3->GetXaxis()->SetNdivisions(505); + htemp__3->GetXaxis()->SetLabelFont(22); + htemp__3->GetXaxis()->SetLabelOffset(0.015); + htemp__3->GetXaxis()->SetLabelSize(0.05); + htemp__3->GetXaxis()->SetTitleSize(0.06); + htemp__3->GetXaxis()->SetTitleFont(22); + htemp__3->GetYaxis()->SetTitle("A_{BPM} / a.u."); + htemp__3->GetYaxis()->SetRange(1,40); + htemp__3->GetYaxis()->SetLabelFont(22); + htemp__3->GetYaxis()->SetLabelSize(0.05); + htemp__3->GetYaxis()->SetTitleSize(0.06); + htemp__3->GetYaxis()->SetTitleFont(22); + htemp__3->GetZaxis()->SetLabelFont(22); + htemp__3->GetZaxis()->SetLabelSize(0.05); + htemp__3->GetZaxis()->SetTitleSize(0.06); + htemp__3->GetZaxis()->SetTitleFont(22); + htemp__3->Draw(""); + + TGraph *graph = new TGraph(99); + graph->SetName("Graph0"); + graph->SetTitle("Graph"); + graph->SetLineWidth(2); + graph->SetMarkerStyle(21); + graph->SetMarkerSize(0.7); + graph->SetPoint(0,1,79.4227785); + graph->SetPoint(1,2,90.64895112); + graph->SetPoint(2,3,140.9607934); + graph->SetPoint(3,4,215.5216361); + graph->SetPoint(4,5,101.4179533); + graph->SetPoint(5,6,170.9438936); + graph->SetPoint(6,7,89.48367264); + graph->SetPoint(7,8,153.6379029); + graph->SetPoint(8,9,136.1777865); + graph->SetPoint(9,10,196.5928194); + graph->SetPoint(10,11,114.2369208); + graph->SetPoint(11,12,91.14495221); + graph->SetPoint(12,13,115.6277677); + graph->SetPoint(13,14,95.02835705); + graph->SetPoint(14,15,135.977796); + graph->SetPoint(15,16,160.3424602); + graph->SetPoint(16,17,63.63637141); + graph->SetPoint(17,18,131.0548558); + graph->SetPoint(18,19,84.49180025); + graph->SetPoint(19,20,67.70639211); + graph->SetPoint(20,21,155.9461549); + graph->SetPoint(21,22,152.8598079); + graph->SetPoint(22,23,166.711878); + graph->SetPoint(23,24,80.4594221); + graph->SetPoint(24,25,52.83066191); + graph->SetPoint(25,26,91.64662811); + graph->SetPoint(26,27,74.61256941); + graph->SetPoint(27,28,110.26654); + graph->SetPoint(28,29,156.9486615); + graph->SetPoint(29,30,84.35346273); + graph->SetPoint(30,31,93.64100086); + graph->SetPoint(31,32,111.700092); + graph->SetPoint(32,33,119.5161508); + graph->SetPoint(33,34,118.8374775); + graph->SetPoint(34,35,95.66027425); + graph->SetPoint(35,36,141.8313925); + graph->SetPoint(36,37,139.0956783); + graph->SetPoint(37,38,75.2658283); + graph->SetPoint(38,39,147.2174523); + graph->SetPoint(39,40,84.76811267); + graph->SetPoint(40,41,135.6618616); + graph->SetPoint(41,42,157.9930006); + graph->SetPoint(42,43,156.7409688); + graph->SetPoint(43,44,95.84485757); + graph->SetPoint(44,45,84.2499077); + graph->SetPoint(45,46,113.3387735); + graph->SetPoint(46,47,80.00410053); + graph->SetPoint(47,48,123.8892658); + graph->SetPoint(48,49,136.5811016); + graph->SetPoint(49,50,136.1185948); + graph->SetPoint(50,51,130.4996702); + graph->SetPoint(51,52,120.0040345); + graph->SetPoint(52,53,98.18761399); + graph->SetPoint(53,54,98.3652967); + graph->SetPoint(54,55,193.1702616); + graph->SetPoint(55,56,124.9145805); + graph->SetPoint(56,57,92.49548673); + graph->SetPoint(57,58,85.41331409); + graph->SetPoint(58,59,107.844337); + graph->SetPoint(59,60,149.5033926); + graph->SetPoint(60,61,105.9296925); + graph->SetPoint(61,62,147.0813421); + graph->SetPoint(62,63,87.2252161); + graph->SetPoint(63,64,131.8515097); + graph->SetPoint(64,65,120.297741); + graph->SetPoint(65,66,150.7512474); + graph->SetPoint(66,67,98.67164467); + graph->SetPoint(67,68,141.8626525); + graph->SetPoint(68,69,125.4021645); + graph->SetPoint(69,70,97.29538368); + graph->SetPoint(70,71,115.64605); + graph->SetPoint(71,72,127.1309143); + graph->SetPoint(72,73,97.32030078); + graph->SetPoint(73,74,92.87832779); + graph->SetPoint(74,75,145.1409494); + graph->SetPoint(75,76,179.6498113); + graph->SetPoint(76,77,96.7153991); + graph->SetPoint(77,78,117.3303349); + graph->SetPoint(78,79,215.9269203); + graph->SetPoint(79,80,126.3233867); + graph->SetPoint(80,81,103.5556547); + graph->SetPoint(81,82,124.1279015); + graph->SetPoint(82,83,320.7053252); + graph->SetPoint(83,84,164.6901164); + graph->SetPoint(84,85,70.82056337); + graph->SetPoint(85,86,69.83374973); + graph->SetPoint(86,87,101.1187517); + graph->SetPoint(87,88,116.8153165); + graph->SetPoint(88,89,116.0216455); + graph->SetPoint(89,90,73.86115612); + graph->SetPoint(90,91,131.4722587); + graph->SetPoint(91,92,121.509948); + graph->SetPoint(92,93,90.50670945); + graph->SetPoint(93,94,70.41895275); + graph->SetPoint(94,95,222.7795011); + graph->SetPoint(95,96,147.5779304); + graph->SetPoint(96,97,120.6309284); + graph->SetPoint(97,98,117.8160608); + graph->SetPoint(98,99,100.6819195); + + TH1F *Graph_Graph_Graph35 = new TH1F("Graph_Graph_Graph35","Graph",100,0,108.8); + Graph_Graph_Graph35->SetMinimum(26.0432); + Graph_Graph_Graph35->SetMaximum(347.4928); + Graph_Graph_Graph35->SetDirectory(0); + Graph_Graph_Graph35->SetStats(0); + Graph_Graph_Graph35->SetLineWidth(2); + Graph_Graph_Graph35->SetMarkerStyle(21); + Graph_Graph_Graph35->GetXaxis()->SetNdivisions(505); + Graph_Graph_Graph35->GetXaxis()->SetLabelFont(22); + Graph_Graph_Graph35->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph_Graph35->GetXaxis()->SetLabelSize(0.05); + Graph_Graph_Graph35->GetXaxis()->SetTitleSize(0.06); + Graph_Graph_Graph35->GetXaxis()->SetTitleFont(22); + Graph_Graph_Graph35->GetYaxis()->SetLabelFont(22); + Graph_Graph_Graph35->GetYaxis()->SetLabelSize(0.05); + Graph_Graph_Graph35->GetYaxis()->SetTitleSize(0.06); + Graph_Graph_Graph35->GetYaxis()->SetTitleFont(22); + Graph_Graph_Graph35->GetZaxis()->SetLabelFont(22); + Graph_Graph_Graph35->GetZaxis()->SetLabelSize(0.05); + Graph_Graph_Graph35->GetZaxis()->SetTitleSize(0.06); + Graph_Graph_Graph35->GetZaxis()->SetTitleFont(22); + graph->SetHistogram(Graph_Graph_Graph35); + + graph->Draw("PL"); + + graph = new TGraph(99); + graph->SetName("Graph1"); + graph->SetTitle("Graph"); + graph->SetLineColor(2); + graph->SetLineStyle(2); + graph->SetLineWidth(2); + graph->SetMarkerColor(2); + graph->SetMarkerStyle(25); + graph->SetMarkerSize(0.9); + graph->SetPoint(0,1,80.38386734); + graph->SetPoint(1,2,90.33324011); + graph->SetPoint(2,3,139.2630968); + graph->SetPoint(3,4,215.2247817); + graph->SetPoint(4,5,102.0026244); + graph->SetPoint(5,6,172.1732552); + graph->SetPoint(6,7,89.66010686); + graph->SetPoint(7,8,152.7435221); + graph->SetPoint(8,9,136.4349889); + graph->SetPoint(9,10,197.0354969); + graph->SetPoint(10,11,114.5179694); + graph->SetPoint(11,12,90.28336646); + graph->SetPoint(12,13,116.2506248); + graph->SetPoint(13,14,95.22783483); + graph->SetPoint(14,15,136.5519609); + graph->SetPoint(15,16,161.1278603); + graph->SetPoint(16,17,64.81484903); + graph->SetPoint(17,18,130.6919301); + graph->SetPoint(18,19,83.93257459); + graph->SetPoint(19,20,67.08148347); + graph->SetPoint(20,21,156.6612753); + graph->SetPoint(21,22,152.5951795); + graph->SetPoint(22,23,166.8051988); + graph->SetPoint(23,24,80.6778749); + graph->SetPoint(24,25,52.9791293); + graph->SetPoint(25,26,91.48807091); + graph->SetPoint(26,27,74.88713033); + graph->SetPoint(27,28,109.571472); + graph->SetPoint(28,29,157.438027); + graph->SetPoint(29,30,84.33019822); + graph->SetPoint(30,31,93.24845473); + graph->SetPoint(31,32,113.0736691); + graph->SetPoint(32,33,120.7876404); + graph->SetPoint(33,34,120.0485652); + graph->SetPoint(34,35,96.44039735); + graph->SetPoint(35,36,141.6352856); + graph->SetPoint(36,37,139.3898912); + graph->SetPoint(37,38,74.61422016); + graph->SetPoint(38,39,148.8839957); + graph->SetPoint(39,40,84.86703418); + graph->SetPoint(40,41,135.0841016); + graph->SetPoint(41,42,158.0155957); + graph->SetPoint(42,43,156.578115); + graph->SetPoint(43,44,96.10605367); + graph->SetPoint(44,45,84.82146846); + graph->SetPoint(45,46,113.9512739); + graph->SetPoint(46,47,80.71652428); + graph->SetPoint(47,48,124.5010857); + graph->SetPoint(48,49,140.256804); + graph->SetPoint(49,50,136.6486876); + graph->SetPoint(50,51,131.3928108); + graph->SetPoint(51,52,120.5026493); + graph->SetPoint(52,53,97.75824283); + graph->SetPoint(53,54,98.38749327); + graph->SetPoint(54,55,192.5014187); + graph->SetPoint(55,56,125.0420605); + graph->SetPoint(56,57,93.09268269); + graph->SetPoint(57,58,86.42931097); + graph->SetPoint(58,59,108.5974233); + graph->SetPoint(59,60,149.4636925); + graph->SetPoint(60,61,106.3059811); + graph->SetPoint(61,62,146.4928748); + graph->SetPoint(62,63,88.25373445); + graph->SetPoint(63,64,132.6447653); + graph->SetPoint(64,65,121.1648258); + graph->SetPoint(65,66,151.1210972); + graph->SetPoint(66,67,98.82791119); + graph->SetPoint(67,68,142.2527779); + graph->SetPoint(68,69,124.0289725); + graph->SetPoint(69,70,97.92631492); + graph->SetPoint(70,71,116.2667336); + graph->SetPoint(71,72,127.1376327); + graph->SetPoint(72,73,97.659261); + graph->SetPoint(73,74,92.77980653); + graph->SetPoint(74,75,145.4558338); + graph->SetPoint(75,76,179.3805025); + graph->SetPoint(76,77,96.94421458); + graph->SetPoint(77,78,117.1248059); + graph->SetPoint(78,79,215.0351621); + graph->SetPoint(79,80,126.4759121); + graph->SetPoint(80,81,103.8764529); + graph->SetPoint(81,82,124.0286412); + graph->SetPoint(82,83,321.1601074); + graph->SetPoint(83,84,165.8136079); + graph->SetPoint(84,85,70.04014933); + graph->SetPoint(85,86,69.96548722); + graph->SetPoint(86,87,100.7131096); + graph->SetPoint(87,88,117.6657567); + graph->SetPoint(88,89,115.516665); + graph->SetPoint(89,90,74.73124236); + graph->SetPoint(90,91,131.8150096); + graph->SetPoint(91,92,121.217808); + graph->SetPoint(92,93,90.15552235); + graph->SetPoint(93,94,70.07380843); + graph->SetPoint(94,95,222.5910463); + graph->SetPoint(95,96,148.3264728); + graph->SetPoint(96,97,120.4098735); + graph->SetPoint(97,98,117.6910415); + graph->SetPoint(98,99,100.2838211); + + TH1F *Graph_Graph_Graph46 = new TH1F("Graph_Graph_Graph46","Graph",100,0,108.8); + Graph_Graph_Graph46->SetMinimum(26.16103); + Graph_Graph_Graph46->SetMaximum(347.9782); + Graph_Graph_Graph46->SetDirectory(0); + Graph_Graph_Graph46->SetStats(0); + Graph_Graph_Graph46->SetLineWidth(2); + Graph_Graph_Graph46->SetMarkerStyle(21); + Graph_Graph_Graph46->GetXaxis()->SetNdivisions(505); + Graph_Graph_Graph46->GetXaxis()->SetLabelFont(22); + Graph_Graph_Graph46->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph_Graph46->GetXaxis()->SetLabelSize(0.05); + Graph_Graph_Graph46->GetXaxis()->SetTitleSize(0.06); + Graph_Graph_Graph46->GetXaxis()->SetTitleFont(22); + Graph_Graph_Graph46->GetYaxis()->SetLabelFont(22); + Graph_Graph_Graph46->GetYaxis()->SetLabelSize(0.05); + Graph_Graph_Graph46->GetYaxis()->SetTitleSize(0.06); + Graph_Graph_Graph46->GetYaxis()->SetTitleFont(22); + Graph_Graph_Graph46->GetZaxis()->SetLabelFont(22); + Graph_Graph_Graph46->GetZaxis()->SetLabelSize(0.05); + Graph_Graph_Graph46->GetZaxis()->SetTitleSize(0.06); + Graph_Graph_Graph46->GetZaxis()->SetTitleFont(22); + graph->SetHistogram(Graph_Graph_Graph46); + + graph->Draw("PC"); + + TLegend *leg = new TLegend(0.2091691,0.7293869,0.4713467,0.8985201,NULL,"brNDC"); + leg->SetBorderSize(0); + leg->SetTextFont(62); + leg->SetLineColor(1); + leg->SetLineStyle(1); + leg->SetLineWidth(2); + leg->SetFillColor(0); + leg->SetFillStyle(0); + TLegendEntry *entry=leg->AddEntry("Graph0","Plane 1","lpf"); + entry->SetFillStyle(1001); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(2); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(21); + entry->SetMarkerSize(0.7); + entry->SetTextFont(62); + entry=leg->AddEntry("Graph1","Plane 2","lpf"); + entry->SetFillStyle(1001); + entry->SetLineColor(2); + entry->SetLineStyle(2); + entry->SetLineWidth(2); + entry->SetMarkerColor(2); + entry->SetMarkerStyle(25); + entry->SetMarkerSize(0.9); + entry->SetTextFont(62); + leg->Draw(); + c1->Modified(); + c1->cd(); + c1->SetSelected(c1); +} diff --git a/Scripts_20161201/Scripts_20161201/figs/amplitudeBPM_vs_time.pdf b/Scripts_20161201/Scripts_20161201/figs/amplitudeBPM_vs_time.pdf new file mode 100644 index 0000000..006a981 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/figs/amplitudeBPM_vs_time.pdf differ diff --git a/Scripts_20161201/Scripts_20161201/figs/amplitudeBPM_vs_time_coloz.C b/Scripts_20161201/Scripts_20161201/figs/amplitudeBPM_vs_time_coloz.C new file mode 100644 index 0000000..c56a91a --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/figs/amplitudeBPM_vs_time_coloz.C @@ -0,0 +1,1951 @@ +{ +//=========Macro generated from canvas: c1/c1 +//========= (Mon Nov 13 13:53:00 2017) by ROOT version5.34/32 + TCanvas *c1 = new TCanvas("c1", "c1",358,132,700,502); + gStyle->SetOptTitle(0); + c1->Range(-3377.176,-113.7968,20924.56,594.4385); + c1->SetFillColor(0); + c1->SetBorderMode(0); + c1->SetBorderSize(2); + c1->SetTickx(1); + c1->SetTicky(1); + c1->SetLeftMargin(0.1389685); + c1->SetRightMargin(0.1203438); + c1->SetTopMargin(0.04862579); + c1->SetBottomMargin(0.1606765); + c1->SetFrameLineWidth(2); + c1->SetFrameBorderMode(0); + c1->SetFrameLineWidth(2); + c1->SetFrameBorderMode(0); + + TH2F *htemp__4 = new TH2F("htemp__4","(beamPeakX_fit2*sqrt(2)*beamFocusX_fit2/2.3548)/69.5:eventid_1-35000 {ic1_1>0.01}",160,0,18000,80,0,560); + htemp__4->SetBinContent(170,4); + htemp__4->SetBinContent(198,3); + htemp__4->SetBinContent(230,1); + htemp__4->SetBinContent(273,4); + htemp__4->SetBinContent(304,5); + htemp__4->SetBinContent(312,6); + htemp__4->SetBinContent(392,1); + htemp__4->SetBinContent(466,1); + htemp__4->SetBinContent(494,3); + htemp__4->SetBinContent(522,1); + htemp__4->SetBinContent(554,2); + htemp__4->SetBinContent(628,1); + htemp__4->SetBinContent(656,2); + htemp__4->SetBinContent(790,1); + htemp__4->SetBinContent(798,1); + htemp__4->SetBinContent(818,1); + htemp__4->SetBinContent(829,1); + htemp__4->SetBinContent(952,3); + htemp__4->SetBinContent(995,1); + htemp__4->SetBinContent(1040,1); + htemp__4->SetBinContent(1147,2); + htemp__4->SetBinContent(1149,1); + htemp__4->SetBinContent(1156,1); + htemp__4->SetBinContent(1157,1); + htemp__4->SetBinContent(1170,2); + htemp__4->SetBinContent(1203,1); + htemp__4->SetBinContent(1209,1); + htemp__4->SetBinContent(1212,3); + htemp__4->SetBinContent(1213,2); + htemp__4->SetBinContent(1214,2); + htemp__4->SetBinContent(1215,1); + htemp__4->SetBinContent(1217,1); + htemp__4->SetBinContent(1281,1); + htemp__4->SetBinContent(1304,1); + htemp__4->SetBinContent(1308,1); + htemp__4->SetBinContent(1311,2); + htemp__4->SetBinContent(1312,2); + htemp__4->SetBinContent(1320,1); + htemp__4->SetBinContent(1325,2); + htemp__4->SetBinContent(1332,2); + htemp__4->SetBinContent(1365,1); + htemp__4->SetBinContent(1366,2); + htemp__4->SetBinContent(1371,1); + htemp__4->SetBinContent(1372,4); + htemp__4->SetBinContent(1373,1); + htemp__4->SetBinContent(1374,1); + htemp__4->SetBinContent(1376,1); + htemp__4->SetBinContent(1377,2); + htemp__4->SetBinContent(1378,2); + htemp__4->SetBinContent(1379,1); + htemp__4->SetBinContent(1381,1); + htemp__4->SetBinContent(1382,1); + htemp__4->SetBinContent(1386,1); + htemp__4->SetBinContent(1388,1); + htemp__4->SetBinContent(1393,1); + htemp__4->SetBinContent(1397,1); + htemp__4->SetBinContent(1438,1); + htemp__4->SetBinContent(1441,1); + htemp__4->SetBinContent(1445,2); + htemp__4->SetBinContent(1466,1); + htemp__4->SetBinContent(1467,2); + htemp__4->SetBinContent(1468,2); + htemp__4->SetBinContent(1469,4); + htemp__4->SetBinContent(1470,1); + htemp__4->SetBinContent(1471,1); + htemp__4->SetBinContent(1472,3); + htemp__4->SetBinContent(1474,2); + htemp__4->SetBinContent(1475,1); + htemp__4->SetBinContent(1476,1); + htemp__4->SetBinContent(1477,1); + htemp__4->SetBinContent(1478,3); + htemp__4->SetBinContent(1480,1); + htemp__4->SetBinContent(1481,1); + htemp__4->SetBinContent(1482,3); + htemp__4->SetBinContent(1483,2); + htemp__4->SetBinContent(1484,1); + htemp__4->SetBinContent(1486,2); + htemp__4->SetBinContent(1487,1); + htemp__4->SetBinContent(1488,5); + htemp__4->SetBinContent(1489,3); + htemp__4->SetBinContent(1490,1); + htemp__4->SetBinContent(1492,3); + htemp__4->SetBinContent(1493,4); + htemp__4->SetBinContent(1494,1); + htemp__4->SetBinContent(1529,2); + htemp__4->SetBinContent(1530,1); + htemp__4->SetBinContent(1531,2); + htemp__4->SetBinContent(1532,3); + htemp__4->SetBinContent(1533,1); + htemp__4->SetBinContent(1534,2); + htemp__4->SetBinContent(1535,5); + htemp__4->SetBinContent(1536,1); + htemp__4->SetBinContent(1537,1); + htemp__4->SetBinContent(1538,2); + htemp__4->SetBinContent(1539,2); + htemp__4->SetBinContent(1540,1); + htemp__4->SetBinContent(1541,2); + htemp__4->SetBinContent(1542,1); + htemp__4->SetBinContent(1543,2); + htemp__4->SetBinContent(1546,1); + htemp__4->SetBinContent(1547,2); + htemp__4->SetBinContent(1549,1); + htemp__4->SetBinContent(1551,1); + htemp__4->SetBinContent(1553,1); + htemp__4->SetBinContent(1554,1); + htemp__4->SetBinContent(1556,1); + htemp__4->SetBinContent(1557,1); + htemp__4->SetBinContent(1563,3); + htemp__4->SetBinContent(1565,1); + htemp__4->SetBinContent(1569,1); + htemp__4->SetBinContent(1601,1); + htemp__4->SetBinContent(1605,1); + htemp__4->SetBinContent(1606,1); + htemp__4->SetBinContent(1607,1); + htemp__4->SetBinContent(1628,2); + htemp__4->SetBinContent(1629,2); + htemp__4->SetBinContent(1630,4); + htemp__4->SetBinContent(1631,3); + htemp__4->SetBinContent(1632,2); + htemp__4->SetBinContent(1633,2); + htemp__4->SetBinContent(1634,2); + htemp__4->SetBinContent(1635,3); + htemp__4->SetBinContent(1636,1); + htemp__4->SetBinContent(1637,1); + htemp__4->SetBinContent(1638,5); + htemp__4->SetBinContent(1639,2); + htemp__4->SetBinContent(1640,4); + htemp__4->SetBinContent(1641,3); + htemp__4->SetBinContent(1642,1); + htemp__4->SetBinContent(1644,2); + htemp__4->SetBinContent(1645,2); + htemp__4->SetBinContent(1646,2); + htemp__4->SetBinContent(1647,4); + htemp__4->SetBinContent(1648,2); + htemp__4->SetBinContent(1649,1); + htemp__4->SetBinContent(1650,3); + htemp__4->SetBinContent(1651,1); + htemp__4->SetBinContent(1652,4); + htemp__4->SetBinContent(1653,2); + htemp__4->SetBinContent(1654,2); + htemp__4->SetBinContent(1655,4); + htemp__4->SetBinContent(1656,4); + htemp__4->SetBinContent(1688,2); + htemp__4->SetBinContent(1689,3); + htemp__4->SetBinContent(1690,4); + htemp__4->SetBinContent(1693,3); + htemp__4->SetBinContent(1695,1); + htemp__4->SetBinContent(1696,7); + htemp__4->SetBinContent(1697,3); + htemp__4->SetBinContent(1698,4); + htemp__4->SetBinContent(1699,5); + htemp__4->SetBinContent(1700,6); + htemp__4->SetBinContent(1701,3); + htemp__4->SetBinContent(1703,5); + htemp__4->SetBinContent(1704,3); + htemp__4->SetBinContent(1706,2); + htemp__4->SetBinContent(1708,3); + htemp__4->SetBinContent(1709,6); + htemp__4->SetBinContent(1710,3); + htemp__4->SetBinContent(1711,2); + htemp__4->SetBinContent(1712,1); + htemp__4->SetBinContent(1713,4); + htemp__4->SetBinContent(1714,7); + htemp__4->SetBinContent(1715,3); + htemp__4->SetBinContent(1716,1); + htemp__4->SetBinContent(1717,2); + htemp__4->SetBinContent(1718,1); + htemp__4->SetBinContent(1719,4); + htemp__4->SetBinContent(1720,3); + htemp__4->SetBinContent(1721,4); + htemp__4->SetBinContent(1722,5); + htemp__4->SetBinContent(1723,2); + htemp__4->SetBinContent(1724,1); + htemp__4->SetBinContent(1726,2); + htemp__4->SetBinContent(1727,2); + htemp__4->SetBinContent(1728,2); + htemp__4->SetBinContent(1729,2); + htemp__4->SetBinContent(1730,4); + htemp__4->SetBinContent(1762,1); + htemp__4->SetBinContent(1763,2); + htemp__4->SetBinContent(1764,2); + htemp__4->SetBinContent(1765,6); + htemp__4->SetBinContent(1766,1); + htemp__4->SetBinContent(1767,2); + htemp__4->SetBinContent(1768,1); + htemp__4->SetBinContent(1769,4); + htemp__4->SetBinContent(1770,1); + htemp__4->SetBinContent(1790,2); + htemp__4->SetBinContent(1791,2); + htemp__4->SetBinContent(1792,7); + htemp__4->SetBinContent(1793,4); + htemp__4->SetBinContent(1794,4); + htemp__4->SetBinContent(1795,3); + htemp__4->SetBinContent(1796,9); + htemp__4->SetBinContent(1797,4); + htemp__4->SetBinContent(1798,6); + htemp__4->SetBinContent(1799,7); + htemp__4->SetBinContent(1800,5); + htemp__4->SetBinContent(1801,2); + htemp__4->SetBinContent(1802,2); + htemp__4->SetBinContent(1803,6); + htemp__4->SetBinContent(1804,2); + htemp__4->SetBinContent(1805,3); + htemp__4->SetBinContent(1806,2); + htemp__4->SetBinContent(1807,5); + htemp__4->SetBinContent(1808,4); + htemp__4->SetBinContent(1809,5); + htemp__4->SetBinContent(1810,2); + htemp__4->SetBinContent(1811,3); + htemp__4->SetBinContent(1812,9); + htemp__4->SetBinContent(1813,6); + htemp__4->SetBinContent(1814,7); + htemp__4->SetBinContent(1815,9); + htemp__4->SetBinContent(1816,10); + htemp__4->SetBinContent(1817,9); + htemp__4->SetBinContent(1818,2); + htemp__4->SetBinContent(1850,5); + htemp__4->SetBinContent(1851,7); + htemp__4->SetBinContent(1852,3); + htemp__4->SetBinContent(1853,3); + htemp__4->SetBinContent(1854,6); + htemp__4->SetBinContent(1855,6); + htemp__4->SetBinContent(1856,2); + htemp__4->SetBinContent(1857,7); + htemp__4->SetBinContent(1858,4); + htemp__4->SetBinContent(1859,11); + htemp__4->SetBinContent(1860,5); + htemp__4->SetBinContent(1861,7); + htemp__4->SetBinContent(1862,7); + htemp__4->SetBinContent(1863,2); + htemp__4->SetBinContent(1864,2); + htemp__4->SetBinContent(1865,1); + htemp__4->SetBinContent(1866,5); + htemp__4->SetBinContent(1867,2); + htemp__4->SetBinContent(1868,7); + htemp__4->SetBinContent(1869,6); + htemp__4->SetBinContent(1870,2); + htemp__4->SetBinContent(1871,1); + htemp__4->SetBinContent(1872,6); + htemp__4->SetBinContent(1873,2); + htemp__4->SetBinContent(1874,2); + htemp__4->SetBinContent(1875,4); + htemp__4->SetBinContent(1876,4); + htemp__4->SetBinContent(1877,2); + htemp__4->SetBinContent(1878,5); + htemp__4->SetBinContent(1879,2); + htemp__4->SetBinContent(1880,5); + htemp__4->SetBinContent(1881,3); + htemp__4->SetBinContent(1882,2); + htemp__4->SetBinContent(1883,4); + htemp__4->SetBinContent(1884,2); + htemp__4->SetBinContent(1885,6); + htemp__4->SetBinContent(1886,2); + htemp__4->SetBinContent(1887,3); + htemp__4->SetBinContent(1888,3); + htemp__4->SetBinContent(1889,2); + htemp__4->SetBinContent(1890,6); + htemp__4->SetBinContent(1891,5); + htemp__4->SetBinContent(1892,6); + htemp__4->SetBinContent(1893,2); + htemp__4->SetBinContent(1924,1); + htemp__4->SetBinContent(1925,1); + htemp__4->SetBinContent(1926,3); + htemp__4->SetBinContent(1927,2); + htemp__4->SetBinContent(1928,5); + htemp__4->SetBinContent(1929,3); + htemp__4->SetBinContent(1930,4); + htemp__4->SetBinContent(1931,6); + htemp__4->SetBinContent(1952,6); + htemp__4->SetBinContent(1953,6); + htemp__4->SetBinContent(1954,6); + htemp__4->SetBinContent(1955,4); + htemp__4->SetBinContent(1956,5); + htemp__4->SetBinContent(1957,4); + htemp__4->SetBinContent(1958,5); + htemp__4->SetBinContent(1959,8); + htemp__4->SetBinContent(1960,8); + htemp__4->SetBinContent(1961,7); + htemp__4->SetBinContent(1962,4); + htemp__4->SetBinContent(1963,2); + htemp__4->SetBinContent(1964,8); + htemp__4->SetBinContent(1965,4); + htemp__4->SetBinContent(1966,8); + htemp__4->SetBinContent(1967,8); + htemp__4->SetBinContent(1968,7); + htemp__4->SetBinContent(1969,6); + htemp__4->SetBinContent(1970,2); + htemp__4->SetBinContent(1971,6); + htemp__4->SetBinContent(1972,11); + htemp__4->SetBinContent(1973,7); + htemp__4->SetBinContent(1974,5); + htemp__4->SetBinContent(1975,9); + htemp__4->SetBinContent(1976,13); + htemp__4->SetBinContent(1977,7); + htemp__4->SetBinContent(1978,10); + htemp__4->SetBinContent(1979,7); + htemp__4->SetBinContent(1980,3); + htemp__4->SetBinContent(2012,4); + htemp__4->SetBinContent(2013,8); + htemp__4->SetBinContent(2014,2); + htemp__4->SetBinContent(2015,7); + htemp__4->SetBinContent(2016,9); + htemp__4->SetBinContent(2017,8); + htemp__4->SetBinContent(2018,6); + htemp__4->SetBinContent(2019,7); + htemp__4->SetBinContent(2020,5); + htemp__4->SetBinContent(2021,6); + htemp__4->SetBinContent(2022,6); + htemp__4->SetBinContent(2023,5); + htemp__4->SetBinContent(2024,7); + htemp__4->SetBinContent(2025,8); + htemp__4->SetBinContent(2026,10); + htemp__4->SetBinContent(2027,8); + htemp__4->SetBinContent(2028,5); + htemp__4->SetBinContent(2029,10); + htemp__4->SetBinContent(2030,6); + htemp__4->SetBinContent(2031,5); + htemp__4->SetBinContent(2032,9); + htemp__4->SetBinContent(2033,7); + htemp__4->SetBinContent(2034,3); + htemp__4->SetBinContent(2035,5); + htemp__4->SetBinContent(2036,9); + htemp__4->SetBinContent(2037,2); + htemp__4->SetBinContent(2038,8); + htemp__4->SetBinContent(2039,4); + htemp__4->SetBinContent(2040,7); + htemp__4->SetBinContent(2041,8); + htemp__4->SetBinContent(2042,3); + htemp__4->SetBinContent(2043,6); + htemp__4->SetBinContent(2044,4); + htemp__4->SetBinContent(2045,5); + htemp__4->SetBinContent(2046,7); + htemp__4->SetBinContent(2047,7); + htemp__4->SetBinContent(2048,8); + htemp__4->SetBinContent(2049,6); + htemp__4->SetBinContent(2050,6); + htemp__4->SetBinContent(2051,6); + htemp__4->SetBinContent(2052,16); + htemp__4->SetBinContent(2053,9); + htemp__4->SetBinContent(2054,5); + htemp__4->SetBinContent(2087,11); + htemp__4->SetBinContent(2088,2); + htemp__4->SetBinContent(2089,4); + htemp__4->SetBinContent(2090,10); + htemp__4->SetBinContent(2091,2); + htemp__4->SetBinContent(2092,3); + htemp__4->SetBinContent(2093,6); + htemp__4->SetBinContent(2114,5); + htemp__4->SetBinContent(2115,11); + htemp__4->SetBinContent(2116,9); + htemp__4->SetBinContent(2117,7); + htemp__4->SetBinContent(2118,2); + htemp__4->SetBinContent(2119,4); + htemp__4->SetBinContent(2120,9); + htemp__4->SetBinContent(2121,3); + htemp__4->SetBinContent(2122,8); + htemp__4->SetBinContent(2123,6); + htemp__4->SetBinContent(2124,11); + htemp__4->SetBinContent(2125,8); + htemp__4->SetBinContent(2126,8); + htemp__4->SetBinContent(2127,3); + htemp__4->SetBinContent(2128,7); + htemp__4->SetBinContent(2129,10); + htemp__4->SetBinContent(2130,7); + htemp__4->SetBinContent(2131,12); + htemp__4->SetBinContent(2132,6); + htemp__4->SetBinContent(2133,10); + htemp__4->SetBinContent(2134,13); + htemp__4->SetBinContent(2135,10); + htemp__4->SetBinContent(2136,4); + htemp__4->SetBinContent(2137,7); + htemp__4->SetBinContent(2138,9); + htemp__4->SetBinContent(2139,8); + htemp__4->SetBinContent(2140,8); + htemp__4->SetBinContent(2141,6); + htemp__4->SetBinContent(2142,5); + htemp__4->SetBinContent(2174,8); + htemp__4->SetBinContent(2175,4); + htemp__4->SetBinContent(2176,5); + htemp__4->SetBinContent(2177,9); + htemp__4->SetBinContent(2178,7); + htemp__4->SetBinContent(2179,6); + htemp__4->SetBinContent(2180,4); + htemp__4->SetBinContent(2181,4); + htemp__4->SetBinContent(2182,9); + htemp__4->SetBinContent(2183,7); + htemp__4->SetBinContent(2184,10); + htemp__4->SetBinContent(2185,6); + htemp__4->SetBinContent(2186,6); + htemp__4->SetBinContent(2187,11); + htemp__4->SetBinContent(2188,11); + htemp__4->SetBinContent(2189,7); + htemp__4->SetBinContent(2190,9); + htemp__4->SetBinContent(2191,4); + htemp__4->SetBinContent(2192,9); + htemp__4->SetBinContent(2193,6); + htemp__4->SetBinContent(2194,8); + htemp__4->SetBinContent(2195,9); + htemp__4->SetBinContent(2196,10); + htemp__4->SetBinContent(2197,10); + htemp__4->SetBinContent(2198,8); + htemp__4->SetBinContent(2199,7); + htemp__4->SetBinContent(2200,10); + htemp__4->SetBinContent(2201,8); + htemp__4->SetBinContent(2202,4); + htemp__4->SetBinContent(2203,6); + htemp__4->SetBinContent(2204,7); + htemp__4->SetBinContent(2205,11); + htemp__4->SetBinContent(2206,8); + htemp__4->SetBinContent(2207,9); + htemp__4->SetBinContent(2208,4); + htemp__4->SetBinContent(2209,9); + htemp__4->SetBinContent(2210,10); + htemp__4->SetBinContent(2211,6); + htemp__4->SetBinContent(2212,10); + htemp__4->SetBinContent(2213,7); + htemp__4->SetBinContent(2214,6); + htemp__4->SetBinContent(2215,7); + htemp__4->SetBinContent(2216,11); + htemp__4->SetBinContent(2248,1); + htemp__4->SetBinContent(2249,11); + htemp__4->SetBinContent(2250,6); + htemp__4->SetBinContent(2251,9); + htemp__4->SetBinContent(2252,5); + htemp__4->SetBinContent(2253,9); + htemp__4->SetBinContent(2254,4); + htemp__4->SetBinContent(2255,7); + htemp__4->SetBinContent(2256,2); + htemp__4->SetBinContent(2276,5); + htemp__4->SetBinContent(2277,14); + htemp__4->SetBinContent(2278,9); + htemp__4->SetBinContent(2279,11); + htemp__4->SetBinContent(2280,5); + htemp__4->SetBinContent(2281,10); + htemp__4->SetBinContent(2282,3); + htemp__4->SetBinContent(2283,9); + htemp__4->SetBinContent(2284,8); + htemp__4->SetBinContent(2285,7); + htemp__4->SetBinContent(2286,10); + htemp__4->SetBinContent(2287,10); + htemp__4->SetBinContent(2288,5); + htemp__4->SetBinContent(2289,13); + htemp__4->SetBinContent(2290,6); + htemp__4->SetBinContent(2291,13); + htemp__4->SetBinContent(2292,12); + htemp__4->SetBinContent(2293,10); + htemp__4->SetBinContent(2294,14); + htemp__4->SetBinContent(2295,14); + htemp__4->SetBinContent(2296,10); + htemp__4->SetBinContent(2297,10); + htemp__4->SetBinContent(2298,11); + htemp__4->SetBinContent(2299,11); + htemp__4->SetBinContent(2300,12); + htemp__4->SetBinContent(2301,18); + htemp__4->SetBinContent(2302,6); + htemp__4->SetBinContent(2303,11); + htemp__4->SetBinContent(2304,3); + htemp__4->SetBinContent(2336,7); + htemp__4->SetBinContent(2337,14); + htemp__4->SetBinContent(2338,12); + htemp__4->SetBinContent(2339,10); + htemp__4->SetBinContent(2340,15); + htemp__4->SetBinContent(2341,9); + htemp__4->SetBinContent(2342,14); + htemp__4->SetBinContent(2343,11); + htemp__4->SetBinContent(2344,12); + htemp__4->SetBinContent(2345,7); + htemp__4->SetBinContent(2346,6); + htemp__4->SetBinContent(2347,10); + htemp__4->SetBinContent(2348,9); + htemp__4->SetBinContent(2349,3); + htemp__4->SetBinContent(2350,4); + htemp__4->SetBinContent(2351,8); + htemp__4->SetBinContent(2352,10); + htemp__4->SetBinContent(2353,11); + htemp__4->SetBinContent(2354,4); + htemp__4->SetBinContent(2355,7); + htemp__4->SetBinContent(2356,10); + htemp__4->SetBinContent(2357,5); + htemp__4->SetBinContent(2358,13); + htemp__4->SetBinContent(2359,11); + htemp__4->SetBinContent(2360,6); + htemp__4->SetBinContent(2361,6); + htemp__4->SetBinContent(2362,7); + htemp__4->SetBinContent(2363,11); + htemp__4->SetBinContent(2364,10); + htemp__4->SetBinContent(2365,10); + htemp__4->SetBinContent(2366,7); + htemp__4->SetBinContent(2367,11); + htemp__4->SetBinContent(2368,5); + htemp__4->SetBinContent(2369,11); + htemp__4->SetBinContent(2370,10); + htemp__4->SetBinContent(2371,11); + htemp__4->SetBinContent(2372,14); + htemp__4->SetBinContent(2373,10); + htemp__4->SetBinContent(2374,13); + htemp__4->SetBinContent(2375,12); + htemp__4->SetBinContent(2376,14); + htemp__4->SetBinContent(2377,6); + htemp__4->SetBinContent(2378,10); + htemp__4->SetBinContent(2379,1); + htemp__4->SetBinContent(2411,6); + htemp__4->SetBinContent(2412,7); + htemp__4->SetBinContent(2413,9); + htemp__4->SetBinContent(2414,10); + htemp__4->SetBinContent(2415,10); + htemp__4->SetBinContent(2416,10); + htemp__4->SetBinContent(2417,7); + htemp__4->SetBinContent(2418,1); + htemp__4->SetBinContent(2438,8); + htemp__4->SetBinContent(2439,6); + htemp__4->SetBinContent(2440,10); + htemp__4->SetBinContent(2441,7); + htemp__4->SetBinContent(2442,11); + htemp__4->SetBinContent(2443,14); + htemp__4->SetBinContent(2444,5); + htemp__4->SetBinContent(2445,7); + htemp__4->SetBinContent(2446,6); + htemp__4->SetBinContent(2447,8); + htemp__4->SetBinContent(2448,7); + htemp__4->SetBinContent(2449,13); + htemp__4->SetBinContent(2450,13); + htemp__4->SetBinContent(2451,9); + htemp__4->SetBinContent(2452,12); + htemp__4->SetBinContent(2453,6); + htemp__4->SetBinContent(2454,11); + htemp__4->SetBinContent(2455,9); + htemp__4->SetBinContent(2456,17); + htemp__4->SetBinContent(2457,9); + htemp__4->SetBinContent(2458,8); + htemp__4->SetBinContent(2459,7); + htemp__4->SetBinContent(2460,9); + htemp__4->SetBinContent(2461,10); + htemp__4->SetBinContent(2462,6); + htemp__4->SetBinContent(2463,4); + htemp__4->SetBinContent(2464,9); + htemp__4->SetBinContent(2465,9); + htemp__4->SetBinContent(2466,5); + htemp__4->SetBinContent(2498,9); + htemp__4->SetBinContent(2499,8); + htemp__4->SetBinContent(2500,9); + htemp__4->SetBinContent(2501,8); + htemp__4->SetBinContent(2502,8); + htemp__4->SetBinContent(2503,11); + htemp__4->SetBinContent(2504,10); + htemp__4->SetBinContent(2505,12); + htemp__4->SetBinContent(2506,5); + htemp__4->SetBinContent(2507,6); + htemp__4->SetBinContent(2508,13); + htemp__4->SetBinContent(2509,11); + htemp__4->SetBinContent(2510,8); + htemp__4->SetBinContent(2511,10); + htemp__4->SetBinContent(2512,7); + htemp__4->SetBinContent(2513,10); + htemp__4->SetBinContent(2514,11); + htemp__4->SetBinContent(2515,8); + htemp__4->SetBinContent(2516,5); + htemp__4->SetBinContent(2517,17); + htemp__4->SetBinContent(2518,12); + htemp__4->SetBinContent(2519,12); + htemp__4->SetBinContent(2520,9); + htemp__4->SetBinContent(2521,6); + htemp__4->SetBinContent(2522,13); + htemp__4->SetBinContent(2523,13); + htemp__4->SetBinContent(2524,11); + htemp__4->SetBinContent(2525,9); + htemp__4->SetBinContent(2526,12); + htemp__4->SetBinContent(2527,13); + htemp__4->SetBinContent(2528,10); + htemp__4->SetBinContent(2529,9); + htemp__4->SetBinContent(2530,9); + htemp__4->SetBinContent(2531,10); + htemp__4->SetBinContent(2532,6); + htemp__4->SetBinContent(2533,8); + htemp__4->SetBinContent(2534,10); + htemp__4->SetBinContent(2535,10); + htemp__4->SetBinContent(2536,9); + htemp__4->SetBinContent(2537,11); + htemp__4->SetBinContent(2538,9); + htemp__4->SetBinContent(2539,13); + htemp__4->SetBinContent(2540,5); + htemp__4->SetBinContent(2541,1); + htemp__4->SetBinContent(2572,1); + htemp__4->SetBinContent(2573,14); + htemp__4->SetBinContent(2574,6); + htemp__4->SetBinContent(2575,8); + htemp__4->SetBinContent(2576,14); + htemp__4->SetBinContent(2577,15); + htemp__4->SetBinContent(2578,14); + htemp__4->SetBinContent(2579,9); + htemp__4->SetBinContent(2600,11); + htemp__4->SetBinContent(2601,6); + htemp__4->SetBinContent(2602,8); + htemp__4->SetBinContent(2603,16); + htemp__4->SetBinContent(2604,16); + htemp__4->SetBinContent(2605,8); + htemp__4->SetBinContent(2606,8); + htemp__4->SetBinContent(2607,6); + htemp__4->SetBinContent(2608,11); + htemp__4->SetBinContent(2609,13); + htemp__4->SetBinContent(2610,10); + htemp__4->SetBinContent(2611,5); + htemp__4->SetBinContent(2612,11); + htemp__4->SetBinContent(2613,11); + htemp__4->SetBinContent(2614,9); + htemp__4->SetBinContent(2615,6); + htemp__4->SetBinContent(2616,10); + htemp__4->SetBinContent(2617,11); + htemp__4->SetBinContent(2618,12); + htemp__4->SetBinContent(2619,11); + htemp__4->SetBinContent(2620,8); + htemp__4->SetBinContent(2621,10); + htemp__4->SetBinContent(2622,9); + htemp__4->SetBinContent(2623,12); + htemp__4->SetBinContent(2624,5); + htemp__4->SetBinContent(2625,5); + htemp__4->SetBinContent(2626,6); + htemp__4->SetBinContent(2627,5); + htemp__4->SetBinContent(2628,4); + htemp__4->SetBinContent(2660,14); + htemp__4->SetBinContent(2661,8); + htemp__4->SetBinContent(2662,14); + htemp__4->SetBinContent(2663,11); + htemp__4->SetBinContent(2664,12); + htemp__4->SetBinContent(2665,8); + htemp__4->SetBinContent(2666,9); + htemp__4->SetBinContent(2667,10); + htemp__4->SetBinContent(2668,7); + htemp__4->SetBinContent(2669,5); + htemp__4->SetBinContent(2670,4); + htemp__4->SetBinContent(2671,11); + htemp__4->SetBinContent(2672,8); + htemp__4->SetBinContent(2673,7); + htemp__4->SetBinContent(2674,11); + htemp__4->SetBinContent(2675,8); + htemp__4->SetBinContent(2676,4); + htemp__4->SetBinContent(2677,11); + htemp__4->SetBinContent(2678,9); + htemp__4->SetBinContent(2679,10); + htemp__4->SetBinContent(2680,10); + htemp__4->SetBinContent(2681,7); + htemp__4->SetBinContent(2682,7); + htemp__4->SetBinContent(2683,12); + htemp__4->SetBinContent(2684,12); + htemp__4->SetBinContent(2685,11); + htemp__4->SetBinContent(2686,9); + htemp__4->SetBinContent(2687,15); + htemp__4->SetBinContent(2688,11); + htemp__4->SetBinContent(2689,11); + htemp__4->SetBinContent(2690,10); + htemp__4->SetBinContent(2691,7); + htemp__4->SetBinContent(2692,7); + htemp__4->SetBinContent(2693,9); + htemp__4->SetBinContent(2694,22); + htemp__4->SetBinContent(2695,13); + htemp__4->SetBinContent(2696,10); + htemp__4->SetBinContent(2697,7); + htemp__4->SetBinContent(2698,11); + htemp__4->SetBinContent(2699,6); + htemp__4->SetBinContent(2700,7); + htemp__4->SetBinContent(2701,10); + htemp__4->SetBinContent(2702,9); + htemp__4->SetBinContent(2703,3); + htemp__4->SetBinContent(2734,1); + htemp__4->SetBinContent(2735,8); + htemp__4->SetBinContent(2736,20); + htemp__4->SetBinContent(2737,10); + htemp__4->SetBinContent(2738,7); + htemp__4->SetBinContent(2739,7); + htemp__4->SetBinContent(2740,11); + htemp__4->SetBinContent(2741,10); + htemp__4->SetBinContent(2762,7); + htemp__4->SetBinContent(2763,13); + htemp__4->SetBinContent(2764,9); + htemp__4->SetBinContent(2765,8); + htemp__4->SetBinContent(2766,12); + htemp__4->SetBinContent(2767,10); + htemp__4->SetBinContent(2768,11); + htemp__4->SetBinContent(2769,12); + htemp__4->SetBinContent(2770,10); + htemp__4->SetBinContent(2771,9); + htemp__4->SetBinContent(2772,7); + htemp__4->SetBinContent(2773,11); + htemp__4->SetBinContent(2774,11); + htemp__4->SetBinContent(2775,10); + htemp__4->SetBinContent(2776,9); + htemp__4->SetBinContent(2777,11); + htemp__4->SetBinContent(2778,9); + htemp__4->SetBinContent(2779,7); + htemp__4->SetBinContent(2780,6); + htemp__4->SetBinContent(2781,5); + htemp__4->SetBinContent(2782,7); + htemp__4->SetBinContent(2783,12); + htemp__4->SetBinContent(2784,8); + htemp__4->SetBinContent(2785,6); + htemp__4->SetBinContent(2786,6); + htemp__4->SetBinContent(2787,11); + htemp__4->SetBinContent(2788,6); + htemp__4->SetBinContent(2789,8); + htemp__4->SetBinContent(2790,5); + htemp__4->SetBinContent(2822,8); + htemp__4->SetBinContent(2823,6); + htemp__4->SetBinContent(2824,12); + htemp__4->SetBinContent(2825,8); + htemp__4->SetBinContent(2826,8); + htemp__4->SetBinContent(2827,7); + htemp__4->SetBinContent(2828,9); + htemp__4->SetBinContent(2829,5); + htemp__4->SetBinContent(2830,9); + htemp__4->SetBinContent(2831,4); + htemp__4->SetBinContent(2832,3); + htemp__4->SetBinContent(2833,9); + htemp__4->SetBinContent(2834,9); + htemp__4->SetBinContent(2835,14); + htemp__4->SetBinContent(2836,11); + htemp__4->SetBinContent(2837,10); + htemp__4->SetBinContent(2838,7); + htemp__4->SetBinContent(2839,14); + htemp__4->SetBinContent(2840,9); + htemp__4->SetBinContent(2841,16); + htemp__4->SetBinContent(2842,7); + htemp__4->SetBinContent(2843,8); + htemp__4->SetBinContent(2844,9); + htemp__4->SetBinContent(2845,9); + htemp__4->SetBinContent(2846,10); + htemp__4->SetBinContent(2847,13); + htemp__4->SetBinContent(2848,7); + htemp__4->SetBinContent(2849,13); + htemp__4->SetBinContent(2850,11); + htemp__4->SetBinContent(2851,13); + htemp__4->SetBinContent(2852,12); + htemp__4->SetBinContent(2853,5); + htemp__4->SetBinContent(2854,10); + htemp__4->SetBinContent(2855,10); + htemp__4->SetBinContent(2856,10); + htemp__4->SetBinContent(2857,8); + htemp__4->SetBinContent(2858,13); + htemp__4->SetBinContent(2859,12); + htemp__4->SetBinContent(2860,6); + htemp__4->SetBinContent(2861,8); + htemp__4->SetBinContent(2862,3); + htemp__4->SetBinContent(2863,12); + htemp__4->SetBinContent(2864,11); + htemp__4->SetBinContent(2865,3); + htemp__4->SetBinContent(2896,1); + htemp__4->SetBinContent(2897,8); + htemp__4->SetBinContent(2898,4); + htemp__4->SetBinContent(2899,12); + htemp__4->SetBinContent(2900,13); + htemp__4->SetBinContent(2901,5); + htemp__4->SetBinContent(2902,9); + htemp__4->SetBinContent(2903,5); + htemp__4->SetBinContent(2904,3); + htemp__4->SetBinContent(2924,2); + htemp__4->SetBinContent(2925,8); + htemp__4->SetBinContent(2926,9); + htemp__4->SetBinContent(2927,8); + htemp__4->SetBinContent(2928,11); + htemp__4->SetBinContent(2929,10); + htemp__4->SetBinContent(2930,12); + htemp__4->SetBinContent(2931,13); + htemp__4->SetBinContent(2932,9); + htemp__4->SetBinContent(2933,12); + htemp__4->SetBinContent(2934,9); + htemp__4->SetBinContent(2935,10); + htemp__4->SetBinContent(2936,8); + htemp__4->SetBinContent(2937,11); + htemp__4->SetBinContent(2938,11); + htemp__4->SetBinContent(2939,12); + htemp__4->SetBinContent(2940,5); + htemp__4->SetBinContent(2941,6); + htemp__4->SetBinContent(2942,5); + htemp__4->SetBinContent(2943,5); + htemp__4->SetBinContent(2944,6); + htemp__4->SetBinContent(2945,11); + htemp__4->SetBinContent(2946,4); + htemp__4->SetBinContent(2947,10); + htemp__4->SetBinContent(2948,9); + htemp__4->SetBinContent(2949,5); + htemp__4->SetBinContent(2950,8); + htemp__4->SetBinContent(2951,11); + htemp__4->SetBinContent(2952,4); + htemp__4->SetBinContent(2984,6); + htemp__4->SetBinContent(2985,11); + htemp__4->SetBinContent(2986,9); + htemp__4->SetBinContent(2987,10); + htemp__4->SetBinContent(2988,7); + htemp__4->SetBinContent(2989,9); + htemp__4->SetBinContent(2990,12); + htemp__4->SetBinContent(2991,9); + htemp__4->SetBinContent(2992,6); + htemp__4->SetBinContent(2993,9); + htemp__4->SetBinContent(2994,12); + htemp__4->SetBinContent(2995,6); + htemp__4->SetBinContent(2996,2); + htemp__4->SetBinContent(2997,10); + htemp__4->SetBinContent(2998,9); + htemp__4->SetBinContent(2999,5); + htemp__4->SetBinContent(3000,16); + htemp__4->SetBinContent(3001,11); + htemp__4->SetBinContent(3002,6); + htemp__4->SetBinContent(3003,8); + htemp__4->SetBinContent(3004,6); + htemp__4->SetBinContent(3005,8); + htemp__4->SetBinContent(3006,10); + htemp__4->SetBinContent(3007,7); + htemp__4->SetBinContent(3008,9); + htemp__4->SetBinContent(3009,10); + htemp__4->SetBinContent(3010,6); + htemp__4->SetBinContent(3011,13); + htemp__4->SetBinContent(3012,6); + htemp__4->SetBinContent(3013,10); + htemp__4->SetBinContent(3014,12); + htemp__4->SetBinContent(3015,8); + htemp__4->SetBinContent(3016,11); + htemp__4->SetBinContent(3017,12); + htemp__4->SetBinContent(3018,10); + htemp__4->SetBinContent(3019,11); + htemp__4->SetBinContent(3020,8); + htemp__4->SetBinContent(3021,13); + htemp__4->SetBinContent(3022,9); + htemp__4->SetBinContent(3023,9); + htemp__4->SetBinContent(3024,5); + htemp__4->SetBinContent(3025,9); + htemp__4->SetBinContent(3026,10); + htemp__4->SetBinContent(3027,2); + htemp__4->SetBinContent(3059,10); + htemp__4->SetBinContent(3060,11); + htemp__4->SetBinContent(3061,11); + htemp__4->SetBinContent(3062,8); + htemp__4->SetBinContent(3063,13); + htemp__4->SetBinContent(3064,9); + htemp__4->SetBinContent(3065,7); + htemp__4->SetBinContent(3086,2); + htemp__4->SetBinContent(3087,5); + htemp__4->SetBinContent(3088,8); + htemp__4->SetBinContent(3089,10); + htemp__4->SetBinContent(3090,10); + htemp__4->SetBinContent(3091,8); + htemp__4->SetBinContent(3092,8); + htemp__4->SetBinContent(3093,12); + htemp__4->SetBinContent(3094,11); + htemp__4->SetBinContent(3095,7); + htemp__4->SetBinContent(3096,7); + htemp__4->SetBinContent(3097,5); + htemp__4->SetBinContent(3098,5); + htemp__4->SetBinContent(3099,14); + htemp__4->SetBinContent(3100,7); + htemp__4->SetBinContent(3101,8); + htemp__4->SetBinContent(3102,6); + htemp__4->SetBinContent(3103,8); + htemp__4->SetBinContent(3104,3); + htemp__4->SetBinContent(3105,7); + htemp__4->SetBinContent(3106,9); + htemp__4->SetBinContent(3107,5); + htemp__4->SetBinContent(3108,7); + htemp__4->SetBinContent(3109,5); + htemp__4->SetBinContent(3110,5); + htemp__4->SetBinContent(3111,12); + htemp__4->SetBinContent(3112,8); + htemp__4->SetBinContent(3113,6); + htemp__4->SetBinContent(3114,4); + htemp__4->SetBinContent(3146,3); + htemp__4->SetBinContent(3147,6); + htemp__4->SetBinContent(3148,11); + htemp__4->SetBinContent(3149,8); + htemp__4->SetBinContent(3150,5); + htemp__4->SetBinContent(3151,5); + htemp__4->SetBinContent(3152,12); + htemp__4->SetBinContent(3153,13); + htemp__4->SetBinContent(3155,8); + htemp__4->SetBinContent(3156,9); + htemp__4->SetBinContent(3157,4); + htemp__4->SetBinContent(3158,6); + htemp__4->SetBinContent(3159,7); + htemp__4->SetBinContent(3160,11); + htemp__4->SetBinContent(3161,5); + htemp__4->SetBinContent(3162,4); + htemp__4->SetBinContent(3163,9); + htemp__4->SetBinContent(3164,12); + htemp__4->SetBinContent(3165,7); + htemp__4->SetBinContent(3166,6); + htemp__4->SetBinContent(3167,11); + htemp__4->SetBinContent(3168,6); + htemp__4->SetBinContent(3169,9); + htemp__4->SetBinContent(3170,9); + htemp__4->SetBinContent(3171,8); + htemp__4->SetBinContent(3172,4); + htemp__4->SetBinContent(3173,6); + htemp__4->SetBinContent(3174,8); + htemp__4->SetBinContent(3175,3); + htemp__4->SetBinContent(3176,9); + htemp__4->SetBinContent(3177,11); + htemp__4->SetBinContent(3178,10); + htemp__4->SetBinContent(3179,10); + htemp__4->SetBinContent(3180,5); + htemp__4->SetBinContent(3181,5); + htemp__4->SetBinContent(3182,9); + htemp__4->SetBinContent(3183,4); + htemp__4->SetBinContent(3184,6); + htemp__4->SetBinContent(3185,10); + htemp__4->SetBinContent(3186,3); + htemp__4->SetBinContent(3187,7); + htemp__4->SetBinContent(3188,9); + htemp__4->SetBinContent(3189,1); + htemp__4->SetBinContent(3220,1); + htemp__4->SetBinContent(3221,4); + htemp__4->SetBinContent(3222,15); + htemp__4->SetBinContent(3223,7); + htemp__4->SetBinContent(3224,7); + htemp__4->SetBinContent(3225,3); + htemp__4->SetBinContent(3226,10); + htemp__4->SetBinContent(3227,10); + htemp__4->SetBinContent(3228,1); + htemp__4->SetBinContent(3248,1); + htemp__4->SetBinContent(3249,6); + htemp__4->SetBinContent(3250,6); + htemp__4->SetBinContent(3251,5); + htemp__4->SetBinContent(3252,3); + htemp__4->SetBinContent(3253,8); + htemp__4->SetBinContent(3254,9); + htemp__4->SetBinContent(3255,5); + htemp__4->SetBinContent(3256,5); + htemp__4->SetBinContent(3257,8); + htemp__4->SetBinContent(3258,4); + htemp__4->SetBinContent(3259,7); + htemp__4->SetBinContent(3260,9); + htemp__4->SetBinContent(3261,4); + htemp__4->SetBinContent(3262,10); + htemp__4->SetBinContent(3263,5); + htemp__4->SetBinContent(3264,8); + htemp__4->SetBinContent(3265,5); + htemp__4->SetBinContent(3266,7); + htemp__4->SetBinContent(3267,8); + htemp__4->SetBinContent(3268,5); + htemp__4->SetBinContent(3269,8); + htemp__4->SetBinContent(3270,2); + htemp__4->SetBinContent(3271,6); + htemp__4->SetBinContent(3272,12); + htemp__4->SetBinContent(3273,6); + htemp__4->SetBinContent(3274,9); + htemp__4->SetBinContent(3275,5); + htemp__4->SetBinContent(3276,4); + htemp__4->SetBinContent(3308,4); + htemp__4->SetBinContent(3309,7); + htemp__4->SetBinContent(3310,7); + htemp__4->SetBinContent(3311,10); + htemp__4->SetBinContent(3312,7); + htemp__4->SetBinContent(3313,6); + htemp__4->SetBinContent(3314,10); + htemp__4->SetBinContent(3315,4); + htemp__4->SetBinContent(3316,7); + htemp__4->SetBinContent(3317,4); + htemp__4->SetBinContent(3318,5); + htemp__4->SetBinContent(3319,7); + htemp__4->SetBinContent(3320,8); + htemp__4->SetBinContent(3321,5); + htemp__4->SetBinContent(3322,11); + htemp__4->SetBinContent(3323,11); + htemp__4->SetBinContent(3324,6); + htemp__4->SetBinContent(3325,4); + htemp__4->SetBinContent(3326,9); + htemp__4->SetBinContent(3327,6); + htemp__4->SetBinContent(3328,7); + htemp__4->SetBinContent(3329,7); + htemp__4->SetBinContent(3330,6); + htemp__4->SetBinContent(3331,8); + htemp__4->SetBinContent(3332,4); + htemp__4->SetBinContent(3333,6); + htemp__4->SetBinContent(3334,9); + htemp__4->SetBinContent(3335,6); + htemp__4->SetBinContent(3336,9); + htemp__4->SetBinContent(3337,4); + htemp__4->SetBinContent(3338,9); + htemp__4->SetBinContent(3339,9); + htemp__4->SetBinContent(3340,9); + htemp__4->SetBinContent(3341,4); + htemp__4->SetBinContent(3342,8); + htemp__4->SetBinContent(3343,5); + htemp__4->SetBinContent(3344,4); + htemp__4->SetBinContent(3345,7); + htemp__4->SetBinContent(3346,9); + htemp__4->SetBinContent(3347,11); + htemp__4->SetBinContent(3348,7); + htemp__4->SetBinContent(3349,3); + htemp__4->SetBinContent(3350,6); + htemp__4->SetBinContent(3351,2); + htemp__4->SetBinContent(3382,1); + htemp__4->SetBinContent(3383,3); + htemp__4->SetBinContent(3384,10); + htemp__4->SetBinContent(3385,7); + htemp__4->SetBinContent(3386,8); + htemp__4->SetBinContent(3387,8); + htemp__4->SetBinContent(3388,12); + htemp__4->SetBinContent(3389,9); + htemp__4->SetBinContent(3410,4); + htemp__4->SetBinContent(3411,8); + htemp__4->SetBinContent(3412,5); + htemp__4->SetBinContent(3413,4); + htemp__4->SetBinContent(3414,6); + htemp__4->SetBinContent(3415,5); + htemp__4->SetBinContent(3416,5); + htemp__4->SetBinContent(3417,7); + htemp__4->SetBinContent(3418,5); + htemp__4->SetBinContent(3419,8); + htemp__4->SetBinContent(3420,8); + htemp__4->SetBinContent(3421,6); + htemp__4->SetBinContent(3422,5); + htemp__4->SetBinContent(3423,3); + htemp__4->SetBinContent(3424,3); + htemp__4->SetBinContent(3425,6); + htemp__4->SetBinContent(3426,7); + htemp__4->SetBinContent(3427,6); + htemp__4->SetBinContent(3428,6); + htemp__4->SetBinContent(3429,2); + htemp__4->SetBinContent(3430,7); + htemp__4->SetBinContent(3431,2); + htemp__4->SetBinContent(3432,8); + htemp__4->SetBinContent(3433,4); + htemp__4->SetBinContent(3434,4); + htemp__4->SetBinContent(3435,7); + htemp__4->SetBinContent(3436,4); + htemp__4->SetBinContent(3437,3); + htemp__4->SetBinContent(3438,4); + htemp__4->SetBinContent(3470,5); + htemp__4->SetBinContent(3471,5); + htemp__4->SetBinContent(3472,5); + htemp__4->SetBinContent(3473,4); + htemp__4->SetBinContent(3474,3); + htemp__4->SetBinContent(3475,5); + htemp__4->SetBinContent(3476,2); + htemp__4->SetBinContent(3477,6); + htemp__4->SetBinContent(3478,6); + htemp__4->SetBinContent(3479,5); + htemp__4->SetBinContent(3480,4); + htemp__4->SetBinContent(3481,7); + htemp__4->SetBinContent(3482,3); + htemp__4->SetBinContent(3483,3); + htemp__4->SetBinContent(3484,5); + htemp__4->SetBinContent(3485,8); + htemp__4->SetBinContent(3486,7); + htemp__4->SetBinContent(3487,4); + htemp__4->SetBinContent(3488,9); + htemp__4->SetBinContent(3489,6); + htemp__4->SetBinContent(3490,8); + htemp__4->SetBinContent(3491,7); + htemp__4->SetBinContent(3492,3); + htemp__4->SetBinContent(3493,4); + htemp__4->SetBinContent(3494,7); + htemp__4->SetBinContent(3495,6); + htemp__4->SetBinContent(3496,6); + htemp__4->SetBinContent(3497,4); + htemp__4->SetBinContent(3498,6); + htemp__4->SetBinContent(3499,10); + htemp__4->SetBinContent(3500,7); + htemp__4->SetBinContent(3501,1); + htemp__4->SetBinContent(3502,12); + htemp__4->SetBinContent(3503,5); + htemp__4->SetBinContent(3504,5); + htemp__4->SetBinContent(3505,6); + htemp__4->SetBinContent(3506,2); + htemp__4->SetBinContent(3507,3); + htemp__4->SetBinContent(3508,5); + htemp__4->SetBinContent(3509,9); + htemp__4->SetBinContent(3510,7); + htemp__4->SetBinContent(3511,5); + htemp__4->SetBinContent(3512,3); + htemp__4->SetBinContent(3513,1); + htemp__4->SetBinContent(3545,5); + htemp__4->SetBinContent(3546,7); + htemp__4->SetBinContent(3547,2); + htemp__4->SetBinContent(3548,8); + htemp__4->SetBinContent(3549,6); + htemp__4->SetBinContent(3550,4); + htemp__4->SetBinContent(3551,6); + htemp__4->SetBinContent(3572,2); + htemp__4->SetBinContent(3573,5); + htemp__4->SetBinContent(3574,3); + htemp__4->SetBinContent(3575,2); + htemp__4->SetBinContent(3576,8); + htemp__4->SetBinContent(3577,5); + htemp__4->SetBinContent(3578,6); + htemp__4->SetBinContent(3579,7); + htemp__4->SetBinContent(3580,4); + htemp__4->SetBinContent(3581,1); + htemp__4->SetBinContent(3582,6); + htemp__4->SetBinContent(3583,5); + htemp__4->SetBinContent(3584,5); + htemp__4->SetBinContent(3585,6); + htemp__4->SetBinContent(3586,5); + htemp__4->SetBinContent(3587,5); + htemp__4->SetBinContent(3588,5); + htemp__4->SetBinContent(3589,5); + htemp__4->SetBinContent(3590,9); + htemp__4->SetBinContent(3591,9); + htemp__4->SetBinContent(3592,5); + htemp__4->SetBinContent(3593,3); + htemp__4->SetBinContent(3594,3); + htemp__4->SetBinContent(3595,6); + htemp__4->SetBinContent(3596,1); + htemp__4->SetBinContent(3597,5); + htemp__4->SetBinContent(3598,2); + htemp__4->SetBinContent(3599,4); + htemp__4->SetBinContent(3600,1); + htemp__4->SetBinContent(3632,2); + htemp__4->SetBinContent(3633,8); + htemp__4->SetBinContent(3634,3); + htemp__4->SetBinContent(3635,6); + htemp__4->SetBinContent(3636,7); + htemp__4->SetBinContent(3637,9); + htemp__4->SetBinContent(3638,2); + htemp__4->SetBinContent(3639,3); + htemp__4->SetBinContent(3640,7); + htemp__4->SetBinContent(3641,8); + htemp__4->SetBinContent(3642,6); + htemp__4->SetBinContent(3643,2); + htemp__4->SetBinContent(3644,6); + htemp__4->SetBinContent(3645,4); + htemp__4->SetBinContent(3646,4); + htemp__4->SetBinContent(3647,6); + htemp__4->SetBinContent(3648,8); + htemp__4->SetBinContent(3649,2); + htemp__4->SetBinContent(3650,5); + htemp__4->SetBinContent(3651,5); + htemp__4->SetBinContent(3652,6); + htemp__4->SetBinContent(3653,5); + htemp__4->SetBinContent(3654,8); + htemp__4->SetBinContent(3655,4); + htemp__4->SetBinContent(3656,5); + htemp__4->SetBinContent(3657,3); + htemp__4->SetBinContent(3658,5); + htemp__4->SetBinContent(3659,5); + htemp__4->SetBinContent(3660,1); + htemp__4->SetBinContent(3661,3); + htemp__4->SetBinContent(3662,4); + htemp__4->SetBinContent(3663,5); + htemp__4->SetBinContent(3664,7); + htemp__4->SetBinContent(3665,4); + htemp__4->SetBinContent(3666,2); + htemp__4->SetBinContent(3667,7); + htemp__4->SetBinContent(3668,3); + htemp__4->SetBinContent(3669,5); + htemp__4->SetBinContent(3670,3); + htemp__4->SetBinContent(3671,1); + htemp__4->SetBinContent(3672,9); + htemp__4->SetBinContent(3673,6); + htemp__4->SetBinContent(3674,5); + htemp__4->SetBinContent(3675,3); + htemp__4->SetBinContent(3706,1); + htemp__4->SetBinContent(3707,2); + htemp__4->SetBinContent(3708,5); + htemp__4->SetBinContent(3709,6); + htemp__4->SetBinContent(3710,1); + htemp__4->SetBinContent(3711,4); + htemp__4->SetBinContent(3712,3); + htemp__4->SetBinContent(3713,3); + htemp__4->SetBinContent(3734,4); + htemp__4->SetBinContent(3735,5); + htemp__4->SetBinContent(3737,5); + htemp__4->SetBinContent(3738,3); + htemp__4->SetBinContent(3739,3); + htemp__4->SetBinContent(3740,8); + htemp__4->SetBinContent(3741,3); + htemp__4->SetBinContent(3742,4); + htemp__4->SetBinContent(3743,4); + htemp__4->SetBinContent(3744,8); + htemp__4->SetBinContent(3745,9); + htemp__4->SetBinContent(3746,4); + htemp__4->SetBinContent(3747,7); + htemp__4->SetBinContent(3748,5); + htemp__4->SetBinContent(3749,3); + htemp__4->SetBinContent(3750,5); + htemp__4->SetBinContent(3751,6); + htemp__4->SetBinContent(3752,5); + htemp__4->SetBinContent(3753,1); + htemp__4->SetBinContent(3754,1); + htemp__4->SetBinContent(3755,6); + htemp__4->SetBinContent(3756,3); + htemp__4->SetBinContent(3757,2); + htemp__4->SetBinContent(3759,3); + htemp__4->SetBinContent(3760,2); + htemp__4->SetBinContent(3761,4); + htemp__4->SetBinContent(3762,3); + htemp__4->SetBinContent(3794,2); + htemp__4->SetBinContent(3795,3); + htemp__4->SetBinContent(3796,3); + htemp__4->SetBinContent(3797,2); + htemp__4->SetBinContent(3798,3); + htemp__4->SetBinContent(3799,6); + htemp__4->SetBinContent(3800,4); + htemp__4->SetBinContent(3801,2); + htemp__4->SetBinContent(3802,5); + htemp__4->SetBinContent(3803,5); + htemp__4->SetBinContent(3804,5); + htemp__4->SetBinContent(3805,4); + htemp__4->SetBinContent(3806,5); + htemp__4->SetBinContent(3807,5); + htemp__4->SetBinContent(3808,2); + htemp__4->SetBinContent(3809,4); + htemp__4->SetBinContent(3810,4); + htemp__4->SetBinContent(3811,6); + htemp__4->SetBinContent(3812,4); + htemp__4->SetBinContent(3813,2); + htemp__4->SetBinContent(3814,3); + htemp__4->SetBinContent(3815,1); + htemp__4->SetBinContent(3816,6); + htemp__4->SetBinContent(3817,6); + htemp__4->SetBinContent(3818,1); + htemp__4->SetBinContent(3819,3); + htemp__4->SetBinContent(3820,3); + htemp__4->SetBinContent(3821,3); + htemp__4->SetBinContent(3822,4); + htemp__4->SetBinContent(3823,5); + htemp__4->SetBinContent(3824,4); + htemp__4->SetBinContent(3825,1); + htemp__4->SetBinContent(3826,5); + htemp__4->SetBinContent(3827,1); + htemp__4->SetBinContent(3828,4); + htemp__4->SetBinContent(3829,3); + htemp__4->SetBinContent(3830,7); + htemp__4->SetBinContent(3831,4); + htemp__4->SetBinContent(3832,3); + htemp__4->SetBinContent(3833,5); + htemp__4->SetBinContent(3834,2); + htemp__4->SetBinContent(3835,3); + htemp__4->SetBinContent(3836,8); + htemp__4->SetBinContent(3868,1); + htemp__4->SetBinContent(3869,6); + htemp__4->SetBinContent(3870,5); + htemp__4->SetBinContent(3871,3); + htemp__4->SetBinContent(3872,3); + htemp__4->SetBinContent(3873,7); + htemp__4->SetBinContent(3874,4); + htemp__4->SetBinContent(3875,2); + htemp__4->SetBinContent(3876,1); + htemp__4->SetBinContent(3896,2); + htemp__4->SetBinContent(3897,1); + htemp__4->SetBinContent(3898,7); + htemp__4->SetBinContent(3899,2); + htemp__4->SetBinContent(3900,3); + htemp__4->SetBinContent(3901,6); + htemp__4->SetBinContent(3902,1); + htemp__4->SetBinContent(3903,2); + htemp__4->SetBinContent(3904,4); + htemp__4->SetBinContent(3905,6); + htemp__4->SetBinContent(3906,1); + htemp__4->SetBinContent(3907,4); + htemp__4->SetBinContent(3908,1); + htemp__4->SetBinContent(3909,4); + htemp__4->SetBinContent(3910,2); + htemp__4->SetBinContent(3911,4); + htemp__4->SetBinContent(3912,2); + htemp__4->SetBinContent(3913,2); + htemp__4->SetBinContent(3914,2); + htemp__4->SetBinContent(3915,3); + htemp__4->SetBinContent(3916,6); + htemp__4->SetBinContent(3917,5); + htemp__4->SetBinContent(3918,2); + htemp__4->SetBinContent(3920,4); + htemp__4->SetBinContent(3921,2); + htemp__4->SetBinContent(3922,3); + htemp__4->SetBinContent(3923,2); + htemp__4->SetBinContent(3924,1); + htemp__4->SetBinContent(3956,6); + htemp__4->SetBinContent(3957,1); + htemp__4->SetBinContent(3959,4); + htemp__4->SetBinContent(3960,4); + htemp__4->SetBinContent(3961,3); + htemp__4->SetBinContent(3962,4); + htemp__4->SetBinContent(3963,3); + htemp__4->SetBinContent(3964,4); + htemp__4->SetBinContent(3965,5); + htemp__4->SetBinContent(3966,3); + htemp__4->SetBinContent(3967,1); + htemp__4->SetBinContent(3968,2); + htemp__4->SetBinContent(3969,3); + htemp__4->SetBinContent(3970,3); + htemp__4->SetBinContent(3971,2); + htemp__4->SetBinContent(3972,1); + htemp__4->SetBinContent(3973,3); + htemp__4->SetBinContent(3974,2); + htemp__4->SetBinContent(3975,6); + htemp__4->SetBinContent(3976,5); + htemp__4->SetBinContent(3977,5); + htemp__4->SetBinContent(3978,3); + htemp__4->SetBinContent(3979,4); + htemp__4->SetBinContent(3980,2); + htemp__4->SetBinContent(3981,2); + htemp__4->SetBinContent(3982,5); + htemp__4->SetBinContent(3983,1); + htemp__4->SetBinContent(3984,7); + htemp__4->SetBinContent(3985,2); + htemp__4->SetBinContent(3986,1); + htemp__4->SetBinContent(3987,4); + htemp__4->SetBinContent(3988,3); + htemp__4->SetBinContent(3989,2); + htemp__4->SetBinContent(3990,1); + htemp__4->SetBinContent(3991,2); + htemp__4->SetBinContent(3992,2); + htemp__4->SetBinContent(3993,4); + htemp__4->SetBinContent(3994,2); + htemp__4->SetBinContent(3995,2); + htemp__4->SetBinContent(3996,1); + htemp__4->SetBinContent(3997,2); + htemp__4->SetBinContent(3998,3); + htemp__4->SetBinContent(4031,3); + htemp__4->SetBinContent(4032,1); + htemp__4->SetBinContent(4033,6); + htemp__4->SetBinContent(4034,2); + htemp__4->SetBinContent(4035,4); + htemp__4->SetBinContent(4036,1); + htemp__4->SetBinContent(4037,3); + htemp__4->SetBinContent(4058,3); + htemp__4->SetBinContent(4059,3); + htemp__4->SetBinContent(4060,1); + htemp__4->SetBinContent(4061,3); + htemp__4->SetBinContent(4062,3); + htemp__4->SetBinContent(4063,1); + htemp__4->SetBinContent(4065,1); + htemp__4->SetBinContent(4066,1); + htemp__4->SetBinContent(4067,3); + htemp__4->SetBinContent(4068,2); + htemp__4->SetBinContent(4069,1); + htemp__4->SetBinContent(4070,1); + htemp__4->SetBinContent(4071,1); + htemp__4->SetBinContent(4072,2); + htemp__4->SetBinContent(4074,4); + htemp__4->SetBinContent(4076,2); + htemp__4->SetBinContent(4077,1); + htemp__4->SetBinContent(4078,2); + htemp__4->SetBinContent(4080,6); + htemp__4->SetBinContent(4081,3); + htemp__4->SetBinContent(4082,3); + htemp__4->SetBinContent(4084,1); + htemp__4->SetBinContent(4085,2); + htemp__4->SetBinContent(4086,1); + htemp__4->SetBinContent(4118,3); + htemp__4->SetBinContent(4119,1); + htemp__4->SetBinContent(4120,1); + htemp__4->SetBinContent(4121,2); + htemp__4->SetBinContent(4122,2); + htemp__4->SetBinContent(4123,2); + htemp__4->SetBinContent(4124,1); + htemp__4->SetBinContent(4125,3); + htemp__4->SetBinContent(4126,3); + htemp__4->SetBinContent(4127,2); + htemp__4->SetBinContent(4128,3); + htemp__4->SetBinContent(4129,3); + htemp__4->SetBinContent(4130,1); + htemp__4->SetBinContent(4131,4); + htemp__4->SetBinContent(4132,1); + htemp__4->SetBinContent(4133,5); + htemp__4->SetBinContent(4135,3); + htemp__4->SetBinContent(4136,4); + htemp__4->SetBinContent(4137,1); + htemp__4->SetBinContent(4138,2); + htemp__4->SetBinContent(4139,3); + htemp__4->SetBinContent(4140,2); + htemp__4->SetBinContent(4141,3); + htemp__4->SetBinContent(4142,6); + htemp__4->SetBinContent(4143,4); + htemp__4->SetBinContent(4144,2); + htemp__4->SetBinContent(4145,2); + htemp__4->SetBinContent(4146,1); + htemp__4->SetBinContent(4147,3); + htemp__4->SetBinContent(4148,2); + htemp__4->SetBinContent(4149,3); + htemp__4->SetBinContent(4150,2); + htemp__4->SetBinContent(4151,2); + htemp__4->SetBinContent(4152,3); + htemp__4->SetBinContent(4153,1); + htemp__4->SetBinContent(4154,2); + htemp__4->SetBinContent(4155,5); + htemp__4->SetBinContent(4156,2); + htemp__4->SetBinContent(4157,3); + htemp__4->SetBinContent(4158,1); + htemp__4->SetBinContent(4159,7); + htemp__4->SetBinContent(4160,2); + htemp__4->SetBinContent(4193,3); + htemp__4->SetBinContent(4194,1); + htemp__4->SetBinContent(4195,4); + htemp__4->SetBinContent(4196,1); + htemp__4->SetBinContent(4197,2); + htemp__4->SetBinContent(4198,4); + htemp__4->SetBinContent(4199,3); + htemp__4->SetBinContent(4220,3); + htemp__4->SetBinContent(4222,2); + htemp__4->SetBinContent(4223,5); + htemp__4->SetBinContent(4224,3); + htemp__4->SetBinContent(4225,4); + htemp__4->SetBinContent(4226,2); + htemp__4->SetBinContent(4227,2); + htemp__4->SetBinContent(4229,1); + htemp__4->SetBinContent(4230,3); + htemp__4->SetBinContent(4231,2); + htemp__4->SetBinContent(4232,2); + htemp__4->SetBinContent(4233,3); + htemp__4->SetBinContent(4234,3); + htemp__4->SetBinContent(4235,4); + htemp__4->SetBinContent(4236,2); + htemp__4->SetBinContent(4237,4); + htemp__4->SetBinContent(4238,2); + htemp__4->SetBinContent(4239,3); + htemp__4->SetBinContent(4240,1); + htemp__4->SetBinContent(4241,3); + htemp__4->SetBinContent(4242,8); + htemp__4->SetBinContent(4243,3); + htemp__4->SetBinContent(4244,3); + htemp__4->SetBinContent(4245,2); + htemp__4->SetBinContent(4247,3); + htemp__4->SetBinContent(4281,2); + htemp__4->SetBinContent(4282,3); + htemp__4->SetBinContent(4283,3); + htemp__4->SetBinContent(4284,1); + htemp__4->SetBinContent(4285,2); + htemp__4->SetBinContent(4286,3); + htemp__4->SetBinContent(4287,1); + htemp__4->SetBinContent(4288,1); + htemp__4->SetBinContent(4289,5); + htemp__4->SetBinContent(4290,1); + htemp__4->SetBinContent(4291,2); + htemp__4->SetBinContent(4292,4); + htemp__4->SetBinContent(4293,3); + htemp__4->SetBinContent(4294,2); + htemp__4->SetBinContent(4296,4); + htemp__4->SetBinContent(4297,1); + htemp__4->SetBinContent(4298,3); + htemp__4->SetBinContent(4299,1); + htemp__4->SetBinContent(4300,1); + htemp__4->SetBinContent(4301,4); + htemp__4->SetBinContent(4302,1); + htemp__4->SetBinContent(4303,3); + htemp__4->SetBinContent(4304,1); + htemp__4->SetBinContent(4305,2); + htemp__4->SetBinContent(4306,2); + htemp__4->SetBinContent(4307,1); + htemp__4->SetBinContent(4308,1); + htemp__4->SetBinContent(4309,2); + htemp__4->SetBinContent(4310,2); + htemp__4->SetBinContent(4311,5); + htemp__4->SetBinContent(4314,2); + htemp__4->SetBinContent(4316,1); + htemp__4->SetBinContent(4317,3); + htemp__4->SetBinContent(4318,2); + htemp__4->SetBinContent(4319,1); + htemp__4->SetBinContent(4320,3); + htemp__4->SetBinContent(4321,1); + htemp__4->SetBinContent(4354,1); + htemp__4->SetBinContent(4355,2); + htemp__4->SetBinContent(4357,2); + htemp__4->SetBinContent(4358,3); + htemp__4->SetBinContent(4359,2); + htemp__4->SetBinContent(4360,3); + htemp__4->SetBinContent(4361,4); + htemp__4->SetBinContent(4383,4); + htemp__4->SetBinContent(4384,2); + htemp__4->SetBinContent(4385,1); + htemp__4->SetBinContent(4388,1); + htemp__4->SetBinContent(4389,1); + htemp__4->SetBinContent(4391,1); + htemp__4->SetBinContent(4393,2); + htemp__4->SetBinContent(4394,1); + htemp__4->SetBinContent(4396,2); + htemp__4->SetBinContent(4397,3); + htemp__4->SetBinContent(4398,1); + htemp__4->SetBinContent(4399,1); + htemp__4->SetBinContent(4400,1); + htemp__4->SetBinContent(4402,1); + htemp__4->SetBinContent(4403,3); + htemp__4->SetBinContent(4404,3); + htemp__4->SetBinContent(4405,1); + htemp__4->SetBinContent(4406,1); + htemp__4->SetBinContent(4407,1); + htemp__4->SetBinContent(4408,3); + htemp__4->SetBinContent(4409,3); + htemp__4->SetBinContent(4443,3); + htemp__4->SetBinContent(4444,1); + htemp__4->SetBinContent(4446,1); + htemp__4->SetBinContent(4448,2); + htemp__4->SetBinContent(4449,2); + htemp__4->SetBinContent(4450,2); + htemp__4->SetBinContent(4451,2); + htemp__4->SetBinContent(4452,1); + htemp__4->SetBinContent(4454,1); + htemp__4->SetBinContent(4455,2); + htemp__4->SetBinContent(4456,1); + htemp__4->SetBinContent(4457,1); + htemp__4->SetBinContent(4458,1); + htemp__4->SetBinContent(4459,1); + htemp__4->SetBinContent(4460,1); + htemp__4->SetBinContent(4461,1); + htemp__4->SetBinContent(4463,1); + htemp__4->SetBinContent(4465,3); + htemp__4->SetBinContent(4466,2); + htemp__4->SetBinContent(4467,3); + htemp__4->SetBinContent(4468,3); + htemp__4->SetBinContent(4469,1); + htemp__4->SetBinContent(4470,2); + htemp__4->SetBinContent(4471,1); + htemp__4->SetBinContent(4472,1); + htemp__4->SetBinContent(4473,1); + htemp__4->SetBinContent(4475,2); + htemp__4->SetBinContent(4476,3); + htemp__4->SetBinContent(4477,2); + htemp__4->SetBinContent(4478,2); + htemp__4->SetBinContent(4479,2); + htemp__4->SetBinContent(4480,2); + htemp__4->SetBinContent(4483,1); + htemp__4->SetBinContent(4484,1); + htemp__4->SetBinContent(4517,1); + htemp__4->SetBinContent(4518,4); + htemp__4->SetBinContent(4519,3); + htemp__4->SetBinContent(4520,2); + htemp__4->SetBinContent(4521,2); + htemp__4->SetBinContent(4523,1); + htemp__4->SetBinContent(4545,1); + htemp__4->SetBinContent(4546,1); + htemp__4->SetBinContent(4547,1); + htemp__4->SetBinContent(4548,2); + htemp__4->SetBinContent(4549,1); + htemp__4->SetBinContent(4550,1); + htemp__4->SetBinContent(4551,2); + htemp__4->SetBinContent(4552,3); + htemp__4->SetBinContent(4553,1); + htemp__4->SetBinContent(4554,1); + htemp__4->SetBinContent(4555,1); + htemp__4->SetBinContent(4556,1); + htemp__4->SetBinContent(4558,2); + htemp__4->SetBinContent(4562,1); + htemp__4->SetBinContent(4563,1); + htemp__4->SetBinContent(4564,3); + htemp__4->SetBinContent(4565,1); + htemp__4->SetBinContent(4567,2); + htemp__4->SetBinContent(4568,2); + htemp__4->SetBinContent(4569,1); + htemp__4->SetBinContent(4570,1); + htemp__4->SetBinContent(4571,1); + htemp__4->SetBinContent(4604,1); + htemp__4->SetBinContent(4605,1); + htemp__4->SetBinContent(4607,1); + htemp__4->SetBinContent(4608,2); + htemp__4->SetBinContent(4609,2); + htemp__4->SetBinContent(4610,1); + htemp__4->SetBinContent(4611,1); + htemp__4->SetBinContent(4613,1); + htemp__4->SetBinContent(4614,1); + htemp__4->SetBinContent(4616,1); + htemp__4->SetBinContent(4619,2); + htemp__4->SetBinContent(4620,2); + htemp__4->SetBinContent(4621,1); + htemp__4->SetBinContent(4624,1); + htemp__4->SetBinContent(4626,1); + htemp__4->SetBinContent(4627,1); + htemp__4->SetBinContent(4628,2); + htemp__4->SetBinContent(4632,1); + htemp__4->SetBinContent(4633,2); + htemp__4->SetBinContent(4634,1); + htemp__4->SetBinContent(4637,1); + htemp__4->SetBinContent(4638,1); + htemp__4->SetBinContent(4639,4); + htemp__4->SetBinContent(4640,2); + htemp__4->SetBinContent(4641,2); + htemp__4->SetBinContent(4642,4); + htemp__4->SetBinContent(4644,4); + htemp__4->SetBinContent(4646,3); + htemp__4->SetBinContent(4679,2); + htemp__4->SetBinContent(4683,1); + htemp__4->SetBinContent(4684,3); + htemp__4->SetBinContent(4685,2); + htemp__4->SetBinContent(4706,1); + htemp__4->SetBinContent(4708,1); + htemp__4->SetBinContent(4711,1); + htemp__4->SetBinContent(4712,1); + htemp__4->SetBinContent(4713,1); + htemp__4->SetBinContent(4714,2); + htemp__4->SetBinContent(4716,1); + htemp__4->SetBinContent(4717,2); + htemp__4->SetBinContent(4718,1); + htemp__4->SetBinContent(4720,2); + htemp__4->SetBinContent(4721,1); + htemp__4->SetBinContent(4723,2); + htemp__4->SetBinContent(4724,1); + htemp__4->SetBinContent(4725,2); + htemp__4->SetBinContent(4726,1); + htemp__4->SetBinContent(4728,1); + htemp__4->SetBinContent(4729,3); + htemp__4->SetBinContent(4731,1); + htemp__4->SetBinContent(4732,2); + htemp__4->SetBinContent(4733,3); + htemp__4->SetBinContent(4766,2); + htemp__4->SetBinContent(4768,4); + htemp__4->SetBinContent(4769,1); + htemp__4->SetBinContent(4773,2); + htemp__4->SetBinContent(4774,2); + htemp__4->SetBinContent(4776,3); + htemp__4->SetBinContent(4777,1); + htemp__4->SetBinContent(4778,1); + htemp__4->SetBinContent(4779,1); + htemp__4->SetBinContent(4780,1); + htemp__4->SetBinContent(4782,2); + htemp__4->SetBinContent(4783,2); + htemp__4->SetBinContent(4784,1); + htemp__4->SetBinContent(4785,1); + htemp__4->SetBinContent(4786,4); + htemp__4->SetBinContent(4787,1); + htemp__4->SetBinContent(4788,1); + htemp__4->SetBinContent(4789,1); + htemp__4->SetBinContent(4793,1); + htemp__4->SetBinContent(4797,2); + htemp__4->SetBinContent(4800,1); + htemp__4->SetBinContent(4801,2); + htemp__4->SetBinContent(4803,1); + htemp__4->SetBinContent(4804,1); + htemp__4->SetBinContent(4806,2); + htemp__4->SetBinContent(4841,1); + htemp__4->SetBinContent(4842,1); + htemp__4->SetBinContent(4844,1); + htemp__4->SetBinContent(4845,1); + htemp__4->SetBinContent(4847,2); + htemp__4->SetBinContent(4868,1); + htemp__4->SetBinContent(4869,1); + htemp__4->SetBinContent(4870,1); + htemp__4->SetBinContent(4871,1); + htemp__4->SetBinContent(4874,1); + htemp__4->SetBinContent(4876,1); + htemp__4->SetBinContent(4877,1); + htemp__4->SetBinContent(4879,1); + htemp__4->SetBinContent(4884,1); + htemp__4->SetBinContent(4888,1); + htemp__4->SetBinContent(4891,1); + htemp__4->SetBinContent(4892,1); + htemp__4->SetBinContent(4894,1); + htemp__4->SetBinContent(4928,2); + htemp__4->SetBinContent(4929,1); + htemp__4->SetBinContent(4931,1); + htemp__4->SetBinContent(4932,1); + htemp__4->SetBinContent(4933,2); + htemp__4->SetBinContent(4935,3); + htemp__4->SetBinContent(4936,1); + htemp__4->SetBinContent(4937,1); + htemp__4->SetBinContent(4939,2); + htemp__4->SetBinContent(4940,4); + htemp__4->SetBinContent(4943,2); + htemp__4->SetBinContent(4944,1); + htemp__4->SetBinContent(4946,1); + htemp__4->SetBinContent(4948,1); + htemp__4->SetBinContent(4950,1); + htemp__4->SetBinContent(4951,1); + htemp__4->SetBinContent(4954,1); + htemp__4->SetBinContent(4955,2); + htemp__4->SetBinContent(4957,1); + htemp__4->SetBinContent(4958,1); + htemp__4->SetBinContent(4959,1); + htemp__4->SetBinContent(4961,1); + htemp__4->SetBinContent(4965,1); + htemp__4->SetBinContent(4966,1); + htemp__4->SetBinContent(4967,1); + htemp__4->SetBinContent(4968,2); + htemp__4->SetBinContent(4969,1); + htemp__4->SetBinContent(5007,1); + htemp__4->SetBinContent(5008,1); + htemp__4->SetBinContent(5009,2); + htemp__4->SetBinContent(5030,1); + htemp__4->SetBinContent(5031,1); + htemp__4->SetBinContent(5033,1); + htemp__4->SetBinContent(5036,1); + htemp__4->SetBinContent(5037,2); + htemp__4->SetBinContent(5040,1); + htemp__4->SetBinContent(5041,1); + htemp__4->SetBinContent(5042,1); + htemp__4->SetBinContent(5044,1); + htemp__4->SetBinContent(5046,1); + htemp__4->SetBinContent(5047,1); + htemp__4->SetBinContent(5049,1); + htemp__4->SetBinContent(5050,1); + htemp__4->SetBinContent(5052,1); + htemp__4->SetBinContent(5056,1); + htemp__4->SetBinContent(5058,1); + htemp__4->SetBinContent(5092,1); + htemp__4->SetBinContent(5093,1); + htemp__4->SetBinContent(5095,1); + htemp__4->SetBinContent(5097,1); + htemp__4->SetBinContent(5098,1); + htemp__4->SetBinContent(5100,2); + htemp__4->SetBinContent(5101,1); + htemp__4->SetBinContent(5102,1); + htemp__4->SetBinContent(5106,1); + htemp__4->SetBinContent(5107,1); + htemp__4->SetBinContent(5111,1); + htemp__4->SetBinContent(5112,1); + htemp__4->SetBinContent(5113,1); + htemp__4->SetBinContent(5114,1); + htemp__4->SetBinContent(5115,1); + htemp__4->SetBinContent(5116,1); + htemp__4->SetBinContent(5118,3); + htemp__4->SetBinContent(5120,1); + htemp__4->SetBinContent(5121,1); + htemp__4->SetBinContent(5125,1); + htemp__4->SetBinContent(5128,1); + htemp__4->SetBinContent(5129,1); + htemp__4->SetBinContent(5131,1); + htemp__4->SetBinContent(5165,3); + htemp__4->SetBinContent(5168,1); + htemp__4->SetBinContent(5169,1); + htemp__4->SetBinContent(5192,2); + htemp__4->SetBinContent(5193,1); + htemp__4->SetBinContent(5194,1); + htemp__4->SetBinContent(5197,1); + htemp__4->SetBinContent(5200,1); + htemp__4->SetBinContent(5204,1); + htemp__4->SetBinContent(5209,1); + htemp__4->SetBinContent(5210,2); + htemp__4->SetBinContent(5211,1); + htemp__4->SetBinContent(5215,1); + htemp__4->SetBinContent(5217,1); + htemp__4->SetBinContent(5218,1); + htemp__4->SetBinContent(5253,2); + htemp__4->SetBinContent(5263,1); + htemp__4->SetBinContent(5266,1); + htemp__4->SetBinContent(5269,1); + htemp__4->SetBinContent(5270,1); + htemp__4->SetBinContent(5271,1); + htemp__4->SetBinContent(5273,2); + htemp__4->SetBinContent(5274,1); + htemp__4->SetBinContent(5277,1); + htemp__4->SetBinContent(5279,1); + htemp__4->SetBinContent(5280,1); + htemp__4->SetBinContent(5283,1); + htemp__4->SetBinContent(5284,1); + htemp__4->SetBinContent(5285,2); + htemp__4->SetBinContent(5294,1); + htemp__4->SetBinContent(5331,1); + htemp__4->SetBinContent(5354,3); + htemp__4->SetBinContent(5359,1); + htemp__4->SetBinContent(5366,1); + htemp__4->SetBinContent(5367,1); + htemp__4->SetBinContent(5369,1); + htemp__4->SetBinContent(5373,1); + htemp__4->SetBinContent(5380,1); + htemp__4->SetBinContent(5381,1); + htemp__4->SetBinContent(5423,1); + htemp__4->SetBinContent(5425,3); + htemp__4->SetBinContent(5427,2); + htemp__4->SetBinContent(5432,1); + htemp__4->SetBinContent(5438,1); + htemp__4->SetBinContent(5441,1); + htemp__4->SetBinContent(5444,1); + htemp__4->SetBinContent(5445,1); + htemp__4->SetBinContent(5446,1); + htemp__4->SetBinContent(5447,1); + htemp__4->SetBinContent(5450,1); + htemp__4->SetBinContent(5451,1); + htemp__4->SetBinContent(5453,1); + htemp__4->SetBinContent(5454,1); + htemp__4->SetBinContent(5489,2); + htemp__4->SetBinContent(5517,1); + htemp__4->SetBinContent(5518,1); + htemp__4->SetBinContent(5525,1); + htemp__4->SetBinContent(5531,1); + htemp__4->SetBinContent(5537,1); + htemp__4->SetBinContent(5539,1); + htemp__4->SetBinContent(5542,1); + htemp__4->SetBinContent(5543,1); + htemp__4->SetBinContent(5580,1); + htemp__4->SetBinContent(5584,2); + htemp__4->SetBinContent(5590,1); + htemp__4->SetBinContent(5595,1); + htemp__4->SetBinContent(5601,1); + htemp__4->SetBinContent(5607,1); + htemp__4->SetBinContent(5608,1); + htemp__4->SetBinContent(5615,1); + htemp__4->SetBinContent(5617,1); + htemp__4->SetBinContent(5652,2); + htemp__4->SetBinContent(5655,1); + htemp__4->SetBinContent(5656,1); + htemp__4->SetBinContent(5683,1); + htemp__4->SetBinContent(5694,1); + htemp__4->SetBinContent(5697,1); + htemp__4->SetBinContent(5699,2); + htemp__4->SetBinContent(5700,1); + htemp__4->SetBinContent(5702,1); + htemp__4->SetBinContent(5704,1); + htemp__4->SetBinContent(5705,1); + htemp__4->SetBinContent(5741,1); + htemp__4->SetBinContent(5744,1); + htemp__4->SetBinContent(5750,1); + htemp__4->SetBinContent(5751,1); + htemp__4->SetBinContent(5752,1); + htemp__4->SetBinContent(5770,1); + htemp__4->SetBinContent(5776,1); + htemp__4->SetBinContent(5779,1); + htemp__4->SetBinContent(5843,1); + htemp__4->SetBinContent(5844,1); + htemp__4->SetBinContent(5857,1); + htemp__4->SetBinContent(5858,1); + htemp__4->SetBinContent(5864,1); + htemp__4->SetBinContent(5865,1); + htemp__4->SetBinContent(5900,1); + htemp__4->SetBinContent(5902,1); + htemp__4->SetBinContent(5905,1); + htemp__4->SetBinContent(5906,1); + htemp__4->SetBinContent(5915,1); + htemp__4->SetBinContent(5917,1); + htemp__4->SetBinContent(5931,1); + htemp__4->SetBinContent(5932,1); + htemp__4->SetBinContent(5933,2); + htemp__4->SetBinContent(5940,2); + htemp__4->SetBinContent(5975,2); + htemp__4->SetBinContent(5981,1); + htemp__4->SetBinContent(6014,1); + htemp__4->SetBinContent(6016,1); + htemp__4->SetBinContent(6021,1); + htemp__4->SetBinContent(6028,1); + htemp__4->SetBinContent(6065,1); + htemp__4->SetBinContent(6070,1); + htemp__4->SetBinContent(6071,1); + htemp__4->SetBinContent(6087,1); + htemp__4->SetBinContent(6088,2); + htemp__4->SetBinContent(6092,1); + htemp__4->SetBinContent(6099,1); + htemp__4->SetBinContent(6101,1); + htemp__4->SetBinContent(6140,1); + htemp__4->SetBinContent(6165,1); + htemp__4->SetBinContent(6175,1); + htemp__4->SetBinContent(6224,1); + htemp__4->SetBinContent(6257,1); + htemp__4->SetBinContent(6263,1); + htemp__4->SetBinContent(6303,1); + htemp__4->SetBinContent(6332,1); + htemp__4->SetBinContent(6336,1); + htemp__4->SetBinContent(6345,1); + htemp__4->SetBinContent(6350,2); + htemp__4->SetBinContent(6351,1); + htemp__4->SetBinContent(6397,2); + htemp__4->SetBinContent(6398,1); + htemp__4->SetBinContent(6420,1); + htemp__4->SetBinContent(6461,1); + htemp__4->SetBinContent(6463,1); + htemp__4->SetBinContent(6507,1); + htemp__4->SetBinContent(6513,1); + htemp__4->SetBinContent(6514,1); + htemp__4->SetBinContent(6552,1); + htemp__4->SetBinContent(6557,1); + htemp__4->SetBinContent(6584,1); + htemp__4->SetBinContent(6622,1); + htemp__4->SetBinContent(6650,1); + htemp__4->SetBinContent(6661,1); + htemp__4->SetBinContent(6668,1); + htemp__4->SetBinContent(6711,1); + htemp__4->SetBinContent(6728,1); + htemp__4->SetBinContent(6829,1); + htemp__4->SetBinContent(6838,1); + htemp__4->SetBinContent(6882,1); + htemp__4->SetBinContent(6901,1); + htemp__4->SetBinContent(6910,1); + htemp__4->SetBinContent(6950,1); + htemp__4->SetBinContent(7075,1); + htemp__4->SetBinContent(7115,1); + htemp__4->SetBinContent(7164,1); + htemp__4->SetBinContent(7197,1); + htemp__4->SetBinContent(7460,1); + htemp__4->SetBinContent(7542,1); + htemp__4->SetBinContent(7559,1); + htemp__4->SetBinContent(7595,1); + htemp__4->SetBinContent(7650,1); + htemp__4->SetBinContent(7707,1); + htemp__4->SetBinContent(8168,1); + htemp__4->SetBinContent(8820,1); + htemp__4->SetBinContent(12218,1); + htemp__4->SetEntries(8873); + htemp__4->SetDirectory(0); + htemp__4->SetStats(0); + htemp__4->SetContour(20); + htemp__4->SetContourLevel(0,0); + htemp__4->SetContourLevel(1,1.1); + htemp__4->SetContourLevel(2,2.2); + htemp__4->SetContourLevel(3,3.3); + htemp__4->SetContourLevel(4,4.4); + htemp__4->SetContourLevel(5,5.5); + htemp__4->SetContourLevel(6,6.6); + htemp__4->SetContourLevel(7,7.7); + htemp__4->SetContourLevel(8,8.8); + htemp__4->SetContourLevel(9,9.9); + htemp__4->SetContourLevel(10,11); + htemp__4->SetContourLevel(11,12.1); + htemp__4->SetContourLevel(12,13.2); + htemp__4->SetContourLevel(13,14.3); + htemp__4->SetContourLevel(14,15.4); + htemp__4->SetContourLevel(15,16.5); + htemp__4->SetContourLevel(16,17.6); + htemp__4->SetContourLevel(17,18.7); + htemp__4->SetContourLevel(18,19.8); + htemp__4->SetContourLevel(19,20.9); + + TPaletteAxis *palette = new TPaletteAxis(18121.51,0,19215.09,560,htemp); +palette->SetLabelColor(1); +palette->SetLabelFont(22); +palette->SetLabelOffset(0.005); +palette->SetLabelSize(0.05); +palette->SetTitleOffset(1); +palette->SetTitleSize(0.06); + palette->SetFillColor(100); + palette->SetFillStyle(1001); + palette->SetLineWidth(2); + htemp__4->GetListOfFunctions()->Add(palette,"br"); + htemp__4->SetLineWidth(2); + htemp__4->SetMarkerStyle(21); + htemp__4->GetXaxis()->SetTitle("time / #mus"); + htemp__4->GetXaxis()->SetRange(1,160); + htemp__4->GetXaxis()->SetNdivisions(505); + htemp__4->GetXaxis()->SetLabelFont(22); + htemp__4->GetXaxis()->SetLabelOffset(0.015); + htemp__4->GetXaxis()->SetLabelSize(0.05); + htemp__4->GetXaxis()->SetTitleSize(0.06); + htemp__4->GetXaxis()->SetTitleFont(22); + htemp__4->GetYaxis()->SetTitle("A_{BPM} / a.u."); + htemp__4->GetYaxis()->SetRange(1,80); + htemp__4->GetYaxis()->SetLabelFont(22); + htemp__4->GetYaxis()->SetLabelSize(0.05); + htemp__4->GetYaxis()->SetTitleSize(0.06); + htemp__4->GetYaxis()->SetTitleFont(22); + htemp__4->GetZaxis()->SetLabelFont(22); + htemp__4->GetZaxis()->SetLabelSize(0.05); + htemp__4->GetZaxis()->SetTitleSize(0.06); + htemp__4->GetZaxis()->SetTitleFont(22); + htemp__4->Draw("coloz"); + c1->Modified(); + c1->cd(); + c1->SetSelected(c1); +} diff --git a/Scripts_20161201/Scripts_20161201/figs/amplitudeBPM_vs_time_coloz.pdf b/Scripts_20161201/Scripts_20161201/figs/amplitudeBPM_vs_time_coloz.pdf new file mode 100644 index 0000000..0448d5a Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/figs/amplitudeBPM_vs_time_coloz.pdf differ diff --git a/Scripts_20161201/Scripts_20161201/figs/amplitudeIC_vs_time.C b/Scripts_20161201/Scripts_20161201/figs/amplitudeIC_vs_time.C new file mode 100644 index 0000000..58b07ca --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/figs/amplitudeIC_vs_time.C @@ -0,0 +1,314 @@ +{ +//=========Macro generated from canvas: c1/c1 +//========= (Mon Nov 13 13:29:14 2017) by ROOT version5.34/32 + TCanvas *c1 = new TCanvas("c1", "c1",358,132,700,502); + gStyle->SetOptStat(0); + gStyle->SetOptTitle(0); + c1->Range(-17.66667,-2.531643,115.6667,263.2911); + c1->SetFillColor(0); + c1->SetBorderMode(0); + c1->SetBorderSize(2); + c1->SetTickx(1); + c1->SetTicky(1); + c1->SetLeftMargin(0.14); + c1->SetRightMargin(0.08); + c1->SetTopMargin(0.05); + c1->SetBottomMargin(0.16); + c1->SetFrameLineWidth(2); + c1->SetFrameBorderMode(0); + c1->SetFrameLineWidth(2); + c1->SetFrameBorderMode(0); + + TH2F *htemp__1 = new TH2F("htemp__1","ic1_1:(eventid_1-45000) {beamon==1&&eventid_1>45000&&eventid_1<45100}",40,1,105,40,40,250); + htemp__1->SetDirectory(0); + htemp__1->SetStats(0); + htemp__1->SetLineWidth(2); + htemp__1->SetMarkerStyle(21); + htemp__1->GetXaxis()->SetTitle("time / 100 #musec"); + htemp__1->GetXaxis()->SetRange(1,40); + htemp__1->GetXaxis()->SetNdivisions(505); + htemp__1->GetXaxis()->SetLabelFont(22); + htemp__1->GetXaxis()->SetLabelOffset(0.015); + htemp__1->GetXaxis()->SetLabelSize(0.05); + htemp__1->GetXaxis()->SetTitleSize(0.06); + htemp__1->GetXaxis()->SetTitleFont(22); + htemp__1->GetYaxis()->SetTitle("A_{IC} / nA"); + htemp__1->GetYaxis()->SetRange(1,40); + htemp__1->GetYaxis()->SetLabelFont(22); + htemp__1->GetYaxis()->SetLabelSize(0.05); + htemp__1->GetYaxis()->SetTitleSize(0.06); + htemp__1->GetYaxis()->SetTitleFont(22); + htemp__1->GetZaxis()->SetLabelFont(22); + htemp__1->GetZaxis()->SetLabelSize(0.05); + htemp__1->GetZaxis()->SetTitleSize(0.06); + htemp__1->GetZaxis()->SetTitleFont(22); + htemp__1->Draw(""); + + TGraph *graph = new TGraph(99); + graph->SetName("Graph0"); + graph->SetTitle("Graph"); + graph->SetLineWidth(2); + graph->SetMarkerStyle(21); + graph->SetMarkerSize(0.7); + graph->SetPoint(0,1,94.48558556); + graph->SetPoint(1,2,110.9947334); + graph->SetPoint(2,3,142.2376954); + graph->SetPoint(3,4,152.773282); + graph->SetPoint(4,5,109.5359039); + graph->SetPoint(5,6,122.039637); + graph->SetPoint(6,7,94.04175216); + graph->SetPoint(7,8,113.7850631); + graph->SetPoint(8,9,170.8685886); + graph->SetPoint(9,10,133.724825); + graph->SetPoint(10,11,102.6128302); + graph->SetPoint(11,12,64.95974958); + graph->SetPoint(12,13,117.2156772); + graph->SetPoint(13,14,114.2980182); + graph->SetPoint(14,15,127.1255314); + graph->SetPoint(15,16,147.62918); + graph->SetPoint(16,17,54.79887477); + graph->SetPoint(17,18,102.9293344); + graph->SetPoint(18,19,86.79853636); + graph->SetPoint(19,20,97.15222404); + graph->SetPoint(20,21,209.416612); + graph->SetPoint(21,22,164.7131284); + graph->SetPoint(22,23,159.6345101); + graph->SetPoint(23,24,83.05505617); + graph->SetPoint(24,25,65.40358299); + graph->SetPoint(25,26,128.9008651); + graph->SetPoint(26,27,115.4403435); + graph->SetPoint(27,28,134.6052159); + graph->SetPoint(28,29,175.7580321); + graph->SetPoint(29,30,94.74024409); + graph->SetPoint(30,31,84.19738151); + graph->SetPoint(31,32,142.0412445); + graph->SetPoint(32,33,116.9573807); + graph->SetPoint(33,34,129.1482477); + graph->SetPoint(34,35,99.18585418); + graph->SetPoint(35,36,126.6125764); + graph->SetPoint(36,37,138.6397343); + graph->SetPoint(37,38,74.10199033); + graph->SetPoint(38,39,120.0751285); + graph->SetPoint(39,40,118.4271241); + graph->SetPoint(40,41,127.1837391); + graph->SetPoint(41,42,169.2824298); + graph->SetPoint(42,43,162.9377948); + graph->SetPoint(43,44,100.073521); + graph->SetPoint(44,45,104.8319973); + graph->SetPoint(45,46,124.6444299); + graph->SetPoint(46,47,87.56251191); + graph->SetPoint(47,48,157.1534085); + graph->SetPoint(48,49,138.6142685); + graph->SetPoint(49,50,156.1347745); + graph->SetPoint(50,51,152.4531399); + graph->SetPoint(51,52,132.4515324); + graph->SetPoint(52,53,93.84893929); + graph->SetPoint(53,54,106.6146069); + graph->SetPoint(54,55,177.7225406); + graph->SetPoint(55,56,118.612661); + graph->SetPoint(56,57,99.88434614); + graph->SetPoint(57,58,98.4837243); + graph->SetPoint(58,59,111.0565791); + graph->SetPoint(59,60,158.9942258); + graph->SetPoint(60,61,106.1671355); + graph->SetPoint(61,62,114.9273885); + graph->SetPoint(62,63,99.88070817); + graph->SetPoint(63,64,117.4666977); + graph->SetPoint(64,65,133.2737156); + graph->SetPoint(65,66,153.9156074); + graph->SetPoint(66,67,109.9797373); + graph->SetPoint(67,68,141.0226105); + graph->SetPoint(68,69,121.4648364); + graph->SetPoint(69,70,86.4820322); + graph->SetPoint(70,71,132.517016); + graph->SetPoint(71,72,125.9104466); + graph->SetPoint(72,73,90.03997548); + graph->SetPoint(73,74,95.3732524); + graph->SetPoint(74,75,135.1800166); + graph->SetPoint(75,76,157.2843758); + graph->SetPoint(76,77,91.05497156); + graph->SetPoint(77,78,106.8656275); + graph->SetPoint(78,79,170.301064); + graph->SetPoint(79,80,124.5171007); + graph->SetPoint(80,81,96.96304914); + graph->SetPoint(81,82,137.7848093); + graph->SetPoint(82,83,237.5454641); + graph->SetPoint(83,84,153.3480826); + graph->SetPoint(84,85,81.6580723); + graph->SetPoint(85,86,84.13189789); + graph->SetPoint(86,87,92.89578883); + graph->SetPoint(87,88,111.3767212); + graph->SetPoint(88,89,112.0133675); + graph->SetPoint(89,90,70.03473001); + graph->SetPoint(90,91,147.9493222); + graph->SetPoint(91,92,92.89578884); + graph->SetPoint(92,93,86.22737369); + graph->SetPoint(93,94,81.27608453); + graph->SetPoint(94,95,197.6732164); + graph->SetPoint(95,96,163.8254617); + graph->SetPoint(96,97,130.290573); + graph->SetPoint(97,98,121.6649253); + graph->SetPoint(98,99,87.62435755); + + TH1F *Graph_Graph1 = new TH1F("Graph_Graph1","Graph",100,0,108.8); + Graph_Graph1->SetMinimum(36.52422); + Graph_Graph1->SetMaximum(255.8201); + Graph_Graph1->SetDirectory(0); + Graph_Graph1->SetStats(0); + Graph_Graph1->SetLineWidth(2); + Graph_Graph1->SetMarkerStyle(21); + Graph_Graph1->GetXaxis()->SetNdivisions(505); + Graph_Graph1->GetXaxis()->SetLabelFont(22); + Graph_Graph1->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1->GetXaxis()->SetTitleFont(22); + Graph_Graph1->GetYaxis()->SetLabelFont(22); + Graph_Graph1->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1->GetYaxis()->SetTitleFont(22); + Graph_Graph1->GetZaxis()->SetLabelFont(22); + Graph_Graph1->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1->GetZaxis()->SetTitleFont(22); + graph->SetHistogram(Graph_Graph1); + + graph->Draw("PL"); + + graph = new TGraph(99); + graph->SetName("Graph1"); + graph->SetTitle("Graph"); + graph->SetLineColor(2); + graph->SetLineStyle(2); + graph->SetLineWidth(2); + graph->SetMarkerColor(2); + graph->SetMarkerStyle(21); + graph->SetMarkerSize(0.7); + graph->SetPoint(0,1,90.00723367); + graph->SetPoint(1,2,102.0234777); + graph->SetPoint(2,3,163.0469342); + graph->SetPoint(3,4,148.6114343); + graph->SetPoint(4,5,121.7267709); + graph->SetPoint(5,6,126.4925231); + graph->SetPoint(6,7,93.24867278); + graph->SetPoint(7,8,110.030669); + graph->SetPoint(8,9,157.2625479); + graph->SetPoint(9,10,137.4864951); + graph->SetPoint(10,11,97.7634045); + graph->SetPoint(11,12,68.0120138); + graph->SetPoint(12,13,107.3603926); + graph->SetPoint(13,14,119.3075149); + graph->SetPoint(14,15,124.5207386); + graph->SetPoint(15,16,160.6313162); + graph->SetPoint(16,17,52.82345228); + graph->SetPoint(17,18,112.5736163); + graph->SetPoint(18,19,97.06491256); + graph->SetPoint(19,20,114.8582669); + graph->SetPoint(20,21,200.7363946); + graph->SetPoint(21,22,172.4547474); + graph->SetPoint(22,23,162.7195161); + graph->SetPoint(23,24,75.51716408); + graph->SetPoint(24,25,60.89248927); + graph->SetPoint(25,26,117.2156772); + graph->SetPoint(26,27,117.0847099); + graph->SetPoint(27,28,142.2595233); + graph->SetPoint(28,29,174.1718734); + graph->SetPoint(29,30,78.43482308); + graph->SetPoint(30,31,79.96277418); + graph->SetPoint(31,32,131.0691005); + graph->SetPoint(32,33,117.4048521); + graph->SetPoint(33,34,122.4252628); + graph->SetPoint(34,35,98.84024623); + graph->SetPoint(35,36,132.1459422); + graph->SetPoint(36,37,149.6628101); + graph->SetPoint(37,38,71.12976163); + graph->SetPoint(38,39,106.0288923); + graph->SetPoint(39,40,128.908141); + graph->SetPoint(40,41,127.1910151); + graph->SetPoint(41,42,169.3988452); + graph->SetPoint(42,43,176.7693903); + graph->SetPoint(43,44,106.1525836); + graph->SetPoint(44,45,99.73518899); + graph->SetPoint(45,46,131.2582753); + graph->SetPoint(46,47,86.82764019); + graph->SetPoint(47,48,168.0018614); + graph->SetPoint(48,49,141.1754056); + graph->SetPoint(49,50,158.1429387); + graph->SetPoint(50,51,143.845682); + graph->SetPoint(51,52,128.0786819); + graph->SetPoint(52,53,92.36100597); + graph->SetPoint(53,54,102.0198397); + graph->SetPoint(54,55,190.4409146); + graph->SetPoint(55,56,118.0342224); + graph->SetPoint(56,57,95.2204573); + graph->SetPoint(57,58,104.6901161); + graph->SetPoint(58,59,106.7237463); + graph->SetPoint(59,60,157.9610398); + graph->SetPoint(60,61,98.07990864); + graph->SetPoint(61,62,110.2234818); + graph->SetPoint(62,63,91.53154678); + graph->SetPoint(63,64,120.7081368); + graph->SetPoint(64,65,136.1549948); + graph->SetPoint(65,66,165.651727); + graph->SetPoint(66,67,108.8847057); + graph->SetPoint(67,68,148.8660928); + graph->SetPoint(68,69,135.0708772); + graph->SetPoint(69,70,86.12914826); + graph->SetPoint(70,71,127.3801899); + graph->SetPoint(71,72,119.3693607); + graph->SetPoint(72,73,86.38380678); + graph->SetPoint(73,74,88.29010767); + graph->SetPoint(74,75,138.5706128); + graph->SetPoint(75,76,142.2595233); + graph->SetPoint(76,77,91.66251403); + graph->SetPoint(77,78,100.4336809); + graph->SetPoint(78,79,165.7172106); + graph->SetPoint(79,80,135.9003363); + graph->SetPoint(80,81,88.54476619); + graph->SetPoint(81,82,135.958544); + graph->SetPoint(82,83,229.5928426); + graph->SetPoint(83,84,148.2985681); + graph->SetPoint(84,85,79.64627003); + graph->SetPoint(85,86,88.10093278); + graph->SetPoint(86,87,95.4096322); + graph->SetPoint(87,88,112.3844413); + graph->SetPoint(88,89,117.2156772); + graph->SetPoint(89,90,74.94236343); + graph->SetPoint(90,91,189.2331056); + graph->SetPoint(91,92,102.3981895); + graph->SetPoint(92,93,92.10634744); + graph->SetPoint(93,94,90.51655068); + graph->SetPoint(94,95,198.5099516); + graph->SetPoint(95,96,163.8036338); + graph->SetPoint(96,97,129.7958079); + graph->SetPoint(97,98,117.7832018); + graph->SetPoint(98,99,90.13456293); + + TH1F *Graph_Graph2 = new TH1F("Graph_Graph2","Graph",100,0,108.8); + Graph_Graph2->SetMinimum(35.14651); + Graph_Graph2->SetMaximum(247.2698); + Graph_Graph2->SetDirectory(0); + Graph_Graph2->SetStats(0); + Graph_Graph2->SetLineWidth(2); + Graph_Graph2->SetMarkerStyle(21); + Graph_Graph2->GetXaxis()->SetNdivisions(505); + Graph_Graph2->GetXaxis()->SetLabelFont(22); + Graph_Graph2->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph2->GetXaxis()->SetLabelSize(0.05); + Graph_Graph2->GetXaxis()->SetTitleSize(0.06); + Graph_Graph2->GetXaxis()->SetTitleFont(22); + Graph_Graph2->GetYaxis()->SetLabelFont(22); + Graph_Graph2->GetYaxis()->SetLabelSize(0.05); + Graph_Graph2->GetYaxis()->SetTitleSize(0.06); + Graph_Graph2->GetYaxis()->SetTitleFont(22); + Graph_Graph2->GetZaxis()->SetLabelFont(22); + Graph_Graph2->GetZaxis()->SetLabelSize(0.05); + Graph_Graph2->GetZaxis()->SetTitleSize(0.06); + Graph_Graph2->GetZaxis()->SetTitleFont(22); + graph->SetHistogram(Graph_Graph2); + + graph->Draw("PL"); + c1->Modified(); + c1->cd(); + c1->SetSelected(c1); +} diff --git a/Scripts_20161201/Scripts_20161201/figs/amplitudeIC_vs_time.pdf b/Scripts_20161201/Scripts_20161201/figs/amplitudeIC_vs_time.pdf new file mode 100644 index 0000000..7165558 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/figs/amplitudeIC_vs_time.pdf differ diff --git a/Scripts_20161201/Scripts_20161201/figs/amplitudeIC_vs_time_coloz.pdf b/Scripts_20161201/Scripts_20161201/figs/amplitudeIC_vs_time_coloz.pdf new file mode 100644 index 0000000..4d9fd04 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/figs/amplitudeIC_vs_time_coloz.pdf differ diff --git a/Scripts_20161201/Scripts_20161201/figs/amplitude_vs_128ch_Run1.pdf b/Scripts_20161201/Scripts_20161201/figs/amplitude_vs_128ch_Run1.pdf new file mode 100644 index 0000000..a2674c7 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/figs/amplitude_vs_128ch_Run1.pdf differ diff --git a/Scripts_20161201/Scripts_20161201/figs/amplitude_vs_64ch_Run1.pdf b/Scripts_20161201/Scripts_20161201/figs/amplitude_vs_64ch_Run1.pdf new file mode 100644 index 0000000..4c29880 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/figs/amplitude_vs_64ch_Run1.pdf differ diff --git a/Scripts_20161201/Scripts_20161201/figs/amplitude_vs_64ch_Run11.pdf b/Scripts_20161201/Scripts_20161201/figs/amplitude_vs_64ch_Run11.pdf new file mode 100644 index 0000000..e8bb570 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/figs/amplitude_vs_64ch_Run11.pdf differ diff --git a/Scripts_20161201/Scripts_20161201/figs/amplitude_vs_ch_Run1.pdf b/Scripts_20161201/Scripts_20161201/figs/amplitude_vs_ch_Run1.pdf new file mode 100644 index 0000000..80c34c1 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/figs/amplitude_vs_ch_Run1.pdf differ diff --git a/Scripts_20161201/Scripts_20161201/figs/inlist_c_bpm_diff.C b/Scripts_20161201/Scripts_20161201/figs/inlist_c_bpm_diff.C new file mode 100644 index 0000000..33c04cf --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/figs/inlist_c_bpm_diff.C @@ -0,0 +1,367 @@ +void inlist_c_bpm_diff() +{ +//=========Macro generated from canvas: c1_n2/c1_n2 +//========= (Tue Apr 3 18:03:04 2018) by ROOT version6.06/02 + TCanvas *c1_n2 = new TCanvas("c1_n2", "c1_n2",10,37,700,500); + gStyle->SetOptStat(0); + gStyle->SetOptTitle(0); + c1_n2->Range(-10.20742,-0.02025316,59.15241,0.1063291); + c1_n2->SetFillColor(0); + c1_n2->SetBorderMode(0); + c1_n2->SetBorderSize(2); + c1_n2->SetTickx(1); + c1_n2->SetTicky(1); + c1_n2->SetLeftMargin(0.14); + c1_n2->SetRightMargin(0.08); + c1_n2->SetTopMargin(0.05); + c1_n2->SetBottomMargin(0.16); + c1_n2->SetFrameLineWidth(2); + c1_n2->SetFrameBorderMode(0); + c1_n2->SetFrameLineWidth(2); + c1_n2->SetFrameBorderMode(0); + + TMultiGraph *multigraph = new TMultiGraph(); + multigraph->SetName(""); + multigraph->SetTitle(" "); + + Double_t Graph_fx1005[9] = { + 2.03678, + 3.05742, + 5.08728, + 8.1511, + 10.1567, + 15.2559, + 20.3417, + 30.4781, + 51.1445}; + Double_t Graph_fy1005[9] = { + 0.0763852, + 0.051699, + 0.0325906, + 0.0204836, + 0.0174016, + 0.012506, + 0.0100836, + 0.00756613, + 0.00526436}; + Double_t Graph_fex1005[9] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1005[9] = { + 0.000682172, + 0.000466563, + 0.000308801, + 0.000174609, + 0.000158478, + 0.000112411, + 8.94662e-05, + 6.49011e-05, + 4.42397e-05}; + TGraphErrors *gre = new TGraphErrors(9,Graph_fx1005,Graph_fy1005,Graph_fex1005,Graph_fey1005); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineStyle(3); + gre->SetLineWidth(2); + gre->SetMarkerStyle(22); + + TH1F *Graph_Graph1005 = new TH1F("Graph_Graph1005","Graph",100,0,56.05527); + Graph_Graph1005->SetMinimum(0); + Graph_Graph1005->SetMaximum(0.0842521); + Graph_Graph1005->SetDirectory(0); + Graph_Graph1005->SetStats(0); + Graph_Graph1005->SetLineWidth(2); + Graph_Graph1005->SetMarkerStyle(21); + Graph_Graph1005->GetXaxis()->SetNdivisions(505); + Graph_Graph1005->GetXaxis()->SetLabelFont(22); + Graph_Graph1005->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1005->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1005->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1005->GetXaxis()->SetTitleFont(22); + Graph_Graph1005->GetYaxis()->SetLabelFont(22); + Graph_Graph1005->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1005->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1005->GetYaxis()->SetTitleFont(22); + Graph_Graph1005->GetZaxis()->SetLabelFont(22); + Graph_Graph1005->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1005->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1005->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1005); + + multigraph->Add(gre,"pc"); + + Double_t Graph_fx1006[8] = { + 1.96208, + 2.95886, + 4.95905, + 9.87093, + 14.7862, + 19.6816, + 29.5024, + 49.7928}; + Double_t Graph_fy1006[8] = { + 0.0856364, + 0.0633895, + 0.0398264, + 0.0210139, + 0.0149212, + 0.0118034, + 0.00858182, + 0.00617692}; + Double_t Graph_fex1006[8] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1006[8] = { + 0.000792058, + 0.000575954, + 0.000373946, + 0.000187325, + 0.000129116, + 0.000103781, + 7.43499e-05, + 5.28571e-05}; + gre = new TGraphErrors(8,Graph_fx1006,Graph_fy1006,Graph_fex1006,Graph_fey1006); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineStyle(3); + gre->SetLineWidth(2); + gre->SetMarkerStyle(26); + + TH1F *Graph_Graph1006 = new TH1F("Graph_Graph1006","Graph",100,0,54.57587); + Graph_Graph1006->SetMinimum(0); + Graph_Graph1006->SetMaximum(0.0944589); + Graph_Graph1006->SetDirectory(0); + Graph_Graph1006->SetStats(0); + Graph_Graph1006->SetLineWidth(2); + Graph_Graph1006->SetMarkerStyle(21); + Graph_Graph1006->GetXaxis()->SetNdivisions(505); + Graph_Graph1006->GetXaxis()->SetLabelFont(22); + Graph_Graph1006->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1006->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1006->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1006->GetXaxis()->SetTitleFont(22); + Graph_Graph1006->GetYaxis()->SetLabelFont(22); + Graph_Graph1006->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1006->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1006->GetYaxis()->SetTitleFont(22); + Graph_Graph1006->GetZaxis()->SetLabelFont(22); + Graph_Graph1006->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1006->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1006->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1006); + + multigraph->Add(gre,"pc"); + + Double_t Graph_fx1007[9] = { + 2.03678, + 3.05742, + 5.08728, + 8.1511, + 10.1567, + 15.2559, + 20.3417, + 30.4781, + 51.1445}; + Double_t Graph_fy1007[9] = { + 0.0310766, + 0.046645, + 0.0361789, + 0.0334214, + 0.0288862, + 0.0323892, + 0.0323006, + 0.0286232, + 0.0344682}; + Double_t Graph_fex1007[9] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1007[9] = { + 0.000214102, + 0.000321285, + 0.000249444, + 0.000230093, + 0.00019922, + 0.000223411, + 0.0002228, + 0.000197425, + 0.00023712}; + gre = new TGraphErrors(9,Graph_fx1007,Graph_fy1007,Graph_fex1007,Graph_fey1007); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineWidth(2); + gre->SetMarkerStyle(29); + + TH1F *Graph_Graph1007 = new TH1F("Graph_Graph1007","Graph",100,0,56.05527); + Graph_Graph1007->SetMinimum(0.02657172); + Graph_Graph1007->SetMaximum(0.04882034); + Graph_Graph1007->SetDirectory(0); + Graph_Graph1007->SetStats(0); + Graph_Graph1007->SetLineWidth(2); + Graph_Graph1007->SetMarkerStyle(21); + Graph_Graph1007->GetXaxis()->SetNdivisions(505); + Graph_Graph1007->GetXaxis()->SetLabelFont(22); + Graph_Graph1007->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1007->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1007->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1007->GetXaxis()->SetTitleFont(22); + Graph_Graph1007->GetYaxis()->SetLabelFont(22); + Graph_Graph1007->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1007->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1007->GetYaxis()->SetTitleFont(22); + Graph_Graph1007->GetZaxis()->SetLabelFont(22); + Graph_Graph1007->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1007->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1007->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1007); + + multigraph->Add(gre,"p"); + + Double_t Graph_fx1008[8] = { + 1.96208, + 2.95886, + 4.95905, + 9.87093, + 14.7862, + 19.6816, + 29.5024, + 49.7928}; + Double_t Graph_fy1008[8] = { + 0.0479218, + 0.0430306, + 0.0415441, + 0.0382646, + 0.0432227, + 0.0439905, + 0.0414173, + 0.0522289}; + Double_t Graph_fex1008[8] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1008[8] = { + 0.000331895, + 0.000297977, + 0.000287078, + 0.00026424, + 0.000298978, + 0.000304056, + 0.000286476, + 0.000359202}; + gre = new TGraphErrors(8,Graph_fx1008,Graph_fy1008,Graph_fex1008,Graph_fey1008); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineWidth(2); + gre->SetMarkerStyle(30); + + TH1F *Graph_Graph1008 = new TH1F("Graph_Graph1008","Graph",100,0,54.57587); + Graph_Graph1008->SetMinimum(0.03654159); + Graph_Graph1008->SetMaximum(0.05404688); + Graph_Graph1008->SetDirectory(0); + Graph_Graph1008->SetStats(0); + Graph_Graph1008->SetLineWidth(2); + Graph_Graph1008->SetMarkerStyle(21); + Graph_Graph1008->GetXaxis()->SetNdivisions(505); + Graph_Graph1008->GetXaxis()->SetLabelFont(22); + Graph_Graph1008->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1008->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1008->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1008->GetXaxis()->SetTitleFont(22); + Graph_Graph1008->GetYaxis()->SetLabelFont(22); + Graph_Graph1008->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1008->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1008->GetYaxis()->SetTitleFont(22); + Graph_Graph1008->GetZaxis()->SetLabelFont(22); + Graph_Graph1008->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1008->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1008->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1008); + + multigraph->Add(gre,"p"); + multigraph->Draw("a"); + multigraph->GetXaxis()->SetTitle("Intensity / 10^{6}s^{-1}"); + multigraph->GetXaxis()->SetNdivisions(505); + multigraph->GetXaxis()->SetLabelFont(22); + multigraph->GetXaxis()->SetLabelOffset(0.015); + multigraph->GetXaxis()->SetLabelSize(0.05); + multigraph->GetXaxis()->SetTitleSize(0.06); + multigraph->GetXaxis()->SetTitleFont(22); + multigraph->GetYaxis()->SetTitle("#sqrt{2}#upoint #sigma(A_{1}-A_{2}) / (A_{1}+A_{2})"); + multigraph->GetYaxis()->SetLabelFont(22); + multigraph->GetYaxis()->SetLabelSize(0.05); + multigraph->GetYaxis()->SetTitleSize(0.06); + multigraph->GetYaxis()->SetTitleFont(22); + + TLegend *leg = new TLegend(0.6,0.6,0.9,0.9,NULL,"brNDC"); + leg->SetBorderSize(0); + leg->SetTextFont(22); + leg->SetTextSize(0.045); + leg->SetLineColor(1); + leg->SetLineStyle(1); + leg->SetLineWidth(2); + leg->SetFillColor(0); + leg->SetFillStyle(0); + TLegendEntry *entry=leg->AddEntry("Graph","BPM (430 MeV/u)","pl"); + entry->SetLineColor(1); + entry->SetLineStyle(3); + entry->SetLineWidth(2); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(22); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("Graph","BPM (130 MeV/u)","pl"); + entry->SetLineColor(1); + entry->SetLineStyle(3); + entry->SetLineWidth(2); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(26); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("Graph","IC (430 MeV/u)","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(29); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("Graph","IC (130 MeV/u)","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(30); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + leg->Draw(); + c1_n2->Modified(); + c1_n2->cd(); + c1_n2->SetSelected(c1_n2); +} diff --git a/Scripts_20161201/Scripts_20161201/figs/inlist_c_bpm_diff.pdf b/Scripts_20161201/Scripts_20161201/figs/inlist_c_bpm_diff.pdf new file mode 100644 index 0000000..6aaa096 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/figs/inlist_c_bpm_diff.pdf differ diff --git a/Scripts_20161201/Scripts_20161201/figs/inlist_c_bpm_diff.png b/Scripts_20161201/Scripts_20161201/figs/inlist_c_bpm_diff.png new file mode 100644 index 0000000..456d5a4 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/figs/inlist_c_bpm_diff.png differ diff --git a/Scripts_20161201/Scripts_20161201/figs/inlist_c_focusfit_absdiff.pdf b/Scripts_20161201/Scripts_20161201/figs/inlist_c_focusfit_absdiff.pdf new file mode 100644 index 0000000..84d52eb Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/figs/inlist_c_focusfit_absdiff.pdf differ diff --git a/Scripts_20161201/Scripts_20161201/figs/inlist_c_focusfit_absdiff.png b/Scripts_20161201/Scripts_20161201/figs/inlist_c_focusfit_absdiff.png new file mode 100644 index 0000000..ef16285 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/figs/inlist_c_focusfit_absdiff.png differ diff --git a/Scripts_20161201/Scripts_20161201/figs/inlist_c_focusfit_absdiff2.pdf b/Scripts_20161201/Scripts_20161201/figs/inlist_c_focusfit_absdiff2.pdf new file mode 100644 index 0000000..77047d4 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/figs/inlist_c_focusfit_absdiff2.pdf differ diff --git a/Scripts_20161201/Scripts_20161201/figs/inlist_c_focusfit_diff.C b/Scripts_20161201/Scripts_20161201/figs/inlist_c_focusfit_diff.C new file mode 100644 index 0000000..e63b0d1 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/figs/inlist_c_focusfit_diff.C @@ -0,0 +1,211 @@ +void inlist_c_focusfit_diff() +{ +//=========Macro generated from canvas: c1_n6/c1_n6 +//========= (Tue Apr 3 18:03:05 2018) by ROOT version6.06/02 + TCanvas *c1_n6 = new TCanvas("c1_n6", "c1_n6",10,37,700,500); + gStyle->SetOptStat(0); + gStyle->SetOptTitle(0); + c1_n6->Range(-10.20742,-0.2116411,59.15241,1.111116); + c1_n6->SetFillColor(0); + c1_n6->SetBorderMode(0); + c1_n6->SetBorderSize(2); + c1_n6->SetTickx(1); + c1_n6->SetTicky(1); + c1_n6->SetLeftMargin(0.14); + c1_n6->SetRightMargin(0.08); + c1_n6->SetTopMargin(0.05); + c1_n6->SetBottomMargin(0.16); + c1_n6->SetFrameLineWidth(2); + c1_n6->SetFrameBorderMode(0); + c1_n6->SetFrameLineWidth(2); + c1_n6->SetFrameBorderMode(0); + + TMultiGraph *multigraph = new TMultiGraph(); + multigraph->SetName(""); + multigraph->SetTitle(" "); + + Double_t Graph_fx1015[9] = { + 2.03678, + 3.05742, + 5.08728, + 8.1511, + 10.1567, + 15.2559, + 20.3417, + 30.4781, + 51.1445}; + Double_t Graph_fy1015[9] = { + 0.409316, + 0.278335, + 0.174664, + 0.112908, + 0.093361, + 0.0691993, + 0.054835, + 0.040443, + 0.0293024}; + Double_t Graph_fex1015[9] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1015[9] = { + 0.00390989, + 0.00248756, + 0.00163948, + 0.000979277, + 0.000873629, + 0.000617064, + 0.000475703, + 0.000368397, + 0.000240678}; + TGraphErrors *gre = new TGraphErrors(9,Graph_fx1015,Graph_fy1015,Graph_fex1015,Graph_fey1015); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineStyle(3); + gre->SetLineWidth(2); + gre->SetMarkerStyle(22); + + TH1F *Graph_Graph1015 = new TH1F("Graph_Graph1015","Graph",100,0,56.05527); + Graph_Graph1015->SetMinimum(0); + Graph_Graph1015->SetMaximum(0.4516423); + Graph_Graph1015->SetDirectory(0); + Graph_Graph1015->SetStats(0); + Graph_Graph1015->SetLineWidth(2); + Graph_Graph1015->SetMarkerStyle(21); + Graph_Graph1015->GetXaxis()->SetNdivisions(505); + Graph_Graph1015->GetXaxis()->SetLabelFont(22); + Graph_Graph1015->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1015->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1015->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1015->GetXaxis()->SetTitleFont(22); + Graph_Graph1015->GetYaxis()->SetLabelFont(22); + Graph_Graph1015->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1015->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1015->GetYaxis()->SetTitleFont(22); + Graph_Graph1015->GetZaxis()->SetLabelFont(22); + Graph_Graph1015->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1015->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1015->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1015); + + multigraph->Add(gre,"pc"); + + Double_t Graph_fx1016[8] = { + 1.96208, + 2.95886, + 4.95905, + 9.87093, + 14.7862, + 19.6816, + 29.5024, + 49.7928}; + Double_t Graph_fy1016[8] = { + 0.987384, + 0.734436, + 0.474685, + 0.255118, + 0.179449, + 0.144177, + 0.108246, + 0.0767515}; + Double_t Graph_fex1016[8] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1016[8] = { + 0.0092169, + 0.00675245, + 0.00444905, + 0.00224608, + 0.00156548, + 0.0011948, + 0.000911165, + 0.000680893}; + gre = new TGraphErrors(8,Graph_fx1016,Graph_fy1016,Graph_fex1016,Graph_fey1016); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineStyle(3); + gre->SetLineWidth(2); + gre->SetMarkerStyle(26); + + TH1F *Graph_Graph1016 = new TH1F("Graph_Graph1016","Graph",100,0,54.57587); + Graph_Graph1016->SetMinimum(0); + Graph_Graph1016->SetMaximum(1.088654); + Graph_Graph1016->SetDirectory(0); + Graph_Graph1016->SetStats(0); + Graph_Graph1016->SetLineWidth(2); + Graph_Graph1016->SetMarkerStyle(21); + Graph_Graph1016->GetXaxis()->SetNdivisions(505); + Graph_Graph1016->GetXaxis()->SetLabelFont(22); + Graph_Graph1016->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1016->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1016->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1016->GetXaxis()->SetTitleFont(22); + Graph_Graph1016->GetYaxis()->SetLabelFont(22); + Graph_Graph1016->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1016->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1016->GetYaxis()->SetTitleFont(22); + Graph_Graph1016->GetZaxis()->SetLabelFont(22); + Graph_Graph1016->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1016->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1016->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1016); + + multigraph->Add(gre,"pc"); + multigraph->Draw("a"); + multigraph->GetXaxis()->SetTitle("Intensity / 10^{6}s^{-1}"); + multigraph->GetXaxis()->SetNdivisions(505); + multigraph->GetXaxis()->SetLabelFont(22); + multigraph->GetXaxis()->SetLabelOffset(0.015); + multigraph->GetXaxis()->SetLabelSize(0.05); + multigraph->GetXaxis()->SetTitleSize(0.06); + multigraph->GetXaxis()->SetTitleFont(22); + multigraph->GetYaxis()->SetTitle("#sigma(F_{1}-F_{2})/#sqrt{2} / mm"); + multigraph->GetYaxis()->SetLabelFont(22); + multigraph->GetYaxis()->SetLabelSize(0.05); + multigraph->GetYaxis()->SetTitleSize(0.06); + multigraph->GetYaxis()->SetTitleFont(22); + + TLegend *leg = new TLegend(0.6,0.6,0.9,0.9,NULL,"brNDC"); + leg->SetBorderSize(0); + leg->SetTextFont(22); + leg->SetTextSize(0.045); + leg->SetLineColor(1); + leg->SetLineStyle(1); + leg->SetLineWidth(2); + leg->SetFillColor(0); + leg->SetFillStyle(0); + TLegendEntry *entry=leg->AddEntry("Graph","BPM (430 MeV/u)","pl"); + entry->SetLineColor(1); + entry->SetLineStyle(3); + entry->SetLineWidth(2); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(22); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("Graph","BPM (130 MeV/u)","pl"); + entry->SetLineColor(1); + entry->SetLineStyle(3); + entry->SetLineWidth(2); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(26); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + leg->Draw(); + c1_n6->Modified(); + c1_n6->cd(); + c1_n6->SetSelected(c1_n6); +} diff --git a/Scripts_20161201/Scripts_20161201/figs/inlist_c_focusfit_diff.pdf b/Scripts_20161201/Scripts_20161201/figs/inlist_c_focusfit_diff.pdf new file mode 100644 index 0000000..6842004 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/figs/inlist_c_focusfit_diff.pdf differ diff --git a/Scripts_20161201/Scripts_20161201/figs/inlist_c_focusfit_diff.png b/Scripts_20161201/Scripts_20161201/figs/inlist_c_focusfit_diff.png new file mode 100644 index 0000000..2e0a012 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/figs/inlist_c_focusfit_diff.png differ diff --git a/Scripts_20161201/Scripts_20161201/figs/inlist_c_peakfit.C b/Scripts_20161201/Scripts_20161201/figs/inlist_c_peakfit.C new file mode 100644 index 0000000..c7bf95a --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/figs/inlist_c_peakfit.C @@ -0,0 +1,210 @@ +void inlist_c_peakfit() +{ +//=========Macro generated from canvas: c1_n7/c1_n7 +//========= (Tue Apr 3 18:03:06 2018) by ROOT version6.06/02 + TCanvas *c1_n7 = new TCanvas("c1_n7", "c1_n7",10,37,700,500); + gStyle->SetOptStat(0); + gStyle->SetOptTitle(0); + c1_n7->Range(-10.20742,-0.4353373,59.15241,2.285521); + c1_n7->SetFillColor(0); + c1_n7->SetBorderMode(0); + c1_n7->SetBorderSize(2); + c1_n7->SetLogy(); + c1_n7->SetTickx(1); + c1_n7->SetTicky(1); + c1_n7->SetLeftMargin(0.14); + c1_n7->SetRightMargin(0.08); + c1_n7->SetTopMargin(0.05); + c1_n7->SetBottomMargin(0.16); + c1_n7->SetFrameLineWidth(2); + c1_n7->SetFrameBorderMode(0); + c1_n7->SetFrameLineWidth(2); + c1_n7->SetFrameBorderMode(0); + + TMultiGraph *multigraph = new TMultiGraph(); + multigraph->SetName(""); + multigraph->SetTitle(" "); + + Double_t Graph_fx1017[9] = { + 2.03678, + 3.05742, + 5.08728, + 8.1511, + 10.1567, + 15.2559, + 20.3417, + 30.4781, + 51.1445}; + Double_t Graph_fy1017[9] = { + 3.93188, + 5.93471, + 9.90953, + 15.8498, + 19.8685, + 29.7649, + 39.7694, + 59.8829, + 98.6437}; + Double_t Graph_fex1017[9] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1017[9] = { + 1.38861, + 2.07269, + 3.49448, + 5.61377, + 7.50077, + 11.4264, + 15.2083, + 24.146, + 35.8098}; + TGraphErrors *gre = new TGraphErrors(9,Graph_fx1017,Graph_fy1017,Graph_fex1017,Graph_fey1017); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineWidth(2); + gre->SetMarkerStyle(22); + + TH1F *Graph_Graph1017 = new TH1F("Graph_Graph1017","Graph",100,0,56.05527); + Graph_Graph1017->SetMinimum(2.288943); + Graph_Graph1017->SetMaximum(147.6445); + Graph_Graph1017->SetDirectory(0); + Graph_Graph1017->SetStats(0); + Graph_Graph1017->SetLineWidth(2); + Graph_Graph1017->SetMarkerStyle(21); + Graph_Graph1017->GetXaxis()->SetNdivisions(505); + Graph_Graph1017->GetXaxis()->SetLabelFont(22); + Graph_Graph1017->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1017->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1017->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1017->GetXaxis()->SetTitleFont(22); + Graph_Graph1017->GetYaxis()->SetLabelFont(22); + Graph_Graph1017->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1017->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1017->GetYaxis()->SetTitleFont(22); + Graph_Graph1017->GetZaxis()->SetLabelFont(22); + Graph_Graph1017->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1017->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1017->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1017); + + multigraph->Add(gre,"pc"); + + Double_t Graph_fx1018[8] = { + 1.96208, + 2.95886, + 4.95905, + 9.87093, + 14.7862, + 19.6816, + 29.5024, + 49.7928}; + Double_t Graph_fy1018[8] = { + 2.73389, + 3.8707, + 6.36702, + 12.689, + 19.028, + 25.3672, + 38.0693, + 62.6743}; + Double_t Graph_fex1018[8] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1018[8] = { + 0.892946, + 1.62499, + 2.66832, + 4.66468, + 6.90351, + 9.1923, + 13.7995, + 25.422}; + gre = new TGraphErrors(8,Graph_fx1018,Graph_fy1018,Graph_fex1018,Graph_fey1018); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineWidth(2); + gre->SetMarkerStyle(26); + + TH1F *Graph_Graph1018 = new TH1F("Graph_Graph1018","Graph",100,0,54.57587); + Graph_Graph1018->SetMinimum(1.65685); + Graph_Graph1018->SetMaximum(96.72184); + Graph_Graph1018->SetDirectory(0); + Graph_Graph1018->SetStats(0); + Graph_Graph1018->SetLineWidth(2); + Graph_Graph1018->SetMarkerStyle(21); + Graph_Graph1018->GetXaxis()->SetNdivisions(505); + Graph_Graph1018->GetXaxis()->SetLabelFont(22); + Graph_Graph1018->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1018->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1018->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1018->GetXaxis()->SetTitleFont(22); + Graph_Graph1018->GetYaxis()->SetLabelFont(22); + Graph_Graph1018->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1018->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1018->GetYaxis()->SetTitleFont(22); + Graph_Graph1018->GetZaxis()->SetLabelFont(22); + Graph_Graph1018->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1018->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1018->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1018); + + multigraph->Add(gre,"pc"); + multigraph->Draw("a"); + multigraph->GetXaxis()->SetTitle("Intensity / 10^{6}s^{-1}"); + multigraph->GetXaxis()->SetNdivisions(505); + multigraph->GetXaxis()->SetLabelFont(22); + multigraph->GetXaxis()->SetLabelOffset(0.015); + multigraph->GetXaxis()->SetLabelSize(0.05); + multigraph->GetXaxis()->SetTitleSize(0.06); + multigraph->GetXaxis()->SetTitleFont(22); + multigraph->GetYaxis()->SetTitle("SNR"); + multigraph->GetYaxis()->SetLabelFont(22); + multigraph->GetYaxis()->SetLabelSize(0.05); + multigraph->GetYaxis()->SetTitleSize(0.06); + multigraph->GetYaxis()->SetTitleFont(22); + + TLegend *leg = new TLegend(0.6,0.2,0.9,0.5,NULL,"brNDC"); + leg->SetBorderSize(0); + leg->SetTextFont(22); + leg->SetTextSize(0.045); + leg->SetLineColor(1); + leg->SetLineStyle(1); + leg->SetLineWidth(2); + leg->SetFillColor(0); + leg->SetFillStyle(0); + TLegendEntry *entry=leg->AddEntry("Graph","BPM (430 MeV/u)","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(22); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("Graph","BPM (130 MeV/u)","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(26); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + leg->Draw(); + c1_n7->Modified(); + c1_n7->cd(); + c1_n7->SetSelected(c1_n7); +} diff --git a/Scripts_20161201/Scripts_20161201/figs/inlist_c_peakfit.pdf b/Scripts_20161201/Scripts_20161201/figs/inlist_c_peakfit.pdf new file mode 100644 index 0000000..4d53f24 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/figs/inlist_c_peakfit.pdf differ diff --git a/Scripts_20161201/Scripts_20161201/figs/inlist_c_peakfit.png b/Scripts_20161201/Scripts_20161201/figs/inlist_c_peakfit.png new file mode 100644 index 0000000..e52f0e9 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/figs/inlist_c_peakfit.png differ diff --git a/Scripts_20161201/Scripts_20161201/figs/inlist_c_posfit_diff.pdf b/Scripts_20161201/Scripts_20161201/figs/inlist_c_posfit_diff.pdf new file mode 100644 index 0000000..9e81d6f Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/figs/inlist_c_posfit_diff.pdf differ diff --git a/Scripts_20161201/Scripts_20161201/figs/inlist_c_posfit_diff.png b/Scripts_20161201/Scripts_20161201/figs/inlist_c_posfit_diff.png new file mode 100644 index 0000000..c2e6b69 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/figs/inlist_c_posfit_diff.png differ diff --git a/Scripts_20161201/Scripts_20161201/figs/inlist_c_possfit_diff.C b/Scripts_20161201/Scripts_20161201/figs/inlist_c_possfit_diff.C new file mode 100644 index 0000000..18659ea --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/figs/inlist_c_possfit_diff.C @@ -0,0 +1,211 @@ +void inlist_c_possfit_diff() +{ +//=========Macro generated from canvas: c1_n4/c1_n4 +//========= (Tue Apr 3 18:03:04 2018) by ROOT version6.06/02 + TCanvas *c1_n4 = new TCanvas("c1_n4", "c1_n4",10,37,700,500); + gStyle->SetOptStat(0); + gStyle->SetOptTitle(0); + c1_n4->Range(-10.20742,-0.06069657,59.15241,0.318657); + c1_n4->SetFillColor(0); + c1_n4->SetBorderMode(0); + c1_n4->SetBorderSize(2); + c1_n4->SetTickx(1); + c1_n4->SetTicky(1); + c1_n4->SetLeftMargin(0.14); + c1_n4->SetRightMargin(0.08); + c1_n4->SetTopMargin(0.05); + c1_n4->SetBottomMargin(0.16); + c1_n4->SetFrameLineWidth(2); + c1_n4->SetFrameBorderMode(0); + c1_n4->SetFrameLineWidth(2); + c1_n4->SetFrameBorderMode(0); + + TMultiGraph *multigraph = new TMultiGraph(); + multigraph->SetName(""); + multigraph->SetTitle(" "); + + Double_t Graph_fx1011[9] = { + 2.03678, + 3.05742, + 5.08728, + 8.1511, + 10.1567, + 15.2559, + 20.3417, + 30.4781, + 51.1445}; + Double_t Graph_fy1011[9] = { + 0.129147, + 0.0885219, + 0.0544837, + 0.0362059, + 0.0307345, + 0.022488, + 0.0184867, + 0.0139872, + 0.0106452}; + Double_t Graph_fex1011[9] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1011[9] = { + 0.00121823, + 0.000822596, + 0.000542304, + 0.000321135, + 0.000271996, + 0.000196458, + 0.000156963, + 0.000116538, + 8.23243e-05}; + TGraphErrors *gre = new TGraphErrors(9,Graph_fx1011,Graph_fy1011,Graph_fex1011,Graph_fey1011); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineStyle(3); + gre->SetLineWidth(2); + gre->SetMarkerStyle(22); + + TH1F *Graph_Graph1011 = new TH1F("Graph_Graph1011","Graph",100,0,56.05527); + Graph_Graph1011->SetMinimum(0); + Graph_Graph1011->SetMaximum(0.1423455); + Graph_Graph1011->SetDirectory(0); + Graph_Graph1011->SetStats(0); + Graph_Graph1011->SetLineWidth(2); + Graph_Graph1011->SetMarkerStyle(21); + Graph_Graph1011->GetXaxis()->SetNdivisions(505); + Graph_Graph1011->GetXaxis()->SetLabelFont(22); + Graph_Graph1011->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1011->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1011->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1011->GetXaxis()->SetTitleFont(22); + Graph_Graph1011->GetYaxis()->SetLabelFont(22); + Graph_Graph1011->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1011->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1011->GetYaxis()->SetTitleFont(22); + Graph_Graph1011->GetZaxis()->SetLabelFont(22); + Graph_Graph1011->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1011->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1011->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1011); + + multigraph->Add(gre,"pc"); + + Double_t Graph_fx1012[8] = { + 1.96208, + 2.95886, + 4.95905, + 9.87093, + 14.7862, + 19.6816, + 29.5024, + 49.7928}; + Double_t Graph_fy1012[8] = { + 0.2833, + 0.211754, + 0.1311, + 0.0735419, + 0.052802, + 0.0431026, + 0.0319821, + 0.0236786}; + Double_t Graph_fex1012[8] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1012[8] = { + 0.00262138, + 0.00191423, + 0.00119367, + 0.000645161, + 0.000451233, + 0.000371273, + 0.000264383, + 0.000207716}; + gre = new TGraphErrors(8,Graph_fx1012,Graph_fy1012,Graph_fex1012,Graph_fey1012); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineStyle(3); + gre->SetLineWidth(2); + gre->SetMarkerStyle(26); + + TH1F *Graph_Graph1012 = new TH1F("Graph_Graph1012","Graph",100,0,54.57587); + Graph_Graph1012->SetMinimum(0); + Graph_Graph1012->SetMaximum(0.3121664); + Graph_Graph1012->SetDirectory(0); + Graph_Graph1012->SetStats(0); + Graph_Graph1012->SetLineWidth(2); + Graph_Graph1012->SetMarkerStyle(21); + Graph_Graph1012->GetXaxis()->SetNdivisions(505); + Graph_Graph1012->GetXaxis()->SetLabelFont(22); + Graph_Graph1012->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1012->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1012->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1012->GetXaxis()->SetTitleFont(22); + Graph_Graph1012->GetYaxis()->SetLabelFont(22); + Graph_Graph1012->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1012->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1012->GetYaxis()->SetTitleFont(22); + Graph_Graph1012->GetZaxis()->SetLabelFont(22); + Graph_Graph1012->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1012->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1012->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1012); + + multigraph->Add(gre,"pc"); + multigraph->Draw("a"); + multigraph->GetXaxis()->SetTitle("Intensity / 10^{6}s^{-1}"); + multigraph->GetXaxis()->SetNdivisions(505); + multigraph->GetXaxis()->SetLabelFont(22); + multigraph->GetXaxis()->SetLabelOffset(0.015); + multigraph->GetXaxis()->SetLabelSize(0.05); + multigraph->GetXaxis()->SetTitleSize(0.06); + multigraph->GetXaxis()->SetTitleFont(22); + multigraph->GetYaxis()->SetTitle("#sigma(X_{1}-X_{2})/#sqrt{2} / mm"); + multigraph->GetYaxis()->SetLabelFont(22); + multigraph->GetYaxis()->SetLabelSize(0.05); + multigraph->GetYaxis()->SetTitleSize(0.06); + multigraph->GetYaxis()->SetTitleFont(22); + + TLegend *leg = new TLegend(0.6,0.6,0.9,0.9,NULL,"brNDC"); + leg->SetBorderSize(0); + leg->SetTextFont(22); + leg->SetTextSize(0.045); + leg->SetLineColor(1); + leg->SetLineStyle(1); + leg->SetLineWidth(2); + leg->SetFillColor(0); + leg->SetFillStyle(0); + TLegendEntry *entry=leg->AddEntry("Graph","BPM (430 MeV/u)","pl"); + entry->SetLineColor(1); + entry->SetLineStyle(3); + entry->SetLineWidth(2); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(22); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("Graph","BPM (130 MeV/u)","pl"); + entry->SetLineColor(1); + entry->SetLineStyle(3); + entry->SetLineWidth(2); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(26); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + leg->Draw(); + c1_n4->Modified(); + c1_n4->cd(); + c1_n4->SetSelected(c1_n4); +} diff --git a/Scripts_20161201/Scripts_20161201/figs/inlist_p_bpm_diff.C b/Scripts_20161201/Scripts_20161201/figs/inlist_p_bpm_diff.C new file mode 100644 index 0000000..0716b01 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/figs/inlist_p_bpm_diff.C @@ -0,0 +1,375 @@ +void inlist_p_bpm_diff() +{ +//=========Macro generated from canvas: c1/c1 +//========= (Tue Apr 3 18:03:03 2018) by ROOT version6.06/02 + TCanvas *c1 = new TCanvas("c1", "c1",10,37,700,500); + gStyle->SetOptStat(0); + gStyle->SetOptTitle(0); + c1->Range(-402.8707,-0.03645569,2343.456,0.1913924); + c1->SetFillColor(0); + c1->SetBorderMode(0); + c1->SetBorderSize(2); + c1->SetTickx(1); + c1->SetTicky(1); + c1->SetLeftMargin(0.14); + c1->SetRightMargin(0.08); + c1->SetTopMargin(0.05); + c1->SetBottomMargin(0.16); + c1->SetFrameLineWidth(2); + c1->SetFrameBorderMode(0); + c1->SetFrameLineWidth(2); + c1->SetFrameBorderMode(0); + + TMultiGraph *multigraph = new TMultiGraph(); + multigraph->SetName(""); + multigraph->SetTitle(" "); + + Double_t Graph_fx1001[9] = { + 78.9848, + 118.658, + 198.17, + 316.018, + 394.438, + 593.806, + 790.554, + 1188.03, + 1990.53}; + Double_t Graph_fy1001[9] = { + 0.0665337, + 0.0454473, + 0.0280808, + 0.0177565, + 0.0144121, + 0.0101224, + 0.00782278, + 0.00547459, + 0.00394504}; + Double_t Graph_fex1001[9] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1001[9] = { + 0.000542706, + 0.000392711, + 0.000247037, + 0.000148189, + 0.000122994, + 8.87371e-05, + 6.44797e-05, + 4.56877e-05, + 3.43175e-05}; + TGraphErrors *gre = new TGraphErrors(9,Graph_fx1001,Graph_fy1001,Graph_fex1001,Graph_fey1001); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineStyle(3); + gre->SetLineWidth(2); + gre->SetMarkerStyle(20); + + TH1F *Graph_Graph1001 = new TH1F("Graph_Graph1001","Graph",100,0,2181.685); + Graph_Graph1001->SetMinimum(0); + Graph_Graph1001->SetMaximum(0.07339297); + Graph_Graph1001->SetDirectory(0); + Graph_Graph1001->SetStats(0); + Graph_Graph1001->SetLineWidth(2); + Graph_Graph1001->SetMarkerStyle(21); + Graph_Graph1001->GetXaxis()->SetNdivisions(505); + Graph_Graph1001->GetXaxis()->SetLabelFont(22); + Graph_Graph1001->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1001->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1001->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1001->GetXaxis()->SetTitleFont(22); + Graph_Graph1001->GetYaxis()->SetLabelFont(22); + Graph_Graph1001->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1001->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1001->GetYaxis()->SetTitleFont(22); + Graph_Graph1001->GetZaxis()->SetLabelFont(22); + Graph_Graph1001->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1001->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1001->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1001); + + multigraph->Add(gre,"pc"); + + Double_t Graph_fx1002[9] = { + 79.0354, + 118.87, + 198.332, + 317.093, + 395.805, + 594.734, + 795.176, + 1194.73, + 2026.38}; + Double_t Graph_fy1002[9] = { + 0.17537, + 0.130906, + 0.0802245, + 0.05265, + 0.0433882, + 0.0299002, + 0.0234158, + 0.0170494, + 0.0120116}; + Double_t Graph_fex1002[9] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1002[9] = { + 0.00263946, + 0.00146187, + 0.000741972, + 0.000520439, + 0.000413834, + 0.000287387, + 0.00021686, + 0.0001669, + 0.000112594}; + gre = new TGraphErrors(9,Graph_fx1002,Graph_fy1002,Graph_fex1002,Graph_fey1002); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineStyle(3); + gre->SetLineWidth(2); + gre->SetMarkerStyle(24); + + TH1F *Graph_Graph1002 = new TH1F("Graph_Graph1002","Graph",100,0,2221.114); + Graph_Graph1002->SetMinimum(0); + Graph_Graph1002->SetMaximum(0.1946205); + Graph_Graph1002->SetDirectory(0); + Graph_Graph1002->SetStats(0); + Graph_Graph1002->SetLineWidth(2); + Graph_Graph1002->SetMarkerStyle(21); + Graph_Graph1002->GetXaxis()->SetNdivisions(505); + Graph_Graph1002->GetXaxis()->SetLabelFont(22); + Graph_Graph1002->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1002->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1002->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1002->GetXaxis()->SetTitleFont(22); + Graph_Graph1002->GetYaxis()->SetLabelFont(22); + Graph_Graph1002->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1002->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1002->GetYaxis()->SetTitleFont(22); + Graph_Graph1002->GetZaxis()->SetLabelFont(22); + Graph_Graph1002->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1002->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1002->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1002); + + multigraph->Add(gre,"pc"); + + Double_t Graph_fx1003[9] = { + 78.9848, + 118.658, + 198.17, + 316.018, + 394.438, + 593.806, + 790.554, + 1188.03, + 1990.53}; + Double_t Graph_fy1003[9] = { + 0.0444266, + 0.0376806, + 0.0324683, + 0.0374567, + 0.0358997, + 0.0371097, + 0.0394641, + 0.0296149, + 0.04342}; + Double_t Graph_fex1003[9] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1003[9] = { + 0.000307261, + 0.000260418, + 0.000224074, + 0.000258809, + 0.000247897, + 0.000256204, + 0.00027225, + 0.000204333, + 0.000326052}; + gre = new TGraphErrors(9,Graph_fx1003,Graph_fy1003,Graph_fex1003,Graph_fey1003); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineWidth(2); + gre->SetMarkerStyle(29); + + TH1F *Graph_Graph1003 = new TH1F("Graph_Graph1003","Graph",100,0,2181.685); + Graph_Graph1003->SetMinimum(0.02787824); + Graph_Graph1003->SetMaximum(0.04626619); + Graph_Graph1003->SetDirectory(0); + Graph_Graph1003->SetStats(0); + Graph_Graph1003->SetLineWidth(2); + Graph_Graph1003->SetMarkerStyle(21); + Graph_Graph1003->GetXaxis()->SetNdivisions(505); + Graph_Graph1003->GetXaxis()->SetLabelFont(22); + Graph_Graph1003->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1003->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1003->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1003->GetXaxis()->SetTitleFont(22); + Graph_Graph1003->GetYaxis()->SetLabelFont(22); + Graph_Graph1003->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1003->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1003->GetYaxis()->SetTitleFont(22); + Graph_Graph1003->GetZaxis()->SetLabelFont(22); + Graph_Graph1003->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1003->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1003->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1003); + + multigraph->Add(gre,"p"); + + Double_t Graph_fx1004[9] = { + 79.0354, + 118.87, + 198.332, + 317.093, + 395.805, + 594.734, + 795.176, + 1194.73, + 2026.38}; + Double_t Graph_fy1004[9] = { + 0.0288236, + 0.0277598, + 0.0254663, + 0.0282533, + 0.0279462, + 0.0315855, + 0.0335265, + 0.0278244, + 0.0361567}; + Double_t Graph_fex1004[9] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1004[9] = { + 0.000198997, + 0.000191579, + 0.000175659, + 0.000194799, + 0.000192856, + 0.000217805, + 0.000231344, + 0.000191651, + 0.00024863}; + gre = new TGraphErrors(9,Graph_fx1004,Graph_fy1004,Graph_fex1004,Graph_fey1004); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineWidth(2); + gre->SetMarkerStyle(30); + + TH1F *Graph_Graph1004 = new TH1F("Graph_Graph1004","Graph",100,0,2221.114); + Graph_Graph1004->SetMinimum(0.02417917); + Graph_Graph1004->SetMaximum(0.0375168); + Graph_Graph1004->SetDirectory(0); + Graph_Graph1004->SetStats(0); + Graph_Graph1004->SetLineWidth(2); + Graph_Graph1004->SetMarkerStyle(21); + Graph_Graph1004->GetXaxis()->SetNdivisions(505); + Graph_Graph1004->GetXaxis()->SetLabelFont(22); + Graph_Graph1004->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1004->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1004->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1004->GetXaxis()->SetTitleFont(22); + Graph_Graph1004->GetYaxis()->SetLabelFont(22); + Graph_Graph1004->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1004->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1004->GetYaxis()->SetTitleFont(22); + Graph_Graph1004->GetZaxis()->SetLabelFont(22); + Graph_Graph1004->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1004->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1004->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1004); + + multigraph->Add(gre,"p"); + multigraph->Draw("a"); + multigraph->GetXaxis()->SetTitle("Intensity / 10^{6}s^{-1}"); + multigraph->GetXaxis()->SetNdivisions(505); + multigraph->GetXaxis()->SetLabelFont(22); + multigraph->GetXaxis()->SetLabelOffset(0.015); + multigraph->GetXaxis()->SetLabelSize(0.05); + multigraph->GetXaxis()->SetTitleSize(0.06); + multigraph->GetXaxis()->SetTitleFont(22); + multigraph->GetYaxis()->SetTitle("#sqrt{2}#upoint #sigma(A_{1}-A_{2}) / (A_{1}+A_{2})"); + multigraph->GetYaxis()->SetLabelFont(22); + multigraph->GetYaxis()->SetLabelSize(0.05); + multigraph->GetYaxis()->SetTitleSize(0.06); + multigraph->GetYaxis()->SetTitleFont(22); + + TLegend *leg = new TLegend(0.6,0.6,0.9,0.9,NULL,"brNDC"); + leg->SetBorderSize(0); + leg->SetTextFont(22); + leg->SetTextSize(0.045); + leg->SetLineColor(1); + leg->SetLineStyle(1); + leg->SetLineWidth(2); + leg->SetFillColor(0); + leg->SetFillStyle(0); + TLegendEntry *entry=leg->AddEntry("Graph","BPM (221 MeV)","pl"); + entry->SetLineColor(1); + entry->SetLineStyle(3); + entry->SetLineWidth(2); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(20); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("Graph","BPM (70 MeV)","pl"); + entry->SetLineColor(1); + entry->SetLineStyle(3); + entry->SetLineWidth(2); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(24); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("Graph","IC (221 MeV)","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(29); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("Graph","IC (70 MeV)","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(30); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + leg->Draw(); + c1->Modified(); + c1->cd(); + c1->SetSelected(c1); +} diff --git a/Scripts_20161201/Scripts_20161201/figs/inlist_p_bpm_diff.pdf b/Scripts_20161201/Scripts_20161201/figs/inlist_p_bpm_diff.pdf new file mode 100644 index 0000000..f66a277 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/figs/inlist_p_bpm_diff.pdf differ diff --git a/Scripts_20161201/Scripts_20161201/figs/inlist_p_bpm_diff.png b/Scripts_20161201/Scripts_20161201/figs/inlist_p_bpm_diff.png new file mode 100644 index 0000000..effabbe Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/figs/inlist_p_bpm_diff.png differ diff --git a/Scripts_20161201/Scripts_20161201/figs/inlist_p_focusfit_absdiff.pdf b/Scripts_20161201/Scripts_20161201/figs/inlist_p_focusfit_absdiff.pdf new file mode 100644 index 0000000..c66d632 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/figs/inlist_p_focusfit_absdiff.pdf differ diff --git a/Scripts_20161201/Scripts_20161201/figs/inlist_p_focusfit_absdiff.png b/Scripts_20161201/Scripts_20161201/figs/inlist_p_focusfit_absdiff.png new file mode 100644 index 0000000..8d02e71 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/figs/inlist_p_focusfit_absdiff.png differ diff --git a/Scripts_20161201/Scripts_20161201/figs/inlist_p_focusfit_absdiff2.pdf b/Scripts_20161201/Scripts_20161201/figs/inlist_p_focusfit_absdiff2.pdf new file mode 100644 index 0000000..552d565 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/figs/inlist_p_focusfit_absdiff2.pdf differ diff --git a/Scripts_20161201/Scripts_20161201/figs/inlist_p_focusfit_diff.C b/Scripts_20161201/Scripts_20161201/figs/inlist_p_focusfit_diff.C new file mode 100644 index 0000000..828f38d --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/figs/inlist_p_focusfit_diff.C @@ -0,0 +1,215 @@ +void inlist_p_focusfit_diff() +{ +//=========Macro generated from canvas: c1_n5/c1_n5 +//========= (Tue Apr 3 18:03:05 2018) by ROOT version6.06/02 + TCanvas *c1_n5 = new TCanvas("c1_n5", "c1_n5",10,37,700,500); + gStyle->SetOptStat(0); + gStyle->SetOptTitle(0); + c1_n5->Range(-402.8707,-0.7380828,2343.456,3.874935); + c1_n5->SetFillColor(0); + c1_n5->SetBorderMode(0); + c1_n5->SetBorderSize(2); + c1_n5->SetTickx(1); + c1_n5->SetTicky(1); + c1_n5->SetLeftMargin(0.14); + c1_n5->SetRightMargin(0.08); + c1_n5->SetTopMargin(0.05); + c1_n5->SetBottomMargin(0.16); + c1_n5->SetFrameLineWidth(2); + c1_n5->SetFrameBorderMode(0); + c1_n5->SetFrameLineWidth(2); + c1_n5->SetFrameBorderMode(0); + + TMultiGraph *multigraph = new TMultiGraph(); + multigraph->SetName(""); + multigraph->SetTitle(" "); + + Double_t Graph_fx1013[9] = { + 78.9848, + 118.658, + 198.17, + 316.018, + 394.438, + 593.806, + 790.554, + 1188.03, + 1990.53}; + Double_t Graph_fy1013[9] = { + 0.788846, + 0.537538, + 0.328294, + 0.208886, + 0.168501, + 0.118569, + 0.0917777, + 0.0646191, + 0.0440651}; + Double_t Graph_fex1013[9] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1013[9] = { + 0.00666858, + 0.0046225, + 0.00271829, + 0.0017232, + 0.0014206, + 0.001013, + 0.00079113, + 0.000530595, + 0.000394613}; + TGraphErrors *gre = new TGraphErrors(9,Graph_fx1013,Graph_fy1013,Graph_fex1013,Graph_fey1013); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineStyle(3); + gre->SetLineWidth(2); + gre->SetMarkerStyle(20); + + TH1F *Graph_Graph1013 = new TH1F("Graph_Graph1013","Graph",100,0,2181.685); + Graph_Graph1013->SetMinimum(0); + Graph_Graph1013->SetMaximum(0.870699); + Graph_Graph1013->SetDirectory(0); + Graph_Graph1013->SetStats(0); + Graph_Graph1013->SetLineWidth(2); + Graph_Graph1013->SetMarkerStyle(21); + Graph_Graph1013->GetXaxis()->SetNdivisions(505); + Graph_Graph1013->GetXaxis()->SetLabelFont(22); + Graph_Graph1013->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1013->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1013->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1013->GetXaxis()->SetTitleFont(22); + Graph_Graph1013->GetYaxis()->SetLabelFont(22); + Graph_Graph1013->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1013->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1013->GetYaxis()->SetTitleFont(22); + Graph_Graph1013->GetZaxis()->SetLabelFont(22); + Graph_Graph1013->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1013->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1013->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1013); + + multigraph->Add(gre,"pc"); + + Double_t Graph_fx1014[9] = { + 79.0354, + 118.87, + 198.332, + 317.093, + 395.805, + 594.734, + 795.176, + 1194.73, + 2026.38}; + Double_t Graph_fy1014[9] = { + 3.42462, + 2.47025, + 1.52845, + 1.00776, + 0.839487, + 0.58229, + 0.462815, + 0.33919, + 0.236132}; + Double_t Graph_fex1014[9] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1014[9] = { + 0.0482061, + 0.027427, + 0.0149684, + 0.0095299, + 0.00789383, + 0.00547878, + 0.00418357, + 0.00320945, + 0.00219977}; + gre = new TGraphErrors(9,Graph_fx1014,Graph_fy1014,Graph_fex1014,Graph_fey1014); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineStyle(3); + gre->SetLineWidth(2); + gre->SetMarkerStyle(24); + + TH1F *Graph_Graph1014 = new TH1F("Graph_Graph1014","Graph",100,0,2221.114); + Graph_Graph1014->SetMinimum(0); + Graph_Graph1014->SetMaximum(3.796715); + Graph_Graph1014->SetDirectory(0); + Graph_Graph1014->SetStats(0); + Graph_Graph1014->SetLineWidth(2); + Graph_Graph1014->SetMarkerStyle(21); + Graph_Graph1014->GetXaxis()->SetNdivisions(505); + Graph_Graph1014->GetXaxis()->SetLabelFont(22); + Graph_Graph1014->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1014->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1014->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1014->GetXaxis()->SetTitleFont(22); + Graph_Graph1014->GetYaxis()->SetLabelFont(22); + Graph_Graph1014->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1014->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1014->GetYaxis()->SetTitleFont(22); + Graph_Graph1014->GetZaxis()->SetLabelFont(22); + Graph_Graph1014->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1014->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1014->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1014); + + multigraph->Add(gre,"pc"); + multigraph->Draw("a"); + multigraph->GetXaxis()->SetTitle("Intensity / 10^{6}s^{-1}"); + multigraph->GetXaxis()->SetNdivisions(505); + multigraph->GetXaxis()->SetLabelFont(22); + multigraph->GetXaxis()->SetLabelOffset(0.015); + multigraph->GetXaxis()->SetLabelSize(0.05); + multigraph->GetXaxis()->SetTitleSize(0.06); + multigraph->GetXaxis()->SetTitleFont(22); + multigraph->GetYaxis()->SetTitle("#sigma(F_{1}-F_{2})/#sqrt{2} / mm"); + multigraph->GetYaxis()->SetLabelFont(22); + multigraph->GetYaxis()->SetLabelSize(0.05); + multigraph->GetYaxis()->SetTitleSize(0.06); + multigraph->GetYaxis()->SetTitleFont(22); + + TLegend *leg = new TLegend(0.6,0.6,0.9,0.9,NULL,"brNDC"); + leg->SetBorderSize(0); + leg->SetTextFont(22); + leg->SetTextSize(0.045); + leg->SetLineColor(1); + leg->SetLineStyle(1); + leg->SetLineWidth(2); + leg->SetFillColor(0); + leg->SetFillStyle(0); + TLegendEntry *entry=leg->AddEntry("Graph","BPM (221 MeV)","pl"); + entry->SetLineColor(1); + entry->SetLineStyle(3); + entry->SetLineWidth(2); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(20); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("Graph","BPM (70 MeV)","pl"); + entry->SetLineColor(1); + entry->SetLineStyle(3); + entry->SetLineWidth(2); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(24); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + leg->Draw(); + c1_n5->Modified(); + c1_n5->cd(); + c1_n5->SetSelected(c1_n5); +} diff --git a/Scripts_20161201/Scripts_20161201/figs/inlist_p_focusfit_diff.pdf b/Scripts_20161201/Scripts_20161201/figs/inlist_p_focusfit_diff.pdf new file mode 100644 index 0000000..c23a60a Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/figs/inlist_p_focusfit_diff.pdf differ diff --git a/Scripts_20161201/Scripts_20161201/figs/inlist_p_focusfit_diff.png b/Scripts_20161201/Scripts_20161201/figs/inlist_p_focusfit_diff.png new file mode 100644 index 0000000..64242d8 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/figs/inlist_p_focusfit_diff.png differ diff --git a/Scripts_20161201/Scripts_20161201/figs/inlist_p_peakfit.C b/Scripts_20161201/Scripts_20161201/figs/inlist_p_peakfit.C new file mode 100644 index 0000000..6206c1e --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/figs/inlist_p_peakfit.C @@ -0,0 +1,214 @@ +void inlist_p_peakfit() +{ +//=========Macro generated from canvas: c1_n8/c1_n8 +//========= (Tue Apr 3 18:03:06 2018) by ROOT version6.06/02 + TCanvas *c1_n8 = new TCanvas("c1_n8", "c1_n8",10,37,700,500); + gStyle->SetOptStat(0); + gStyle->SetOptTitle(0); + c1_n8->Range(-402.8707,-0.415807,2343.456,2.182987); + c1_n8->SetFillColor(0); + c1_n8->SetBorderMode(0); + c1_n8->SetBorderSize(2); + c1_n8->SetLogy(); + c1_n8->SetTickx(1); + c1_n8->SetTicky(1); + c1_n8->SetLeftMargin(0.14); + c1_n8->SetRightMargin(0.08); + c1_n8->SetTopMargin(0.05); + c1_n8->SetBottomMargin(0.16); + c1_n8->SetFrameLineWidth(2); + c1_n8->SetFrameBorderMode(0); + c1_n8->SetFrameLineWidth(2); + c1_n8->SetFrameBorderMode(0); + + TMultiGraph *multigraph = new TMultiGraph(); + multigraph->SetName(""); + multigraph->SetTitle(" "); + + Double_t Graph_fx1019[9] = { + 78.9848, + 118.658, + 198.17, + 316.018, + 394.438, + 593.806, + 790.554, + 1188.03, + 1990.53}; + Double_t Graph_fy1019[9] = { + 3.35311, + 4.98191, + 8.32673, + 13.3299, + 16.6505, + 24.761, + 33.0787, + 49.4349, + 82.2093}; + Double_t Graph_fex1019[9] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1019[9] = { + 0.976075, + 1.49193, + 2.55977, + 3.9322, + 4.91948, + 7.79587, + 10.1985, + 13.9961, + 25.4786}; + TGraphErrors *gre = new TGraphErrors(9,Graph_fx1019,Graph_fy1019,Graph_fex1019,Graph_fey1019); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineWidth(2); + gre->SetMarkerStyle(20); + + TH1F *Graph_Graph1019 = new TH1F("Graph_Graph1019","Graph",100,0,2181.685); + Graph_Graph1019->SetMinimum(2.139332); + Graph_Graph1019->SetMaximum(118.219); + Graph_Graph1019->SetDirectory(0); + Graph_Graph1019->SetStats(0); + Graph_Graph1019->SetLineWidth(2); + Graph_Graph1019->SetMarkerStyle(21); + Graph_Graph1019->GetXaxis()->SetNdivisions(505); + Graph_Graph1019->GetXaxis()->SetLabelFont(22); + Graph_Graph1019->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1019->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1019->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1019->GetXaxis()->SetTitleFont(22); + Graph_Graph1019->GetYaxis()->SetLabelFont(22); + Graph_Graph1019->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1019->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1019->GetYaxis()->SetTitleFont(22); + Graph_Graph1019->GetZaxis()->SetLabelFont(22); + Graph_Graph1019->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1019->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1019->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1019); + + multigraph->Add(gre,"pc"); + + Double_t Graph_fx1020[9] = { + 79.0354, + 118.87, + 198.332, + 317.093, + 395.805, + 594.734, + 795.176, + 1194.73, + 2026.38}; + Double_t Graph_fy1020[9] = { + 2.92215, + 4.06457, + 6.59966, + 10.5596, + 13.2042, + 19.6867, + 26.1884, + 38.9097, + 64.764}; + Double_t Graph_fex1020[9] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1020[9] = { + 1.31351, + 1.76885, + 2.64553, + 4.06413, + 5.04219, + 6.79918, + 9.19588, + 13.7219, + 21.7599}; + gre = new TGraphErrors(9,Graph_fx1020,Graph_fy1020,Graph_fex1020,Graph_fey1020); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineWidth(2); + gre->SetMarkerStyle(24); + + TH1F *Graph_Graph1020 = new TH1F("Graph_Graph1020","Graph",100,0,2221.114); + Graph_Graph1020->SetMinimum(1.447776); + Graph_Graph1020->SetMaximum(95.01543); + Graph_Graph1020->SetDirectory(0); + Graph_Graph1020->SetStats(0); + Graph_Graph1020->SetLineWidth(2); + Graph_Graph1020->SetMarkerStyle(21); + Graph_Graph1020->GetXaxis()->SetNdivisions(505); + Graph_Graph1020->GetXaxis()->SetLabelFont(22); + Graph_Graph1020->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1020->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1020->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1020->GetXaxis()->SetTitleFont(22); + Graph_Graph1020->GetYaxis()->SetLabelFont(22); + Graph_Graph1020->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1020->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1020->GetYaxis()->SetTitleFont(22); + Graph_Graph1020->GetZaxis()->SetLabelFont(22); + Graph_Graph1020->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1020->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1020->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1020); + + multigraph->Add(gre,"pc"); + multigraph->Draw("a"); + multigraph->GetXaxis()->SetTitle("Intensity / 10^{6}s^{-1}"); + multigraph->GetXaxis()->SetNdivisions(505); + multigraph->GetXaxis()->SetLabelFont(22); + multigraph->GetXaxis()->SetLabelOffset(0.015); + multigraph->GetXaxis()->SetLabelSize(0.05); + multigraph->GetXaxis()->SetTitleSize(0.06); + multigraph->GetXaxis()->SetTitleFont(22); + multigraph->GetYaxis()->SetTitle("SNR"); + multigraph->GetYaxis()->SetLabelFont(22); + multigraph->GetYaxis()->SetLabelSize(0.05); + multigraph->GetYaxis()->SetTitleSize(0.06); + multigraph->GetYaxis()->SetTitleFont(22); + + TLegend *leg = new TLegend(0.6,0.2,0.9,0.5,NULL,"brNDC"); + leg->SetBorderSize(0); + leg->SetTextFont(22); + leg->SetTextSize(0.045); + leg->SetLineColor(1); + leg->SetLineStyle(1); + leg->SetLineWidth(2); + leg->SetFillColor(0); + leg->SetFillStyle(0); + TLegendEntry *entry=leg->AddEntry("Graph","BPM (221 MeV/u)","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(20); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("Graph","BPM (70 MeV/u)","p"); + entry->SetLineColor(1); + entry->SetLineStyle(1); + entry->SetLineWidth(1); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(24); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + leg->Draw(); + c1_n8->Modified(); + c1_n8->cd(); + c1_n8->SetSelected(c1_n8); +} diff --git a/Scripts_20161201/Scripts_20161201/figs/inlist_p_peakfit.pdf b/Scripts_20161201/Scripts_20161201/figs/inlist_p_peakfit.pdf new file mode 100644 index 0000000..b083a5d Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/figs/inlist_p_peakfit.pdf differ diff --git a/Scripts_20161201/Scripts_20161201/figs/inlist_p_peakfit.png b/Scripts_20161201/Scripts_20161201/figs/inlist_p_peakfit.png new file mode 100644 index 0000000..25e6196 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/figs/inlist_p_peakfit.png differ diff --git a/Scripts_20161201/Scripts_20161201/figs/inlist_p_posfit_diff.pdf b/Scripts_20161201/Scripts_20161201/figs/inlist_p_posfit_diff.pdf new file mode 100644 index 0000000..85f8fc9 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/figs/inlist_p_posfit_diff.pdf differ diff --git a/Scripts_20161201/Scripts_20161201/figs/inlist_p_posfit_diff.png b/Scripts_20161201/Scripts_20161201/figs/inlist_p_posfit_diff.png new file mode 100644 index 0000000..ba04f17 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/figs/inlist_p_posfit_diff.png differ diff --git a/Scripts_20161201/Scripts_20161201/figs/inlist_p_possfit_diff.C b/Scripts_20161201/Scripts_20161201/figs/inlist_p_possfit_diff.C new file mode 100644 index 0000000..5302eb3 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/figs/inlist_p_possfit_diff.C @@ -0,0 +1,215 @@ +void inlist_p_possfit_diff() +{ +//=========Macro generated from canvas: c1_n3/c1_n3 +//========= (Tue Apr 3 18:03:04 2018) by ROOT version6.06/02 + TCanvas *c1_n3 = new TCanvas("c1_n3", "c1_n3",10,37,700,500); + gStyle->SetOptStat(0); + gStyle->SetOptTitle(0); + c1_n3->Range(-402.8707,-0.098098,2343.456,0.5150145); + c1_n3->SetFillColor(0); + c1_n3->SetBorderMode(0); + c1_n3->SetBorderSize(2); + c1_n3->SetTickx(1); + c1_n3->SetTicky(1); + c1_n3->SetLeftMargin(0.14); + c1_n3->SetRightMargin(0.08); + c1_n3->SetTopMargin(0.05); + c1_n3->SetBottomMargin(0.16); + c1_n3->SetFrameLineWidth(2); + c1_n3->SetFrameBorderMode(0); + c1_n3->SetFrameLineWidth(2); + c1_n3->SetFrameBorderMode(0); + + TMultiGraph *multigraph = new TMultiGraph(); + multigraph->SetName(""); + multigraph->SetTitle(" "); + + Double_t Graph_fx1009[9] = { + 78.9848, + 118.658, + 198.17, + 316.018, + 394.438, + 593.806, + 790.554, + 1188.03, + 1990.53}; + Double_t Graph_fy1009[9] = { + 0.220088, + 0.14943, + 0.0921645, + 0.0587563, + 0.0485497, + 0.0341533, + 0.026833, + 0.0192512, + 0.0141271}; + Double_t Graph_fex1009[9] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1009[9] = { + 0.00197253, + 0.00131907, + 0.000779895, + 0.000508382, + 0.000405983, + 0.000291207, + 0.000222401, + 0.000151747, + 0.000121728}; + TGraphErrors *gre = new TGraphErrors(9,Graph_fx1009,Graph_fy1009,Graph_fex1009,Graph_fey1009); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineStyle(3); + gre->SetLineWidth(2); + gre->SetMarkerStyle(20); + + TH1F *Graph_Graph1009 = new TH1F("Graph_Graph1009","Graph",100,0,2181.685); + Graph_Graph1009->SetMinimum(0); + Graph_Graph1009->SetMaximum(0.242866); + Graph_Graph1009->SetDirectory(0); + Graph_Graph1009->SetStats(0); + Graph_Graph1009->SetLineWidth(2); + Graph_Graph1009->SetMarkerStyle(21); + Graph_Graph1009->GetXaxis()->SetNdivisions(505); + Graph_Graph1009->GetXaxis()->SetLabelFont(22); + Graph_Graph1009->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1009->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1009->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1009->GetXaxis()->SetTitleFont(22); + Graph_Graph1009->GetYaxis()->SetLabelFont(22); + Graph_Graph1009->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1009->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1009->GetYaxis()->SetTitleFont(22); + Graph_Graph1009->GetZaxis()->SetLabelFont(22); + Graph_Graph1009->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1009->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1009->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1009); + + multigraph->Add(gre,"pc"); + + Double_t Graph_fx1010[9] = { + 79.0354, + 118.87, + 198.332, + 317.093, + 395.805, + 594.734, + 795.176, + 1194.73, + 2026.38}; + Double_t Graph_fy1010[9] = { + 0.45761, + 0.330238, + 0.206308, + 0.133107, + 0.108941, + 0.0729327, + 0.0581162, + 0.042703, + 0.0301569}; + Double_t Graph_fex1010[9] = { + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0}; + Double_t Graph_fey1010[9] = { + 0.00435112, + 0.00305332, + 0.00185381, + 0.00130555, + 0.00102722, + 0.000689338, + 0.000559749, + 0.000413007, + 0.000300041}; + gre = new TGraphErrors(9,Graph_fx1010,Graph_fy1010,Graph_fex1010,Graph_fey1010); + gre->SetName("Graph"); + gre->SetTitle("Graph"); + gre->SetFillColor(1); + gre->SetLineStyle(3); + gre->SetLineWidth(2); + gre->SetMarkerStyle(24); + + TH1F *Graph_Graph1010 = new TH1F("Graph_Graph1010","Graph",100,0,2221.114); + Graph_Graph1010->SetMinimum(0); + Graph_Graph1010->SetMaximum(0.5051715); + Graph_Graph1010->SetDirectory(0); + Graph_Graph1010->SetStats(0); + Graph_Graph1010->SetLineWidth(2); + Graph_Graph1010->SetMarkerStyle(21); + Graph_Graph1010->GetXaxis()->SetNdivisions(505); + Graph_Graph1010->GetXaxis()->SetLabelFont(22); + Graph_Graph1010->GetXaxis()->SetLabelOffset(0.015); + Graph_Graph1010->GetXaxis()->SetLabelSize(0.05); + Graph_Graph1010->GetXaxis()->SetTitleSize(0.06); + Graph_Graph1010->GetXaxis()->SetTitleFont(22); + Graph_Graph1010->GetYaxis()->SetLabelFont(22); + Graph_Graph1010->GetYaxis()->SetLabelSize(0.05); + Graph_Graph1010->GetYaxis()->SetTitleSize(0.06); + Graph_Graph1010->GetYaxis()->SetTitleFont(22); + Graph_Graph1010->GetZaxis()->SetLabelFont(22); + Graph_Graph1010->GetZaxis()->SetLabelSize(0.05); + Graph_Graph1010->GetZaxis()->SetTitleSize(0.06); + Graph_Graph1010->GetZaxis()->SetTitleFont(22); + gre->SetHistogram(Graph_Graph1010); + + multigraph->Add(gre,"pc"); + multigraph->Draw("a"); + multigraph->GetXaxis()->SetTitle("Intensity / 10^{6}s^{-1}"); + multigraph->GetXaxis()->SetNdivisions(505); + multigraph->GetXaxis()->SetLabelFont(22); + multigraph->GetXaxis()->SetLabelOffset(0.015); + multigraph->GetXaxis()->SetLabelSize(0.05); + multigraph->GetXaxis()->SetTitleSize(0.06); + multigraph->GetXaxis()->SetTitleFont(22); + multigraph->GetYaxis()->SetTitle("#sigma(X_{1}-X_{2})/#sqrt{2} / mm"); + multigraph->GetYaxis()->SetLabelFont(22); + multigraph->GetYaxis()->SetLabelSize(0.05); + multigraph->GetYaxis()->SetTitleSize(0.06); + multigraph->GetYaxis()->SetTitleFont(22); + + TLegend *leg = new TLegend(0.6,0.6,0.9,0.9,NULL,"brNDC"); + leg->SetBorderSize(0); + leg->SetTextFont(22); + leg->SetTextSize(0.045); + leg->SetLineColor(1); + leg->SetLineStyle(1); + leg->SetLineWidth(2); + leg->SetFillColor(0); + leg->SetFillStyle(0); + TLegendEntry *entry=leg->AddEntry("Graph","BPM (221 MeV)","pl"); + entry->SetLineColor(1); + entry->SetLineStyle(3); + entry->SetLineWidth(2); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(20); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + entry=leg->AddEntry("Graph","BPM (70 MeV)","pl"); + entry->SetLineColor(1); + entry->SetLineStyle(3); + entry->SetLineWidth(2); + entry->SetMarkerColor(1); + entry->SetMarkerStyle(24); + entry->SetMarkerSize(1); + entry->SetTextFont(22); + leg->Draw(); + c1_n3->Modified(); + c1_n3->cd(); + c1_n3->SetSelected(c1_n3); +} diff --git a/Scripts_20161201/Scripts_20161201/figs/noise_vs_64ch_Run1.C b/Scripts_20161201/Scripts_20161201/figs/noise_vs_64ch_Run1.C new file mode 100644 index 0000000..1c2c269 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/figs/noise_vs_64ch_Run1.C @@ -0,0 +1,2445 @@ +{ +//=========Macro generated from canvas: Canvas_1/Canvas_1 +//========= (Mon Nov 13 13:14:10 2017) by ROOT version5.34/32 + TCanvas *Canvas_1 = new TCanvas("Canvas_1", "Canvas_1",547,185,499,387); + gStyle->SetOptTitle(0); + Canvas_1->Range(-7.9375,-221.1347,73.8025,185.102); + Canvas_1->SetFillColor(0); + Canvas_1->SetBorderMode(0); + Canvas_1->SetBorderSize(2); + Canvas_1->SetLogz(); + Canvas_1->SetTickx(1); + Canvas_1->SetTicky(1); + Canvas_1->SetLeftMargin(0.1399254); + Canvas_1->SetRightMargin(0.113806); + Canvas_1->SetTopMargin(0.04702194); + Canvas_1->SetBottomMargin(0.184953); + Canvas_1->SetFrameLineWidth(2); + Canvas_1->SetFrameBorderMode(0); + Canvas_1->SetFrameLineWidth(2); + Canvas_1->SetFrameBorderMode(0); + + TH2D *th2d_bkg_channel = new TH2D("th2d_bkg_channel","th2d_bkg_channel",65,-0.5,64.5,500,-500,500); + th2d_bkg_channel->SetBinContent(15129,2); + th2d_bkg_channel->SetBinContent(15206,2); + th2d_bkg_channel->SetBinContent(15273,4); + th2d_bkg_channel->SetBinContent(15333,2); + th2d_bkg_channel->SetBinContent(15341,1); + th2d_bkg_channel->SetBinContent(15407,6); + th2d_bkg_channel->SetBinContent(15408,9); + th2d_bkg_channel->SetBinContent(15409,2); + th2d_bkg_channel->SetBinContent(15411,1); + th2d_bkg_channel->SetBinContent(15423,2); + th2d_bkg_channel->SetBinContent(15425,2); + th2d_bkg_channel->SetBinContent(15459,2); + th2d_bkg_channel->SetBinContent(15473,8); + th2d_bkg_channel->SetBinContent(15474,10); + th2d_bkg_channel->SetBinContent(15475,5); + th2d_bkg_channel->SetBinContent(15476,9); + th2d_bkg_channel->SetBinContent(15484,4); + th2d_bkg_channel->SetBinContent(15488,2); + th2d_bkg_channel->SetBinContent(15489,2); + th2d_bkg_channel->SetBinContent(15497,2); + th2d_bkg_channel->SetBinContent(15502,2); + th2d_bkg_channel->SetBinContent(15518,2); + th2d_bkg_channel->SetBinContent(15522,2); + th2d_bkg_channel->SetBinContent(15525,2); + th2d_bkg_channel->SetBinContent(15526,1); + th2d_bkg_channel->SetBinContent(15530,2); + th2d_bkg_channel->SetBinContent(15536,2); + th2d_bkg_channel->SetBinContent(15537,2); + th2d_bkg_channel->SetBinContent(15539,8); + th2d_bkg_channel->SetBinContent(15541,20); + th2d_bkg_channel->SetBinContent(15542,14); + th2d_bkg_channel->SetBinContent(15543,12); + th2d_bkg_channel->SetBinContent(15545,2); + th2d_bkg_channel->SetBinContent(15546,1); + th2d_bkg_channel->SetBinContent(15549,6); + th2d_bkg_channel->SetBinContent(15550,1); + th2d_bkg_channel->SetBinContent(15551,2); + th2d_bkg_channel->SetBinContent(15552,6); + th2d_bkg_channel->SetBinContent(15553,2); + th2d_bkg_channel->SetBinContent(15555,4); + th2d_bkg_channel->SetBinContent(15558,2); + th2d_bkg_channel->SetBinContent(15563,2); + th2d_bkg_channel->SetBinContent(15565,2); + th2d_bkg_channel->SetBinContent(15572,2); + th2d_bkg_channel->SetBinContent(15581,1); + th2d_bkg_channel->SetBinContent(15589,4); + th2d_bkg_channel->SetBinContent(15594,2); + th2d_bkg_channel->SetBinContent(15602,2); + th2d_bkg_channel->SetBinContent(15603,2); + th2d_bkg_channel->SetBinContent(15605,8); + th2d_bkg_channel->SetBinContent(15607,12); + th2d_bkg_channel->SetBinContent(15608,18); + th2d_bkg_channel->SetBinContent(15609,23); + th2d_bkg_channel->SetBinContent(15610,25); + th2d_bkg_channel->SetBinContent(15612,3); + th2d_bkg_channel->SetBinContent(15616,4); + th2d_bkg_channel->SetBinContent(15617,6); + th2d_bkg_channel->SetBinContent(15618,4); + th2d_bkg_channel->SetBinContent(15619,8); + th2d_bkg_channel->SetBinContent(15621,2); + th2d_bkg_channel->SetBinContent(15623,3); + th2d_bkg_channel->SetBinContent(15624,4); + th2d_bkg_channel->SetBinContent(15625,1); + th2d_bkg_channel->SetBinContent(15626,2); + th2d_bkg_channel->SetBinContent(15627,2); + th2d_bkg_channel->SetBinContent(15628,4); + th2d_bkg_channel->SetBinContent(15634,2); + th2d_bkg_channel->SetBinContent(15640,4); + th2d_bkg_channel->SetBinContent(15646,4); + th2d_bkg_channel->SetBinContent(15650,6); + th2d_bkg_channel->SetBinContent(15653,4); + th2d_bkg_channel->SetBinContent(15655,2); + th2d_bkg_channel->SetBinContent(15659,2); + th2d_bkg_channel->SetBinContent(15660,2); + th2d_bkg_channel->SetBinContent(15663,2); + th2d_bkg_channel->SetBinContent(15664,2); + th2d_bkg_channel->SetBinContent(15668,2); + th2d_bkg_channel->SetBinContent(15670,6); + th2d_bkg_channel->SetBinContent(15671,2); + th2d_bkg_channel->SetBinContent(15672,8); + th2d_bkg_channel->SetBinContent(15673,6); + th2d_bkg_channel->SetBinContent(15674,14); + th2d_bkg_channel->SetBinContent(15675,43); + th2d_bkg_channel->SetBinContent(15676,27); + th2d_bkg_channel->SetBinContent(15677,20); + th2d_bkg_channel->SetBinContent(15679,3); + th2d_bkg_channel->SetBinContent(15683,16); + th2d_bkg_channel->SetBinContent(15684,10); + th2d_bkg_channel->SetBinContent(15685,11); + th2d_bkg_channel->SetBinContent(15686,10); + th2d_bkg_channel->SetBinContent(15687,12); + th2d_bkg_channel->SetBinContent(15688,5); + th2d_bkg_channel->SetBinContent(15689,10); + th2d_bkg_channel->SetBinContent(15690,3); + th2d_bkg_channel->SetBinContent(15691,13); + th2d_bkg_channel->SetBinContent(15692,4); + th2d_bkg_channel->SetBinContent(15693,6); + th2d_bkg_channel->SetBinContent(15694,2); + th2d_bkg_channel->SetBinContent(15695,2); + th2d_bkg_channel->SetBinContent(15696,4); + th2d_bkg_channel->SetBinContent(15697,2); + th2d_bkg_channel->SetBinContent(15698,2); + th2d_bkg_channel->SetBinContent(15699,2); + th2d_bkg_channel->SetBinContent(15700,3); + th2d_bkg_channel->SetBinContent(15701,4); + th2d_bkg_channel->SetBinContent(15702,4); + th2d_bkg_channel->SetBinContent(15704,8); + th2d_bkg_channel->SetBinContent(15706,2); + th2d_bkg_channel->SetBinContent(15707,2); + th2d_bkg_channel->SetBinContent(15708,2); + th2d_bkg_channel->SetBinContent(15709,4); + th2d_bkg_channel->SetBinContent(15713,2); + th2d_bkg_channel->SetBinContent(15714,1); + th2d_bkg_channel->SetBinContent(15715,6); + th2d_bkg_channel->SetBinContent(15716,3); + th2d_bkg_channel->SetBinContent(15717,2); + th2d_bkg_channel->SetBinContent(15718,3); + th2d_bkg_channel->SetBinContent(15719,2); + th2d_bkg_channel->SetBinContent(15720,2); + th2d_bkg_channel->SetBinContent(15721,6); + th2d_bkg_channel->SetBinContent(15722,6); + th2d_bkg_channel->SetBinContent(15723,2); + th2d_bkg_channel->SetBinContent(15724,4); + th2d_bkg_channel->SetBinContent(15725,2); + th2d_bkg_channel->SetBinContent(15727,2); + th2d_bkg_channel->SetBinContent(15728,6); + th2d_bkg_channel->SetBinContent(15729,8); + th2d_bkg_channel->SetBinContent(15731,4); + th2d_bkg_channel->SetBinContent(15733,3); + th2d_bkg_channel->SetBinContent(15734,4); + th2d_bkg_channel->SetBinContent(15735,6); + th2d_bkg_channel->SetBinContent(15736,13); + th2d_bkg_channel->SetBinContent(15737,6); + th2d_bkg_channel->SetBinContent(15738,17); + th2d_bkg_channel->SetBinContent(15739,22); + th2d_bkg_channel->SetBinContent(15740,7); + th2d_bkg_channel->SetBinContent(15741,41); + th2d_bkg_channel->SetBinContent(15742,109); + th2d_bkg_channel->SetBinContent(15743,43); + th2d_bkg_channel->SetBinContent(15744,77); + th2d_bkg_channel->SetBinContent(15746,6); + th2d_bkg_channel->SetBinContent(15747,2); + th2d_bkg_channel->SetBinContent(15748,1); + th2d_bkg_channel->SetBinContent(15749,1); + th2d_bkg_channel->SetBinContent(15750,26); + th2d_bkg_channel->SetBinContent(15751,12); + th2d_bkg_channel->SetBinContent(15752,22); + th2d_bkg_channel->SetBinContent(15753,12); + th2d_bkg_channel->SetBinContent(15754,25); + th2d_bkg_channel->SetBinContent(15755,12); + th2d_bkg_channel->SetBinContent(15756,18); + th2d_bkg_channel->SetBinContent(15757,12); + th2d_bkg_channel->SetBinContent(15758,13); + th2d_bkg_channel->SetBinContent(15759,20); + th2d_bkg_channel->SetBinContent(15760,14); + th2d_bkg_channel->SetBinContent(15761,8); + th2d_bkg_channel->SetBinContent(15762,14); + th2d_bkg_channel->SetBinContent(15763,9); + th2d_bkg_channel->SetBinContent(15764,7); + th2d_bkg_channel->SetBinContent(15765,2); + th2d_bkg_channel->SetBinContent(15766,8); + th2d_bkg_channel->SetBinContent(15767,2); + th2d_bkg_channel->SetBinContent(15768,9); + th2d_bkg_channel->SetBinContent(15769,9); + th2d_bkg_channel->SetBinContent(15770,4); + th2d_bkg_channel->SetBinContent(15772,8); + th2d_bkg_channel->SetBinContent(15773,2); + th2d_bkg_channel->SetBinContent(15774,3); + th2d_bkg_channel->SetBinContent(15775,6); + th2d_bkg_channel->SetBinContent(15776,10); + th2d_bkg_channel->SetBinContent(15777,8); + th2d_bkg_channel->SetBinContent(15778,4); + th2d_bkg_channel->SetBinContent(15779,3); + th2d_bkg_channel->SetBinContent(15780,2); + th2d_bkg_channel->SetBinContent(15781,7); + th2d_bkg_channel->SetBinContent(15783,2); + th2d_bkg_channel->SetBinContent(15784,10); + th2d_bkg_channel->SetBinContent(15785,4); + th2d_bkg_channel->SetBinContent(15786,2); + th2d_bkg_channel->SetBinContent(15787,3); + th2d_bkg_channel->SetBinContent(15788,9); + th2d_bkg_channel->SetBinContent(15789,9); + th2d_bkg_channel->SetBinContent(15790,5); + th2d_bkg_channel->SetBinContent(15791,11); + th2d_bkg_channel->SetBinContent(15792,10); + th2d_bkg_channel->SetBinContent(15793,5); + th2d_bkg_channel->SetBinContent(15794,6); + th2d_bkg_channel->SetBinContent(15795,9); + th2d_bkg_channel->SetBinContent(15796,11); + th2d_bkg_channel->SetBinContent(15797,13); + th2d_bkg_channel->SetBinContent(15798,11); + th2d_bkg_channel->SetBinContent(15799,10); + th2d_bkg_channel->SetBinContent(15800,10); + th2d_bkg_channel->SetBinContent(15801,6); + th2d_bkg_channel->SetBinContent(15802,16); + th2d_bkg_channel->SetBinContent(15803,14); + th2d_bkg_channel->SetBinContent(15804,34); + th2d_bkg_channel->SetBinContent(15805,24); + th2d_bkg_channel->SetBinContent(15806,23); + th2d_bkg_channel->SetBinContent(15807,28); + th2d_bkg_channel->SetBinContent(15808,76); + th2d_bkg_channel->SetBinContent(15809,132); + th2d_bkg_channel->SetBinContent(15810,83); + th2d_bkg_channel->SetBinContent(15811,174); + th2d_bkg_channel->SetBinContent(15813,6); + th2d_bkg_channel->SetBinContent(15814,4); + th2d_bkg_channel->SetBinContent(15815,1); + th2d_bkg_channel->SetBinContent(15817,46); + th2d_bkg_channel->SetBinContent(15818,33); + th2d_bkg_channel->SetBinContent(15819,49); + th2d_bkg_channel->SetBinContent(15820,34); + th2d_bkg_channel->SetBinContent(15821,48); + th2d_bkg_channel->SetBinContent(15822,43); + th2d_bkg_channel->SetBinContent(15823,25); + th2d_bkg_channel->SetBinContent(15824,43); + th2d_bkg_channel->SetBinContent(15825,27); + th2d_bkg_channel->SetBinContent(15826,22); + th2d_bkg_channel->SetBinContent(15827,22); + th2d_bkg_channel->SetBinContent(15828,14); + th2d_bkg_channel->SetBinContent(15829,19); + th2d_bkg_channel->SetBinContent(15830,14); + th2d_bkg_channel->SetBinContent(15831,22); + th2d_bkg_channel->SetBinContent(15832,20); + th2d_bkg_channel->SetBinContent(15833,21); + th2d_bkg_channel->SetBinContent(15834,18); + th2d_bkg_channel->SetBinContent(15835,11); + th2d_bkg_channel->SetBinContent(15836,17); + th2d_bkg_channel->SetBinContent(15837,18); + th2d_bkg_channel->SetBinContent(15838,16); + th2d_bkg_channel->SetBinContent(15839,15); + th2d_bkg_channel->SetBinContent(15840,20); + th2d_bkg_channel->SetBinContent(15841,17); + th2d_bkg_channel->SetBinContent(15842,12); + th2d_bkg_channel->SetBinContent(15843,9); + th2d_bkg_channel->SetBinContent(15844,9); + th2d_bkg_channel->SetBinContent(15845,4); + th2d_bkg_channel->SetBinContent(15846,8); + th2d_bkg_channel->SetBinContent(15847,10); + th2d_bkg_channel->SetBinContent(15848,12); + th2d_bkg_channel->SetBinContent(15849,14); + th2d_bkg_channel->SetBinContent(15850,14); + th2d_bkg_channel->SetBinContent(15851,10); + th2d_bkg_channel->SetBinContent(15852,19); + th2d_bkg_channel->SetBinContent(15853,20); + th2d_bkg_channel->SetBinContent(15854,31); + th2d_bkg_channel->SetBinContent(15855,12); + th2d_bkg_channel->SetBinContent(15856,23); + th2d_bkg_channel->SetBinContent(15857,16); + th2d_bkg_channel->SetBinContent(15858,12); + th2d_bkg_channel->SetBinContent(15859,19); + th2d_bkg_channel->SetBinContent(15860,19); + th2d_bkg_channel->SetBinContent(15861,20); + th2d_bkg_channel->SetBinContent(15862,19); + th2d_bkg_channel->SetBinContent(15863,22); + th2d_bkg_channel->SetBinContent(15864,12); + th2d_bkg_channel->SetBinContent(15865,10); + th2d_bkg_channel->SetBinContent(15866,15); + th2d_bkg_channel->SetBinContent(15867,29); + th2d_bkg_channel->SetBinContent(15868,30); + th2d_bkg_channel->SetBinContent(15869,32); + th2d_bkg_channel->SetBinContent(15870,39); + th2d_bkg_channel->SetBinContent(15871,44); + th2d_bkg_channel->SetBinContent(15872,30); + th2d_bkg_channel->SetBinContent(15873,44); + th2d_bkg_channel->SetBinContent(15874,43); + th2d_bkg_channel->SetBinContent(15875,105); + th2d_bkg_channel->SetBinContent(15876,216); + th2d_bkg_channel->SetBinContent(15877,126); + th2d_bkg_channel->SetBinContent(15878,352); + th2d_bkg_channel->SetBinContent(15880,12); + th2d_bkg_channel->SetBinContent(15881,5); + th2d_bkg_channel->SetBinContent(15882,1); + th2d_bkg_channel->SetBinContent(15883,2); + th2d_bkg_channel->SetBinContent(15884,83); + th2d_bkg_channel->SetBinContent(15885,78); + th2d_bkg_channel->SetBinContent(15886,68); + th2d_bkg_channel->SetBinContent(15887,80); + th2d_bkg_channel->SetBinContent(15888,64); + th2d_bkg_channel->SetBinContent(15889,58); + th2d_bkg_channel->SetBinContent(15890,74); + th2d_bkg_channel->SetBinContent(15891,49); + th2d_bkg_channel->SetBinContent(15892,43); + th2d_bkg_channel->SetBinContent(15893,26); + th2d_bkg_channel->SetBinContent(15894,53); + th2d_bkg_channel->SetBinContent(15895,26); + th2d_bkg_channel->SetBinContent(15896,39); + th2d_bkg_channel->SetBinContent(15897,25); + th2d_bkg_channel->SetBinContent(15898,46); + th2d_bkg_channel->SetBinContent(15899,34); + th2d_bkg_channel->SetBinContent(15900,32); + th2d_bkg_channel->SetBinContent(15901,27); + th2d_bkg_channel->SetBinContent(15902,25); + th2d_bkg_channel->SetBinContent(15903,27); + th2d_bkg_channel->SetBinContent(15904,28); + th2d_bkg_channel->SetBinContent(15905,20); + th2d_bkg_channel->SetBinContent(15906,41); + th2d_bkg_channel->SetBinContent(15907,31); + th2d_bkg_channel->SetBinContent(15908,28); + th2d_bkg_channel->SetBinContent(15909,30); + th2d_bkg_channel->SetBinContent(15910,56); + th2d_bkg_channel->SetBinContent(15911,26); + th2d_bkg_channel->SetBinContent(15912,29); + th2d_bkg_channel->SetBinContent(15913,15); + th2d_bkg_channel->SetBinContent(15914,45); + th2d_bkg_channel->SetBinContent(15915,29); + th2d_bkg_channel->SetBinContent(15916,27); + th2d_bkg_channel->SetBinContent(15917,20); + th2d_bkg_channel->SetBinContent(15918,32); + th2d_bkg_channel->SetBinContent(15919,28); + th2d_bkg_channel->SetBinContent(15920,38); + th2d_bkg_channel->SetBinContent(15921,28); + th2d_bkg_channel->SetBinContent(15922,37); + th2d_bkg_channel->SetBinContent(15923,35); + th2d_bkg_channel->SetBinContent(15924,47); + th2d_bkg_channel->SetBinContent(15925,36); + th2d_bkg_channel->SetBinContent(15926,45); + th2d_bkg_channel->SetBinContent(15927,45); + th2d_bkg_channel->SetBinContent(15928,54); + th2d_bkg_channel->SetBinContent(15929,41); + th2d_bkg_channel->SetBinContent(15930,39); + th2d_bkg_channel->SetBinContent(15931,31); + th2d_bkg_channel->SetBinContent(15932,30); + th2d_bkg_channel->SetBinContent(15933,56); + th2d_bkg_channel->SetBinContent(15934,58); + th2d_bkg_channel->SetBinContent(15935,46); + th2d_bkg_channel->SetBinContent(15936,64); + th2d_bkg_channel->SetBinContent(15937,67); + th2d_bkg_channel->SetBinContent(15938,84); + th2d_bkg_channel->SetBinContent(15939,66); + th2d_bkg_channel->SetBinContent(15940,112); + th2d_bkg_channel->SetBinContent(15941,102); + th2d_bkg_channel->SetBinContent(15942,207); + th2d_bkg_channel->SetBinContent(15943,354); + th2d_bkg_channel->SetBinContent(15944,176); + th2d_bkg_channel->SetBinContent(15945,698); + th2d_bkg_channel->SetBinContent(15947,30); + th2d_bkg_channel->SetBinContent(15948,5); + th2d_bkg_channel->SetBinContent(15949,5); + th2d_bkg_channel->SetBinContent(15950,6); + th2d_bkg_channel->SetBinContent(15951,174); + th2d_bkg_channel->SetBinContent(15952,123); + th2d_bkg_channel->SetBinContent(15953,147); + th2d_bkg_channel->SetBinContent(15954,138); + th2d_bkg_channel->SetBinContent(15955,145); + th2d_bkg_channel->SetBinContent(15956,121); + th2d_bkg_channel->SetBinContent(15957,111); + th2d_bkg_channel->SetBinContent(15958,98); + th2d_bkg_channel->SetBinContent(15959,61); + th2d_bkg_channel->SetBinContent(15960,81); + th2d_bkg_channel->SetBinContent(15961,64); + th2d_bkg_channel->SetBinContent(15962,61); + th2d_bkg_channel->SetBinContent(15963,90); + th2d_bkg_channel->SetBinContent(15964,58); + th2d_bkg_channel->SetBinContent(15965,75); + th2d_bkg_channel->SetBinContent(15966,67); + th2d_bkg_channel->SetBinContent(15967,94); + th2d_bkg_channel->SetBinContent(15968,72); + th2d_bkg_channel->SetBinContent(15969,70); + th2d_bkg_channel->SetBinContent(15970,46); + th2d_bkg_channel->SetBinContent(15971,73); + th2d_bkg_channel->SetBinContent(15972,86); + th2d_bkg_channel->SetBinContent(15973,61); + th2d_bkg_channel->SetBinContent(15974,55); + th2d_bkg_channel->SetBinContent(15975,61); + th2d_bkg_channel->SetBinContent(15976,53); + th2d_bkg_channel->SetBinContent(15977,58); + th2d_bkg_channel->SetBinContent(15978,32); + th2d_bkg_channel->SetBinContent(15979,39); + th2d_bkg_channel->SetBinContent(15980,43); + th2d_bkg_channel->SetBinContent(15981,62); + th2d_bkg_channel->SetBinContent(15982,54); + th2d_bkg_channel->SetBinContent(15983,65); + th2d_bkg_channel->SetBinContent(15984,59); + th2d_bkg_channel->SetBinContent(15985,56); + th2d_bkg_channel->SetBinContent(15986,70); + th2d_bkg_channel->SetBinContent(15987,79); + th2d_bkg_channel->SetBinContent(15988,74); + th2d_bkg_channel->SetBinContent(15989,84); + th2d_bkg_channel->SetBinContent(15990,46); + th2d_bkg_channel->SetBinContent(15991,90); + th2d_bkg_channel->SetBinContent(15992,77); + th2d_bkg_channel->SetBinContent(15993,103); + th2d_bkg_channel->SetBinContent(15994,67); + th2d_bkg_channel->SetBinContent(15995,76); + th2d_bkg_channel->SetBinContent(15996,74); + th2d_bkg_channel->SetBinContent(15997,71); + th2d_bkg_channel->SetBinContent(15998,80); + th2d_bkg_channel->SetBinContent(15999,116); + th2d_bkg_channel->SetBinContent(16000,75); + th2d_bkg_channel->SetBinContent(16001,103); + th2d_bkg_channel->SetBinContent(16002,107); + th2d_bkg_channel->SetBinContent(16003,118); + th2d_bkg_channel->SetBinContent(16004,107); + th2d_bkg_channel->SetBinContent(16005,184); + th2d_bkg_channel->SetBinContent(16006,165); + th2d_bkg_channel->SetBinContent(16007,188); + th2d_bkg_channel->SetBinContent(16008,230); + th2d_bkg_channel->SetBinContent(16009,362); + th2d_bkg_channel->SetBinContent(16010,543); + th2d_bkg_channel->SetBinContent(16011,241); + th2d_bkg_channel->SetBinContent(16012,1452); + th2d_bkg_channel->SetBinContent(16014,27); + th2d_bkg_channel->SetBinContent(16015,16); + th2d_bkg_channel->SetBinContent(16016,8); + th2d_bkg_channel->SetBinContent(16017,4); + th2d_bkg_channel->SetBinContent(16018,281); + th2d_bkg_channel->SetBinContent(16019,188); + th2d_bkg_channel->SetBinContent(16020,305); + th2d_bkg_channel->SetBinContent(16021,207); + th2d_bkg_channel->SetBinContent(16022,276); + th2d_bkg_channel->SetBinContent(16023,225); + th2d_bkg_channel->SetBinContent(16024,232); + th2d_bkg_channel->SetBinContent(16025,189); + th2d_bkg_channel->SetBinContent(16026,192); + th2d_bkg_channel->SetBinContent(16027,164); + th2d_bkg_channel->SetBinContent(16028,169); + th2d_bkg_channel->SetBinContent(16029,119); + th2d_bkg_channel->SetBinContent(16030,163); + th2d_bkg_channel->SetBinContent(16031,150); + th2d_bkg_channel->SetBinContent(16032,161); + th2d_bkg_channel->SetBinContent(16033,127); + th2d_bkg_channel->SetBinContent(16034,164); + th2d_bkg_channel->SetBinContent(16035,150); + th2d_bkg_channel->SetBinContent(16036,164); + th2d_bkg_channel->SetBinContent(16037,157); + th2d_bkg_channel->SetBinContent(16038,133); + th2d_bkg_channel->SetBinContent(16039,152); + th2d_bkg_channel->SetBinContent(16040,154); + th2d_bkg_channel->SetBinContent(16041,118); + th2d_bkg_channel->SetBinContent(16042,118); + th2d_bkg_channel->SetBinContent(16043,135); + th2d_bkg_channel->SetBinContent(16044,111); + th2d_bkg_channel->SetBinContent(16045,111); + th2d_bkg_channel->SetBinContent(16046,114); + th2d_bkg_channel->SetBinContent(16047,93); + th2d_bkg_channel->SetBinContent(16048,112); + th2d_bkg_channel->SetBinContent(16049,112); + th2d_bkg_channel->SetBinContent(16050,136); + th2d_bkg_channel->SetBinContent(16051,114); + th2d_bkg_channel->SetBinContent(16052,156); + th2d_bkg_channel->SetBinContent(16053,110); + th2d_bkg_channel->SetBinContent(16054,148); + th2d_bkg_channel->SetBinContent(16055,146); + th2d_bkg_channel->SetBinContent(16056,159); + th2d_bkg_channel->SetBinContent(16057,145); + th2d_bkg_channel->SetBinContent(16058,130); + th2d_bkg_channel->SetBinContent(16059,120); + th2d_bkg_channel->SetBinContent(16060,164); + th2d_bkg_channel->SetBinContent(16061,159); + th2d_bkg_channel->SetBinContent(16062,149); + th2d_bkg_channel->SetBinContent(16063,134); + th2d_bkg_channel->SetBinContent(16064,158); + th2d_bkg_channel->SetBinContent(16065,118); + th2d_bkg_channel->SetBinContent(16066,184); + th2d_bkg_channel->SetBinContent(16067,140); + th2d_bkg_channel->SetBinContent(16068,180); + th2d_bkg_channel->SetBinContent(16069,197); + th2d_bkg_channel->SetBinContent(16070,206); + th2d_bkg_channel->SetBinContent(16071,260); + th2d_bkg_channel->SetBinContent(16072,304); + th2d_bkg_channel->SetBinContent(16073,292); + th2d_bkg_channel->SetBinContent(16074,376); + th2d_bkg_channel->SetBinContent(16075,322); + th2d_bkg_channel->SetBinContent(16076,556); + th2d_bkg_channel->SetBinContent(16077,845); + th2d_bkg_channel->SetBinContent(16078,398); + th2d_bkg_channel->SetBinContent(16079,2989); + th2d_bkg_channel->SetBinContent(16081,53); + th2d_bkg_channel->SetBinContent(16082,36); + th2d_bkg_channel->SetBinContent(16083,21); + th2d_bkg_channel->SetBinContent(16084,18); + th2d_bkg_channel->SetBinContent(16085,514); + th2d_bkg_channel->SetBinContent(16086,386); + th2d_bkg_channel->SetBinContent(16087,502); + th2d_bkg_channel->SetBinContent(16088,439); + th2d_bkg_channel->SetBinContent(16089,461); + th2d_bkg_channel->SetBinContent(16090,425); + th2d_bkg_channel->SetBinContent(16091,416); + th2d_bkg_channel->SetBinContent(16092,357); + th2d_bkg_channel->SetBinContent(16093,396); + th2d_bkg_channel->SetBinContent(16094,299); + th2d_bkg_channel->SetBinContent(16095,335); + th2d_bkg_channel->SetBinContent(16096,312); + th2d_bkg_channel->SetBinContent(16097,318); + th2d_bkg_channel->SetBinContent(16098,234); + th2d_bkg_channel->SetBinContent(16099,292); + th2d_bkg_channel->SetBinContent(16100,222); + th2d_bkg_channel->SetBinContent(16101,320); + th2d_bkg_channel->SetBinContent(16102,217); + th2d_bkg_channel->SetBinContent(16103,292); + th2d_bkg_channel->SetBinContent(16104,279); + th2d_bkg_channel->SetBinContent(16105,307); + th2d_bkg_channel->SetBinContent(16106,288); + th2d_bkg_channel->SetBinContent(16107,280); + th2d_bkg_channel->SetBinContent(16108,234); + th2d_bkg_channel->SetBinContent(16109,258); + th2d_bkg_channel->SetBinContent(16110,227); + th2d_bkg_channel->SetBinContent(16111,264); + th2d_bkg_channel->SetBinContent(16112,235); + th2d_bkg_channel->SetBinContent(16113,220); + th2d_bkg_channel->SetBinContent(16114,227); + th2d_bkg_channel->SetBinContent(16115,204); + th2d_bkg_channel->SetBinContent(16116,209); + th2d_bkg_channel->SetBinContent(16117,255); + th2d_bkg_channel->SetBinContent(16118,234); + th2d_bkg_channel->SetBinContent(16119,273); + th2d_bkg_channel->SetBinContent(16120,244); + th2d_bkg_channel->SetBinContent(16121,241); + th2d_bkg_channel->SetBinContent(16122,304); + th2d_bkg_channel->SetBinContent(16123,340); + th2d_bkg_channel->SetBinContent(16124,246); + th2d_bkg_channel->SetBinContent(16125,298); + th2d_bkg_channel->SetBinContent(16126,256); + th2d_bkg_channel->SetBinContent(16127,297); + th2d_bkg_channel->SetBinContent(16128,285); + th2d_bkg_channel->SetBinContent(16129,286); + th2d_bkg_channel->SetBinContent(16130,295); + th2d_bkg_channel->SetBinContent(16131,309); + th2d_bkg_channel->SetBinContent(16132,289); + th2d_bkg_channel->SetBinContent(16133,380); + th2d_bkg_channel->SetBinContent(16134,299); + th2d_bkg_channel->SetBinContent(16135,349); + th2d_bkg_channel->SetBinContent(16136,356); + th2d_bkg_channel->SetBinContent(16137,461); + th2d_bkg_channel->SetBinContent(16138,364); + th2d_bkg_channel->SetBinContent(16139,445); + th2d_bkg_channel->SetBinContent(16140,460); + th2d_bkg_channel->SetBinContent(16141,589); + th2d_bkg_channel->SetBinContent(16142,517); + th2d_bkg_channel->SetBinContent(16143,865); + th2d_bkg_channel->SetBinContent(16144,1078); + th2d_bkg_channel->SetBinContent(16145,568); + th2d_bkg_channel->SetBinContent(16146,6327); + th2d_bkg_channel->SetBinContent(16148,80); + th2d_bkg_channel->SetBinContent(16149,48); + th2d_bkg_channel->SetBinContent(16150,36); + th2d_bkg_channel->SetBinContent(16151,32); + th2d_bkg_channel->SetBinContent(16152,826); + th2d_bkg_channel->SetBinContent(16153,695); + th2d_bkg_channel->SetBinContent(16154,811); + th2d_bkg_channel->SetBinContent(16155,734); + th2d_bkg_channel->SetBinContent(16156,740); + th2d_bkg_channel->SetBinContent(16157,672); + th2d_bkg_channel->SetBinContent(16158,696); + th2d_bkg_channel->SetBinContent(16159,652); + th2d_bkg_channel->SetBinContent(16160,663); + th2d_bkg_channel->SetBinContent(16161,600); + th2d_bkg_channel->SetBinContent(16162,616); + th2d_bkg_channel->SetBinContent(16163,527); + th2d_bkg_channel->SetBinContent(16164,571); + th2d_bkg_channel->SetBinContent(16165,500); + th2d_bkg_channel->SetBinContent(16166,530); + th2d_bkg_channel->SetBinContent(16167,375); + th2d_bkg_channel->SetBinContent(16168,579); + th2d_bkg_channel->SetBinContent(16169,432); + th2d_bkg_channel->SetBinContent(16170,577); + th2d_bkg_channel->SetBinContent(16171,443); + th2d_bkg_channel->SetBinContent(16172,552); + th2d_bkg_channel->SetBinContent(16173,432); + th2d_bkg_channel->SetBinContent(16174,491); + th2d_bkg_channel->SetBinContent(16175,416); + th2d_bkg_channel->SetBinContent(16176,505); + th2d_bkg_channel->SetBinContent(16177,430); + th2d_bkg_channel->SetBinContent(16178,436); + th2d_bkg_channel->SetBinContent(16179,389); + th2d_bkg_channel->SetBinContent(16180,441); + th2d_bkg_channel->SetBinContent(16181,428); + th2d_bkg_channel->SetBinContent(16182,458); + th2d_bkg_channel->SetBinContent(16183,452); + th2d_bkg_channel->SetBinContent(16184,472); + th2d_bkg_channel->SetBinContent(16185,476); + th2d_bkg_channel->SetBinContent(16186,502); + th2d_bkg_channel->SetBinContent(16187,403); + th2d_bkg_channel->SetBinContent(16188,492); + th2d_bkg_channel->SetBinContent(16189,510); + th2d_bkg_channel->SetBinContent(16190,512); + th2d_bkg_channel->SetBinContent(16191,475); + th2d_bkg_channel->SetBinContent(16192,504); + th2d_bkg_channel->SetBinContent(16193,482); + th2d_bkg_channel->SetBinContent(16194,578); + th2d_bkg_channel->SetBinContent(16195,570); + th2d_bkg_channel->SetBinContent(16196,493); + th2d_bkg_channel->SetBinContent(16197,497); + th2d_bkg_channel->SetBinContent(16198,548); + th2d_bkg_channel->SetBinContent(16199,511); + th2d_bkg_channel->SetBinContent(16200,670); + th2d_bkg_channel->SetBinContent(16201,511); + th2d_bkg_channel->SetBinContent(16202,627); + th2d_bkg_channel->SetBinContent(16203,610); + th2d_bkg_channel->SetBinContent(16204,690); + th2d_bkg_channel->SetBinContent(16205,630); + th2d_bkg_channel->SetBinContent(16206,820); + th2d_bkg_channel->SetBinContent(16207,657); + th2d_bkg_channel->SetBinContent(16208,910); + th2d_bkg_channel->SetBinContent(16209,894); + th2d_bkg_channel->SetBinContent(16210,1191); + th2d_bkg_channel->SetBinContent(16211,1704); + th2d_bkg_channel->SetBinContent(16212,861); + th2d_bkg_channel->SetBinContent(16213,12418); + th2d_bkg_channel->SetBinContent(16215,140); + th2d_bkg_channel->SetBinContent(16216,75); + th2d_bkg_channel->SetBinContent(16217,55); + th2d_bkg_channel->SetBinContent(16218,55); + th2d_bkg_channel->SetBinContent(16219,1405); + th2d_bkg_channel->SetBinContent(16220,1103); + th2d_bkg_channel->SetBinContent(16221,1376); + th2d_bkg_channel->SetBinContent(16222,1126); + th2d_bkg_channel->SetBinContent(16223,1224); + th2d_bkg_channel->SetBinContent(16224,1068); + th2d_bkg_channel->SetBinContent(16225,1095); + th2d_bkg_channel->SetBinContent(16226,1086); + th2d_bkg_channel->SetBinContent(16227,1039); + th2d_bkg_channel->SetBinContent(16228,974); + th2d_bkg_channel->SetBinContent(16229,1010); + th2d_bkg_channel->SetBinContent(16230,817); + th2d_bkg_channel->SetBinContent(16231,989); + th2d_bkg_channel->SetBinContent(16232,864); + th2d_bkg_channel->SetBinContent(16233,999); + th2d_bkg_channel->SetBinContent(16234,801); + th2d_bkg_channel->SetBinContent(16235,929); + th2d_bkg_channel->SetBinContent(16236,847); + th2d_bkg_channel->SetBinContent(16237,854); + th2d_bkg_channel->SetBinContent(16238,790); + th2d_bkg_channel->SetBinContent(16239,824); + th2d_bkg_channel->SetBinContent(16240,801); + th2d_bkg_channel->SetBinContent(16241,864); + th2d_bkg_channel->SetBinContent(16242,739); + th2d_bkg_channel->SetBinContent(16243,805); + th2d_bkg_channel->SetBinContent(16244,788); + th2d_bkg_channel->SetBinContent(16245,800); + th2d_bkg_channel->SetBinContent(16246,731); + th2d_bkg_channel->SetBinContent(16247,781); + th2d_bkg_channel->SetBinContent(16248,722); + th2d_bkg_channel->SetBinContent(16249,770); + th2d_bkg_channel->SetBinContent(16250,736); + th2d_bkg_channel->SetBinContent(16251,831); + th2d_bkg_channel->SetBinContent(16252,775); + th2d_bkg_channel->SetBinContent(16253,963); + th2d_bkg_channel->SetBinContent(16254,781); + th2d_bkg_channel->SetBinContent(16255,853); + th2d_bkg_channel->SetBinContent(16256,818); + th2d_bkg_channel->SetBinContent(16257,924); + th2d_bkg_channel->SetBinContent(16258,903); + th2d_bkg_channel->SetBinContent(16259,931); + th2d_bkg_channel->SetBinContent(16260,829); + th2d_bkg_channel->SetBinContent(16261,938); + th2d_bkg_channel->SetBinContent(16262,853); + th2d_bkg_channel->SetBinContent(16263,913); + th2d_bkg_channel->SetBinContent(16264,872); + th2d_bkg_channel->SetBinContent(16265,959); + th2d_bkg_channel->SetBinContent(16266,967); + th2d_bkg_channel->SetBinContent(16267,1055); + th2d_bkg_channel->SetBinContent(16268,934); + th2d_bkg_channel->SetBinContent(16269,1065); + th2d_bkg_channel->SetBinContent(16270,1008); + th2d_bkg_channel->SetBinContent(16271,1216); + th2d_bkg_channel->SetBinContent(16272,1093); + th2d_bkg_channel->SetBinContent(16273,1385); + th2d_bkg_channel->SetBinContent(16274,1171); + th2d_bkg_channel->SetBinContent(16275,1452); + th2d_bkg_channel->SetBinContent(16276,1381); + th2d_bkg_channel->SetBinContent(16277,1697); + th2d_bkg_channel->SetBinContent(16278,2116); + th2d_bkg_channel->SetBinContent(16279,1172); + th2d_bkg_channel->SetBinContent(16280,23496); + th2d_bkg_channel->SetBinContent(16282,198); + th2d_bkg_channel->SetBinContent(16283,127); + th2d_bkg_channel->SetBinContent(16284,94); + th2d_bkg_channel->SetBinContent(16285,103); + th2d_bkg_channel->SetBinContent(16286,2093); + th2d_bkg_channel->SetBinContent(16287,1821); + th2d_bkg_channel->SetBinContent(16288,2047); + th2d_bkg_channel->SetBinContent(16289,1795); + th2d_bkg_channel->SetBinContent(16290,1873); + th2d_bkg_channel->SetBinContent(16291,1745); + th2d_bkg_channel->SetBinContent(16292,1742); + th2d_bkg_channel->SetBinContent(16293,1608); + th2d_bkg_channel->SetBinContent(16294,1728); + th2d_bkg_channel->SetBinContent(16295,1612); + th2d_bkg_channel->SetBinContent(16296,1792); + th2d_bkg_channel->SetBinContent(16297,1575); + th2d_bkg_channel->SetBinContent(16298,1792); + th2d_bkg_channel->SetBinContent(16299,1527); + th2d_bkg_channel->SetBinContent(16300,1523); + th2d_bkg_channel->SetBinContent(16301,1430); + th2d_bkg_channel->SetBinContent(16302,1710); + th2d_bkg_channel->SetBinContent(16303,1523); + th2d_bkg_channel->SetBinContent(16304,1504); + th2d_bkg_channel->SetBinContent(16305,1503); + th2d_bkg_channel->SetBinContent(16306,1451); + th2d_bkg_channel->SetBinContent(16307,1302); + th2d_bkg_channel->SetBinContent(16308,1459); + th2d_bkg_channel->SetBinContent(16309,1291); + th2d_bkg_channel->SetBinContent(16310,1433); + th2d_bkg_channel->SetBinContent(16311,1355); + th2d_bkg_channel->SetBinContent(16312,1376); + th2d_bkg_channel->SetBinContent(16313,1333); + th2d_bkg_channel->SetBinContent(16314,1252); + th2d_bkg_channel->SetBinContent(16315,1277); + th2d_bkg_channel->SetBinContent(16316,1442); + th2d_bkg_channel->SetBinContent(16317,1264); + th2d_bkg_channel->SetBinContent(16318,1436); + th2d_bkg_channel->SetBinContent(16319,1303); + th2d_bkg_channel->SetBinContent(16320,1437); + th2d_bkg_channel->SetBinContent(16321,1362); + th2d_bkg_channel->SetBinContent(16322,1376); + th2d_bkg_channel->SetBinContent(16323,1398); + th2d_bkg_channel->SetBinContent(16324,1410); + th2d_bkg_channel->SetBinContent(16325,1449); + th2d_bkg_channel->SetBinContent(16326,1496); + th2d_bkg_channel->SetBinContent(16327,1438); + th2d_bkg_channel->SetBinContent(16328,1530); + th2d_bkg_channel->SetBinContent(16329,1482); + th2d_bkg_channel->SetBinContent(16330,1518); + th2d_bkg_channel->SetBinContent(16331,1284); + th2d_bkg_channel->SetBinContent(16332,1614); + th2d_bkg_channel->SetBinContent(16333,1464); + th2d_bkg_channel->SetBinContent(16334,1634); + th2d_bkg_channel->SetBinContent(16335,1502); + th2d_bkg_channel->SetBinContent(16336,1694); + th2d_bkg_channel->SetBinContent(16337,1651); + th2d_bkg_channel->SetBinContent(16338,1778); + th2d_bkg_channel->SetBinContent(16339,1720); + th2d_bkg_channel->SetBinContent(16340,1955); + th2d_bkg_channel->SetBinContent(16341,1948); + th2d_bkg_channel->SetBinContent(16342,2061); + th2d_bkg_channel->SetBinContent(16343,2179); + th2d_bkg_channel->SetBinContent(16344,2528); + th2d_bkg_channel->SetBinContent(16345,2818); + th2d_bkg_channel->SetBinContent(16346,1552); + th2d_bkg_channel->SetBinContent(16347,42820); + th2d_bkg_channel->SetBinContent(16349,248); + th2d_bkg_channel->SetBinContent(16350,171); + th2d_bkg_channel->SetBinContent(16351,159); + th2d_bkg_channel->SetBinContent(16352,155); + th2d_bkg_channel->SetBinContent(16353,2937); + th2d_bkg_channel->SetBinContent(16354,2680); + th2d_bkg_channel->SetBinContent(16355,3007); + th2d_bkg_channel->SetBinContent(16356,2898); + th2d_bkg_channel->SetBinContent(16357,2940); + th2d_bkg_channel->SetBinContent(16358,2725); + th2d_bkg_channel->SetBinContent(16359,2819); + th2d_bkg_channel->SetBinContent(16360,2596); + th2d_bkg_channel->SetBinContent(16361,2638); + th2d_bkg_channel->SetBinContent(16362,2402); + th2d_bkg_channel->SetBinContent(16363,2525); + th2d_bkg_channel->SetBinContent(16364,2542); + th2d_bkg_channel->SetBinContent(16365,2510); + th2d_bkg_channel->SetBinContent(16366,2332); + th2d_bkg_channel->SetBinContent(16367,2592); + th2d_bkg_channel->SetBinContent(16368,2276); + th2d_bkg_channel->SetBinContent(16369,2397); + th2d_bkg_channel->SetBinContent(16370,2252); + th2d_bkg_channel->SetBinContent(16371,2404); + th2d_bkg_channel->SetBinContent(16372,2313); + th2d_bkg_channel->SetBinContent(16373,2269); + th2d_bkg_channel->SetBinContent(16374,2339); + th2d_bkg_channel->SetBinContent(16375,2447); + th2d_bkg_channel->SetBinContent(16376,2246); + th2d_bkg_channel->SetBinContent(16377,2338); + th2d_bkg_channel->SetBinContent(16378,2165); + th2d_bkg_channel->SetBinContent(16379,2255); + th2d_bkg_channel->SetBinContent(16380,2147); + th2d_bkg_channel->SetBinContent(16381,2135); + th2d_bkg_channel->SetBinContent(16382,2140); + th2d_bkg_channel->SetBinContent(16383,2281); + th2d_bkg_channel->SetBinContent(16384,2175); + th2d_bkg_channel->SetBinContent(16385,2432); + th2d_bkg_channel->SetBinContent(16386,2183); + th2d_bkg_channel->SetBinContent(16387,2505); + th2d_bkg_channel->SetBinContent(16388,2078); + th2d_bkg_channel->SetBinContent(16389,2270); + th2d_bkg_channel->SetBinContent(16390,2316); + th2d_bkg_channel->SetBinContent(16391,2392); + th2d_bkg_channel->SetBinContent(16392,2427); + th2d_bkg_channel->SetBinContent(16393,2470); + th2d_bkg_channel->SetBinContent(16394,2186); + th2d_bkg_channel->SetBinContent(16395,2371); + th2d_bkg_channel->SetBinContent(16396,2328); + th2d_bkg_channel->SetBinContent(16397,2386); + th2d_bkg_channel->SetBinContent(16398,2357); + th2d_bkg_channel->SetBinContent(16399,2643); + th2d_bkg_channel->SetBinContent(16400,2418); + th2d_bkg_channel->SetBinContent(16401,2660); + th2d_bkg_channel->SetBinContent(16402,2423); + th2d_bkg_channel->SetBinContent(16403,2617); + th2d_bkg_channel->SetBinContent(16404,2547); + th2d_bkg_channel->SetBinContent(16405,2780); + th2d_bkg_channel->SetBinContent(16406,2596); + th2d_bkg_channel->SetBinContent(16407,2940); + th2d_bkg_channel->SetBinContent(16408,2810); + th2d_bkg_channel->SetBinContent(16409,3022); + th2d_bkg_channel->SetBinContent(16410,3101); + th2d_bkg_channel->SetBinContent(16411,3345); + th2d_bkg_channel->SetBinContent(16412,3555); + th2d_bkg_channel->SetBinContent(16413,1859); + th2d_bkg_channel->SetBinContent(16414,72830); + th2d_bkg_channel->SetBinContent(16416,314); + th2d_bkg_channel->SetBinContent(16417,249); + th2d_bkg_channel->SetBinContent(16418,256); + th2d_bkg_channel->SetBinContent(16419,268); + th2d_bkg_channel->SetBinContent(16420,4157); + th2d_bkg_channel->SetBinContent(16421,3986); + th2d_bkg_channel->SetBinContent(16422,4163); + th2d_bkg_channel->SetBinContent(16423,4008); + th2d_bkg_channel->SetBinContent(16424,3929); + th2d_bkg_channel->SetBinContent(16425,3934); + th2d_bkg_channel->SetBinContent(16426,3954); + th2d_bkg_channel->SetBinContent(16427,3837); + th2d_bkg_channel->SetBinContent(16428,3767); + th2d_bkg_channel->SetBinContent(16429,3876); + th2d_bkg_channel->SetBinContent(16430,3945); + th2d_bkg_channel->SetBinContent(16431,3730); + th2d_bkg_channel->SetBinContent(16432,3953); + th2d_bkg_channel->SetBinContent(16433,3704); + th2d_bkg_channel->SetBinContent(16434,3782); + th2d_bkg_channel->SetBinContent(16435,3504); + th2d_bkg_channel->SetBinContent(16436,3967); + th2d_bkg_channel->SetBinContent(16437,3627); + th2d_bkg_channel->SetBinContent(16438,3657); + th2d_bkg_channel->SetBinContent(16439,3623); + th2d_bkg_channel->SetBinContent(16440,3731); + th2d_bkg_channel->SetBinContent(16441,3648); + th2d_bkg_channel->SetBinContent(16442,3526); + th2d_bkg_channel->SetBinContent(16443,3374); + th2d_bkg_channel->SetBinContent(16444,3578); + th2d_bkg_channel->SetBinContent(16445,3516); + th2d_bkg_channel->SetBinContent(16446,3621); + th2d_bkg_channel->SetBinContent(16447,3272); + th2d_bkg_channel->SetBinContent(16448,3464); + th2d_bkg_channel->SetBinContent(16449,3388); + th2d_bkg_channel->SetBinContent(16450,3576); + th2d_bkg_channel->SetBinContent(16451,3355); + th2d_bkg_channel->SetBinContent(16452,3516); + th2d_bkg_channel->SetBinContent(16453,3585); + th2d_bkg_channel->SetBinContent(16454,3700); + th2d_bkg_channel->SetBinContent(16455,3518); + th2d_bkg_channel->SetBinContent(16456,3569); + th2d_bkg_channel->SetBinContent(16457,3846); + th2d_bkg_channel->SetBinContent(16458,3712); + th2d_bkg_channel->SetBinContent(16459,3678); + th2d_bkg_channel->SetBinContent(16460,3697); + th2d_bkg_channel->SetBinContent(16461,3567); + th2d_bkg_channel->SetBinContent(16462,3643); + th2d_bkg_channel->SetBinContent(16463,3806); + th2d_bkg_channel->SetBinContent(16464,3696); + th2d_bkg_channel->SetBinContent(16465,3625); + th2d_bkg_channel->SetBinContent(16466,3739); + th2d_bkg_channel->SetBinContent(16467,3646); + th2d_bkg_channel->SetBinContent(16468,3864); + th2d_bkg_channel->SetBinContent(16469,3799); + th2d_bkg_channel->SetBinContent(16470,3959); + th2d_bkg_channel->SetBinContent(16471,3951); + th2d_bkg_channel->SetBinContent(16472,4010); + th2d_bkg_channel->SetBinContent(16473,4046); + th2d_bkg_channel->SetBinContent(16474,4256); + th2d_bkg_channel->SetBinContent(16475,4137); + th2d_bkg_channel->SetBinContent(16476,4398); + th2d_bkg_channel->SetBinContent(16477,4267); + th2d_bkg_channel->SetBinContent(16478,4480); + th2d_bkg_channel->SetBinContent(16479,4533); + th2d_bkg_channel->SetBinContent(16480,2364); + th2d_bkg_channel->SetBinContent(16481,115943); + th2d_bkg_channel->SetBinContent(16483,399); + th2d_bkg_channel->SetBinContent(16484,388); + th2d_bkg_channel->SetBinContent(16485,348); + th2d_bkg_channel->SetBinContent(16486,345); + th2d_bkg_channel->SetBinContent(16487,5502); + th2d_bkg_channel->SetBinContent(16488,5482); + th2d_bkg_channel->SetBinContent(16489,5732); + th2d_bkg_channel->SetBinContent(16490,5668); + th2d_bkg_channel->SetBinContent(16491,5640); + th2d_bkg_channel->SetBinContent(16492,5369); + th2d_bkg_channel->SetBinContent(16493,5379); + th2d_bkg_channel->SetBinContent(16494,5562); + th2d_bkg_channel->SetBinContent(16495,5550); + th2d_bkg_channel->SetBinContent(16496,5272); + th2d_bkg_channel->SetBinContent(16497,5422); + th2d_bkg_channel->SetBinContent(16498,5422); + th2d_bkg_channel->SetBinContent(16499,5368); + th2d_bkg_channel->SetBinContent(16500,5176); + th2d_bkg_channel->SetBinContent(16501,5385); + th2d_bkg_channel->SetBinContent(16502,5196); + th2d_bkg_channel->SetBinContent(16503,5276); + th2d_bkg_channel->SetBinContent(16504,5334); + th2d_bkg_channel->SetBinContent(16505,5166); + th2d_bkg_channel->SetBinContent(16506,5378); + th2d_bkg_channel->SetBinContent(16507,5079); + th2d_bkg_channel->SetBinContent(16508,5319); + th2d_bkg_channel->SetBinContent(16509,5272); + th2d_bkg_channel->SetBinContent(16510,5074); + th2d_bkg_channel->SetBinContent(16511,5228); + th2d_bkg_channel->SetBinContent(16512,5184); + th2d_bkg_channel->SetBinContent(16513,5232); + th2d_bkg_channel->SetBinContent(16514,5043); + th2d_bkg_channel->SetBinContent(16515,5182); + th2d_bkg_channel->SetBinContent(16516,5032); + th2d_bkg_channel->SetBinContent(16517,5302); + th2d_bkg_channel->SetBinContent(16518,5088); + th2d_bkg_channel->SetBinContent(16519,5391); + th2d_bkg_channel->SetBinContent(16520,5388); + th2d_bkg_channel->SetBinContent(16521,5554); + th2d_bkg_channel->SetBinContent(16522,5059); + th2d_bkg_channel->SetBinContent(16523,5240); + th2d_bkg_channel->SetBinContent(16524,5370); + th2d_bkg_channel->SetBinContent(16525,5250); + th2d_bkg_channel->SetBinContent(16526,5272); + th2d_bkg_channel->SetBinContent(16527,5292); + th2d_bkg_channel->SetBinContent(16528,5141); + th2d_bkg_channel->SetBinContent(16529,5456); + th2d_bkg_channel->SetBinContent(16530,5510); + th2d_bkg_channel->SetBinContent(16531,5425); + th2d_bkg_channel->SetBinContent(16532,5215); + th2d_bkg_channel->SetBinContent(16533,5313); + th2d_bkg_channel->SetBinContent(16534,5276); + th2d_bkg_channel->SetBinContent(16535,5507); + th2d_bkg_channel->SetBinContent(16536,5333); + th2d_bkg_channel->SetBinContent(16537,5361); + th2d_bkg_channel->SetBinContent(16538,5547); + th2d_bkg_channel->SetBinContent(16539,5517); + th2d_bkg_channel->SetBinContent(16540,5343); + th2d_bkg_channel->SetBinContent(16541,5736); + th2d_bkg_channel->SetBinContent(16542,5527); + th2d_bkg_channel->SetBinContent(16543,5552); + th2d_bkg_channel->SetBinContent(16544,5729); + th2d_bkg_channel->SetBinContent(16545,5610); + th2d_bkg_channel->SetBinContent(16546,5606); + th2d_bkg_channel->SetBinContent(16547,2984); + th2d_bkg_channel->SetBinContent(16548,172642); + th2d_bkg_channel->SetBinContent(16550,503); + th2d_bkg_channel->SetBinContent(16551,461); + th2d_bkg_channel->SetBinContent(16552,509); + th2d_bkg_channel->SetBinContent(16553,499); + th2d_bkg_channel->SetBinContent(16554,6984); + th2d_bkg_channel->SetBinContent(16555,7034); + th2d_bkg_channel->SetBinContent(16556,7114); + th2d_bkg_channel->SetBinContent(16557,7211); + th2d_bkg_channel->SetBinContent(16558,6986); + th2d_bkg_channel->SetBinContent(16559,7207); + th2d_bkg_channel->SetBinContent(16560,7132); + th2d_bkg_channel->SetBinContent(16561,7110); + th2d_bkg_channel->SetBinContent(16562,7177); + th2d_bkg_channel->SetBinContent(16563,7221); + th2d_bkg_channel->SetBinContent(16564,7094); + th2d_bkg_channel->SetBinContent(16565,7084); + th2d_bkg_channel->SetBinContent(16566,7031); + th2d_bkg_channel->SetBinContent(16567,7191); + th2d_bkg_channel->SetBinContent(16568,7214); + th2d_bkg_channel->SetBinContent(16569,7265); + th2d_bkg_channel->SetBinContent(16570,7373); + th2d_bkg_channel->SetBinContent(16571,7164); + th2d_bkg_channel->SetBinContent(16572,7277); + th2d_bkg_channel->SetBinContent(16573,7010); + th2d_bkg_channel->SetBinContent(16574,7101); + th2d_bkg_channel->SetBinContent(16575,7147); + th2d_bkg_channel->SetBinContent(16576,7104); + th2d_bkg_channel->SetBinContent(16577,6963); + th2d_bkg_channel->SetBinContent(16578,7051); + th2d_bkg_channel->SetBinContent(16579,7181); + th2d_bkg_channel->SetBinContent(16580,7121); + th2d_bkg_channel->SetBinContent(16581,7214); + th2d_bkg_channel->SetBinContent(16582,7390); + th2d_bkg_channel->SetBinContent(16583,7514); + th2d_bkg_channel->SetBinContent(16584,7181); + th2d_bkg_channel->SetBinContent(16585,7182); + th2d_bkg_channel->SetBinContent(16586,7198); + th2d_bkg_channel->SetBinContent(16587,7240); + th2d_bkg_channel->SetBinContent(16588,7430); + th2d_bkg_channel->SetBinContent(16589,6781); + th2d_bkg_channel->SetBinContent(16590,7330); + th2d_bkg_channel->SetBinContent(16591,7508); + th2d_bkg_channel->SetBinContent(16592,7045); + th2d_bkg_channel->SetBinContent(16593,7333); + th2d_bkg_channel->SetBinContent(16594,7425); + th2d_bkg_channel->SetBinContent(16595,7351); + th2d_bkg_channel->SetBinContent(16596,7241); + th2d_bkg_channel->SetBinContent(16597,7386); + th2d_bkg_channel->SetBinContent(16598,7161); + th2d_bkg_channel->SetBinContent(16599,7327); + th2d_bkg_channel->SetBinContent(16600,7207); + th2d_bkg_channel->SetBinContent(16601,7089); + th2d_bkg_channel->SetBinContent(16602,7345); + th2d_bkg_channel->SetBinContent(16603,7038); + th2d_bkg_channel->SetBinContent(16604,7087); + th2d_bkg_channel->SetBinContent(16605,7439); + th2d_bkg_channel->SetBinContent(16606,7208); + th2d_bkg_channel->SetBinContent(16607,7275); + th2d_bkg_channel->SetBinContent(16608,7040); + th2d_bkg_channel->SetBinContent(16609,7033); + th2d_bkg_channel->SetBinContent(16610,6979); + th2d_bkg_channel->SetBinContent(16611,7010); + th2d_bkg_channel->SetBinContent(16612,6858); + th2d_bkg_channel->SetBinContent(16613,6314); + th2d_bkg_channel->SetBinContent(16614,3268); + th2d_bkg_channel->SetBinContent(16615,239109); + th2d_bkg_channel->SetBinContent(16617,527); + th2d_bkg_channel->SetBinContent(16618,590); + th2d_bkg_channel->SetBinContent(16619,619); + th2d_bkg_channel->SetBinContent(16620,602); + th2d_bkg_channel->SetBinContent(16621,8234); + th2d_bkg_channel->SetBinContent(16622,8529); + th2d_bkg_channel->SetBinContent(16623,8419); + th2d_bkg_channel->SetBinContent(16624,8837); + th2d_bkg_channel->SetBinContent(16625,8429); + th2d_bkg_channel->SetBinContent(16626,8689); + th2d_bkg_channel->SetBinContent(16627,8516); + th2d_bkg_channel->SetBinContent(16628,8631); + th2d_bkg_channel->SetBinContent(16629,8691); + th2d_bkg_channel->SetBinContent(16630,8805); + th2d_bkg_channel->SetBinContent(16631,8940); + th2d_bkg_channel->SetBinContent(16632,8799); + th2d_bkg_channel->SetBinContent(16633,8911); + th2d_bkg_channel->SetBinContent(16634,9238); + th2d_bkg_channel->SetBinContent(16635,8971); + th2d_bkg_channel->SetBinContent(16636,8941); + th2d_bkg_channel->SetBinContent(16637,8869); + th2d_bkg_channel->SetBinContent(16638,9100); + th2d_bkg_channel->SetBinContent(16639,9054); + th2d_bkg_channel->SetBinContent(16640,8888); + th2d_bkg_channel->SetBinContent(16641,8654); + th2d_bkg_channel->SetBinContent(16642,9080); + th2d_bkg_channel->SetBinContent(16643,8871); + th2d_bkg_channel->SetBinContent(16644,9097); + th2d_bkg_channel->SetBinContent(16645,9006); + th2d_bkg_channel->SetBinContent(16646,9039); + th2d_bkg_channel->SetBinContent(16647,9134); + th2d_bkg_channel->SetBinContent(16648,9410); + th2d_bkg_channel->SetBinContent(16649,9340); + th2d_bkg_channel->SetBinContent(16650,9361); + th2d_bkg_channel->SetBinContent(16651,9023); + th2d_bkg_channel->SetBinContent(16652,9447); + th2d_bkg_channel->SetBinContent(16653,9083); + th2d_bkg_channel->SetBinContent(16654,9274); + th2d_bkg_channel->SetBinContent(16655,9118); + th2d_bkg_channel->SetBinContent(16656,9212); + th2d_bkg_channel->SetBinContent(16657,9148); + th2d_bkg_channel->SetBinContent(16658,9328); + th2d_bkg_channel->SetBinContent(16659,8953); + th2d_bkg_channel->SetBinContent(16660,9444); + th2d_bkg_channel->SetBinContent(16661,8992); + th2d_bkg_channel->SetBinContent(16662,9106); + th2d_bkg_channel->SetBinContent(16663,9266); + th2d_bkg_channel->SetBinContent(16664,9187); + th2d_bkg_channel->SetBinContent(16665,9098); + th2d_bkg_channel->SetBinContent(16666,8919); + th2d_bkg_channel->SetBinContent(16667,8926); + th2d_bkg_channel->SetBinContent(16668,8946); + th2d_bkg_channel->SetBinContent(16669,8773); + th2d_bkg_channel->SetBinContent(16670,8852); + th2d_bkg_channel->SetBinContent(16671,8772); + th2d_bkg_channel->SetBinContent(16672,8985); + th2d_bkg_channel->SetBinContent(16673,8726); + th2d_bkg_channel->SetBinContent(16674,8685); + th2d_bkg_channel->SetBinContent(16675,8545); + th2d_bkg_channel->SetBinContent(16676,8545); + th2d_bkg_channel->SetBinContent(16677,8027); + th2d_bkg_channel->SetBinContent(16678,8190); + th2d_bkg_channel->SetBinContent(16679,7575); + th2d_bkg_channel->SetBinContent(16680,7023); + th2d_bkg_channel->SetBinContent(16681,3701); + th2d_bkg_channel->SetBinContent(16682,306542); + th2d_bkg_channel->SetBinContent(16684,638); + th2d_bkg_channel->SetBinContent(16685,693); + th2d_bkg_channel->SetBinContent(16686,749); + th2d_bkg_channel->SetBinContent(16687,750); + th2d_bkg_channel->SetBinContent(16688,9163); + th2d_bkg_channel->SetBinContent(16689,9423); + th2d_bkg_channel->SetBinContent(16690,9536); + th2d_bkg_channel->SetBinContent(16691,9624); + th2d_bkg_channel->SetBinContent(16692,9541); + th2d_bkg_channel->SetBinContent(16693,10109); + th2d_bkg_channel->SetBinContent(16694,9662); + th2d_bkg_channel->SetBinContent(16695,10027); + th2d_bkg_channel->SetBinContent(16696,9790); + th2d_bkg_channel->SetBinContent(16697,10033); + th2d_bkg_channel->SetBinContent(16698,9596); + th2d_bkg_channel->SetBinContent(16699,10006); + th2d_bkg_channel->SetBinContent(16700,10117); + th2d_bkg_channel->SetBinContent(16701,10578); + th2d_bkg_channel->SetBinContent(16702,10424); + th2d_bkg_channel->SetBinContent(16703,10449); + th2d_bkg_channel->SetBinContent(16704,10714); + th2d_bkg_channel->SetBinContent(16705,10704); + th2d_bkg_channel->SetBinContent(16706,10366); + th2d_bkg_channel->SetBinContent(16707,10786); + th2d_bkg_channel->SetBinContent(16708,10395); + th2d_bkg_channel->SetBinContent(16709,10621); + th2d_bkg_channel->SetBinContent(16710,10355); + th2d_bkg_channel->SetBinContent(16711,10899); + th2d_bkg_channel->SetBinContent(16712,10615); + th2d_bkg_channel->SetBinContent(16713,10740); + th2d_bkg_channel->SetBinContent(16714,10669); + th2d_bkg_channel->SetBinContent(16715,11056); + th2d_bkg_channel->SetBinContent(16716,10280); + th2d_bkg_channel->SetBinContent(16717,11072); + th2d_bkg_channel->SetBinContent(16718,10646); + th2d_bkg_channel->SetBinContent(16719,11034); + th2d_bkg_channel->SetBinContent(16720,10591); + th2d_bkg_channel->SetBinContent(16721,10564); + th2d_bkg_channel->SetBinContent(16722,10501); + th2d_bkg_channel->SetBinContent(16723,10812); + th2d_bkg_channel->SetBinContent(16724,10371); + th2d_bkg_channel->SetBinContent(16725,10578); + th2d_bkg_channel->SetBinContent(16726,10412); + th2d_bkg_channel->SetBinContent(16727,10532); + th2d_bkg_channel->SetBinContent(16728,10404); + th2d_bkg_channel->SetBinContent(16729,10391); + th2d_bkg_channel->SetBinContent(16730,10026); + th2d_bkg_channel->SetBinContent(16731,10655); + th2d_bkg_channel->SetBinContent(16732,10077); + th2d_bkg_channel->SetBinContent(16733,10374); + th2d_bkg_channel->SetBinContent(16734,9993); + th2d_bkg_channel->SetBinContent(16735,10318); + th2d_bkg_channel->SetBinContent(16736,10039); + th2d_bkg_channel->SetBinContent(16737,10417); + th2d_bkg_channel->SetBinContent(16738,9902); + th2d_bkg_channel->SetBinContent(16739,10120); + th2d_bkg_channel->SetBinContent(16740,9619); + th2d_bkg_channel->SetBinContent(16741,9823); + th2d_bkg_channel->SetBinContent(16742,9504); + th2d_bkg_channel->SetBinContent(16743,9535); + th2d_bkg_channel->SetBinContent(16744,8901); + th2d_bkg_channel->SetBinContent(16745,9089); + th2d_bkg_channel->SetBinContent(16746,8567); + th2d_bkg_channel->SetBinContent(16747,7613); + th2d_bkg_channel->SetBinContent(16748,4082); + th2d_bkg_channel->SetBinContent(16749,360843); + th2d_bkg_channel->SetBinContent(16751,637); + th2d_bkg_channel->SetBinContent(16752,731); + th2d_bkg_channel->SetBinContent(16753,770); + th2d_bkg_channel->SetBinContent(16754,798); + th2d_bkg_channel->SetBinContent(16755,9779); + th2d_bkg_channel->SetBinContent(16756,10329); + th2d_bkg_channel->SetBinContent(16757,10007); + th2d_bkg_channel->SetBinContent(16758,10488); + th2d_bkg_channel->SetBinContent(16759,10108); + th2d_bkg_channel->SetBinContent(16760,10564); + th2d_bkg_channel->SetBinContent(16761,10188); + th2d_bkg_channel->SetBinContent(16762,10590); + th2d_bkg_channel->SetBinContent(16763,10637); + th2d_bkg_channel->SetBinContent(16764,10794); + th2d_bkg_channel->SetBinContent(16765,10723); + th2d_bkg_channel->SetBinContent(16766,11286); + th2d_bkg_channel->SetBinContent(16767,10665); + th2d_bkg_channel->SetBinContent(16768,11515); + th2d_bkg_channel->SetBinContent(16769,11191); + th2d_bkg_channel->SetBinContent(16770,11350); + th2d_bkg_channel->SetBinContent(16771,10970); + th2d_bkg_channel->SetBinContent(16772,11339); + th2d_bkg_channel->SetBinContent(16773,11247); + th2d_bkg_channel->SetBinContent(16774,11417); + th2d_bkg_channel->SetBinContent(16775,10918); + th2d_bkg_channel->SetBinContent(16776,11443); + th2d_bkg_channel->SetBinContent(16777,11332); + th2d_bkg_channel->SetBinContent(16778,11780); + th2d_bkg_channel->SetBinContent(16779,11670); + th2d_bkg_channel->SetBinContent(16780,11735); + th2d_bkg_channel->SetBinContent(16781,11578); + th2d_bkg_channel->SetBinContent(16782,11971); + th2d_bkg_channel->SetBinContent(16783,11722); + th2d_bkg_channel->SetBinContent(16784,12038); + th2d_bkg_channel->SetBinContent(16785,11869); + th2d_bkg_channel->SetBinContent(16786,11625); + th2d_bkg_channel->SetBinContent(16787,11295); + th2d_bkg_channel->SetBinContent(16788,11635); + th2d_bkg_channel->SetBinContent(16789,11177); + th2d_bkg_channel->SetBinContent(16790,11460); + th2d_bkg_channel->SetBinContent(16791,11060); + th2d_bkg_channel->SetBinContent(16792,11275); + th2d_bkg_channel->SetBinContent(16793,10703); + th2d_bkg_channel->SetBinContent(16794,11182); + th2d_bkg_channel->SetBinContent(16795,11059); + th2d_bkg_channel->SetBinContent(16796,10930); + th2d_bkg_channel->SetBinContent(16797,10771); + th2d_bkg_channel->SetBinContent(16798,11067); + th2d_bkg_channel->SetBinContent(16799,11013); + th2d_bkg_channel->SetBinContent(16800,10944); + th2d_bkg_channel->SetBinContent(16801,10878); + th2d_bkg_channel->SetBinContent(16802,10942); + th2d_bkg_channel->SetBinContent(16803,10362); + th2d_bkg_channel->SetBinContent(16804,10661); + th2d_bkg_channel->SetBinContent(16805,10466); + th2d_bkg_channel->SetBinContent(16806,10585); + th2d_bkg_channel->SetBinContent(16807,10479); + th2d_bkg_channel->SetBinContent(16808,10292); + th2d_bkg_channel->SetBinContent(16809,9942); + th2d_bkg_channel->SetBinContent(16810,10146); + th2d_bkg_channel->SetBinContent(16811,9538); + th2d_bkg_channel->SetBinContent(16812,9424); + th2d_bkg_channel->SetBinContent(16813,8655); + th2d_bkg_channel->SetBinContent(16814,8035); + th2d_bkg_channel->SetBinContent(16815,4179); + th2d_bkg_channel->SetBinContent(16816,389578); + th2d_bkg_channel->SetBinContent(16818,580); + th2d_bkg_channel->SetBinContent(16819,734); + th2d_bkg_channel->SetBinContent(16820,759); + th2d_bkg_channel->SetBinContent(16821,793); + th2d_bkg_channel->SetBinContent(16822,9771); + th2d_bkg_channel->SetBinContent(16823,10188); + th2d_bkg_channel->SetBinContent(16824,9700); + th2d_bkg_channel->SetBinContent(16825,10196); + th2d_bkg_channel->SetBinContent(16826,10151); + th2d_bkg_channel->SetBinContent(16827,10241); + th2d_bkg_channel->SetBinContent(16828,10269); + th2d_bkg_channel->SetBinContent(16829,10828); + th2d_bkg_channel->SetBinContent(16830,10242); + th2d_bkg_channel->SetBinContent(16831,10801); + th2d_bkg_channel->SetBinContent(16832,10531); + th2d_bkg_channel->SetBinContent(16833,11138); + th2d_bkg_channel->SetBinContent(16834,10748); + th2d_bkg_channel->SetBinContent(16835,11208); + th2d_bkg_channel->SetBinContent(16836,10732); + th2d_bkg_channel->SetBinContent(16837,11481); + th2d_bkg_channel->SetBinContent(16838,10734); + th2d_bkg_channel->SetBinContent(16839,11467); + th2d_bkg_channel->SetBinContent(16840,11093); + th2d_bkg_channel->SetBinContent(16841,11256); + th2d_bkg_channel->SetBinContent(16842,11285); + th2d_bkg_channel->SetBinContent(16843,11540); + th2d_bkg_channel->SetBinContent(16844,11453); + th2d_bkg_channel->SetBinContent(16845,11704); + th2d_bkg_channel->SetBinContent(16846,11370); + th2d_bkg_channel->SetBinContent(16847,11788); + th2d_bkg_channel->SetBinContent(16848,11296); + th2d_bkg_channel->SetBinContent(16849,11700); + th2d_bkg_channel->SetBinContent(16850,11431); + th2d_bkg_channel->SetBinContent(16851,11487); + th2d_bkg_channel->SetBinContent(16852,11369); + th2d_bkg_channel->SetBinContent(16853,11628); + th2d_bkg_channel->SetBinContent(16854,11250); + th2d_bkg_channel->SetBinContent(16855,11214); + th2d_bkg_channel->SetBinContent(16856,11143); + th2d_bkg_channel->SetBinContent(16857,11243); + th2d_bkg_channel->SetBinContent(16858,11115); + th2d_bkg_channel->SetBinContent(16859,11119); + th2d_bkg_channel->SetBinContent(16860,10963); + th2d_bkg_channel->SetBinContent(16861,11328); + th2d_bkg_channel->SetBinContent(16862,10885); + th2d_bkg_channel->SetBinContent(16863,11208); + th2d_bkg_channel->SetBinContent(16864,10839); + th2d_bkg_channel->SetBinContent(16865,10871); + th2d_bkg_channel->SetBinContent(16866,10859); + th2d_bkg_channel->SetBinContent(16867,11135); + th2d_bkg_channel->SetBinContent(16868,10819); + th2d_bkg_channel->SetBinContent(16869,10852); + th2d_bkg_channel->SetBinContent(16870,10372); + th2d_bkg_channel->SetBinContent(16871,10784); + th2d_bkg_channel->SetBinContent(16872,10564); + th2d_bkg_channel->SetBinContent(16873,10409); + th2d_bkg_channel->SetBinContent(16874,10186); + th2d_bkg_channel->SetBinContent(16875,10298); + th2d_bkg_channel->SetBinContent(16876,9653); + th2d_bkg_channel->SetBinContent(16877,9922); + th2d_bkg_channel->SetBinContent(16878,9695); + th2d_bkg_channel->SetBinContent(16879,9452); + th2d_bkg_channel->SetBinContent(16880,8605); + th2d_bkg_channel->SetBinContent(16881,7930); + th2d_bkg_channel->SetBinContent(16882,4155); + th2d_bkg_channel->SetBinContent(16883,387961); + th2d_bkg_channel->SetBinContent(16885,567); + th2d_bkg_channel->SetBinContent(16886,690); + th2d_bkg_channel->SetBinContent(16887,691); + th2d_bkg_channel->SetBinContent(16888,669); + th2d_bkg_channel->SetBinContent(16889,9059); + th2d_bkg_channel->SetBinContent(16890,9531); + th2d_bkg_channel->SetBinContent(16891,9071); + th2d_bkg_channel->SetBinContent(16892,9480); + th2d_bkg_channel->SetBinContent(16893,9528); + th2d_bkg_channel->SetBinContent(16894,9696); + th2d_bkg_channel->SetBinContent(16895,9575); + th2d_bkg_channel->SetBinContent(16896,9935); + th2d_bkg_channel->SetBinContent(16897,9841); + th2d_bkg_channel->SetBinContent(16898,10168); + th2d_bkg_channel->SetBinContent(16899,9749); + th2d_bkg_channel->SetBinContent(16900,10414); + th2d_bkg_channel->SetBinContent(16901,9711); + th2d_bkg_channel->SetBinContent(16902,10117); + th2d_bkg_channel->SetBinContent(16903,9819); + th2d_bkg_channel->SetBinContent(16904,10240); + th2d_bkg_channel->SetBinContent(16905,10082); + th2d_bkg_channel->SetBinContent(16906,10188); + th2d_bkg_channel->SetBinContent(16907,10297); + th2d_bkg_channel->SetBinContent(16908,10449); + th2d_bkg_channel->SetBinContent(16909,10593); + th2d_bkg_channel->SetBinContent(16910,10643); + th2d_bkg_channel->SetBinContent(16911,10125); + th2d_bkg_channel->SetBinContent(16912,10739); + th2d_bkg_channel->SetBinContent(16913,10256); + th2d_bkg_channel->SetBinContent(16914,10556); + th2d_bkg_channel->SetBinContent(16915,10200); + th2d_bkg_channel->SetBinContent(16916,10394); + th2d_bkg_channel->SetBinContent(16917,10279); + th2d_bkg_channel->SetBinContent(16918,10320); + th2d_bkg_channel->SetBinContent(16919,10495); + th2d_bkg_channel->SetBinContent(16920,10508); + th2d_bkg_channel->SetBinContent(16921,10144); + th2d_bkg_channel->SetBinContent(16922,10439); + th2d_bkg_channel->SetBinContent(16923,9997); + th2d_bkg_channel->SetBinContent(16924,10362); + th2d_bkg_channel->SetBinContent(16925,9952); + th2d_bkg_channel->SetBinContent(16926,10240); + th2d_bkg_channel->SetBinContent(16927,10256); + th2d_bkg_channel->SetBinContent(16928,10111); + th2d_bkg_channel->SetBinContent(16929,10370); + th2d_bkg_channel->SetBinContent(16930,10435); + th2d_bkg_channel->SetBinContent(16931,9857); + th2d_bkg_channel->SetBinContent(16932,10057); + th2d_bkg_channel->SetBinContent(16933,9854); + th2d_bkg_channel->SetBinContent(16934,10209); + th2d_bkg_channel->SetBinContent(16935,9682); + th2d_bkg_channel->SetBinContent(16936,10015); + th2d_bkg_channel->SetBinContent(16937,9678); + th2d_bkg_channel->SetBinContent(16938,10100); + th2d_bkg_channel->SetBinContent(16939,9549); + th2d_bkg_channel->SetBinContent(16940,9728); + th2d_bkg_channel->SetBinContent(16941,9355); + th2d_bkg_channel->SetBinContent(16942,9472); + th2d_bkg_channel->SetBinContent(16943,9157); + th2d_bkg_channel->SetBinContent(16944,9265); + th2d_bkg_channel->SetBinContent(16945,8935); + th2d_bkg_channel->SetBinContent(16946,8944); + th2d_bkg_channel->SetBinContent(16947,8367); + th2d_bkg_channel->SetBinContent(16948,7504); + th2d_bkg_channel->SetBinContent(16949,3935); + th2d_bkg_channel->SetBinContent(16950,355776); + th2d_bkg_channel->SetBinContent(16952,517); + th2d_bkg_channel->SetBinContent(16953,579); + th2d_bkg_channel->SetBinContent(16954,617); + th2d_bkg_channel->SetBinContent(16955,600); + th2d_bkg_channel->SetBinContent(16956,7843); + th2d_bkg_channel->SetBinContent(16957,8243); + th2d_bkg_channel->SetBinContent(16958,7800); + th2d_bkg_channel->SetBinContent(16959,8081); + th2d_bkg_channel->SetBinContent(16960,8133); + th2d_bkg_channel->SetBinContent(16961,8212); + th2d_bkg_channel->SetBinContent(16962,8232); + th2d_bkg_channel->SetBinContent(16963,8429); + th2d_bkg_channel->SetBinContent(16964,8402); + th2d_bkg_channel->SetBinContent(16965,8662); + th2d_bkg_channel->SetBinContent(16966,8493); + th2d_bkg_channel->SetBinContent(16967,8667); + th2d_bkg_channel->SetBinContent(16968,8306); + th2d_bkg_channel->SetBinContent(16969,8541); + th2d_bkg_channel->SetBinContent(16970,8503); + th2d_bkg_channel->SetBinContent(16971,8795); + th2d_bkg_channel->SetBinContent(16972,8240); + th2d_bkg_channel->SetBinContent(16973,8518); + th2d_bkg_channel->SetBinContent(16974,8612); + th2d_bkg_channel->SetBinContent(16975,8699); + th2d_bkg_channel->SetBinContent(16976,8793); + th2d_bkg_channel->SetBinContent(16977,8696); + th2d_bkg_channel->SetBinContent(16978,8577); + th2d_bkg_channel->SetBinContent(16979,8596); + th2d_bkg_channel->SetBinContent(16980,8492); + th2d_bkg_channel->SetBinContent(16981,8943); + th2d_bkg_channel->SetBinContent(16982,8694); + th2d_bkg_channel->SetBinContent(16983,8707); + th2d_bkg_channel->SetBinContent(16984,8616); + th2d_bkg_channel->SetBinContent(16985,8754); + th2d_bkg_channel->SetBinContent(16986,8483); + th2d_bkg_channel->SetBinContent(16987,8559); + th2d_bkg_channel->SetBinContent(16988,8423); + th2d_bkg_channel->SetBinContent(16989,8539); + th2d_bkg_channel->SetBinContent(16990,8504); + th2d_bkg_channel->SetBinContent(16991,8819); + th2d_bkg_channel->SetBinContent(16992,8870); + th2d_bkg_channel->SetBinContent(16993,8255); + th2d_bkg_channel->SetBinContent(16994,8595); + th2d_bkg_channel->SetBinContent(16995,8418); + th2d_bkg_channel->SetBinContent(16996,8444); + th2d_bkg_channel->SetBinContent(16997,8617); + th2d_bkg_channel->SetBinContent(16998,8663); + th2d_bkg_channel->SetBinContent(16999,8417); + th2d_bkg_channel->SetBinContent(17000,8359); + th2d_bkg_channel->SetBinContent(17001,8510); + th2d_bkg_channel->SetBinContent(17002,8583); + th2d_bkg_channel->SetBinContent(17003,8651); + th2d_bkg_channel->SetBinContent(17004,8413); + th2d_bkg_channel->SetBinContent(17005,8563); + th2d_bkg_channel->SetBinContent(17006,8398); + th2d_bkg_channel->SetBinContent(17007,8315); + th2d_bkg_channel->SetBinContent(17008,8101); + th2d_bkg_channel->SetBinContent(17009,8500); + th2d_bkg_channel->SetBinContent(17010,8050); + th2d_bkg_channel->SetBinContent(17011,8382); + th2d_bkg_channel->SetBinContent(17012,7786); + th2d_bkg_channel->SetBinContent(17013,8005); + th2d_bkg_channel->SetBinContent(17014,7249); + th2d_bkg_channel->SetBinContent(17015,6803); + th2d_bkg_channel->SetBinContent(17016,3721); + th2d_bkg_channel->SetBinContent(17017,298467); + th2d_bkg_channel->SetBinContent(17019,458); + th2d_bkg_channel->SetBinContent(17020,467); + th2d_bkg_channel->SetBinContent(17021,513); + th2d_bkg_channel->SetBinContent(17022,468); + th2d_bkg_channel->SetBinContent(17023,6695); + th2d_bkg_channel->SetBinContent(17024,6951); + th2d_bkg_channel->SetBinContent(17025,6498); + th2d_bkg_channel->SetBinContent(17026,6606); + th2d_bkg_channel->SetBinContent(17027,6724); + th2d_bkg_channel->SetBinContent(17028,6621); + th2d_bkg_channel->SetBinContent(17029,6716); + th2d_bkg_channel->SetBinContent(17030,6518); + th2d_bkg_channel->SetBinContent(17031,6676); + th2d_bkg_channel->SetBinContent(17032,6656); + th2d_bkg_channel->SetBinContent(17033,6793); + th2d_bkg_channel->SetBinContent(17034,6528); + th2d_bkg_channel->SetBinContent(17035,6716); + th2d_bkg_channel->SetBinContent(17036,6660); + th2d_bkg_channel->SetBinContent(17037,6762); + th2d_bkg_channel->SetBinContent(17038,6895); + th2d_bkg_channel->SetBinContent(17039,6598); + th2d_bkg_channel->SetBinContent(17040,6746); + th2d_bkg_channel->SetBinContent(17041,6513); + th2d_bkg_channel->SetBinContent(17042,6662); + th2d_bkg_channel->SetBinContent(17043,6724); + th2d_bkg_channel->SetBinContent(17044,6318); + th2d_bkg_channel->SetBinContent(17045,6762); + th2d_bkg_channel->SetBinContent(17046,6778); + th2d_bkg_channel->SetBinContent(17047,6611); + th2d_bkg_channel->SetBinContent(17048,6547); + th2d_bkg_channel->SetBinContent(17049,6757); + th2d_bkg_channel->SetBinContent(17050,6610); + th2d_bkg_channel->SetBinContent(17051,6931); + th2d_bkg_channel->SetBinContent(17052,6652); + th2d_bkg_channel->SetBinContent(17053,6592); + th2d_bkg_channel->SetBinContent(17054,6810); + th2d_bkg_channel->SetBinContent(17055,6773); + th2d_bkg_channel->SetBinContent(17056,6697); + th2d_bkg_channel->SetBinContent(17057,6642); + th2d_bkg_channel->SetBinContent(17058,6903); + th2d_bkg_channel->SetBinContent(17059,6791); + th2d_bkg_channel->SetBinContent(17060,6719); + th2d_bkg_channel->SetBinContent(17061,6850); + th2d_bkg_channel->SetBinContent(17062,6534); + th2d_bkg_channel->SetBinContent(17063,6612); + th2d_bkg_channel->SetBinContent(17064,6931); + th2d_bkg_channel->SetBinContent(17065,6887); + th2d_bkg_channel->SetBinContent(17066,6593); + th2d_bkg_channel->SetBinContent(17067,6848); + th2d_bkg_channel->SetBinContent(17068,6835); + th2d_bkg_channel->SetBinContent(17069,6654); + th2d_bkg_channel->SetBinContent(17070,6868); + th2d_bkg_channel->SetBinContent(17071,6692); + th2d_bkg_channel->SetBinContent(17072,6743); + th2d_bkg_channel->SetBinContent(17073,6545); + th2d_bkg_channel->SetBinContent(17074,6721); + th2d_bkg_channel->SetBinContent(17075,6523); + th2d_bkg_channel->SetBinContent(17076,6660); + th2d_bkg_channel->SetBinContent(17077,6596); + th2d_bkg_channel->SetBinContent(17078,6729); + th2d_bkg_channel->SetBinContent(17079,6539); + th2d_bkg_channel->SetBinContent(17080,6607); + th2d_bkg_channel->SetBinContent(17081,6322); + th2d_bkg_channel->SetBinContent(17082,6130); + th2d_bkg_channel->SetBinContent(17083,3377); + th2d_bkg_channel->SetBinContent(17084,232637); + th2d_bkg_channel->SetBinContent(17086,374); + th2d_bkg_channel->SetBinContent(17087,370); + th2d_bkg_channel->SetBinContent(17088,319); + th2d_bkg_channel->SetBinContent(17089,385); + th2d_bkg_channel->SetBinContent(17090,5413); + th2d_bkg_channel->SetBinContent(17091,5241); + th2d_bkg_channel->SetBinContent(17092,5315); + th2d_bkg_channel->SetBinContent(17093,4967); + th2d_bkg_channel->SetBinContent(17094,5047); + th2d_bkg_channel->SetBinContent(17095,5065); + th2d_bkg_channel->SetBinContent(17096,5287); + th2d_bkg_channel->SetBinContent(17097,5043); + th2d_bkg_channel->SetBinContent(17098,5154); + th2d_bkg_channel->SetBinContent(17099,4968); + th2d_bkg_channel->SetBinContent(17100,4917); + th2d_bkg_channel->SetBinContent(17101,4814); + th2d_bkg_channel->SetBinContent(17102,5132); + th2d_bkg_channel->SetBinContent(17103,4744); + th2d_bkg_channel->SetBinContent(17104,4866); + th2d_bkg_channel->SetBinContent(17105,4779); + th2d_bkg_channel->SetBinContent(17106,5063); + th2d_bkg_channel->SetBinContent(17107,4718); + th2d_bkg_channel->SetBinContent(17108,4956); + th2d_bkg_channel->SetBinContent(17109,4707); + th2d_bkg_channel->SetBinContent(17110,4840); + th2d_bkg_channel->SetBinContent(17111,4758); + th2d_bkg_channel->SetBinContent(17112,4750); + th2d_bkg_channel->SetBinContent(17113,4652); + th2d_bkg_channel->SetBinContent(17114,4724); + th2d_bkg_channel->SetBinContent(17115,4538); + th2d_bkg_channel->SetBinContent(17116,4692); + th2d_bkg_channel->SetBinContent(17117,4735); + th2d_bkg_channel->SetBinContent(17118,4996); + th2d_bkg_channel->SetBinContent(17119,4620); + th2d_bkg_channel->SetBinContent(17120,4843); + th2d_bkg_channel->SetBinContent(17121,4694); + th2d_bkg_channel->SetBinContent(17122,4916); + th2d_bkg_channel->SetBinContent(17123,4814); + th2d_bkg_channel->SetBinContent(17124,4842); + th2d_bkg_channel->SetBinContent(17125,5029); + th2d_bkg_channel->SetBinContent(17126,4896); + th2d_bkg_channel->SetBinContent(17127,4736); + th2d_bkg_channel->SetBinContent(17128,5070); + th2d_bkg_channel->SetBinContent(17129,4937); + th2d_bkg_channel->SetBinContent(17130,4862); + th2d_bkg_channel->SetBinContent(17131,5003); + th2d_bkg_channel->SetBinContent(17132,5012); + th2d_bkg_channel->SetBinContent(17133,4916); + th2d_bkg_channel->SetBinContent(17134,5043); + th2d_bkg_channel->SetBinContent(17135,5120); + th2d_bkg_channel->SetBinContent(17136,5062); + th2d_bkg_channel->SetBinContent(17137,5204); + th2d_bkg_channel->SetBinContent(17138,5116); + th2d_bkg_channel->SetBinContent(17139,5017); + th2d_bkg_channel->SetBinContent(17140,5290); + th2d_bkg_channel->SetBinContent(17141,4930); + th2d_bkg_channel->SetBinContent(17142,5081); + th2d_bkg_channel->SetBinContent(17143,5255); + th2d_bkg_channel->SetBinContent(17144,5231); + th2d_bkg_channel->SetBinContent(17145,5116); + th2d_bkg_channel->SetBinContent(17146,5193); + th2d_bkg_channel->SetBinContent(17147,5211); + th2d_bkg_channel->SetBinContent(17148,5256); + th2d_bkg_channel->SetBinContent(17149,5282); + th2d_bkg_channel->SetBinContent(17150,2790); + th2d_bkg_channel->SetBinContent(17151,165237); + th2d_bkg_channel->SetBinContent(17153,252); + th2d_bkg_channel->SetBinContent(17154,276); + th2d_bkg_channel->SetBinContent(17155,273); + th2d_bkg_channel->SetBinContent(17156,252); + th2d_bkg_channel->SetBinContent(17157,3771); + th2d_bkg_channel->SetBinContent(17158,3708); + th2d_bkg_channel->SetBinContent(17159,3786); + th2d_bkg_channel->SetBinContent(17160,3639); + th2d_bkg_channel->SetBinContent(17161,3710); + th2d_bkg_channel->SetBinContent(17162,3607); + th2d_bkg_channel->SetBinContent(17163,3789); + th2d_bkg_channel->SetBinContent(17164,3409); + th2d_bkg_channel->SetBinContent(17165,3607); + th2d_bkg_channel->SetBinContent(17166,3403); + th2d_bkg_channel->SetBinContent(17167,3623); + th2d_bkg_channel->SetBinContent(17168,3373); + th2d_bkg_channel->SetBinContent(17169,3657); + th2d_bkg_channel->SetBinContent(17170,3290); + th2d_bkg_channel->SetBinContent(17171,3482); + th2d_bkg_channel->SetBinContent(17172,3302); + th2d_bkg_channel->SetBinContent(17173,3369); + th2d_bkg_channel->SetBinContent(17174,3230); + th2d_bkg_channel->SetBinContent(17175,3165); + th2d_bkg_channel->SetBinContent(17176,3171); + th2d_bkg_channel->SetBinContent(17177,3450); + th2d_bkg_channel->SetBinContent(17178,3271); + th2d_bkg_channel->SetBinContent(17179,3419); + th2d_bkg_channel->SetBinContent(17180,3045); + th2d_bkg_channel->SetBinContent(17181,3375); + th2d_bkg_channel->SetBinContent(17182,3153); + th2d_bkg_channel->SetBinContent(17183,3240); + th2d_bkg_channel->SetBinContent(17184,3097); + th2d_bkg_channel->SetBinContent(17185,3286); + th2d_bkg_channel->SetBinContent(17186,3131); + th2d_bkg_channel->SetBinContent(17187,3256); + th2d_bkg_channel->SetBinContent(17188,3092); + th2d_bkg_channel->SetBinContent(17189,3298); + th2d_bkg_channel->SetBinContent(17190,3311); + th2d_bkg_channel->SetBinContent(17191,3139); + th2d_bkg_channel->SetBinContent(17192,3409); + th2d_bkg_channel->SetBinContent(17193,3483); + th2d_bkg_channel->SetBinContent(17194,3270); + th2d_bkg_channel->SetBinContent(17195,3572); + th2d_bkg_channel->SetBinContent(17196,3132); + th2d_bkg_channel->SetBinContent(17197,3301); + th2d_bkg_channel->SetBinContent(17198,3341); + th2d_bkg_channel->SetBinContent(17199,3391); + th2d_bkg_channel->SetBinContent(17200,3197); + th2d_bkg_channel->SetBinContent(17201,3446); + th2d_bkg_channel->SetBinContent(17202,3425); + th2d_bkg_channel->SetBinContent(17203,3396); + th2d_bkg_channel->SetBinContent(17204,3443); + th2d_bkg_channel->SetBinContent(17205,3681); + th2d_bkg_channel->SetBinContent(17206,3547); + th2d_bkg_channel->SetBinContent(17207,3565); + th2d_bkg_channel->SetBinContent(17208,3537); + th2d_bkg_channel->SetBinContent(17209,3779); + th2d_bkg_channel->SetBinContent(17210,3688); + th2d_bkg_channel->SetBinContent(17211,3755); + th2d_bkg_channel->SetBinContent(17212,3658); + th2d_bkg_channel->SetBinContent(17213,4050); + th2d_bkg_channel->SetBinContent(17214,3858); + th2d_bkg_channel->SetBinContent(17215,4074); + th2d_bkg_channel->SetBinContent(17216,4237); + th2d_bkg_channel->SetBinContent(17217,2390); + th2d_bkg_channel->SetBinContent(17218,109975); + th2d_bkg_channel->SetBinContent(17220,198); + th2d_bkg_channel->SetBinContent(17221,184); + th2d_bkg_channel->SetBinContent(17222,150); + th2d_bkg_channel->SetBinContent(17223,170); + th2d_bkg_channel->SetBinContent(17224,2977); + th2d_bkg_channel->SetBinContent(17225,2600); + th2d_bkg_channel->SetBinContent(17226,2678); + th2d_bkg_channel->SetBinContent(17227,2497); + th2d_bkg_channel->SetBinContent(17228,2596); + th2d_bkg_channel->SetBinContent(17229,2353); + th2d_bkg_channel->SetBinContent(17230,2566); + th2d_bkg_channel->SetBinContent(17231,2356); + th2d_bkg_channel->SetBinContent(17232,2407); + th2d_bkg_channel->SetBinContent(17233,2314); + th2d_bkg_channel->SetBinContent(17234,2404); + th2d_bkg_channel->SetBinContent(17235,2277); + th2d_bkg_channel->SetBinContent(17236,2358); + th2d_bkg_channel->SetBinContent(17237,2044); + th2d_bkg_channel->SetBinContent(17238,2193); + th2d_bkg_channel->SetBinContent(17239,2228); + th2d_bkg_channel->SetBinContent(17240,2103); + th2d_bkg_channel->SetBinContent(17241,2199); + th2d_bkg_channel->SetBinContent(17242,2161); + th2d_bkg_channel->SetBinContent(17243,2077); + th2d_bkg_channel->SetBinContent(17244,2269); + th2d_bkg_channel->SetBinContent(17245,1948); + th2d_bkg_channel->SetBinContent(17246,2235); + th2d_bkg_channel->SetBinContent(17247,1973); + th2d_bkg_channel->SetBinContent(17248,2119); + th2d_bkg_channel->SetBinContent(17249,1907); + th2d_bkg_channel->SetBinContent(17250,2128); + th2d_bkg_channel->SetBinContent(17251,1844); + th2d_bkg_channel->SetBinContent(17252,1960); + th2d_bkg_channel->SetBinContent(17253,1831); + th2d_bkg_channel->SetBinContent(17254,1915); + th2d_bkg_channel->SetBinContent(17255,1998); + th2d_bkg_channel->SetBinContent(17256,2073); + th2d_bkg_channel->SetBinContent(17257,2011); + th2d_bkg_channel->SetBinContent(17258,2091); + th2d_bkg_channel->SetBinContent(17259,2089); + th2d_bkg_channel->SetBinContent(17260,2181); + th2d_bkg_channel->SetBinContent(17261,2016); + th2d_bkg_channel->SetBinContent(17262,2190); + th2d_bkg_channel->SetBinContent(17263,2125); + th2d_bkg_channel->SetBinContent(17264,2061); + th2d_bkg_channel->SetBinContent(17265,2193); + th2d_bkg_channel->SetBinContent(17266,2165); + th2d_bkg_channel->SetBinContent(17267,2161); + th2d_bkg_channel->SetBinContent(17268,2435); + th2d_bkg_channel->SetBinContent(17269,2109); + th2d_bkg_channel->SetBinContent(17270,2376); + th2d_bkg_channel->SetBinContent(17271,2218); + th2d_bkg_channel->SetBinContent(17272,2359); + th2d_bkg_channel->SetBinContent(17273,2315); + th2d_bkg_channel->SetBinContent(17274,2447); + th2d_bkg_channel->SetBinContent(17275,2359); + th2d_bkg_channel->SetBinContent(17276,2544); + th2d_bkg_channel->SetBinContent(17277,2526); + th2d_bkg_channel->SetBinContent(17278,2570); + th2d_bkg_channel->SetBinContent(17279,2604); + th2d_bkg_channel->SetBinContent(17280,2959); + th2d_bkg_channel->SetBinContent(17281,2824); + th2d_bkg_channel->SetBinContent(17282,3198); + th2d_bkg_channel->SetBinContent(17283,3558); + th2d_bkg_channel->SetBinContent(17284,1902); + th2d_bkg_channel->SetBinContent(17285,67289); + th2d_bkg_channel->SetBinContent(17287,142); + th2d_bkg_channel->SetBinContent(17288,108); + th2d_bkg_channel->SetBinContent(17289,106); + th2d_bkg_channel->SetBinContent(17290,95); + th2d_bkg_channel->SetBinContent(17291,1889); + th2d_bkg_channel->SetBinContent(17292,1741); + th2d_bkg_channel->SetBinContent(17293,1810); + th2d_bkg_channel->SetBinContent(17294,1443); + th2d_bkg_channel->SetBinContent(17295,1772); + th2d_bkg_channel->SetBinContent(17296,1600); + th2d_bkg_channel->SetBinContent(17297,1536); + th2d_bkg_channel->SetBinContent(17298,1475); + th2d_bkg_channel->SetBinContent(17299,1564); + th2d_bkg_channel->SetBinContent(17300,1416); + th2d_bkg_channel->SetBinContent(17301,1550); + th2d_bkg_channel->SetBinContent(17302,1375); + th2d_bkg_channel->SetBinContent(17303,1445); + th2d_bkg_channel->SetBinContent(17304,1297); + th2d_bkg_channel->SetBinContent(17305,1301); + th2d_bkg_channel->SetBinContent(17306,1243); + th2d_bkg_channel->SetBinContent(17307,1318); + th2d_bkg_channel->SetBinContent(17308,1180); + th2d_bkg_channel->SetBinContent(17309,1354); + th2d_bkg_channel->SetBinContent(17310,1256); + th2d_bkg_channel->SetBinContent(17311,1328); + th2d_bkg_channel->SetBinContent(17312,1177); + th2d_bkg_channel->SetBinContent(17313,1354); + th2d_bkg_channel->SetBinContent(17314,1252); + th2d_bkg_channel->SetBinContent(17315,1270); + th2d_bkg_channel->SetBinContent(17316,1143); + th2d_bkg_channel->SetBinContent(17317,1316); + th2d_bkg_channel->SetBinContent(17318,1189); + th2d_bkg_channel->SetBinContent(17319,1221); + th2d_bkg_channel->SetBinContent(17320,1100); + th2d_bkg_channel->SetBinContent(17321,1199); + th2d_bkg_channel->SetBinContent(17322,1165); + th2d_bkg_channel->SetBinContent(17323,1286); + th2d_bkg_channel->SetBinContent(17324,1221); + th2d_bkg_channel->SetBinContent(17325,1179); + th2d_bkg_channel->SetBinContent(17326,1236); + th2d_bkg_channel->SetBinContent(17327,1289); + th2d_bkg_channel->SetBinContent(17328,1217); + th2d_bkg_channel->SetBinContent(17329,1341); + th2d_bkg_channel->SetBinContent(17330,1223); + th2d_bkg_channel->SetBinContent(17331,1378); + th2d_bkg_channel->SetBinContent(17332,1329); + th2d_bkg_channel->SetBinContent(17333,1406); + th2d_bkg_channel->SetBinContent(17334,1297); + th2d_bkg_channel->SetBinContent(17335,1456); + th2d_bkg_channel->SetBinContent(17336,1411); + th2d_bkg_channel->SetBinContent(17337,1516); + th2d_bkg_channel->SetBinContent(17338,1401); + th2d_bkg_channel->SetBinContent(17339,1558); + th2d_bkg_channel->SetBinContent(17340,1515); + th2d_bkg_channel->SetBinContent(17341,1625); + th2d_bkg_channel->SetBinContent(17342,1443); + th2d_bkg_channel->SetBinContent(17343,1648); + th2d_bkg_channel->SetBinContent(17344,1601); + th2d_bkg_channel->SetBinContent(17345,1758); + th2d_bkg_channel->SetBinContent(17346,1823); + th2d_bkg_channel->SetBinContent(17347,2025); + th2d_bkg_channel->SetBinContent(17348,1852); + th2d_bkg_channel->SetBinContent(17349,2195); + th2d_bkg_channel->SetBinContent(17350,2469); + th2d_bkg_channel->SetBinContent(17351,1419); + th2d_bkg_channel->SetBinContent(17352,39610); + th2d_bkg_channel->SetBinContent(17354,116); + th2d_bkg_channel->SetBinContent(17355,71); + th2d_bkg_channel->SetBinContent(17356,76); + th2d_bkg_channel->SetBinContent(17357,60); + th2d_bkg_channel->SetBinContent(17358,1234); + th2d_bkg_channel->SetBinContent(17359,1059); + th2d_bkg_channel->SetBinContent(17360,1041); + th2d_bkg_channel->SetBinContent(17361,1083); + th2d_bkg_channel->SetBinContent(17362,992); + th2d_bkg_channel->SetBinContent(17363,928); + th2d_bkg_channel->SetBinContent(17364,1016); + th2d_bkg_channel->SetBinContent(17365,970); + th2d_bkg_channel->SetBinContent(17366,956); + th2d_bkg_channel->SetBinContent(17367,857); + th2d_bkg_channel->SetBinContent(17368,1032); + th2d_bkg_channel->SetBinContent(17369,751); + th2d_bkg_channel->SetBinContent(17370,878); + th2d_bkg_channel->SetBinContent(17371,775); + th2d_bkg_channel->SetBinContent(17372,783); + th2d_bkg_channel->SetBinContent(17373,738); + th2d_bkg_channel->SetBinContent(17374,758); + th2d_bkg_channel->SetBinContent(17375,673); + th2d_bkg_channel->SetBinContent(17376,806); + th2d_bkg_channel->SetBinContent(17377,732); + th2d_bkg_channel->SetBinContent(17378,808); + th2d_bkg_channel->SetBinContent(17379,684); + th2d_bkg_channel->SetBinContent(17380,738); + th2d_bkg_channel->SetBinContent(17381,740); + th2d_bkg_channel->SetBinContent(17382,734); + th2d_bkg_channel->SetBinContent(17383,660); + th2d_bkg_channel->SetBinContent(17384,674); + th2d_bkg_channel->SetBinContent(17385,608); + th2d_bkg_channel->SetBinContent(17386,653); + th2d_bkg_channel->SetBinContent(17387,663); + th2d_bkg_channel->SetBinContent(17388,671); + th2d_bkg_channel->SetBinContent(17389,632); + th2d_bkg_channel->SetBinContent(17390,747); + th2d_bkg_channel->SetBinContent(17391,723); + th2d_bkg_channel->SetBinContent(17392,782); + th2d_bkg_channel->SetBinContent(17393,727); + th2d_bkg_channel->SetBinContent(17394,784); + th2d_bkg_channel->SetBinContent(17395,706); + th2d_bkg_channel->SetBinContent(17396,825); + th2d_bkg_channel->SetBinContent(17397,668); + th2d_bkg_channel->SetBinContent(17398,831); + th2d_bkg_channel->SetBinContent(17399,680); + th2d_bkg_channel->SetBinContent(17400,851); + th2d_bkg_channel->SetBinContent(17401,792); + th2d_bkg_channel->SetBinContent(17402,798); + th2d_bkg_channel->SetBinContent(17403,907); + th2d_bkg_channel->SetBinContent(17404,893); + th2d_bkg_channel->SetBinContent(17405,808); + th2d_bkg_channel->SetBinContent(17406,877); + th2d_bkg_channel->SetBinContent(17407,903); + th2d_bkg_channel->SetBinContent(17408,1013); + th2d_bkg_channel->SetBinContent(17409,864); + th2d_bkg_channel->SetBinContent(17410,1004); + th2d_bkg_channel->SetBinContent(17411,977); + th2d_bkg_channel->SetBinContent(17412,1027); + th2d_bkg_channel->SetBinContent(17413,1062); + th2d_bkg_channel->SetBinContent(17414,1180); + th2d_bkg_channel->SetBinContent(17415,1345); + th2d_bkg_channel->SetBinContent(17416,1593); + th2d_bkg_channel->SetBinContent(17417,1877); + th2d_bkg_channel->SetBinContent(17418,996); + th2d_bkg_channel->SetBinContent(17419,21337); + th2d_bkg_channel->SetBinContent(17421,74); + th2d_bkg_channel->SetBinContent(17422,49); + th2d_bkg_channel->SetBinContent(17423,25); + th2d_bkg_channel->SetBinContent(17424,40); + th2d_bkg_channel->SetBinContent(17425,663); + th2d_bkg_channel->SetBinContent(17426,578); + th2d_bkg_channel->SetBinContent(17427,690); + th2d_bkg_channel->SetBinContent(17428,573); + th2d_bkg_channel->SetBinContent(17429,602); + th2d_bkg_channel->SetBinContent(17430,535); + th2d_bkg_channel->SetBinContent(17431,655); + th2d_bkg_channel->SetBinContent(17432,541); + th2d_bkg_channel->SetBinContent(17433,593); + th2d_bkg_channel->SetBinContent(17434,551); + th2d_bkg_channel->SetBinContent(17435,524); + th2d_bkg_channel->SetBinContent(17436,461); + th2d_bkg_channel->SetBinContent(17437,583); + th2d_bkg_channel->SetBinContent(17438,403); + th2d_bkg_channel->SetBinContent(17439,447); + th2d_bkg_channel->SetBinContent(17440,406); + th2d_bkg_channel->SetBinContent(17441,432); + th2d_bkg_channel->SetBinContent(17442,458); + th2d_bkg_channel->SetBinContent(17443,494); + th2d_bkg_channel->SetBinContent(17444,447); + th2d_bkg_channel->SetBinContent(17445,458); + th2d_bkg_channel->SetBinContent(17446,395); + th2d_bkg_channel->SetBinContent(17447,430); + th2d_bkg_channel->SetBinContent(17448,389); + th2d_bkg_channel->SetBinContent(17449,466); + th2d_bkg_channel->SetBinContent(17450,356); + th2d_bkg_channel->SetBinContent(17451,385); + th2d_bkg_channel->SetBinContent(17452,341); + th2d_bkg_channel->SetBinContent(17453,433); + th2d_bkg_channel->SetBinContent(17454,319); + th2d_bkg_channel->SetBinContent(17455,371); + th2d_bkg_channel->SetBinContent(17456,355); + th2d_bkg_channel->SetBinContent(17457,466); + th2d_bkg_channel->SetBinContent(17458,365); + th2d_bkg_channel->SetBinContent(17459,410); + th2d_bkg_channel->SetBinContent(17460,366); + th2d_bkg_channel->SetBinContent(17461,479); + th2d_bkg_channel->SetBinContent(17462,369); + th2d_bkg_channel->SetBinContent(17463,468); + th2d_bkg_channel->SetBinContent(17464,403); + th2d_bkg_channel->SetBinContent(17465,488); + th2d_bkg_channel->SetBinContent(17466,417); + th2d_bkg_channel->SetBinContent(17467,495); + th2d_bkg_channel->SetBinContent(17468,422); + th2d_bkg_channel->SetBinContent(17469,508); + th2d_bkg_channel->SetBinContent(17470,450); + th2d_bkg_channel->SetBinContent(17471,545); + th2d_bkg_channel->SetBinContent(17472,475); + th2d_bkg_channel->SetBinContent(17473,522); + th2d_bkg_channel->SetBinContent(17474,499); + th2d_bkg_channel->SetBinContent(17475,628); + th2d_bkg_channel->SetBinContent(17476,491); + th2d_bkg_channel->SetBinContent(17477,640); + th2d_bkg_channel->SetBinContent(17478,547); + th2d_bkg_channel->SetBinContent(17479,659); + th2d_bkg_channel->SetBinContent(17480,660); + th2d_bkg_channel->SetBinContent(17481,818); + th2d_bkg_channel->SetBinContent(17482,809); + th2d_bkg_channel->SetBinContent(17483,1078); + th2d_bkg_channel->SetBinContent(17484,1375); + th2d_bkg_channel->SetBinContent(17485,765); + th2d_bkg_channel->SetBinContent(17486,11354); + th2d_bkg_channel->SetBinContent(17488,43); + th2d_bkg_channel->SetBinContent(17489,31); + th2d_bkg_channel->SetBinContent(17490,18); + th2d_bkg_channel->SetBinContent(17491,11); + th2d_bkg_channel->SetBinContent(17492,460); + th2d_bkg_channel->SetBinContent(17493,384); + th2d_bkg_channel->SetBinContent(17494,385); + th2d_bkg_channel->SetBinContent(17495,348); + th2d_bkg_channel->SetBinContent(17496,388); + th2d_bkg_channel->SetBinContent(17497,347); + th2d_bkg_channel->SetBinContent(17498,395); + th2d_bkg_channel->SetBinContent(17499,335); + th2d_bkg_channel->SetBinContent(17500,346); + th2d_bkg_channel->SetBinContent(17501,279); + th2d_bkg_channel->SetBinContent(17502,304); + th2d_bkg_channel->SetBinContent(17503,231); + th2d_bkg_channel->SetBinContent(17504,236); + th2d_bkg_channel->SetBinContent(17505,210); + th2d_bkg_channel->SetBinContent(17506,251); + th2d_bkg_channel->SetBinContent(17507,212); + th2d_bkg_channel->SetBinContent(17508,264); + th2d_bkg_channel->SetBinContent(17509,205); + th2d_bkg_channel->SetBinContent(17510,225); + th2d_bkg_channel->SetBinContent(17511,233); + th2d_bkg_channel->SetBinContent(17512,252); + th2d_bkg_channel->SetBinContent(17513,239); + th2d_bkg_channel->SetBinContent(17514,215); + th2d_bkg_channel->SetBinContent(17515,179); + th2d_bkg_channel->SetBinContent(17516,231); + th2d_bkg_channel->SetBinContent(17517,194); + th2d_bkg_channel->SetBinContent(17518,227); + th2d_bkg_channel->SetBinContent(17519,192); + th2d_bkg_channel->SetBinContent(17520,198); + th2d_bkg_channel->SetBinContent(17521,188); + th2d_bkg_channel->SetBinContent(17522,197); + th2d_bkg_channel->SetBinContent(17523,199); + th2d_bkg_channel->SetBinContent(17524,228); + th2d_bkg_channel->SetBinContent(17525,189); + th2d_bkg_channel->SetBinContent(17526,192); + th2d_bkg_channel->SetBinContent(17527,222); + th2d_bkg_channel->SetBinContent(17528,236); + th2d_bkg_channel->SetBinContent(17529,197); + th2d_bkg_channel->SetBinContent(17530,242); + th2d_bkg_channel->SetBinContent(17531,267); + th2d_bkg_channel->SetBinContent(17532,240); + th2d_bkg_channel->SetBinContent(17533,261); + th2d_bkg_channel->SetBinContent(17534,279); + th2d_bkg_channel->SetBinContent(17535,219); + th2d_bkg_channel->SetBinContent(17536,290); + th2d_bkg_channel->SetBinContent(17537,252); + th2d_bkg_channel->SetBinContent(17538,285); + th2d_bkg_channel->SetBinContent(17539,261); + th2d_bkg_channel->SetBinContent(17540,329); + th2d_bkg_channel->SetBinContent(17541,229); + th2d_bkg_channel->SetBinContent(17542,322); + th2d_bkg_channel->SetBinContent(17543,300); + th2d_bkg_channel->SetBinContent(17544,344); + th2d_bkg_channel->SetBinContent(17545,353); + th2d_bkg_channel->SetBinContent(17546,401); + th2d_bkg_channel->SetBinContent(17547,339); + th2d_bkg_channel->SetBinContent(17548,498); + th2d_bkg_channel->SetBinContent(17549,519); + th2d_bkg_channel->SetBinContent(17550,686); + th2d_bkg_channel->SetBinContent(17551,919); + th2d_bkg_channel->SetBinContent(17552,517); + th2d_bkg_channel->SetBinContent(17553,5857); + th2d_bkg_channel->SetBinContent(17555,19); + th2d_bkg_channel->SetBinContent(17556,17); + th2d_bkg_channel->SetBinContent(17557,13); + th2d_bkg_channel->SetBinContent(17558,8); + th2d_bkg_channel->SetBinContent(17559,260); + th2d_bkg_channel->SetBinContent(17560,213); + th2d_bkg_channel->SetBinContent(17561,241); + th2d_bkg_channel->SetBinContent(17562,176); + th2d_bkg_channel->SetBinContent(17563,243); + th2d_bkg_channel->SetBinContent(17564,216); + th2d_bkg_channel->SetBinContent(17565,229); + th2d_bkg_channel->SetBinContent(17566,148); + th2d_bkg_channel->SetBinContent(17567,189); + th2d_bkg_channel->SetBinContent(17568,181); + th2d_bkg_channel->SetBinContent(17569,176); + th2d_bkg_channel->SetBinContent(17570,102); + th2d_bkg_channel->SetBinContent(17571,122); + th2d_bkg_channel->SetBinContent(17572,101); + th2d_bkg_channel->SetBinContent(17573,106); + th2d_bkg_channel->SetBinContent(17574,108); + th2d_bkg_channel->SetBinContent(17575,111); + th2d_bkg_channel->SetBinContent(17576,121); + th2d_bkg_channel->SetBinContent(17577,113); + th2d_bkg_channel->SetBinContent(17578,108); + th2d_bkg_channel->SetBinContent(17579,119); + th2d_bkg_channel->SetBinContent(17580,125); + th2d_bkg_channel->SetBinContent(17581,137); + th2d_bkg_channel->SetBinContent(17582,93); + th2d_bkg_channel->SetBinContent(17583,108); + th2d_bkg_channel->SetBinContent(17584,101); + th2d_bkg_channel->SetBinContent(17585,122); + th2d_bkg_channel->SetBinContent(17586,103); + th2d_bkg_channel->SetBinContent(17587,98); + th2d_bkg_channel->SetBinContent(17588,82); + th2d_bkg_channel->SetBinContent(17589,116); + th2d_bkg_channel->SetBinContent(17590,88); + th2d_bkg_channel->SetBinContent(17591,133); + th2d_bkg_channel->SetBinContent(17592,104); + th2d_bkg_channel->SetBinContent(17593,114); + th2d_bkg_channel->SetBinContent(17594,116); + th2d_bkg_channel->SetBinContent(17595,141); + th2d_bkg_channel->SetBinContent(17596,118); + th2d_bkg_channel->SetBinContent(17597,135); + th2d_bkg_channel->SetBinContent(17598,121); + th2d_bkg_channel->SetBinContent(17599,132); + th2d_bkg_channel->SetBinContent(17600,117); + th2d_bkg_channel->SetBinContent(17601,140); + th2d_bkg_channel->SetBinContent(17602,103); + th2d_bkg_channel->SetBinContent(17603,172); + th2d_bkg_channel->SetBinContent(17604,119); + th2d_bkg_channel->SetBinContent(17605,163); + th2d_bkg_channel->SetBinContent(17606,134); + th2d_bkg_channel->SetBinContent(17607,159); + th2d_bkg_channel->SetBinContent(17608,174); + th2d_bkg_channel->SetBinContent(17609,178); + th2d_bkg_channel->SetBinContent(17610,153); + th2d_bkg_channel->SetBinContent(17611,218); + th2d_bkg_channel->SetBinContent(17612,167); + th2d_bkg_channel->SetBinContent(17613,224); + th2d_bkg_channel->SetBinContent(17614,216); + th2d_bkg_channel->SetBinContent(17615,298); + th2d_bkg_channel->SetBinContent(17616,292); + th2d_bkg_channel->SetBinContent(17617,516); + th2d_bkg_channel->SetBinContent(17618,660); + th2d_bkg_channel->SetBinContent(17619,371); + th2d_bkg_channel->SetBinContent(17620,2978); + th2d_bkg_channel->SetBinContent(17622,14); + th2d_bkg_channel->SetBinContent(17623,10); + th2d_bkg_channel->SetBinContent(17624,5); + th2d_bkg_channel->SetBinContent(17625,5); + th2d_bkg_channel->SetBinContent(17626,148); + th2d_bkg_channel->SetBinContent(17627,110); + th2d_bkg_channel->SetBinContent(17628,120); + th2d_bkg_channel->SetBinContent(17629,76); + th2d_bkg_channel->SetBinContent(17630,133); + th2d_bkg_channel->SetBinContent(17631,89); + th2d_bkg_channel->SetBinContent(17632,133); + th2d_bkg_channel->SetBinContent(17633,71); + th2d_bkg_channel->SetBinContent(17634,108); + th2d_bkg_channel->SetBinContent(17635,69); + th2d_bkg_channel->SetBinContent(17636,78); + th2d_bkg_channel->SetBinContent(17637,81); + th2d_bkg_channel->SetBinContent(17638,79); + th2d_bkg_channel->SetBinContent(17639,40); + th2d_bkg_channel->SetBinContent(17640,72); + th2d_bkg_channel->SetBinContent(17641,52); + th2d_bkg_channel->SetBinContent(17642,26); + th2d_bkg_channel->SetBinContent(17643,45); + th2d_bkg_channel->SetBinContent(17644,48); + th2d_bkg_channel->SetBinContent(17645,57); + th2d_bkg_channel->SetBinContent(17646,77); + th2d_bkg_channel->SetBinContent(17647,40); + th2d_bkg_channel->SetBinContent(17648,69); + th2d_bkg_channel->SetBinContent(17649,57); + th2d_bkg_channel->SetBinContent(17650,76); + th2d_bkg_channel->SetBinContent(17651,54); + th2d_bkg_channel->SetBinContent(17652,85); + th2d_bkg_channel->SetBinContent(17653,47); + th2d_bkg_channel->SetBinContent(17654,46); + th2d_bkg_channel->SetBinContent(17655,42); + th2d_bkg_channel->SetBinContent(17656,54); + th2d_bkg_channel->SetBinContent(17657,48); + th2d_bkg_channel->SetBinContent(17658,63); + th2d_bkg_channel->SetBinContent(17659,45); + th2d_bkg_channel->SetBinContent(17660,75); + th2d_bkg_channel->SetBinContent(17661,91); + th2d_bkg_channel->SetBinContent(17662,76); + th2d_bkg_channel->SetBinContent(17663,57); + th2d_bkg_channel->SetBinContent(17664,63); + th2d_bkg_channel->SetBinContent(17665,55); + th2d_bkg_channel->SetBinContent(17666,53); + th2d_bkg_channel->SetBinContent(17667,83); + th2d_bkg_channel->SetBinContent(17668,80); + th2d_bkg_channel->SetBinContent(17669,69); + th2d_bkg_channel->SetBinContent(17670,79); + th2d_bkg_channel->SetBinContent(17671,77); + th2d_bkg_channel->SetBinContent(17672,95); + th2d_bkg_channel->SetBinContent(17673,83); + th2d_bkg_channel->SetBinContent(17674,94); + th2d_bkg_channel->SetBinContent(17675,64); + th2d_bkg_channel->SetBinContent(17676,94); + th2d_bkg_channel->SetBinContent(17677,90); + th2d_bkg_channel->SetBinContent(17678,111); + th2d_bkg_channel->SetBinContent(17679,106); + th2d_bkg_channel->SetBinContent(17680,110); + th2d_bkg_channel->SetBinContent(17681,116); + th2d_bkg_channel->SetBinContent(17682,179); + th2d_bkg_channel->SetBinContent(17683,162); + th2d_bkg_channel->SetBinContent(17684,290); + th2d_bkg_channel->SetBinContent(17685,421); + th2d_bkg_channel->SetBinContent(17686,253); + th2d_bkg_channel->SetBinContent(17687,1365); + th2d_bkg_channel->SetBinContent(17689,6); + th2d_bkg_channel->SetBinContent(17690,5); + th2d_bkg_channel->SetBinContent(17691,3); + th2d_bkg_channel->SetBinContent(17692,3); + th2d_bkg_channel->SetBinContent(17693,108); + th2d_bkg_channel->SetBinContent(17694,65); + th2d_bkg_channel->SetBinContent(17695,54); + th2d_bkg_channel->SetBinContent(17696,60); + th2d_bkg_channel->SetBinContent(17697,48); + th2d_bkg_channel->SetBinContent(17698,63); + th2d_bkg_channel->SetBinContent(17699,70); + th2d_bkg_channel->SetBinContent(17700,30); + th2d_bkg_channel->SetBinContent(17701,32); + th2d_bkg_channel->SetBinContent(17702,42); + th2d_bkg_channel->SetBinContent(17703,60); + th2d_bkg_channel->SetBinContent(17704,20); + th2d_bkg_channel->SetBinContent(17705,34); + th2d_bkg_channel->SetBinContent(17706,21); + th2d_bkg_channel->SetBinContent(17707,24); + th2d_bkg_channel->SetBinContent(17708,38); + th2d_bkg_channel->SetBinContent(17709,39); + th2d_bkg_channel->SetBinContent(17710,20); + th2d_bkg_channel->SetBinContent(17711,42); + th2d_bkg_channel->SetBinContent(17712,22); + th2d_bkg_channel->SetBinContent(17713,33); + th2d_bkg_channel->SetBinContent(17714,35); + th2d_bkg_channel->SetBinContent(17715,24); + th2d_bkg_channel->SetBinContent(17716,26); + th2d_bkg_channel->SetBinContent(17717,20); + th2d_bkg_channel->SetBinContent(17718,31); + th2d_bkg_channel->SetBinContent(17719,32); + th2d_bkg_channel->SetBinContent(17720,24); + th2d_bkg_channel->SetBinContent(17721,31); + th2d_bkg_channel->SetBinContent(17722,23); + th2d_bkg_channel->SetBinContent(17723,21); + th2d_bkg_channel->SetBinContent(17724,25); + th2d_bkg_channel->SetBinContent(17725,28); + th2d_bkg_channel->SetBinContent(17726,36); + th2d_bkg_channel->SetBinContent(17727,32); + th2d_bkg_channel->SetBinContent(17728,21); + th2d_bkg_channel->SetBinContent(17729,27); + th2d_bkg_channel->SetBinContent(17730,18); + th2d_bkg_channel->SetBinContent(17731,31); + th2d_bkg_channel->SetBinContent(17732,39); + th2d_bkg_channel->SetBinContent(17733,32); + th2d_bkg_channel->SetBinContent(17734,23); + th2d_bkg_channel->SetBinContent(17735,36); + th2d_bkg_channel->SetBinContent(17736,20); + th2d_bkg_channel->SetBinContent(17737,45); + th2d_bkg_channel->SetBinContent(17738,17); + th2d_bkg_channel->SetBinContent(17739,48); + th2d_bkg_channel->SetBinContent(17740,26); + th2d_bkg_channel->SetBinContent(17741,47); + th2d_bkg_channel->SetBinContent(17742,35); + th2d_bkg_channel->SetBinContent(17743,58); + th2d_bkg_channel->SetBinContent(17744,29); + th2d_bkg_channel->SetBinContent(17745,63); + th2d_bkg_channel->SetBinContent(17746,41); + th2d_bkg_channel->SetBinContent(17747,96); + th2d_bkg_channel->SetBinContent(17748,64); + th2d_bkg_channel->SetBinContent(17749,103); + th2d_bkg_channel->SetBinContent(17750,104); + th2d_bkg_channel->SetBinContent(17751,151); + th2d_bkg_channel->SetBinContent(17752,243); + th2d_bkg_channel->SetBinContent(17753,148); + th2d_bkg_channel->SetBinContent(17754,671); + th2d_bkg_channel->SetBinContent(17756,5); + th2d_bkg_channel->SetBinContent(17757,4); + th2d_bkg_channel->SetBinContent(17760,22); + th2d_bkg_channel->SetBinContent(17761,34); + th2d_bkg_channel->SetBinContent(17762,33); + th2d_bkg_channel->SetBinContent(17763,26); + th2d_bkg_channel->SetBinContent(17764,42); + th2d_bkg_channel->SetBinContent(17765,21); + th2d_bkg_channel->SetBinContent(17766,28); + th2d_bkg_channel->SetBinContent(17767,31); + th2d_bkg_channel->SetBinContent(17768,25); + th2d_bkg_channel->SetBinContent(17769,11); + th2d_bkg_channel->SetBinContent(17770,14); + th2d_bkg_channel->SetBinContent(17771,18); + th2d_bkg_channel->SetBinContent(17772,23); + th2d_bkg_channel->SetBinContent(17773,14); + th2d_bkg_channel->SetBinContent(17774,23); + th2d_bkg_channel->SetBinContent(17775,5); + th2d_bkg_channel->SetBinContent(17776,18); + th2d_bkg_channel->SetBinContent(17777,6); + th2d_bkg_channel->SetBinContent(17778,20); + th2d_bkg_channel->SetBinContent(17779,21); + th2d_bkg_channel->SetBinContent(17780,14); + th2d_bkg_channel->SetBinContent(17781,12); + th2d_bkg_channel->SetBinContent(17782,16); + th2d_bkg_channel->SetBinContent(17783,14); + th2d_bkg_channel->SetBinContent(17784,8); + th2d_bkg_channel->SetBinContent(17785,9); + th2d_bkg_channel->SetBinContent(17786,4); + th2d_bkg_channel->SetBinContent(17787,8); + th2d_bkg_channel->SetBinContent(17788,8); + th2d_bkg_channel->SetBinContent(17789,12); + th2d_bkg_channel->SetBinContent(17790,9); + th2d_bkg_channel->SetBinContent(17791,5); + th2d_bkg_channel->SetBinContent(17792,7); + th2d_bkg_channel->SetBinContent(17793,10); + th2d_bkg_channel->SetBinContent(17794,10); + th2d_bkg_channel->SetBinContent(17795,5); + th2d_bkg_channel->SetBinContent(17796,19); + th2d_bkg_channel->SetBinContent(17797,8); + th2d_bkg_channel->SetBinContent(17798,18); + th2d_bkg_channel->SetBinContent(17799,10); + th2d_bkg_channel->SetBinContent(17800,21); + th2d_bkg_channel->SetBinContent(17801,9); + th2d_bkg_channel->SetBinContent(17802,18); + th2d_bkg_channel->SetBinContent(17803,12); + th2d_bkg_channel->SetBinContent(17804,15); + th2d_bkg_channel->SetBinContent(17805,12); + th2d_bkg_channel->SetBinContent(17806,33); + th2d_bkg_channel->SetBinContent(17807,15); + th2d_bkg_channel->SetBinContent(17808,37); + th2d_bkg_channel->SetBinContent(17809,23); + th2d_bkg_channel->SetBinContent(17810,18); + th2d_bkg_channel->SetBinContent(17811,17); + th2d_bkg_channel->SetBinContent(17812,37); + th2d_bkg_channel->SetBinContent(17813,16); + th2d_bkg_channel->SetBinContent(17814,37); + th2d_bkg_channel->SetBinContent(17815,34); + th2d_bkg_channel->SetBinContent(17816,59); + th2d_bkg_channel->SetBinContent(17817,37); + th2d_bkg_channel->SetBinContent(17818,122); + th2d_bkg_channel->SetBinContent(17819,184); + th2d_bkg_channel->SetBinContent(17820,101); + th2d_bkg_channel->SetBinContent(17821,357); + th2d_bkg_channel->SetBinContent(17823,2); + th2d_bkg_channel->SetBinContent(17826,3); + th2d_bkg_channel->SetBinContent(17827,27); + th2d_bkg_channel->SetBinContent(17828,21); + th2d_bkg_channel->SetBinContent(17829,20); + th2d_bkg_channel->SetBinContent(17830,8); + th2d_bkg_channel->SetBinContent(17831,18); + th2d_bkg_channel->SetBinContent(17832,13); + th2d_bkg_channel->SetBinContent(17833,7); + th2d_bkg_channel->SetBinContent(17834,12); + th2d_bkg_channel->SetBinContent(17835,11); + th2d_bkg_channel->SetBinContent(17836,4); + th2d_bkg_channel->SetBinContent(17837,10); + th2d_bkg_channel->SetBinContent(17838,6); + th2d_bkg_channel->SetBinContent(17839,6); + th2d_bkg_channel->SetBinContent(17840,4); + th2d_bkg_channel->SetBinContent(17841,2); + th2d_bkg_channel->SetBinContent(17842,4); + th2d_bkg_channel->SetBinContent(17844,3); + th2d_bkg_channel->SetBinContent(17845,8); + th2d_bkg_channel->SetBinContent(17846,1); + th2d_bkg_channel->SetBinContent(17847,6); + th2d_bkg_channel->SetBinContent(17848,7); + th2d_bkg_channel->SetBinContent(17849,6); + th2d_bkg_channel->SetBinContent(17850,8); + th2d_bkg_channel->SetBinContent(17851,4); + th2d_bkg_channel->SetBinContent(17852,10); + th2d_bkg_channel->SetBinContent(17854,4); + th2d_bkg_channel->SetBinContent(17855,6); + th2d_bkg_channel->SetBinContent(17856,5); + th2d_bkg_channel->SetBinContent(17857,10); + th2d_bkg_channel->SetBinContent(17859,4); + th2d_bkg_channel->SetBinContent(17860,3); + th2d_bkg_channel->SetBinContent(17861,4); + th2d_bkg_channel->SetBinContent(17862,8); + th2d_bkg_channel->SetBinContent(17863,8); + th2d_bkg_channel->SetBinContent(17864,6); + th2d_bkg_channel->SetBinContent(17865,7); + th2d_bkg_channel->SetBinContent(17866,2); + th2d_bkg_channel->SetBinContent(17867,10); + th2d_bkg_channel->SetBinContent(17868,6); + th2d_bkg_channel->SetBinContent(17869,9); + th2d_bkg_channel->SetBinContent(17870,8); + th2d_bkg_channel->SetBinContent(17872,8); + th2d_bkg_channel->SetBinContent(17874,8); + th2d_bkg_channel->SetBinContent(17875,4); + th2d_bkg_channel->SetBinContent(17876,10); + th2d_bkg_channel->SetBinContent(17877,8); + th2d_bkg_channel->SetBinContent(17878,10); + th2d_bkg_channel->SetBinContent(17879,9); + th2d_bkg_channel->SetBinContent(17880,10); + th2d_bkg_channel->SetBinContent(17881,16); + th2d_bkg_channel->SetBinContent(17882,15); + th2d_bkg_channel->SetBinContent(17883,33); + th2d_bkg_channel->SetBinContent(17884,30); + th2d_bkg_channel->SetBinContent(17885,82); + th2d_bkg_channel->SetBinContent(17886,118); + th2d_bkg_channel->SetBinContent(17887,72); + th2d_bkg_channel->SetBinContent(17888,161); + th2d_bkg_channel->SetBinContent(17890,5); + th2d_bkg_channel->SetBinContent(17891,2); + th2d_bkg_channel->SetBinContent(17894,12); + th2d_bkg_channel->SetBinContent(17896,12); + th2d_bkg_channel->SetBinContent(17897,4); + th2d_bkg_channel->SetBinContent(17898,4); + th2d_bkg_channel->SetBinContent(17899,8); + th2d_bkg_channel->SetBinContent(17900,10); + th2d_bkg_channel->SetBinContent(17901,4); + th2d_bkg_channel->SetBinContent(17902,6); + th2d_bkg_channel->SetBinContent(17904,2); + th2d_bkg_channel->SetBinContent(17905,2); + th2d_bkg_channel->SetBinContent(17907,2); + th2d_bkg_channel->SetBinContent(17908,2); + th2d_bkg_channel->SetBinContent(17909,1); + th2d_bkg_channel->SetBinContent(17910,8); + th2d_bkg_channel->SetBinContent(17911,2); + th2d_bkg_channel->SetBinContent(17913,2); + th2d_bkg_channel->SetBinContent(17918,4); + th2d_bkg_channel->SetBinContent(17919,2); + th2d_bkg_channel->SetBinContent(17928,2); + th2d_bkg_channel->SetBinContent(17932,4); + th2d_bkg_channel->SetBinContent(17933,8); + th2d_bkg_channel->SetBinContent(17934,2); + th2d_bkg_channel->SetBinContent(17936,2); + th2d_bkg_channel->SetBinContent(17937,4); + th2d_bkg_channel->SetBinContent(17938,1); + th2d_bkg_channel->SetBinContent(17941,4); + th2d_bkg_channel->SetBinContent(17942,4); + th2d_bkg_channel->SetBinContent(17943,2); + th2d_bkg_channel->SetBinContent(17944,2); + th2d_bkg_channel->SetBinContent(17945,1); + th2d_bkg_channel->SetBinContent(17946,9); + th2d_bkg_channel->SetBinContent(17947,2); + th2d_bkg_channel->SetBinContent(17948,8); + th2d_bkg_channel->SetBinContent(17949,10); + th2d_bkg_channel->SetBinContent(17950,12); + th2d_bkg_channel->SetBinContent(17951,8); + th2d_bkg_channel->SetBinContent(17952,24); + th2d_bkg_channel->SetBinContent(17953,69); + th2d_bkg_channel->SetBinContent(17954,39); + th2d_bkg_channel->SetBinContent(17955,88); + th2d_bkg_channel->SetBinContent(17957,1); + th2d_bkg_channel->SetBinContent(17958,1); + th2d_bkg_channel->SetBinContent(17961,6); + th2d_bkg_channel->SetBinContent(17963,10); + th2d_bkg_channel->SetBinContent(17964,2); + th2d_bkg_channel->SetBinContent(17965,14); + th2d_bkg_channel->SetBinContent(17966,2); + th2d_bkg_channel->SetBinContent(17967,2); + th2d_bkg_channel->SetBinContent(17975,4); + th2d_bkg_channel->SetBinContent(17981,2); + th2d_bkg_channel->SetBinContent(17984,2); + th2d_bkg_channel->SetBinContent(17985,2); + th2d_bkg_channel->SetBinContent(17987,2); + th2d_bkg_channel->SetBinContent(17992,2); + th2d_bkg_channel->SetBinContent(17993,2); + th2d_bkg_channel->SetBinContent(17997,2); + th2d_bkg_channel->SetBinContent(18001,2); + th2d_bkg_channel->SetBinContent(18004,4); + th2d_bkg_channel->SetBinContent(18005,4); + th2d_bkg_channel->SetBinContent(18007,2); + th2d_bkg_channel->SetBinContent(18008,2); + th2d_bkg_channel->SetBinContent(18011,2); + th2d_bkg_channel->SetBinContent(18012,2); + th2d_bkg_channel->SetBinContent(18013,6); + th2d_bkg_channel->SetBinContent(18014,2); + th2d_bkg_channel->SetBinContent(18015,4); + th2d_bkg_channel->SetBinContent(18016,8); + th2d_bkg_channel->SetBinContent(18017,14); + th2d_bkg_channel->SetBinContent(18018,2); + th2d_bkg_channel->SetBinContent(18019,16); + th2d_bkg_channel->SetBinContent(18020,48); + th2d_bkg_channel->SetBinContent(18021,26); + th2d_bkg_channel->SetBinContent(18022,36); + th2d_bkg_channel->SetBinContent(18028,2); + th2d_bkg_channel->SetBinContent(18029,4); + th2d_bkg_channel->SetBinContent(18032,2); + th2d_bkg_channel->SetBinContent(18054,2); + th2d_bkg_channel->SetBinContent(18067,2); + th2d_bkg_channel->SetBinContent(18068,2); + th2d_bkg_channel->SetBinContent(18078,2); + th2d_bkg_channel->SetBinContent(18079,2); + th2d_bkg_channel->SetBinContent(18082,2); + th2d_bkg_channel->SetBinContent(18084,4); + th2d_bkg_channel->SetBinContent(18086,8); + th2d_bkg_channel->SetBinContent(18087,32); + th2d_bkg_channel->SetBinContent(18088,18); + th2d_bkg_channel->SetBinContent(18089,23); + th2d_bkg_channel->SetBinContent(18147,2); + th2d_bkg_channel->SetBinContent(18149,2); + th2d_bkg_channel->SetBinContent(18152,2); + th2d_bkg_channel->SetBinContent(18153,6); + th2d_bkg_channel->SetBinContent(18154,14); + th2d_bkg_channel->SetBinContent(18155,10); + th2d_bkg_channel->SetBinContent(18156,10); + th2d_bkg_channel->SetBinContent(18165,2); + th2d_bkg_channel->SetBinContent(18221,6); + th2d_bkg_channel->SetBinContent(18222,10); + th2d_bkg_channel->SetBinContent(18223,14); + th2d_bkg_channel->SetBinContent(18288,8); + th2d_bkg_channel->SetBinContent(18289,2); + th2d_bkg_channel->SetBinContent(18355,4); + th2d_bkg_channel->SetBinContent(18356,1); + th2d_bkg_channel->SetBinContent(18423,1); + th2d_bkg_channel->SetBinContent(18424,3); + th2d_bkg_channel->SetBinContent(18491,1); + th2d_bkg_channel->SetBinContent(18556,2); + th2d_bkg_channel->SetEntries(9688520); + th2d_bkg_channel->SetContour(20); + th2d_bkg_channel->SetContourLevel(0,1); + th2d_bkg_channel->SetContourLevel(1,1.59966); + th2d_bkg_channel->SetContourLevel(2,2.558912); + th2d_bkg_channel->SetContourLevel(3,4.09339); + th2d_bkg_channel->SetContourLevel(4,6.548033); + th2d_bkg_channel->SetContourLevel(5,10.47463); + th2d_bkg_channel->SetContourLevel(6,16.75584); + th2d_bkg_channel->SetContourLevel(7,26.80365); + th2d_bkg_channel->SetContourLevel(8,42.87674); + th2d_bkg_channel->SetContourLevel(9,68.58821); + th2d_bkg_channel->SetContourLevel(10,109.7178); + th2d_bkg_channel->SetContourLevel(11,175.5112); + th2d_bkg_channel->SetContourLevel(12,280.7583); + th2d_bkg_channel->SetContourLevel(13,449.1179); + th2d_bkg_channel->SetContourLevel(14,718.4359); + th2d_bkg_channel->SetContourLevel(15,1149.253); + th2d_bkg_channel->SetContourLevel(16,1838.415); + th2d_bkg_channel->SetContourLevel(17,2940.839); + th2d_bkg_channel->SetContourLevel(18,4704.342); + th2d_bkg_channel->SetContourLevel(19,7525.349); + + TPaletteAxis *palette = new TPaletteAxis(64.9087,-146,68.587,166,th2d_bkg_channel); +palette->SetLabelColor(1); +palette->SetLabelFont(22); +palette->SetLabelOffset(0.005); +palette->SetLabelSize(0.05); +palette->SetTitleOffset(1); +palette->SetTitleSize(0.06); + palette->SetFillColor(100); + palette->SetFillStyle(1001); + palette->SetLineWidth(2); + th2d_bkg_channel->GetListOfFunctions()->Add(palette,"br"); + + TPaveStats *ptstats = new TPaveStats(0.5669643,0.7506494,0.8497024,0.9168831,"brNDC"); + ptstats->SetName("stats"); + ptstats->SetBorderSize(1); + ptstats->SetFillColor(0); + ptstats->SetLineWidth(2); + ptstats->SetTextAlign(12); + ptstats->SetTextFont(22); + TText *text = ptstats->AddText("RMS x = 17.48"); + text->SetTextSize(0.07646753); + text = ptstats->AddText("RMS y = 7.814"); + ptstats->SetOptStat(1000); + ptstats->SetOptFit(0); + ptstats->Draw(); + th2d_bkg_channel->GetListOfFunctions()->Add(ptstats); + ptstats->SetParent(th2d_bkg_channel); + th2d_bkg_channel->SetLineWidth(2); + th2d_bkg_channel->SetMarkerStyle(21); + th2d_bkg_channel->GetXaxis()->SetTitle("Channel"); + th2d_bkg_channel->GetXaxis()->SetRange(5,65); + th2d_bkg_channel->GetXaxis()->SetNdivisions(505); + th2d_bkg_channel->GetXaxis()->SetLabelFont(22); + th2d_bkg_channel->GetXaxis()->SetLabelOffset(0.015); + th2d_bkg_channel->GetXaxis()->SetLabelSize(0.05); + th2d_bkg_channel->GetXaxis()->SetTitleSize(0.06); + th2d_bkg_channel->GetXaxis()->SetTitleFont(22); + th2d_bkg_channel->GetYaxis()->SetTitle("A_{BPM}/ch /a.u."); + th2d_bkg_channel->GetYaxis()->SetRange(178,333); + th2d_bkg_channel->GetYaxis()->SetLabelFont(22); + th2d_bkg_channel->GetYaxis()->SetLabelSize(0.05); + th2d_bkg_channel->GetYaxis()->SetTitleSize(0.06); + th2d_bkg_channel->GetYaxis()->SetTitleFont(22); + th2d_bkg_channel->GetZaxis()->SetLabelFont(22); + th2d_bkg_channel->GetZaxis()->SetLabelSize(0.05); + th2d_bkg_channel->GetZaxis()->SetTitleSize(0.06); + th2d_bkg_channel->GetZaxis()->SetTitleFont(22); + th2d_bkg_channel->Draw("colz"); + Canvas_1->Modified(); + Canvas_1->cd(); + Canvas_1->SetSelected(Canvas_1); +} diff --git a/Scripts_20161201/Scripts_20161201/figs/noise_vs_64ch_Run1.pdf b/Scripts_20161201/Scripts_20161201/figs/noise_vs_64ch_Run1.pdf new file mode 100644 index 0000000..216adb7 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/figs/noise_vs_64ch_Run1.pdf differ diff --git a/Scripts_20161201/Scripts_20161201/figs/noise_vs_time_Run11.pdf b/Scripts_20161201/Scripts_20161201/figs/noise_vs_time_Run11.pdf new file mode 100644 index 0000000..e613e05 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/figs/noise_vs_time_Run11.pdf differ diff --git a/Scripts_20161201/Scripts_20161201/figs/noisehisto_Run11.pdf b/Scripts_20161201/Scripts_20161201/figs/noisehisto_Run11.pdf new file mode 100644 index 0000000..26f9bfd Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/figs/noisehisto_Run11.pdf differ diff --git a/Scripts_20161201/Scripts_20161201/inlistE21_c_bpm1.txt b/Scripts_20161201/Scripts_20161201/inlistE21_c_bpm1.txt new file mode 100644 index 0000000..8ae3f20 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE21_c_bpm1.txt @@ -0,0 +1,8 @@ +1.96208 246.001 0.939424 +2.95886 354.53 1.30413 +4.95905 588.03 2.19827 +9.87093 1169.9 4.20999 +14.7862 1758.23 6.22427 +19.6816 2344.71 8.33911 +29.5024 3515.05 12.4557 +49.7928 5871.02 23.2478 diff --git a/Scripts_20161201/Scripts_20161201/inlistE21_c_bpm1_diff.txt b/Scripts_20161201/Scripts_20161201/inlistE21_c_bpm1_diff.txt new file mode 100644 index 0000000..08ef95b --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE21_c_bpm1_diff.txt @@ -0,0 +1,8 @@ +1.96208 0.0856364 0.000792058 +2.95886 0.0633895 0.000575954 +4.95905 0.0398264 0.000373946 +9.87093 0.0210139 0.000187325 +14.7862 0.0149212 0.000129116 +19.6816 0.0118034 0.000103781 +29.5024 0.00858182 7.43499e-05 +49.7928 0.00617692 5.28571e-05 diff --git a/Scripts_20161201/Scripts_20161201/inlistE21_c_bpm1ratio.txt b/Scripts_20161201/Scripts_20161201/inlistE21_c_bpm1ratio.txt new file mode 100644 index 0000000..b252615 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE21_c_bpm1ratio.txt @@ -0,0 +1,8 @@ +1.96208 0.42931 0.162005 +2.95886 0.420157 0.163335 +4.95905 0.421499 0.170837 +9.87093 0.416712 0.1556 +14.7862 0.419483 0.169416 +19.6816 0.417932 0.147627 +29.5024 0.416466 0.14424 +49.7928 0.423297 0.17926 diff --git a/Scripts_20161201/Scripts_20161201/inlistE21_c_chi2fit.txt b/Scripts_20161201/Scripts_20161201/inlistE21_c_chi2fit.txt new file mode 100644 index 0000000..1c88f9a --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE21_c_chi2fit.txt @@ -0,0 +1,8 @@ +1.96208 0.867144 0.233949 +2.95886 1.02415 0.405587 +4.95905 1.34584 0.715185 +9.87093 2.18133 1.17589 +14.7862 3.05598 1.73668 +19.6816 3.91095 1.9627 +29.5024 5.83085 3.01965 +49.7928 9.85508 5.63672 diff --git a/Scripts_20161201/Scripts_20161201/inlistE21_c_focus1.txt b/Scripts_20161201/Scripts_20161201/inlistE21_c_focus1.txt new file mode 100644 index 0000000..d5965ea --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE21_c_focus1.txt @@ -0,0 +1,8 @@ +1.96208 5.86016 2.35638 +2.95886 7.26344 1.95667 +4.95905 8.38042 1.5034 +9.87093 9.21333 1.08446 +14.7862 9.54771 0.933646 +19.6816 9.72328 0.81549 +29.5024 9.91217 0.771696 +49.7928 10.127 0.771277 diff --git a/Scripts_20161201/Scripts_20161201/inlistE21_c_focusHIT.txt b/Scripts_20161201/Scripts_20161201/inlistE21_c_focusHIT.txt new file mode 100644 index 0000000..db03c51 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE21_c_focusHIT.txt @@ -0,0 +1,8 @@ +1.96208 7.4 +2.95886 7.4 +4.95905 7.4 +9.87093 7.4 +14.7862 7.4 +19.6816 7.4 +29.5024 7.4 +49.7928 7.4 diff --git a/Scripts_20161201/Scripts_20161201/inlistE21_c_focusfit.txt b/Scripts_20161201/Scripts_20161201/inlistE21_c_focusfit.txt new file mode 100644 index 0000000..85e7b2f --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE21_c_focusfit.txt @@ -0,0 +1,8 @@ +1.96208 9.13655 1.40647 +2.95886 9.29026 1.08055 +4.95905 9.29964 0.769379 +9.87093 9.29707 0.493352 +14.7862 9.32869 0.404934 +19.6816 9.34038 0.327625 +29.5024 9.3389 0.274655 +49.7928 9.35139 0.208834 diff --git a/Scripts_20161201/Scripts_20161201/inlistE21_c_focusfit_diff.txt b/Scripts_20161201/Scripts_20161201/inlistE21_c_focusfit_diff.txt new file mode 100644 index 0000000..157309a --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE21_c_focusfit_diff.txt @@ -0,0 +1,8 @@ +1.96208 0.987384 0.0092169 +2.95886 0.734436 0.00675245 +4.95905 0.474685 0.00444905 +9.87093 0.255118 0.00224608 +14.7862 0.179449 0.00156548 +19.6816 0.144177 0.0011948 +29.5024 0.108246 0.000911165 +49.7928 0.0767515 0.000680893 diff --git a/Scripts_20161201/Scripts_20161201/inlistE21_c_ic1.txt b/Scripts_20161201/Scripts_20161201/inlistE21_c_ic1.txt new file mode 100644 index 0000000..0f5922d --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE21_c_ic1.txt @@ -0,0 +1,8 @@ +1.96208 6.24714 0.0187744 SAVE_PiN_run38.root +2.95886 9.3707 0.0276204 SAVE_PiN_run39.root +4.95905 15.6178 0.0475589 SAVE_PiN_run40.root +9.87093 31.2357 0.0938109 SAVE_PiN_run42.root +14.7862 46.8535 0.139205 SAVE_PiN_run43.root +19.6816 62.4714 0.188819 SAVE_PiN_run44.root +29.5024 93.707 0.282987 SAVE_PiN_run45.root +49.7928 156.178 0.512317 SAVE_PiN_run46.root diff --git a/Scripts_20161201/Scripts_20161201/inlistE21_c_ic1_diff.txt b/Scripts_20161201/Scripts_20161201/inlistE21_c_ic1_diff.txt new file mode 100644 index 0000000..6277886 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE21_c_ic1_diff.txt @@ -0,0 +1,8 @@ +1.96208 0.0479218 0.000331895 SAVE_PiN_run38.root +2.95886 0.0430306 0.000297977 SAVE_PiN_run39.root +4.95905 0.0415441 0.000287078 SAVE_PiN_run40.root +9.87093 0.0382646 0.00026424 SAVE_PiN_run42.root +14.7862 0.0432227 0.000298978 SAVE_PiN_run43.root +19.6816 0.0439905 0.000304056 SAVE_PiN_run44.root +29.5024 0.0414173 0.000286476 SAVE_PiN_run45.root +49.7928 0.0522289 0.000359202 SAVE_PiN_run46.root diff --git a/Scripts_20161201/Scripts_20161201/inlistE21_c_ic1ratio.txt b/Scripts_20161201/Scripts_20161201/inlistE21_c_ic1ratio.txt new file mode 100644 index 0000000..396b1de --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE21_c_ic1ratio.txt @@ -0,0 +1,8 @@ +1.96208 0.346713 +2.95886 0.387469 +4.95905 0.353944 +9.87093 0.42459 +14.7862 0.417802 +19.6816 0.438873 +29.5024 0.456133 +49.7928 0.379805 diff --git a/Scripts_20161201/Scripts_20161201/inlistE21_c_kurt1.txt b/Scripts_20161201/Scripts_20161201/inlistE21_c_kurt1.txt new file mode 100644 index 0000000..2c9eef4 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE21_c_kurt1.txt @@ -0,0 +1,8 @@ +1.96208 0.750778 1.57133 +2.95886 1.34739 5.12933 +4.95905 0.254713 1.09856 +9.87093 0.273223 1.41517 +14.7862 0.225523 0.36303 +19.6816 0.228086 0.26666 +29.5024 0.280543 0.301821 +49.7928 0.400488 0.37617 diff --git a/Scripts_20161201/Scripts_20161201/inlistE21_c_noise.txt b/Scripts_20161201/Scripts_20161201/inlistE21_c_noise.txt new file mode 100644 index 0000000..97d87e8 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE21_c_noise.txt @@ -0,0 +1,8 @@ +1.96208 -0.0570705 7.79268 +2.95886 -0.0857778 7.81215 +4.95905 -0.167123 7.911 +9.87093 0.0117725 7.69098 +14.7862 0.0044843 7.89014 +19.6816 0.00897754 7.61116 +29.5024 0.0198397 7.80723 +49.7928 -0.0629618 7.71646 diff --git a/Scripts_20161201/Scripts_20161201/inlistE21_c_peakfit.txt b/Scripts_20161201/Scripts_20161201/inlistE21_c_peakfit.txt new file mode 100644 index 0000000..3c7177e --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE21_c_peakfit.txt @@ -0,0 +1,8 @@ +1.96208 2.73389 0.892946 +2.95886 3.8707 1.62499 +4.95905 6.36702 2.66832 +9.87093 12.689 4.66468 +14.7862 19.028 6.90351 +19.6816 25.3672 9.1923 +29.5024 38.0693 13.7995 +49.7928 62.6743 25.422 diff --git a/Scripts_20161201/Scripts_20161201/inlistE21_c_posfit_diff.txt b/Scripts_20161201/Scripts_20161201/inlistE21_c_posfit_diff.txt new file mode 100644 index 0000000..11ac74c --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE21_c_posfit_diff.txt @@ -0,0 +1,8 @@ +1.96208 0.2833 0.00262138 +2.95886 0.211754 0.00191423 +4.95905 0.1311 0.00119367 +9.87093 0.0735419 0.000645161 +14.7862 0.052802 0.000451233 +19.6816 0.0431026 0.000371273 +29.5024 0.0319821 0.000264383 +49.7928 0.0236786 0.000207716 diff --git a/Scripts_20161201/Scripts_20161201/inlistE21_c_skew1.txt b/Scripts_20161201/Scripts_20161201/inlistE21_c_skew1.txt new file mode 100644 index 0000000..b878c60 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE21_c_skew1.txt @@ -0,0 +1,8 @@ +1.96208 0.142596 0.137053 +2.95886 0.137802 0.150097 +4.95905 0.122892 0.0997899 +9.87093 0.0924131 0.0970963 +14.7862 0.0786919 0.0736742 +19.6816 0.0700457 0.065153 +29.5024 0.060259 0.0525561 +49.7928 0.0564321 0.0720472 diff --git a/Scripts_20161201/Scripts_20161201/inlistE21_p_bpm1.txt b/Scripts_20161201/Scripts_20161201/inlistE21_p_bpm1.txt new file mode 100644 index 0000000..2bd1f11 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE21_p_bpm1.txt @@ -0,0 +1,9 @@ +79.0354 777.034 3.87519 +118.87 1035.38 4.01265 +198.332 1652.04 6.01749 +317.093 2638.66 9.69555 +395.805 3298.27 11.9173 +594.734 4938.64 16.794 +795.176 6589.34 22.2965 +1194.73 9826.56 33.9747 +2026.38 16646.9 54.6491 diff --git a/Scripts_20161201/Scripts_20161201/inlistE21_p_bpm1_diff.txt b/Scripts_20161201/Scripts_20161201/inlistE21_p_bpm1_diff.txt new file mode 100644 index 0000000..9c0a2d4 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE21_p_bpm1_diff.txt @@ -0,0 +1,9 @@ +79.0354 0.17537 0.00263946 +118.87 0.130906 0.00146187 +198.332 0.0802245 0.000741972 +317.093 0.05265 0.000520439 +395.805 0.0433882 0.000413834 +594.734 0.0299002 0.000287387 +795.176 0.0234158 0.00021686 +1194.73 0.0170494 0.0001669 +2026.38 0.0120116 0.000112594 diff --git a/Scripts_20161201/Scripts_20161201/inlistE21_p_bpm1ratio.txt b/Scripts_20161201/Scripts_20161201/inlistE21_p_bpm1ratio.txt new file mode 100644 index 0000000..ac95c41 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE21_p_bpm1ratio.txt @@ -0,0 +1,9 @@ +79.0354 0.78084 0.484508 +118.87 0.691204 0.268844 +198.332 0.655037 0.196374 +317.093 0.653992 0.170532 +395.805 0.653078 0.166445 +594.734 0.652562 0.166486 +795.176 0.656155 0.18594 +1194.73 0.644905 0.14328 +2026.38 0.647794 0.168311 diff --git a/Scripts_20161201/Scripts_20161201/inlistE21_p_chi2fit.txt b/Scripts_20161201/Scripts_20161201/inlistE21_p_chi2fit.txt new file mode 100644 index 0000000..eb567dc --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE21_p_chi2fit.txt @@ -0,0 +1,9 @@ +79.0354 0.643315 0.469439 +118.87 0.681575 0.407084 +198.332 0.829715 1.16672 +317.093 1.06028 1.76526 +395.805 1.16693 1.81733 +594.734 1.53227 2.19697 +795.176 1.92935 2.44306 +1194.73 2.91128 3.2289 +2026.38 5.23235 4.25922 diff --git a/Scripts_20161201/Scripts_20161201/inlistE21_p_focus1.txt b/Scripts_20161201/Scripts_20161201/inlistE21_p_focus1.txt new file mode 100644 index 0000000..4895c31 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE21_p_focus1.txt @@ -0,0 +1,9 @@ +79.0354 14.9452 5.64795 +118.87 18.7668 3.96931 +198.332 21.4723 2.36023 +317.093 22.5909 1.78292 +395.805 22.9595 1.24148 +594.734 23.2437 1.13176 +795.176 23.3588 1.07412 +1194.73 23.3806 1.35647 +2026.38 23.3722 1.75131 diff --git a/Scripts_20161201/Scripts_20161201/inlistE21_p_focusHIT.txt b/Scripts_20161201/Scripts_20161201/inlistE21_p_focusHIT.txt new file mode 100644 index 0000000..55cbd03 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE21_p_focusHIT.txt @@ -0,0 +1,9 @@ +79.0354 22.8 +118.87 22.8 +198.332 22.8 +317.093 22.8 +395.805 22.8 +594.734 22.8 +795.176 22.8 +1194.73 22.8 +2026.38 22.8 diff --git a/Scripts_20161201/Scripts_20161201/inlistE21_p_focusfit.txt b/Scripts_20161201/Scripts_20161201/inlistE21_p_focusfit.txt new file mode 100644 index 0000000..fb2c93a --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE21_p_focusfit.txt @@ -0,0 +1,9 @@ +79.0354 25.5834 4.03924 +118.87 25.3516 3.14193 +198.332 25.0963 2.01461 +317.093 25.0852 1.44201 +395.805 25.1112 1.23149 +594.734 25.1432 0.862015 +795.176 25.1647 0.714439 +1194.73 25.2102 0.581616 +2026.38 25.2274 0.424595 diff --git a/Scripts_20161201/Scripts_20161201/inlistE21_p_focusfit_diff.txt b/Scripts_20161201/Scripts_20161201/inlistE21_p_focusfit_diff.txt new file mode 100644 index 0000000..207817a --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE21_p_focusfit_diff.txt @@ -0,0 +1,9 @@ +79.0354 3.42462 0.0482061 +118.87 2.47025 0.027427 +198.332 1.52845 0.0149684 +317.093 1.00776 0.0095299 +395.805 0.839487 0.00789383 +594.734 0.58229 0.00547878 +795.176 0.462815 0.00418357 +1194.73 0.33919 0.00320945 +2026.38 0.236132 0.00219977 diff --git a/Scripts_20161201/Scripts_20161201/inlistE21_p_ic1.txt b/Scripts_20161201/Scripts_20161201/inlistE21_p_ic1.txt new file mode 100644 index 0000000..2715ee3 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE21_p_ic1.txt @@ -0,0 +1,9 @@ +79.0354 10.9538 0.0359684 SAVE_PiN_run11.root +118.87 16.4307 0.054725 SAVE_PiN_run12.root +198.332 27.3845 0.0879305 SAVE_PiN_run13.root +317.093 43.8153 0.148784 SAVE_PiN_run14.root +395.805 54.7691 0.182459 SAVE_PiN_run15.root +594.734 82.1536 0.262689 SAVE_PiN_run16.root +795.176 109.538 0.344671 SAVE_PiN_run17.root +1194.73 164.307 0.55304 SAVE_PiN_run18.root +2026.38 273.845 0.807153 SAVE_PiN_run19.root diff --git a/Scripts_20161201/Scripts_20161201/inlistE21_p_ic1_diff.txt b/Scripts_20161201/Scripts_20161201/inlistE21_p_ic1_diff.txt new file mode 100644 index 0000000..2fcf4e4 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE21_p_ic1_diff.txt @@ -0,0 +1,9 @@ +79.0354 0.0288236 0.000198997 SAVE_PiN_run11.root +118.87 0.0277598 0.000191579 SAVE_PiN_run12.root +198.332 0.0254663 0.000175659 SAVE_PiN_run13.root +317.093 0.0282533 0.000194799 SAVE_PiN_run14.root +395.805 0.0279462 0.000192856 SAVE_PiN_run15.root +594.734 0.0315855 0.000217805 SAVE_PiN_run16.root +795.176 0.0335265 0.000231344 SAVE_PiN_run17.root +1194.73 0.0278244 0.000191651 SAVE_PiN_run18.root +2026.38 0.0361567 0.00024863 SAVE_PiN_run19.root diff --git a/Scripts_20161201/Scripts_20161201/inlistE21_p_ic1ratio.txt b/Scripts_20161201/Scripts_20161201/inlistE21_p_ic1ratio.txt new file mode 100644 index 0000000..4c4e520 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE21_p_ic1ratio.txt @@ -0,0 +1,9 @@ +79.0354 0.274254 +118.87 0.585213 +198.332 0.671514 +317.093 0.748638 +395.805 0.744104 +594.734 0.721014 +795.176 0.646357 +1194.73 0.799829 +2026.38 0.656801 diff --git a/Scripts_20161201/Scripts_20161201/inlistE21_p_kurt1.txt b/Scripts_20161201/Scripts_20161201/inlistE21_p_kurt1.txt new file mode 100644 index 0000000..e2e8e5d --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE21_p_kurt1.txt @@ -0,0 +1,9 @@ +79.0354 1.15258 2.19444 +118.87 0.520883 0.331495 +198.332 1.04504 0 +317.093 1.83832 0 +395.805 0.0138124 0 +594.734 0 0 +795.176 0 0 +1194.73 0 0 +2026.38 0.452095 0 diff --git a/Scripts_20161201/Scripts_20161201/inlistE21_p_noise.txt b/Scripts_20161201/Scripts_20161201/inlistE21_p_noise.txt new file mode 100644 index 0000000..c4e295c --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE21_p_noise.txt @@ -0,0 +1,9 @@ +79.0354 0.0761599 7.35751 +118.87 0.0420442 7.40159 +198.332 0.0199761 7.62691 +317.093 0.107053 7.84962 +395.805 0.0466245 7.69901 +594.734 0.0107159 7.65944 +795.176 -0.0203372 7.59155 +1194.73 0.00377638 7.66406 +2026.38 0.0527975 7.74334 diff --git a/Scripts_20161201/Scripts_20161201/inlistE21_p_peakfit.txt b/Scripts_20161201/Scripts_20161201/inlistE21_p_peakfit.txt new file mode 100644 index 0000000..1e4a30b --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE21_p_peakfit.txt @@ -0,0 +1,9 @@ +79.0354 2.92215 1.31351 +118.87 4.06457 1.76885 +198.332 6.59966 2.64553 +317.093 10.5596 4.06413 +395.805 13.2042 5.04219 +594.734 19.6867 6.79918 +795.176 26.1884 9.19588 +1194.73 38.9097 13.7219 +2026.38 64.764 21.7599 diff --git a/Scripts_20161201/Scripts_20161201/inlistE21_p_posfit_diff.txt b/Scripts_20161201/Scripts_20161201/inlistE21_p_posfit_diff.txt new file mode 100644 index 0000000..99f831f --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE21_p_posfit_diff.txt @@ -0,0 +1,9 @@ +79.0354 0.45761 0.00435112 +118.87 0.330238 0.00305332 +198.332 0.206308 0.00185381 +317.093 0.133107 0.00130555 +395.805 0.108941 0.00102722 +594.734 0.0729327 0.000689338 +795.176 0.0581162 0.000559749 +1194.73 0.042703 0.000413007 +2026.38 0.0301569 0.000300041 diff --git a/Scripts_20161201/Scripts_20161201/inlistE21_p_skew1.txt b/Scripts_20161201/Scripts_20161201/inlistE21_p_skew1.txt new file mode 100644 index 0000000..9e3f30c --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE21_p_skew1.txt @@ -0,0 +1,9 @@ +79.0354 0.112067 0.0952895 +118.87 0.104263 0.0894895 +198.332 0.0824709 0.0695364 +317.093 0.0772315 0.0526849 +395.805 0.0805291 0.0483046 +594.734 0.089575 0.0401392 +795.176 0.0938467 0.0363902 +1194.73 0.100155 0.0324707 +2026.38 0.0978564 0.0277656 diff --git a/Scripts_20161201/Scripts_20161201/inlistE255_c_bpm1.txt b/Scripts_20161201/Scripts_20161201/inlistE255_c_bpm1.txt new file mode 100644 index 0000000..d3516fe --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE255_c_bpm1.txt @@ -0,0 +1,9 @@ +2.03678 150.693 0.543288 +3.05742 229.476 0.870831 +5.08728 382.565 1.26309 +8.1511 612.493 2.03983 +10.1567 763.613 2.7026 +15.2559 1147.74 4.12322 +20.3417 1527.43 5.48393 +30.4781 2293.42 8.70945 +51.1445 3833.89 13.0878 diff --git a/Scripts_20161201/Scripts_20161201/inlistE255_c_bpm1_diff.txt b/Scripts_20161201/Scripts_20161201/inlistE255_c_bpm1_diff.txt new file mode 100644 index 0000000..57e511b --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE255_c_bpm1_diff.txt @@ -0,0 +1,9 @@ +2.03678 0.0763852 0.000682172 +3.05742 0.051699 0.000466563 +5.08728 0.0325906 0.000308801 +8.1511 0.0204836 0.000174609 +10.1567 0.0174016 0.000158478 +15.2559 0.012506 0.000112411 +20.3417 0.0100836 8.94662e-05 +30.4781 0.00756613 6.49011e-05 +51.1445 0.00526436 4.42397e-05 diff --git a/Scripts_20161201/Scripts_20161201/inlistE255_c_bpm1ratio.txt b/Scripts_20161201/Scripts_20161201/inlistE255_c_bpm1ratio.txt new file mode 100644 index 0000000..6a8ebf0 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE255_c_bpm1ratio.txt @@ -0,0 +1,9 @@ +2.03678 0.533467 0.155397 +3.05742 0.549988 0.15895 +5.08728 0.548464 0.144768 +8.1511 0.550108 0.151911 +10.1567 0.54965 0.147272 +15.2559 0.552097 0.152093 +20.3417 0.553127 0.159644 +30.4781 0.554076 0.162562 +51.1445 0.552108 0.156794 diff --git a/Scripts_20161201/Scripts_20161201/inlistE255_c_chi2fit.txt b/Scripts_20161201/Scripts_20161201/inlistE255_c_chi2fit.txt new file mode 100644 index 0000000..53b098f --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE255_c_chi2fit.txt @@ -0,0 +1,9 @@ +2.03678 0.629931 0.137424 +3.05742 0.679688 0.181422 +5.08728 0.774731 0.245365 +8.1511 0.929021 0.417994 +10.1567 1.02034 0.466241 +15.2559 1.3009 0.747221 +20.3417 1.595 0.901349 +30.4781 2.23572 1.2661 +51.1445 3.8607 2.46086 diff --git a/Scripts_20161201/Scripts_20161201/inlistE255_c_focus1.txt b/Scripts_20161201/Scripts_20161201/inlistE255_c_focus1.txt new file mode 100644 index 0000000..93af73a --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE255_c_focus1.txt @@ -0,0 +1,9 @@ +2.03678 3.46321 1.14527 +3.05742 3.74538 0.979351 +5.08728 3.89617 0.825728 +8.1511 3.98787 0.796264 +10.1567 4.01569 0.801486 +15.2559 4.04334 0.600617 +20.3417 4.06544 0.615489 +30.4781 4.12121 0.673116 +51.1445 4.16792 0.495345 diff --git a/Scripts_20161201/Scripts_20161201/inlistE255_c_focusHIT.txt b/Scripts_20161201/Scripts_20161201/inlistE255_c_focusHIT.txt new file mode 100644 index 0000000..9e00f49 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE255_c_focusHIT.txt @@ -0,0 +1,9 @@ +2.03678 3.4 +3.05742 3.4 +5.08728 3.4 +8.1511 3.4 +10.1567 3.4 +15.2559 3.4 +20.3417 3.4 +30.4781 3.4 +51.1445 3.4 diff --git a/Scripts_20161201/Scripts_20161201/inlistE255_c_focusfit.txt b/Scripts_20161201/Scripts_20161201/inlistE255_c_focusfit.txt new file mode 100644 index 0000000..2342df8 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE255_c_focusfit.txt @@ -0,0 +1,9 @@ +2.03678 3.77961 0.625758 +3.05742 3.79866 0.403627 +5.08728 3.802 0.301248 +8.1511 3.79353 0.240788 +10.1567 3.78794 0.217661 +15.2559 3.79465 0.195107 +20.3417 3.77676 0.174373 +30.4781 3.77044 0.164268 +51.1445 3.79426 0.166524 diff --git a/Scripts_20161201/Scripts_20161201/inlistE255_c_focusfit_diff.txt b/Scripts_20161201/Scripts_20161201/inlistE255_c_focusfit_diff.txt new file mode 100644 index 0000000..c8fa780 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE255_c_focusfit_diff.txt @@ -0,0 +1,9 @@ +2.03678 0.409316 0.00390989 +3.05742 0.278335 0.00248756 +5.08728 0.174664 0.00163948 +8.1511 0.112908 0.000979277 +10.1567 0.093361 0.000873629 +15.2559 0.0691993 0.000617064 +20.3417 0.054835 0.000475703 +30.4781 0.040443 0.000368397 +51.1445 0.0293024 0.000240678 diff --git a/Scripts_20161201/Scripts_20161201/inlistE255_c_ic1.txt b/Scripts_20161201/Scripts_20161201/inlistE255_c_ic1.txt new file mode 100644 index 0000000..bced905 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE255_c_ic1.txt @@ -0,0 +1,9 @@ +2.03678 3.05172 0.00854318 SAVE_PiN_run37.root +3.05742 4.57758 0.0135182 SAVE_PiN_run36.root +5.08728 7.6293 0.0233155 SAVE_PiN_run35.root +8.1511 12.2069 0.0368014 SAVE_PiN_run34.root +10.1567 15.2586 0.050917 SAVE_PiN_run33.root +15.2559 22.8879 0.0767106 SAVE_PiN_run32.root +20.3417 30.5172 0.104652 SAVE_PiN_run31.root +30.4781 45.7758 0.164133 SAVE_PiN_run30.root +51.1445 76.293 0.23913 SAVE_PiN_run29.root diff --git a/Scripts_20161201/Scripts_20161201/inlistE255_c_ic1_diff.txt b/Scripts_20161201/Scripts_20161201/inlistE255_c_ic1_diff.txt new file mode 100644 index 0000000..fed75f0 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE255_c_ic1_diff.txt @@ -0,0 +1,9 @@ +2.03678 0.0310766 0.000214102 SAVE_PiN_run37.root +3.05742 0.046645 0.000321285 SAVE_PiN_run36.root +5.08728 0.0361789 0.000249444 SAVE_PiN_run35.root +8.1511 0.0334214 0.000230093 SAVE_PiN_run34.root +10.1567 0.0288862 0.00019922 SAVE_PiN_run33.root +15.2559 0.0323892 0.000223411 SAVE_PiN_run32.root +20.3417 0.0323006 0.0002228 SAVE_PiN_run31.root +30.4781 0.0286232 0.000197425 SAVE_PiN_run30.root +51.1445 0.0344682 0.00023712 SAVE_PiN_run29.root diff --git a/Scripts_20161201/Scripts_20161201/inlistE255_c_ic1ratio.txt b/Scripts_20161201/Scripts_20161201/inlistE255_c_ic1ratio.txt new file mode 100644 index 0000000..e64334c --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE255_c_ic1ratio.txt @@ -0,0 +1,9 @@ +2.03678 0.603299 +3.05742 0.505584 +5.08728 0.668102 +8.1511 0.634942 +10.1567 0.712849 +15.2559 0.70298 +20.3417 0.687492 +30.4781 0.702654 +51.1445 0.65943 diff --git a/Scripts_20161201/Scripts_20161201/inlistE255_c_kurt1.txt b/Scripts_20161201/Scripts_20161201/inlistE255_c_kurt1.txt new file mode 100644 index 0000000..14a32c6 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE255_c_kurt1.txt @@ -0,0 +1,9 @@ +2.03678 0.281026 0.403856 +3.05742 0.218115 0.204661 +5.08728 0.262192 0.265332 +8.1511 0.33539 0.596192 +10.1567 0.378146 0.393922 +15.2559 0.440917 0.495279 +20.3417 0.498713 0.574302 +30.4781 0.669951 0.791163 +51.1445 0.851357 0.926631 diff --git a/Scripts_20161201/Scripts_20161201/inlistE255_c_noise.txt b/Scripts_20161201/Scripts_20161201/inlistE255_c_noise.txt new file mode 100644 index 0000000..918959c --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE255_c_noise.txt @@ -0,0 +1,9 @@ +2.03678 0.0508137 7.93465 +3.05742 0.00391708 7.61517 +5.08728 0.098349 7.79809 +8.1511 0.0154195 7.64269 +10.1567 0.0889782 7.2944 +15.2559 -0.0295755 7.41818 +20.3417 -0.0481177 7.61982 +30.4781 0.038563 7.93382 +51.1445 -0.0810232 7.50225 diff --git a/Scripts_20161201/Scripts_20161201/inlistE255_c_peakfit.txt b/Scripts_20161201/Scripts_20161201/inlistE255_c_peakfit.txt new file mode 100644 index 0000000..8da66cd --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE255_c_peakfit.txt @@ -0,0 +1,9 @@ +2.03678 3.93188 1.38861 +3.05742 5.93471 2.07269 +5.08728 9.90953 3.49448 +8.1511 15.8498 5.61377 +10.1567 19.8685 7.50077 +15.2559 29.7649 11.4264 +20.3417 39.7694 15.2083 +30.4781 59.8829 24.146 +51.1445 98.6437 35.8098 diff --git a/Scripts_20161201/Scripts_20161201/inlistE255_c_posfit_diff.txt b/Scripts_20161201/Scripts_20161201/inlistE255_c_posfit_diff.txt new file mode 100644 index 0000000..ddeca79 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE255_c_posfit_diff.txt @@ -0,0 +1,9 @@ +2.03678 0.129147 0.00121823 +3.05742 0.0885219 0.000822596 +5.08728 0.0544837 0.000542304 +8.1511 0.0362059 0.000321135 +10.1567 0.0307345 0.000271996 +15.2559 0.022488 0.000196458 +20.3417 0.0184867 0.000156963 +30.4781 0.0139872 0.000116538 +51.1445 0.0106452 8.23243e-05 diff --git a/Scripts_20161201/Scripts_20161201/inlistE255_c_skew1.txt b/Scripts_20161201/Scripts_20161201/inlistE255_c_skew1.txt new file mode 100644 index 0000000..2738ed4 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE255_c_skew1.txt @@ -0,0 +1,9 @@ +2.03678 0.12427 0.109443 +3.05742 0.11433 0.092943 +5.08728 0.0961096 0.0785574 +8.1511 0.0823375 0.0687544 +10.1567 0.0784213 0.06545 +15.2559 0.0688632 0.0595041 +20.3417 0.0597697 0.0516612 +30.4781 0.054318 0.0490421 +51.1445 0.0474605 0.0514196 diff --git a/Scripts_20161201/Scripts_20161201/inlistE255_p_bpm1.txt b/Scripts_20161201/Scripts_20161201/inlistE255_p_bpm1.txt new file mode 100644 index 0000000..e6c2895 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE255_p_bpm1.txt @@ -0,0 +1,9 @@ +78.9848 313.495 0.997026 +118.658 465.022 1.37059 +198.17 778.045 2.33979 +316.018 1240.36 3.57457 +394.438 1546.57 4.4672 +593.806 2323.15 7.14729 +790.554 3097.63 9.34748 +1188.03 4646.57 12.8269 +1990.53 7765.03 25.7314 diff --git a/Scripts_20161201/Scripts_20161201/inlistE255_p_bpm1_diff.txt b/Scripts_20161201/Scripts_20161201/inlistE255_p_bpm1_diff.txt new file mode 100644 index 0000000..a1a34b3 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE255_p_bpm1_diff.txt @@ -0,0 +1,9 @@ +78.9848 0.0665337 0.000542706 +118.658 0.0454473 0.000392711 +198.17 0.0280808 0.000247037 +316.018 0.0177565 0.000148189 +394.438 0.0144121 0.000122994 +593.806 0.0101224 8.87371e-05 +790.554 0.00782278 6.44797e-05 +1188.03 0.00547459 4.56877e-05 +1990.53 0.00394504 3.43175e-05 diff --git a/Scripts_20161201/Scripts_20161201/inlistE255_p_bpm1ratio.txt b/Scripts_20161201/Scripts_20161201/inlistE255_p_bpm1ratio.txt new file mode 100644 index 0000000..e03996c --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE255_p_bpm1ratio.txt @@ -0,0 +1,9 @@ +78.9848 0.704582 0.179658 +118.658 0.700751 0.181207 +198.17 0.700894 0.170275 +316.018 0.698848 0.170945 +394.438 0.695277 0.159478 +593.806 0.697389 0.173166 +790.554 0.698041 0.178466 +1188.03 0.693292 0.139024 +1990.53 0.704357 0.204307 diff --git a/Scripts_20161201/Scripts_20161201/inlistE255_p_chi2fit.txt b/Scripts_20161201/Scripts_20161201/inlistE255_p_chi2fit.txt new file mode 100644 index 0000000..0e13f80 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE255_p_chi2fit.txt @@ -0,0 +1,9 @@ +78.9848 0.566022 0.119286 +118.658 0.585153 0.285938 +198.17 0.625875 0.300151 +316.018 0.707312 0.367639 +394.438 0.772697 0.444139 +593.806 0.977073 0.484791 +790.554 1.24462 0.598084 +1188.03 2.01013 0.991778 +1990.53 4.2303 2.52045 diff --git a/Scripts_20161201/Scripts_20161201/inlistE255_p_focus1.txt b/Scripts_20161201/Scripts_20161201/inlistE255_p_focus1.txt new file mode 100644 index 0000000..11cdcfc --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE255_p_focus1.txt @@ -0,0 +1,9 @@ +78.9848 7.17336 1.83646 +118.658 8.1465 1.3967 +198.17 8.9253 1.1579 +316.018 9.41214 0.964464 +394.438 9.58177 0.865356 +593.806 9.8818 0.772428 +790.554 10.0336 0.689973 +1188.03 10.2496 0.6402 +1990.53 10.4546 0.704659 diff --git a/Scripts_20161201/Scripts_20161201/inlistE255_p_focusHIT.txt b/Scripts_20161201/Scripts_20161201/inlistE255_p_focusHIT.txt new file mode 100644 index 0000000..9b125f7 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE255_p_focusHIT.txt @@ -0,0 +1,9 @@ +78.9848 8.1 +118.658 8.1 +198.17 8.1 +316.018 8.1 +394.438 8.1 +593.806 8.1 +790.554 8.1 +1188.03 8.1 +1990.53 8.1 diff --git a/Scripts_20161201/Scripts_20161201/inlistE255_p_focusfit.txt b/Scripts_20161201/Scripts_20161201/inlistE255_p_focusfit.txt new file mode 100644 index 0000000..8ae2002 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE255_p_focusfit.txt @@ -0,0 +1,9 @@ +78.9848 9.40815 0.765553 +118.658 9.39107 0.534003 +198.17 9.37967 0.328835 +316.018 9.37024 0.218153 +394.438 9.36502 0.181707 +593.806 9.42575 0.155702 +790.554 9.41929 0.139532 +1188.03 9.44091 0.122658 +1990.53 9.43248 0.145764 diff --git a/Scripts_20161201/Scripts_20161201/inlistE255_p_focusfit_diff.txt b/Scripts_20161201/Scripts_20161201/inlistE255_p_focusfit_diff.txt new file mode 100644 index 0000000..0a26028 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE255_p_focusfit_diff.txt @@ -0,0 +1,9 @@ +78.9848 0.788846 0.00666858 +118.658 0.537538 0.0046225 +198.17 0.328294 0.00271829 +316.018 0.208886 0.0017232 +394.438 0.168501 0.0014206 +593.806 0.118569 0.001013 +790.554 0.0917777 0.00079113 +1188.03 0.0646191 0.000530595 +1990.53 0.0440651 0.000394613 diff --git a/Scripts_20161201/Scripts_20161201/inlistE255_p_ic1.txt b/Scripts_20161201/Scripts_20161201/inlistE255_p_ic1.txt new file mode 100644 index 0000000..3020fe0 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE255_p_ic1.txt @@ -0,0 +1,9 @@ +78.9848 4.84658 0.0125389 SAVE_PiN_run10.root +118.658 7.26987 0.0192763 SAVE_PiN_run8.root +198.17 12.1165 0.0331729 SAVE_PiN_run7.root +316.018 19.3863 0.0515024 SAVE_PiN_run6.root +394.438 24.2329 0.0636555 SAVE_PiN_run5.root +593.806 36.3494 0.0990094 SAVE_PiN_run4.root +790.554 48.4658 0.129584 SAVE_PiN_run3.root +1188.03 72.6987 0.187114 SAVE_PiN_run2.root +1990.53 121.165 0.358632 SAVE_PiN_run1.root diff --git a/Scripts_20161201/Scripts_20161201/inlistE255_p_ic1_diff.txt b/Scripts_20161201/Scripts_20161201/inlistE255_p_ic1_diff.txt new file mode 100644 index 0000000..9efc411 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE255_p_ic1_diff.txt @@ -0,0 +1,9 @@ +78.9848 0.0444266 0.000307261 SAVE_PiN_run10.root +118.658 0.0376806 0.000260418 SAVE_PiN_run8.root +198.17 0.0324683 0.000224074 SAVE_PiN_run7.root +316.018 0.0374567 0.000258809 SAVE_PiN_run6.root +394.438 0.0358997 0.000247897 SAVE_PiN_run5.root +593.806 0.0371097 0.000256204 SAVE_PiN_run4.root +790.554 0.0394641 0.00027225 SAVE_PiN_run3.root +1188.03 0.0296149 0.000204333 SAVE_PiN_run2.root +1990.53 0.04342 0.000326052 SAVE_PiN_run1.root diff --git a/Scripts_20161201/Scripts_20161201/inlistE255_p_ic1ratio.txt b/Scripts_20161201/Scripts_20161201/inlistE255_p_ic1ratio.txt new file mode 100644 index 0000000..73753d7 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE255_p_ic1ratio.txt @@ -0,0 +1,9 @@ +78.9848 0.513085 +118.658 0.584268 +198.17 0.620264 +316.018 0.613452 +394.438 0.649695 +593.806 0.624804 +790.554 0.589734 +1188.03 0.6997 +1990.53 0.499779 diff --git a/Scripts_20161201/Scripts_20161201/inlistE255_p_kurt1.txt b/Scripts_20161201/Scripts_20161201/inlistE255_p_kurt1.txt new file mode 100644 index 0000000..44ff03c --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE255_p_kurt1.txt @@ -0,0 +1,9 @@ +78.9848 2.53138 4.98834 +118.658 0.401686 0.790467 +198.17 0.170914 0.173365 +316.018 0.190522 0.211158 +394.438 0.1946 0.223632 +593.806 0.206862 0.236383 +790.554 0.226637 0.246079 +1188.03 0.302993 0.281785 +1990.53 0.51175 0.367748 diff --git a/Scripts_20161201/Scripts_20161201/inlistE255_p_noise.txt b/Scripts_20161201/Scripts_20161201/inlistE255_p_noise.txt new file mode 100644 index 0000000..f0a12f4 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE255_p_noise.txt @@ -0,0 +1,9 @@ +78.9848 0.101107 7.44452 +118.658 0.0254481 7.45788 +198.17 0.128863 7.42043 +316.018 0.00740624 7.43333 +394.438 0.159264 8.00434 +593.806 -0.0661417 7.35801 +790.554 0.013217 7.45056 +1188.03 -0.0394362 7.43814 +1990.53 -0.237047 7.79402 diff --git a/Scripts_20161201/Scripts_20161201/inlistE255_p_peakfit.txt b/Scripts_20161201/Scripts_20161201/inlistE255_p_peakfit.txt new file mode 100644 index 0000000..a3d8bda --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE255_p_peakfit.txt @@ -0,0 +1,9 @@ +78.9848 3.35311 0.976075 +118.658 4.98191 1.49193 +198.17 8.32673 2.55977 +316.018 13.3299 3.9322 +394.438 16.6505 4.91948 +593.806 24.761 7.79587 +790.554 33.0787 10.1985 +1188.03 49.4349 13.9961 +1990.53 82.2093 25.4786 diff --git a/Scripts_20161201/Scripts_20161201/inlistE255_p_posfit_diff.txt b/Scripts_20161201/Scripts_20161201/inlistE255_p_posfit_diff.txt new file mode 100644 index 0000000..2c95c97 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE255_p_posfit_diff.txt @@ -0,0 +1,9 @@ +78.9848 0.220088 0.00197253 +118.658 0.14943 0.00131907 +198.17 0.0921645 0.000779895 +316.018 0.0587563 0.000508382 +394.438 0.0485497 0.000405983 +593.806 0.0341533 0.000291207 +790.554 0.026833 0.000222401 +1188.03 0.0192512 0.000151747 +1990.53 0.0141271 0.000121728 diff --git a/Scripts_20161201/Scripts_20161201/inlistE255_p_skew1.txt b/Scripts_20161201/Scripts_20161201/inlistE255_p_skew1.txt new file mode 100644 index 0000000..c930aff --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/inlistE255_p_skew1.txt @@ -0,0 +1,9 @@ +78.9848 0.10584 0.111014 +118.658 0.0872794 0.0699473 +198.17 0.0675291 0.0568903 +316.018 0.0514621 0.0494144 +394.438 0.0447042 0.0381738 +593.806 0.0374671 0.0320434 +790.554 0.0337182 0.0326484 +1188.03 0.0294754 0.0285458 +1990.53 0.0301879 0.0358559 diff --git a/Scripts_20161201/Scripts_20161201/jobs/runjob1.sh b/Scripts_20161201/Scripts_20161201/jobs/runjob1.sh new file mode 100644 index 0000000..f8cf496 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/jobs/runjob1.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161201/analyse2 PiN_run1.root diff --git a/Scripts_20161201/Scripts_20161201/jobs/runjob10.sh b/Scripts_20161201/Scripts_20161201/jobs/runjob10.sh new file mode 100644 index 0000000..a0f2692 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/jobs/runjob10.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161201/analyse2 PiN_run10.root diff --git a/Scripts_20161201/Scripts_20161201/jobs/runjob11.sh b/Scripts_20161201/Scripts_20161201/jobs/runjob11.sh new file mode 100644 index 0000000..3598326 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/jobs/runjob11.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161201/analyse2 PiN_run11.root diff --git a/Scripts_20161201/Scripts_20161201/jobs/runjob12.sh b/Scripts_20161201/Scripts_20161201/jobs/runjob12.sh new file mode 100644 index 0000000..17a118b --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/jobs/runjob12.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161201/analyse2 PiN_run12.root diff --git a/Scripts_20161201/Scripts_20161201/jobs/runjob13.sh b/Scripts_20161201/Scripts_20161201/jobs/runjob13.sh new file mode 100644 index 0000000..a9b2186 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/jobs/runjob13.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161201/analyse2 PiN_run13.root diff --git a/Scripts_20161201/Scripts_20161201/jobs/runjob14.sh b/Scripts_20161201/Scripts_20161201/jobs/runjob14.sh new file mode 100644 index 0000000..8ce427f --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/jobs/runjob14.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161201/analyse2 PiN_run14.root diff --git a/Scripts_20161201/Scripts_20161201/jobs/runjob15.sh b/Scripts_20161201/Scripts_20161201/jobs/runjob15.sh new file mode 100644 index 0000000..7df4f85 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/jobs/runjob15.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161201/analyse2 PiN_run15.root diff --git a/Scripts_20161201/Scripts_20161201/jobs/runjob16.sh b/Scripts_20161201/Scripts_20161201/jobs/runjob16.sh new file mode 100644 index 0000000..aee9c2a --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/jobs/runjob16.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161201/analyse2 PiN_run16.root diff --git a/Scripts_20161201/Scripts_20161201/jobs/runjob17.sh b/Scripts_20161201/Scripts_20161201/jobs/runjob17.sh new file mode 100644 index 0000000..d24a582 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/jobs/runjob17.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161201/analyse2 PiN_run17.root diff --git a/Scripts_20161201/Scripts_20161201/jobs/runjob18.sh b/Scripts_20161201/Scripts_20161201/jobs/runjob18.sh new file mode 100644 index 0000000..1baf636 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/jobs/runjob18.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161201/analyse2 PiN_run18.root diff --git a/Scripts_20161201/Scripts_20161201/jobs/runjob19.sh b/Scripts_20161201/Scripts_20161201/jobs/runjob19.sh new file mode 100644 index 0000000..436cf16 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/jobs/runjob19.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161201/analyse2 PiN_run19.root diff --git a/Scripts_20161201/Scripts_20161201/jobs/runjob2.sh b/Scripts_20161201/Scripts_20161201/jobs/runjob2.sh new file mode 100644 index 0000000..c5d4c73 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/jobs/runjob2.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161201/analyse2 PiN_run2.root diff --git a/Scripts_20161201/Scripts_20161201/jobs/runjob29.sh b/Scripts_20161201/Scripts_20161201/jobs/runjob29.sh new file mode 100644 index 0000000..55a3773 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/jobs/runjob29.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161201/analyse2 PiN_run29.root diff --git a/Scripts_20161201/Scripts_20161201/jobs/runjob3.sh b/Scripts_20161201/Scripts_20161201/jobs/runjob3.sh new file mode 100644 index 0000000..c8f09a0 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/jobs/runjob3.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161201/analyse2 PiN_run3.root diff --git a/Scripts_20161201/Scripts_20161201/jobs/runjob30.sh b/Scripts_20161201/Scripts_20161201/jobs/runjob30.sh new file mode 100644 index 0000000..52db70f --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/jobs/runjob30.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161201/analyse2 PiN_run30.root diff --git a/Scripts_20161201/Scripts_20161201/jobs/runjob31.sh b/Scripts_20161201/Scripts_20161201/jobs/runjob31.sh new file mode 100644 index 0000000..b237cf8 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/jobs/runjob31.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161201/analyse2 PiN_run31.root diff --git a/Scripts_20161201/Scripts_20161201/jobs/runjob32.sh b/Scripts_20161201/Scripts_20161201/jobs/runjob32.sh new file mode 100644 index 0000000..8002ac6 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/jobs/runjob32.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161201/analyse2 PiN_run32.root diff --git a/Scripts_20161201/Scripts_20161201/jobs/runjob33.sh b/Scripts_20161201/Scripts_20161201/jobs/runjob33.sh new file mode 100644 index 0000000..0bb3c4a --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/jobs/runjob33.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161201/analyse2 PiN_run33.root diff --git a/Scripts_20161201/Scripts_20161201/jobs/runjob34.sh b/Scripts_20161201/Scripts_20161201/jobs/runjob34.sh new file mode 100644 index 0000000..cb89673 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/jobs/runjob34.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161201/analyse2 PiN_run34.root diff --git a/Scripts_20161201/Scripts_20161201/jobs/runjob35.sh b/Scripts_20161201/Scripts_20161201/jobs/runjob35.sh new file mode 100644 index 0000000..eb44836 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/jobs/runjob35.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161201/analyse2 PiN_run35.root diff --git a/Scripts_20161201/Scripts_20161201/jobs/runjob36.sh b/Scripts_20161201/Scripts_20161201/jobs/runjob36.sh new file mode 100644 index 0000000..8b65f8f --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/jobs/runjob36.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161201/analyse2 PiN_run36.root diff --git a/Scripts_20161201/Scripts_20161201/jobs/runjob37.sh b/Scripts_20161201/Scripts_20161201/jobs/runjob37.sh new file mode 100644 index 0000000..dbb28d4 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/jobs/runjob37.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161201/analyse2 PiN_run37.root diff --git a/Scripts_20161201/Scripts_20161201/jobs/runjob38.sh b/Scripts_20161201/Scripts_20161201/jobs/runjob38.sh new file mode 100644 index 0000000..ce6f9ff --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/jobs/runjob38.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161201/analyse2 PiN_run38.root diff --git a/Scripts_20161201/Scripts_20161201/jobs/runjob39.sh b/Scripts_20161201/Scripts_20161201/jobs/runjob39.sh new file mode 100644 index 0000000..dc094ee --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/jobs/runjob39.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161201/analyse2 PiN_run39.root diff --git a/Scripts_20161201/Scripts_20161201/jobs/runjob4.sh b/Scripts_20161201/Scripts_20161201/jobs/runjob4.sh new file mode 100644 index 0000000..f6c4a54 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/jobs/runjob4.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161201/analyse2 PiN_run4.root diff --git a/Scripts_20161201/Scripts_20161201/jobs/runjob40.sh b/Scripts_20161201/Scripts_20161201/jobs/runjob40.sh new file mode 100644 index 0000000..cf686dd --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/jobs/runjob40.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161201/analyse2 PiN_run40.root diff --git a/Scripts_20161201/Scripts_20161201/jobs/runjob41.sh b/Scripts_20161201/Scripts_20161201/jobs/runjob41.sh new file mode 100644 index 0000000..fd7b4f9 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/jobs/runjob41.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161201/analyse2 PiN_run41.root diff --git a/Scripts_20161201/Scripts_20161201/jobs/runjob42.sh b/Scripts_20161201/Scripts_20161201/jobs/runjob42.sh new file mode 100644 index 0000000..a05c6a1 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/jobs/runjob42.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161201/analyse2 PiN_run42.root diff --git a/Scripts_20161201/Scripts_20161201/jobs/runjob43.sh b/Scripts_20161201/Scripts_20161201/jobs/runjob43.sh new file mode 100644 index 0000000..fd86cd4 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/jobs/runjob43.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161201/analyse2 PiN_run43.root diff --git a/Scripts_20161201/Scripts_20161201/jobs/runjob44.sh b/Scripts_20161201/Scripts_20161201/jobs/runjob44.sh new file mode 100644 index 0000000..bb185b8 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/jobs/runjob44.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161201/analyse2 PiN_run44.root diff --git a/Scripts_20161201/Scripts_20161201/jobs/runjob45.sh b/Scripts_20161201/Scripts_20161201/jobs/runjob45.sh new file mode 100644 index 0000000..45c8658 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/jobs/runjob45.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161201/analyse2 PiN_run45.root diff --git a/Scripts_20161201/Scripts_20161201/jobs/runjob46.sh b/Scripts_20161201/Scripts_20161201/jobs/runjob46.sh new file mode 100644 index 0000000..830d81c --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/jobs/runjob46.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161201/analyse2 PiN_run46.root diff --git a/Scripts_20161201/Scripts_20161201/jobs/runjob5.sh b/Scripts_20161201/Scripts_20161201/jobs/runjob5.sh new file mode 100644 index 0000000..b3f245e --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/jobs/runjob5.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161201/analyse2 PiN_run5.root diff --git a/Scripts_20161201/Scripts_20161201/jobs/runjob6.sh b/Scripts_20161201/Scripts_20161201/jobs/runjob6.sh new file mode 100644 index 0000000..5b578dd --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/jobs/runjob6.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161201/analyse2 PiN_run6.root diff --git a/Scripts_20161201/Scripts_20161201/jobs/runjob7.sh b/Scripts_20161201/Scripts_20161201/jobs/runjob7.sh new file mode 100644 index 0000000..3ab62dd --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/jobs/runjob7.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161201/analyse2 PiN_run7.root diff --git a/Scripts_20161201/Scripts_20161201/jobs/runjob8.sh b/Scripts_20161201/Scripts_20161201/jobs/runjob8.sh new file mode 100644 index 0000000..4873bb9 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/jobs/runjob8.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161201/analyse2 PiN_run8.root diff --git a/Scripts_20161201/Scripts_20161201/jobs/runjob9.sh b/Scripts_20161201/Scripts_20161201/jobs/runjob9.sh new file mode 100644 index 0000000..52dd091 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/jobs/runjob9.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161201/analyse2 PiN_run9.root diff --git a/Scripts_20161201/Scripts_20161201/lhcbStyle.C b/Scripts_20161201/Scripts_20161201/lhcbStyle.C new file mode 100644 index 0000000..0810aae --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/lhcbStyle.C @@ -0,0 +1,179 @@ +{ +//////////////////////////////////////////////////////////////////// +// PURPOSE: +// +// This macro defines a reasonable style for (black-and-white) +// "publication quality" ROOT plots. The default settings contain +// many features that are either not desirable for printing on white +// paper or impair the general readibility of plots. +// +// USAGE: +// +// Simply include the line +// gROOT->ProcessLine(".x $LHCBSTYLE/root/lhcbstyle.C"); +// at the beginning of your root macro. +// +// SOME COMMENTS: +// +// Statistics and fit boxes: +// +// "Decorative" items around the histogram are kept to a minimum. +// In particular there is no box with statistics or fit information. +// You can easily change this either by editing your private copy +// of this style file or by calls to "gStyle" in your macro. +// For example, +// gStyle->SetOptFit(1011); +// will add some fit information. +// +// Font: +// +// The font is chosen to be 62, i.e.helvetica-bold-r-normal with +// precision 2. Font is of course a matter of taste, but most people +// will probably agree that Helvetica bold gives close to optimal +// readibility in presentations. It appears to be the ROOT default, +// and since there are still some features in ROOT that simply won't +// respond to any font requests, it is the wise choice to avoid +// ugly font mixtures on the same plot... The precision of the font (2) +// is chosen in order to have a rotatable and scalable font. Be sure +// to use true-type fonts! I.e. +// Unix.*.Root.UseTTFonts: true in your .rootrc file. +// +// "Landscape histograms": +// +// The style here is designed for more or less quadratic plots. +// For very long histograms, adjustements are needed. For instance, +// for a canvas with 1x5 histograms: +// TCanvas* c1 = new TCanvas("c1", "L0 muons", 600, 800); +// c1->Divide(1,5); +// adaptions like the following will be needed: +// gStyle->SetTickLength(0.05,"x"); +// gStyle->SetTickLength(0.01,"y"); +// gStyle->SetLabelSize(0.15,"x"); +// gStyle->SetLabelSize(0.1,"y"); +// gStyle->SetStatW(0.15); +// gStyle->SetStatH(0.5); +// +//////////////////////////////////////////////////////////////////// + +gROOT->Reset(); + +cout << "executing lhcbStyle.C:" << endl; +cout << " " << endl; +cout << " " << endl; +cout << " $ $ $ $$$ $ " << endl; +cout << " $ $ $ $ $ " << endl; +cout << " $ $$$$$ $ $$$ " << endl; +cout << " $ $ $ $ $ $ " << endl; +cout << " $$$$$ $ $ $$$ $$$ " << endl; +cout << " " << endl; +cout << " LHCb ROOT style file " << endl; +cout << " " << endl; +cout << +" Problems, suggestions, contributions to Thomas.Schietinger@cern.ch" + << endl; +cout << " " << endl; + +TStyle *lhcbStyle= new TStyle("lhcbStyle","LHCb official plots style"); + +// use helvetica-bold-r-normal, precision 2 (rotatable) + Int_t lhcbFont = 22; //62; +// line thickness +Double_t lhcbWidth = 2; + +// use plain black on white colors +lhcbStyle->SetFrameBorderMode(0); +lhcbStyle->SetCanvasBorderMode(0); +lhcbStyle->SetPadBorderMode(0); +lhcbStyle->SetPadColor(0); +lhcbStyle->SetCanvasColor(0); +lhcbStyle->SetStatColor(0); +lhcbStyle->SetPalette(1); +lhcbStyle->SetTitleColor(1); + lhcbStyle->SetFillColor(1);//0 + lhcbStyle->SetFillStyle(0); + +// set the paper & margin sizes +lhcbStyle->SetPaperSize(20,26); +lhcbStyle->SetPadTopMargin(0.05); +//lhcbStyle->SetPadRightMargin(0.05); // increase for colz plots!! +lhcbStyle->SetPadRightMargin(0.08); // increase for colz plots!! +lhcbStyle->SetPadBottomMargin(0.16); +lhcbStyle->SetPadLeftMargin(0.14); + +// use large fonts +lhcbStyle->SetTextFont(lhcbFont); +lhcbStyle->SetTextSize(0.08); +lhcbStyle->SetLabelFont(lhcbFont,"x"); +lhcbStyle->SetLabelFont(lhcbFont,"y"); +lhcbStyle->SetLabelFont(lhcbFont,"z"); +lhcbStyle->SetLabelSize(0.05,"x"); +lhcbStyle->SetLabelSize(0.05,"y"); +lhcbStyle->SetLabelSize(0.05,"z"); +lhcbStyle->SetTitleFont(lhcbFont); +lhcbStyle->SetTitleFont(lhcbFont,"y"); +lhcbStyle->SetTitleFont(lhcbFont,"x"); +lhcbStyle->SetTitleFont(lhcbFont,"z"); +lhcbStyle->SetTitleSize(0.06,"x"); +lhcbStyle->SetTitleSize(0.06,"y"); +lhcbStyle->SetTitleSize(0.06,"z"); + +// use bold lines and markers +lhcbStyle->SetLineWidth(lhcbWidth); +lhcbStyle->SetFrameLineWidth(lhcbWidth); +lhcbStyle->SetHistLineWidth(lhcbWidth); +lhcbStyle->SetFuncWidth(lhcbWidth); +lhcbStyle->SetGridWidth(lhcbWidth); +lhcbStyle->SetLineStyleString(2,"[12 12]"); // postscript dashes +lhcbStyle->SetMarkerStyle(21); +lhcbStyle->SetMarkerSize(1.0); + +// label offsets +lhcbStyle->SetLabelOffset(0.015); + +// by default, do not display histogram decorations: +lhcbStyle->SetOptStat(0); +//lhcbStyle->SetOptStat(1110); // show only nent, mean, rms +lhcbStyle->SetOptTitle(0); +lhcbStyle->SetOptFit(0); +//lhcbStyle->SetOptFit(1011); // show probability, parameters and errors + +// look of the statistics box: +lhcbStyle->SetStatBorderSize(1); +lhcbStyle->SetStatFont(lhcbFont); +lhcbStyle->SetStatFontSize(0.05); +lhcbStyle->SetStatX(0.9); +lhcbStyle->SetStatY(0.9); +lhcbStyle->SetStatW(0.25); +lhcbStyle->SetStatH(0.15); + +// put tick marks on top and RHS of plots +lhcbStyle->SetPadTickX(1); +lhcbStyle->SetPadTickY(1); + +// histogram divisions: only 5 in x to avoid label overlaps +lhcbStyle->SetNdivisions(505,"x"); +lhcbStyle->SetNdivisions(510,"y"); + +gROOT->SetStyle("lhcbStyle"); +gROOT->ForceStyle(); + +TPaveText *lhcbName = new TPaveText(0.65,0.8,0.9,0.9,"BRNDC"); +lhcbName->SetFillColor(0); +lhcbName->SetTextAlign(12); +lhcbName->SetBorderSize(0); +lhcbName->AddText("LHCb"); + +TText *lhcbLabel = new TText(); +lhcbLabel->SetTextFont(lhcbFont); +lhcbLabel->SetTextColor(1); +lhcbLabel->SetTextSize(0.04); +lhcbLabel->SetTextAlign(12); + +TLatex *lhcbLatex = new TLatex(); +lhcbLatex->SetTextFont(lhcbFont); +lhcbLatex->SetTextColor(1); +lhcbLatex->SetTextSize(0.04); +lhcbLatex->SetTextAlign(12); +lhcbStyle->SetLegendFillColor(kWhite); + +} diff --git a/Scripts_20161201/Scripts_20161201/plot b/Scripts_20161201/Scripts_20161201/plot new file mode 100755 index 0000000..94f2ca6 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/plot differ diff --git a/Scripts_20161201/Scripts_20161201/plot.c b/Scripts_20161201/Scripts_20161201/plot.c new file mode 100644 index 0000000..ea349ec --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/plot.c @@ -0,0 +1,462 @@ +#include +#include +#include +#include +#include + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + + +#include +#include +#include + +#include + + + +using namespace std; + + +int main(int argc, char **argv) +{ + + // Working directories + const char *dirname = "/work/leverington/beamprofilemonitor/hitdata/HIT_01-12-2016/with_timestamp/"; + + + const char *listfile = NULL; + int ion = atoi(argv[1]); + if (ion==1) {listfile = "inlistE255_p";} + else if (ion==2) {listfile = "inlistE21_p";} + else if (ion==3) {listfile = "inlistE255_c";} + else if (ion==4) {listfile = "inlistE21_c";} + else {cerr<< argv[1] << " not allowed" << endl; + cerr << "specify (1, 2, 3, or 4) for E255_p, E21_p, E255_c, or E21_c" << endl; + return 1; + } + ifstream in; + ofstream ic1energyfile,ic2energyfile, beamenergyfile,beamenergyfile_iccorr, noisefile, focusfile,focusHITfile, skewfile, kurtfile,focusFitfile,chi2Fitfile; + ofstream ic1energyfile_diff, beamenergyfile_diff, focusFitfile_diff, posFitfile_diff, peakFitfile; + + TFile *f; + TTree *tree; + Int_t nfiles = 0; + Int_t EList = 0; + Double_t Energy = 0.; + Double_t F1 = 0.; + Double_t Intensity = 0.; + Double_t SP = 0.; + char Filename[50]; + Int_t id = 0; + Double_t signalmean = 0.; + Double_t signalmeanerror = 0.; + Double_t signalmean_corr = 0.; + Double_t signalmeanerror_corr = 0.; + Double_t signalmean_offsetcorr = 0.; + Double_t signalmeanerror_offsetcorr = 0.; + + Double_t ic1mean = 0.; + Double_t ic1meanerror = 0.; + Double_t ic2mean = 0.; + Double_t ic2meanerror = 0.; + + Double_t sp_air = 0.; + Double_t sp_ps = 0.; + Double_t sp2_air = 0.; + Double_t sp2_ps = 0.; + + Double_t ic_beam_ratio = 0.; + Double_t ic_beam_ratioerror = 0.; + + Double_t totalcurrent = 0.; + Double_t totaltime = 0.; + Double_t intcorr = 0.; + Double_t icbpmcorrelation = 0.; + + Double_t noisemean = 0.; + Double_t noiseRMS = 0.; + Double_t focusmean = 0.; + Double_t focusRMS = 0.; + Double_t skewmean = 0.; + Double_t skewRMS = 0.; + Double_t kurtmean = 0.; + Double_t kurtRMS = 0.; + Double_t focusFitmean = 0.; + Double_t focusFitRMS = 0.; + Double_t chi2Fitmean = 0.; + Double_t chi2FitRMS = 0.; + Double_t peakFitmean = 0.; + Double_t peakFitRMS = 0.; + Double_t focusdiffFitmean = 0.; + Double_t focusdiffFitRMS = 0.; + Double_t focusdiffFitmeanerror = 0.; + Double_t focusdiffFitRMSerror = 0.; + Double_t posdiffFitmean = 0.; + Double_t posdiffFitRMS = 0.; + Double_t posdiffFitmeanerror = 0.; + Double_t posdiffFitRMSerror = 0.; + Double_t signaldiffmean = 0.; + Double_t signaldiffRMS = 0.; + Double_t signaldiffmeanerror = 0.; + Double_t signaldiffRMSerror = 0.; + Double_t ic1diffmean = 0.; + Double_t ic1diffRMS = 0.; + Double_t ic1diffmeanerror = 0.; + Double_t ic1diffRMSerror = 0.; + Double_t focusdiffcorr = 0.; + + cout << "Trying to open"<< Form(": %s%s",dirname, listfile)<<"... " << endl; + + in.open(Form("%s%s.prn",dirname, listfile)); + + ic1energyfile.open(Form("%s_ic1.txt",listfile )); + ic2energyfile.open(Form("%s_ic1ratio.txt",listfile )); + + beamenergyfile.open(Form("%s_bpm1.txt",listfile )); + beamenergyfile_iccorr.open(Form("%s_bpm1ratio.txt",listfile )); + + noisefile.open(Form("%s_noise.txt",listfile )); + focusfile.open(Form("%s_focus1.txt",listfile )); + focusHITfile.open(Form("%s_focusHIT.txt",listfile )); + skewfile.open(Form("%s_skew1.txt",listfile )); + kurtfile.open(Form("%s_kurt1.txt",listfile )); + focusFitfile.open(Form("%s_focusfit.txt",listfile )); + chi2Fitfile.open(Form("%s_chi2fit.txt",listfile )); + ic1energyfile_diff.open(Form("%s_ic1_diff.txt",listfile )); + beamenergyfile_diff.open(Form("%s_bpm1_diff.txt",listfile )); + focusFitfile_diff.open(Form("%s_focusfit_diff.txt",listfile )); + posFitfile_diff.open(Form("%s_posfit_diff.txt",listfile )); + peakFitfile.open(Form("%s_peakfit.txt",listfile )); + + TF1 * f_sp_air = new TF1("f_sp_air","[0]*pow(x,[1])+[2]", 50, 250); //stopping power of protons in Air [MeV cm2 /g] + f_sp_air->SetParameters(303.746, -0.873697,1.01335); //protons between 50 and 300 MeV + + TF1 * f_sp_ps = new TF1("f_sp_ps","[0]*pow(x,[1])+[2]", 50, 250); //stopping power of protons in polystyrene [MeV cm2 /g] + f_sp_ps->SetParameters(361.936, -0.892255, 1.19133); //protons between 50 and 220 MeV + + TF1 * f_h2sp_air = new TF1("f_h2sp_air","[0]*pow(x,[1])+[2]", 50, 250); //stopping power of helium in air [MeV cm2 /g] + f_h2sp_air->SetParameters(1236.51, -0.880225, 4.17041); //helium between 50 and 300 MeV + + TF1 * f_h2sp_ps = new TF1("f_h2sp_ps","[0]*pow(x,[1])+[2]", 50, 250); //stopping power of helium in polystyrene [MeV cm2 /g] + f_h2sp_ps->SetParameters(1387.08, -0.882686,4.60833); //heelium between 50 and 300 MeV + + TF1 * f_c12sp_air = new TF1("f_c12sp_air","[0]*pow(x,[1])+[2]", 80, 480); //stopping power of carbon in air [MeV cm2 /g] + f_c12sp_air->SetParameters(13291.2, -0.925464,45.3876); //carbon between 80 and 480 MeV + + TF1 * f_c12sp_ps = new TF1("f_c12sp_ps","[0]*pow(x,[1])+[2]", 80, 480); //stopping power of carbon in polystyrene [MeV cm2 /g] + f_c12sp_ps->SetParameters(14538.9, -0.922423,49.2859); //carbon between 80 and 480 MeV + + TF1 * f_o16sp_air = new TF1("f_o16sp_air","[0]*pow(x,[1])+[2]", 80, 480); //stopping power of oxygen in air [MeV cm2 /g] + f_o16sp_air->SetParameters(24624.9, -0.925425,80.6828); //oxygen between 80 and 480 MeV + + TF1 * f_o16sp_ps = new TF1("f_o16sp_ps","[0]*pow(x,[1])+[2]", 80,480); //stopping power of oxygen in polystyrene [MeV cm2 /g] + f_o16sp_ps->SetParameters(26465.6, -0.928309,88.6728); //oxygen between 80 and 480 MeV + + ///// ic1/SP intensity correction factor = 19.8E6+/-0.1E6 particles/s per nA/(Mevcm2/g) + + if (!in) { + cout << Form("%s%s",dirname, listfile) << " not found." << endl; + return 0;} + cout << Form("%s%s",dirname, listfile) << " opened." << endl; + + in >> EList >> Energy >> F1 >> Intensity >> SP >> Filename >> id;//prime the while loop + while (!in.eof()) { + TFile * file = TFile::Open(Form("%s%s",dirname,Filename)); + TFile * outfile = TFile::Open(Form("plots/%s_plots",Filename),"RECREATE"); + cout << Filename << endl; + // TH1D* signalDist = 0; + // file->GetObject("signalDist",signalDist); + // signalmean = signalDist->GetMean(); + // signalmeanerror = signalDist->GetMeanError(); + // cout << signalmean << " " << signalmeanerror << endl; + // delete signalDist; + + // TCanvas *c1 = new TCanvas("c1"); + TTree *data; + file->GetObject("newdata", data); + TH2D *h_beamSignal_channel = (TH2D*)file->Get("th2d_beamSignal_channel"); + TH2D *h_bkg_channel = (TH2D*)file->Get("th2d_bkg_channel"); + + noisemean = h_bkg_channel->GetMean(2); + noiseRMS = h_bkg_channel->GetRMS(2); + TF1 * f1 = new TF1("f1", "gaus(0)",-5,5); + + + TVectorD *v = (TVectorD*)file->Get("icinfo"); + // v->Print(); + totalcurrent = (*v)[0]; + totaltime = (*v)[1]; + // data->Print(); + TH1D* h_beamSignal_1 = new TH1D("h_beamSignal_1","h_beamSignal_1",510,-500,50000); + TH1D* h_ic1_1 = new TH1D("h_ic1_1","h_ic1_1",510,-50,500); + TH1D* h_ic2_1 = new TH1D("h_ic2_1","h_ic2_1",510,-50,500); + TH1D* h_beamSignal_diff = new TH1D("h_beamSignal_diff","h_beamSignal_diff",200,-1.5,1.5); + TH1D* h_ic1_diff = new TH1D("h_ic1_diff","h_ic1_diff",200,-0.5,0.5); + + + + TH1D* h_ic_beam_ratio = new TH1D("h_ic_beam_ratio","h_ic_beam_ratio",500,0,500.); + TH2D* h_beamSignal_v_ic = new TH2D("h_beamSignal_v_ic","h_beamSignal_v_ic",510,-50,500,510,-500,50000); + TH2D* h_beamSignal_v_beamSignal2 = new TH2D("h_beamSignal_v_beamSignal2","h_beamSignal_v_beamSignal2",510,-500,50000,510,-500,50000); + + TH1D* h_beamFocusX_1 = new TH1D("h_beamFocusX_1","h_beamFocusX_1",200,0,50.); + TH1D* h_beamSkewX_1 = new TH1D("h_beamSkewX_1","h_beamSkewX_1",200,0,50.); + TH1D* h_beamKurtX_1 = new TH1D("h_beamKurtX_1","h_beamKurtX_1",200,0,50.); + TH1D* h_beamFocusX_fit = new TH1D("h_beamFocusX_fit","h_beamFocusX_fit",200,0,50.); + TH1D* h_beamChi2_fit = new TH1D("h_beamChi2_fit","h_beamChi2_fit",200,0,50.); + TH1D* h_beamChi2_fit2 = new TH1D("h_beamChi2_fit2","h_beamChi2_fit2",200,0,50.); + TH1D* h_beamFocusX_corr = new TH1D("h_beamFocusX_corr","h_beamFocusX_corr",200,0.0,2.0); + + // TH1D* h_beamFocusX_diff = new TH1D("h_beamFocusX_diff","h_beamFocusX_diff",200,-.4,0.4); + TH1D* h_beamFocusX_diff = new TH1D("h_beamFocusX_diff","h_beamFocusX_diff",2000,-20,20); + TH1D* h_beamPosX_diff = new TH1D("h_beamPosX_diff","h_beamPosX_diff",400,-5.,5.); + + Double_t peak = 0.; + TH1D* h_beamPeakX_fit = new TH1D("h_beamPeakX_fit","h_beamPeakX_fit",1000,0,8000.); + + + + + + if (id>=0&&id<=26){ + sp_air = f_sp_air->Eval(Energy)*(Intensity/1.0E6); + sp_ps = f_sp_ps->Eval(Energy)*(Intensity/1.0E6); + sp2_air = f_sp_air->Eval(Energy); + sp2_ps = f_sp_ps->Eval(Energy); + } + else if (id>=27&&id<=52){ + sp_air = f_h2sp_air->Eval(Energy)*(Intensity/1.0E6); + sp_ps = f_h2sp_ps->Eval(Energy)*(Intensity/1.0E6); + sp2_air = f_h2sp_air->Eval(Energy); + sp2_ps = f_h2sp_ps->Eval(Energy); + } + else if (id>=53&&id<=78){ + sp_air = f_c12sp_air->Eval(Energy)*(Intensity/1.0E6); + sp_ps = f_c12sp_ps->Eval(Energy)*(Intensity/1.0E6); + sp2_air = f_c12sp_air->Eval(Energy); + sp2_ps = f_c12sp_ps->Eval(Energy); + } + else if (id>=79&&id<=99){ + sp_air = f_o16sp_air->Eval(Energy)*(Intensity/1.0E6); + sp_ps = f_o16sp_ps->Eval(Energy)*(Intensity/1.0E6); + sp2_air = f_o16sp_air->Eval(Energy); + sp2_ps = f_o16sp_ps->Eval(Energy); + } + else { + sp_air = -1.; + sp_ps = -1.; + sp2_air = -1.; + sp2_ps = -1.; + } + + + // cout << Form("beamPeakX_fit*sqrt(2)*%F/2.3548",F1) << endl; + // data->Project("h_beamSignal_1","beamSignal_1","beamon==1&&beamSignal_1>50"); + // data->Project("h_beamSignal_1", Form("beamPeakX_fit*sqrt(2)*%F/2.3548",F1) ,"beamon==1&&ic1_1>0.005&&beamChi2_fit<200&&beamPeakX_fit>20"); + data->Project("h_beamSignal_1", "beamPeakX_fit*sqrt(2)*beamFocusX_fit/2.3548" ,"beamon==1&&ic1_1>0.001&&beamChi2_fit<200&&beamPeakX_fit>20"); + + //second layer shows a factor 1.08 more signal + data->Project("h_beamSignal_diff", "((beamPeakX_fit*sqrt(2)*beamFocusX_fit/2.3548) - (beamPeakX_fit2*sqrt(2)*beamFocusX_fit2/2.3548)/1.08)/(beamPeakX_fit*sqrt(2)*beamFocusX_fit/2.3548)" ,"beamon==1&&ic1_1>0.001&&beamChi2_fit<200&&beamChi2_fit2<200&&beamPeakX_fit>20&&beamPeakX_fit2>20"); + + data->Project("h_ic1_diff", " 2*(ic1_1 -ic2_1)/(ic1_1 +ic2_1)" ,"beamon==1&&ic1_1>0.001&&ic2_1>0.001&&beamChi2_fit<200&&beamChi2_fit2<200&&beamPeakX_fit>20&&beamPeakX_fit2>20"); + + data->Project("h_beamFocusX_1","beamFocusX_1","beamon==1&&ic1_1>0.05"); + + data->Project("h_beamFocusX_corr","(beamFocusX_fit/beamFocusX_fit2)","beamon==1&&ic1_1>0.005&&beamChi2_fit<200&&beamChi2_fit2<200&&beamPeakX_fit>20&&beamPeakX_fit2>20"); + focusdiffcorr = h_beamFocusX_corr->GetMean(); + data->Project("h_beamSkewX_1","beamSkewX_1","beamon==1&&ic1_1>0.005"); + data->Project("h_beamKurtX_1","beamKurtX_1","beamon==1&&ic1_1>0.005"); + data->Project("h_beamFocusX_fit","beamFocusX_fit","beamon==1&&ic1_1>0.005&&beamChi2_fit<200&&beamPeakX_fit>20"); + data->Project("h_beamChi2_fit","beamChi2_fit","beamon==1&&ic1_1>0.005&&beamChi2_fit<200&&beamPeakX_fit>20"); + // data->Project("h_beamFocusX_diff",Form("(beamFocusX_fit/%f-beamFocusX_fit2)/((beamFocusX_fit/%f+beamFocusX_fit2)/2)",focusdiffcorr,focusdiffcorr),"beamon==1&&ic1_1>0.005&&beamChi2_fit<200&&beamChi2_fit2<200&&beamPeakX_fit>20&&beamPeakX_fit2>20"); + data->Project("h_beamFocusX_diff",Form("beamFocusX_fit/%f-beamFocusX_fit2",focusdiffcorr),"beamon==1&&ic1_1>0.005&&beamChi2_fit<200&&beamChi2_fit2<200&&beamPeakX_fit>20&&beamPeakX_fit2>20"); + data->Project("h_beamPosX_diff","beamPosX_fit2+beamPosX_fit-128","beamon==1&&ic1_1>0.005&&beamChi2_fit<200&&beamChi2_fit2<200&&beamPeakX_fit>20&&beamPeakX_fit2>20"); + data->Project("h_beamPeakX_fit","beamPeakX_fit","beamon==1&&ic1_1>0.005&&beamChi2_fit<200&&beamPeakX_fit>20"); + peakFitmean = h_beamPeakX_fit->GetMean(); + peakFitRMS = h_beamPeakX_fit->GetRMS(); + + + focusmean = h_beamFocusX_1->GetMean(); + focusRMS = h_beamFocusX_1->GetRMS(); + peak = h_beamFocusX_diff->GetEntries()*sqrt(2)*(h_beamFocusX_diff->GetRMS()); + f1->SetParameters(200,h_beamFocusX_diff->GetMean(),h_beamFocusX_diff->GetRMS()); + f1->SetParLimits(0,0,100000); + f1->SetParLimits(1,-10,10); + f1->SetParLimits(2,0,5); + + + + h_beamFocusX_diff->Fit(f1,""); + // focusdiffFitmean = h_beamFocusX_diff->GetMean(); + // focusdiffFitmeanerror = h_beamFocusX_diff->GetMeanError(); + focusdiffFitmean =f1->GetParameter(1); + focusdiffFitmeanerror = f1->GetParError(1); + focusdiffFitRMS =f1->GetParameter(2); + focusdiffFitRMSerror =f1->GetParError(2); + // focusdiffFitRMS = h_beamFocusX_diff->GetRMS(); + // focusdiffFitRMSerror = h_beamFocusX_diff->GetRMSError(); + peak = h_beamPosX_diff->GetEntries()*sqrt(2)*(h_beamPosX_diff->GetRMS()); + + f1->SetParameters(peak, h_beamPosX_diff->GetMean(),h_beamPosX_diff->GetRMS()); + h_beamPosX_diff->Fit(f1,"Q"); + // posdiffFitmean = h_beamPosX_diff->GetMean(); + // posdiffFitmeanerror = h_beamPosX_diff->GetMeanError(); + // posdiffFitRMS = h_beamPosX_diff->GetRMS(); + // posdiffFitRMSerror = h_beamPosX_diff->GetRMSError(); + posdiffFitmean =f1->GetParameter(1); + posdiffFitmeanerror = f1->GetParError(1); + posdiffFitRMS =f1->GetParameter(2); + posdiffFitRMSerror =f1->GetParError(2); + + skewmean = h_beamSkewX_1->GetMean(); + skewRMS = h_beamSkewX_1->GetRMS(); + kurtmean = h_beamKurtX_1->GetMean(); + kurtRMS = h_beamKurtX_1->GetRMS(); + focusFitmean = h_beamFocusX_fit->GetMean(); + focusFitRMS = h_beamFocusX_fit->GetRMS(); + chi2Fitmean = h_beamChi2_fit->GetMean(); + chi2FitRMS = h_beamChi2_fit->GetRMS(); + + + data->Project("h_ic1_1","ic1_1","ic1_1>0.01"); + data->Project("h_ic2_1","ic2_1","ic2_1>0.01"); + data->Project("h_ic1_diff","(ic1_1-ic2_1)/ic1_1","ic1_1>0.01&&ic2_1>0.01"); + + + + + + + data->Project("h_beamSignal_v_ic","(beamPeakX_fit*sqrt(2)*beamFocusX_fit/2.3548):ic1_1","beamon==1&&ic1_1>0.005&&beamChi2_fit<200&&beamPeakX_fit>20"); + icbpmcorrelation = h_beamSignal_v_ic->GetCorrelationFactor(); + + data->Project("h_ic_beam_ratio","(beamPeakX_fit*sqrt(2)*beamFocusX_fit/2.3548)/ic1_1","beamon==1&&ic1_1>0.005&&beamChi2_fit<200&&beamPeakX_fit>20"); + + signalmean = h_beamSignal_1->GetMean(); + signalmeanerror = h_beamSignal_1->GetMeanError(); + + + peak = h_beamSignal_diff->GetEntries()*sqrt(2)*(h_beamSignal_diff->GetRMS()); + f1->SetParameters(peak, h_beamSignal_diff->GetMean(), h_beamSignal_diff->GetRMS()); + h_beamSignal_diff->Fit(f1,"Q"); + // signaldiffmean = h_beamSignal_diff->GetMean(); + // signaldiffmeanerror = h_beamSignal_diff->GetMeanError(); + // signaldiffRMS = h_beamSignal_diff->GetRMS(); + // signaldiffRMSerror = h_beamSignal_diff->GetRMSError(); + signaldiffmean =f1->GetParameter(1); + signaldiffmeanerror = f1->GetParError(1); + signaldiffRMS =f1->GetParameter(2); + signaldiffRMSerror =f1->GetParError(2); + + + ic1mean = h_ic1_1->GetMean(); + ic1meanerror = h_ic1_1->GetMeanError(); + + // peak = h_ic1_diff->GetEntries()*sqrt(2)*(h_ic1_diff->GetRMS()); + //f1->SetParameters(peak, h_ic1_diff->GetMean(), h_ic1_diff->GetRMS()); + // h_ic1_diff->Fit(f1,""); + ic1diffmean = h_ic1_diff->GetMean(); + ic1diffmeanerror = h_ic1_diff->GetMeanError(); + ic1diffRMS = h_ic1_diff->GetRMS(); + ic1diffRMSerror = h_ic1_diff->GetRMSError(); + // ic1diffmean =f1->GetParameter(1); + // ic1diffmeanerror = f1->GetParError(1); + // ic1diffRMS =f1->GetParameter(2); + // ic1diffRMSerror =f1->GetParError(2); + + + ic2mean = h_ic2_1->GetMean(); + ic2meanerror = h_ic2_1->GetMeanError(); + + ic_beam_ratio=h_ic_beam_ratio->GetMean(); + ic_beam_ratioerror=h_ic_beam_ratio->GetRMS(); + // intcorr = (Intensity /19.8E6) / (totalcurrent/sp2_air/totaltime); + intcorr = (Intensity / 19.8E6) / (ic1mean/sp2_air)/ 3.11; + + + + cout << id << " " <Draw(""); + // c1->SaveAs(Form("figs/h_beamsignal_%i.pdf",nfiles)); + // c1->Destructor(); + + // f->Close(); + outfile->Write(); + outfile->Close(); + file->Close(); + in >> EList >> Energy >> F1 >> Intensity >> SP >> Filename >> id; + // cout << EList << Energy << F1 << Intensity << SP << Filename << id << endl; + nfiles++; + + } + ic1energyfile.close(); + ic2energyfile.close(); + + beamenergyfile.close(); + beamenergyfile_iccorr.close(); + + noisefile.close(); + focusfile.close(); + focusHITfile.close(); + skewfile.close(); + kurtfile.close(); + in.close(); + focusFitfile.close(); + chi2Fitfile.close(); + ic1energyfile_diff.close(); + focusFitfile_diff.close(); + beamenergyfile_diff.close(); + posFitfile_diff.close(); + return 0; +} diff --git a/Scripts_20161201/Scripts_20161201/plotmacro.C b/Scripts_20161201/Scripts_20161201/plotmacro.C new file mode 100644 index 0000000..ba69148 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/plotmacro.C @@ -0,0 +1,303 @@ +{ + + gROOT->ProcessLine(".x lhcbStyle.C"); + + TCanvas c1_mg1_e1; + + TGraphErrors * ge1_p1 = new TGraphErrors("inlistE255_p_bpm1_diff.txt","%lg %lg %lg"); + TGraphErrors * ge1_p2 = new TGraphErrors("inlistE21_p_bpm1_diff.txt","%lg %lg %lg"); + TGraphErrors * ge1_ic1 = new TGraphErrors("inlistE255_p_ic1_diff.txt","%lg %lg %lg"); + TGraphErrors * ge1_ic2 = new TGraphErrors("inlistE21_p_ic1_diff.txt","%lg %lg %lg"); + TMultiGraph * mg_e1 = new TMultiGraph(); + mg_e1->Add(ge1_p1,"pc"); ge1_p1->SetMarkerStyle(20);ge1_p1->SetLineStyle(3); + mg_e1->Add(ge1_p2,"pc"); ge1_p2->SetMarkerStyle(24);ge1_p2->SetLineStyle(3); + mg_e1->Add(ge1_ic1,"p"); ge1_ic1->SetMarkerStyle(29); + mg_e1->Add(ge1_ic2,"p"); ge1_ic2->SetMarkerStyle(30); + mg_e1->Draw("a"); + mg_e1->SetTitle(" "); + mg_e1->GetXaxis()->SetTitle("Intensity / 10^{6}s^{-1}"); + mg_e1->GetYaxis()->SetTitle("#sqrt{2}#upoint #sigma(A_{1}-A_{2}) / (A_{1}+A_{2})"); + // mg_e1->GetXaxis()->SetRangeUser(0,600); + //mg_e1->GetYaxis()->SetRangeUser(0,1); + mg_e1->SetMinimum(0.); + mg_e1->SetMaximum(0.18); + + + + TLegend *mylegend = new TLegend(0.60,0.6,0.9,0.9); + mylegend->SetFillColor(0); // white background + mylegend->SetTextFont(22); + mylegend->SetBorderSize(0); // get rid of the box + mylegend->SetTextSize(0.045); // set text size + mylegend->AddEntry(ge1_p1,"BPM (221 MeV)","pl"); // options: p,l,f + mylegend->AddEntry(ge1_p2,"BPM (70 MeV)","pl"); // options: p,l,f + mylegend->AddEntry(ge1_ic1,"IC (221 MeV)","p"); // options: p,l,f + mylegend->AddEntry(ge1_ic2,"IC (70 MeV)","p"); // options: p,l,f + mylegend->Draw(); + gPad->Modified(); + c1_mg1_e1.SaveAs("figs/inlist_p_bpm_diff.pdf"); + c1_mg1_e1.SaveAs("figs/inlist_p_bpm_diff.png"); + c1_mg1_e1.SaveAs("figs/inlist_p_bpm_diff.C"); + + TCanvas c1_mg1_e2; + + TGraphErrors * ge2_p1 = new TGraphErrors("inlistE255_c_bpm1_diff.txt","%lg %lg %lg"); + TGraphErrors * ge2_p2 = new TGraphErrors("inlistE21_c_bpm1_diff.txt","%lg %lg %lg"); + TGraphErrors * ge2_ic1 = new TGraphErrors("inlistE255_c_ic1_diff.txt","%lg %lg %lg"); + TGraphErrors * ge2_ic2 = new TGraphErrors("inlistE21_c_ic1_diff.txt","%lg %lg %lg"); + TMultiGraph * mg_e2 = new TMultiGraph(); + mg_e2->Add(ge2_p1,"pc"); ge2_p1->SetMarkerStyle(22);ge2_p1->SetLineStyle(3); + mg_e2->Add(ge2_p2,"pc"); ge2_p2->SetMarkerStyle(26);ge2_p2->SetLineStyle(3); + mg_e2->Add(ge2_ic1,"p"); ge2_ic1->SetMarkerStyle(29); + mg_e2->Add(ge2_ic2,"p"); ge2_ic2->SetMarkerStyle(30); + mg_e2->Draw("a"); + mg_e2->SetTitle(" "); + mg_e2->GetXaxis()->SetTitle("Intensity / 10^{6}s^{-1}"); + mg_e2->GetYaxis()->SetTitle("#sqrt{2}#upoint #sigma(A_{1}-A_{2}) / (A_{1}+A_{2})"); + // mg_e2->GetXaxis()->SetRangeUser(0,600); + //mg_e2->GetYaxis()->SetRangeUser(0,1); + mg_e2->SetMinimum(0.); + mg_e2->SetMaximum(0.1); + TLegend * mylegend2 = new TLegend(0.60,0.6,0.9,0.9); + mylegend2->SetFillColor(0); // white background + mylegend2->SetTextFont(22); + mylegend2->SetBorderSize(0); // get rid of the box + mylegend2->SetTextSize(0.045); // set text size + mylegend2->AddEntry(ge2_p1,"BPM (430 MeV/u)","pl"); // options: p,l,f + mylegend2->AddEntry(ge2_p2,"BPM (130 MeV/u)","pl"); // options: p,l,f + mylegend2->AddEntry(ge2_ic1,"IC (430 MeV/u)","p"); // options: p,l,f + mylegend2->AddEntry(ge2_ic2,"IC (130 MeV/u)","p"); // options: p,l,f + mylegend2->Draw(); + gPad->Modified(); + c1_mg1_e2.SaveAs("figs/inlist_c_bpm_diff.pdf"); + c1_mg1_e2.SaveAs("figs/inlist_c_bpm_diff.png"); + c1_mg1_e2.SaveAs("figs/inlist_c_bpm_diff.C"); + + + + /////////////////////////////////////////////// + TCanvas c1_mg1_e3; + + TGraphErrors * ge3_p1 = new TGraphErrors("inlistE255_p_posfit_diff.txt","%lg %lg %lg"); + TGraphErrors * ge3_p2 = new TGraphErrors("inlistE21_p_posfit_diff.txt","%lg %lg %lg"); + // TGraphErrors * ge3_c1 = new TGraphErrors("inlistE255_c_posfit_diff.txt","%lg %lg %lg"); + // TGraphErrors * ge3_c2 = new TGraphErrors("inlistE21_c_posfit_diff.txt","%lg %lg %lg"); + TMultiGraph * mg_e3 = new TMultiGraph(); + mg_e3->Add(ge3_p1,"pc"); ge3_p1->SetMarkerStyle(20);ge3_p1->SetLineStyle(3); + mg_e3->Add(ge3_p2,"pc"); ge3_p2->SetMarkerStyle(24);ge3_p2->SetLineStyle(3); + // mg_e3->Add(ge3_ic1,"p"); ge3_ic1->SetMarkerStyle(29); + // mg_e3->Add(ge3_ic2,"p"); ge3_ic2->SetMarkerStyle(30); + mg_e3->Draw("a"); + mg_e3->SetTitle(" "); + mg_e3->GetXaxis()->SetTitle("Intensity / 10^{6}s^{-1}"); + mg_e3->GetYaxis()->SetTitle("#sigma(X_{1}-X_{2})/#sqrt{2} / mm"); + // mg_e3->GetXaxis()->SetRangeUser(0,600); + //mg_e3->GetYaxis()->SetRangeUser(0,1); + mg_e3->SetMinimum(0.); + // mg_e3->SetMaximum(0.1); + TLegend *mylegend3 = new TLegend(0.60,0.6,0.9,0.9); + mylegend3->SetFillColor(0); // white background + mylegend3->SetTextFont(22); + mylegend3->SetBorderSize(0); // get rid of the box + mylegend3->SetTextSize(0.045); // set text size + mylegend3->AddEntry(ge3_p1,"BPM (221 MeV)","pl"); // options: p,l,f + mylegend3->AddEntry(ge3_p2,"BPM (70 MeV)","pl"); // options: p,l,f + // mylegend3->AddEntry(ge3_ic1,"IC (430 MeV/u)","p"); // options: p,l,f + // mylegend3->AddEntry(ge3_ic2,"IC (130 MeV/u)","p"); // options: p,l,f + mylegend3->Draw(); + gPad->Modified(); + c1_mg1_e3.SaveAs("figs/inlist_p_posfit_diff.pdf"); + c1_mg1_e3.SaveAs("figs/inlist_p_posfit_diff.png"); + c1_mg1_e3.SaveAs("figs/inlist_p_possfit_diff.C"); + + TCanvas c1_mg1_e4; + + TGraphErrors * ge4_p1 = new TGraphErrors("inlistE255_c_posfit_diff.txt","%lg %lg %lg"); + TGraphErrors * ge4_p2 = new TGraphErrors("inlistE21_c_posfit_diff.txt","%lg %lg %lg"); + // TGraphErrors * ge4_c1 = new TGraphErrors("inlistE255_c_posfit_diff.txt","%lg %lg %lg"); + // TGraphErrors * ge4_c2 = new TGraphErrors("inlistE21_c_posfit_diff.txt","%lg %lg %lg"); + TMultiGraph * mg_e4 = new TMultiGraph(); + mg_e4->Add(ge4_p1,"pc"); ge4_p1->SetMarkerStyle(22);ge4_p1->SetLineStyle(3); + mg_e4->Add(ge4_p2,"pc"); ge4_p2->SetMarkerStyle(26);ge4_p2->SetLineStyle(3); + // mg_e4->Add(ge4_ic1,"p"); ge4_ic1->SetMarkerStyle(29); + // mg_e4->Add(ge4_ic2,"p"); ge4_ic2->SetMarkerStyle(30); + mg_e4->Draw("a"); + mg_e4->SetTitle(" "); + mg_e4->GetXaxis()->SetTitle("Intensity / 10^{6}s^{-1}"); + mg_e4->GetYaxis()->SetTitle("#sigma(X_{1}-X_{2})/#sqrt{2} / mm"); + // mg_e4->GetXaxis()->SetRangeUser(0,600); + //mg_e4->GetYaxis()->SetRangeUser(0,1); + mg_e4->SetMinimum(0.); + // mg_e4->SetMaximum(0.1); + TLegend *mylegend4 = new TLegend(0.60,0.6,0.9,0.9); + mylegend4->SetFillColor(0); // white background + mylegend4->SetTextFont(22); + mylegend4->SetBorderSize(0); // get rid of the box + mylegend4->SetTextSize(0.045); // set text size + mylegend4->AddEntry(ge4_p1,"BPM (430 MeV/u)","pl"); // options: p,l,f + mylegend4->AddEntry(ge4_p2,"BPM (130 MeV/u)","pl"); // options: p,l,f + // mylegend4->AddEntry(ge4_ic1,"IC (430 MeV/u)","p"); // options: p,l,f + // mylegend4->AddEntry(ge4_ic2,"IC (130 MeV/u)","p"); // options: p,l,f + mylegend4->Draw(); + gPad->Modified(); + c1_mg1_e4.SaveAs("figs/inlist_c_posfit_diff.pdf"); + c1_mg1_e4.SaveAs("figs/inlist_c_posfit_diff.png"); + c1_mg1_e4.SaveAs("figs/inlist_c_possfit_diff.C"); + + + /////////////////////////////////////////////// + TCanvas c1_mg1_e5; + + TGraphErrors * ge5_p1 = new TGraphErrors("inlistE255_p_focusfit_diff.txt","%lg %lg %lg"); + TGraphErrors * ge5_p2 = new TGraphErrors("inlistE21_p_focusfit_diff.txt","%lg %lg %lg"); + // TGraphErrors * ge5_c1 = new TGraphErrors("inlistE255_c_posfit_diff.txt","%lg %lg %lg"); + // TGraphErrors * ge5_c2 = new TGraphErrors("inlistE21_c_posfit_diff.txt","%lg %lg %lg"); + TMultiGraph * mg_e5 = new TMultiGraph(); + mg_e5->Add(ge5_p1,"pc"); ge5_p1->SetMarkerStyle(20);ge5_p1->SetLineStyle(3); + mg_e5->Add(ge5_p2,"pc"); ge5_p2->SetMarkerStyle(24);ge5_p2->SetLineStyle(3); + // mg_e5->Add(ge5_ic1,"p"); ge5_ic1->SetMarkerStyle(29); + // mg_e5->Add(ge5_ic2,"p"); ge5_ic2->SetMarkerStyle(30); + mg_e5->Draw("a"); + mg_e5->SetTitle(" "); + mg_e5->GetXaxis()->SetTitle("Intensity / 10^{6}s^{-1}"); + //mg_e5->GetYaxis()->SetTitle("#sqrt{2}#upoint#sigma(F_{1}-F_{2})/(F_{1}+F_{2})"); + mg_e5->GetYaxis()->SetTitle("#sigma(F_{1}-F_{2})/#sqrt{2} / mm"); + + // mg_e5->GetXaxis()->SetRangeUser(0,600); + //mg_e5->GetYaxis()->SetRangeUser(0,1); + mg_e5->SetMinimum(0.); + // mg_e5->SetMaximum(0.1); + TLegend * mylegend5 = new TLegend(0.60,0.6,0.9,0.9); + mylegend5->SetFillColor(0); // white background + mylegend5->SetTextFont(22); + mylegend5->SetBorderSize(0); // get rid of the box + mylegend5->SetTextSize(0.045); // set text size + mylegend5->AddEntry(ge5_p1,"BPM (221 MeV)","pl"); // options: p,l,f + mylegend5->AddEntry(ge5_p2,"BPM (70 MeV)","pl"); // options: p,l,f + // mylegend5->AddEntry(ge5_ic1,"IC (430 MeV/u)","p"); // options: p,l,f + // mylegend5->AddEntry(ge5_ic2,"IC (130 MeV/u)","p"); // options: p,l,f + mylegend5->Draw(); + gPad->Modified(); + c1_mg1_e5.SaveAs("figs/inlist_p_focusfit_diff.pdf"); + c1_mg1_e5.SaveAs("figs/inlist_p_focusfit_diff.png"); + c1_mg1_e5.SaveAs("figs/inlist_p_focusfit_diff.C"); + + + TCanvas c1_mg1_e6; + + TGraphErrors * ge6_p1 = new TGraphErrors("inlistE255_c_focusfit_diff.txt","%lg %lg %lg"); + TGraphErrors * ge6_p2 = new TGraphErrors("inlistE21_c_focusfit_diff.txt","%lg %lg %lg"); + // TGraphErrors * ge6_c1 = new TGraphErrors("inlistE255_c_posfit_diff.txt","%lg %lg %lg"); + // TGraphErrors * ge6_c2 = new TGraphErrors("inlistE21_c_posfit_diff.txt","%lg %lg %lg"); + TMultiGraph * mg_e6 = new TMultiGraph(); + mg_e6->Add(ge6_p1,"pc"); ge6_p1->SetMarkerStyle(22);ge6_p1->SetLineStyle(3); + mg_e6->Add(ge6_p2,"pc"); ge6_p2->SetMarkerStyle(26);ge6_p2->SetLineStyle(3); + // mg_e6->Add(ge6_ic1,"p"); ge6_ic1->SetMarkerStyle(29); + // mg_e6->Add(ge6_ic2,"p"); ge6_ic2->SetMarkerStyle(30); + mg_e6->Draw("a"); + mg_e6->SetTitle(" "); + mg_e6->GetXaxis()->SetTitle("Intensity / 10^{6}s^{-1}"); + mg_e6->GetYaxis()->SetTitle("#sqrt{2}#upoint#sigma(F_{1}-F_{2})/(F_{1}+F_{2})"); + mg_e6->GetYaxis()->SetTitle("#sigma(F_{1}-F_{2})/#sqrt{2} / mm"); + + // mg_e6->GetXaxis()->SetRangeUser(0,600); + //mg_e6->GetYaxis()->SetRangeUser(0,1); + mg_e6->SetMinimum(0.); + // mg_e6->SetMaximum(0.1); + TLegend * mylegend6 = new TLegend(0.60,0.6,0.9,0.9); + mylegend6->SetFillColor(0); // white background + mylegend6->SetTextFont(22); + mylegend6->SetBorderSize(0); // get rid of the box + mylegend6->SetTextSize(0.045); // set text size + mylegend6->AddEntry(ge6_p1,"BPM (430 MeV/u)","pl"); // options: p,l,f + mylegend6->AddEntry(ge6_p2,"BPM (130 MeV/u)","pl"); // options: p,l,f + // mylegend6->AddEntry(ge6_ic1,"IC (430 MeV/u)","p"); // options: p,l,f + // mylegend6->AddEntry(ge6_ic2,"IC (130 MeV/u)","p"); // options: p,l,f + mylegend6->Draw(); + gPad->Modified(); + c1_mg1_e6.SaveAs("figs/inlist_c_focusfit_diff.pdf"); + c1_mg1_e6.SaveAs("figs/inlist_c_focusfit_diff.png"); + c1_mg1_e6.SaveAs("figs/inlist_c_focusfit_diff.C"); + + + TCanvas c1_mg1_e7; + + TGraphErrors * ge7_p1 = new TGraphErrors("inlistE255_c_peakfit.txt","%lg %lg %lg"); + TGraphErrors * ge7_p2 = new TGraphErrors("inlistE21_c_peakfit.txt","%lg %lg %lg"); + // TGraphErrors * ge7_c1 = new TGraphErrors("inlistE255_c_posfit_diff.txt","%lg %lg %lg"); + // TGraphErrors * ge7_c2 = new TGraphErrors("inlistE21_c_posfit_diff.txt","%lg %lg %lg"); + TMultiGraph * mg_e7 = new TMultiGraph(); + mg_e7->Add(ge7_p1,"pc"); ge7_p1->SetMarkerStyle(22);ge7_p1->SetLineStyle(1); + mg_e7->Add(ge7_p2,"pc"); ge7_p2->SetMarkerStyle(26);ge7_p2->SetLineStyle(1); + // mg_e7->Add(ge7_ic1,"p"); ge7_ic1->SetMarkerStyle(29); + // mg_e7->Add(ge7_ic2,"p"); ge7_ic2->SetMarkerStyle(30); + mg_e7->Draw("a"); + mg_e7->SetTitle(" "); + mg_e7->GetXaxis()->SetTitle("Intensity / 10^{6}s^{-1}"); + mg_e7->GetYaxis()->SetTitle("SNR"); + //mg_e7->GetYaxis()->SetTitle("#sigma(F_{1}-F_{2})/#sqrt{2}"); + + // mg_e7->GetXaxis()->SetRangeUser(0,600); + //mg_e7->GetYaxis()->SetRangeUser(0,1); + mg_e7->SetMinimum(1.); + gPad->SetLogy(); + // mg_e7->SetMaximum(0.1); + TLegend *mylegende7 = new TLegend(0.60,0.2,0.9,0.5); + mylegende7->SetFillColor(0); // white background + mylegende7->SetTextFont(22); + mylegende7->SetBorderSize(0); // get rid of the box + mylegende7->SetTextSize(0.045); // set text size + mylegende7->AddEntry(ge7_p1,"BPM (430 MeV/u)","p"); // options: p,l,f + mylegende7->AddEntry(ge7_p2,"BPM (130 MeV/u)","p"); // options: p,l,f + // mylegend6->AddEntry(ge7_ic1,"IC (430 MeV/u)","p"); // options: p,l,f + // mylegend6->AddEntry(ge7_ic2,"IC (130 MeV/u)","p"); // options: p,l,f + mylegende7->Draw(); + gPad->Modified(); + c1_mg1_e7.SaveAs("figs/inlist_c_peakfit.pdf"); + c1_mg1_e7.SaveAs("figs/inlist_c_peakfit.png"); + c1_mg1_e7.SaveAs("figs/inlist_c_peakfit.C"); + + + + + TCanvas c1_mg1_e8; + + TGraphErrors * ge8_p1 = new TGraphErrors("inlistE255_p_peakfit.txt","%lg %lg %lg"); + TGraphErrors * ge8_p2 = new TGraphErrors("inlistE21_p_peakfit.txt","%lg %lg %lg"); + // TGraphErrors * ge8_c1 = new TGraphErrors("inlistE255_c_posfit_diff.txt","%lg %lg %lg"); + // TGraphErrors * ge8_c2 = new TGraphErrors("inlistE21_c_posfit_diff.txt","%lg %lg %lg"); + TMultiGraph * mg_e8 = new TMultiGraph(); + mg_e8->Add(ge8_p1,"pc"); ge8_p1->SetMarkerStyle(20);ge8_p1->SetLineStyle(1); + mg_e8->Add(ge8_p2,"pc"); ge8_p2->SetMarkerStyle(24);ge8_p2->SetLineStyle(1); + // mg_e8->Add(ge8_ic1,"p"); ge8_ic1->SetMarkerStyle(29); + // mg_e8->Add(ge8_ic2,"p"); ge8_ic2->SetMarkerStyle(30); + mg_e8->Draw("a"); + mg_e8->SetTitle(" "); + mg_e8->GetXaxis()->SetTitle("Intensity / 10^{6}s^{-1}"); + mg_e8->GetYaxis()->SetTitle("SNR"); + //mg_e8->GetYaxis()->SetTitle("#sigma(F_{1}-F_{2})/#sqrt{2}"); + + // mg_e8->GetXaxis()->SetRangeUser(0,600); + //mg_e8->GetYaxis()->SetRangeUser(0,1); + mg_e8->SetMinimum(1.); + gPad->SetLogy(); + // mg_e8->SetMaximum(0.1); + TLegend * mylegende8 = new TLegend(0.60,0.2,0.9,0.5); + mylegende8->SetFillColor(0); // white background + mylegende8->SetTextFont(22); + mylegende8->SetBorderSize(0); // get rid of the box + mylegende8->SetTextSize(0.045); // set text size + mylegende8->AddEntry(ge8_p1,"BPM (221 MeV/u)","p"); // options: p,l,f + mylegende8->AddEntry(ge8_p2,"BPM (70 MeV/u)","p"); // options: p,l,f + // mylegend6->AddEntry(ge8_ic1,"IC (430 MeV/u)","p"); // options: p,l,f + // mylegend6->AddEntry(ge8_ic2,"IC (130 MeV/u)","p"); // options: p,l,f + mylegende8->Draw(); + gPad->Modified(); + c1_mg1_e8.SaveAs("figs/inlist_p_peakfit.pdf"); + c1_mg1_e8.SaveAs("figs/inlist_p_peakfit.png"); + c1_mg1_e8.SaveAs("figs/inlist_p_peakfit.C"); + + + + +} diff --git a/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run1.root_plots b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run1.root_plots new file mode 100644 index 0000000..71f96e2 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run1.root_plots differ diff --git a/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run10.root_plots b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run10.root_plots new file mode 100644 index 0000000..57ff0e1 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run10.root_plots differ diff --git a/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run11.root_plots b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run11.root_plots new file mode 100644 index 0000000..9da79d3 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run11.root_plots differ diff --git a/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run12.root_plots b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run12.root_plots new file mode 100644 index 0000000..ce71990 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run12.root_plots differ diff --git a/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run13.root_plots b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run13.root_plots new file mode 100644 index 0000000..b8002e0 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run13.root_plots differ diff --git a/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run14.root_plots b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run14.root_plots new file mode 100644 index 0000000..1fdb274 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run14.root_plots differ diff --git a/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run15.root_plots b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run15.root_plots new file mode 100644 index 0000000..ebd8f7f Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run15.root_plots differ diff --git a/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run16.root_plots b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run16.root_plots new file mode 100644 index 0000000..a3706a0 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run16.root_plots differ diff --git a/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run17.root_plots b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run17.root_plots new file mode 100644 index 0000000..34086a8 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run17.root_plots differ diff --git a/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run18.root_plots b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run18.root_plots new file mode 100644 index 0000000..ce39cc5 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run18.root_plots differ diff --git a/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run19.root_plots b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run19.root_plots new file mode 100644 index 0000000..99a9db8 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run19.root_plots differ diff --git a/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run2.root_plots b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run2.root_plots new file mode 100644 index 0000000..c22e478 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run2.root_plots differ diff --git a/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run29.root_plots b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run29.root_plots new file mode 100644 index 0000000..6d29afe Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run29.root_plots differ diff --git a/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run3.root_plots b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run3.root_plots new file mode 100644 index 0000000..c11802f Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run3.root_plots differ diff --git a/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run30.root_plots b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run30.root_plots new file mode 100644 index 0000000..8cf1208 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run30.root_plots differ diff --git a/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run31.root_plots b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run31.root_plots new file mode 100644 index 0000000..fa35971 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run31.root_plots differ diff --git a/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run32.root_plots b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run32.root_plots new file mode 100644 index 0000000..81df2f6 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run32.root_plots differ diff --git a/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run33.root_plots b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run33.root_plots new file mode 100644 index 0000000..c87c477 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run33.root_plots differ diff --git a/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run34.root_plots b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run34.root_plots new file mode 100644 index 0000000..9d4d5d7 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run34.root_plots differ diff --git a/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run35.root_plots b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run35.root_plots new file mode 100644 index 0000000..4f84a4e Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run35.root_plots differ diff --git a/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run36.root_plots b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run36.root_plots new file mode 100644 index 0000000..8288b11 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run36.root_plots differ diff --git a/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run37.root_plots b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run37.root_plots new file mode 100644 index 0000000..d704b91 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run37.root_plots differ diff --git a/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run38.root_plots b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run38.root_plots new file mode 100644 index 0000000..3b892c9 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run38.root_plots differ diff --git a/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run39.root_plots b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run39.root_plots new file mode 100644 index 0000000..54898bd Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run39.root_plots differ diff --git a/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run4.root_plots b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run4.root_plots new file mode 100644 index 0000000..684bf8c Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run4.root_plots differ diff --git a/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run40.root_plots b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run40.root_plots new file mode 100644 index 0000000..492dcc3 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run40.root_plots differ diff --git a/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run41.root_plots b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run41.root_plots new file mode 100644 index 0000000..464874f Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run41.root_plots differ diff --git a/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run42.root_plots b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run42.root_plots new file mode 100644 index 0000000..4b8ea9a Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run42.root_plots differ diff --git a/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run43.root_plots b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run43.root_plots new file mode 100644 index 0000000..3c5dd34 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run43.root_plots differ diff --git a/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run44.root_plots b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run44.root_plots new file mode 100644 index 0000000..fbfca19 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run44.root_plots differ diff --git a/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run45.root_plots b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run45.root_plots new file mode 100644 index 0000000..131c633 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run45.root_plots differ diff --git a/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run46.root_plots b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run46.root_plots new file mode 100644 index 0000000..82ce994 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run46.root_plots differ diff --git a/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run5.root_plots b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run5.root_plots new file mode 100644 index 0000000..99de472 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run5.root_plots differ diff --git a/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run6.root_plots b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run6.root_plots new file mode 100644 index 0000000..38f1de2 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run6.root_plots differ diff --git a/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run7.root_plots b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run7.root_plots new file mode 100644 index 0000000..929ad18 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run7.root_plots differ diff --git a/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run8.root_plots b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run8.root_plots new file mode 100644 index 0000000..0a18d36 Binary files /dev/null and b/Scripts_20161201/Scripts_20161201/plots/SAVE_PiN_run8.root_plots differ diff --git a/Scripts_20161201/Scripts_20161201/process.c b/Scripts_20161201/Scripts_20161201/process.c new file mode 100644 index 0000000..a8d274c --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/process.c @@ -0,0 +1,688 @@ +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +using namespace std; + +TFile *fileIn; +TFile *fileOut; +TTree *data; +int spill_profile_number = 0; +double readOutFrequency = 3000; +double maxSignal; +double minSignal; +double minPosX; +double maxPosX; +double c3 = 0.8; + +void CompareWidth(const char *dirname, const char *filename); +void SavePDF(const char *dirname, const char *filename); +double CalFWHM(TH1D *hist); +Double_t fitfunc(Double_t *x, Double_t *par); + +void process() +{ + const char *dirname = "/mnt/g/HIT/time_aligned/20161126/"; + const char *pin_dirname = "/mnt/g/HIT/time_aligned/20161126/pin/"; + const char *ext = ".root"; + + TSystemDirectory dir(dirname, dirname); + TSystemDirectory pin_dir(pin_dirname, pin_dirname); + + TList *files = dir.GetListOfFiles(); + if (files) + { + TSystemFile *file; + TString fname; + TIter next(files); + + while ((file = (TSystemFile *)next())) + { + fname = file->GetName(); + if (!file->IsDirectory() && fname.EndsWith(ext) && (fname.BeginsWith("SAVE_PiN_run"))) + { + CompareWidth(dirname, fname.Data()); + SavePDF(dirname, fname.Data()); + } + } + } +} + +void CompareWidth(const char *dirname, const char *filename) +{ + + TString fn = TString(filename); + TString dn = TString(dirname); + TString inName = dn + fn; + TString outName = dn + "Output/New_" + fn; + fileIn = new TFile(inName, "read"); + fileOut = new TFile(outName, "recreate"); + fileIn->GetObject("newdata", data); + + TH2D *sigIcScatterPlot14, *mwPosScatterPlot13; + TH1D *signalDist, *icSignal, *icSignal2; + TH2D *deltaPos_time[10]; + fileIn->GetObject("sigIcScatterPlot11", sigIcScatterPlot14); + fileIn->GetObject("mwPosScatterPlot11", mwPosScatterPlot13); + fileIn->GetObject("signalDist", signalDist); + fileIn->GetObject("icSignal", icSignal); + //fileIn->GetObject("icSignal2", icSignal2); + TH1D *icFitSlicesX = (TH1D *)sigIcScatterPlot14->ProfileX(); + TH1D *pos_mw = mwPosScatterPlot13->ProfileY(); + TH1D *pos_mw_x = mwPosScatterPlot13->ProfileX(); + TH1D *beamPosX = (TH1D *)fileIn->Get("beamPosX"); + TH1D *mwPosX = (TH1D *)fileIn->Get("mwPosX"); + TH1D *beamFocusX = (TH1D *)fileIn->Get("beamFocusX"); + TH1D *sigHist = (TH1D *)fileIn->Get("sigHist"); + TH1D *ic1Hist = (TH1D *)fileIn->Get("ic1Hist"); + TH1D *ic2Hist = (TH1D *)fileIn->Get("ic2Hist"); + TCanvas *SignalComp; + Double_t norm_sig = sigHist->Integral(); + Double_t norm_ic1 = ic1Hist->Integral(); + Double_t norm_ic2 = ic2Hist->Integral(); + + double mean = beamPosX->GetMean(); + double mean_mw = mwPosX->GetMean(); + double sigma = beamPosX->GetStdDev(); + double sigma_min = beamFocusX->GetMinimum(); + double sigma_max = beamFocusX->GetMaximum(); + minPosX = mean - 3 * sigma; + maxPosX = mean + 3 * sigma; + icFitSlicesX->Fit("pol1"); + + pos_mw->Fit("pol1", "", "", mean - 3 * sigma, mean + 3 * sigma); + maxSignal = icFitSlicesX->GetMaximum(); + minSignal = icFitSlicesX->GetMinimum(); + double posX, FocusX, beamSignal, ic1, ic2, mw1_posx, mw1_focusx, beamOn, mw2_posx, mw2_focusx; + + TBranch *b_ic1 = data->GetBranch("ic1_1"); + b_ic1->SetAddress(&ic1); + TBranch *b_ic2 = data->GetBranch("ic2_1"); + b_ic2->SetAddress(&ic2); + TBranch *b_mw1_focusx = data->GetBranch("mw1_focusx_1"); + b_mw1_focusx->SetAddress(&mw1_focusx); + TBranch *b_mw1_posx = data->GetBranch("mw1_posx_1"); + b_mw1_posx->SetAddress(&mw1_posx); + TBranch *b_mw2_focusx = data->GetBranch("mw2_focusx_1"); + b_mw2_focusx->SetAddress(&mw2_focusx); + TBranch *b_mw2_posx = data->GetBranch("mw2_posx_1"); + b_mw2_posx->SetAddress(&mw2_posx); + TBranch *b_beamPosX = data->GetBranch("beamPosX_1"); + b_beamPosX->SetAddress(&posX); + TBranch *b_beamFocusX = data->GetBranch("beamFocusX_1"); + b_beamFocusX->SetAddress(&FocusX); + TBranch *b_beamSignal = data->GetBranch("beamSignal_1"); + b_beamSignal->SetAddress(&beamSignal); + TBranch *b_beamOn = data->GetBranch("beamOn"); + b_beamOn->SetAddress(&beamOn); + + data->Draw("mw1_posx_1>>his"); + data->Draw("mw2_posx_1>>his2"); + TH1F *his = (TH1F *)gDirectory->Get("his"); + TH1F *his2 = (TH1F *)gDirectory->Get("his2"); + double shift_MWPC = his->GetMean() - his2->GetMean(); + + vector spillTimes; + + int nevents = data->GetEntries(); + int countspillsize = 1; + spillTimes.push_back(0); + for (int i = 0; i < nevents; i++) + { + data->GetEntry(i); + if (beamOn == 0) + { + if ((i - spillTimes[countspillsize - 1]) < 10) + { + continue; + } + spillTimes.push_back(i); + countspillsize++; + } + } + + int nspills = spillTimes.size() - 1; + printf("N_Spills: %d\n", nspills); + + TH2D *timeCenters = new TH2D("timeCenters", "", nevents / 100, 0., nevents / readOutFrequency, 100, mean - 6. * sigma, mean + 6 * sigma); + TH2D *timeWidths = new TH2D("timeWidths", "", nevents / 100, 0., nevents / readOutFrequency, 100, 0., 25); + TH1D *signalResCompare = new TH1D("signalCompare_new", "", 100, -0.5, 0.5); + TH1D *ICResCompare = new TH1D("ICCompare_new", "", 100, -0.2, 0.2); + TH1D *posCompare = new TH1D("posCompare_new", "", 100, -1, 1); + for (int j = 0; j < nspills; j++) + { + TString name; + name.Form("deltaPos_time%d", j); + printf("spilltime_start: %d\n", spillTimes[j]); + printf("spilltime_end: %d\n", spillTimes[j + 1]); + deltaPos_time[j] = new TH2D(name.Data(), name.Data(), 1000, (double)spillTimes[j] / readOutFrequency, (double)spillTimes[j + 1] / readOutFrequency, 100, -0.4, 0.4); + } + TH2D *deltaPos_time_MWPC = new TH2D("deltaPos_time_MWPC", "deltaPos_time_MWPC", 1000, (double)spillTimes[spill_profile_number] / readOutFrequency, (double)spillTimes[spill_profile_number + 1] / readOutFrequency, 100, -0.4, 0.4); + TH2D *deltaSig_time = new TH2D("deltaSig_time", "", nevents / 100, 0., nevents / readOutFrequency, 100, -0.5, 0.5); + TH2D *deltaSig2_time = new TH2D("deltaSig2_time", "", nevents / 100, 0., nevents / readOutFrequency, 100, -0.5, 0.5); + TH2D *ic1_ic2_time = new TH2D("ic1_ic2_time", "", nevents / 100, 0., nevents / readOutFrequency, 100, -0.5, 0.5); + TH2D *deltaSig_Sig = new TH2D("deltaSig_Sig", "", 100, minSignal - 25, maxSignal + 25, 100, -1, 1); + TH2D *deltaIC_IC = new TH2D("deltaIC_IC", "", 100, minSignal - 25, maxSignal + 25, 100, -1, 1); + TH2D *Sig_time = new TH2D("Sig_time", "", nevents / 100, 0., nevents / readOutFrequency, 100, 0, maxSignal); + TH2D *ic1_time = new TH2D("ic1_time", "", nevents / 100, 0., nevents / readOutFrequency, 100, 0, maxSignal); + TH2D *ic2_time = new TH2D("ic2_time", "", nevents / 100, 0., nevents / readOutFrequency, 100, 0, maxSignal); + TH2D *Fibre_posx_Signal = new TH2D("Center_Signal", "", 100, minSignal - 25, maxSignal + 25, 100, (mean - 6. * sigma), (mean + 6. * sigma)); + TH1D *SignalFiberScaled = new TH1D("SignalFiberScaled", "", 100, 0, maxSignal + 25); + + for (int j = 0; j < nspills; j++) + { + printf("spilltime_start: %d\n", spillTimes[j]); + printf("spilltime_end: %d\n", spillTimes[j + 1]); + for (int i = spillTimes[j]; i < spillTimes[j + 1]; i++) + { + data->GetEntry(i); + /*if (beamOn == 0) + { + // deltaPos_time->Write(); + // deltaSig_time->Write(); + //spillTimes.push_back(i); + continue; + }*/ + timeCenters->Fill(i / readOutFrequency, posX); + timeWidths->Fill(i / readOutFrequency, FocusX); + posCompare->Fill(posX - mean - 1.25 * (mw1_posx - mean_mw)); + deltaPos_time_MWPC->Fill(i / readOutFrequency, mw1_posx - mw2_posx - shift_MWPC); + + signalResCompare->Fill((beamSignal - ic1 * norm_sig / norm_ic1) * 2 / (beamSignal + ic1 * norm_sig / norm_ic1)); + ICResCompare->Fill((ic2 - ic1 * norm_ic2 / norm_ic1) * 2 / (ic2 + ic1)); + deltaSig_time->Fill(i / readOutFrequency, (beamSignal - ic1 * norm_sig / norm_ic1) / beamSignal); + deltaSig2_time->Fill(i / readOutFrequency, (beamSignal - ic1 * norm_sig / norm_ic1) / beamSignal); + ic1_ic2_time->Fill(i / readOutFrequency, (ic2 - ic1 * norm_ic2 / norm_ic1) / ic1); + deltaPos_time[j]->Fill(i / readOutFrequency, posX - mean - 1.25 * (mw1_posx - mean_mw)); + deltaSig_Sig->Fill(beamSignal, (beamSignal - ic1 * norm_sig / norm_ic1) / beamSignal); + deltaIC_IC->Fill(ic1, (ic2 - ic1 * norm_ic2 / norm_ic1) * 2 / (ic2 + ic1)); + Sig_time->Fill(i / readOutFrequency, beamSignal); + ic1_time->Fill(i / readOutFrequency, ic1); + SignalFiberScaled->Fill(beamSignal); + Fibre_posx_Signal->Fill(beamSignal, posX); + } + } + + fileIn->Close(); + fileOut->cd(); + + signalResCompare->Fit("gaus"); + TObjArray aSlices, bSlices; + + timeCenters->Write(); + timeWidths->Write(); + icFitSlicesX->Write(); + pos_mw->Write(); + posCompare->Write(); + deltaPos_time_MWPC->Write(); + TH1D *tmp = deltaPos_time_MWPC->ProjectionY(); + tmp->SetStats(1111); + + tmp->Fit("gaus"); + tmp->Write(); + signalResCompare->Write(); + ICResCompare->Write(); + for (int j = 0; j < nspills; j++) + { + deltaPos_time[j]->Write(); + } + deltaSig_time->Write(); + deltaSig_time->FitSlicesY(0, 0, -1, 5, "QNR", &aSlices); + for (int i = 0; i < 4; i++) + { + aSlices[i]->Write(); + } + deltaSig2_time->Write(); + ic1_ic2_time->Write(); + deltaSig_Sig->Write(); + deltaIC_IC->Write(); + deltaSig_Sig->FitSlicesY(0, 0, -1, 5, "QNR", &aSlices); + for (int i = 0; i < 4; i++) + { + aSlices[i]->Write(); + } + deltaIC_IC->FitSlicesY(0, 0, -1, 5, "QNR", &aSlices); + for (int i = 0; i < 4; i++) + { + aSlices[i]->Write(); + } + Sig_time->Write(); + ic1_time->Write(); + //Fibre_posx_Signal->Fit("pol1"); + Fibre_posx_Signal->Write(); + SignalFiberScaled->Write(); + + //fileOut->Write(); + fileOut->Save(); +} + +void SavePDF(const char *dirname, const char *filename) +{ + //Set PDF line width = minimum + gStyle->SetLineScalePS(1); + gStyle->SetOptFit(kTRUE); + + TString fn = TString(filename); + TString dn = TString(dirname); + TString inName = dn + fn; + TString outName = dn + "Output/New_" + fn; + TString outPDF = outName; + outPDF.Replace(outPDF.Length() - 4, 4, TString("pdf")); + fileIn = new TFile(inName, "read"); + fileOut = new TFile(outName, "read"); + TString str; + TF1 *func = new TF1("doublegaus", fitfunc, 0, 64, 6); + double mean; + double sigma; + double constant; + + //Define Canvas: + TCanvas *canvas1_1 = new TCanvas("canvas1", "", 1024, 768); + TCanvas *canvas2_1 = new TCanvas("canvas2", "", 1280, 500); + canvas2_1->Divide(2, 1); + TCanvas *canvas3_1 = new TCanvas("canvas3", "", 1366, 500); + canvas3_1->Divide(3, 1); + TCanvas *canvas2_2 = new TCanvas("canvas4", "", 1366, 1024); + canvas2_2->Divide(2, 2); + + //Get Histos + TH2D *timeCenters = (TH2D *)fileIn->Get("timeCenters"); + TH2D *timeCenters_MWPC = (TH2D *)fileIn->Get("timeCenters_MWPC"); + TH2D *timeWidths = (TH2D *)fileIn->Get("timeWidths"); + TH2D *timeWidths_MWPC = (TH2D *)fileIn->Get("timeWidths_MWPC"); + + TH2D *Center_Signal = (TH2D *)fileOut->Get("Center_Signal"); + TH1D *Center_Signal_pfc = Center_Signal->ProfileX(); + + TString name; + name.Form("deltaPos_time%d", spill_profile_number); + TH2D *Diff_time = (TH2D *)fileOut->Get(name.Data()); //(TH2D *)fileIn->Get("Diff_time"); + TH1D *posCompare = Diff_time->ProjectionY(); //(TH1D *)fileOut->Get("posCompare_new"); + TH2D *Diff_time_MWPC = (TH2D *)fileOut->Get("deltaPos_time_MWPC"); + TH1D *posCompare_MWPC = Diff_time_MWPC->ProjectionY(); + + TH1D *comppos_weighted = (TH1D *)fileIn->Get("comppos_weighted"); + TH1D *compsig_weighted = (TH1D *)fileIn->Get("compsig_weighted"); + + TH1D *signalResCompare = (TH1D *)fileOut->Get("signalCompare_new"); + TH2D *signalRes_Sig = (TH2D *)fileOut->Get("deltaSig_Sig"); + TH1D *signalRes_Sig_1 = (TH1D *)fileOut->Get("deltaSig_Sig_1"); + TH1D *signalRes_Sig_2 = (TH1D *)fileOut->Get("deltaSig_Sig_2"); + + TH1D *ICResCompare = (TH1D *)fileOut->Get("ICCompare_new"); + TH2D *deltaIC_IC = (TH2D *)fileOut->Get("deltaIC_IC"); + TH1D *deltaIC_IC_1 = (TH1D *)fileOut->Get("deltaIC_IC_1"); + TH1D *deltaIC_IC_2 = (TH1D *)fileOut->Get("deltaIC_IC_2"); + //TH2D * + + TH2D *deltaSig_time = (TH2D *)fileOut->Get("deltaSig_time"); + TH1D *deltaSig_time_fs2 = (TH1D *)fileOut->Get("deltaSig_time_2"); + TH2D *deltaPos_time = (TH2D *)fileOut->Get(name.Data()); + TH2D *deltaSig2_time = (TH2D *)fileOut->Get("deltaSig2_time"); + TH2D *ic1_ic2_time = (TH2D *)fileOut->Get("ic1_ic2_time"); + TH2D *Sig_time = (TH2D *)fileOut->Get("Sig_time"); + TH2D *ic1_time = (TH2D *)fileOut->Get("ic1_time"); + + TH2D *mwPosScatterPlot = (TH2D *)fileIn->Get("mwPosScatterPlot11"); + TH2D *sigIcScatterPlot = (TH2D *)fileIn->Get("sigIcScatterPlot11"); + TH1D *mwPosScatterPlot_pfx = mwPosScatterPlot->ProfileX(); + TH1D *sigIcScatterPlot_pfx = sigIcScatterPlot->ProfileX(); + + //Draw in canvas + //page1111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111 + canvas2_2->cd(1); + timeCenters->Draw("colz"); + timeCenters->GetXaxis()->SetTitle("time [s]"); + timeCenters->GetYaxis()->SetTitle("Beam Position [mm]"); + timeCenters->SetTitle("Fiber position vs time"); + canvas2_2->cd(2); + timeCenters_MWPC->Draw("colz"); + timeCenters_MWPC->GetXaxis()->SetTitle("time [s]"); + timeCenters_MWPC->GetYaxis()->SetTitle("Beam Position [mm]"); + timeCenters_MWPC->SetTitle("MWPC position vs time"); + canvas2_2->cd(3); + timeWidths->Draw("colz"); + timeWidths->GetXaxis()->SetTitle("time [s]"); + timeWidths->GetYaxis()->SetTitle("Beam widths [mm]"); + timeWidths->SetTitle("Fiber widths vs time"); + canvas2_2->cd(4); + timeWidths_MWPC->Draw("colz"); + timeWidths_MWPC->GetXaxis()->SetTitle("time [s]"); + timeWidths_MWPC->GetYaxis()->SetTitle("Beam widths [mm]"); + timeWidths_MWPC->SetTitle("MWPC Beam widths vs time"); + canvas2_2->Print(outPDF + "(", "Title: position vs Time"); + + //page222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222 + canvas2_1->cd(1); + Center_Signal->Draw("colz"); + Center_Signal->GetXaxis()->SetTitle("Signal [particles]"); + Center_Signal->GetYaxis()->SetTitle("Beam Position [mm]"); + Center_Signal->SetTitle("Fiber position vs signal"); + canvas2_1->cd(2); + Center_Signal_pfc->Draw("E1"); + canvas2_1->Update(); + Center_Signal_pfc->SetTitle("Average Fiber position vs signal"); + Center_Signal_pfc->Fit("pol1"); + double slope_c = Center_Signal_pfc->GetFunction("pol1")->GetParameter(1); + str.Form("Slope = %.9f", slope_c); + TPaveStats *st0 = (TPaveStats *)Center_Signal_pfc->FindObject("stats"); + st0->SetName("mystats"); + st0->AddText(str.Data()); + Center_Signal_pfc->SetStats(0); + canvas2_1->Modified(); + Center_Signal_pfc->GetXaxis()->SetTitle("Signal [particles]"); + Center_Signal_pfc->GetYaxis()->SetTitle("Average Beam Position [mm]"); + Center_Signal_pfc->SetAxisRange(minPosX + 0.05, maxPosX - 0.05, "Y"); + Center_Signal_pfc->SetAxisRange(0, 0.8 * maxSignal, "X"); + canvas2_1->Print(outPDF, "Title: Position vs Signal"); + + //page333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333333 + canvas2_2->cd(1); + Diff_time->SetTitle("X(fibre)-X(MWPC) vs time"); + Diff_time->Draw("colz"); + Diff_time->GetXaxis()->SetTitle("time [s]"); + Diff_time->GetYaxis()->SetTitle("posX(fiber)-posX(MWPC) / [mm]"); + canvas2_2->cd(2); + posCompare->SetTitle("X(fibre)-X(MWPC) distribution"); + //fit gaus + posCompare->Fit("gaus"); + mean = posCompare->GetFunction("gaus")->GetParameter(1); + sigma = posCompare->GetFunction("gaus")->GetParameter(2); + constant = posCompare->GetFunction("gaus")->GetParameter(0); + //fit doublegaus + func->SetNpx(1000); + func->SetParameter(0, constant); + func->SetParameter(1, mean); + func->SetParameter(2, sigma); + func->SetParameter(3, constant); + func->SetParameter(4, sigma); + func->SetParameter(5, 0.); + posCompare->Fit("doublegaus"); + double val, x1, x2, pos = -1, fwhm; + int bin1, bin2; + bin1 = posCompare->FindFirstBinAbove(posCompare->GetMaximum() / 2); + bin2 = posCompare->FindLastBinAbove(posCompare->GetMaximum() / 2); + fwhm = (posCompare->GetBinCenter(bin2) + posCompare->GetBinCenter(bin2 + 1) - posCompare->GetBinCenter(bin1) - posCompare->GetBinCenter(bin1 - 1)) * 0.5; + str.Form("fwhm = %.3f mm", fwhm); + TText *t = new TText(300.5, 300.5, str.Data()); + //t->Draw("SAME"); + posCompare->Draw("E1"); + printf("FWHM: %f\n", fwhm); + canvas2_2->Update(); + TPaveStats *st = (TPaveStats *)posCompare->FindObject("stats"); + st->SetName("mystats"); + TList *listOfLines = st->GetListOfLines(); + TLatex *myt = new TLatex(0, 0, str.Data()); + listOfLines->Add(myt); + str.Form("c3 = %.3f ", c3); + TLatex *latex_page3_2 = new TLatex(); + latex_page3_2->DrawLatex(-0.2, 40., str.Data()); + posCompare->SetStats(0); + canvas2_2->Modified(); + posCompare->GetXaxis()->SetTitle("X(fiber)-X(MWPC)"); + posCompare->GetYaxis()->SetTitle("counts"); + canvas2_2->cd(3); + Diff_time_MWPC->SetTitle("MWPC PosX1-PosX2"); + Diff_time_MWPC->Draw("colz"); + Diff_time_MWPC->GetXaxis()->SetTitle("time [s]"); + Diff_time_MWPC->GetYaxis()->SetTitle("X(MWPC1)-X(MWPC2) / [mm]"); + canvas2_2->cd(4); + posCompare_MWPC->SetTitle("MWPC PosX1-PosX2"); + posCompare_MWPC->Draw("colz"); + posCompare_MWPC->GetXaxis()->SetTitle("X(MWPC1)-X(MWPC2) / [mm]"); + posCompare_MWPC->GetYaxis()->SetTitle(""); + + posCompare_MWPC->Fit("gaus"); + mean = posCompare_MWPC->GetFunction("gaus")->GetParameter(1); + sigma = posCompare_MWPC->GetFunction("gaus")->GetParameter(2); + constant = posCompare_MWPC->GetFunction("gaus")->GetParameter(0); + func->SetNpx(1000); + func->SetParameter(0, constant); + func->SetParameter(1, mean); + func->SetParameter(2, sigma); + func->SetParameter(3, constant / 10.); + func->SetParameter(4, sigma * 4.); + func->SetParameter(5, 0.); + posCompare_MWPC->Fit("doublegaus"); + posCompare_MWPC->Draw("E1"); + bin1 = posCompare_MWPC->FindFirstBinAbove(posCompare_MWPC->GetMaximum() / 2); + bin2 = posCompare_MWPC->FindLastBinAbove(posCompare_MWPC->GetMaximum() / 2); + fwhm = (posCompare_MWPC->GetBinCenter(bin2) + posCompare_MWPC->GetBinCenter(bin2 + 1) - posCompare_MWPC->GetBinCenter(bin1) - posCompare_MWPC->GetBinCenter(bin1 - 1)) * 0.5; + str.Form("fwhm = %.3f", fwhm); + //t->Draw("SAME"); + posCompare_MWPC->Draw("E1"); + printf("FWHM: %f\n", fwhm); + canvas2_2->Update(); + st = (TPaveStats *)posCompare_MWPC->FindObject("stats"); + st->SetName("mystats"); + listOfLines = st->GetListOfLines(); + myt = new TLatex(0, 0, str.Data()); + listOfLines->Add(myt); + posCompare_MWPC->SetStats(0); + canvas2_2->Modified(); + canvas2_2->Print(outPDF, "Title: Position compare"); + + //page444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444444 + canvas2_2->cd(1); + signalRes_Sig->SetTitle("S(Fibre)-S(IC) vs S(Fibre)"); + signalRes_Sig->Draw("colz"); + canvas2_2->cd(2); + signalResCompare->SetTitle("S(Fibre)-S(IC) distribution"); + signalResCompare->Fit("gaus"); + mean = signalResCompare->GetFunction("gaus")->GetParameter(1); + sigma = signalResCompare->GetFunction("gaus")->GetParameter(2); + constant = signalResCompare->GetFunction("gaus")->GetParameter(0); + func->SetNpx(1000); + func->SetParameter(0, constant); + func->SetParameter(1, mean); + func->SetParameter(2, sigma); + func->SetParameter(3, constant / 10.); + func->SetParameter(4, sigma * 4.); + func->SetParameter(5, 0.); + signalResCompare->Fit("doublegaus"); + signalResCompare->Draw("E1"); + bin1 = signalResCompare->FindFirstBinAbove(signalResCompare->GetMaximum() / 2); + bin2 = signalResCompare->FindLastBinAbove(signalResCompare->GetMaximum() / 2); + fwhm = (signalResCompare->GetBinCenter(bin2) + signalResCompare->GetBinCenter(bin2 + 1) - signalResCompare->GetBinCenter(bin1) - signalResCompare->GetBinCenter(bin1 - 1)) * 0.5; + str.Form("fwhm = %.3f", fwhm); + //t->Draw("SAME"); + signalResCompare->Draw("E1"); + printf("FWHM: %f\n", fwhm); + canvas2_2->Update(); + st = (TPaveStats *)signalResCompare->FindObject("stats"); + st->SetName("mystats"); + listOfLines = st->GetListOfLines(); + TLatex *myt2 = new TLatex(0, 0, str.Data()); + listOfLines->Add(myt2); + signalResCompare->SetStats(0); + canvas2_2->Modified(); + signalResCompare->GetXaxis()->SetTitle("S(Fibre)-S(IC)/S"); + signalResCompare->GetYaxis()->SetTitle("counts"); + canvas2_2->cd(3); + signalRes_Sig_1->SetTitle("S(Fibre)-S(IC) vs S(Fibre)"); + signalRes_Sig_1->Draw("E1"); + signalRes_Sig_1->GetXaxis()->SetTitle("E(fiber)"); + signalRes_Sig_1->GetYaxis()->SetTitle("(E(fiber)-E(MWPC))//E"); + signalRes_Sig_1->SetAxisRange(0, maxSignal * 0.7, "X"); + signalRes_Sig_1->SetAxisRange(-0.4, 0.4, "Y"); + canvas2_2->cd(4); + signalRes_Sig_2->SetTitle("sigma(S(Fibre)-S(IC)) vs S(Fibre)"); + signalRes_Sig_2->Draw("E1"); + signalRes_Sig_2->GetXaxis()->SetTitle("E(fiber)"); + signalRes_Sig_2->GetYaxis()->SetTitle("sigma(E(fiber)-E(MWPC))//E"); + signalRes_Sig_2->SetAxisRange(0, maxSignal, "X"); + signalRes_Sig_2->SetAxisRange(0.01, 0.25, "Y"); + canvas2_2->Print(outPDF, "Title: IC Signal Resolution vs Signal"); + + //page44545454545454545455454545454545454545454545445454545454545454545454545454555454545454545454545454545454 + canvas2_2->cd(1); + deltaIC_IC->SetTitle("S(IC2)-S(IC2)/S vs S(IC1)"); + deltaIC_IC->Draw("colz"); + canvas2_2->cd(2); + ICResCompare->SetTitle("S(IC2)-S(IC2)/S distribution"); + ICResCompare->Fit("gaus"); + mean = ICResCompare->GetFunction("gaus")->GetParameter(1); + sigma = ICResCompare->GetFunction("gaus")->GetParameter(2); + constant = ICResCompare->GetFunction("gaus")->GetParameter(0); + func->SetNpx(1000); + func->SetParameter(0, constant); + func->SetParameter(1, mean); + func->SetParameter(2, sigma); + func->SetParameter(3, constant / 10.); + func->SetParameter(4, sigma * 4.); + func->SetParameter(5, 0.); + ICResCompare->Fit("doublegaus"); + ICResCompare->Draw("E1"); + bin1 = ICResCompare->FindFirstBinAbove(ICResCompare->GetMaximum() / 2); + bin2 = ICResCompare->FindLastBinAbove(ICResCompare->GetMaximum() / 2); + fwhm = (ICResCompare->GetBinCenter(bin2) + ICResCompare->GetBinCenter(bin2 + 1) - ICResCompare->GetBinCenter(bin1) - ICResCompare->GetBinCenter(bin1 - 1)) * 0.5; + str.Form("fwhm = %.3f", fwhm); + //t->Draw("SAME"); + ICResCompare->Draw("E1"); + printf("FWHM: %f\n", fwhm); + canvas2_2->Update(); + st = (TPaveStats *)ICResCompare->FindObject("stats"); + st->SetName("mystats"); + listOfLines = st->GetListOfLines(); + TLatex *myt3 = new TLatex(0, 0, str.Data()); + listOfLines->Add(myt3); + ICResCompare->SetStats(0); + canvas2_2->Modified(); + ICResCompare->GetXaxis()->SetTitle("S(IC2)-S(IC2)/S"); + ICResCompare->GetYaxis()->SetTitle("counts"); + canvas2_2->cd(3); + deltaIC_IC_1->SetTitle("S(IC2)-S(IC2)/S vs S(IC1)"); + deltaIC_IC_1->Draw("E1"); + deltaIC_IC_1->GetXaxis()->SetTitle("S(IC)"); + deltaIC_IC_1->GetYaxis()->SetTitle("S(IC2)-S(IC2)/S"); + deltaIC_IC_1->SetAxisRange(0, maxSignal * 0.7, "X"); + deltaIC_IC_1->SetAxisRange(-0.4, 0.4, "Y"); + canvas2_2->cd(4); + deltaIC_IC_2->SetTitle("sigma(S(IC2)-S(IC2)/S) vs S(IC)"); + deltaIC_IC_2->Draw("E1"); + deltaIC_IC_2->GetXaxis()->SetTitle("E(fiber)"); + deltaIC_IC_2->GetYaxis()->SetTitle("sigma(S(IC2)-S(IC2)/S)"); + deltaIC_IC_2->SetAxisRange(0, maxSignal, "X"); + deltaIC_IC_2->SetAxisRange(0.01, 0.25, "Y"); + canvas2_2->Print(outPDF, "Title: IC Signal Resolution vs Signal"); + + //page555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555555 + canvas2_2->cd(1); + deltaSig_time->SetTitle("S(Fibre)-S(IC1) vs time"); + deltaSig_time->Draw("colz"); + deltaSig_time->GetXaxis()->SetTitle("time [s]"); + deltaSig_time->GetYaxis()->SetTitle("signal difference/signal %"); + canvas2_2->cd(2); + deltaSig_time_fs2->SetTitle("Signal difference vs time_fitSlicesY_(sigma)"); + deltaSig_time_fs2->Draw("colz"); + deltaSig_time_fs2->GetXaxis()->SetTitle("time [s]"); + deltaSig_time_fs2->GetYaxis()->SetTitle("sigma(signal difference) [particles]"); + canvas2_2->cd(3); + deltaSig2_time->SetTitle("S(Fibre)-S(IC2) vs time"); + deltaSig2_time->Draw("colz"); + deltaSig2_time->GetXaxis()->SetTitle("time [s]"); + deltaSig2_time->GetYaxis()->SetTitle("signal [particles]"); + canvas2_2->cd(4); + ic1_ic2_time->SetTitle("S(ic1)-S(ic2) vs time"); + ic1_ic2_time->Draw("colz"); + ic1_ic2_time->GetXaxis()->SetTitle("time [s]"); + ic1_ic2_time->GetYaxis()->SetTitle("signal [particles]"); + canvas2_2->Print(outPDF, "Title: Beam position vs Time"); + + //page 6666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666666 + + canvas2_1->cd(1); + comppos_weighted->Draw(); + str.Form("fwhm = %.3f", CalFWHM(comppos_weighted)); + TLatex *latex = new TLatex(); + latex->DrawLatex(-0.2, 40., str.Data()); + canvas2_1->cd(2); + compsig_weighted->Draw(); + str.Form("fwhm = %.3f", CalFWHM(compsig_weighted)); + TLatex *latex2 = new TLatex(); + latex2->DrawLatex(-0.2, 45., str.Data()); + canvas2_1->Print(outPDF, "Title: weighted resoultion"); + + //page 777777777777777777777777777777777777777777777777777777777777777777777777777777777777777777 + canvas2_2->cd(1); + mwPosScatterPlot->SetTitle("Fibre position vs MWPC position"); + mwPosScatterPlot->Draw("colz"); + mwPosScatterPlot->GetXaxis()->SetTitle("MWPC position [mm]"); + mwPosScatterPlot->GetYaxis()->SetTitle("Fibre position [mm]"); + canvas2_2->cd(2); + mwPosScatterPlot_pfx->SetTitle("mean MWPC position vs Fibre position"); + mwPosScatterPlot_pfx->Fit("pol1"); + mwPosScatterPlot_pfx->Draw("colz"); + mwPosScatterPlot_pfx->SetAxisRange(minPosX, maxPosX, "Y"); + mwPosScatterPlot_pfx->GetXaxis()->SetTitle("MWPC position [mm]"); + mwPosScatterPlot_pfx->GetYaxis()->SetTitle("Fibre position [mm]"); + canvas2_2->cd(3); + sigIcScatterPlot->SetTitle("Fibre signal vs ic signal"); + sigIcScatterPlot->Draw("colz"); + sigIcScatterPlot->GetXaxis()->SetTitle("ic signal [n]"); + sigIcScatterPlot->GetYaxis()->SetTitle("Fibre signal [n]"); + canvas2_2->cd(4); + sigIcScatterPlot_pfx->SetTitle("mean IC signal vs Fibre signal"); + sigIcScatterPlot_pfx->Fit("pol1"); + sigIcScatterPlot_pfx->Draw("colz"); + canvas2_2->Update(); + st = (TPaveStats *)sigIcScatterPlot_pfx->FindObject("stats"); + st->SetName("mystats"); + listOfLines = st->GetListOfLines(); + TText *tconst = st->GetLineWith("Mean x"); + TText *tconst1 = st->GetLineWith("Entries"); + TText *tconst2 = st->GetLineWith("Mean y"); + listOfLines->Remove(tconst); + listOfLines->Remove(tconst1); + listOfLines->Remove(tconst2); + + sigIcScatterPlot_pfx->GetXaxis()->SetTitle("ic signal [n]"); + sigIcScatterPlot_pfx->GetYaxis()->SetTitle("Fibre signal [n]"); + canvas2_2->Print(outPDF + ")", "Title: Alignment"); +} + +Double_t fitfunc(Double_t *x, Double_t *par) +{ + Double_t arg1 = 0; + if (par[2] != 0) + arg1 = (x[0] - par[1]) / par[2]; + Double_t fitval1 = par[0] * TMath::Exp(-0.5 * arg1 * arg1); + Double_t arg2 = 0; + if (par[4] != 0) + arg2 = (x[0] - par[1]) / par[4]; + Double_t fitval2 = par[3] * TMath::Exp(-0.5 * arg2 * arg2); + Double_t fitsum = par[5] + fitval1 + fitval2; + return fitsum; +} + +double CalFWHM(TH1D *hist) +{ + double val, x1, x2, pos = -1, fwhm; + int bin1, bin2; + bin1 = hist->FindFirstBinAbove(hist->GetMaximum() / 2); + bin2 = hist->FindLastBinAbove(hist->GetMaximum() / 2); + fwhm = (hist->GetBinCenter(bin2) + hist->GetBinCenter(bin2 + 1) - hist->GetBinCenter(bin1) - hist->GetBinCenter(bin1 - 1)) * 0.5; + return fwhm; +} \ No newline at end of file diff --git a/Scripts_20161201/Scripts_20161201/runJob.sh b/Scripts_20161201/Scripts_20161201/runJob.sh new file mode 100755 index 0000000..3c8ea23 --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/runJob.sh @@ -0,0 +1,33 @@ +HOME=/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161201 +mkdir -p $HOME/jobs #make the directory if it doesn't exist +JOB_HOME=$HOME/jobs +rm -rf $JOB_HOME/* #clean up the directory if it does exist +cd $JOB_HOME +for i in {1..46} +do + if [ $i -gt 19 -a $i -lt 29 ]; then + continue + fi + + touch $JOB_HOME/runjob$i.sh + echo "#!/bin/bash" >> $JOB_HOME/runjob$i.sh + echo ". /local/env.sh" >> $JOB_HOME/runjob$i.sh + echo ". /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt" >> $JOB_HOME/runjob$i.sh +# echo ". SetupProject.sh Geant4" >> $JOB_HOME/runjob$i.sh + + echo "source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh" >> $JOB_HOME/runjob$i.sh + #point to the correct CERN ROOT + echo "source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh " >> $JOB_HOME/runjob$i.sh + #include the gsl libraries + echo "export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/work/leverington/gsl-2.4/lib " >> $JOB_HOME/runjob$i.sh + + + + #execute this command + echo "/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161201/analyse2 PiN_run$i.root" >> $JOB_HOME/runjob$i.sh + + + + qsub -l os=slc6 -l ujl=20 -cwd -j yes $JOB_HOME/runjob$i.sh +sleep 1 +done diff --git a/Scripts_20161201/Scripts_20161201/runconvertJob.sh b/Scripts_20161201/Scripts_20161201/runconvertJob.sh new file mode 100755 index 0000000..80b3c1e --- /dev/null +++ b/Scripts_20161201/Scripts_20161201/runconvertJob.sh @@ -0,0 +1,29 @@ +HOME=/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161201 +mkdir -p $HOME/jobs +JOB_HOME=$HOME/jobs +rm $JOB_HOME/runconvertjob* + +cd $JOB_HOME +for i in {1..46} +do + if [ $i -gt 19 -a $i -lt 29 ]; then + continue + fi + + + touch $JOB_HOME/runconvertjob$i.sh + echo "#!/bin/bash" >> $JOB_HOME/runconvertjob$i.sh + echo ". /local/env.sh" >> $JOB_HOME/runconvertjob$i.sh + echo ". /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v8r1p1/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc48-opt" >> $JOB_HOME/runconvertjob$i.sh +# echo ". SetupProject.sh Geant4" >> $JOB_HOME/runconvertjob$i.sh + echo "source /home/lhcb/leverington/.profile" >> $JOB_HOME/runconvertjob$i.sh + #point to the correct CERN ROOT + echo "source /work/leverington/root-install/bin/thisroot.sh" >> $JOB_HOME/runconvertjob$i.sh + #execute this command + echo "/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20161201/convert_batch PiN_run$i.csv" >> $JOB_HOME/runconvertjob$i.sh + + + + qsub -l os=slc6 -l ujl=20 -cwd -j yes $JOB_HOME/runconvertjob$i.sh +sleep 1 +done diff --git a/Scripts_20170508/Makefile b/Scripts_20170508/Makefile new file mode 100644 index 0000000..75c5e9c --- /dev/null +++ b/Scripts_20170508/Makefile @@ -0,0 +1,32 @@ +PROGNAME = analyse +#convert ## analyse +SOURCEFILES = analyse.c +OBJS = $(patsubst %.c, %.o, $(SOURCEFILES)) + + +ROOTCFLAGS := $(shell root-config --cflags) +ROOTLIBS := $(shell root-config --libs) +ROOTGLIBS := $(shell root-config --glibs) + +LDFLAGS = -O +LIBS += $(ROOTLIBS) +CFLAGS += $(ROOTCFLAGS) + +# Not sure why Minuit isn't being included -- put in by hand +# +LIBS += -lMinuit + + + +$(PROGNAME): $(OBJS) + g++ -o $@ $(OBJS) $(LDFLAGS) $(LIBS) + +%.o: %.c + g++ ${CFLAGS} -c -g $< + +test: + @echo $(ROOTCFLAGS) + +clean: + -rm -f ${PROGNAME} ${OBJS} + diff --git a/Scripts_20170508/Readme.txt b/Scripts_20170508/Readme.txt new file mode 100644 index 0000000..6a4365b --- /dev/null +++ b/Scripts_20170508/Readme.txt @@ -0,0 +1,11 @@ +These scripts are for the data on 2017.05.08 + +1. The raw data of HIT and Fiber in csv format is converted into root tree with "./convert" + + //"convert" is compiled form convert.c with MAKEFILE + //Before using it, please change the PATH for the HIT data and Fiber data in "convert.c", and the filename in MAKEFILE + +2. Then analyse the data with "./analyse". The output is a root file with multiple histograms. + + //"analyse" is compiled form analyse.c with MAKEFILE + //Before using it, please change the PATH for the root file in "analyse.c", and the filename in MAKEFILE diff --git a/Scripts_20170508/UV Scan.xlsx b/Scripts_20170508/UV Scan.xlsx new file mode 100644 index 0000000..c5dd8cd Binary files /dev/null and b/Scripts_20170508/UV Scan.xlsx differ diff --git a/Scripts_20170508/analyse b/Scripts_20170508/analyse new file mode 100644 index 0000000..e268e02 Binary files /dev/null and b/Scripts_20170508/analyse differ diff --git a/Scripts_20170508/analyse.c b/Scripts_20170508/analyse.c new file mode 100644 index 0000000..594952c --- /dev/null +++ b/Scripts_20170508/analyse.c @@ -0,0 +1,47 @@ +#include +#include +#include +#include +#include + +#include +#include +#include + +#include "beammon.h" + +using namespace std; + +int main(int argc, char **argv) +{ + + const char *dirname = "/mnt/g/HIT/time_aligned/20170508/pin/"; + const char *ext = ".root"; + gROOT->ProcessLine(".x lhcbStyle.C"); + + TSystemDirectory dir(dirname, dirname); + + TList *files = dir.GetListOfFiles(); + if (files) + { + TSystemFile *file; + TString fname; + TIter next(files); + + while ((file = (TSystemFile *)next())) + { + fname = file->GetName(); + if (!file->IsDirectory() && fname.EndsWith(ext) && !fname.BeginsWith("SAVE")) + { + Beammon *mon = new Beammon(); + + printf("File name: %s \n", fname.Data()); + mon->Initialize(dirname, fname.Data(), 10000, 10000, 1., true, 1000., 100.); + mon->Save(); + + delete mon; + } + } + } + return 0; +} \ No newline at end of file diff --git a/Scripts_20170508/beammon.h b/Scripts_20170508/beammon.h new file mode 100644 index 0000000..3a18f54 --- /dev/null +++ b/Scripts_20170508/beammon.h @@ -0,0 +1,2164 @@ +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +using namespace std; + +double globalUpperBound = 63; +double globalLowerBound = 1; +double measurementsPerSecond = 3000; +int Fit_Fail_Counts = 0; +int signalScale = 1; +int align = 1; +int alignIc = 1; +double discardUpperThreshold = 0.01; +double discardLowerThreshold = -0.015; + +Double_t fitfunc(Double_t *x, Double_t *par) +{ + Double_t arg1 = 0; + if (par[2] != 0) + arg1 = (x[0] - par[1]) / par[2]; + Double_t fitval1 = par[0] * TMath::Exp(-0.5 * arg1 * arg1); + Double_t arg2 = 0; + if (par[4] != 0) + arg2 = (x[0] - par[1]) / par[4]; + Double_t fitval2 = par[3] * TMath::Exp(-0.5 * arg2 * arg2); + Double_t fitsum = par[5] + fitval1 + fitval2; + return fitsum; +} + +Double_t gaus_exclude(Double_t *x, Double_t *par) +{ + Double_t arg1 = 0; + if (par[2] != 0) + arg1 = (x[0] - par[1]) / par[2]; + Double_t fitsum = par[0] * TMath::Exp(-0.5 * arg1 * arg1); + if (x[0] >= 62 && x[0] < 64) + { + TF1::RejectPoint(); + return 0; + } + return fitsum; +} + +class Beammon +{ + +private: + TTree *data; + TTree *newdata; + TBranch *b_time; + TBranch *b_ic1; + TBranch *b_ic2; + TBranch *b_mw1_focusx; + TBranch *b_mw1_focusy; + TBranch *b_mw2_focusx; + TBranch *b_mw2_focusy; + TBranch *b_mw1_posx; + TBranch *b_mw1_posy; + TBranch *b_mw2_posx; + TBranch *b_mw2_posy; + TBranch *b_channels[128]; + + TBranch *bb_ic1; + TBranch *bb_ic2; + TBranch *bb_mw1_focusx; + TBranch *bb_mw2_focusx; + TBranch *bb_mw1_posx; + TBranch *bb_mw2_posx; + TBranch *b_beamPosX_1; + TBranch *b_beamFocusX_1; + TBranch *b_beamSignal_1; + TBranch *b_beamPosX_2; + TBranch *b_beamFocusX_2; + TBranch *b_beamSignal_2; + TBranch *b_beamOn; + + double beamPosX_1; + double beamFocusX_1; + double beamSignal_1; + double beamPosX_2; + double beamFocusX_2; + double beamSignal_2; + double beamOn; + double sigma_pos = 0.1; + + char *file; + TFile *fileIn; + TFile *fileOut; + + TObjArray objectArray; + + bool isSipm; + bool firstMat; + double channelWidth; + + double shift; + + long nevents; + int nBaselineEvents; + int nPrelimEvents; + int highestChannelBin; + int highestTimeBin; + double beamOnAdcVal; + double referenceIntegral; + double beamOnLevel; + double prelimMean; + double prelimSigma; + double highVal; + double readOutFreq; + int intTime; + double chi2ndf; + double fwhm; + + double mean_ave; + double sigma_ave; + + double signalToParticles = 1; // multiply signal by this amount, so that mean of singal (photodiode) and icChamber distribution are the same + double signalDistScale = 1; // icChamber signal distribution has more entries than signal (photodiode) one, so increase bin content in signal dist. by 1*this factor, to achieve the same integral + + double time; + int startTime; + int stopTime; + int timesteps; + double intSignal; + int beamOnTime; + double baselineIntegral; + + double ic1; + double ic2; + double mw1_focusx; + double mw1_focusy; + double mw2_focusx; + double mw2_focusy; + double mw2_posx; + double mw2_posy; + double mw1_posx; + double mw1_posy; + double icIntegral; + double completeIntegral; + + double ic1_1; + double ic2_1; + double mw1_focusx_1; + double mw2_focusx_1; + double mw2_posx_1; + double mw1_posx_1; + + vector> spillTimes; + + double channels[128]; + double baseline[128]; + double channelErrors[128]; + double current; + + TGraph *gChannelErrors; + TH1D *meanHistOn; + TH1D *widthHistOn; + TH2D *timePosHist; + TH1D *prelimBeam; + TH2D *timeCenters; + TH2D *timeCenters_MWPC; + TH2D *timeWidths; + TH2D *timeWidths_MWPC; + TH1D *signalDist; + TH1D *signalNoiseDist; + TH1D *signalNoiseChannel; + TH2D *simpleView; + TH1D *timeIntSignal; + TH1D *timeIntSignal_MWPC; + TH1D *beamPosHist; + TH1D *beamWidthHist; + TH1D *icSignalDist; + TGraphErrors *beamPosTimeGraph; + TGraphErrors *signalTimeGraph; + TGraphErrors *sigIcScatterGraph; + TGraphErrors *mwPosScatterGraph; + TH2D *sigIcScatterPlot[20]; + TH2D *sigIcScatterPlot_ic2; + TH2D *mwPosScatterPlot[20]; + TH1D *ic1Hist; + TH1D *ic2Hist; + TH1D *signalComp; + TH1D *positionComp; + TH1D *widthComp; + TH1D *mw1_focusxHist; + TH1D *mw1_focusyHist; + TH1D *mw2_focusxHist; + TH1D *mw2_focusyHist; + TH1D *mw1_posxHist; + TH1D *mw1_posyHist; + TH1D *mw2_posxHist; + TH1D *mw2_posyHist; + TH1D *channelSig[128]; + TH1D *chisquareDist; + TH1D *mwPosX; + TH1D *mwFocusX; + TH1D *beamPosX; + TH1D *beamFocusX; + TH1D *sigHist; + TH1D *sigHist_weighted; + TH1D *fibreHist; + TH1D *fibreHist_weighted; + TH1D *mwpcHist; + + TH2D *Center_Signal; + TH2D *Diff_timeCenters; + TH2D *Diff_Signal; + TH2D *Diff_ic1; + TH1D *Diff_hist; + TH2D *deltaSig_time; + TH2D *deltaSig_Sig; + TH1D *SlicesAvg; + TH2D *SignalErrHist; + + void calcBaseline(bool useFirstEvents); + void calcBaselineIntegral(); + void prelimProfile(); + TH1D *AverageHist(int dir, int timeStart = -1, int timeStop = -1); + TH1D *TimeAverage(int timeStart, int timeStop); + TH1D *TimeIntSignal(int timeStart = -1, int timeStop = -1); + bool isAboveThreshold(TH1D *slice); + bool isAboveThreshold(double val); + bool isAboveThreshold(TGraphErrors *slice); + TH1D *calcTimeCenters(int start, int stop); + double calcBeamTime(); + + // Tom Add + +public: + Beammon(); + ~Beammon(); + + void Initialize(const char *dirname, const char *filename, int baselineEvents = 1000, int prelimEvents = 10000, double beamLevel = 0.1, bool firstFibermat = true, double readOutFrequency = 1000., int integrationTime = 100); + TH1D *GetPrelimProfile(); + void ProcessData(); + TH1D *GetChannelAvg(bool beamOn = false); + TH1D *GetChannelSigDist(int channel); + TH1D *GetTimeAvg(); + TH1D *GetTimeAvg(int nSpill); + TH1D *GetTimeAvg(int nSpill, int nMeasurements); + TH2D *GetTimeAvgScatter(); + TH2D *GetTimeAvgScatter(int nSpill, int nMeasurements); + TH1D *GetChannelSlice(int time = -1, int offset = 0); + TH1D *GetChannelSlice2(int time = -1, int offset = 0); + TGraphErrors *GetChannelGraph(int time = -1, int offset = 0); + TH1D *GetChannelGraphHist(int time, int offset); + TH1D *GetTimeSlice(int channel = -1, int startTime = -1, int stopTime = -1, bool beamOn = false); + TCanvas *GetTimeSliceCanvas(int channel = -1); + TCanvas *GetSignalNoiseChannel(int channel = -1); + TH1D *GetSignalOverTime(); + void GetTimeCenters(); + void GetTimeWidths(); + void PrintSpillTimes(); + pair GetSpillTimes(int nSpill); + TH2D *GetSpillCenters(int nSpill); + TH1D *GetSpillSlice(int nSpill); + TH1D *GetSignalDistribution(); + TCanvas *GetSignalDistributionCanvas(); + TH2D *GetSimpleView(); + TH1D *GetBaselineHist(); + TH1D *icSignalComp(); + double GetIntSignal(); + int GetBeamOnTime(); + double GetSignalStd(); + TCanvas *signalOverTime2d(); + TCanvas *FitSnapshot(int offset); + TCanvas *FitAverage(); + TCanvas *PrintBaseline(); + TCanvas *PrintChannelNoise(int channel); + TCanvas *PrintProfile(int offset); + TCanvas *IcFitSlicesY(); + TCanvas *PrintSigIcGraph(); + TH1D *GetMwPosComp(); + void Save(); + void Close(); + + TCanvas *GetSig_e_ic_Hist(); + TCanvas *GetSig_e_ic_Hist_Weighted(); + + int input_pause = 200; + int event_count = 0; +}; + +Beammon::Beammon() {} + +Beammon::~Beammon() {} + +void Beammon::Initialize(const char *dirname, const char *filename, int baselineEvents, int prelimEvents, double beamLevel, bool firstFibermat, double readOutFrequency, int integrationTime) +{ + + signalToParticles = 7937 / 1.443e4; // FOR RUN 26 only + signalDistScale = 1.; //44585./26225;// FOR RUN 26 ONLY + intTime = integrationTime; + readOutFreq = readOutFrequency; + firstMat = firstFibermat; + highestChannelBin = 20; + highestTimeBin = 0; + icIntegral = 0; + completeIntegral = 0; + + TString fn = TString(filename); + TString dn = TString(dirname); + if (fn.Contains("sipm")) + { + channelWidth = 0.25; + isSipm = true; + } + + else + { + channelWidth = 0.8; + isSipm = false; + } + TString inName = dn + fn; + fileIn = new TFile(inName, "UPDATE"); + fileIn->GetObject("t", data); + TString outname = filename; + if (firstMat) + outname.Insert(0, "SAVE_"); + else + outname.Insert(0, "SAVE_mat2_"); + outname.Insert(0, dirname); + data->SetBranchStatus("ch*", 0); + fileOut = new TFile(outname.Data(), "RECREATE"); + //newdata = new TTree("newdata", "newdata"); + + data->SetBranchStatus("ch*", 1); + b_time = data->GetBranch("time"); + b_time->SetAddress(&time); + + for (int n = 0; n < 128; n++) + { + baseline[n] = 0.; + char bname[20]; + if (firstMat) + { + sprintf(bname, "ch%02d", n); + b_channels[n] = data->GetBranch(bname); + b_channels[n]->SetAddress(&channels[n]); + } + else + { + sprintf(bname, "ch%d", n + 128); + printf("%s\n", bname); + b_channels[n] = data->GetBranch(bname); + b_channels[n]->SetAddress(&channels[63 - n]); + } + } + + /* b_ic1 = data->GetBranch("ic1"); + b_ic1->SetAddress(&ic1); + b_ic2 = data->GetBranch("ic2"); + b_ic2->SetAddress(&ic2); + b_mw1_focusx = data->GetBranch("mw1_focusx"); + b_mw1_focusx->SetAddress(&mw1_focusx); + b_mw1_focusy = data->GetBranch("mw1_focusy"); + b_mw1_focusy->SetAddress(&mw1_focusy); + b_mw2_focusx = data->GetBranch("mw2_focusx"); + b_mw2_focusx->SetAddress(&mw2_focusx); + b_mw2_focusy = data->GetBranch("mw2_focusy"); + b_mw2_focusy->SetAddress(&mw2_focusy); + b_mw1_posx = data->GetBranch("mw1_posx"); + b_mw1_posx->SetAddress(&mw1_posx); + b_mw1_posy = data->GetBranch("mw1_posy"); + b_mw1_posy->SetAddress(&mw1_posy); + b_mw2_posx = data->GetBranch("mw2_posx"); + b_mw2_posx->SetAddress(&mw2_posx); + b_mw2_posy = data->GetBranch("mw2_posy"); + b_mw2_posy->SetAddress(&mw2_posy);*/ + + nevents = data->GetEntries(); + startTime = 0; + stopTime = nevents - 1; + + timePosHist = new TH2D("timePosHist", "beam position", 128, 0.5, 128.5, nevents, 0, nevents - 1); //display in seconds (y-axis), but with bins of 100ms + SignalErrHist = new TH2D("SignalErrHist", "SignalErrHist", 128, 0.5, 128.5, 200, 0, -1); + chisquareDist = new TH1D("chiqsuareDist", "chiqsuareDist", 100, -1, -1); + prelimBeam = new TH1D("prelimBeam", "preliminary beam profile", 128, 0.5, 128.5); + beamPosHist = new TH1D("beamPosHist", "mean positions", readOutFreq, 0., 128. * channelWidth); + beamWidthHist = new TH1D("beamWidthHist", "beam width", 500, 0., 50.); + beamPosTimeGraph = new TGraphErrors(nevents); + beamPosTimeGraph->SetName("beamPosTimeGraph"); + signalTimeGraph = new TGraphErrors(nevents); + signalTimeGraph->SetName("signalTimeGraph"); + sigIcScatterGraph = new TGraphErrors(); + mwPosScatterGraph = new TGraphErrors(); + //sigIcScatterPlot = new TH2D("sigIcScatterPlot", "", 100, 0, -1, 100, 0, -1); + signalComp = new TH1D("signalComp", "signalComp", 200., -1., 1.); + positionComp = new TH1D("positionComp", "positionComp", 200., -3., 3.); + widthComp = new TH1D("widthComp", "widthComp", 200., 0., 3.5); + ic1Hist = new TH1D("ic1Hist", "ic1Hist", nevents, 0., nevents - 1); + ic2Hist = new TH1D("ic2Hist", "ic2Hist", nevents, 0., nevents - 1); + sigHist = new TH1D("sigHist", "sigHist", nevents, 0., nevents - 1); + sigHist_weighted = new TH1D("sigHist_weighted", "sigHist_weighted", nevents, 0., nevents - 1); + fibreHist = new TH1D("fibreHist", "fibreHist", nevents, 0., nevents - 1); + fibreHist_weighted = new TH1D("fibreHist_weighted", "fibreHist_weighted", nevents, 0., nevents - 1); + mwpcHist = new TH1D("mwpcHist", "mwpcHist", nevents, 0., nevents - 1); + mw1_focusxHist = new TH1D("mw1_focusxHist", "mw1_focusxHist", nevents, 0, nevents - 1); + mw1_focusyHist = new TH1D("mw1_focusyHist", "mw1_focusyHist", nevents, 0, nevents - 1); + mw2_focusxHist = new TH1D("mw2_focusxHist", "mw2_focusxHist", nevents, 0, nevents - 1); + mw2_focusyHist = new TH1D("mw2_focusyHist", "mw2_focusyHist", nevents, 0, nevents - 1); + mw1_posxHist = new TH1D("mw1_posxHist", "mw1_posxHist", nevents, 0, nevents - 1); + mw1_posyHist = new TH1D("mw1_posyHist", "mw1_posyHist", nevents, 0, nevents - 1); + mw2_posxHist = new TH1D("mw2_posxHist", "mw2_posxHist", nevents, 0, nevents - 1); + mw2_posyHist = new TH1D("mw2_posyHist", "mw2_posyHist", nevents, 0, nevents - 1); + mwPosX = new TH1D("mwPosX", "", 200, 0, 20); + mwFocusX = new TH1D("mwFocusX", "", 200, 2, 3.5); + beamPosX = new TH1D("beamPosX", "", 200, 20, 30); + beamFocusX = new TH1D("beamFocusX", "", 200, 0, 20); + + nBaselineEvents = baselineEvents; + nPrelimEvents = prelimEvents; + + beamOnLevel = beamLevel; + beamOnAdcVal = 0; + beamOnTime = 0; + if (!isSipm) + { + if (fn.Contains("int1")) + calcBaseline(false); + else + calcBaseline(true); + } + prelimProfile(); + calcBaselineIntegral(); + ProcessData(); +} + +void Beammon::Save() +{ + fileIn->Close(); + fileOut->cd(); + for (int i = 0; i < 5; i++) + PrintProfile(i)->Write(); + FitAverage()->Write(); + + PrintBaseline()->Write(); + PrintSpillTimes(); + GetSignalOverTime()->Write(); + for (int i = 0; i < 5; i++) + GetChannelSlice2(-1, i)->Write(); + + GetTimeSliceCanvas(-1)->Write(); + timePosHist->ProjectionX()->Write(); + GetTimeCenters(); + + GetSignalDistributionCanvas()->Write(); + GetSignalDistribution()->Write(); + /*GetSignalNoiseChannel()->Write(); + chisquareDist->Write(); + sigIcScatterGraph->Write(); + mwPosScatterGraph->Write(); + for (int i = 6; i < 15; i++) + { + sigIcScatterPlot[i]->Write(); + mwPosScatterPlot[i]->Write(); + } + mwPosScatterPlot[11]->Write(); + sigIcScatterPlot[11]->Write(); + mw1_focusxHist->Write(); + mw1_posxHist->Write(); + mwPosX->Write(); + mwFocusX->Write(); + beamPosX->Write(); + beamFocusX->Write(); + TVectorD v(6); + v[0] = GetIntSignal(); + v[1] = GetBeamOnTime(); + v[2] = signalDist->GetStdDev(); + v[3] = icIntegral; + v[4] = completeIntegral; + v[5] = fwhm; + v.Write("beaminfo"); + beamPosTimeGraph->Write(); + signalTimeGraph->Write(); + gChannelErrors->Write(); + ic1Hist->Write(); + ic2Hist->Write(); + sigHist->Write(); + fibreHist->Write(); + mwpcHist->Write(); + + GetSig_e_ic_Hist()->Write(); + GetSig_e_ic_Hist_Weighted()->Write(); + signalComp->Write(); + GetMwPosComp()->Write(); + widthComp->Write(); + icSignalComp()->Write(); + signalOverTime2d(); + IcFitSlicesY(); + PrintSigIcGraph()->Write();*/ + + fibreHist_weighted->Write(); + sigHist_weighted->Write(); + //newdata->AutoSave(); + + Close(); +} + +void Beammon::calcBaseline(bool useFirstEvents) +{ + // use the first/last nBaselineEvents events to calculate the average/baseline + if (!useFirstEvents) + { // last + for (int i = nevents - nBaselineEvents; i < nevents; i++) + { + data->GetEvent(i); + for (int ch = 0; ch < 128; ch++) + { + baseline[ch] += channels[ch] / nBaselineEvents; + } + } + } + else + { + for (int i = 1; i <= nBaselineEvents; i++) + { + data->GetEvent(i); + for (int ch = 0; ch < 128; ch++) + { + baseline[ch] += channels[ch] / nBaselineEvents; + } + } + } +} + +TCanvas *Beammon::PrintBaseline() +{ + TCanvas *c1 = new TCanvas(); + c1->cd(); + TGraphErrors *g = new TGraphErrors(128); + for (int k = 0; k < 128; k++) + { + double stdDev = channelSig[k]->GetStdDev(); + channelErrors[k] = stdDev; + g->SetPoint(k, k, baseline[k]); + g->SetPointError(k, 0., channelErrors[k]); + } + g->SetTitle(""); + g->SetName("baseline"); + g->GetXaxis()->SetTitle("channel"); + TString label; + label.Form("adc counts / %d #mus", intTime); + g->GetYaxis()->SetTitle(label.Data()); + g->Draw("AP"); + c1->SetName("baseline"); + return c1; +} + +void Beammon::calcBaselineIntegral() +{ + + double highVal = 0; + for (int i = 1; i <= nBaselineEvents; i++) + { + data->GetEvent(i); + double val = channels[highestChannelBin] - baseline[highestChannelBin]; + if (val > highVal) + highVal = val; + } + beamOnAdcVal = beamOnLevel * highVal; + int maxNoise = floor(highVal); + for (int j = 0; j < 128; j++) + { + TString name; + name.Form("channelSig%d", j); + channelSig[j] = new TH1D(name.Data(), name.Data(), maxNoise * 2, -maxNoise, maxNoise); + } + + for (int i = 1; i <= nBaselineEvents; i++) + { + data->GetEvent(i); + for (int ch = 0; ch < 128; ch++) + channelSig[ch]->Fill(channels[ch] - baseline[ch]); + } + gChannelErrors = new TGraph(128); + for (int k = 0; k < 128; k++) + { + double stdDev = channelSig[k]->GetStdDev(); + channelErrors[k] = stdDev; + gChannelErrors->SetPoint(k + 1, k + 1, stdDev); + } +} + +void Beammon::prelimProfile() +{ + + highVal = 0; + int histChannel = 0; + double highVal_tmp[128]; + + for (int i = 1; i < nevents - 1000; i += 1) + { //nevents/nPrelimEvents){ + data->GetEvent(i); + for (int ch = 0; ch < 128; ch++) + { + double val = channels[ch] - baseline[ch]; + if (isSipm) + histChannel = 128 - ch; + else + histChannel = ch + 1; + prelimBeam->SetBinContent(histChannel, prelimBeam->GetBinContent(histChannel) + val / nPrelimEvents); //nPrelimEvents); + } + } + TF1 *fit = new TF1("fitfunc", "gaus", 1, 128); + fit->SetParameter(1, prelimBeam->GetMean()); + fit->SetParameter(2, prelimBeam->GetStdDev()); + prelimBeam->Fit("fitfunc", "Q"); + prelimMean = fit->GetParameter(1); + prelimSigma = fit->GetParameter(2); + highestChannelBin = floor(prelimMean); + + if (highestChannelBin < 0) + highestChannelBin = 0; + + delete fit; + printf("\ncenter channel: %d \n", highestChannelBin); +} + +void Beammon::ProcessData() +{ + + bool beamOn = false; + bool previousBeamStatus = false; + int lastSpillOn = 0; + int lastSpillOff = 0; + int minSpillTime = 3000; // in ms + int histChannel; + + int highestSigVal = 0; + + for (int i = 1; i < nevents; i++) + { + + if (i % 10000 == 00) + printf("Event: %d / %ld \n", i, nevents); + // cout << "Event: " << i << endl; + data->GetEvent(i); + + double maxSignal = channels[highestChannelBin] - baseline[highestChannelBin]; + + if (isAboveThreshold(maxSignal) && (i > nBaselineEvents)) + { + beamOn = true; + if ((i - lastSpillOff) > minSpillTime && !previousBeamStatus) + { + if (lastSpillOff != 0) + spillTimes.push_back(make_pair(lastSpillOn, lastSpillOff)); + lastSpillOn = i; + } + } + else + { + beamOn = false; + if (previousBeamStatus) + lastSpillOff = i; + } + previousBeamStatus = beamOn; + + int sigVal = 0; + + for (int j = 0; j < 128; j++) + { + + int chan; + if (isSipm) + { + if (j % 2 == 0) + histChannel = 128 - (j + 1); + else + histChannel = 128 - (j - 1); + } + else + histChannel = j + 1; + + double chVal = channels[j] - baseline[j]; + sigVal += chVal; + timePosHist->SetBinContent(histChannel, i, chVal); + completeIntegral += chVal; + } + if (sigVal > highestSigVal) + { + highestSigVal = sigVal; + highestTimeBin = i; + } + + // IONISATION CHAMBERS + /*double chargeToParts = 1. / 3.2886706587037837e-15 * 1e-9 * 312e-6; + if (!(ic1 != ic1)) + ic1Hist->SetBinContent(i, ic1 * chargeToParts); + if (!(ic2 != ic2)) + ic2Hist->SetBinContent(i, ic2 * chargeToParts);*/ + + // MW CHAMBERS + /* if (!(mw1_focusx != mw1_focusx)) + mw1_focusxHist->SetBinContent(i, mw1_focusx); + mw1_focusyHist->SetBinContent(i, mw1_focusy); + mw2_focusxHist->SetBinContent(i, mw2_focusx); + mw2_focusyHist->SetBinContent(i, mw2_focusy); + + if (!(mw1_posx != mw1_posx)) + mw1_posxHist->SetBinContent(i, mw1_posx); + mw1_posyHist->SetBinContent(i, mw1_posy); + mw2_posxHist->SetBinContent(i, mw2_posx); + mw2_posyHist->SetBinContent(i, mw2_posy); + + if (mw1_posx < 100) + { + mwPosX->Fill(mw1_posx); + mwFocusX->Fill(mw1_focusx); + }*/ + } + spillTimes.push_back(make_pair(lastSpillOn, lastSpillOff)); + + TH1D *tmp = GetChannelSlice(-1); + tmp->Fit("gaus"); + TF1 *fit = tmp->GetFunction("gaus"); + referenceIntegral = fit->GetParameter(0); // this is the constant in front of the gaus!! The real integral is constant*sigma*sqrt(2*pi), but because sigma is the same in one measurement it doesn't matter! + signalDist = new TH1D("signalDist", "signal distribution", 200, 0., 14000); //referenceIntegral * 2.51 * fit->GetParameter(2)); + signalNoiseDist = new TH1D("signalNoiseDist", "", 200, 0., referenceIntegral * 2.51 * fit->GetParameter(2)); + signalNoiseChannel = new TH1D("signalNoiseChannel", "", 200, 0., tmp->GetMaximum()); + calcBeamTime(); + + printf("HighestBin: %d \n", highestTimeBin); +} + +TH1D *Beammon::GetPrelimProfile() +{ + if (!prelimBeam) + { + printf("WARNING: preliminary profile not yet generated"); + } + return prelimBeam; +} + +TH1D *Beammon::TimeAverage(int timeStart, int timeStop) +{ + if (timeStart == -1) + timeStart = startTime; + if (timeStop == -1) + timeStop = stopTime; + int count = 0; + TH1D *res = new TH1D("timeAverage", "time average", 128, 0.5, 128.5); + TH1D *tmp; + printf("\n\n start: %d, stop: %d \n\n", timeStart, timeStop); + for (int i = timeStart; i <= timeStop; i++) + { + tmp = GetChannelSlice(i, 0); + if (isAboveThreshold(tmp)) + { + res->Add(tmp, 1.); + count++; + } + delete tmp; + } + if (count) + { + for (int n = 1; n <= 128; n++) + { + res->SetBinContent(n, res->GetBinContent(n) / count); + } + return res; + } + else + return 0; +} + +TH1D *Beammon::TimeIntSignal(int timeStart, int timeStop) +{ + if (timeStart == -1) + timeStart = startTime; + if (timeStop == -1) + timeStop = stopTime; + TH1D *res = new TH1D("timeAverage", "time average", 128, 0.5, 128.5); + TH1D *tmp; + for (int i = timeStart; i < timeStop; i++) + { + tmp = GetChannelSlice(i, 0); + if (isAboveThreshold(tmp)) + { + res->Add(tmp, 1.); + beamOnTime++; + } + delete tmp; + } + return res; +} + +TH1D *Beammon::AverageHist(int dir, int timeStart, int timeStop) +{ // dir = 0 => x direction, 1 => y + + TH2D *hist = timePosHist; + + int nbins1, nbins2; + double binStart, binStop; + int firstBin, secondBin; + if (!dir) + { + // Timeaverage + if ((timeStart != -1) && (timeStop != -1)) + { + firstBin = timeStart; //hist->GetYaxis()->FindBin((timeStart-startTime)/readOutFreq); + secondBin = timeStop; //hist->GetYaxis()->FindBin((timeStop-startTime)/readOutFreq); + nbins1 = hist->GetNbinsX(); + nbins2 = secondBin - firstBin; + binStart = hist->GetXaxis()->GetBinCenter(1); + binStop = hist->GetXaxis()->GetBinCenter(nbins1); + } + else + { + nbins1 = hist->GetNbinsX(); + nbins2 = hist->GetNbinsY(); + binStart = hist->GetXaxis()->GetBinCenter(1); + binStop = hist->GetXaxis()->GetBinCenter(nbins1); + firstBin = 1; + secondBin = nbins2; + } + } + else + { + nbins1 = hist->GetNbinsY(); + nbins2 = hist->GetNbinsX(); + binStart = hist->GetYaxis()->GetBinCenter(1); + binStop = hist->GetYaxis()->GetBinCenter(nbins1); + firstBin = 1; + secondBin = hist->GetNbinsX(); + } + + TH1D *retHist = new TH1D("average", "average", nbins1, binStart, binStop); + for (int i = 1; i <= nbins1; i++) + { + int count = 0; + double avg = 0; + + for (int j = firstBin; j <= secondBin; j++) + { + + if (!dir) + { + /*bool beam = beamOnVector[j]; + if(beam==false) + continue; + //else + //printf("TRUE");*/ + avg += hist->GetBinContent(i, j); + } + else + avg += hist->GetBinContent(j, i); + count++; + } + if (count > 0) + avg /= count; + retHist->SetBinContent(i, avg); + } + + return retHist; +} + +TH1D *Beammon::GetTimeAvg() +{ + int n = spillTimes.size(); + TH1D *res = new TH1D("timeAverage", "time average", 128, 0.5, 128.5); + for (int i = 0; i < n; i++) + { + TH1D *tmp = TimeAverage(spillTimes[i].first, spillTimes[i].second); + if (!tmp) + printf("\n\n timeAvgHist is Null! \n\n"); + if (tmp) + res->Add(tmp, 1. / n); + } + res->SetTitle("average beam profile"); + return res; +} + +TH1D *Beammon::GetTimeAvg(int nSpill) +{ + if (nSpill >= spillTimes.size()) + return 0; + TH1D *res = TimeAverage(spillTimes[nSpill].first, spillTimes[nSpill].second); + res->SetTitle("average beam profile"); + return res; +} + +TH1D *Beammon::GetTimeAvg(int nSpill, int nMeasurements) +{ + if (nSpill >= spillTimes.size()) + return 0; + TH1D *res = TimeAverage(spillTimes[nSpill].second - nMeasurements, spillTimes[nSpill].second); + TString title = TString::Format("average beam profile, %d ms, spill %d", nMeasurements, nSpill); + TString name = TString::Format("avg%dmsspill%d", nMeasurements, nSpill); + res->SetTitle(title.Data()); + res->SetName(name.Data()); + return res; +} + +TH2D *Beammon::GetTimeAvgScatter(int nSpill, int nMeasurements) +{ + + int tStart = spillTimes[nSpill].first; + if (nMeasurements == -1) + tStart = spillTimes[nSpill].second - nMeasurements; + + TH2D *res = new TH2D("tavgScatter", "tavgScatter", 128, 0.5, 128.5, 400, 0., highVal); + for (int i = spillTimes[nSpill].first; i < spillTimes[nSpill].second; i++) + { + TH1D *tmp = GetChannelSlice(i, 0); + if (!isAboveThreshold(tmp)) + continue; + for (int bin = 1; bin <= 128; bin++) + { + res->Fill(bin, tmp->GetBinContent(bin)); + } + delete tmp; + } + TString title = TString::Format("beam profile, %d ms, spill %d", nMeasurements, nSpill); + res->SetTitle(title.Data()); + return res; +} + +TH2D *Beammon::GetTimeAvgScatter() +{ + TH2D *res = new TH2D("tavgScatter", "tavgScatter", 128, 0.5, 128.5, 400, 0., highVal); + int n = spillTimes.size(); + for (int i = 0; i < n; i++) + { + res->Add(GetTimeAvgScatter(i, -1), 1. / n); + } + return res; +} + +TH1D *Beammon::GetChannelSigDist(int channel) +{ + + TString sName = TString("signal distribution channel ") + TString(channel); + double maxAmp = 0; + for (int n = 0; n < spillTimes.size(); n++) + { + TH1D *tmp = GetSpillSlice(n); + if (tmp->GetMaximum() > maxAmp) + maxAmp = tmp->GetMaximum(); + delete tmp; + } + TH1D *res = new TH1D(sName.Data(), sName.Data(), 200, 0., maxAmp); + for (int n = 0; n < spillTimes.size(); n++) + { + TH1D *tmp = GetSpillSlice(n); + for (int bin = 1; bin <= tmp->GetNbinsX(); bin++) + { + res->Fill(tmp->GetBinContent(bin)); + //printf("bin: %d, amp: %f \n", bin, tmp->GetBinContent(bin)); + } + delete tmp; + } + return res; +} + +TH1D *Beammon::GetChannelAvg(bool beamOn) +{ + return AverageHist(1, -1, -1); +} + +TH1D *Beammon::GetTimeSlice(int channel, int timeStart, int timeStop, bool beamOn) +{ + + if (timeStart == -1) + timeStart = startTime; + if (timeStop == -1) + timeStop = stopTime; + + int nbins = timeStop - timeStart; + + TH1D *tmp2 = new TH1D("ts", "timeslice", nbins, (timeStart - startTime) / readOutFreq, (timeStop - startTime) / readOutFreq); + + if (channel == -1) + channel = highestChannelBin; + + TH1D *tmp = timePosHist->ProjectionY("", channel, channel); + + int offset = tmp->GetXaxis()->FindBin(timeStart); + for (int bin = 1; bin <= nbins; bin++) + { + tmp2->SetBinContent(bin, tmp->GetBinContent(bin + offset)); + } + TString title = TString::Format("time projection of channel %d", channel); + tmp2->SetTitle(title.Data()); + + return tmp2; +} + +TCanvas *Beammon::GetTimeSliceCanvas(int channel) +{ + + TCanvas *c1 = new TCanvas(); + c1->SetName("timeslice"); + int nbins = stopTime - startTime; + + TH1D *tmp2 = new TH1D("timeslice", "", nbins, 0., (stopTime - startTime) / readOutFreq); + + if (channel == -1) + channel = highestChannelBin; + + TH1D *tmp = timePosHist->ProjectionY("", channel, channel); + + for (int bin = 1; bin <= nbins; bin++) + { + tmp2->SetBinContent(bin, tmp->GetBinContent(bin)); + } + + tmp2->GetXaxis()->SetTitle("times [s]"); + TString label; + label.Form("adc counts / %d #mus", intTime); + tmp2->GetYaxis()->SetTitle(label.Data()); + + tmp2->Draw("P"); + return c1; +} + +TCanvas *Beammon::GetSignalNoiseChannel(int channel) +{ + + TCanvas *c1 = new TCanvas(); + c1->SetName("signalNoiseChannel"); + int nbins = stopTime - startTime; + + if (channel == -1) + channel = highestChannelBin; + + TH1D *tmp = timePosHist->ProjectionY("", channel, channel); + + for (int bin = 1; bin <= nbins; bin++) + { + signalNoiseChannel->Fill(tmp->GetBinContent(bin)); + } + + signalNoiseChannel->GetYaxis()->SetTitle("entries"); + TString label; + label.Form("adc counts / %d #mus", intTime); + signalNoiseChannel->GetXaxis()->SetTitle(label.Data()); + + signalNoiseChannel->Draw(); + return c1; +} + +TH1D *Beammon::GetChannelSlice(int time, int offset) +{ + if (time == -1) + time = highestTimeBin + offset; + //printf("time: %d\n", time); + TH1D *res = timePosHist->ProjectionX("", time, time); //timePosHist->ProjectionX("",timePosHist->GetYaxis()->FindBin(time+offset),timePosHist->GetYaxis()->FindBin(time+offset)); + //res->SetError(channelErrors); + res->SetTitle("single measurement (1ms)"); + res->SetName("Channel_" + (TString)time); + res->Fit("gaus", "Q0"); + double mean = res->GetFunction("gaus")->GetParameter(1); + double sigma = res->GetFunction("gaus")->GetParameter(2); + return res; +} + +TH1D *Beammon::GetChannelSlice2(int time, int offset) +{ + if (time == -1) + time = highestTimeBin + offset; + //printf("time: %d\n", time); + TH1D *res = timePosHist->ProjectionX("", time, time); //timePosHist->ProjectionX("",timePosHist->GetYaxis()->FindBin(time+offset),timePosHist->GetYaxis()->FindBin(time+offset)); + //res->SetError(channelErrors); + res->SetTitle("single measurement (1ms)"); + res->SetName("Channel_" + (TString)time); + res->Fit("gaus", "Q0"); + double mean = res->GetFunction("gaus")->GetParameter(1); + mean_ave += mean; + double sigma = res->GetFunction("gaus")->GetParameter(2); + sigma_ave += sigma; + return res; +} + +TGraphErrors *Beammon::GetChannelGraph(int time, int offset) +{ + if (time == -1) + time = highestTimeBin + offset; + double xErr = 0.8 / sqrt(12); + TH1D *res = timePosHist->ProjectionX("", time, time); + TGraphErrors *graph = new TGraphErrors(128); + for (int ch = 1; ch <= 128; ch++) + { + graph->SetPoint(ch, ch, res->GetBinContent(ch)); + // graph->SetPointError(ch,xErr,channelErrors[ch-1]);//sqrt(channelErrors[ch-1]*channelErrors[ch-1]+res->GetBinContent(ch))); + graph->SetPointError(ch, xErr, channelErrors[ch - 1]); + } + delete res; + return graph; +} + +TH1D *Beammon::GetChannelGraphHist(int time, int offset) +{ + if (time == -1) + time = highestTimeBin + offset; + double xErr = 0.8 / sqrt(12); + TH1D *res = timePosHist->ProjectionX("", time, time); + return res; +} + +TH1D *Beammon::GetSignalOverTime() +{ + TH1D *tmp = timePosHist->ProjectionY("", 1, 128); + tmp->SetTitle("signal over time"); + tmp->SetName("signal over time"); + return tmp; +} + +void Beammon::PrintSpillTimes() +{ + printf("%lu spills recorded: \n", spillTimes.size()); + // cout << spillTimes.size() << "spills recorded: " << endl; + for (int n = 0; n < spillTimes.size(); n++) + printf("%02d: %f - %f \n", n, (spillTimes[n].first - startTime) / readOutFreq, (spillTimes[n].second - startTime) / readOutFreq); +} + +TH1D *Beammon::calcTimeCenters(int start, int stop) +{ + + int tStart = start; + int tStop = stop; + + if (start == -1) + tStart = startTime; + if (stop == -1) + tStop = stopTime; + + int nbins = (tStop - tStart); + double mean = 0; + double sigma = 0; + + double constant; + TGraphErrors *tmp; + TH1D *tmp2; + TH1D *res = new TH1D("timeIntSignal_tmp", "time integrated signal", 128, 0.5, 128.5); + TCanvas *tmpcanvas = new TCanvas(); + int offset = tStart; + + TF1 *fit = new TF1("gaus_L", "gaus+[3]", 1, 128); + fit->SetParameter(0, 2000); + fit->SetParameter(1, mean_ave); + fit->SetParameter(2, sigma_ave); + fit->SetParameter(3, 0.1); + fit->SetParLimits(0, 100, 1000000); + fit->SetParLimits(1, 1, 128); + fit->SetParLimits(2, 1, 10); + fit->SetParLimits(3, -50, 50); + + TF1 *fit2 = new TF1("gaus_2", "gaus", 1, 128); + fit2->SetParameter(0, 2000); + fit2->SetParameter(1, mean_ave); + fit2->SetParameter(2, sigma_ave); + + for (int bin = tStart; bin <= tStop; bin++) + { + tmp = GetChannelGraph(bin, 0); + tmp->RemovePoint(65); + tmp->RemovePoint(64); + tmp2 = GetChannelGraphHist(bin, 0); + + tmp->Fit("gaus_2", "Q0", "", mean_ave - 3 * sigma_ave, mean_ave + 3 * sigma_ave); //mean_ave - 3 * sigma_ave, mean_ave + 3 * sigma_ave); + TF1 *func = tmp->GetFunction("gaus_2"); + + if (tmp2->GetMean() * 0.8 > 0) + fibreHist_weighted->SetBinContent(bin + 1, tmp2->GetMean() * 0.8); + else + fibreHist_weighted->SetBinContent(bin + 1, 0); + if (tmp2->GetEntries() > 0) + sigHist_weighted->SetBinContent(bin - 1, tmp2->GetEntries() * signalToParticles); + else + sigHist_weighted->SetBinContent(bin - 1, 0); + + if (func) + { + + if (!isAboveThreshold(tmp)) + continue; + + constant = func->GetParameter(0); + mean = func->GetParameter(1) * channelWidth; + sigma = func->GetParameter(2) * channelWidth; + + if (mean <= 0 || mean > 128) + continue; + + if (constant > 1e5 || mean > (mean_ave * channelWidth + 0.2) || mean < (mean_ave * channelWidth - 0.2)) + { + + tmp->Fit("gaus", "Q0", "", mean_ave - 3 * sigma_ave, mean_ave + 3 * sigma_ave); + func = tmp->GetFunction("gaus"); + constant = func->GetParameter(0); + mean = func->GetParameter(1) * channelWidth; + sigma = func->GetParameter(2) * channelWidth; + } + + if (abs(constant) > 1e5) + { + + input_pause = input_pause - 1; + if (input_pause > 0) + { + tmpcanvas->cd(); + tmp->Draw("AP"); + func->Draw("SAME"); + tmpcanvas->Modified(); + tmpcanvas->Write(); + } + continue; + } + + //Fill the error hidto + double erry, tmpx; + bool discard = false; + int nPoint = 0; + for (int chn = 1; chn < 129; chn++) + { + tmp->GetPoint(nPoint, tmpx, erry); + SignalErrHist->Fill((double)tmpx, (erry - func->Eval(tmpx)) / (constant * sigma)); + } + + double signal = sigma * 2.51 * constant * signalToParticles; + + event_count++; + + if (event_count % 5000 == 0) + { + printf("Signal events: %d ", event_count); + printf("Event number: %d\n", bin); + } + + if (signal < 0 || signal != signal) + continue; + + //Fill the Histograms + beamPosX->Fill(mean); + fibreHist->Fill(bin, mean); + // mwpcHist->Fill(bin, mw1_posxHist->GetBinContent(bin - align)); + beamFocusX->Fill(2.35 * sigma); + beamPosTimeGraph->SetPoint(bin, bin, mean); + beamPosTimeGraph->SetPointError(bin, 0., func->GetParError(1)); + timeCenters->Fill((bin) / readOutFreq, mean); + timeWidths->Fill((bin) / readOutFreq, sigma * 2.35); + // timeCenters_MWPC->Fill((bin) / readOutFreq, mw1_posxHist->GetBinContent(bin - align)); + // timeWidths_MWPC->Fill((bin) / readOutFreq, mw1_focusxHist->GetBinContent(bin - align)); + // Diff_timeCenters->Fill((bin) / readOutFreq, mean - mw1_posxHist->GetBinContent(bin - align) - shift); + + // if (mw1_posxHist->GetBinContent(bin - align) < 20) + // { + // mwPosScatterGraph->SetPoint(mwPosScatterGraph->GetN(), mw1_posxHist->GetBinContent(bin - align), mean); + // for (int i = 0; i < 20; i++) + // mwPosScatterPlot[i]->Fill(mw1_posxHist->GetBinContent(bin - i + 10), mean); + // } + double sigError = 2.51 * sqrt(sigma * sigma * func->GetParError(0) * func->GetParError(0) + constant * constant * func->GetParError(2) * func->GetParError(2)) * signalToParticles; + if (signal > 1e5 || sigError > signal) + { + //signal = 0; + sigError = 0; + } + if (signal) + { + signalDist->Fill(signal); + /*if (ic1Hist->GetBinContent(bin - alignIc)) + { + sigHist->Fill(bin - alignIc - 1, signal); + signalComp->Fill((signal - ic1Hist->GetBinContent(bin - alignIc)) / signal); + double x, y, totalSignal = 0, signalError = 0; + for (int k = 0; k < 63; k++) + { + tmp->GetPoint(k, x, y); + signalError += tmp->GetErrorY(k) * tmp->GetErrorY(k); + totalSignal += y * signalToParticles; + } + signalError = sqrt(signalError) * signalToParticles; + sigIcScatterGraph->SetPoint(sigIcScatterGraph->GetN(), ic1Hist->GetBinContent(bin - alignIc), totalSignal); + sigIcScatterGraph->SetPointError(sigIcScatterGraph->GetN(), 0, signalError); + for (int i = 0; i < 20; i++) + sigIcScatterPlot[i]->Fill(ic1Hist->GetBinContent(bin - i + 10), signal); + Center_Signal->Fill(signal, mean); + // sigIcScatterPlot[14]->Fill(ic1Hist->GetBinContent(bin - 14 + 10), signal); + sigIcScatterPlot_ic2->Fill(ic2Hist->GetBinContent(bin - 14 + 10), signal); + }*/ + } + else + { + //ic1Hist->SetBinContent(bin, 0); + } + + // widthComp->Fill(sigma * 2.51 - mw1_focusxHist->GetBinContent(bin - align)); + // Diff_hist->Fill(mean - mw1_posxHist->GetBinContent(bin - align) - shift); + // Diff_Signal->Fill(signal, mean - mw1_posxHist->GetBinContent(bin - align) - shift); + // Diff_ic1->Fill(ic1Hist->GetBinContent(bin - alignIc), mean - mw1_posxHist->GetBinContent(bin - align) - shift); + + // icIntegral += ic1Hist->GetBinContent(bin); + signalTimeGraph->SetPoint(bin, bin, signal); + + signalTimeGraph->SetPointError(bin, 0., sigError); + beamOnTime++; + + double c2 = func->GetChisquare() / func->GetNDF(); + if (c2 < 100) + chisquareDist->Fill(c2); + } + delete func; + delete tmp; + } + delete tmpcanvas; + return res; +} + +void Beammon::GetTimeCenters() +{ + + TH1D *tmp_TimeCenter; + /*double mean_MWPC = mwPosX->GetMean(); + shift = mean_ave * 0.8 / 5 - mwPosX->GetMean(); + double max_ic1 = ic1Hist->GetMaximum();*/ + + beamOnTime = 0; + int nbins = stopTime - startTime; + mean_ave = prelimBeam->GetMean(); + sigma_ave = prelimBeam->GetStdDev(); + printf("Mean: %f \n", mean_ave); + printf("Sigma: %f \n", sigma_ave); + + timeCenters = new TH2D("timeCenters", "", nbins / 100, 0., (stopTime - startTime) / readOutFreq, 200, (0.8 * mean_ave - 6. * sigma_pos), (0.8 * mean_ave + 6 * sigma_pos)); + timeWidths = new TH2D("timeWidths", "", nbins / 100, 0., (stopTime - startTime) / readOutFreq, 200, 0.4 * sigma_ave * 2.35, 0.95 * sigma_ave * 2.35); + timeIntSignal = new TH1D("timeIntSignal", "time integrated signal", 128, 0.5, 128.5); + // timeCenters_MWPC = new TH2D("timeCenters_MWPC", "", nbins / 100, 0., (stopTime - startTime) / readOutFreq, 200, mean_MWPC - 5 * sigma_pos, mean_MWPC + 5 * sigma_pos); + // timeWidths_MWPC = new TH2D("timeWidths_MWPC", "", nbins / 100, 0., (stopTime - startTime) / readOutFreq, 200, 1.5, mw1_focusxHist->GetMaximum() * 1.05); + // timeIntSignal_MWPC = new TH1D("timeIntSignal_MWPC", "time integrated signal", 128, 0.5, 128.5); + + // for (int j = 0; j < 20; j++) + // { + // TString name; + // name.Form("sigIcScatterPlot%d", j); + // sigIcScatterPlot[j] = new TH2D(name.Data(), name.Data(), 200, 0, -1, 200, 0, -1); + // TString name2; + // name2.Form("mwPosScatterPlot%d", j); + // mwPosScatterPlot[j] = new TH2D(name2.Data(), name2.Data(), 200, mean_MWPC - 0.1 * sigma_ave, mean_MWPC + 0.1 * sigma_ave, 200, 0.8 * (mean_ave - 0.15 * sigma_ave), 0.8 * (mean_ave + 0.15 * sigma_ave)); + // } + // sigIcScatterPlot_ic2 = new TH2D("sigIcScatterPlot_ic2", "sigIcScatterPlot_ic2", 200, 0, -1, 200, 0, -1); + + // Center_Signal = new TH2D("Center_Signal", "", 200, 0., max_ic1 - 5000, 200, (0.8 * mean_ave - 5 * sigma_pos), (0.8 * mean_ave + 5 * sigma_pos)); + // Diff_timeCenters = new TH2D("Diff_time", "", nbins / 100, 0., (stopTime - startTime) / readOutFreq, 200, -6 * sigma_pos, 6 * sigma_pos); + // Diff_hist = new TH1D("Diff_hist", "l", 200, -2, 2.); + // Diff_Signal = new TH2D("Diff_Signal", "", 200, 0., max_ic1 - 5000, 200, -6 * sigma_pos, 6 * sigma_pos); + // Diff_ic1 = new TH2D("Diff_ic1", "", 200, 0., max_ic1 - 5000, 200, -6 * sigma_pos, 6 * sigma_pos); + + // b_beamPosX_1 = newdata->Branch("beamPosX_1", &beamPosX_1); + // b_beamFocusX_1 = newdata->Branch("beamFocusX_1", &beamFocusX_1); + // b_beamSignal_1 = newdata->Branch("beamSignal_1", &beamSignal_1); + // bb_ic1 = newdata->Branch("ic1_1", &ic1_1); + // bb_ic2 = newdata->Branch("ic2_1", &ic2_1); + // bb_mw1_focusx = newdata->Branch("mw1_focusx_1", &mw1_focusx_1); + // bb_mw1_posx = newdata->Branch("mw1_posx_1", &mw1_posx_1); + // bb_mw2_focusx = newdata->Branch("mw2_focusx_1", &mw2_focusx_1); + // bb_mw2_posx = newdata->Branch("mw2_posx_1", &mw2_posx_1); + // b_beamOn = newdata->Branch("beamOn", &beamOn); + + // newdata->SetBranchStatus("*", 1); + for (int i = 0; i < spillTimes.size(); i++) + { + printf("Spill: %d\n", spillTimes[i].first); + tmp_TimeCenter = calcTimeCenters(spillTimes[i].first + 200, spillTimes[i].second); + } + SignalErrHist->Write(); + printf("Fit_Fail_Counts=%d\n", Fit_Fail_Counts); + + //Draw timeCenter + timeCenters->GetXaxis()->SetTitle("time [s]"); + TString label; + label.Form("mean position[mm]"); + timeCenters->GetYaxis()->SetTitle(label.Data()); + timeCenters->Write(); + + //Draw timeCenter_MWPC + // timeCenters_MWPC->GetXaxis()->SetTitle("time [s]"); + // TString label2; + // label2.Form("mean position[mm]"); + // timeCenters_MWPC->GetYaxis()->SetTitle(label.Data()); + // timeCenters_MWPC->Write(); + + //Draw timeWidths + timeWidths->GetXaxis()->SetTitle("time [s]"); + TString label12; + label12.Form("width fiber[mm]"); + timeWidths->GetYaxis()->SetTitle(label12.Data()); + timeWidths->Write(); + + //timeIntSignal->Write(); + signalDist->Write(); + + //Draw timeWidths_MWPC + // timeWidths_MWPC->GetXaxis()->SetTitle("time [s]"); + // TString label13; + // label13.Form("width MWPC[mm]"); + // timeWidths_MWPC->GetYaxis()->SetTitle(label12.Data()); + // timeWidths_MWPC->Write(); + + // Center_Signal->GetXaxis()->SetTitle("Signal [particles]"); + // TString label123; + // label123.Form("Position_Fiber[mm]"); + // Center_Signal->GetYaxis()->SetTitle(label123.Data()); + // Center_Signal->Write(); + // Center_Signal->ProfileX()->Write(); + + //Draw Diff_timeCenters + // Diff_timeCenters->GetXaxis()->SetTitle("time [s]"); + // TString label3; + // label3.Form("mean position diff[mm]"); + // Diff_timeCenters->GetYaxis()->SetTitle(label.Data()); + // Diff_timeCenters->Write(); + + //Draw Diff_Signal + // Diff_Signal->GetXaxis()->SetTitle("signal"); + // TString label4; + // label4.Form("mean position diff[mm]"); + // Diff_Signal->GetYaxis()->SetTitle(label.Data()); + // Diff_Signal->Write(); + + //Draw Diff_Signal + // Diff_ic1->GetXaxis()->SetTitle("ic1"); + // TString label5; + // label5.Form("mean position diff[mm]"); + // Diff_ic1->GetYaxis()->SetTitle(label.Data()); + // Diff_ic1->Write(); + + // TObjArray aSlices, bSlices; + // Diff_Signal->FitSlicesY(0, 0, -1, 5, "QNR", &aSlices); + // for (int i = 0; i < 4; i++) + // { + // aSlices[i]->Write(); + // } + // Diff_ic1->FitSlicesY(0, 0, -1, 5, "QNR", &bSlices); + // for (int i = 0; i < 4; i++) + // { + // bSlices[i]->Write(); + // } + mean_ave = beamPosX->GetMean(); + sigma_pos = beamPosX->GetStdDev(); + sigma_ave = beamFocusX->GetMean(); + return; +} + +pair Beammon::GetSpillTimes(int nSpill) +{ + + return spillTimes[nSpill]; +} + +TH2D *Beammon::GetSpillCenters(int nSpill) +{ + + //return calcTimeCenters(spillTimes[nSpill].first, spillTimes[nSpill].second); +} + +TH1D *Beammon::GetSpillSlice(int nSpill) +{ + return GetTimeSlice(-1, spillTimes[nSpill].first - 500, spillTimes[nSpill].second + 500, true); +} + +TH1D *Beammon::GetSignalDistribution() +{ + /*int n = signalDist->GetNbinsX(); + for(int i = 1; i<= n; i++){ + signalDist->SetBinContent(i,signalDist->GetBinContent(i)*signalDistScale); + }*/ + signalDist->Scale(signalDistScale); + return signalDist; +} + +TCanvas *Beammon::GetSignalDistributionCanvas() +{ + TCanvas *c1 = new TCanvas(); + c1->SetName("signalDistributionCanvas"); + + signalDist->Draw(); + signalDist->SetTitle(""); + signalDist->GetYaxis()->SetTitle("entries"); + TString label; + label.Form("integrated signal [adc counts / %d #mus]", intTime); + signalDist->GetXaxis()->SetTitle(label.Data()); + //c1->SaveAs("dummy"); + return c1; +} + +TH2D *Beammon::GetSimpleView() +{ + return timePosHist; +} + +TH1D *Beammon::GetBaselineHist() +{ + TH1D *tmp = new TH1D("baseline", "baseline", 128, 0.5, 128.5); + for (int n = 1; n <= 128; n++) + { + tmp->SetBinContent(n, baseline[n - 1]); + } + return tmp; +} + +void Beammon::Close() +{ + + delete timePosHist; + /*delete meanHistOn; + delete widthHistOn; + delete timePosHist; + delete prelimBeam; + delete timeCenters; + delete timeCenters_MWPC; + delete timeWidths; + delete timeWidths_MWPC; + delete signalDist; + delete signalNoiseDist; + delete signalNoiseChannel; + delete simpleView; + delete timeIntSignal; + delete timeIntSignal_MWPC; + delete beamPosHist; + delete beamWidthHist; + delete icSignalDist; + delete beamPosTimeGraph; + delete signalTimeGraph; + delete sigIcScatterGraph; + delete mwPosScatterGraph; + delete[] sigIcScatterPlot; + delete[] mwPosScatterPlot; + delete ic1Hist; + delete ic2Hist; + delete signalComp; + delete positionComp; + delete widthComp; + delete mw1_focusxHist; + delete mw1_focusyHist; + delete mw2_focusxHist; + delete mw2_focusyHist; + delete mw1_posxHist; + delete mw1_posyHist; + delete mw2_posxHist; + delete mw2_posyHist; + delete channelSig[128]; + delete chisquareDist; + delete mwPosX; + delete mwFocusX; + delete beamPosX; + delete beamFocusX; + + delete Center_Signal; + delete Diff_timeCenters; + delete Diff_Signal; + delete Diff_ic1; + delete Diff_hist; + delete deltaSig_time; + delete deltaSig_Sig;*/ + fileOut->Close(); + + /*delete fileIn; + delete fileOut;*/ +} + +double Beammon::GetIntSignal() +{ + + return intSignal; +} + +int Beammon::GetBeamOnTime() +{ + return beamOnTime; +} + +double Beammon::GetSignalStd() +{ + return signalDist->GetStdDev(1); +} + +bool Beammon::isAboveThreshold(TGraphErrors *slice) +{ + double channel, signal; + slice->GetPoint(highestChannelBin, channel, signal); + if (signal > beamOnAdcVal) + return true; + else + return false; +} + +bool Beammon::isAboveThreshold(TH1D *slice) +{ + double val = slice->GetBinContent(highestChannelBin); + if (val > beamOnAdcVal) + return true; + else + return false; +} + +bool Beammon::isAboveThreshold(double val) +{ + // old version using the gaussian fit to the measurement + if (val > beamOnAdcVal) + return true; + else + return false; + /* + if(val > baselineIntegral * 1.5 && val < baselineIntegral *100) + return true; + else + return false;*/ +} + +TH1D *Beammon::icSignalComp() +{ + icSignalDist = new TH1D("icSignal", "icSignal", 200, 0., ic1Hist->GetMaximum()); + TH1D *icSignalDist2 = new TH1D("icSignal2", "icSignal2", 200, 0., ic2Hist->GetMaximum()); + for (int i = 0; i < ic1Hist->GetNbinsX(); i++) + { + if (ic1Hist->GetBinContent(i) != 0) + icSignalDist->Fill(ic1Hist->GetBinContent(i)); + if (ic2Hist->GetBinContent(i) != 0) + icSignalDist2->Fill(ic2Hist->GetBinContent(i)); + } + icSignalDist2->Write(); + return icSignalDist; +} + +TCanvas *Beammon::signalOverTime2d() +{ + + TCanvas *c1 = new TCanvas(); + c1->SetName("signalOverTime2d"); + TH1D *tmp = GetSignalOverTime(); + int binsX = tmp->GetNbinsX(); + int max = tmp->GetMaximum(); + int min = tmp->GetMinimum(); + TH2D *res = new TH2D("sigTime2d", "", binsX / 200, 0., binsX / readOutFreq, 100, min, max); + for (int k = 0; k < binsX; k++) + { + res->Fill(k / readOutFreq, tmp->GetBinContent(k)); + } + + res->Draw("colz"); + res->GetXaxis()->SetTitle("time [s]"); + TString label; + label.Form("adc counts / %d #mus", intTime); + res->GetYaxis()->SetTitle(label.Data()); + //c1->SaveAs("dummy"); + res->Write(); + return c1; +} + +double Beammon::calcBeamTime() +{ + + beamOnTime = 0; + for (int i = 0; i < spillTimes.size(); i++) + { + beamOnTime += spillTimes[i].second - spillTimes[i].first; + } + return beamOnTime; +} + +TCanvas *Beammon::PrintProfile(int offset) +{ + TCanvas *c1 = new TCanvas(); + c1->cd(); + //TH1D *res = GetChannelSlice(-1,offset); + TGraphErrors *res = new TGraphErrors(128); + TGraphErrors *tmp = GetChannelGraph(-1, offset); + + double x, y, errx, erry; + for (int ch = 0; ch < 127; ch++) + { + tmp->GetPoint(ch, x, y); + x *= 0.8; + errx = 0; + erry = tmp->GetErrorY(ch); + res->SetPoint(ch, x, y); + res->SetPointError(ch, errx, erry); + } + + res->Fit("gaus", "Q0"); + + double stepsize = 0.01; + double lim = res->GetFunction("gaus")->GetMaximum() / 2; + + double val, x1, x2, pos = 0; + bool below = true; + while (pos <= 128) + { + val = res->GetFunction("gaus")->Eval(pos); + if (below && val >= lim) + { + x1 = pos; + below = false; + } + else if (below == false && val <= lim) + { + x2 = pos; + break; + } + pos += stepsize; + } + fwhm = (x2 - x1) * channelWidth; + + res->Draw("AP"); + + TString sName; + sName.Form("Profile%d", offset); + c1->SetName(sName.Data()); + res->SetTitle(""); + res->GetXaxis()->SetTitle("position [mm]"); + TString label; + label.Form("adc counts / %d #mus", intTime); + res->GetYaxis()->SetTitle(label.Data()); + res->GetYaxis()->SetTitleOffset(1.4); + + TString str; + str.Form("fwhm = %.3f mm", fwhm); + TText *t = new TText(34, 900, str.Data()); + t->Draw("SAME"); + delete t; + delete res; + + c1->Update(); + c1->Modified(); + //c1->SaveAs(sName.Data()); + return c1; +} +TCanvas *Beammon::FitSnapshot(int offset) +{ + + //gSyle->SetOptFit(1111); + TCanvas *c1 = new TCanvas(); + c1->cd(); + TGraphErrors *res = GetChannelGraph(-1, offset); + TString sName; + sName.Form("Snapshot%d", offset); + c1->SetName(sName.Data()); + res->SetTitle(""); + res->GetXaxis()->SetTitle("channel"); + TString label; + label.Form("adc counts / %d #mus", intTime); + res->GetYaxis()->SetTitle(label.Data()); + res->GetYaxis()->SetTitleOffset(1.4); + //res->Fit("gaus"); + + res->Fit("gaus"); + double mean = res->GetFunction("gaus")->GetParameter(1); + double sigma = res->GetFunction("gaus")->GetParameter(2); + double constant = res->GetFunction("gaus")->GetParameter(0); + + TF1 *func = new TF1("doublegaus", fitfunc, 0, 128, 6); // t + func->SetNpx(1000); + func->SetParameter(0, constant); + func->SetParameter(1, mean); + func->SetParameter(2, sigma); + func->SetParameter(3, constant); + func->SetParameter(4, sigma); + func->SetParameter(5, 0.); + func->SetParLimits(1, 0., 128.); + func->SetParLimits(2, 1., 20.); + func->SetParLimits(4, 5., 100.); + //func->SetParameter(5,0.); + res->Fit("doublegaus"); + + res->Draw("AP"); + c1->SaveAs(sName.Data()); + return c1; +} + +TCanvas *Beammon::FitAverage() +{ + + TCanvas *c1 = new TCanvas(); + c1->cd(); + int n = spillTimes.size(); + double yValues[128]; + double yErrors[128]; + double xValues[128]; + double xErrors[128]; + int count = 0; + double x, y, errY; + TGraphErrors *tmp; + yValues[0] = 0; + + for (int i = 0; i < n; i++) + { + int start = spillTimes[i].first; + int stop = spillTimes[i].second; + for (int k = start; k <= stop; k++) + { + count++; + tmp = GetChannelGraph(k, 0); + for (int bin = 1; bin <= 128; bin++) + { + errY = tmp->GetErrorY(bin); + tmp->GetPoint(bin, x, y); + if (!(y != y || errY != errY)) + + { + yValues[bin - 1] += y; + yErrors[bin - 1] += errY * errY; + } + else + { + yValues[bin - 1] += 0; + yErrors[bin - 1] += 0; + } + } + } + } + delete tmp; + for (int bin = 0; bin < 128; bin++) + { + xValues[bin] = bin; + xErrors[bin] = 1. / sqrt(12); + yValues[bin] *= 1. / count; + yErrors[bin] = sqrt(yErrors[bin]) / count; + } + + /*for (int i = 0; i < 128; i++) + { + printf("channelErrors[%d]: %f ", i, channelErrors[i]); + printf("yValue[%d]: %f ", i, yValues[i]); + printf("yError[%d]: %f \n", i, yErrors[i]); + }*/ + TGraph *res = new TGraph(128, xValues, yValues); //, xErrors, yErrors); + + c1->SetName("avgGraph"); + res->SetTitle(""); + res->GetXaxis()->SetTitle("channel"); + TString label; + label.Form("adc counts / %d #mus", intTime); + res->GetYaxis()->SetTitle(label.Data()); + res->GetYaxis()->SetTitleOffset(1.4); + + res->Fit("gaus", "Q0"); + double mean = res->GetFunction("gaus")->GetParameter(1); + //mean_ave = mean; + double sigma = res->GetFunction("gaus")->GetParameter(2); + //sigma_ave = sigma; + double constant = res->GetFunction("gaus")->GetParameter(0); + //res->Fit("gaus","","",mean-1.5*sigma,mean+1.5*sigma); + + TF1 *func = new TF1("doublegaus", fitfunc, 0, 128, 6); // t + func->SetNpx(1000); + func->SetParameter(0, constant); + func->SetParameter(1, mean); + func->SetParameter(2, sigma); + func->SetParameter(3, constant); + func->SetParameter(4, sigma); + func->SetParameter(5, 0.); + func->SetParLimits(1, 0., 128.); + func->SetParLimits(2, 1., 20.); + func->SetParLimits(4, 5., 100.); + //func->SetParameter(5,0.); + res->Fit("doublegaus"); + + res->Draw("AP"); + //c1->SaveAs("avgFit"); + + // find fwhm + double stepsize = 0.01; + double lim = res->GetFunction("doublegaus")->GetMaximum() / 2; + + double val, x1, x2, pos = 0; + bool below = true; + while (pos <= 128) + { + val = func->Eval(pos); + if (below && val >= lim) + { + x1 = pos; + below = false; + } + else if (below == false && val <= lim) + { + x2 = pos; + break; + } + pos += stepsize; + } + fwhm = (x2 - x1) * channelWidth; + return c1; +} + +TCanvas *Beammon::PrintChannelNoise(int channel) +{ + + TCanvas *c1 = new TCanvas(); + c1->cd(); + TString name; + name.Form("channelNoise%d", channel); + TString label; + label.Form("adc counts / %d #mus", intTime); + c1->SetName(name.Data()); + channelSig[channel]->SetTitle(""); + channelSig[channel]->SetName(name.Data()); + channelSig[channel]->GetXaxis()->SetTitle(label.Data()); + channelSig[channel]->GetYaxis()->SetTitle("entries"); + + channelSig[channel]->Draw(); + gStyle->SetOptStat("mr"); + gPad->Modified(); + //c1->SaveAs("blub"); + return c1; +} + +TCanvas *Beammon::IcFitSlicesY() +{ + TCanvas *c1 = new TCanvas(); + c1->cd(); + c1->SetName("icFitSlicesY"); + + TH1D *tmp = timePosHist->ProjectionY("", 1, 128); + + TH1D *means = (TH1D *)sigIcScatterPlot[10 + alignIc]->ProfileY(); //(TH1D*)objectArray[1]; + means->SetLineColor(kBlack); + + //sigIcScatterPlot->Draw(); + means->Draw("E"); + means->GetXaxis()->SetRangeUser(0., means->GetXaxis()->GetXmax()); + means->SetMinimum(0.); + means->SetTitle(""); + //means->SetName("icFitSlicesY"); + TString label1, label2; + label1.Form("mean photodiode signal [particles / %d #mus]", intTime); + label2.Form("ionisation chamber signal [particles / %d #mus]", intTime); + means->GetXaxis()->SetTitle(label2.Data()); + means->GetYaxis()->SetTitle(label1.Data()); + + means->Fit("pol1"); + + //sigIcScatterPlot->Draw(); + gPad->Modified(); + //c1->SaveAs("blub"); + means->Write(); + return c1; +} + +TCanvas *Beammon::PrintSigIcGraph() +{ + TCanvas *c1 = new TCanvas(); + c1->cd(); + + TString name; + name.Form("sigIcScatterGraph"); + TString label, label2; + label.Form("adc counts / %d #mus", intTime); + label2.Form("whatever / %d #mus", intTime); + c1->SetName(name.Data()); + sigIcScatterGraph->SetTitle(""); + sigIcScatterGraph->SetName(name.Data()); + sigIcScatterGraph->GetXaxis()->SetTitle(label2.Data()); + sigIcScatterGraph->GetYaxis()->SetTitle(label.Data()); + + sigIcScatterGraph->Fit("pol1", "W"); + sigIcScatterGraph->Draw("AP"); + gPad->Modified(); + //c1->SaveAs("blub"); + return c1; +} + +TH1D *Beammon::GetMwPosComp() +{ + double bin, mean; + double shift = beamPosX->GetMean() - mwPosX->GetMean(); + //printf("beam: %f \n",beamPosTimeGraph->GetMean(2)); + int n = beamPosTimeGraph->GetN(); + for (int i = 0; i < n; i++) + { + beamPosTimeGraph->GetPoint(i, bin, mean); + if (!mean) + continue; + positionComp->Fill(mean - mw1_posxHist->GetBinContent(bin - align) - shift); + } + return positionComp; +} + +// +/// +///////////////////////////////////////////////////////////////////////////// + +TCanvas *Beammon::GetSig_e_ic_Hist() +{ + shift = beamPosX->GetMean() - mwPosX->GetMean(); + printf("shift = %f", shift); + TCanvas *c1 = new TCanvas(); + c1->cd(); + c1->SetName("SignalComp_vs_Time"); + Double_t norm = ic1Hist->Integral(); + ic1Hist->Scale(1. / norm); + ic1Hist->SetLineColor(kRed); + ic1Hist->Draw("HIST L"); + Double_t norm0 = sigHist->Integral(); + Double_t scaleSig = norm / norm0; + sigHist->Scale(1. / norm0); + sigHist->Draw("HIST SAME L"); + auto legend = new TLegend(0.1, 0.7, 0.48, 0.9); + legend->AddEntry(ic1Hist, "ic", "l"); + legend->AddEntry(sigHist, "Fibre", "l"); + legend->Draw(); + + TH1D *compsig = new TH1D("compsig", "compsig", 200, -0.5, 0.5); + for (int i = 0; i < nevents; i++) + { + compsig->Fill((ic1Hist->GetBinContent(i) - sigHist->GetBinContent(i)) * 2 / (ic1Hist->GetBinContent(i) + sigHist->GetBinContent(i))); + } + compsig->Write(); + + TCanvas *c2 = new TCanvas(); + c2->cd(); + c2->SetName("PositionComp_vs_Time"); + TH1D *fibreHistNew = new TH1D("fibreHistNew", "fibreHistNew", nevents, 0., nevents - 1); + for (int i = 0; i < nevents; i++) + { + if (fibreHist->GetBinContent(i) != 0) + { + fibreHistNew->SetBinContent(i, fibreHist->GetBinContent(i) - shift); + } + else + fibreHistNew->SetBinContent(i, 0); + } + fibreHistNew->Draw("HIST L"); + mwpcHist->SetLineColor(kRed); + mwpcHist->SetLineColor(kRed); + mwpcHist->Draw("HIST SAME L"); + auto legend2 = new TLegend(0.1, 0.7, 0.48, 0.9); + legend2->AddEntry(mwpcHist, "MWPC", "l"); + legend2->AddEntry(fibreHistNew, "Fibre", "l"); + legend2->Draw(); + c2->Write(); + return c1; +} + +TCanvas *Beammon::GetSig_e_ic_Hist_Weighted() +{ + TCanvas *c1 = new TCanvas(); + c1->cd(); + c1->SetName("SignalComp_vs_Time_all"); + Double_t norm = ic1Hist->Integral(); + ic1Hist->Scale(1. / norm); + ic1Hist->SetLineColor(kRed); + ic1Hist->SetLineWidth(2); + ic1Hist->Draw("HIST L"); + Double_t norm0 = sigHist_weighted->Integral(); + sigHist_weighted->Scale(1. / norm0); + sigHist_weighted->Draw("HIST SAME L"); + Double_t norm1 = sigHist->Integral(); + sigHist->Scale(1. / norm1); + sigHist->SetLineColor(kBlue); + sigHist->Draw("HIST SAME L"); + auto legend = new TLegend(0.1, 0.7, 0.48, 0.9); + legend->AddEntry(ic1Hist, "ic", "l"); + legend->AddEntry(sigHist, "Fibre_fit", "l"); + legend->AddEntry(sigHist_weighted, "Fibre_sum", "l"); + legend->Draw(); + c1->Write(); + + TH1D *compsig_weighted = new TH1D("compsig_weighted", "compsig", 200, -0.5, 0.5); + for (int i = 0; i < nevents; i++) + { + compsig_weighted->Fill((ic1Hist->GetBinContent(i) - sigHist_weighted->GetBinContent(i)) * 2 / (ic1Hist->GetBinContent(i) + sigHist_weighted->GetBinContent(i))); + } + compsig_weighted->SetLineColor(kRed); + compsig_weighted->Write(); + TH1D *compsig = new TH1D("compsig", "compsig", 200, -0.5, 0.5); + for (int i = 0; i < nevents; i++) + { + compsig->Fill((ic1Hist->GetBinContent(i) - sigHist->GetBinContent(i)) * 2 / (ic1Hist->GetBinContent(i) + sigHist->GetBinContent(i))); + } + c1->cd(); + c1->SetName("CompSig_all"); + compsig->Draw(); + compsig_weighted->Draw("SAME"); + auto legend2 = new TLegend(0.1, 0.7, 0.48, 0.9); + legend2->AddEntry(compsig_weighted, "Weighted", "l"); + legend2->AddEntry(compsig, "Fit", "l"); + legend2->Draw(); + c1->Write(); + + TCanvas *c2 = new TCanvas(); + c2->cd(); + c2->SetName("PositionComp_vs_Time_all"); + TH1D *fibreHistNew_weighted = new TH1D("fibreHistNew_weighted", "fibreHistNew_weighted", nevents, 0., nevents - 1); + for (int i = 0; i < nevents; i++) + { + if (fibreHist_weighted->GetBinContent(i) != 0) + { + fibreHistNew_weighted->SetBinContent(i, fibreHist_weighted->GetBinContent(i) - shift); + } + else + fibreHistNew_weighted->SetBinContent(i, 0); + } + TH1D *fibreHistNew = new TH1D("fibreHistNew", "fibreHistNew", nevents, 0., nevents - 1); + for (int i = 0; i < nevents; i++) + { + if (fibreHist->GetBinContent(i) != 0) + { + fibreHistNew->SetBinContent(i, fibreHist->GetBinContent(i) - shift); + } + else + fibreHistNew->SetBinContent(i, 0); + } + fibreHistNew->Draw("HIST L"); + fibreHistNew->SetLineColor(kBlue); + fibreHistNew_weighted->Draw("HIST L SAME"); + mwpcHist->SetLineColor(kRed); + mwpcHist->SetLineWidth(2); + mwpcHist->Draw("HIST SAME L"); + auto legend3 = new TLegend(0.1, 0.7, 0.48, 0.9); + legend3->AddEntry(mwpcHist, "MWPC", "l"); + legend3->AddEntry(fibreHistNew, "Fibre_fit", "l"); + legend3->AddEntry(fibreHistNew_weighted, "Fibre_Weighted", "l"); + legend3->Draw(); + c2->Write(); + + c2->cd(); + c2->Clear(); + c2->SetName("PosComp_All"); + TH1D *comppos_weighted = new TH1D("comppos_weighted", "comppos", 200, -0.4, 0.4); + for (int i = 0; i < nevents; i++) + { + comppos_weighted->Fill((mwpcHist->GetBinContent(i) - fibreHist_weighted->GetBinContent(i) + shift)); + } + comppos_weighted->SetLineColor(kRed); + comppos_weighted->Write(); + TH1D *comppos = new TH1D("comppos", "comppos", 200, -0.4, 0.4); + for (int i = 0; i < nevents; i++) + { + comppos->Fill((mwpcHist->GetBinContent(i) - fibreHist->GetBinContent(i) + shift)); + } + comppos->Draw(); + comppos_weighted->Draw("SAME"); + auto legend4 = new TLegend(0.1, 0.7, 0.48, 0.9); + legend4->AddEntry(comppos_weighted, "Weighted", "l"); + legend4->AddEntry(comppos, "Fit", "l"); + legend4->Draw(); + return c2; +} \ No newline at end of file diff --git a/Scripts_20170508/convert b/Scripts_20170508/convert new file mode 100644 index 0000000..45b33e9 Binary files /dev/null and b/Scripts_20170508/convert differ diff --git a/Scripts_20170508/convert.c b/Scripts_20170508/convert.c new file mode 100644 index 0000000..4385793 --- /dev/null +++ b/Scripts_20170508/convert.c @@ -0,0 +1,54 @@ +#include +#include +#include +#include +#include +#include +#include +#include + +using namespace std; + +Int_t main(Int_t argc, const char *argv[]) +{ + + const char *dirname = "/mnt/g/HIT/time_aligned/20170508/"; + const char *ext = ".csv"; + + TSystemDirectory dir(dirname, dirname); + TList *files = dir.GetListOfFiles(); + if (files) + { + TSystemFile *file; + TString fname; + TIter next(files); + + while ((file = (TSystemFile *)next())) + { + fname = file->GetName(); + + if (!file->IsDirectory() && fname.EndsWith(ext)) + { + + TString outname = TString(dirname) + fname; + outname.Replace(outname.Length() - 3, 3, TString("root")); + //outfile->cd(); + + TTree *tree = new TTree("t", "t"); + cout << fname << endl; + //192 + tree->ReadFile(TString(TString(dirname) + fname), "time/D:event_id:sync_out:sync_in:data_ok:led_voltage:current:ch00:ch01:ch02:ch03:ch04:ch05:ch06:ch07:ch08:ch09:ch10:ch11:ch12:ch13:ch14:ch15:ch16:ch17:ch18:ch19:ch20:ch21:ch22:ch23:ch24:ch25:ch26:ch27:ch28:ch29:ch30:ch31:ch32:ch33:ch34:ch35:ch36:ch37:ch38:ch39:ch40:ch41:ch42:ch43:ch44:ch45:ch46:ch47:ch48:ch49:ch50:ch51:ch52:ch53:ch54:ch55:ch56:ch57:ch58:ch59:ch60:ch61:ch62:ch63:ch64:ch65:ch66:ch67:ch68:ch69:ch70:ch71:ch72:ch73:ch74:ch75:ch76:ch77:ch78:ch79:ch80:ch81:ch82:ch83:ch84:ch85:ch86:ch87:ch88:ch89:ch90:ch91:ch92:ch93:ch94:ch95:ch96:ch97:ch98:ch99:ch100:ch101:ch102:ch103:ch104:ch105:ch106:ch107:ch108:ch109:ch110:ch111:ch112:ch113:ch114:ch115:ch116:ch117:ch118:ch119:ch120:ch121:ch122:ch123:ch124:ch125:ch126:ch127:ch128:ch129:ch130:ch131:ch132:ch133:ch134:ch135:ch136:ch137:ch138:ch139:ch140:ch141:ch142:ch143:ch144:ch145:ch146:ch147:ch148:ch149:ch150:ch151:ch152:ch153:ch154:ch155:ch156:ch157:ch158:ch159:ch160:ch161:ch162:ch163:ch164:ch165:ch166:ch167:ch168:ch169:ch170:ch171:ch172:ch173:ch174:ch175:ch176:ch177:ch178:ch179:ch180:ch181:ch182:ch183:ch184:ch185:ch186:ch187:ch188:ch189:ch190:ch191", '\t'); + //128 + //tree->ReadFile(TString(TString(dirname) + file->GetName()), "time/D:event_id:sync_out:sync_in:data_ok:led_voltage:current:ch00:ch01:ch02:ch03:ch04:ch05:ch06:ch07:ch08:ch09:ch10:ch11:ch12:ch13:ch14:ch15:ch16:ch17:ch18:ch19:ch20:ch21:ch22:ch23:ch24:ch25:ch26:ch27:ch28:ch29:ch30:ch31:ch32:ch33:ch34:ch35:ch36:ch37:ch38:ch39:ch40:ch41:ch42:ch43:ch44:ch45:ch46:ch47:ch48:ch49:ch50:ch51:ch52:ch53:ch54:ch55:ch56:ch57:ch58:ch59:ch60:ch61:ch62:ch63:ch64:ch65:ch66:ch67:ch68:ch69:ch70:ch71:ch72:ch73:ch74:ch75:ch76:ch77:ch78:ch79:ch80:ch81:ch82:ch83:ch84:ch85:ch86:ch87:ch88:ch89:ch90:ch91:ch92:ch93:ch94:ch95:ch96:ch97:ch98:ch99:ch100:ch101:ch102:ch103:ch104:ch105:ch106:ch107:ch108:ch109:ch110:ch111:ch112:ch113:ch114:ch115:ch116:ch117:ch118:ch119:ch120:ch121:ch122:ch123:ch124:ch125:ch126:ch127", '\t'); + //64 + //tree->ReadFile(TString(TString(dirname) + file->GetName()), "time/D:event_id:sync_out:sync_in:data_ok:led_voltage:current:ch00:ch01:ch02:ch03:ch04:ch05:ch06:ch07:ch08:ch09:ch10:ch11:ch12:ch13:ch14:ch15:ch16:ch17:ch18:ch19:ch20:ch21:ch22:ch23:ch24:ch25:ch26:ch27:ch28:ch29:ch30:ch31:ch32:ch33:ch34:ch35:ch36:ch37:ch38:ch39:ch40:ch41:ch42:ch43:ch44:ch45:ch46:ch47:ch48:ch49:ch50:ch51:ch52:ch53:ch54:ch55:ch56:ch57:ch58:ch59:ch60:ch61:ch62:ch63", '\t'); + TFile *outfile = new TFile(outname.Data(), "recreate"); + outfile->cd(); + tree->Write(); + outfile->Close(); + //delete tree; + } + } + } + return 0; +} diff --git a/Scripts_20170508/lhcbStyle.C b/Scripts_20170508/lhcbStyle.C new file mode 100644 index 0000000..32dd863 --- /dev/null +++ b/Scripts_20170508/lhcbStyle.C @@ -0,0 +1,196 @@ +// all users - please change the name of this file to lhcbStyle.C +// Commits to lhcbdocs svn of .C files are not allowed +{ + + // define names for colours + Int_t black = 1; + Int_t red = 2; + Int_t green = 3; + Int_t blue = 4; + Int_t yellow = 5; + Int_t magenta= 6; + Int_t cyan = 7; + Int_t purple = 9; + + +//////////////////////////////////////////////////////////////////// +// PURPOSE: +// +// This macro defines a standard style for (black-and-white) +// "publication quality" LHCb ROOT plots. +// +// USAGE: +// +// Include the lines +// gROOT->ProcessLine(".L lhcbstyle.C"); +// lhcbStyle(); +// at the beginning of your root macro. +// +// Example usage is given in myPlot.C +// +// COMMENTS: +// +// Font: +// +// The font is chosen to be 132, this is Times New Roman (like the text of +// your document) with precision 2. +// +// "Landscape histograms": +// +// The style here is designed for more or less square plots. +// For longer histograms, or canvas with many pads, adjustements are needed. +// For instance, for a canvas with 1x5 histograms: +// TCanvas* c1 = new TCanvas("c1", "L0 muons", 600, 800); +// c1->Divide(1,5); +// Adaptions like the following will be needed: +// gStyle->SetTickLength(0.05,"x"); +// gStyle->SetTickLength(0.01,"y"); +// gStyle->SetLabelSize(0.15,"x"); +// gStyle->SetLabelSize(0.1,"y"); +// gStyle->SetStatW(0.15); +// gStyle->SetStatH(0.5); +// +// Authors: Thomas Schietinger, Andrew Powell, Chris Parkes, Niels Tuning +// Maintained by Editorial board member (currently Niels) +/////////////////////////////////////////////////////////////////// + + // Use times new roman, precision 2 + Int_t lhcbFont = 132; // Old LHCb style: 62; + // Line thickness + Double_t lhcbWidth = 1.00; // Old LHCb style: 3.00; + // Text size + Double_t lhcbTSize = 0.04; // 0.04 + + // use plain black on white colors + gROOT->SetStyle("Plain"); + TStyle *lhcbStyle= new TStyle("lhcbStyle","LHCb plots style"); + + //lhcbStyle->SetErrorX(0); // don't suppress the error bar along X + + lhcbStyle->SetFillColor(1); + lhcbStyle->SetFillStyle(1001); // solid + lhcbStyle->SetFrameFillColor(0); + lhcbStyle->SetFrameBorderMode(0); + lhcbStyle->SetPadBorderMode(0); + lhcbStyle->SetPadColor(0); + lhcbStyle->SetCanvasBorderMode(0); + lhcbStyle->SetCanvasColor(0); + lhcbStyle->SetStatColor(0); + lhcbStyle->SetLegendBorderSize(0); + lhcbStyle->SetLegendFont(132); + + // If you want the usual gradient palette (blue -> red) + lhcbStyle->SetPalette(1); + // If you want colors that correspond to gray scale in black and white: + int colors[8] = {0,5,7,3,6,2,4,1}; + lhcbStyle->SetPalette(8,colors); + + // set the paper & margin sizes + lhcbStyle->SetPaperSize(20,26); + lhcbStyle->SetPadTopMargin(0.05); + lhcbStyle->SetPadRightMargin(0.06); // increase for colz plots + lhcbStyle->SetPadBottomMargin(0.16); + lhcbStyle->SetPadLeftMargin(0.14); + + // use large fonts + lhcbStyle->SetTextFont(lhcbFont); + lhcbStyle->SetTextSize(lhcbTSize); + lhcbStyle->SetLabelFont(lhcbFont,"x"); + lhcbStyle->SetLabelFont(lhcbFont,"y"); + lhcbStyle->SetLabelFont(lhcbFont,"z"); + lhcbStyle->SetLabelSize(lhcbTSize,"x"); + lhcbStyle->SetLabelSize(lhcbTSize,"y"); + lhcbStyle->SetLabelSize(lhcbTSize,"z"); + lhcbStyle->SetTitleFont(lhcbFont); + lhcbStyle->SetTitleFont(lhcbFont,"x"); + lhcbStyle->SetTitleFont(lhcbFont,"y"); + lhcbStyle->SetTitleFont(lhcbFont,"z"); + lhcbStyle->SetTitleSize(1.0*lhcbTSize,"x"); + lhcbStyle->SetTitleSize(1.0*lhcbTSize,"y"); + lhcbStyle->SetTitleSize(1.0*lhcbTSize,"z"); + + // use medium bold lines and thick markers + lhcbStyle->SetLineWidth(lhcbWidth); + lhcbStyle->SetFrameLineWidth(lhcbWidth); + lhcbStyle->SetHistLineWidth(lhcbWidth); + lhcbStyle->SetFuncWidth(lhcbWidth); + lhcbStyle->SetGridWidth(lhcbWidth); + lhcbStyle->SetLineStyleString(2,"[12 12]"); // postscript dashes + lhcbStyle->SetMarkerStyle(20); + lhcbStyle->SetMarkerSize(1.0); + + // label offsets + lhcbStyle->SetLabelOffset(0.010,"X"); + lhcbStyle->SetLabelOffset(0.010,"Y"); + + // by default, do not display histogram decorations: + lhcbStyle->SetOptStat(0); + //lhcbStyle->SetOptStat("emr"); // show only nent -e , mean - m , rms -r + // full opts at http://root.cern.ch/root/html/TStyle.html#TStyle:SetOptStat + lhcbStyle->SetStatFormat("6.3g"); // specified as c printf options + lhcbStyle->SetOptTitle(0); + //lhcbStyle->SetOptFit(0); + lhcbStyle->SetOptFit(1100); // order is probability, Chi2, errors, parameters + //titles + lhcbStyle->SetTitleOffset(1.2,"X"); + lhcbStyle->SetTitleOffset(1.5,"Y"); + lhcbStyle->SetTitleOffset(1.2,"Z"); + lhcbStyle->SetTitleFillColor(0); + lhcbStyle->SetTitleStyle(0); + lhcbStyle->SetTitleBorderSize(0); + lhcbStyle->SetTitleFont(lhcbFont,"title"); + lhcbStyle->SetTitleX(0.0); + lhcbStyle->SetTitleY(1.0); + lhcbStyle->SetTitleW(1.0); + lhcbStyle->SetTitleH(0.05); + + // look of the statistics box: + lhcbStyle->SetStatBorderSize(0); + lhcbStyle->SetStatFont(lhcbFont); + lhcbStyle->SetStatFontSize(0.05); + lhcbStyle->SetStatX(0.9); + lhcbStyle->SetStatY(0.9); + lhcbStyle->SetStatW(0.15); + lhcbStyle->SetStatH(0.1); + + // put tick marks on top and RHS of plots + lhcbStyle->SetPadTickX(1); + lhcbStyle->SetPadTickY(1); + + // histogram divisions: only 5 in x to avoid label overlaps + lhcbStyle->SetNdivisions(505,"x"); + lhcbStyle->SetNdivisions(510,"y"); + + gROOT->SetStyle("lhcbStyle"); + gROOT->ForceStyle(); + + // add LHCb label + /* TPaveText* lhcbName = new TPaveText(gStyle->GetPadLeftMargin() + 0.05, + 0.87 - gStyle->GetPadTopMargin(), + gStyle->GetPadLeftMargin() + 0.20, + 0.95 - gStyle->GetPadTopMargin(), + "BRNDC"); + lhcbName->AddText("LHCb"); + lhcbName->SetFillColor(0); + lhcbName->SetTextAlign(12); + lhcbName->SetBorderSize(0); + + TText *lhcbLabel = new TText(); + lhcbLabel->SetTextFont(lhcbFont); + lhcbLabel->SetTextColor(1); + lhcbLabel->SetTextSize(lhcbTSize); + lhcbLabel->SetTextAlign(12); + + TLatex *lhcbLatex = new TLatex(); + lhcbLatex->SetTextFont(lhcbFont); + lhcbLatex->SetTextColor(1); + lhcbLatex->SetTextSize(lhcbTSize); + lhcbLatex->SetTextAlign(12);*/ + + cout << "-------------------------" << endl; + cout << "Set LHCb Style - Feb 2012" << endl; + cout << "-------------------------" << endl; + +} + + diff --git a/Scripts_20171217/GaussSmoothen.h b/Scripts_20171217/GaussSmoothen.h new file mode 100644 index 0000000..ed5a2df --- /dev/null +++ b/Scripts_20171217/GaussSmoothen.h @@ -0,0 +1,72 @@ +#pragma once + +#include +#include +#include + +inline double gauss(double sigma, double x) { + double expVal = -1 * (pow(x, 2) / pow(2 * sigma, 2)); + double divider = sqrt(2 * M_PI * pow(sigma, 2)); + return (1 / divider) * exp(expVal); +} + +inline std::vector gaussKernel(int samples, double sigma) { + std::vector v; + + bool doubleCenter = false; + if (samples % 2 == 0) { + doubleCenter = true; + samples--; + } + int steps = (samples - 1) / 2; + double stepSize = (3 * sigma) / steps; + + for (int i = steps; i >= 1; i--) { + v.push_back(gauss(sigma, i * stepSize * -1)); + } + std::cout << std::endl; + + v.push_back(gauss(sigma, 0)); + if (doubleCenter) { + v.push_back(gauss(sigma, 0)); + } + + for (int i = 1; i <= steps; i++) { + v.push_back(gauss(sigma, i * stepSize)); + } + + std::cout << "The kernel contains " << v.size() << " entries:"; + for (auto it = v.begin(); it != v.end(); ++it) { + std::cout << ' ' << *it; + } + std::cout << std::endl; + assert(v.size() == samples); + + return v; +} + +inline std::vector gaussSmoothen(std::vector values, double sigma, int samples) { + std::vector out; + auto kernel = gaussKernel(samples, sigma); + int sampleSide = samples / 2; + int valueIdx = samples / 2 + 1; + unsigned long ubound = values.size(); + for (unsigned long i = 0; i < ubound; i++) { + double sample = 0; + int sampleCtr = 0; + std::cout << "Now at value" << i << ": "; + for (long j = i - sampleSide; j <= i + sampleSide; j++) { + std::cout << j << " "; + if (j > 0 && j < ubound) { + int sampleWeightIndex = sampleSide + (j - i); + std::cout << "(" << sampleWeightIndex << " [" << kernel[sampleWeightIndex] << "]) "; + sample += kernel[sampleWeightIndex] * values[j]; + sampleCtr++; + } + } + double smoothed = sample / (double)sampleCtr; + std::cout << " S: " << sample << " C: " << sampleCtr << " V: " << values[i] << " SM: " << smoothed << std::endl; + out.push_back(smoothed); + } + return out; +} diff --git a/Scripts_20171217/Makefile b/Scripts_20171217/Makefile new file mode 100644 index 0000000..596ca31 --- /dev/null +++ b/Scripts_20171217/Makefile @@ -0,0 +1,83 @@ + +ROOTCFLAGS := $(shell root-config --cflags) +ROOTLIBS := $(shell root-config --libs) +ROOTGLIBS := $(shell root-config --glibs) + +GSLCFLAGS := $(shell gsl-config --cflags) +GSLLIBS := $(shell gsl-config --libs) +GSLGLIBS := $(shell gsl-config --glibs) + + +LDFLAGS = -O +LIBS += $(ROOTLIBS) $(GSLLIBS) +CFLAGS += $(ROOTCFLAGS) $(GSLCFLAGS) #-std=gnu++11 + +# Not sure why Minuit isn't being included -- put in by hand +# +LIBS += -lMinuit + + +all: convert + + +plot: plot.o + g++ -o plot plot.o $(LDFLAGS) $(LIBS) + +%.o: %.c + g++ ${CFLAGS} -c -g $< + +plotdata_intensity_proton: plotdata_intensity_proton.o + g++ -o plotdata_intensity_proton plotdata_intensity_proton.o $(LDFLAGS) $(LIBS) + +%.o: %.c + g++ ${CFLAGS} -c -g $< + +plotdata_intensity_carbon: plotdata_intensity_carbon.o + g++ -o plotdata_intensity_carbon plotdata_intensity_carbon.o $(LDFLAGS) $(LIBS) + +%.o: %.c + g++ ${CFLAGS} -c -g $< + + +analyse: analyse.o + g++ -o analyse analyse.o $(LDFLAGS) $(LIBS) + +%.o: %.c + g++ ${CFLAGS} -c -g $< + + +convert: convert.o + g++ -o convert convert.o $(LDFLAGS) $(LIBS) + +%.o: %.c + g++ ${CFLAGS} -c -g $< + + +convert_batch: convert_batch.o + g++ -o convert_batch convert_batch.o $(LDFLAGS) $(LIBS) + +%.o: %.c + g++ ${CFLAGS} -c -g $< + + +analyse_batch: analyse_batch.o + g++ -o analyse_batch analyse_batch.o $(LDFLAGS) $(LIBS) + +%.o: %.c + g++ ${CFLAGS} -c -g $< + +analyse2: analyse2.o + g++ -o analyse2 analyse2.o $(LDFLAGS) $(LIBS) + +%.o: %.c + g++ ${CFLAGS} -c -g $< + + +test: + @echo $(ROOTCFLAGS) + @echo $(LDFLAGS) + @echo $(LIBS) + +clean: + -rm -f *.o + diff --git a/Scripts_20171217/b0_7x7.pdf b/Scripts_20171217/b0_7x7.pdf new file mode 100644 index 0000000..20f4cda Binary files /dev/null and b/Scripts_20171217/b0_7x7.pdf differ diff --git a/Scripts_20171217/b1_7x7.pdf b/Scripts_20171217/b1_7x7.pdf new file mode 100644 index 0000000..35ef06b Binary files /dev/null and b/Scripts_20171217/b1_7x7.pdf differ diff --git a/Scripts_20171217/b2_7x7.pdf b/Scripts_20171217/b2_7x7.pdf new file mode 100644 index 0000000..16e90f1 Binary files /dev/null and b/Scripts_20171217/b2_7x7.pdf differ diff --git a/Scripts_20171217/b3_7x7.pdf b/Scripts_20171217/b3_7x7.pdf new file mode 100644 index 0000000..2c72276 Binary files /dev/null and b/Scripts_20171217/b3_7x7.pdf differ diff --git a/Scripts_20171217/convert b/Scripts_20171217/convert new file mode 100755 index 0000000..2c97b1c Binary files /dev/null and b/Scripts_20171217/convert differ diff --git a/Scripts_20171217/convert.c b/Scripts_20171217/convert.c new file mode 100644 index 0000000..72b0d4b --- /dev/null +++ b/Scripts_20171217/convert.c @@ -0,0 +1,914 @@ +/// to do: +/// 1. correct for gap between arrays + +#define convert_cxx +#include "hitutils.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "GaussSmoothen.h" +#include + +using namespace std; + +bool smooth_on = true; + +int eventID = 0; +double board_b0_ch[128]; +double board_b1_ch[128]; +double board_b2_ch[128]; +double board_b3_ch[128]; +double board_b0_ch_bkg[128]; +double board_b1_ch_bkg[128]; +double board_b2_ch_bkg[128]; +double board_b3_ch_bkg[128]; +double signal_b0 = 0.; +double signal_b1 = 0.; +double signal_b2 = 0.; +double signal_b3 = 0.; + +double signal_b0_left = 0.; +double signal_b1_left = 0.; +double signal_b2_left = 0.; +double signal_b3_left = 0.; + +double signal_b0_right = 0.; +double signal_b1_right = 0.; +double signal_b2_right = 0.; +double signal_b3_right = 0.; + +double signal_gsl_b0[128]; +double signal_gsl_b1[128]; +double signal_gsl_b2[128]; +double signal_gsl_b3[128]; + + +double channellist_gsl_b0[128]; +double channellist_gsl_b1[128]; +double channellist_gsl_b2[128]; +double channellist_gsl_b3[128]; +double channellist[128]; +double pos[128]; + +double maxchannelamp_b0 =0.; +double maxchannelamp_b1 =0.; +double maxchannelamp_b2 =0.; +double maxchannelamp_b3 =0.; +int maxchannel_b0 =0; +int maxchannel_b1 =0; +int maxchannel_b2 =0; +int maxchannel_b3 =0; +int numtocalc_b0 =0; +int numtocalc_b1 =0; +int numtocalc_b2 =0; +int numtocalc_b3 =0; +int nfwhm_b0 = 0; +int nfwhm_b1 = 0; +int nfwhm_b2 = 0; +int nfwhm_b3 = 0; + +double beamPosX_b0,beamPosX_b1,beamPosX_b2,beamPosX_b3; +double beamFocusX_b0,beamFocusX_b1,beamFocusX_b2,beamFocusX_b3; +double beamSkewX_b0,beamSkewX_b1,beamSkewX_b2,beamSkewX_b3; +double beamKurtX_b0,beamKurtX_b1,beamKurtX_b2,beamKurtX_b3; +double beamNumX_b0,beamNumX_b1,beamNumX_b2,beamNumX_b3; + +double beamSidebandNoise_b0, beamSidebandNoise_b1, beamSidebandNoise_b2, beamSidebandNoise_b3 ; +int sidenumtocalc_b0,sidenumtocalc_b1,sidenumtocalc_b2,sidenumtocalc_b3; +size_t size = 5; +vector boxcar; +vector boxcarsort; +vector boxcarweight{1,3,5,3,1}; +vector data(128); +TVector sumvector_b0(128); +TVector sumvector_b1(128); +TVector sumvector_b2(128); +TVector sumvector_b3(128); + +TVector * sumvector_b0_ptr = &sumvector_b0; +TVector * sumvector_b1_ptr = &sumvector_b1; +TVector * sumvector_b2_ptr = &sumvector_b2; +TVector * sumvector_b3_ptr = &sumvector_b3; + +const int length = 100; //length of the rolling average +double array_b0[length][128] = {{0.}}; +double array_b1[length][128] = {{0.}}; +double array_b2[length][128] = {{0.}}; +double array_b3[length][128] = {{0.}}; + +double arrayavg_b0[128] = {0.}; +double arrayavg_b1[128] = {0.}; +double arrayavg_b2[128] = {0.}; +double arrayavg_b3[128] = {0.}; + + + +double board_b0_smooth_ch[128]; +double board_b1_smooth_ch[128]; +double board_b2_smooth_ch[128]; +double board_b3_smooth_ch[128]; + +bool graphsaved_b0 = false; +bool graphsaved_b1 = false; +bool graphsaved_b2 = false; +bool graphsaved_b3 = false; + +TVector beamontime(0,3,0.,0.,0.,0.,"END"); +TVector * beamontime_ptr = &beamontime; + +double calibration_b0[128] = {0.680457, 0.70036, 0.729569, 0.768141, 0.776347, 0.785101, 0.799768, 0.819888, 0.817106, 0.830481, 0.872981, 0.866716, 0.898705, 0.8508, 0.851149, 0.913431, 0.908141, 0.920829, 0.954078, 1.0219, 1.05272, 1.01594, 1.09155, 1.07093, 1.06138, 1.04821, 1.04332, 1.07227, 1.09676, 1.13826, 1.16939, 1.16456, 1.11643, 1.16456, 1.08821, 1.11285, 1.0864, 1.05949, 1.10727, 1.13911, 1.13338, 1.1812, 1.14498, 1.15755, 1.20076, 1.1486, 1.15815, 1.13221, 1.18893, 1.20203, 1.21786, 1.28368, 1.08994, 1.09368, 1.12954, 1.11233, 1.11923, 1.13531, 1.13921, 1.12821, 1.10786, 1.14957, 1.29386, 1.3473, 1.01231, 0.992629, 0.983174, 0.987423, 0.990555, 0.987429, 1.01338, 1.02899, 1.03465, 1.0364, 1.03649, 1.04556, 1.0285, 1.0183, 1.0018, 1.00728, 1.01542, 1.00067, 0.995893, 0.998084, 0.969798, 0.982129, 0.957553, 0.975154, 0.971954, 0.975809, 0.945857, 0.947371, 0.930662, 0.946869, 0.950247, 0.939276, 0.925114, 0.944206, 0.934665, 0.921425, 0.938742, 0.931046, 0.924208, 0.927826, 0.906987, 0.89058, 0.884395, 0.871027, 0.878559, 0.862506, 0.8569, 0.829157, 0.820562, 0.833909, 0.815283, 0.806924, 0.823096, 0.811991, 0.808052, 0.79241, 0.812052, 0.817675, 0.814948, 0.829207, 0.839157, 0.846599, 0.829502, 0.787898}; + +double calibration_b1[128] = {0.688689, 0.775108, 0.887893, 0.993394, 0.898088, 0.878858, 1.20321, 0.945858, 0.898906, 0.872124, 0.878262, 0.860341, 0.860317, 0.895689, 0.906266, 0.879183, 0.871434, 0.868314, 1.07037, 0.9266, 0.90419, 0.918598, 0.911545, 0.940526, 0.947977, 0.967936, 0.936727, 0.932638, 0.960146, 0.93711, 0.936098, 0.943812, 0.9285, 0.921318, 0.9103, 0.921049, 0.914352, 0.91389, 0.92357, 0.927336, 0.929008, 0.924783, 0.93331, 0.967505, 0.958619, 1.06722, 1.14702, 1.14996, 1.09687, 0.987663, 1.01112, 1.02958, 1.00921, 1.08554, 1.09195, 1.01458, 1.02371, 1.01004, 1.00361, 1.0078, 1.0087, 1.00997, 1.03622, 1.04314, 0.894689, 0.842492, 0.912018, 0.926507, 0.936238, 0.939629, 0.959568, 0.982508, 1.31579, 0.966401, 0.977061, 0.971446, 0.989141, 1.03233, 1.05314, 1.06946, 1.04801, 1.09925, 1.54443, 1.37196, 1.39673, 1.31932, 1.11508, 1.00852, 1.01871, 1.153605, 1.06298, 0.997849, 1.00636, 1.03707, 1.03591, 1.02363, 1.01388, 1.06183, 1.10148, 1.21118, 1.26586, 1.07663, 1.07481, 1.07749, 1.0698, 1.04575, 1.06815, 1.06138, 1.06487, 1.04332, 1.01416, 1.0149, 0.989772, 0.989825, 0.985936, 0.985193, 0.959173, 0.943177, 0.993867, 0.936754, 0.934994, 0.948134, 0.922357, 0.911016, 0.805087, 0.737094, 1.03925, 0.921076}; + +double calibration_b2[128] = {0.792171, 0.859978, 0.879552, 0.89414, 0.898794, 0.921472, 0.867588, 0.880401, 0.902657, 0.89956, 0.913535, 0.903335, 0.904012, 0.87603, 0.892562, 0.920291, 0.93814, 0.912946, 0.917767, 0.936739, 0.953897, 0.953534, 0.982874, 0.974959, 0.987859, 1.01291, 1.06464, 1.02794, 1.04071, 1.00659, 1.00576, 0.982194, 0.972739, 1.00489, 1.01822, 1.00853, 1.0207, 1.03832, 1.04594, 1.02243, 1.03193, 1.03358, 1.03278, 1.04483, 1.04611, 1.09238, 1.06066, 1.06584, 1.06113, 1.06598, 1.07107, 1.07641, 1.0793, 1.07425, 1.06559, 1.06963, 1.07979, 1.0577, 1.06135, 1.08137, 1.09443, 1.06233, 1.07256, 1.05033, 1.03563, 1.04431, 1.04057, 1.05344, 1.05814, 1.03095, 1.04926, 1.05164, 1.03729, 1.02816, 1.04004, 1.02974, 1.04938, 1.04055, 1.0446, 1.01919, 1.03717, 0.987029, 1.00179, 1.01179, 0.997439, 0.991328, 0.997722, 0.987031, 0.992538, 0.983989, 0.984387, 0.992612, 1.01848, 0.995258, 1.003, 0.993957, 0.992327, 0.990547, 1.00074, 0.996346, 1.01041, 1.01222, 1.00646, 1.03651, 1.00847, 1.01119, 0.999438, 0.979914, 1.02522, 0.973713, 0.987926, 0.957933, 0.958882, 0.950941, 0.941317, 0.933169, 0.92743, 0.936562, 0.932922, 0.913018, 0.920427, 0.909679, 0.918784, 0.933422, 0.937952, 0.950281, 0.908778, 0.859974}; + +double calibration_b3[128] = {0.870684, 0.722589, 0.801319, 0.899014, 0.943942, 0.951251, 0.962286, 0.943771, 0.955227, 0.950627, 0.971831, 0.974907, 0.977956, 0.986517, 0.954527, 0.96526, 0.939636, 1.11263, 0.957583, 0.977304, 0.99436, 0.995887, 0.993831, 0.989441, 1.02161, 1.01742, 1.07226, 1.05602, 1.03457, 1.04393, 1.0073, 0.992433, 0.990369, 1.018, 0.983336, 1.00309, 0.996907, 0.987621, 1.00206, 0.984202, 0.990234, 0.978864, 0.982685, 0.988023, 1.00838, 0.991885, 1.01678, 0.984361, 1.01042, 0.979532, 1.00935, 0.995128, 1.00761, 1.00347, 0.999018, 0.992036, 0.994325, 0.999203, 0.991379, 0.966761, 0.923005, 0.98845, 0.944313, 0.917033, 0.966649, 0.934711, 0.934409, 0.97089, 1.00189, 1.01703, 1.01652, 1.02944, 1.03673, 1.01944, 1.04403, 1.02387, 1.04477, 1.0339, 1.03241, 1.02265, 0.987512, 1.0377, 1.01763, 1.01628, 1.02939, 1.00738, 1.02215, 1.01216, 1.00725, 1.01186, 1.02182, 1.0041, 1.01231, 1.03678, 1.02598, 1.10276, 1.03272, 1.04435, 1.03799, 1.03239, 1.05349, 1.06976, 1.0274, 1.04304, 1.03917, 1.04833, 1.04097, 1.04549, 1.06443, 1.02653, 1.03372, 1.01791, 1.02118, 1.01925, 1.01674, 1.02208, 0.990651, 1.0075, 1.00273, 1.00169, 0.999678, 1.00178, 0.981252, 0.996679, 0.960323, 0.841463, 0.724784, 0.873291}; + + +/// compile with: +//// $ make clean; make +/// run with: +//// $ ./convert +//// $ ./convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run2 + + + +int main(int argc, char **argv) +{ + //initialise some values; + for (int i = 0;i<128;i++){ + board_b0_ch_bkg[i] = 0.; + board_b1_ch_bkg[i] = 0.; + board_b2_ch_bkg[i] = 0.; + board_b3_ch_bkg[i] = 0.; + channellist_gsl_b0[i] = 0; + channellist_gsl_b1[i] = 0; + channellist_gsl_b2[i] = 0; + channellist_gsl_b3[i] = 0; + sumvector_b0[i] = 0; + sumvector_b1[i] = 0; + sumvector_b2[i] = 0; + sumvector_b3[i] = 0; + if (i<64) {pos[i] = double(i);} + else {pos[i] = double(i) + 0.2; } + } + if (argc > 1){ + //open the file names specified in the command line + string filename; + string rootfilename; + // argv[1]= "/work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/"; + // argv[2]= "Run11" + filename = Form("%s%s.dat",argv[1],argv[2]); + rootfilename = Form("%s/root/%s.root",argv[1],argv[2]); // Giulia needs to change the path %s/root/ of the written root file. + ifstream file(filename, ifstream::in | ifstream::binary); + + if (!file.is_open()){ + printf(".dat did not open.\n"); + return -1; //file could not be opened + } + + ///some variables to get the data + // int number_of_records_to_read = 4*10; + // BufferData* buffer = new BufferData[number_of_records_to_read]; + if(argc > 3) int block = atoi(argv[3]); + int board_b = -1; + long int fileframesize = getFileSize(filename.c_str()) / ( 4*sizeof(BufferData) ); + BufferData* dataptr = new BufferData(); + + if (fileframesize>0){ + + //open ROOT file for saving histos and TTree. + TFile *rootFile = new TFile(rootfilename.c_str(),"RECREATE"); + if ( rootFile->IsOpen() ) printf("ROOT file opened successfully\n"); + TH2D * th2_signal_vs_channel_b0 = new TH2D("th2_signal_vs_channel_b0","th2_signal_vs_channel_b0",128,0,128,2200,-1000,10000); + TH2D * th2_signal_vs_channel_b1 = new TH2D("th2_signal_vs_channel_b1","th2_signal_vs_channel_b1",128,0,128,2200,-1000,10000); + TH2D * th2_signal_vs_channel_b2 = new TH2D("th2_signal_vs_channel_b2","th2_signal_vs_channel_b2",128,0,128,2200,-1000,10000); + TH2D * th2_signal_vs_channel_b3 = new TH2D("th2_signal_vs_channel_b3","th2_signal_vs_channel_b3",128,0,128,2200,-1000,10000); + TH2D * th2_signal_vs_channel_sub_b0 = new TH2D("th2_signal_vs_channel_sub_b0","th2_signal_vs_channel_sub_b0",128,0,128,2200,-1000,10000); + TH2D * th2_signal_vs_channel_sub_b1 = new TH2D("th2_signal_vs_channel_sub_b1","th2_signal_vs_channel_sub_b1",128,0,128,2200,-1000,10000); + TH2D * th2_signal_vs_channel_sub_b2 = new TH2D("th2_signal_vs_channel_sub_b2","th2_signal_vs_channel_sub_b2",128,0,128,2200,-1000,10000); + TH2D * th2_signal_vs_channel_sub_b3 = new TH2D("th2_signal_vs_channel_sub_b3","th2_signal_vs_channel_sub_b3",128,0,128,2200,-1000,10000); + TH1D * th1_signal_b0 = new TH1D("th1_signal_b0","th1_signal_b0",2200,-10000,50000); + TH1D * th1_signal_b1 = new TH1D("th1_signal_b1","th1_signal_b1",2200,-10000,50000); + TH1D * th1_signal_b2 = new TH1D("th1_signal_b2","th1_signal_b2",2200,-10000,50000); + TH1D * th1_signal_b3 = new TH1D("th1_signal_b3","th1_signal_b3",2200,-10000,50000); + TGraph * graph_bkg_b0 = new TGraph(); + TGraph * graph_bkg_b1 = new TGraph(); + TGraph * graph_bkg_b2 = new TGraph(); + TGraph * graph_bkg_b3 = new TGraph(); + TGraph * gr_b0; + TGraph * gr_sm_b0; + TGraph * gr_b1; + TGraph * gr_sm_b1; + TGraph * gr_b2; + TGraph * gr_sm_b2; + TGraph * gr_b3; + TGraph * gr_sm_b3; + + TH2D * th2_signal_vs_channel_bkg_b0 = new TH2D("th2_signal_vs_channel_bkg_b0","th2_signal_vs_channel_bkg_b0",128,0,128,1000,-500,500); + TH2D * th2_signal_vs_channel_bkg_b1 = new TH2D("th2_signal_vs_channel_bkg_b1","th2_signal_vs_channel_bkg_b1",128,0,128,1000,-500,500); + TH2D * th2_signal_vs_channel_bkg_b2 = new TH2D("th2_signal_vs_channel_bkg_b2","th2_signal_vs_channel_bkg_b2",128,0,128,1000,-500,500); + TH2D * th2_signal_vs_channel_bkg_b3 = new TH2D("th2_signal_vs_channel_bkg_b3","th2_signal_vs_channel_bkg_b3",128,0,128,1000,-500,500); + + TTree *rootTree = new TTree("t","HIT Data Root Tree"); + rootTree->Branch("beamPosX_b0",&beamPosX_b0,"beamPosX_b0/D"); + rootTree->Branch("beamPosX_b1",&beamPosX_b1,"beamPosX_b1/D"); + rootTree->Branch("beamPosX_b2",&beamPosX_b2,"beamPosX_b2/D"); + rootTree->Branch("beamPosX_b3",&beamPosX_b3,"beamPosX_b3/D"); + rootTree->Branch("beamFocusX_b0",&beamFocusX_b0,"beamFocusX_b0/D"); + rootTree->Branch("beamFocusX_b1",&beamFocusX_b1,"beamFocusX_b1/D"); + rootTree->Branch("beamFocusX_b2",&beamFocusX_b2,"beamFocusX_b2/D"); + rootTree->Branch("beamFocusX_b3",&beamFocusX_b3,"beamFocusX_b3/D"); + rootTree->Branch("beamSkewX_b0",&beamSkewX_b0,"beamSkewX_b0/D"); + rootTree->Branch("beamSkewX_b1",&beamSkewX_b1,"beamSkewX_b1/D"); + rootTree->Branch("beamSkewX_b2",&beamSkewX_b2,"beamSkewX_b2/D"); + rootTree->Branch("beamSkewX_b3",&beamSkewX_b3,"beamSkewX_b3/D"); + rootTree->Branch("beamKurtX_b0",&beamKurtX_b0,"beamKurtX_b0/D"); + rootTree->Branch("beamKurtX_b1",&beamKurtX_b1,"beamKurtX_b1/D"); + rootTree->Branch("beamKurtX_b2",&beamKurtX_b2,"beamKurtX_b2/D"); + rootTree->Branch("beamKurtX_b3",&beamKurtX_b3,"beamKurtX_b3/D"); + rootTree->Branch("beamNumX_b0",&beamNumX_b0,"beamNumX_b0/D"); + rootTree->Branch("beamNumX_b1",&beamNumX_b1,"beamNumX_b1/D"); + rootTree->Branch("beamNumX_b2",&beamNumX_b2,"beamNumX_b2/D"); + rootTree->Branch("beamNumX_b3",&beamNumX_b3,"beamNumX_b3/D"); + rootTree->Branch("beamSignal_b0",&signal_b0,"beamSignal_b0/D"); + rootTree->Branch("beamSignal_b1",&signal_b1,"beamSignal_b1/D"); + rootTree->Branch("beamSignal_b2",&signal_b2,"beamSignal_b2/D"); + rootTree->Branch("beamSignal_b3",&signal_b3,"beamSignal_b3/D"); + + rootTree->Branch("beamSignal_b0_left",&signal_b0_left,"beamSignal_b0_left/D"); + rootTree->Branch("beamSignal_b1_left",&signal_b1_left,"beamSignal_b1_left/D"); + rootTree->Branch("beamSignal_b2_left",&signal_b2_left,"beamSignal_b2_left/D"); + rootTree->Branch("beamSignal_b3_left",&signal_b3_left,"beamSignal_b3_left/D"); + rootTree->Branch("beamSignal_b0_right",&signal_b0_right,"beamSignal_b0_right/D"); + rootTree->Branch("beamSignal_b1_right",&signal_b1_right,"beamSignal_b1_right/D"); + rootTree->Branch("beamSignal_b2_right",&signal_b2_right,"beamSignal_b2_right/D"); + rootTree->Branch("beamSignal_b3_right",&signal_b3_right,"beamSignal_b3_right/D"); + + rootTree->Branch("eventID",&eventID,"eventID/I"); + rootTree->Branch("board_b0_ch",&board_b0_ch,"board_b0_ch[128]/D"); + rootTree->Branch("board_b1_ch",&board_b1_ch,"board_b1_ch[128]/D"); + rootTree->Branch("board_b2_ch",&board_b2_ch,"board_b2_ch[128]/D"); + rootTree->Branch("board_b3_ch",&board_b3_ch,"board_b3_ch[128]/D"); + + rootTree->Branch("beamSidebandNoise_b0",&beamSidebandNoise_b0,"beamSidebandNoise_b0/D"); + rootTree->Branch("beamSidebandNoise_b1",&beamSidebandNoise_b1,"beamSidebandNoise_b1/D"); + rootTree->Branch("beamSidebandNoise_b2",&beamSidebandNoise_b2,"beamSidebandNoise_b2/D"); + rootTree->Branch("beamSidebandNoise_b3",&beamSidebandNoise_b3,"beamSidebandNoise_b3/D"); + rootTree->Branch("arrayavg_b0",&arrayavg_b0,"arrayavg_b0[128]/D"); + rootTree->Branch("arrayavg_b1",&arrayavg_b1,"arrayavg_b1[128]/D"); + rootTree->Branch("arrayavg_b2",&arrayavg_b2,"arrayavg_b2[128]/D"); + rootTree->Branch("arrayavg_b3",&arrayavg_b3,"arrayavg_b3[128]/D"); + + + + //loop through recorded data frames + for (int frame = 0; framesync_frame.device_nr==board_b){ + // cout << frame << " " << dataptr->sync_frame.device_nr << endl; + if (frame%1000==0) cout << "Frame: " << frame << endl; + for (int i = 0;i<128;i++){ + board_b0_ch[i] = dataptr->sensor_data[i]; + if (frame<1000){ + board_b0_ch_bkg[i] += board_b0_ch[i]/1000.; //find baseline from the average of first 1000 events + + } + else if (frame>=1000&& frame<2000){ + board_b0_ch[i] -= board_b0_ch_bkg[i]; //histogram the subtracted baseline in the next 1000 events + th2_signal_vs_channel_bkg_b0->Fill(i,board_b0_ch[i]); + if (i==1) graph_bkg_b0->SetPoint(graph_bkg_b0->GetN(), frame, board_b0_ch[i]); + } + else if (frame>=2000) { + board_b0_ch[i]-=board_b0_ch_bkg[i]; // the rest background subtracted + board_b0_ch[i]*=calibration_b0[i]; //calibration factor + th2_signal_vs_channel_b0->Fill(i,board_b0_ch[i]); + // signal_b0 +=board_b0_ch[i] ; + if (board_b0_ch[i]> maxchannelamp_b0) { + maxchannel_b0 = i; + maxchannelamp_b0 = board_b0_ch[i]; + } + //calculate a rolling average of the signal + arrayavg_b0[i] = 0; + for (int j = 1; j-1000){ + array_b0[length-1][i] = board_b0_ch[i]; + arrayavg_b0[i] += array_b0[length-1][i]/double(length); + } + //////////////////////////////////////////// + } + } + // th1_signal_b0->Fill(signal_b0); + } + else { + cout << "Error." << endl; + } + + //board_b 1 + board_b=1; + signal_b1=0.; + maxchannelamp_b1 = 0.; + + file.seekg(board_b*sizeof(BufferData)+4*frame*sizeof(BufferData)); + file.read ((char*)dataptr ,sizeof(BufferData)); + if (dataptr->sync_frame.device_nr==board_b){ + // cout << frame << " " << dataptr->sync_frame.device_nr << endl; + for (int i = 0;i<128;i++){ + board_b1_ch[i] = dataptr->sensor_data[i]; + if (frame<1000){ + board_b1_ch_bkg[i] += board_b1_ch[i]/1000.; //find baseline from the average of first 1000 events + } + else if (frame>=1000&& frame<2000){ + board_b1_ch[i] -= board_b1_ch_bkg[i]; //histogram the subtracted baseline in the next 1000 events + th2_signal_vs_channel_bkg_b1->Fill(i,board_b1_ch[i]); + if (i==1) graph_bkg_b1->SetPoint(graph_bkg_b1->GetN(), frame, board_b1_ch[i]); + + } + else if (frame>=2000) { + board_b1_ch[i]-=board_b1_ch_bkg[i]; // the rest are background subtracted + board_b1_ch[i]*=calibration_b1[i]; //calibration factor + + th2_signal_vs_channel_b1->Fill(i,board_b1_ch[i]); + // signal_b1 +=board_b1_ch[i] ; + if (board_b1_ch[i]> maxchannelamp_b1) { + maxchannel_b1 = i; + maxchannelamp_b1 = board_b1_ch[i]; + } + //calculate a rolling average of the signal + arrayavg_b1[i] = 0; + for (int j = 1; j-1000){ + array_b1[length-1][i] = board_b1_ch[i]; + arrayavg_b1[i] += array_b1[length-1][i]/double(length); + } + //////////////////////////////////////////// + } + } + // th1_signal_b1->Fill(signal_b1); + } + else { + cout << "Error." << endl; + } + //board_b 2 + board_b=2; + signal_b2=0.; + maxchannelamp_b2 = 0.; + file.seekg(board_b*sizeof(BufferData)+4*frame*sizeof(BufferData)); + file.read ((char*)dataptr ,sizeof(BufferData)); + if (dataptr->sync_frame.device_nr==board_b){ + // cout << frame << " " << dataptr->sync_frame.device_nr << endl; + for (int i = 0;i<128;i++){ + board_b2_ch[i] = dataptr->sensor_data[i]; + if (frame<1000){ + board_b2_ch_bkg[i] += board_b2_ch[i]/1000.; //find baseline from the average of first 1000 events + } + else if (frame>=1000&& frame<2000){ + board_b2_ch[i] -= board_b2_ch_bkg[i]; //histogram the subtracted baseline in the next 1000 events + th2_signal_vs_channel_bkg_b2->Fill(i,board_b2_ch[i]); + if (i==1) graph_bkg_b2->SetPoint(graph_bkg_b2->GetN(), frame, board_b2_ch[i]); + + } + else if (frame>=2000) { + board_b2_ch[i]-=board_b2_ch_bkg[i]; // the rest background subtracted + board_b2_ch[i]*=calibration_b2[i]; //calibration factor + + th2_signal_vs_channel_b2->Fill(i,board_b2_ch[i]); + // signal_b2 +=board_b2_ch[i] ; + if (board_b2_ch[i]> maxchannelamp_b2) { + maxchannel_b2 = i; + maxchannelamp_b2 = board_b2_ch[i]; + } + //calculate a rolling average of the signal + arrayavg_b2[i] = 0; + for (int j = 1; j-1000){ + array_b2[length-1][i] = board_b2_ch[i]; + arrayavg_b2[i] += array_b2[length-1][i]/double(length); + } + //////////////////////////////////////////// + } + } + // th1_signal_b2->Fill(signal_b2); + } + else { + cout << "Error." << endl; + } + + //board_b 3 + board_b=3; + signal_b3=0.; + maxchannelamp_b3 = 0.; + file.seekg(board_b*sizeof(BufferData)+4*frame*sizeof(BufferData)); + file.read ((char*)dataptr ,sizeof(BufferData)); + if (dataptr->sync_frame.device_nr==board_b){ + // cout << frame << " " << dataptr->sync_frame.device_nr << endl; + for (int i = 0;i<128;i++){ + board_b3_ch[i] = dataptr->sensor_data[i]; + if (frame<1000){ + board_b3_ch_bkg[i] += board_b3_ch[i]/1000.; //find baseline from the average of first 1000 events + } + else if (frame>=1000&& frame<2000){ + board_b3_ch[i] -= board_b3_ch_bkg[i]; //histogram the subtracted baseline in the next 1000 events + th2_signal_vs_channel_bkg_b3->Fill(i,board_b3_ch[i]); + if (i==1) graph_bkg_b3->SetPoint(graph_bkg_b3->GetN(), frame, board_b3_ch[i]); + + } + else if (frame>=2000) { + board_b3_ch[i]-=board_b3_ch_bkg[i]; // the rest of the events are background subtracted + board_b3_ch[i]*=calibration_b3[i]; //with a calibration factor + + th2_signal_vs_channel_b3->Fill(i,board_b3_ch[i]); + // signal_b3 +=board_b3_ch[i] ; + if (board_b3_ch[i]> maxchannelamp_b3) { + maxchannel_b3 = i; + maxchannelamp_b3 = board_b3_ch[i]; + } + //calculate a rolling average of the signal + arrayavg_b3[i] = 0; + for (int j = 1; j-1000){ + array_b3[length-1][i] = board_b3_ch[i]; + arrayavg_b3[i] += array_b3[length-1][i]/double(length); + } + //////////////////////////////////////////// + } + } + // th1_signal_b3->Fill(signal_b3); + } + else { + cout << "Error." << endl; + } + + + + + //////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////// + //start the signal analysis + //////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////// + + if (frame>=2000){ + + + + + //////////////////////////////////////////////////////////// + //boxcar smoothing filter + //////////////////////////////////////////////////////////// + if (smooth_on){ + maxchannelamp_b0 = 0.0; + maxchannelamp_b1 = 0.0; + maxchannelamp_b2 = 0.0; + maxchannelamp_b3 = 0.0; + } + boxcar.clear(); + boxcar.push_back(board_b0_ch[0]); + boxcar.push_back(board_b0_ch[1]); + // cout << frame << endl; + for (int i = 0;i<128;i++){ + channellist[i] = i; + if (i<126) { + boxcar.push_back(board_b0_ch[i+2]); + } + if ( (i<126&&boxcar.size()>5) || (i>=126&&boxcar.size()>3) ) boxcar.erase(boxcar.cbegin()); + board_b0_smooth_ch[i] = gsl_stats_mean(boxcar.data(), 1, 5 ); + if (smooth_on && board_b0_smooth_ch[i]> maxchannelamp_b0) { + maxchannel_b0 = i; + maxchannelamp_b0 = board_b0_smooth_ch[i]; + } + } + if (eventID>2001&&maxchannelamp_b0>400&&!graphsaved_b0) { + gr_b0 = new TGraph(128, channellist, board_b0_ch); + gr_b0->SetTitle("RawData_b0"); + gr_b0->SetName("RawData_b0"); + gr_b0->Write(); + gr_sm_b0 = new TGraph(128, channellist, board_b0_smooth_ch); + gr_sm_b0->SetTitle("SmoothedData_b0"); + gr_sm_b0->SetName("SmoothedData_b0"); + gr_sm_b0->Write(); + graphsaved_b0=true; + } + + boxcar.clear(); + boxcar.push_back(board_b1_ch[0]); + boxcar.push_back(board_b1_ch[1]); + // cout << frame << endl; + for (int i = 0;i<128;i++){ + channellist[i] = i; + if (i<126) { + boxcar.push_back(board_b1_ch[i+2]); + } + if ( (i<126&&boxcar.size()>5) || (i>=126&&boxcar.size()>3) ) boxcar.erase(boxcar.cbegin()); + board_b1_smooth_ch[i] = gsl_stats_mean(boxcar.data(), 1, 5 ); + if (smooth_on && board_b1_smooth_ch[i]> maxchannelamp_b1) { + maxchannel_b1 = i; + maxchannelamp_b1 = board_b1_smooth_ch[i]; + } + } + if (eventID>2001&&maxchannelamp_b1>400&&!graphsaved_b1) { + gr_b1 = new TGraph(128, channellist, board_b1_ch); + gr_b1->SetTitle("RawData_b1"); + gr_b1->SetName("RawData_b1"); + gr_b1->Write(); + gr_sm_b1 = new TGraph(128, channellist, board_b1_smooth_ch); + gr_sm_b1->SetTitle("SmoothedData_b1"); + gr_sm_b1->SetName("SmoothedData_b1"); + gr_sm_b1->Write(); + graphsaved_b1=true; + } + + boxcar.clear(); + boxcar.push_back(board_b2_ch[0]); + boxcar.push_back(board_b2_ch[1]); + // cout << frame << endl; + for (int i = 0;i<128;i++){ + channellist[i] = i; + if (i<126) { + boxcar.push_back(board_b2_ch[i+2]); + } + if ( (i<126&&boxcar.size()>5) || (i>=126&&boxcar.size()>3) ) boxcar.erase(boxcar.cbegin()); + board_b2_smooth_ch[i] = gsl_stats_mean(boxcar.data(), 1, 5 ); + if (smooth_on && board_b2_smooth_ch[i]> maxchannelamp_b2) { + maxchannel_b2 = i; + maxchannelamp_b2 = board_b2_smooth_ch[i]; + } + } + if (eventID>2001&&maxchannelamp_b2>400&&!graphsaved_b2) { + gr_b2 = new TGraph(128, channellist, board_b2_ch); + gr_b2->SetTitle("RawData_b2"); + gr_b2->SetName("RawData_b2"); + gr_b2->Write(); + gr_sm_b2 = new TGraph(128, channellist, board_b2_smooth_ch); + gr_sm_b2->SetTitle("SmoothedData_b2"); + gr_sm_b2->SetName("SmoothedData_b2"); + gr_sm_b2->Write(); + graphsaved_b2=true; + } + + + boxcar.clear(); + boxcar.push_back(board_b3_ch[0]); + boxcar.push_back(board_b3_ch[1]); + // cout << frame << endl; + for (int i = 0;i<128;i++){ + channellist[i] = i; + if (i<126) { + boxcar.push_back(board_b3_ch[i+2]); + } + if ( (i<126&&boxcar.size()>5) || (i>=126&&boxcar.size()>3) ) boxcar.erase(boxcar.cbegin()); + board_b3_smooth_ch[i] = gsl_stats_mean(boxcar.data(), 1, 5 ); + if (smooth_on && board_b3_smooth_ch[i]> maxchannelamp_b3) { + maxchannel_b3 = i; + maxchannelamp_b3 = board_b3_smooth_ch[i]; + } + } + if (eventID>2001&&maxchannelamp_b3>400&&!graphsaved_b3) { + gr_b3 = new TGraph(128, channellist, board_b3_ch); + gr_b3->SetTitle("RawData_b3"); + gr_b3->SetName("RawData_b3"); + gr_b3->Write(); + gr_sm_b3 = new TGraph(128, channellist, board_b3_smooth_ch); + gr_sm_b3->SetTitle("SmoothedData_b3"); + gr_sm_b3->SetName("SmoothedData_b3"); + gr_sm_b3->Write(); + graphsaved_b3=true; + } + + + + //////////////////////////////////////////////////////////// + //find the approx FWHM + //////////////////////////////////////////////////////////// + + nfwhm_b0 =0; + nfwhm_b1 =0; + nfwhm_b2 =0; + nfwhm_b3 =0; + if (smooth_on){ + for (int i = 0;i<128;i++){ + if (board_b0_smooth_ch[i] > maxchannelamp_b0/2.) nfwhm_b0++; + if (board_b1_smooth_ch[i] > maxchannelamp_b1/2.) nfwhm_b1++; + if (board_b2_smooth_ch[i] > maxchannelamp_b2/2.) nfwhm_b2++; + if (board_b3_smooth_ch[i] > maxchannelamp_b3/2.) nfwhm_b3++; + signal_gsl_b0[i] = 0.; + signal_gsl_b1[i] = 0.; + signal_gsl_b2[i] = 0.; + signal_gsl_b3[i] = 0.; + + } + + } + else { + for (int i = 0;i<128;i++){ + if (board_b0_ch[i] > maxchannelamp_b0/2.) nfwhm_b0++; + if (board_b1_ch[i] > maxchannelamp_b1/2.) nfwhm_b1++; + if (board_b2_ch[i] > maxchannelamp_b2/2.) nfwhm_b2++; + if (board_b3_ch[i] > maxchannelamp_b3/2.) nfwhm_b3++; + signal_gsl_b0[i] = 0.; + signal_gsl_b1[i] = 0.; + signal_gsl_b2[i] = 0.; + signal_gsl_b3[i] = 0.; + + } + } + + + //////////////////////////////////////////////////////////// + //integrate the sidebands first to check for baseline shift + //////////////////////////////////////////////////////////// + /* + beamSidebandNoise_b0 = 0.; + sidenumtocalc_b0 = 0; + for (int i =0; i=0 && i<=127){ + beamSidebandNoise_b0 += board_b0_ch[i]; //integrate the noise outside the peak + sidenumtocalc_b0++; + } + } + for (int i = maxchannel_b0+nfwhm_b0; i < 128; i++){ + if (i>=0 && i<=127){ + beamSidebandNoise_b0 += board_b0_ch[i]; //integrate the noise outside the peak + sidenumtocalc_b0++; + } + } + if (sidenumtocalc_b0>0) beamSidebandNoise_b0 = beamSidebandNoise_b0 /double(sidenumtocalc_b0); // channel baseline shift + + beamSidebandNoise_b1 = 0.; + sidenumtocalc_b1 = 0; + for (int i =0; i=0 && i<=127){ + beamSidebandNoise_b1 += board_b1_ch[i]; //integrate the noise outside the peak + sidenumtocalc_b1++; + } + } + for (int i = maxchannel_b1+nfwhm_b1; i < 128; i++){ + if (i>=0 && i<=127){ + beamSidebandNoise_b1 += board_b1_ch[i]; //integrate the noise outside the peak + sidenumtocalc_b1++; + } + } + if (sidenumtocalc_b1>0) beamSidebandNoise_b1 = beamSidebandNoise_b1 /double(sidenumtocalc_b1); // channel baseline shift + + beamSidebandNoise_b2 = 0.; + sidenumtocalc_b2 = 0; + for (int i =0; i=0 && i<=127){ + beamSidebandNoise_b2 += board_b2_ch[i]; //integrate the noise outside the peak + sidenumtocalc_b2++; + } + } + for (int i = maxchannel_b2+nfwhm_b2; i < 128; i++){ + if (i>=0 && i<=127){ + beamSidebandNoise_b2 += board_b2_ch[i]; //integrate the noise outside the peak + sidenumtocalc_b2++; + } + } + if (sidenumtocalc_b2>0) beamSidebandNoise_b2 = beamSidebandNoise_b2 /double(sidenumtocalc_b2); // channel baseline shift + + beamSidebandNoise_b3 = 0.; + sidenumtocalc_b3 = 0; + for (int i =0; i=0 && i<=127){ + beamSidebandNoise_b3 += board_b3_ch[i]; //integrate the noise outside the peak + sidenumtocalc_b3++; + } + } + for (int i = maxchannel_b3+nfwhm_b3; i < 128; i++){ + if (i>=0 && i<=127){ + beamSidebandNoise_b3 += board_b3_ch[i]; //integrate the noise outside the peak + sidenumtocalc_b3++; + } + } + if (sidenumtocalc_b3>0) beamSidebandNoise_b3 = beamSidebandNoise_b3 /double(sidenumtocalc_b3); // channel baseline shift + + + */ + + + //////////////////////////////////////////////////////////// + //integrate under the approximate peak + //build the channel list for statistical analysis + //////////////////////////////////////////////////////////// + + numtocalc_b0 = 0; + numtocalc_b1 = 0; + numtocalc_b2 = 0; + numtocalc_b3 = 0; + signal_b0_left = 0.; + signal_b0_right = 0.; + for (int i = maxchannel_b0-nfwhm_b0 ; i <= maxchannel_b0 + nfwhm_b0; i++){ + if (i>=0 && i<=127 && board_b0_ch[i]>50){ + signal_b0 +=board_b0_ch[i]-beamSidebandNoise_b0 ; + if (i<64) {signal_b0_left +=board_b0_ch[i]-beamSidebandNoise_b0 ;} + else {signal_b0_right +=board_b0_ch[i]-beamSidebandNoise_b0 ;} + signal_gsl_b0[numtocalc_b0]=board_b0_ch[i]-beamSidebandNoise_b0 ; + // channellist_gsl_b0[numtocalc_b0] = i; + channellist_gsl_b0[numtocalc_b0] = pos[i]; + numtocalc_b0++; + } + } + th1_signal_b0->Fill(signal_b0); + + signal_b1_left = 0.; + signal_b1_right = 0.; + for (int i = maxchannel_b1-nfwhm_b1 ; i <= maxchannel_b1 + nfwhm_b1; i++){ + if (i>=0 && i<=127&&board_b1_ch[i]>50){ + signal_b1 +=board_b1_ch[i]-beamSidebandNoise_b1 ; + if (i<64) {signal_b1_left +=board_b1_ch[i]-beamSidebandNoise_b1 ;} + else {signal_b1_right +=board_b1_ch[i]-beamSidebandNoise_b1 ;} + signal_gsl_b1[numtocalc_b1]=board_b1_ch[i]-beamSidebandNoise_b1 ; + // channellist_gsl_b1[numtocalc_b1] = i; + channellist_gsl_b1[numtocalc_b1] = pos[i]; + numtocalc_b1++; + } + } + th1_signal_b0->Fill(signal_b1); + + signal_b2_left = 0.; + signal_b2_right = 0.; + for (int i = maxchannel_b2-nfwhm_b2 ; i <= maxchannel_b2 + nfwhm_b2; i++){ + if (i>=0 && i<=127&&board_b2_ch[i]>50){ + signal_b2 +=board_b2_ch[i]-beamSidebandNoise_b2 ; + if (i<64) {signal_b2_left +=board_b2_ch[i]-beamSidebandNoise_b2 ;} + else {signal_b2_right +=board_b2_ch[i]-beamSidebandNoise_b2 ;} + signal_gsl_b2[numtocalc_b2]=board_b2_ch[i]-beamSidebandNoise_b2 ; + // channellist_gsl_b2[numtocalc_b2] = i; + channellist_gsl_b2[numtocalc_b2] = pos[i]; + numtocalc_b2++; + } + } + th1_signal_b0->Fill(signal_b2); + + signal_b3_left = 0.; + signal_b3_right = 0.; + for (int i = maxchannel_b3-nfwhm_b3 ; i <= maxchannel_b3 + nfwhm_b3; i++){ + if (i>=0 && i<=127&&board_b3_ch[i]>50){ + signal_b3 +=board_b3_ch[i]-beamSidebandNoise_b3 ; + if (i<64) {signal_b3_left +=board_b3_ch[i]-beamSidebandNoise_b3 ;} + else {signal_b3_right +=board_b3_ch[i]-beamSidebandNoise_b3 ;} + signal_gsl_b3[numtocalc_b3]=board_b3_ch[i]-beamSidebandNoise_b3 ; + //channellist_gsl_b3[numtocalc_b3] = i; + channellist_gsl_b3[numtocalc_b3] = pos[i]; + numtocalc_b3++; + } + } + th1_signal_b0->Fill(signal_b3); + + + for (int i=0;i<128;i++){ + if(signal_b0>7000) { + th2_signal_vs_channel_sub_b0->Fill(i,board_b0_ch[i]-beamSidebandNoise_b0); + sumvector_b0[i] += board_b0_ch[i];//-beamSidebandNoise_b0; + + } + if(signal_b1>7000) { + th2_signal_vs_channel_sub_b1->Fill(i,board_b1_ch[i]-beamSidebandNoise_b1); + sumvector_b1[i] += board_b1_ch[i];//-beamSidebandNoise_b1; + } + if(signal_b2>7000){ + th2_signal_vs_channel_sub_b2->Fill(i,board_b2_ch[i]-beamSidebandNoise_b2); + sumvector_b2[i] += board_b2_ch[i];//-beamSidebandNoise_b2; + } + if(signal_b3>7000) { + th2_signal_vs_channel_sub_b3->Fill(i,board_b3_ch[i]-beamSidebandNoise_b3); + sumvector_b3[i] += board_b3_ch[i];//-beamSidebandNoise_b3; + } + } + if(signal_b0>7000) beamontime[0]+=1.0; + if(signal_b1>7000) beamontime[1]+=1.0; + if(signal_b2>7000) beamontime[2]+=1.0; + if(signal_b3>7000) beamontime[3]+=1.0; + + + + ///add gsl stuff here. + /* cout << maxchannel_b0 << " " << maxchannel_b1 << " "<< maxchannel_b2 << " "<< maxchannel_b3 << " " << endl; + cout << maxchannelamp_b0 << " " << maxchannelamp_b1 << " "<< maxchannelamp_b2 << " "<< maxchannelamp_b3 << " " << endl; + cout << nfwhm_b0 << " " << nfwhm_b1 << " " << nfwhm_b2 << " " << nfwhm_b3 << " " << endl; + cout << endl;*/ + + beamPosX_b0 = gsl_stats_wmean(signal_gsl_b0,1,channellist_gsl_b0,1,numtocalc_b0); //calculate the weighted mean + beamFocusX_b0 = gsl_stats_wsd_with_fixed_mean(signal_gsl_b0,1,channellist_gsl_b0,1,numtocalc_b0,beamPosX_b0); //Standard Deviation + beamSkewX_b0 = gsl_stats_wskew_m_sd(signal_gsl_b0,1,channellist_gsl_b0,1,numtocalc_b0,beamPosX_b0,beamFocusX_b0); //skewness (symmetry) + beamKurtX_b0 = gsl_stats_wkurtosis_m_sd(signal_gsl_b0,1,channellist_gsl_b0,1,numtocalc_b0,beamPosX_b0,beamFocusX_b0); //excess kurtosis (well behaved tails) + beamNumX_b0 = numtocalc_b0; + beamFocusX_b0 *=2.3548;//SD-->FWHM + + beamPosX_b1 = gsl_stats_wmean(signal_gsl_b1,1,channellist_gsl_b1,1,numtocalc_b1); //calculate the weighted mean + beamFocusX_b1 = gsl_stats_wsd_with_fixed_mean(signal_gsl_b1,1,channellist_gsl_b1,1,numtocalc_b1,beamPosX_b1); //Standard Deviation + beamSkewX_b1 = gsl_stats_wskew_m_sd(signal_gsl_b1,1,channellist_gsl_b1,1,numtocalc_b1,beamPosX_b1,beamFocusX_b1); //skewness (symmetry) + beamKurtX_b1 = gsl_stats_wkurtosis_m_sd(signal_gsl_b1,1,channellist_gsl_b1,1,numtocalc_b1,beamPosX_b1,beamFocusX_b1); //excess kurtosis (well behaved tails) + beamNumX_b1 = numtocalc_b1; + beamFocusX_b1 *=2.3548;//SD-->FWHM + + beamPosX_b2 = gsl_stats_wmean(signal_gsl_b2,1,channellist_gsl_b2,1,numtocalc_b2); //calculate the weighted mean + beamFocusX_b2 = gsl_stats_wsd_with_fixed_mean(signal_gsl_b2,1,channellist_gsl_b2,1,numtocalc_b2,beamPosX_b2); //Standard Deviation + beamSkewX_b2 = gsl_stats_wskew_m_sd(signal_gsl_b2,1,channellist_gsl_b2,1,numtocalc_b2,beamPosX_b2,beamFocusX_b2); //skewness (symmetry) + beamKurtX_b2 = gsl_stats_wkurtosis_m_sd(signal_gsl_b2,1,channellist_gsl_b2,1,numtocalc_b2,beamPosX_b2,beamFocusX_b2); //excess kurtosis (well behaved tails) + beamNumX_b2 = numtocalc_b2; + beamFocusX_b2 *=2.3548;//SD-->FWHM + + beamPosX_b3 = gsl_stats_wmean(signal_gsl_b3,1,channellist_gsl_b3,1,numtocalc_b3); //calculate the weighted mean + beamFocusX_b3 = gsl_stats_wsd_with_fixed_mean(signal_gsl_b3,1,channellist_gsl_b3,1,numtocalc_b3,beamPosX_b3); //Standard Deviation + beamSkewX_b3 = gsl_stats_wskew_m_sd(signal_gsl_b3,1,channellist_gsl_b3,1,numtocalc_b3,beamPosX_b3,beamFocusX_b3); //skewness (symmetry) + beamKurtX_b3 = gsl_stats_wkurtosis_m_sd(signal_gsl_b3,1,channellist_gsl_b3,1,numtocalc_b3,beamPosX_b3,beamFocusX_b3); //excess kurtosis (well behaved tails) + beamNumX_b3 = numtocalc_b3; + beamFocusX_b3 *=2.3548;//SD-->FWHM + + + ///////////////////////////////////////////////// + /////Add fitting algorithm here + ///////////////////////////////////////////////// + /* + + use board_b0_ch[i] to fill a TGraph. + fit with a gaussian + subtract the difference + fill a THF2 with the difference, delta_amp vs channel + */ + + + + rootTree->Fill(); + + } + }//end of loop over frames + /* th2_signal_vs_channel_b0->Write(); + th2_signal_vs_channel_b1->Write(); + th2_signal_vs_channel_b2->Write(); + th2_signal_vs_channel_b3->Write(); + + th2_signal_vs_channel_bkg_b0->Write(); + th2_signal_vs_channel_bkg_b1->Write(); + th2_signal_vs_channel_bkg_b2->Write(); + th2_signal_vs_channel_bkg_b3->Write(); + + th1_signal_b0->Write(); + th1_signal_b1->Write(); + th1_signal_b2->Write(); + th1_signal_b3->Write();*/ + graph_bkg_b0->SetName("graph_bkg_b0"); // graph_bkg_b0->Write(); + graph_bkg_b1->SetName("graph_bkg_b1"); // graph_bkg_b1->Write(); + graph_bkg_b2->SetName("graph_bkg_b2"); // graph_bkg_b2->Write(); + graph_bkg_b3->SetName("graph_bkg_b3"); // graph_bkg_b3->Write(); + sumvector_b0_ptr->Write("sumvector_b0"); + sumvector_b1_ptr->Write("sumvector_b1"); + sumvector_b2_ptr->Write("sumvector_b2"); + sumvector_b3_ptr->Write("sumvector_b3"); + beamontime_ptr->Write("beamontime"); + + + rootFile->Write(); + rootFile->Close(); + + } + cout << eventID << " frames analysed." << endl; + return 0; + } + else { + cerr << "Error 1" << endl; + return 1; + } + + +} diff --git a/Scripts_20171217/hitutils.h b/Scripts_20171217/hitutils.h new file mode 100644 index 0000000..b0d2561 --- /dev/null +++ b/Scripts_20171217/hitutils.h @@ -0,0 +1,110 @@ +//This file contains structures and functions used for processing the HIT2017 files +#include +#include + +using namespace std; + +#define DATA_SAMPLES_PER_SENSOR 64 +#define DATA_SENSORS_PER_BOARD 2 + +//**** Structure definitions **** + +typedef struct SyncFrame +{ + //unsigned short channel_id; + unsigned short local_ctr;// local counter // 16 bits, possibly different for each board + unsigned short global_ctr; //global counter same for all board up to 512 + unsigned short sma_state; //external signal input (external timestamper) + //these files are additional compared to STM side + unsigned short dummy = 0xFFFF; //spacer for nice structure packing + int device_nr; //device number + int data_ok; //0 = not ok, anything else is ok +} SyncFrame; + +typedef struct BufferData +{ + SyncFrame sync_frame; + unsigned short sensor_data[DATA_SENSORS_PER_BOARD * DATA_SAMPLES_PER_SENSOR]; +} BufferData; + +//**** Interface functions **** + +//Read some data from a binary HIT2017 file +// The data are grouped in block of BufferData type. Each block is a single frame +// from one detector board. If there are more than 1 board, the data is ordered sequentially: +// B1F1 B2F1 .. BmF1 B1F2 B2F2 .. BmF2 .. B1Fn B2Fn .. BmFn +// where Bx stands for board x (1..m) and Fx stands for frame x (1..n) +// User can read files in smaller blocks by specifying the first block and the number of blocks +// to be read. The function will return the number of correctly read blocks. +// The user must allocate memory for the data before running the function. +// If smaller number of blocks was read than specified, the remaining data in the +// allocated memory should be considered invalid. +//Parameters: +// filename: name of the file to read (with extension) +// first: number of first data record (starting with 0) +// nr: number of data records to be read (one record is one board! +// dataptr: a pointer to an allocaced memory block with min size = sizeof(BufferData)*nr +//Returned value: number of records read. +int hit_read_binary_file(const char* file, int first, int nr, BufferData* dataptr); + + + + + +//**** Function bodies **** + +int hit_read_binary_file(const char* filename, int first, int nr, BufferData* dataptr) +{ + + ifstream file(filename, ifstream::in | ifstream::binary); + + if (!file.is_open()){ + return -1; //file could not be opened + } + //seek to right position + file.seekg(first*sizeof(BufferData)); + + //read data + file.read((char*)dataptr, nr*sizeof(BufferData)); + int blocks_read = file.gcount() / sizeof(BufferData); + + // //close the file + file.close(); + + return blocks_read; +} + +int getFileSize(const char* filename) +{ + ifstream file(filename, ifstream::in | ifstream::binary); + + if(!file.is_open()) + { + return -1; + } + + file.seekg(0, ios::end); + int fileSize = file.tellg(); + file.close(); + + return fileSize; +} + +int getBlock(const char* filename,int block) +{ + ifstream file(filename, ifstream::in | ifstream::binary); + + if(!file.is_open()) + { + return -1; + } + file.seekg (block*sizeof(BufferData)); + + BufferData* dataptr = new BufferData(); + file.read ((char*)dataptr ,sizeof(BufferData)); + file.close(); + cout << dataptr->sync_frame.device_nr << endl; + cout << dataptr->sensor_data[127] << endl; + + return 0; +} diff --git a/Scripts_20171217/jobs/runjob1.sh b/Scripts_20171217/jobs/runjob1.sh new file mode 100644 index 0000000..6fbe9b0 --- /dev/null +++ b/Scripts_20171217/jobs/runjob1.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20171217/convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run1 diff --git a/Scripts_20171217/jobs/runjob10.sh b/Scripts_20171217/jobs/runjob10.sh new file mode 100644 index 0000000..6ce9536 --- /dev/null +++ b/Scripts_20171217/jobs/runjob10.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20171217/convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run10 diff --git a/Scripts_20171217/jobs/runjob11.sh b/Scripts_20171217/jobs/runjob11.sh new file mode 100644 index 0000000..1f6870a --- /dev/null +++ b/Scripts_20171217/jobs/runjob11.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20171217/convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run11 diff --git a/Scripts_20171217/jobs/runjob12.sh b/Scripts_20171217/jobs/runjob12.sh new file mode 100644 index 0000000..8c01dfd --- /dev/null +++ b/Scripts_20171217/jobs/runjob12.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20171217/convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run12 diff --git a/Scripts_20171217/jobs/runjob13.sh b/Scripts_20171217/jobs/runjob13.sh new file mode 100644 index 0000000..df7d1bd --- /dev/null +++ b/Scripts_20171217/jobs/runjob13.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20171217/convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run13 diff --git a/Scripts_20171217/jobs/runjob14.sh b/Scripts_20171217/jobs/runjob14.sh new file mode 100644 index 0000000..32a709d --- /dev/null +++ b/Scripts_20171217/jobs/runjob14.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20171217/convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run14 diff --git a/Scripts_20171217/jobs/runjob15.sh b/Scripts_20171217/jobs/runjob15.sh new file mode 100644 index 0000000..746b896 --- /dev/null +++ b/Scripts_20171217/jobs/runjob15.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20171217/convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run15 diff --git a/Scripts_20171217/jobs/runjob16.sh b/Scripts_20171217/jobs/runjob16.sh new file mode 100644 index 0000000..cc5c8bc --- /dev/null +++ b/Scripts_20171217/jobs/runjob16.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20171217/convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run16 diff --git a/Scripts_20171217/jobs/runjob17.sh b/Scripts_20171217/jobs/runjob17.sh new file mode 100644 index 0000000..5658d2a --- /dev/null +++ b/Scripts_20171217/jobs/runjob17.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20171217/convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run17 diff --git a/Scripts_20171217/jobs/runjob18.sh b/Scripts_20171217/jobs/runjob18.sh new file mode 100644 index 0000000..f843fd7 --- /dev/null +++ b/Scripts_20171217/jobs/runjob18.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20171217/convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run18 diff --git a/Scripts_20171217/jobs/runjob19.sh b/Scripts_20171217/jobs/runjob19.sh new file mode 100644 index 0000000..a1f27e0 --- /dev/null +++ b/Scripts_20171217/jobs/runjob19.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20171217/convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run19 diff --git a/Scripts_20171217/jobs/runjob2.sh b/Scripts_20171217/jobs/runjob2.sh new file mode 100644 index 0000000..f1f8af0 --- /dev/null +++ b/Scripts_20171217/jobs/runjob2.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20171217/convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run2 diff --git a/Scripts_20171217/jobs/runjob20.sh b/Scripts_20171217/jobs/runjob20.sh new file mode 100644 index 0000000..e68efb1 --- /dev/null +++ b/Scripts_20171217/jobs/runjob20.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20171217/convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run20 diff --git a/Scripts_20171217/jobs/runjob21.sh b/Scripts_20171217/jobs/runjob21.sh new file mode 100644 index 0000000..58908b3 --- /dev/null +++ b/Scripts_20171217/jobs/runjob21.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20171217/convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run21 diff --git a/Scripts_20171217/jobs/runjob22.sh b/Scripts_20171217/jobs/runjob22.sh new file mode 100644 index 0000000..4eae9f1 --- /dev/null +++ b/Scripts_20171217/jobs/runjob22.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20171217/convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run22 diff --git a/Scripts_20171217/jobs/runjob23.sh b/Scripts_20171217/jobs/runjob23.sh new file mode 100644 index 0000000..f127221 --- /dev/null +++ b/Scripts_20171217/jobs/runjob23.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20171217/convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run23 diff --git a/Scripts_20171217/jobs/runjob24.sh b/Scripts_20171217/jobs/runjob24.sh new file mode 100644 index 0000000..f7c9d51 --- /dev/null +++ b/Scripts_20171217/jobs/runjob24.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20171217/convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run24 diff --git a/Scripts_20171217/jobs/runjob25.sh b/Scripts_20171217/jobs/runjob25.sh new file mode 100644 index 0000000..049e39f --- /dev/null +++ b/Scripts_20171217/jobs/runjob25.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20171217/convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run25 diff --git a/Scripts_20171217/jobs/runjob26.sh b/Scripts_20171217/jobs/runjob26.sh new file mode 100644 index 0000000..f1b2478 --- /dev/null +++ b/Scripts_20171217/jobs/runjob26.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20171217/convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run26 diff --git a/Scripts_20171217/jobs/runjob27.sh b/Scripts_20171217/jobs/runjob27.sh new file mode 100644 index 0000000..7fdea8b --- /dev/null +++ b/Scripts_20171217/jobs/runjob27.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20171217/convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run27 diff --git a/Scripts_20171217/jobs/runjob28.sh b/Scripts_20171217/jobs/runjob28.sh new file mode 100644 index 0000000..31c8e2c --- /dev/null +++ b/Scripts_20171217/jobs/runjob28.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20171217/convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run28 diff --git a/Scripts_20171217/jobs/runjob29.sh b/Scripts_20171217/jobs/runjob29.sh new file mode 100644 index 0000000..ae17f2a --- /dev/null +++ b/Scripts_20171217/jobs/runjob29.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20171217/convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run29 diff --git a/Scripts_20171217/jobs/runjob3.sh b/Scripts_20171217/jobs/runjob3.sh new file mode 100644 index 0000000..f341c63 --- /dev/null +++ b/Scripts_20171217/jobs/runjob3.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20171217/convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run3 diff --git a/Scripts_20171217/jobs/runjob30.sh b/Scripts_20171217/jobs/runjob30.sh new file mode 100644 index 0000000..136daca --- /dev/null +++ b/Scripts_20171217/jobs/runjob30.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20171217/convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run30 diff --git a/Scripts_20171217/jobs/runjob31.sh b/Scripts_20171217/jobs/runjob31.sh new file mode 100644 index 0000000..2ca3d23 --- /dev/null +++ b/Scripts_20171217/jobs/runjob31.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20171217/convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run31 diff --git a/Scripts_20171217/jobs/runjob32.sh b/Scripts_20171217/jobs/runjob32.sh new file mode 100644 index 0000000..0423fa2 --- /dev/null +++ b/Scripts_20171217/jobs/runjob32.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20171217/convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run32 diff --git a/Scripts_20171217/jobs/runjob33.sh b/Scripts_20171217/jobs/runjob33.sh new file mode 100644 index 0000000..4d7951a --- /dev/null +++ b/Scripts_20171217/jobs/runjob33.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20171217/convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run33 diff --git a/Scripts_20171217/jobs/runjob34.sh b/Scripts_20171217/jobs/runjob34.sh new file mode 100644 index 0000000..28b2280 --- /dev/null +++ b/Scripts_20171217/jobs/runjob34.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20171217/convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run34 diff --git a/Scripts_20171217/jobs/runjob35.sh b/Scripts_20171217/jobs/runjob35.sh new file mode 100644 index 0000000..b9c49f8 --- /dev/null +++ b/Scripts_20171217/jobs/runjob35.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20171217/convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run35 diff --git a/Scripts_20171217/jobs/runjob36.sh b/Scripts_20171217/jobs/runjob36.sh new file mode 100644 index 0000000..b22c129 --- /dev/null +++ b/Scripts_20171217/jobs/runjob36.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20171217/convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run36 diff --git a/Scripts_20171217/jobs/runjob37.sh b/Scripts_20171217/jobs/runjob37.sh new file mode 100644 index 0000000..b8385c5 --- /dev/null +++ b/Scripts_20171217/jobs/runjob37.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20171217/convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run37 diff --git a/Scripts_20171217/jobs/runjob38.sh b/Scripts_20171217/jobs/runjob38.sh new file mode 100644 index 0000000..7e8c863 --- /dev/null +++ b/Scripts_20171217/jobs/runjob38.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20171217/convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run38 diff --git a/Scripts_20171217/jobs/runjob39.sh b/Scripts_20171217/jobs/runjob39.sh new file mode 100644 index 0000000..61bb630 --- /dev/null +++ b/Scripts_20171217/jobs/runjob39.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20171217/convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run39 diff --git a/Scripts_20171217/jobs/runjob4.sh b/Scripts_20171217/jobs/runjob4.sh new file mode 100644 index 0000000..d658717 --- /dev/null +++ b/Scripts_20171217/jobs/runjob4.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20171217/convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run4 diff --git a/Scripts_20171217/jobs/runjob40.sh b/Scripts_20171217/jobs/runjob40.sh new file mode 100644 index 0000000..90aa7ce --- /dev/null +++ b/Scripts_20171217/jobs/runjob40.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20171217/convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run40 diff --git a/Scripts_20171217/jobs/runjob41.sh b/Scripts_20171217/jobs/runjob41.sh new file mode 100644 index 0000000..8cff3d8 --- /dev/null +++ b/Scripts_20171217/jobs/runjob41.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20171217/convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run41 diff --git a/Scripts_20171217/jobs/runjob42.sh b/Scripts_20171217/jobs/runjob42.sh new file mode 100644 index 0000000..efc93d9 --- /dev/null +++ b/Scripts_20171217/jobs/runjob42.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20171217/convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run42 diff --git a/Scripts_20171217/jobs/runjob43.sh b/Scripts_20171217/jobs/runjob43.sh new file mode 100644 index 0000000..d6d5a37 --- /dev/null +++ b/Scripts_20171217/jobs/runjob43.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20171217/convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run43 diff --git a/Scripts_20171217/jobs/runjob44.sh b/Scripts_20171217/jobs/runjob44.sh new file mode 100644 index 0000000..59e9ea5 --- /dev/null +++ b/Scripts_20171217/jobs/runjob44.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20171217/convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run44 diff --git a/Scripts_20171217/jobs/runjob45.sh b/Scripts_20171217/jobs/runjob45.sh new file mode 100644 index 0000000..1aca671 --- /dev/null +++ b/Scripts_20171217/jobs/runjob45.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20171217/convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run45 diff --git a/Scripts_20171217/jobs/runjob46.sh b/Scripts_20171217/jobs/runjob46.sh new file mode 100644 index 0000000..4a7c2be --- /dev/null +++ b/Scripts_20171217/jobs/runjob46.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20171217/convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run46 diff --git a/Scripts_20171217/jobs/runjob47.sh b/Scripts_20171217/jobs/runjob47.sh new file mode 100644 index 0000000..bc07c35 --- /dev/null +++ b/Scripts_20171217/jobs/runjob47.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20171217/convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run47 diff --git a/Scripts_20171217/jobs/runjob48.sh b/Scripts_20171217/jobs/runjob48.sh new file mode 100644 index 0000000..c539257 --- /dev/null +++ b/Scripts_20171217/jobs/runjob48.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20171217/convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run48 diff --git a/Scripts_20171217/jobs/runjob49.sh b/Scripts_20171217/jobs/runjob49.sh new file mode 100644 index 0000000..129f306 --- /dev/null +++ b/Scripts_20171217/jobs/runjob49.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20171217/convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run49 diff --git a/Scripts_20171217/jobs/runjob5.sh b/Scripts_20171217/jobs/runjob5.sh new file mode 100644 index 0000000..974d7ee --- /dev/null +++ b/Scripts_20171217/jobs/runjob5.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20171217/convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run5 diff --git a/Scripts_20171217/jobs/runjob6.sh b/Scripts_20171217/jobs/runjob6.sh new file mode 100644 index 0000000..1631294 --- /dev/null +++ b/Scripts_20171217/jobs/runjob6.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20171217/convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run6 diff --git a/Scripts_20171217/jobs/runjob7.sh b/Scripts_20171217/jobs/runjob7.sh new file mode 100644 index 0000000..ca2120c --- /dev/null +++ b/Scripts_20171217/jobs/runjob7.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20171217/convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run7 diff --git a/Scripts_20171217/jobs/runjob8.sh b/Scripts_20171217/jobs/runjob8.sh new file mode 100644 index 0000000..d652b13 --- /dev/null +++ b/Scripts_20171217/jobs/runjob8.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20171217/convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run8 diff --git a/Scripts_20171217/jobs/runjob9.sh b/Scripts_20171217/jobs/runjob9.sh new file mode 100644 index 0000000..34de15b --- /dev/null +++ b/Scripts_20171217/jobs/runjob9.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20171217/convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run9 diff --git a/Scripts_20171217/lhcbStyle.C b/Scripts_20171217/lhcbStyle.C new file mode 100644 index 0000000..0810aae --- /dev/null +++ b/Scripts_20171217/lhcbStyle.C @@ -0,0 +1,179 @@ +{ +//////////////////////////////////////////////////////////////////// +// PURPOSE: +// +// This macro defines a reasonable style for (black-and-white) +// "publication quality" ROOT plots. The default settings contain +// many features that are either not desirable for printing on white +// paper or impair the general readibility of plots. +// +// USAGE: +// +// Simply include the line +// gROOT->ProcessLine(".x $LHCBSTYLE/root/lhcbstyle.C"); +// at the beginning of your root macro. +// +// SOME COMMENTS: +// +// Statistics and fit boxes: +// +// "Decorative" items around the histogram are kept to a minimum. +// In particular there is no box with statistics or fit information. +// You can easily change this either by editing your private copy +// of this style file or by calls to "gStyle" in your macro. +// For example, +// gStyle->SetOptFit(1011); +// will add some fit information. +// +// Font: +// +// The font is chosen to be 62, i.e.helvetica-bold-r-normal with +// precision 2. Font is of course a matter of taste, but most people +// will probably agree that Helvetica bold gives close to optimal +// readibility in presentations. It appears to be the ROOT default, +// and since there are still some features in ROOT that simply won't +// respond to any font requests, it is the wise choice to avoid +// ugly font mixtures on the same plot... The precision of the font (2) +// is chosen in order to have a rotatable and scalable font. Be sure +// to use true-type fonts! I.e. +// Unix.*.Root.UseTTFonts: true in your .rootrc file. +// +// "Landscape histograms": +// +// The style here is designed for more or less quadratic plots. +// For very long histograms, adjustements are needed. For instance, +// for a canvas with 1x5 histograms: +// TCanvas* c1 = new TCanvas("c1", "L0 muons", 600, 800); +// c1->Divide(1,5); +// adaptions like the following will be needed: +// gStyle->SetTickLength(0.05,"x"); +// gStyle->SetTickLength(0.01,"y"); +// gStyle->SetLabelSize(0.15,"x"); +// gStyle->SetLabelSize(0.1,"y"); +// gStyle->SetStatW(0.15); +// gStyle->SetStatH(0.5); +// +//////////////////////////////////////////////////////////////////// + +gROOT->Reset(); + +cout << "executing lhcbStyle.C:" << endl; +cout << " " << endl; +cout << " " << endl; +cout << " $ $ $ $$$ $ " << endl; +cout << " $ $ $ $ $ " << endl; +cout << " $ $$$$$ $ $$$ " << endl; +cout << " $ $ $ $ $ $ " << endl; +cout << " $$$$$ $ $ $$$ $$$ " << endl; +cout << " " << endl; +cout << " LHCb ROOT style file " << endl; +cout << " " << endl; +cout << +" Problems, suggestions, contributions to Thomas.Schietinger@cern.ch" + << endl; +cout << " " << endl; + +TStyle *lhcbStyle= new TStyle("lhcbStyle","LHCb official plots style"); + +// use helvetica-bold-r-normal, precision 2 (rotatable) + Int_t lhcbFont = 22; //62; +// line thickness +Double_t lhcbWidth = 2; + +// use plain black on white colors +lhcbStyle->SetFrameBorderMode(0); +lhcbStyle->SetCanvasBorderMode(0); +lhcbStyle->SetPadBorderMode(0); +lhcbStyle->SetPadColor(0); +lhcbStyle->SetCanvasColor(0); +lhcbStyle->SetStatColor(0); +lhcbStyle->SetPalette(1); +lhcbStyle->SetTitleColor(1); + lhcbStyle->SetFillColor(1);//0 + lhcbStyle->SetFillStyle(0); + +// set the paper & margin sizes +lhcbStyle->SetPaperSize(20,26); +lhcbStyle->SetPadTopMargin(0.05); +//lhcbStyle->SetPadRightMargin(0.05); // increase for colz plots!! +lhcbStyle->SetPadRightMargin(0.08); // increase for colz plots!! +lhcbStyle->SetPadBottomMargin(0.16); +lhcbStyle->SetPadLeftMargin(0.14); + +// use large fonts +lhcbStyle->SetTextFont(lhcbFont); +lhcbStyle->SetTextSize(0.08); +lhcbStyle->SetLabelFont(lhcbFont,"x"); +lhcbStyle->SetLabelFont(lhcbFont,"y"); +lhcbStyle->SetLabelFont(lhcbFont,"z"); +lhcbStyle->SetLabelSize(0.05,"x"); +lhcbStyle->SetLabelSize(0.05,"y"); +lhcbStyle->SetLabelSize(0.05,"z"); +lhcbStyle->SetTitleFont(lhcbFont); +lhcbStyle->SetTitleFont(lhcbFont,"y"); +lhcbStyle->SetTitleFont(lhcbFont,"x"); +lhcbStyle->SetTitleFont(lhcbFont,"z"); +lhcbStyle->SetTitleSize(0.06,"x"); +lhcbStyle->SetTitleSize(0.06,"y"); +lhcbStyle->SetTitleSize(0.06,"z"); + +// use bold lines and markers +lhcbStyle->SetLineWidth(lhcbWidth); +lhcbStyle->SetFrameLineWidth(lhcbWidth); +lhcbStyle->SetHistLineWidth(lhcbWidth); +lhcbStyle->SetFuncWidth(lhcbWidth); +lhcbStyle->SetGridWidth(lhcbWidth); +lhcbStyle->SetLineStyleString(2,"[12 12]"); // postscript dashes +lhcbStyle->SetMarkerStyle(21); +lhcbStyle->SetMarkerSize(1.0); + +// label offsets +lhcbStyle->SetLabelOffset(0.015); + +// by default, do not display histogram decorations: +lhcbStyle->SetOptStat(0); +//lhcbStyle->SetOptStat(1110); // show only nent, mean, rms +lhcbStyle->SetOptTitle(0); +lhcbStyle->SetOptFit(0); +//lhcbStyle->SetOptFit(1011); // show probability, parameters and errors + +// look of the statistics box: +lhcbStyle->SetStatBorderSize(1); +lhcbStyle->SetStatFont(lhcbFont); +lhcbStyle->SetStatFontSize(0.05); +lhcbStyle->SetStatX(0.9); +lhcbStyle->SetStatY(0.9); +lhcbStyle->SetStatW(0.25); +lhcbStyle->SetStatH(0.15); + +// put tick marks on top and RHS of plots +lhcbStyle->SetPadTickX(1); +lhcbStyle->SetPadTickY(1); + +// histogram divisions: only 5 in x to avoid label overlaps +lhcbStyle->SetNdivisions(505,"x"); +lhcbStyle->SetNdivisions(510,"y"); + +gROOT->SetStyle("lhcbStyle"); +gROOT->ForceStyle(); + +TPaveText *lhcbName = new TPaveText(0.65,0.8,0.9,0.9,"BRNDC"); +lhcbName->SetFillColor(0); +lhcbName->SetTextAlign(12); +lhcbName->SetBorderSize(0); +lhcbName->AddText("LHCb"); + +TText *lhcbLabel = new TText(); +lhcbLabel->SetTextFont(lhcbFont); +lhcbLabel->SetTextColor(1); +lhcbLabel->SetTextSize(0.04); +lhcbLabel->SetTextAlign(12); + +TLatex *lhcbLatex = new TLatex(); +lhcbLatex->SetTextFont(lhcbFont); +lhcbLatex->SetTextColor(1); +lhcbLatex->SetTextSize(0.04); +lhcbLatex->SetTextAlign(12); +lhcbStyle->SetLegendFillColor(kWhite); + +} diff --git a/Scripts_20171217/plot_5x5.C b/Scripts_20171217/plot_5x5.C new file mode 100644 index 0000000..6f037a0 --- /dev/null +++ b/Scripts_20171217/plot_5x5.C @@ -0,0 +1,59 @@ +{ + gROOT->Reset(); + TCanvas * c1 = new TCanvas("c1","b0",1200,1200); + c1->Divide(7,7); + + TCanvas * c2 = new TCanvas("c2","b1",1200,1200); + c2->Divide(7,7); + +TCanvas * c3 = new TCanvas("c3","b2",1200,1200); + c3->Divide(7,7); + +TCanvas * c4 = new TCanvas("c4","b3",1200,1200); + c4->Divide(7,7); + // run map in 20 mm steps + // y + // 0,41,42,43,44,45, 0 + // 31,15,11, 7,17,23,26 + // 32,14,10, 6,16,22,27 + //x 33, 3, 2, 1, 4, 5,28 + // 34,18,12, 8,20,24,29 + // 35,19,13, 9,21,25,30 + // 0,36,37,38,39,40, 0 + + Int_t fileorder[7][7] = {{0,41,42,43,44,45,0},{31,15,11,7,17,23,26},{32,14,10,6,16,22,27},{33,3,2,1,4,5,28},{34,18,12,8,20,24,29},{35,19,13,9,21,25,30},{0,36,37,38,39,40,0}}; + + + TFile *runfile[49]; + TLatex label[49]; + Int_t counter = 0; + for (int i = 0;i<7;i++){ + for (int j = 0;j<7;j++){ + if (fileorder[j][i]==0) { + counter++; + continue; + } + runfile[counter] = new TFile(Form("/work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/root/run%i.root",fileorder[i][j]),"READ"); + + c1->cd(counter+1); + sumvector_b0->Draw(); + label[counter].DrawLatexNDC(0.5,0.95,Form("Run%i",fileorder[i][j])); + + c2->cd(counter+1); + sumvector_b1->Draw(); + label[counter].DrawLatexNDC(0.5,0.95,Form("Run%i",fileorder[i][j])); + + c3->cd(counter+1); + sumvector_b2->Draw(); + label[counter].DrawLatexNDC(0.5,0.95,Form("Run%i",fileorder[i][j])); + + c4->cd(counter+1); + sumvector_b3->Draw(); + label[counter].DrawLatexNDC(0.5,0.95,Form("Run%i",fileorder[i][j])); + + + runfile[counter]->Close(); + counter++; + } + } +} diff --git a/Scripts_20171217/plot_meandiff_5x5.C b/Scripts_20171217/plot_meandiff_5x5.C new file mode 100644 index 0000000..b512ce1 --- /dev/null +++ b/Scripts_20171217/plot_meandiff_5x5.C @@ -0,0 +1,108 @@ +{ + gROOT->Reset(); + gROOT->ProcessLine(".x lhcbStyle.C"); + gStyle->SetOptTitle(1); + gStyle->SetOptStat(1); + + TCanvas * c1 = new TCanvas("c1","b0",1200,1200); + c1->Divide(7,7); + + TCanvas * c2 = new TCanvas("c2","b1",1200,1200); + c2->Divide(7,7); + +TCanvas * c3 = new TCanvas("c3","b2",1200,1200); + c3->Divide(7,7); + +TCanvas * c4 = new TCanvas("c4","b3",1200,1200); + c4->Divide(7,7); + // run map in 20 mm steps + // y + // 0,41,42,43,44,45, 0 + // 31,15,11, 7,17,23,26 + // 32,14,10, 6,16,22,27 + //x 33, 3, 2, 1, 4, 5,28 + // 34,18,12, 8,20,24,29 + // 35,19,13, 9,21,25,30 + // 0,36,37,38,39,40, 0 + + Int_t fileorder[7][7] = {{0,41,42,43,44,45,0},{31,15,11,7,17,23,26},{32,14,10,6,16,22,27},{33,3,2,1,4,5,28},{34,18,12,8,20,24,29},{35,19,13,9,21,25,30},{0,36,37,38,39,40,0}}; + TFile * f1 = new TFile("diffout_calib.root","RECREATE"); + TObjArray *myhists = new TObjArray(); + TFile *runfile[49]; + TTree *tree[49]; + TH1D *h1[49]; + TH1D *h2[49]; + TH1D *h3[49]; + TH1D *h4[49]; + TLatex * label[49]; + char histname[10]; + char histtitle[10]; + + Int_t counter = 0; + TDirectory *where = gDirectory; + + for (int i = 0;i<7;i++){ + for (int j = 0;j<7;j++){ + if (fileorder[j][i]==0) { + counter++; + continue; + } + //cout << counter << endl; + where->cd(); + sprintf(histname,"h1[%i]",counter); + sprintf(histtitle,"Run_%i",fileorder[i][j]); + + h1[counter] = new TH1D(histname,histtitle,100,-5,5); + myhists->AddLast(h1[counter]); + + runfile[counter] = new TFile(Form("/work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/root/run%i.root",fileorder[i][j]),""); + tree[counter] = (TTree*)runfile[counter]->Get("t"); + + + c1->cd(counter+1); + where->cd(); + tree[counter]->Project(histname,"beamPosX_b0-beamPosX_b1","beamSignal_b0>7000&&beamSignal_b1>7000"); + h1[counter]->Draw(); + // label[counter]->DrawLatexNDC(0.5,0.95,Form("Run%i",fileorder[i][j])); + + + + c2->cd(counter+1); + where->cd(); + sprintf(histname,"h2[%i]",counter); + h2[counter] = new TH1D(histname,histtitle,100,-5,5); + myhists->AddLast(h2[counter]); + tree[counter]->Project(histname,"beamPosX_b2-beamPosX_b3","beamSignal_b2>7000&&beamSignal_b3>7000"); + h2[counter]->Draw(); + // label[counter]->DrawLatexNDC(0.5,0.95,Form("Run%i",fileorder[i][j])); + + c3->cd(counter+1); + where->cd(); + sprintf(histname,"h3[%i]",counter); + h3[counter] = new TH1D(histname,histtitle,100,-5,5); + myhists->AddLast(h3[counter]); + tree[counter]->Project(histname,"beamFocusX_b0-beamFocusX_b1","beamSignal_b0>7000&&beamSignal_b1>7000"); + h3[counter]->Draw(); + // label[counter]->DrawLatexNDC(0.5,0.95,Form("Run%i",fileorder[i][j])); + + + c4->cd(counter+1); + where->cd(); + sprintf(histname,"h4[%i]",counter); + h4[counter] = new TH1D(histname,histtitle,100,-5,5); + myhists->AddLast(h4[counter]); + tree[counter]->Project(histname,"beamFocusX_b2-beamFocusX_b3","beamSignal_b2>7000&&beamSignal_b3>7000"); + h4[counter]->Draw(); + // label[counter]->DrawLatexNDC(0.5,0.95,Form("Run%i",fileorder[i][j])); + + + runfile[counter]->Close(); + counter++; + } + } + + myhists->Write(); + // f1->Close(); + +} + diff --git a/Scripts_20171217/rowsum_b0.C b/Scripts_20171217/rowsum_b0.C new file mode 100644 index 0000000..273603c --- /dev/null +++ b/Scripts_20171217/rowsum_b0.C @@ -0,0 +1,108 @@ +{ + + gROOT->Reset(); + gROOT->ProcessLine(".x lhcbStyle.C"); + +TCanvas * c1 = new TCanvas("c1","b0",1000,1000); + c1->Divide(1,7); +Int_t fileorder[7][7] = {{0,41,42,43,44,45,0},{31,15,11,7,17,23,26},{32,14,10,6,16,22,27},{33,3,2,1,4,5,28},{34,18,12,8,20,24,29},{35,19,13,9,21,25,30},{0,36,37,38,39,40,0}}; + Int_t counter = 0; + TFile *runfile[49]; + TVector * copysumvector_ptr[49]; + TVector * copybeamontime_ptr[49]; + TVector * rowvector_b0_ptr[7]; + TVector * rowvector_b1_ptr[7]; + TVector * rowvector_b2_ptr[7]; + TVector * rowvector_b3_ptr[7]; + TH1F * histo[7]; + TH1F * histo_clone[7]; + + TF1 * f1[7]; + + + + // rowvector_b0_ptr->ResizeTo(128); + // rowvector_b1_ptr->ResizeTo(128); + // rowvector_b2_ptr->ResizeTo(128); + // rowvector_b3_ptr->ResizeTo(128); + for (int i = 0;i<7;i++){ + rowvector_b0_ptr[i] = new TVector(128); + f1[i] = new TF1(Form("f1[%i]",i),"[0]*(exp(-0.5*(x-[1])^2/(13.7^2))+exp(-0.5*(x-[1]-20/0.8)^2/(13.7^2))+exp(-0.5*(x-[1]-40/0.8)^2/(13.7^2))+exp(-0.5*(x-[1]-60/0.8)^2/(13.7^2))+exp(-0.5*(x-[1]-80/0.8)^2/(13.7^2)) )"); + f1[i]->SetParameters(1E3,20); + } + + for (int i = 0;i<7;i++){ + for (int j = 0;j<7;j++){ + if (fileorder[j][i]==0) { + counter++; + continue; + } + runfile[counter] = new TFile(Form("/work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/root/run%i.root",fileorder[i][j]),"READ"); + runfile[counter]->GetObject("sumvector_b0",copysumvector_ptr[counter]); + runfile[counter]->GetObject("beamontime",copybeamontime_ptr[counter]); + + //copysumvector_ptr[counter]->Print(); + for (int k = 0; k<128; k++){ + rowvector_b0_ptr[j]->operator[](k) += copysumvector_ptr[counter]->operator[](k)/copybeamontime_ptr[counter]->operator[](1); + } + + runfile[counter]->Close(); + counter++; + } + + + } + + TFile * outputfile = new TFile("rowsum.root","RECREATE"); + for (int j = 0;j<7;j++){ + // rowvector_b0_ptr[j]->Print(); + + c1->cd(j+1); + histo[j] = new TH1F(Form("histo[%i]",j),Form("histo[%i]",j),128,0,128); + for (int i = 0; i<128;i++){ + histo[j]->SetBinContent(i+1,rowvector_b0_ptr[j]->operator[](i)); + } + histo[j]->SetMinimum(0); + histo[j]->GetYaxis()->SetLabelSize(0.1); + histo[j]->GetXaxis()->SetLabelSize(0.14); + histo[j]->GetXaxis()->SetNdivisions(15,5,0); + histo[j]->GetYaxis()->SetNdivisions(10,0,0); + histo[j]->Draw(""); + // rowvector_b0_ptr[j]->Draw(""); + // histo[j] = (TH1F*)gDirectory->Get("TVectorF"); + // histo_clone[j] = (TH1F*)histo[j]->Clone(Form("histoclone[%i]",j)); + histo[j]->Fit(f1[j]); + histo[j]->Write(); + histo[j]->Fit(f1[j]); + for (int i = 0; i<128;i++){ + cout << f1[j]->Eval(i)/histo[j]->GetBinContent(i+1) << ", " ; + } + + } + c1->Update(); + c1->Write(); + + +TCanvas * c2 = new TCanvas("c2","b0",1000,1000); + c2->Divide(1,7); +for (int j = 0;j<7;j++){ + // rowvector_b0_ptr[j]->Print(); + + c2->cd(j+1); + histo_clone[j] = (TH1F*)histo[j]->Clone(Form("histo_clone[%i]",j)); + + histo_clone[j]->Divide(histo[6]); + histo_clone[j]->GetYaxis()->SetLabelSize(0.1); + histo_clone[j]->GetXaxis()->SetLabelSize(0.14); + histo_clone[j]->GetXaxis()->SetNdivisions(15,5,0); + histo_clone[j]->GetYaxis()->SetNdivisions(10,0,0); + histo_clone[j]->SetMinimum(0); + histo_clone[j]->SetMaximum(1.0); + + histo_clone[j]->Draw(); + + } + + outputfile->Write(); + // outputfile->Close(); +} diff --git a/Scripts_20171217/rowsum_b1.C b/Scripts_20171217/rowsum_b1.C new file mode 100644 index 0000000..b51fff9 --- /dev/null +++ b/Scripts_20171217/rowsum_b1.C @@ -0,0 +1,103 @@ +{ + + gROOT->Reset(); + gROOT->ProcessLine(".x lhcbStyle.C"); + +TCanvas * c1 = new TCanvas("c1","b1",1000,1000); + c1->Divide(1,7); +Int_t fileorder[7][7] = {{0,41,42,43,44,45,0},{31,15,11,7,17,23,26},{32,14,10,6,16,22,27},{33,3,2,1,4,5,28},{34,18,12,8,20,24,29},{35,19,13,9,21,25,30},{0,36,37,38,39,40,0}}; + Int_t counter = 0; + TFile *runfile[49]; + TVector * copysumvector_ptr[49]; + TVector * copybeamontime_ptr[49]; + TVector * rowvector_b0_ptr[7]; + TVector * rowvector_b1_ptr[7]; + TVector * rowvector_b2_ptr[7]; + TVector * rowvector_b3_ptr[7]; + TH1F * histo[7]; + TH1F * histo_clone[7]; + TF1 * f1[7]; + // rowvector_b0_ptr->ResizeTo(128); + // rowvector_b1_ptr->ResizeTo(128); + // rowvector_b2_ptr->ResizeTo(128); + // rowvector_b3_ptr->ResizeTo(128); + for (int i = 0;i<7;i++){ + rowvector_b1_ptr[i] = new TVector(128); + f1[i] = new TF1(Form("f1[%i]",i),"[0]*(exp(-0.5*(x-[1])^2/(13.7^2))+exp(-0.5*(x-[1]-20/0.8)^2/(13.7^2))+exp(-0.5*(x-[1]-40/0.8)^2/(13.7^2))+exp(-0.5*(x-[1]-60/0.8)^2/(13.7^2))+exp(-0.5*(x-[1]-80/0.8)^2/(13.7^2)) )"); + f1[i]->SetParameters(1E3,20); + } + + for (int i = 0;i<7;i++){ + for (int j = 0;j<7;j++){ + if (fileorder[j][i]==0) { + counter++; + continue; + } + runfile[counter] = new TFile(Form("/work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/root/run%i.root",fileorder[i][j]),"READ"); + runfile[counter]->GetObject("sumvector_b1",copysumvector_ptr[counter]); + runfile[counter]->GetObject("beamontime",copybeamontime_ptr[counter]); + + //copysumvector_ptr[counter]->Print(); + for (int k = 0; k<128; k++){ + rowvector_b1_ptr[j]->operator[](k) += copysumvector_ptr[counter]->operator[](k)/copybeamontime_ptr[counter]->operator[](1); + } + + runfile[counter]->Close(); + counter++; + } + + + } + + TFile * outputfile = new TFile("rowsum.root","RECREATE"); + for (int j = 0;j<7;j++){ + // rowvector_b1_ptr[j]->Print(); + + c1->cd(j+1); + histo[j] = new TH1F(Form("histo[%i]",j),Form("histo[%i]",j),128,0,128); + for (int i = 0; i<128;i++){ + histo[j]->SetBinContent(i+1,rowvector_b1_ptr[j]->operator[](i)); + } + histo[j]->SetMinimum(0); + histo[j]->GetYaxis()->SetLabelSize(0.1); + histo[j]->GetXaxis()->SetLabelSize(0.14); + histo[j]->GetXaxis()->SetNdivisions(15,5,0); + histo[j]->GetYaxis()->SetNdivisions(10,0,0); + histo[j]->Draw(""); + // rowvector_b1_ptr[j]->Draw(""); + // histo[j] = (TH1F*)gDirectory->Get("TVectorF"); + // histo_clone[j] = (TH1F*)histo[j]->Clone(Form("histoclone[%i]",j)); + histo[j]->Fit(f1[j]); + for (int i = 0; i<128;i++){ + cout << f1[j]->Eval(i)/histo[j]->GetBinContent(i+1) << ", " ; + } + histo[j]->Write(); + } + cout << endl; + c1->Update(); + c1->Write(); + + +TCanvas * c2 = new TCanvas("c2","b1",1000,1000); + c2->Divide(1,7); +for (int j = 0;j<7;j++){ + // rowvector_b1_ptr[j]->Print(); + + c2->cd(j+1); + histo_clone[j] = (TH1F*)histo[j]->Clone(Form("histo_clone[%i]",j)); + + histo_clone[j]->Divide(histo[6]); + histo_clone[j]->GetYaxis()->SetLabelSize(0.1); + histo_clone[j]->GetXaxis()->SetLabelSize(0.14); + histo_clone[j]->GetXaxis()->SetNdivisions(15,5,0); + histo_clone[j]->GetYaxis()->SetNdivisions(10,0,0); + histo_clone[j]->SetMinimum(0); + histo_clone[j]->SetMaximum(1.2); + + histo_clone[j]->Draw(); + + } + + outputfile->Write(); + // outputfile->Close(); +} diff --git a/Scripts_20171217/rowsum_b2.C b/Scripts_20171217/rowsum_b2.C new file mode 100644 index 0000000..e8043d4 --- /dev/null +++ b/Scripts_20171217/rowsum_b2.C @@ -0,0 +1,104 @@ +{ + + gROOT->Reset(); + gROOT->ProcessLine(".x lhcbStyle.C"); + +TCanvas * c1 = new TCanvas("c1","b2",1000,1000); + c1->Divide(1,7); +Int_t fileorder[7][7] = {{0,41,42,43,44,45,0},{31,15,11,7,17,23,26},{32,14,10,6,16,22,27},{33,3,2,1,4,5,28},{34,18,12,8,20,24,29},{35,19,13,9,21,25,30},{0,36,37,38,39,40,0}}; + Int_t counter = 0; + TFile *runfile[49]; + TVector * copysumvector_ptr[49]; + TVector * copybeamontime_ptr[49]; + + TVector * rowvector_b0_ptr[7]; + TVector * rowvector_b1_ptr[7]; + TVector * rowvector_b2_ptr[7]; + TVector * rowvector_b3_ptr[7]; + TH1F * histo[7]; + TH1F * histo_clone[7]; + TF1 * f1[7]; + + // rowvector_b0_ptr->ResizeTo(128); + // rowvector_b1_ptr->ResizeTo(128); + // rowvector_b2_ptr->ResizeTo(128); + // rowvector_b3_ptr->ResizeTo(128); + for (int i = 0;i<7;i++){ + rowvector_b2_ptr[i] = new TVector(128); +f1[i] = new TF1(Form("f1[%i]",i),"[0]*(exp(-0.5*(x-[1])^2/(13.7^2))+exp(-0.5*(x-[1]-20/0.8)^2/(13.7^2))+exp(-0.5*(x-[1]-40/0.8)^2/(13.7^2))+exp(-0.5*(x-[1]-60/0.8)^2/(13.7^2))+exp(-0.5*(x-[1]-80/0.8)^2/(13.7^2)) )"); + f1[i]->SetParameters(1E3,20); + } + + for (int i = 0;i<7;i++){ + for (int j = 0;j<7;j++){ + if (fileorder[j][i]==0) { + counter++; + continue; + } + runfile[counter] = new TFile(Form("/work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/root/run%i.root",fileorder[i][j]),"READ"); + runfile[counter]->GetObject("sumvector_b2",copysumvector_ptr[counter]); + runfile[counter]->GetObject("beamontime",copybeamontime_ptr[counter]); + + //copysumvector_ptr[counter]->Print(); + for (int k = 0; k<128; k++){ + rowvector_b2_ptr[i]->operator[](k) += copysumvector_ptr[counter]->operator[](k)/copybeamontime_ptr[counter]->operator[](2); // rowvector_b2_ptr[i] is over i now, not j + } + + runfile[counter]->Close(); + counter++; + } + + + } + + TFile * outputfile = new TFile("rowsum.root","RECREATE"); + for (int j = 0;j<7;j++){ + // rowvector_b2_ptr[j]->Print(); + + c1->cd(j+1); + histo[j] = new TH1F(Form("histo[%i]",j),Form("histo[%i]",j),128,0,128); + for (int i = 0; i<128;i++){ + histo[j]->SetBinContent(i+1,rowvector_b2_ptr[j]->operator[](i)); + } + histo[j]->SetMinimum(0); + histo[j]->GetYaxis()->SetLabelSize(0.1); + histo[j]->GetXaxis()->SetLabelSize(0.14); + histo[j]->GetXaxis()->SetNdivisions(15,5,0); + histo[j]->GetYaxis()->SetNdivisions(10,0,0); + histo[j]->Draw(""); + // rowvector_b2_ptr[j]->Draw(""); + // histo[j] = (TH1F*)gDirectory->Get("TVectorF"); + // histo_clone[j] = (TH1F*)histo[j]->Clone(Form("histoclone[%i]",j)); + histo[j]->Fit(f1[j]); + for (int i = 0; i<128;i++){ + cout << f1[j]->Eval(i)/histo[j]->GetBinContent(i+1) << ", " ; + } + histo[j]->Write(); + } + c1->Update(); + c1->Write(); + + +TCanvas * c2 = new TCanvas("c2","b2",1000,1000); + c2->Divide(1,7); +for (int j = 0;j<7;j++){ + // rowvector_b2_ptr[j]->Print(); + + c2->cd(j+1); + histo_clone[j] = (TH1F*)histo[j]->Clone(Form("histo_clone[%i]",j)); + + histo_clone[j]->Divide(histo[6]); + histo_clone[j]->GetYaxis()->SetLabelSize(0.1); + histo_clone[j]->GetXaxis()->SetLabelSize(0.14); + histo_clone[j]->GetXaxis()->SetNdivisions(15,5,0); + histo_clone[j]->GetYaxis()->SetNdivisions(10,0,0); + histo_clone[j]->SetMinimum(0); + histo_clone[j]->SetMaximum(1.2); + + histo_clone[j]->Draw(); + + } + + outputfile->Write(); + // outputfile->Close(); +} diff --git a/Scripts_20171217/rowsum_b3.C b/Scripts_20171217/rowsum_b3.C new file mode 100644 index 0000000..c76e20a --- /dev/null +++ b/Scripts_20171217/rowsum_b3.C @@ -0,0 +1,104 @@ +{ + + gROOT->Reset(); + gROOT->ProcessLine(".x lhcbStyle.C"); + +TCanvas * c1 = new TCanvas("c1","b3",1000,1000); + c1->Divide(1,7); +Int_t fileorder[7][7] = {{0,41,42,43,44,45,0},{31,15,11,7,17,23,26},{32,14,10,6,16,22,27},{33,3,2,1,4,5,28},{34,18,12,8,20,24,29},{35,19,13,9,21,25,30},{0,36,37,38,39,40,0}}; + Int_t counter = 0; + TFile *runfile[49]; + TVector * copysumvector_ptr[49]; + TVector * copybeamontime_ptr[49]; + + TVector * rowvector_b0_ptr[7]; + TVector * rowvector_b1_ptr[7]; + TVector * rowvector_b2_ptr[7]; + TVector * rowvector_b3_ptr[7]; + TH1F * histo[7]; + TH1F * histo_clone[7]; + TF1 * f1[7]; + + // rowvector_b0_ptr->ResizeTo(128); + // rowvector_b1_ptr->ResizeTo(128); + // rowvector_b2_ptr->ResizeTo(128); + // rowvector_b3_ptr->ResizeTo(128); + for (int i = 0;i<7;i++){ + rowvector_b3_ptr[i] = new TVector(128); +f1[i] = new TF1(Form("f1[%i]",i),"[0]*(exp(-0.5*(x-[1])^2/(13.7^2))+exp(-0.5*(x-[1]+20/0.8)^2/(13.7^2))+exp(-0.5*(x-[1]+40/0.8)^2/(13.7^2))+exp(-0.5*(x-[1]+60/0.8)^2/(13.7^2))+exp(-0.5*(x-[1]+80/0.8)^2/(13.7^2)) )"); + f1[i]->SetParameters(1E3,20); + } + + for (int i = 0;i<7;i++){ + for (int j = 0;j<7;j++){ + if (fileorder[j][i]==0) { + counter++; + continue; + } + runfile[counter] = new TFile(Form("/work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/root/run%i.root",fileorder[i][j]),"READ"); + runfile[counter]->GetObject("sumvector_b3",copysumvector_ptr[counter]); + runfile[counter]->GetObject("beamontime",copybeamontime_ptr[counter]); + + //copysumvector_ptr[counter]->Print(); + for (int k = 0; k<128; k++){ + rowvector_b3_ptr[i]->operator[](k) += copysumvector_ptr[counter]->operator[](k)/copybeamontime_ptr[counter]->operator[](2); // rowvector_b3_ptr[i] is over i now, not j + } + + runfile[counter]->Close(); + counter++; + } + + + } + + TFile * outputfile = new TFile("rowsum.root","RECREATE"); + for (int j = 0;j<7;j++){ + // rowvector_b2_ptr[j]->Print(); + + c1->cd(j+1); + histo[j] = new TH1F(Form("histo[%i]",j),Form("histo[%i]",j),128,0,128); + for (int i = 0; i<128;i++){ + histo[j]->SetBinContent(i+1,rowvector_b3_ptr[j]->operator[](i)); + } + histo[j]->SetMinimum(0); + histo[j]->GetYaxis()->SetLabelSize(0.1); + histo[j]->GetXaxis()->SetLabelSize(0.14); + histo[j]->GetXaxis()->SetNdivisions(15,5,0); + histo[j]->GetYaxis()->SetNdivisions(10,0,0); + histo[j]->Draw(""); + // rowvector_b2_ptr[j]->Draw(""); + // histo[j] = (TH1F*)gDirectory->Get("TVectorF"); + // histo_clone[j] = (TH1F*)histo[j]->Clone(Form("histoclone[%i]",j)); + histo[j]->Fit(f1[j]); + for (int i = 0; i<128;i++){ + cout << f1[j]->Eval(i)/histo[j]->GetBinContent(i+1) << ", " ; + } + histo[j]->Write(); + } + c1->Update(); + c1->Write(); + + +TCanvas * c2 = new TCanvas("c2","b2",1000,1000); + c2->Divide(1,7); +for (int j = 0;j<7;j++){ + // rowvector_b2_ptr[j]->Print(); + + c2->cd(j+1); + histo_clone[j] = (TH1F*)histo[j]->Clone(Form("histo_clone[%i]",j)); + + histo_clone[j]->Divide(histo[6]); + histo_clone[j]->GetYaxis()->SetLabelSize(0.1); + histo_clone[j]->GetXaxis()->SetLabelSize(0.14); + histo_clone[j]->GetXaxis()->SetNdivisions(15,5,0); + histo_clone[j]->GetYaxis()->SetNdivisions(10,0,0); + histo_clone[j]->SetMinimum(0); + histo_clone[j]->SetMaximum(1.2); + + histo_clone[j]->Draw(); + + } + + outputfile->Write(); + // outputfile->Close(); +} diff --git a/Scripts_20171217/runJob.sh b/Scripts_20171217/runJob.sh new file mode 100755 index 0000000..1c1bac4 --- /dev/null +++ b/Scripts_20171217/runJob.sh @@ -0,0 +1,26 @@ +HOME=/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20171217 +mkdir -p $HOME/jobs #make the directory if it doesn't exist +JOB_HOME=$HOME/jobs +rm -rf $JOB_HOME/* #clean up the directory if it does exist +cd $JOB_HOME +for i in {1..49} #199 +do + touch $JOB_HOME/runjob$i.sh + echo "#!/bin/bash" >> $JOB_HOME/runjob$i.sh + echo ". /local/env.sh" >> $JOB_HOME/runjob$i.sh + echo ". /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt" >> $JOB_HOME/runjob$i.sh +# echo ". SetupProject.sh Geant4" >> $JOB_HOME/runjob$i.sh + + echo "source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh" >> $JOB_HOME/runjob$i.sh + #point to the correct CERN ROOT + echo "source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh " >> $JOB_HOME/runjob$i.sh + #include the gsl libraries + echo "export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/work/leverington/gsl-2.4/lib " >> $JOB_HOME/runjob$i.sh + + #execute this command + echo "/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20171217/convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run$i" >> $JOB_HOME/runjob$i.sh + + + qsub -l os=slc6 -l ujl=20 -cwd -j yes $JOB_HOME/runjob$i.sh +sleep 7 +done diff --git a/Scripts_20171217/unnamed.C b/Scripts_20171217/unnamed.C new file mode 100644 index 0000000..ac36690 --- /dev/null +++ b/Scripts_20171217/unnamed.C @@ -0,0 +1,1268 @@ +void unnamed() +{ +//=========Macro generated from canvas: c1/b0 +//========= (Thu Feb 1 14:47:37 2018) by ROOT version6.06/02 + TCanvas *c1 = new TCanvas("c1", "b0",128,71,1000,889); + c1->Range(0,0,1,1); + c1->SetFillColor(0); + c1->SetBorderMode(0); + c1->SetBorderSize(2); + c1->SetFrameBorderMode(0); + +// ------------>Primitives in pad: c1_1 + TPad *c1_1 = new TPad("c1_1", "c1_1",0.01,0.8671429,0.99,0.99); + c1_1->Draw(); + c1_1->cd(); + c1_1->Range(-16,-1.63914e+07,144,1.422199e+08); + c1_1->SetFillColor(0); + c1_1->SetBorderMode(0); + c1_1->SetBorderSize(2); + c1_1->SetFrameBorderMode(0); + c1_1->SetFrameBorderMode(0); + + TH1F *TVectorF__1 = new TH1F("TVectorF__1","",128,0,128); + TVectorF__1->SetBinContent(1,5.010968e+07); + TVectorF__1->SetBinContent(2,5.694854e+07); + TVectorF__1->SetBinContent(3,6.327766e+07); + TVectorF__1->SetBinContent(4,6.455837e+07); + TVectorF__1->SetBinContent(5,6.894157e+07); + TVectorF__1->SetBinContent(6,7.350218e+07); + TVectorF__1->SetBinContent(7,7.685796e+07); + TVectorF__1->SetBinContent(8,7.976252e+07); + TVectorF__1->SetBinContent(9,8.468778e+07); + TVectorF__1->SetBinContent(10,8.754224e+07); + TVectorF__1->SetBinContent(11,8.687398e+07); + TVectorF__1->SetBinContent(12,9.15777e+07); + TVectorF__1->SetBinContent(13,9.20396e+07); + TVectorF__1->SetBinContent(14,1.008313e+08); + TVectorF__1->SetBinContent(15,1.038193e+08); + TVectorF__1->SetBinContent(16,9.9535e+07); + TVectorF__1->SetBinContent(17,1.027733e+08); + TVectorF__1->SetBinContent(18,1.033012e+08); + TVectorF__1->SetBinContent(19,1.018233e+08); + TVectorF__1->SetBinContent(20,9.66928e+07); + TVectorF__1->SetBinContent(21,9.497214e+07); + TVectorF__1->SetBinContent(22,1.001093e+08); + TVectorF__1->SetBinContent(23,9.423133e+07); + TVectorF__1->SetBinContent(24,9.715152e+07); + TVectorF__1->SetBinContent(25,9.821147e+07); + TVectorF__1->SetBinContent(26,1.007677e+08); + TVectorF__1->SetBinContent(27,1.013831e+08); + TVectorF__1->SetBinContent(28,9.940493e+07); + TVectorF__1->SetBinContent(29,9.738397e+07); + TVectorF__1->SetBinContent(30,9.426168e+07); + TVectorF__1->SetBinContent(31,9.2232e+07); + TVectorF__1->SetBinContent(32,9.213248e+07); + TVectorF__1->SetBinContent(33,9.617025e+07); + TVectorF__1->SetBinContent(34,9.241074e+07); + TVectorF__1->SetBinContent(35,9.933639e+07); + TVectorF__1->SetBinContent(36,9.771813e+07); + TVectorF__1->SetBinContent(37,1.003354e+08); + TVectorF__1->SetBinContent(38,1.03511e+08); + TVectorF__1->SetBinContent(39,9.934625e+07); + TVectorF__1->SetBinContent(40,9.578524e+07); + TVectorF__1->SetBinContent(41,9.663662e+07); + TVectorF__1->SetBinContent(42,9.247928e+07); + TVectorF__1->SetBinContent(43,9.518928e+07); + TVectorF__1->SetBinContent(44,9.414478e+07); + TVectorF__1->SetBinContent(45,9.18377e+07); + TVectorF__1->SetBinContent(46,9.562406e+07); + TVectorF__1->SetBinContent(47,9.424328e+07); + TVectorF__1->SetBinContent(48,9.673677e+07); + TVectorF__1->SetBinContent(49,9.162514e+07); + TVectorF__1->SetBinContent(50,9.003471e+07); + TVectorF__1->SetBinContent(51,8.889273e+07); + TVectorF__1->SetBinContent(52,8.335866e+07); + TVectorF__1->SetBinContent(53,9.55103e+07); + TVectorF__1->SetBinContent(54,9.418305e+07); + TVectorF__1->SetBinContent(55,8.898771e+07); + TVectorF__1->SetBinContent(56,8.549881e+07); + TVectorF__1->SetBinContent(57,7.692739e+07); + TVectorF__1->SetBinContent(58,6.422774e+07); + TVectorF__1->SetBinContent(59,4.892031e+07); + TVectorF__1->SetBinContent(60,4.248628e+07); + TVectorF__1->SetBinContent(61,4.229299e+07); + TVectorF__1->SetBinContent(62,4.434085e+07); + TVectorF__1->SetBinContent(63,4.599876e+07); + TVectorF__1->SetBinContent(64,5.63399e+07); + TVectorF__1->SetBinContent(65,9.807571e+07); + TVectorF__1->SetBinContent(66,1.038802e+08); + TVectorF__1->SetBinContent(67,1.050905e+08); + TVectorF__1->SetBinContent(68,1.052091e+08); + TVectorF__1->SetBinContent(69,1.05604e+08); + TVectorF__1->SetBinContent(70,1.059423e+08); + TVectorF__1->SetBinContent(71,1.034923e+08); + TVectorF__1->SetBinContent(72,1.012988e+08); + TVectorF__1->SetBinContent(73,1.002876e+08); + TVectorF__1->SetBinContent(74,9.994814e+07); + TVectorF__1->SetBinContent(75,9.856863e+07); + TVectorF__1->SetBinContent(76,9.830167e+07); + TVectorF__1->SetBinContent(77,1.005087e+08); + TVectorF__1->SetBinContent(78,1.016066e+08); + TVectorF__1->SetBinContent(79,1.038566e+08); + TVectorF__1->SetBinContent(80,1.039514e+08); + TVectorF__1->SetBinContent(81,1.025707e+08); + TVectorF__1->SetBinContent(82,1.043129e+08); + TVectorF__1->SetBinContent(83,1.038424e+08); + TVectorF__1->SetBinContent(84,1.026722e+08); + TVectorF__1->SetBinContent(85,1.039412e+08); + TVectorF__1->SetBinContent(86,9.972002e+07); + TVectorF__1->SetBinContent(87,9.792913e+07); + TVectorF__1->SetBinContent(88,8.953224e+07); + TVectorF__1->SetBinContent(89,7.905731e+07); + TVectorF__1->SetBinContent(90,6.533084e+07); + TVectorF__1->SetBinContent(91,6.653811e+07); + TVectorF__1->SetBinContent(92,7.401902e+07); + TVectorF__1->SetBinContent(93,8.070222e+07); + TVectorF__1->SetBinContent(94,8.555151e+07); + TVectorF__1->SetBinContent(95,9.380797e+07); + TVectorF__1->SetBinContent(96,1.069351e+08); + TVectorF__1->SetBinContent(97,1.141565e+08); + TVectorF__1->SetBinContent(98,1.124815e+08); + TVectorF__1->SetBinContent(99,1.137348e+08); + TVectorF__1->SetBinContent(100,1.151597e+08); + TVectorF__1->SetBinContent(101,1.128599e+08); + TVectorF__1->SetBinContent(102,1.139086e+08); + TVectorF__1->SetBinContent(103,1.147817e+08); + TVectorF__1->SetBinContent(104,1.136045e+08); + TVectorF__1->SetBinContent(105,1.158663e+08); + TVectorF__1->SetBinContent(106,1.180794e+08); + TVectorF__1->SetBinContent(107,1.180033e+08); + TVectorF__1->SetBinContent(108,1.197552e+08); + TVectorF__1->SetBinContent(109,1.180185e+08); + TVectorF__1->SetBinContent(110,1.189995e+08); + TVectorF__1->SetBinContent(111,1.192295e+08); + TVectorF__1->SetBinContent(112,1.228739e+08); + TVectorF__1->SetBinContent(113,1.222518e+08); + TVectorF__1->SetBinContent(114,1.190833e+08); + TVectorF__1->SetBinContent(115,1.200277e+08); + TVectorF__1->SetBinContent(116,1.195856e+08); + TVectorF__1->SetBinContent(117,1.151606e+08); + TVectorF__1->SetBinContent(118,1.143363e+08); + TVectorF__1->SetBinContent(119,1.126304e+08); + TVectorF__1->SetBinContent(120,1.119855e+08); + TVectorF__1->SetBinContent(121,1.055688e+08); + TVectorF__1->SetBinContent(122,1.011967e+08); + TVectorF__1->SetBinContent(123,9.806656e+07); + TVectorF__1->SetBinContent(124,9.25768e+07); + TVectorF__1->SetBinContent(125,8.719582e+07); + TVectorF__1->SetBinContent(126,8.246942e+07); + TVectorF__1->SetBinContent(127,7.929655e+07); + TVectorF__1->SetBinContent(128,7.495161e+07); + TVectorF__1->SetMinimum(-530268.9); + TVectorF__1->SetMaximum(1.263588e+08); + TVectorF__1->SetEntries(128); + TVectorF__1->SetDirectory(0); + + TPaveStats *ptstats = new TPaveStats(0.7791297,0.1321966,0.9795305,0.9397561,"brNDC"); + ptstats->SetName("stats"); + ptstats->SetBorderSize(1); + ptstats->SetFillColor(0); + ptstats->SetTextAlign(12); + ptstats->SetTextFont(42); + TText *AText = ptstats->AddText("TVectorF"); + AText->SetTextSize(0.1857387); + AText = ptstats->AddText("Entries = 128 "); + AText = ptstats->AddText("Mean = 66.71"); + AText = ptstats->AddText("Std Dev = 36.92"); + ptstats->SetOptStat(1111); + ptstats->SetOptFit(0); + ptstats->Draw(); + TVectorF__1->GetListOfFunctions()->Add(ptstats); + ptstats->SetParent(TVectorF__1); + + Int_t ci; // for color index setting + TColor *color; // for color definition with alpha + ci = TColor::GetColor("#000099"); + TVectorF__1->SetLineColor(ci); + TVectorF__1->GetXaxis()->SetLabelFont(42); + TVectorF__1->GetXaxis()->SetLabelSize(0.035); + TVectorF__1->GetXaxis()->SetTitleSize(0.035); + TVectorF__1->GetXaxis()->SetTitleFont(42); + TVectorF__1->GetYaxis()->SetLabelFont(42); + TVectorF__1->GetYaxis()->SetLabelSize(0.035); + TVectorF__1->GetYaxis()->SetTitleSize(0.035); + TVectorF__1->GetYaxis()->SetTitleFont(42); + TVectorF__1->GetZaxis()->SetLabelFont(42); + TVectorF__1->GetZaxis()->SetLabelSize(0.035); + TVectorF__1->GetZaxis()->SetTitleSize(0.035); + TVectorF__1->GetZaxis()->SetTitleFont(42); + TVectorF__1->Draw(""); + c1_1->Modified(); + c1->cd(); + +// ------------>Primitives in pad: c1_2 + TPad *c1_2 = new TPad("c1_2", "c1_2",0.01,0.7242857,0.99,0.8471429); + c1_2->Draw(); + c1_2->cd(); + c1_2->Range(-16,-2.057871e+07,144,1.430358e+08); + c1_2->SetFillColor(0); + c1_2->SetBorderMode(0); + c1_2->SetBorderSize(2); + c1_2->SetFrameBorderMode(0); + c1_2->SetFrameBorderMode(0); + + TH1F *TVectorF__2 = new TH1F("TVectorF__2","",128,0,128); + TVectorF__2->SetBinContent(1,5.534702e+07); + TVectorF__2->SetBinContent(2,5.986441e+07); + TVectorF__2->SetBinContent(3,6.267304e+07); + TVectorF__2->SetBinContent(4,6.478987e+07); + TVectorF__2->SetBinContent(5,6.905578e+07); + TVectorF__2->SetBinContent(6,7.334435e+07); + TVectorF__2->SetBinContent(7,7.738304e+07); + TVectorF__2->SetBinContent(8,8.007649e+07); + TVectorF__2->SetBinContent(9,8.521804e+07); + TVectorF__2->SetBinContent(10,8.803676e+07); + TVectorF__2->SetBinContent(11,8.759162e+07); + TVectorF__2->SetBinContent(12,9.2248e+07); + TVectorF__2->SetBinContent(13,9.300987e+07); + TVectorF__2->SetBinContent(14,1.020653e+08); + TVectorF__2->SetBinContent(15,1.053955e+08); + TVectorF__2->SetBinContent(16,1.008958e+08); + TVectorF__2->SetBinContent(17,1.044429e+08); + TVectorF__2->SetBinContent(18,1.047797e+08); + TVectorF__2->SetBinContent(19,1.035028e+08); + TVectorF__2->SetBinContent(20,9.790007e+07); + TVectorF__2->SetBinContent(21,9.666222e+07); + TVectorF__2->SetBinContent(22,1.013476e+08); + TVectorF__2->SetBinContent(23,9.554922e+07); + TVectorF__2->SetBinContent(24,9.829094e+07); + TVectorF__2->SetBinContent(25,9.969082e+07); + TVectorF__2->SetBinContent(26,1.025139e+08); + TVectorF__2->SetBinContent(27,1.031999e+08); + TVectorF__2->SetBinContent(28,1.008327e+08); + TVectorF__2->SetBinContent(29,9.87751e+07); + TVectorF__2->SetBinContent(30,9.548713e+07); + TVectorF__2->SetBinContent(31,9.352464e+07); + TVectorF__2->SetBinContent(32,9.367871e+07); + TVectorF__2->SetBinContent(33,9.783503e+07); + TVectorF__2->SetBinContent(34,9.400459e+07); + TVectorF__2->SetBinContent(35,1.009621e+08); + TVectorF__2->SetBinContent(36,9.91427e+07); + TVectorF__2->SetBinContent(37,1.018537e+08); + TVectorF__2->SetBinContent(38,1.048828e+08); + TVectorF__2->SetBinContent(39,1.009846e+08); + TVectorF__2->SetBinContent(40,9.737064e+07); + TVectorF__2->SetBinContent(41,9.800455e+07); + TVectorF__2->SetBinContent(42,9.42847e+07); + TVectorF__2->SetBinContent(43,9.661484e+07); + TVectorF__2->SetBinContent(44,9.606518e+07); + TVectorF__2->SetBinContent(45,9.293258e+07); + TVectorF__2->SetBinContent(46,9.66785e+07); + TVectorF__2->SetBinContent(47,9.541833e+07); + TVectorF__2->SetBinContent(48,9.786899e+07); + TVectorF__2->SetBinContent(49,9.278782e+07); + TVectorF__2->SetBinContent(50,9.130968e+07); + TVectorF__2->SetBinContent(51,8.945273e+07); + TVectorF__2->SetBinContent(52,8.388597e+07); + TVectorF__2->SetBinContent(53,9.680278e+07); + TVectorF__2->SetBinContent(54,9.504446e+07); + TVectorF__2->SetBinContent(55,8.95089e+07); + TVectorF__2->SetBinContent(56,8.516931e+07); + TVectorF__2->SetBinContent(57,7.482258e+07); + TVectorF__2->SetBinContent(58,6.11926e+07); + TVectorF__2->SetBinContent(59,4.567426e+07); + TVectorF__2->SetBinContent(60,3.866559e+07); + TVectorF__2->SetBinContent(61,3.837098e+07); + TVectorF__2->SetBinContent(62,4.10716e+07); + TVectorF__2->SetBinContent(63,4.38931e+07); + TVectorF__2->SetBinContent(64,5.526252e+07); + TVectorF__2->SetBinContent(65,1.007705e+08); + TVectorF__2->SetBinContent(66,1.094387e+08); + TVectorF__2->SetBinContent(67,1.108065e+08); + TVectorF__2->SetBinContent(68,1.104811e+08); + TVectorF__2->SetBinContent(69,1.103398e+08); + TVectorF__2->SetBinContent(70,1.10402e+08); + TVectorF__2->SetBinContent(71,1.07812e+08); + TVectorF__2->SetBinContent(72,1.057722e+08); + TVectorF__2->SetBinContent(73,1.04639e+08); + TVectorF__2->SetBinContent(74,1.044494e+08); + TVectorF__2->SetBinContent(75,1.036559e+08); + TVectorF__2->SetBinContent(76,1.033542e+08); + TVectorF__2->SetBinContent(77,1.052952e+08); + TVectorF__2->SetBinContent(78,1.05976e+08); + TVectorF__2->SetBinContent(79,1.080997e+08); + TVectorF__2->SetBinContent(80,1.074914e+08); + TVectorF__2->SetBinContent(81,1.064504e+08); + TVectorF__2->SetBinContent(82,1.080479e+08); + TVectorF__2->SetBinContent(83,1.07105e+08); + TVectorF__2->SetBinContent(84,1.058278e+08); + TVectorF__2->SetBinContent(85,1.069857e+08); + TVectorF__2->SetBinContent(86,1.019862e+08); + TVectorF__2->SetBinContent(87,9.974579e+07); + TVectorF__2->SetBinContent(88,9.128421e+07); + TVectorF__2->SetBinContent(89,8.041642e+07); + TVectorF__2->SetBinContent(90,6.799516e+07); + TVectorF__2->SetBinContent(91,6.890319e+07); + TVectorF__2->SetBinContent(92,7.365394e+07); + TVectorF__2->SetBinContent(93,7.955537e+07); + TVectorF__2->SetBinContent(94,8.508193e+07); + TVectorF__2->SetBinContent(95,9.508597e+07); + TVectorF__2->SetBinContent(96,1.096123e+08); + TVectorF__2->SetBinContent(97,1.185902e+08); + TVectorF__2->SetBinContent(98,1.170665e+08); + TVectorF__2->SetBinContent(99,1.183793e+08); + TVectorF__2->SetBinContent(100,1.202019e+08); + TVectorF__2->SetBinContent(101,1.177175e+08); + TVectorF__2->SetBinContent(102,1.183248e+08); + TVectorF__2->SetBinContent(103,1.19094e+08); + TVectorF__2->SetBinContent(104,1.179842e+08); + TVectorF__2->SetBinContent(105,1.209549e+08); + TVectorF__2->SetBinContent(106,1.229074e+08); + TVectorF__2->SetBinContent(107,1.229499e+08); + TVectorF__2->SetBinContent(108,1.243795e+08); + TVectorF__2->SetBinContent(109,1.2233e+08); + TVectorF__2->SetBinContent(110,1.238272e+08); + TVectorF__2->SetBinContent(111,1.238152e+08); + TVectorF__2->SetBinContent(112,1.273837e+08); + TVectorF__2->SetBinContent(113,1.271061e+08); + TVectorF__2->SetBinContent(114,1.239337e+08); + TVectorF__2->SetBinContent(115,1.244449e+08); + TVectorF__2->SetBinContent(116,1.237498e+08); + TVectorF__2->SetBinContent(117,1.197535e+08); + TVectorF__2->SetBinContent(118,1.186316e+08); + TVectorF__2->SetBinContent(119,1.168019e+08); + TVectorF__2->SetBinContent(120,1.156216e+08); + TVectorF__2->SetBinContent(121,1.095209e+08); + TVectorF__2->SetBinContent(122,1.048313e+08); + TVectorF__2->SetBinContent(123,1.019547e+08); + TVectorF__2->SetBinContent(124,9.587822e+07); + TVectorF__2->SetBinContent(125,9.026976e+07); + TVectorF__2->SetBinContent(126,8.505126e+07); + TVectorF__2->SetBinContent(127,8.229743e+07); + TVectorF__2->SetBinContent(128,8.201575e+07); + TVectorF__2->SetMinimum(-4217264); + TVectorF__2->SetMaximum(1.266743e+08); + TVectorF__2->SetEntries(128); + TVectorF__2->SetDirectory(0); + + ptstats = new TPaveStats(0.7791297,0.2990072,0.9795305,0.9411051,"brNDC"); + ptstats->SetName("stats"); + ptstats->SetBorderSize(1); + ptstats->SetFillColor(0); + ptstats->SetTextAlign(12); + ptstats->SetTextFont(42); + AText = ptstats->AddText("TVectorF"); + AText->SetTextSize(0.1476825); + AText = ptstats->AddText("Entries = 128 "); + AText = ptstats->AddText("Mean = 67.08"); + AText = ptstats->AddText("Std Dev = 36.95"); + ptstats->SetOptStat(1111); + ptstats->SetOptFit(0); + ptstats->Draw(); + TVectorF__2->GetListOfFunctions()->Add(ptstats); + ptstats->SetParent(TVectorF__2); + + ci = TColor::GetColor("#000099"); + TVectorF__2->SetLineColor(ci); + TVectorF__2->GetXaxis()->SetLabelFont(42); + TVectorF__2->GetXaxis()->SetLabelSize(0.035); + TVectorF__2->GetXaxis()->SetTitleSize(0.035); + TVectorF__2->GetXaxis()->SetTitleFont(42); + TVectorF__2->GetYaxis()->SetLabelFont(42); + TVectorF__2->GetYaxis()->SetLabelSize(0.035); + TVectorF__2->GetYaxis()->SetTitleSize(0.035); + TVectorF__2->GetYaxis()->SetTitleFont(42); + TVectorF__2->GetZaxis()->SetLabelFont(42); + TVectorF__2->GetZaxis()->SetLabelSize(0.035); + TVectorF__2->GetZaxis()->SetTitleSize(0.035); + TVectorF__2->GetZaxis()->SetTitleFont(42); + TVectorF__2->Draw(""); + c1_2->Modified(); + c1->cd(); + +// ------------>Primitives in pad: c1_3 + TPad *c1_3 = new TPad("c1_3", "c1_3",0.01,0.5814286,0.99,0.7042857); + c1_3->Draw(); + c1_3->cd(); + c1_3->Range(-16,4.146586e+07,144,1.385099e+08); + c1_3->SetFillColor(0); + c1_3->SetBorderMode(0); + c1_3->SetBorderSize(2); + c1_3->SetFrameBorderMode(0); + c1_3->SetFrameBorderMode(0); + + TH1F *TVectorF__3 = new TH1F("TVectorF__3","",128,0,128); + TVectorF__3->SetBinContent(1,5.469114e+07); + TVectorF__3->SetBinContent(2,5.921274e+07); + TVectorF__3->SetBinContent(3,6.242423e+07); + TVectorF__3->SetBinContent(4,6.473841e+07); + TVectorF__3->SetBinContent(5,6.879766e+07); + TVectorF__3->SetBinContent(6,7.312683e+07); + TVectorF__3->SetBinContent(7,7.681171e+07); + TVectorF__3->SetBinContent(8,7.940479e+07); + TVectorF__3->SetBinContent(9,8.464613e+07); + TVectorF__3->SetBinContent(10,8.754942e+07); + TVectorF__3->SetBinContent(11,8.708362e+07); + TVectorF__3->SetBinContent(12,9.188194e+07); + TVectorF__3->SetBinContent(13,9.251569e+07); + TVectorF__3->SetBinContent(14,1.012837e+08); + TVectorF__3->SetBinContent(15,1.044304e+08); + TVectorF__3->SetBinContent(16,1.005975e+08); + TVectorF__3->SetBinContent(17,1.035695e+08); + TVectorF__3->SetBinContent(18,1.044115e+08); + TVectorF__3->SetBinContent(19,1.030413e+08); + TVectorF__3->SetBinContent(20,9.766754e+07); + TVectorF__3->SetBinContent(21,9.626938e+07); + TVectorF__3->SetBinContent(22,1.011242e+08); + TVectorF__3->SetBinContent(23,9.567083e+07); + TVectorF__3->SetBinContent(24,9.807837e+07); + TVectorF__3->SetBinContent(25,9.939195e+07); + TVectorF__3->SetBinContent(26,1.023845e+08); + TVectorF__3->SetBinContent(27,1.02523e+08); + TVectorF__3->SetBinContent(28,1.003772e+08); + TVectorF__3->SetBinContent(29,9.826561e+07); + TVectorF__3->SetBinContent(30,9.519484e+07); + TVectorF__3->SetBinContent(31,9.297898e+07); + TVectorF__3->SetBinContent(32,9.318126e+07); + TVectorF__3->SetBinContent(33,9.736581e+07); + TVectorF__3->SetBinContent(34,9.349566e+07); + TVectorF__3->SetBinContent(35,1.003499e+08); + TVectorF__3->SetBinContent(36,9.898996e+07); + TVectorF__3->SetBinContent(37,1.012432e+08); + TVectorF__3->SetBinContent(38,1.045886e+08); + TVectorF__3->SetBinContent(39,1.004315e+08); + TVectorF__3->SetBinContent(40,9.726554e+07); + TVectorF__3->SetBinContent(41,9.765994e+07); + TVectorF__3->SetBinContent(42,9.406318e+07); + TVectorF__3->SetBinContent(43,9.671992e+07); + TVectorF__3->SetBinContent(44,9.614237e+07); + TVectorF__3->SetBinContent(45,9.292986e+07); + TVectorF__3->SetBinContent(46,9.671311e+07); + TVectorF__3->SetBinContent(47,9.583126e+07); + TVectorF__3->SetBinContent(48,9.836681e+07); + TVectorF__3->SetBinContent(49,9.318878e+07); + TVectorF__3->SetBinContent(50,9.189483e+07); + TVectorF__3->SetBinContent(51,9.04817e+07); + TVectorF__3->SetBinContent(52,8.490773e+07); + TVectorF__3->SetBinContent(53,9.822764e+07); + TVectorF__3->SetBinContent(54,9.690786e+07); + TVectorF__3->SetBinContent(55,9.24452e+07); + TVectorF__3->SetBinContent(56,9.047318e+07); + TVectorF__3->SetBinContent(57,8.499279e+07); + TVectorF__3->SetBinContent(58,7.765478e+07); + TVectorF__3->SetBinContent(59,6.965503e+07); + TVectorF__3->SetBinContent(60,6.724862e+07); + TVectorF__3->SetBinContent(61,6.94833e+07); + TVectorF__3->SetBinContent(62,7.139094e+07); + TVectorF__3->SetBinContent(63,6.942477e+07); + TVectorF__3->SetBinContent(64,7.373636e+07); + TVectorF__3->SetBinContent(65,1.066023e+08); + TVectorF__3->SetBinContent(66,1.099774e+08); + TVectorF__3->SetBinContent(67,1.105911e+08); + TVectorF__3->SetBinContent(68,1.103706e+08); + TVectorF__3->SetBinContent(69,1.103269e+08); + TVectorF__3->SetBinContent(70,1.10343e+08); + TVectorF__3->SetBinContent(71,1.075615e+08); + TVectorF__3->SetBinContent(72,1.056373e+08); + TVectorF__3->SetBinContent(73,1.050332e+08); + TVectorF__3->SetBinContent(74,1.046551e+08); + TVectorF__3->SetBinContent(75,1.043955e+08); + TVectorF__3->SetBinContent(76,1.037351e+08); + TVectorF__3->SetBinContent(77,1.054152e+08); + TVectorF__3->SetBinContent(78,1.060371e+08); + TVectorF__3->SetBinContent(79,1.078149e+08); + TVectorF__3->SetBinContent(80,1.074545e+08); + TVectorF__3->SetBinContent(81,1.061e+08); + TVectorF__3->SetBinContent(82,1.079302e+08); + TVectorF__3->SetBinContent(83,1.078745e+08); + TVectorF__3->SetBinContent(84,1.07374e+08); + TVectorF__3->SetBinContent(85,1.104353e+08); + TVectorF__3->SetBinContent(86,1.078698e+08); + TVectorF__3->SetBinContent(87,1.098701e+08); + TVectorF__3->SetBinContent(88,1.058889e+08); + TVectorF__3->SetBinContent(89,1.038966e+08); + TVectorF__3->SetBinContent(90,1.008866e+08); + TVectorF__3->SetBinContent(91,1.030902e+08); + TVectorF__3->SetBinContent(92,1.037687e+08); + TVectorF__3->SetBinContent(93,1.06339e+08); + TVectorF__3->SetBinContent(94,1.066884e+08); + TVectorF__3->SetBinContent(95,1.086245e+08); + TVectorF__3->SetBinContent(96,1.140269e+08); + TVectorF__3->SetBinContent(97,1.17651e+08); + TVectorF__3->SetBinContent(98,1.153247e+08); + TVectorF__3->SetBinContent(99,1.164352e+08); + TVectorF__3->SetBinContent(100,1.179581e+08); + TVectorF__3->SetBinContent(101,1.155907e+08); + TVectorF__3->SetBinContent(102,1.161147e+08); + TVectorF__3->SetBinContent(103,1.167738e+08); + TVectorF__3->SetBinContent(104,1.156768e+08); + TVectorF__3->SetBinContent(105,1.18572e+08); + TVectorF__3->SetBinContent(106,1.204506e+08); + TVectorF__3->SetBinContent(107,1.204346e+08); + TVectorF__3->SetBinContent(108,1.22157e+08); + TVectorF__3->SetBinContent(109,1.200904e+08); + TVectorF__3->SetBinContent(110,1.215637e+08); + TVectorF__3->SetBinContent(111,1.217519e+08); + TVectorF__3->SetBinContent(112,1.251086e+08); + TVectorF__3->SetBinContent(113,1.249302e+08); + TVectorF__3->SetBinContent(114,1.219205e+08); + TVectorF__3->SetBinContent(115,1.225654e+08); + TVectorF__3->SetBinContent(116,1.221226e+08); + TVectorF__3->SetBinContent(117,1.178071e+08); + TVectorF__3->SetBinContent(118,1.16698e+08); + TVectorF__3->SetBinContent(119,1.146078e+08); + TVectorF__3->SetBinContent(120,1.138901e+08); + TVectorF__3->SetBinContent(121,1.081439e+08); + TVectorF__3->SetBinContent(122,1.034255e+08); + TVectorF__3->SetBinContent(123,1.004119e+08); + TVectorF__3->SetBinContent(124,9.441551e+07); + TVectorF__3->SetBinContent(125,8.914241e+07); + TVectorF__3->SetBinContent(126,8.407834e+07); + TVectorF__3->SetBinContent(127,8.121582e+07); + TVectorF__3->SetBinContent(128,8.073487e+07); + TVectorF__3->SetEntries(128); + TVectorF__3->SetDirectory(0); + + ptstats = new TPaveStats(0.78,0.775,0.98,0.935,"brNDC"); + ptstats->SetName("stats"); + ptstats->SetBorderSize(1); + ptstats->SetFillColor(0); + ptstats->SetTextAlign(12); + ptstats->SetTextFont(42); + AText = ptstats->AddText("TVectorF"); + AText->SetTextSize(0.0368); + AText = ptstats->AddText("Entries = 128 "); + AText = ptstats->AddText("Mean = 67.24"); + AText = ptstats->AddText("Std Dev = 36.41"); + ptstats->SetOptStat(1111); + ptstats->SetOptFit(0); + ptstats->Draw(); + TVectorF__3->GetListOfFunctions()->Add(ptstats); + ptstats->SetParent(TVectorF__3); + + ci = TColor::GetColor("#000099"); + TVectorF__3->SetLineColor(ci); + TVectorF__3->GetXaxis()->SetLabelFont(42); + TVectorF__3->GetXaxis()->SetLabelSize(0.035); + TVectorF__3->GetXaxis()->SetTitleSize(0.035); + TVectorF__3->GetXaxis()->SetTitleFont(42); + TVectorF__3->GetYaxis()->SetLabelFont(42); + TVectorF__3->GetYaxis()->SetLabelSize(0.035); + TVectorF__3->GetYaxis()->SetTitleSize(0.035); + TVectorF__3->GetYaxis()->SetTitleFont(42); + TVectorF__3->GetZaxis()->SetLabelFont(42); + TVectorF__3->GetZaxis()->SetLabelSize(0.035); + TVectorF__3->GetZaxis()->SetTitleSize(0.035); + TVectorF__3->GetZaxis()->SetTitleFont(42); + TVectorF__3->Draw(""); + c1_3->Modified(); + c1->cd(); + +// ------------>Primitives in pad: c1_4 + TPad *c1_4 = new TPad("c1_4", "c1_4",0.01,0.4385714,0.99,0.5614286); + c1_4->Draw(); + c1_4->cd(); + c1_4->Range(-16,4.259567e+07,144,1.421105e+08); + c1_4->SetFillColor(0); + c1_4->SetBorderMode(0); + c1_4->SetBorderSize(2); + c1_4->SetFrameBorderMode(0); + c1_4->SetFrameBorderMode(0); + + TH1F *TVectorF__4 = new TH1F("TVectorF__4","",128,0,128); + TVectorF__4->SetBinContent(1,5.615768e+07); + TVectorF__4->SetBinContent(2,6.028227e+07); + TVectorF__4->SetBinContent(3,6.359186e+07); + TVectorF__4->SetBinContent(4,6.55256e+07); + TVectorF__4->SetBinContent(5,6.973498e+07); + TVectorF__4->SetBinContent(6,7.41765e+07); + TVectorF__4->SetBinContent(7,7.802785e+07); + TVectorF__4->SetBinContent(8,8.106011e+07); + TVectorF__4->SetBinContent(9,8.617629e+07); + TVectorF__4->SetBinContent(10,8.938442e+07); + TVectorF__4->SetBinContent(11,8.861232e+07); + TVectorF__4->SetBinContent(12,9.359362e+07); + TVectorF__4->SetBinContent(13,9.425718e+07); + TVectorF__4->SetBinContent(14,1.033882e+08); + TVectorF__4->SetBinContent(15,1.065442e+08); + TVectorF__4->SetBinContent(16,1.022559e+08); + TVectorF__4->SetBinContent(17,1.05404e+08); + TVectorF__4->SetBinContent(18,1.063805e+08); + TVectorF__4->SetBinContent(19,1.046578e+08); + TVectorF__4->SetBinContent(20,9.972182e+07); + TVectorF__4->SetBinContent(21,9.786795e+07); + TVectorF__4->SetBinContent(22,1.029463e+08); + TVectorF__4->SetBinContent(23,9.747683e+07); + TVectorF__4->SetBinContent(24,9.991266e+07); + TVectorF__4->SetBinContent(25,1.013014e+08); + TVectorF__4->SetBinContent(26,1.039447e+08); + TVectorF__4->SetBinContent(27,1.045894e+08); + TVectorF__4->SetBinContent(28,1.020554e+08); + TVectorF__4->SetBinContent(29,1.000589e+08); + TVectorF__4->SetBinContent(30,9.69097e+07); + TVectorF__4->SetBinContent(31,9.49532e+07); + TVectorF__4->SetBinContent(32,9.505054e+07); + TVectorF__4->SetBinContent(33,9.920189e+07); + TVectorF__4->SetBinContent(34,9.54557e+07); + TVectorF__4->SetBinContent(35,1.02375e+08); + TVectorF__4->SetBinContent(36,1.006675e+08); + TVectorF__4->SetBinContent(37,1.035916e+08); + TVectorF__4->SetBinContent(38,1.064143e+08); + TVectorF__4->SetBinContent(39,1.018641e+08); + TVectorF__4->SetBinContent(40,9.87368e+07); + TVectorF__4->SetBinContent(41,9.92569e+07); + TVectorF__4->SetBinContent(42,9.576473e+07); + TVectorF__4->SetBinContent(43,9.869382e+07); + TVectorF__4->SetBinContent(44,9.766606e+07); + TVectorF__4->SetBinContent(45,9.425342e+07); + TVectorF__4->SetBinContent(46,9.841184e+07); + TVectorF__4->SetBinContent(47,9.700093e+07); + TVectorF__4->SetBinContent(48,9.95664e+07); + TVectorF__4->SetBinContent(49,9.426368e+07); + TVectorF__4->SetBinContent(50,9.328994e+07); + TVectorF__4->SetBinContent(51,9.214724e+07); + TVectorF__4->SetBinContent(52,8.711986e+07); + TVectorF__4->SetBinContent(53,1.011898e+08); + TVectorF__4->SetBinContent(54,1.004161e+08); + TVectorF__4->SetBinContent(55,9.715866e+07); + TVectorF__4->SetBinContent(56,9.817506e+07); + TVectorF__4->SetBinContent(57,9.720897e+07); + TVectorF__4->SetBinContent(58,9.528442e+07); + TVectorF__4->SetBinContent(59,9.359956e+07); + TVectorF__4->SetBinContent(60,9.480652e+07); + TVectorF__4->SetBinContent(61,9.705731e+07); + TVectorF__4->SetBinContent(62,9.435386e+07); + TVectorF__4->SetBinContent(63,8.49647e+07); + TVectorF__4->SetBinContent(64,8.238414e+07); + TVectorF__4->SetBinContent(65,1.109854e+08); + TVectorF__4->SetBinContent(66,1.132069e+08); + TVectorF__4->SetBinContent(67,1.139015e+08); + TVectorF__4->SetBinContent(68,1.134949e+08); + TVectorF__4->SetBinContent(69,1.133886e+08); + TVectorF__4->SetBinContent(70,1.136364e+08); + TVectorF__4->SetBinContent(71,1.11019e+08); + TVectorF__4->SetBinContent(72,1.090545e+08); + TVectorF__4->SetBinContent(73,1.081471e+08); + TVectorF__4->SetBinContent(74,1.081304e+08); + TVectorF__4->SetBinContent(75,1.078438e+08); + TVectorF__4->SetBinContent(76,1.070811e+08); + TVectorF__4->SetBinContent(77,1.09146e+08); + TVectorF__4->SetBinContent(78,1.09702e+08); + TVectorF__4->SetBinContent(79,1.116292e+08); + TVectorF__4->SetBinContent(80,1.108191e+08); + TVectorF__4->SetBinContent(81,1.097681e+08); + TVectorF__4->SetBinContent(82,1.116673e+08); + TVectorF__4->SetBinContent(83,1.121478e+08); + TVectorF__4->SetBinContent(84,1.121874e+08); + TVectorF__4->SetBinContent(85,1.155807e+08); + TVectorF__4->SetBinContent(86,1.138452e+08); + TVectorF__4->SetBinContent(87,1.168179e+08); + TVectorF__4->SetBinContent(88,1.148709e+08); + TVectorF__4->SetBinContent(89,1.150557e+08); + TVectorF__4->SetBinContent(90,1.143065e+08); + TVectorF__4->SetBinContent(91,1.176325e+08); + TVectorF__4->SetBinContent(92,1.181073e+08); + TVectorF__4->SetBinContent(93,1.198194e+08); + TVectorF__4->SetBinContent(94,1.185265e+08); + TVectorF__4->SetBinContent(95,1.174562e+08); + TVectorF__4->SetBinContent(96,1.192388e+08); + TVectorF__4->SetBinContent(97,1.213188e+08); + TVectorF__4->SetBinContent(98,1.183931e+08); + TVectorF__4->SetBinContent(99,1.194274e+08); + TVectorF__4->SetBinContent(100,1.211206e+08); + TVectorF__4->SetBinContent(101,1.186115e+08); + TVectorF__4->SetBinContent(102,1.188382e+08); + TVectorF__4->SetBinContent(103,1.198423e+08); + TVectorF__4->SetBinContent(104,1.187198e+08); + TVectorF__4->SetBinContent(105,1.214613e+08); + TVectorF__4->SetBinContent(106,1.23391e+08); + TVectorF__4->SetBinContent(107,1.235529e+08); + TVectorF__4->SetBinContent(108,1.247395e+08); + TVectorF__4->SetBinContent(109,1.230479e+08); + TVectorF__4->SetBinContent(110,1.246653e+08); + TVectorF__4->SetBinContent(111,1.248973e+08); + TVectorF__4->SetBinContent(112,1.28368e+08); + TVectorF__4->SetBinContent(113,1.280991e+08); + TVectorF__4->SetBinContent(114,1.25049e+08); + TVectorF__4->SetBinContent(115,1.25947e+08); + TVectorF__4->SetBinContent(116,1.252928e+08); + TVectorF__4->SetBinContent(117,1.206075e+08); + TVectorF__4->SetBinContent(118,1.195423e+08); + TVectorF__4->SetBinContent(119,1.179614e+08); + TVectorF__4->SetBinContent(120,1.172787e+08); + TVectorF__4->SetBinContent(121,1.111846e+08); + TVectorF__4->SetBinContent(122,1.062721e+08); + TVectorF__4->SetBinContent(123,1.031209e+08); + TVectorF__4->SetBinContent(124,9.724164e+07); + TVectorF__4->SetBinContent(125,9.185064e+07); + TVectorF__4->SetBinContent(126,8.647032e+07); + TVectorF__4->SetBinContent(127,8.37269e+07); + TVectorF__4->SetBinContent(128,8.323011e+07); + TVectorF__4->SetEntries(128); + TVectorF__4->SetDirectory(0); + + ptstats = new TPaveStats(0.78,0.775,0.98,0.935,"brNDC"); + ptstats->SetName("stats"); + ptstats->SetBorderSize(1); + ptstats->SetFillColor(0); + ptstats->SetTextAlign(12); + ptstats->SetTextFont(42); + AText = ptstats->AddText("TVectorF"); + AText->SetTextSize(0.0368); + AText = ptstats->AddText("Entries = 128 "); + AText = ptstats->AddText("Mean = 67.44"); + AText = ptstats->AddText("Std Dev = 36.11"); + ptstats->SetOptStat(1111); + ptstats->SetOptFit(0); + ptstats->Draw(); + TVectorF__4->GetListOfFunctions()->Add(ptstats); + ptstats->SetParent(TVectorF__4); + + ci = TColor::GetColor("#000099"); + TVectorF__4->SetLineColor(ci); + TVectorF__4->GetXaxis()->SetLabelFont(42); + TVectorF__4->GetXaxis()->SetLabelSize(0.035); + TVectorF__4->GetXaxis()->SetTitleSize(0.035); + TVectorF__4->GetXaxis()->SetTitleFont(42); + TVectorF__4->GetYaxis()->SetLabelFont(42); + TVectorF__4->GetYaxis()->SetLabelSize(0.035); + TVectorF__4->GetYaxis()->SetTitleSize(0.035); + TVectorF__4->GetYaxis()->SetTitleFont(42); + TVectorF__4->GetZaxis()->SetLabelFont(42); + TVectorF__4->GetZaxis()->SetLabelSize(0.035); + TVectorF__4->GetZaxis()->SetTitleSize(0.035); + TVectorF__4->GetZaxis()->SetTitleFont(42); + TVectorF__4->Draw(""); + c1_4->Modified(); + c1->cd(); + +// ------------>Primitives in pad: c1_5 + TPad *c1_5 = new TPad("c1_5", "c1_5",0.01,0.2957143,0.99,0.4185714); + c1_5->Draw(); + c1_5->cd(); + c1_5->Range(-16,4.400965e+07,144,1.460619e+08); + c1_5->SetFillColor(0); + c1_5->SetBorderMode(0); + c1_5->SetBorderSize(2); + c1_5->SetFrameBorderMode(0); + c1_5->SetFrameBorderMode(0); + + TH1F *TVectorF__5 = new TH1F("TVectorF__5","",128,0,128); + TVectorF__5->SetBinContent(1,5.791745e+07); + TVectorF__5->SetBinContent(2,6.22807e+07); + TVectorF__5->SetBinContent(3,6.519225e+07); + TVectorF__5->SetBinContent(4,6.718416e+07); + TVectorF__5->SetBinContent(5,7.195068e+07); + TVectorF__5->SetBinContent(6,7.613642e+07); + TVectorF__5->SetBinContent(7,8.017805e+07); + TVectorF__5->SetBinContent(8,8.322988e+07); + TVectorF__5->SetBinContent(9,8.830899e+07); + TVectorF__5->SetBinContent(10,9.138224e+07); + TVectorF__5->SetBinContent(11,9.106387e+07); + TVectorF__5->SetBinContent(12,9.614556e+07); + TVectorF__5->SetBinContent(13,9.66388e+07); + TVectorF__5->SetBinContent(14,1.059115e+08); + TVectorF__5->SetBinContent(15,1.090954e+08); + TVectorF__5->SetBinContent(16,1.046735e+08); + TVectorF__5->SetBinContent(17,1.082508e+08); + TVectorF__5->SetBinContent(18,1.089165e+08); + TVectorF__5->SetBinContent(19,1.069406e+08); + TVectorF__5->SetBinContent(20,1.020073e+08); + TVectorF__5->SetBinContent(21,1.00388e+08); + TVectorF__5->SetBinContent(22,1.055463e+08); + TVectorF__5->SetBinContent(23,9.970712e+07); + TVectorF__5->SetBinContent(24,1.019562e+08); + TVectorF__5->SetBinContent(25,1.035366e+08); + TVectorF__5->SetBinContent(26,1.063957e+08); + TVectorF__5->SetBinContent(27,1.067287e+08); + TVectorF__5->SetBinContent(28,1.044912e+08); + TVectorF__5->SetBinContent(29,1.025799e+08); + TVectorF__5->SetBinContent(30,9.919201e+07); + TVectorF__5->SetBinContent(31,9.67602e+07); + TVectorF__5->SetBinContent(32,9.730365e+07); + TVectorF__5->SetBinContent(33,1.018602e+08); + TVectorF__5->SetBinContent(34,9.787733e+07); + TVectorF__5->SetBinContent(35,1.048436e+08); + TVectorF__5->SetBinContent(36,1.030914e+08); + TVectorF__5->SetBinContent(37,1.059079e+08); + TVectorF__5->SetBinContent(38,1.088859e+08); + TVectorF__5->SetBinContent(39,1.04824e+08); + TVectorF__5->SetBinContent(40,1.016348e+08); + TVectorF__5->SetBinContent(41,1.02e+08); + TVectorF__5->SetBinContent(42,9.845544e+07); + TVectorF__5->SetBinContent(43,1.013989e+08); + TVectorF__5->SetBinContent(44,1.005161e+08); + TVectorF__5->SetBinContent(45,9.675147e+07); + TVectorF__5->SetBinContent(46,1.012651e+08); + TVectorF__5->SetBinContent(47,1.001611e+08); + TVectorF__5->SetBinContent(48,1.027287e+08); + TVectorF__5->SetBinContent(49,9.733915e+07); + TVectorF__5->SetBinContent(50,9.610967e+07); + TVectorF__5->SetBinContent(51,9.545966e+07); + TVectorF__5->SetBinContent(52,9.036939e+07); + TVectorF__5->SetBinContent(53,1.051249e+08); + TVectorF__5->SetBinContent(54,1.047673e+08); + TVectorF__5->SetBinContent(55,1.01595e+08); + TVectorF__5->SetBinContent(56,1.029204e+08); + TVectorF__5->SetBinContent(57,1.024578e+08); + TVectorF__5->SetBinContent(58,1.006833e+08); + TVectorF__5->SetBinContent(59,1.00075e+08); + TVectorF__5->SetBinContent(60,1.019246e+08); + TVectorF__5->SetBinContent(61,1.037536e+08); + TVectorF__5->SetBinContent(62,9.997315e+07); + TVectorF__5->SetBinContent(63,8.932334e+07); + TVectorF__5->SetBinContent(64,8.572129e+07); + TVectorF__5->SetBinContent(65,1.143895e+08); + TVectorF__5->SetBinContent(66,1.16907e+08); + TVectorF__5->SetBinContent(67,1.175751e+08); + TVectorF__5->SetBinContent(68,1.173345e+08); + TVectorF__5->SetBinContent(69,1.169593e+08); + TVectorF__5->SetBinContent(70,1.169384e+08); + TVectorF__5->SetBinContent(71,1.141466e+08); + TVectorF__5->SetBinContent(72,1.123845e+08); + TVectorF__5->SetBinContent(73,1.111707e+08); + TVectorF__5->SetBinContent(74,1.114684e+08); + TVectorF__5->SetBinContent(75,1.108634e+08); + TVectorF__5->SetBinContent(76,1.098895e+08); + TVectorF__5->SetBinContent(77,1.116755e+08); + TVectorF__5->SetBinContent(78,1.123299e+08); + TVectorF__5->SetBinContent(79,1.143007e+08); + TVectorF__5->SetBinContent(80,1.138376e+08); + TVectorF__5->SetBinContent(81,1.127378e+08); + TVectorF__5->SetBinContent(82,1.144751e+08); + TVectorF__5->SetBinContent(83,1.151387e+08); + TVectorF__5->SetBinContent(84,1.152583e+08); + TVectorF__5->SetBinContent(85,1.187418e+08); + TVectorF__5->SetBinContent(86,1.171846e+08); + TVectorF__5->SetBinContent(87,1.201552e+08); + TVectorF__5->SetBinContent(88,1.184655e+08); + TVectorF__5->SetBinContent(89,1.190258e+08); + TVectorF__5->SetBinContent(90,1.184467e+08); + TVectorF__5->SetBinContent(91,1.221981e+08); + TVectorF__5->SetBinContent(92,1.222644e+08); + TVectorF__5->SetBinContent(93,1.242342e+08); + TVectorF__5->SetBinContent(94,1.226922e+08); + TVectorF__5->SetBinContent(95,1.216419e+08); + TVectorF__5->SetBinContent(96,1.232796e+08); + TVectorF__5->SetBinContent(97,1.248578e+08); + TVectorF__5->SetBinContent(98,1.222668e+08); + TVectorF__5->SetBinContent(99,1.23192e+08); + TVectorF__5->SetBinContent(100,1.250456e+08); + TVectorF__5->SetBinContent(101,1.220925e+08); + TVectorF__5->SetBinContent(102,1.229616e+08); + TVectorF__5->SetBinContent(103,1.235876e+08); + TVectorF__5->SetBinContent(104,1.22456e+08); + TVectorF__5->SetBinContent(105,1.252655e+08); + TVectorF__5->SetBinContent(106,1.271543e+08); + TVectorF__5->SetBinContent(107,1.271761e+08); + TVectorF__5->SetBinContent(108,1.285801e+08); + TVectorF__5->SetBinContent(109,1.268911e+08); + TVectorF__5->SetBinContent(110,1.285189e+08); + TVectorF__5->SetBinContent(111,1.287583e+08); + TVectorF__5->SetBinContent(112,1.31969e+08); + TVectorF__5->SetBinContent(113,1.319136e+08); + TVectorF__5->SetBinContent(114,1.284082e+08); + TVectorF__5->SetBinContent(115,1.296548e+08); + TVectorF__5->SetBinContent(116,1.293073e+08); + TVectorF__5->SetBinContent(117,1.245509e+08); + TVectorF__5->SetBinContent(118,1.235853e+08); + TVectorF__5->SetBinContent(119,1.216929e+08); + TVectorF__5->SetBinContent(120,1.209081e+08); + TVectorF__5->SetBinContent(121,1.142373e+08); + TVectorF__5->SetBinContent(122,1.099074e+08); + TVectorF__5->SetBinContent(123,1.066246e+08); + TVectorF__5->SetBinContent(124,1.002089e+08); + TVectorF__5->SetBinContent(125,9.453779e+07); + TVectorF__5->SetBinContent(126,8.94183e+07); + TVectorF__5->SetBinContent(127,8.629024e+07); + TVectorF__5->SetBinContent(128,8.585516e+07); + TVectorF__5->SetEntries(128); + TVectorF__5->SetDirectory(0); + + ptstats = new TPaveStats(0.78,0.775,0.98,0.935,"brNDC"); + ptstats->SetName("stats"); + ptstats->SetBorderSize(1); + ptstats->SetFillColor(0); + ptstats->SetTextAlign(12); + ptstats->SetTextFont(42); + AText = ptstats->AddText("TVectorF"); + AText->SetTextSize(0.0368); + AText = ptstats->AddText("Entries = 128 "); + AText = ptstats->AddText("Mean = 67.5"); + AText = ptstats->AddText("Std Dev = 36.07"); + ptstats->SetOptStat(1111); + ptstats->SetOptFit(0); + ptstats->Draw(); + TVectorF__5->GetListOfFunctions()->Add(ptstats); + ptstats->SetParent(TVectorF__5); + + ci = TColor::GetColor("#000099"); + TVectorF__5->SetLineColor(ci); + TVectorF__5->GetXaxis()->SetLabelFont(42); + TVectorF__5->GetXaxis()->SetLabelSize(0.035); + TVectorF__5->GetXaxis()->SetTitleSize(0.035); + TVectorF__5->GetXaxis()->SetTitleFont(42); + TVectorF__5->GetYaxis()->SetLabelFont(42); + TVectorF__5->GetYaxis()->SetLabelSize(0.035); + TVectorF__5->GetYaxis()->SetTitleSize(0.035); + TVectorF__5->GetYaxis()->SetTitleFont(42); + TVectorF__5->GetZaxis()->SetLabelFont(42); + TVectorF__5->GetZaxis()->SetLabelSize(0.035); + TVectorF__5->GetZaxis()->SetTitleSize(0.035); + TVectorF__5->GetZaxis()->SetTitleFont(42); + TVectorF__5->Draw(""); + c1_5->Modified(); + c1->cd(); + +// ------------>Primitives in pad: c1_6 + TPad *c1_6 = new TPad("c1_6", "c1_6",0.01,0.1528571,0.99,0.2757143); + c1_6->Draw(); + c1_6->cd(); + c1_6->Range(-16,4.582998e+07,144,1.54092e+08); + c1_6->SetFillColor(0); + c1_6->SetBorderMode(0); + c1_6->SetBorderSize(2); + c1_6->SetFrameBorderMode(0); + c1_6->SetFrameBorderMode(0); + + TH1F *TVectorF__6 = new TH1F("TVectorF__6","",128,0,128); + TVectorF__6->SetBinContent(1,6.058406e+07); + TVectorF__6->SetBinContent(2,6.460018e+07); + TVectorF__6->SetBinContent(3,6.775014e+07); + TVectorF__6->SetBinContent(4,6.975462e+07); + TVectorF__6->SetBinContent(5,7.447846e+07); + TVectorF__6->SetBinContent(6,7.908621e+07); + TVectorF__6->SetBinContent(7,8.31685e+07); + TVectorF__6->SetBinContent(8,8.634004e+07); + TVectorF__6->SetBinContent(9,9.188863e+07); + TVectorF__6->SetBinContent(10,9.522338e+07); + TVectorF__6->SetBinContent(11,9.525758e+07); + TVectorF__6->SetBinContent(12,1.003618e+08); + TVectorF__6->SetBinContent(13,1.009041e+08); + TVectorF__6->SetBinContent(14,1.107323e+08); + TVectorF__6->SetBinContent(15,1.143116e+08); + TVectorF__6->SetBinContent(16,1.097268e+08); + TVectorF__6->SetBinContent(17,1.133081e+08); + TVectorF__6->SetBinContent(18,1.143623e+08); + TVectorF__6->SetBinContent(19,1.126949e+08); + TVectorF__6->SetBinContent(20,1.071242e+08); + TVectorF__6->SetBinContent(21,1.055876e+08); + TVectorF__6->SetBinContent(22,1.109053e+08); + TVectorF__6->SetBinContent(23,1.042991e+08); + TVectorF__6->SetBinContent(24,1.073274e+08); + TVectorF__6->SetBinContent(25,1.091078e+08); + TVectorF__6->SetBinContent(26,1.112429e+08); + TVectorF__6->SetBinContent(27,1.12527e+08); + TVectorF__6->SetBinContent(28,1.099913e+08); + TVectorF__6->SetBinContent(29,1.081135e+08); + TVectorF__6->SetBinContent(30,1.045174e+08); + TVectorF__6->SetBinContent(31,1.020933e+08); + TVectorF__6->SetBinContent(32,1.028022e+08); + TVectorF__6->SetBinContent(33,1.076346e+08); + TVectorF__6->SetBinContent(34,1.034755e+08); + TVectorF__6->SetBinContent(35,1.11e+08); + TVectorF__6->SetBinContent(36,1.08782e+08); + TVectorF__6->SetBinContent(37,1.117133e+08); + TVectorF__6->SetBinContent(38,1.148692e+08); + TVectorF__6->SetBinContent(39,1.101084e+08); + TVectorF__6->SetBinContent(40,1.072383e+08); + TVectorF__6->SetBinContent(41,1.078574e+08); + TVectorF__6->SetBinContent(42,1.037307e+08); + TVectorF__6->SetBinContent(43,1.068175e+08); + TVectorF__6->SetBinContent(44,1.057951e+08); + TVectorF__6->SetBinContent(45,1.019624e+08); + TVectorF__6->SetBinContent(46,1.065256e+08); + TVectorF__6->SetBinContent(47,1.055944e+08); + TVectorF__6->SetBinContent(48,1.078054e+08); + TVectorF__6->SetBinContent(49,1.02595e+08); + TVectorF__6->SetBinContent(50,1.013542e+08); + TVectorF__6->SetBinContent(51,9.996662e+07); + TVectorF__6->SetBinContent(52,9.46951e+07); + TVectorF__6->SetBinContent(53,1.114135e+08); + TVectorF__6->SetBinContent(54,1.10875e+08); + TVectorF__6->SetBinContent(55,1.072945e+08); + TVectorF__6->SetBinContent(56,1.090629e+08); + TVectorF__6->SetBinContent(57,1.082701e+08); + TVectorF__6->SetBinContent(58,1.068869e+08); + TVectorF__6->SetBinContent(59,1.066683e+08); + TVectorF__6->SetBinContent(60,1.078379e+08); + TVectorF__6->SetBinContent(61,1.098611e+08); + TVectorF__6->SetBinContent(62,1.060934e+08); + TVectorF__6->SetBinContent(63,9.442313e+07); + TVectorF__6->SetBinContent(64,9.066105e+07); + TVectorF__6->SetBinContent(65,1.209017e+08); + TVectorF__6->SetBinContent(66,1.233521e+08); + TVectorF__6->SetBinContent(67,1.246349e+08); + TVectorF__6->SetBinContent(68,1.240331e+08); + TVectorF__6->SetBinContent(69,1.235565e+08); + TVectorF__6->SetBinContent(70,1.240073e+08); + TVectorF__6->SetBinContent(71,1.207226e+08); + TVectorF__6->SetBinContent(72,1.187728e+08); + TVectorF__6->SetBinContent(73,1.180282e+08); + TVectorF__6->SetBinContent(74,1.176006e+08); + TVectorF__6->SetBinContent(75,1.174199e+08); + TVectorF__6->SetBinContent(76,1.163651e+08); + TVectorF__6->SetBinContent(77,1.181316e+08); + TVectorF__6->SetBinContent(78,1.191123e+08); + TVectorF__6->SetBinContent(79,1.211179e+08); + TVectorF__6->SetBinContent(80,1.202635e+08); + TVectorF__6->SetBinContent(81,1.193759e+08); + TVectorF__6->SetBinContent(82,1.211201e+08); + TVectorF__6->SetBinContent(83,1.217748e+08); + TVectorF__6->SetBinContent(84,1.215372e+08); + TVectorF__6->SetBinContent(85,1.253165e+08); + TVectorF__6->SetBinContent(86,1.238103e+08); + TVectorF__6->SetBinContent(87,1.272584e+08); + TVectorF__6->SetBinContent(88,1.250213e+08); + TVectorF__6->SetBinContent(89,1.256477e+08); + TVectorF__6->SetBinContent(90,1.252411e+08); + TVectorF__6->SetBinContent(91,1.292143e+08); + TVectorF__6->SetBinContent(92,1.292569e+08); + TVectorF__6->SetBinContent(93,1.314736e+08); + TVectorF__6->SetBinContent(94,1.292484e+08); + TVectorF__6->SetBinContent(95,1.286703e+08); + TVectorF__6->SetBinContent(96,1.29951e+08); + TVectorF__6->SetBinContent(97,1.316761e+08); + TVectorF__6->SetBinContent(98,1.28887e+08); + TVectorF__6->SetBinContent(99,1.299361e+08); + TVectorF__6->SetBinContent(100,1.315207e+08); + TVectorF__6->SetBinContent(101,1.286027e+08); + TVectorF__6->SetBinContent(102,1.293792e+08); + TVectorF__6->SetBinContent(103,1.300664e+08); + TVectorF__6->SetBinContent(104,1.290745e+08); + TVectorF__6->SetBinContent(105,1.316172e+08); + TVectorF__6->SetBinContent(106,1.335808e+08); + TVectorF__6->SetBinContent(107,1.34009e+08); + TVectorF__6->SetBinContent(108,1.355165e+08); + TVectorF__6->SetBinContent(109,1.335903e+08); + TVectorF__6->SetBinContent(110,1.354099e+08); + TVectorF__6->SetBinContent(111,1.353985e+08); + TVectorF__6->SetBinContent(112,1.389281e+08); + TVectorF__6->SetBinContent(113,1.391415e+08); + TVectorF__6->SetBinContent(114,1.354762e+08); + TVectorF__6->SetBinContent(115,1.367014e+08); + TVectorF__6->SetBinContent(116,1.362484e+08); + TVectorF__6->SetBinContent(117,1.312598e+08); + TVectorF__6->SetBinContent(118,1.303701e+08); + TVectorF__6->SetBinContent(119,1.281474e+08); + TVectorF__6->SetBinContent(120,1.273798e+08); + TVectorF__6->SetBinContent(121,1.207376e+08); + TVectorF__6->SetBinContent(122,1.16044e+08); + TVectorF__6->SetBinContent(123,1.123227e+08); + TVectorF__6->SetBinContent(124,1.060015e+08); + TVectorF__6->SetBinContent(125,1.001391e+08); + TVectorF__6->SetBinContent(126,9.462215e+07); + TVectorF__6->SetBinContent(127,9.174668e+07); + TVectorF__6->SetBinContent(128,9.116845e+07); + TVectorF__6->SetEntries(128); + TVectorF__6->SetDirectory(0); + + ptstats = new TPaveStats(0.78,0.775,0.98,0.935,"brNDC"); + ptstats->SetName("stats"); + ptstats->SetBorderSize(1); + ptstats->SetFillColor(0); + ptstats->SetTextAlign(12); + ptstats->SetTextFont(42); + AText = ptstats->AddText("TVectorF"); + AText->SetTextSize(0.0368); + AText = ptstats->AddText("Entries = 128 "); + AText = ptstats->AddText("Mean = 67.59"); + AText = ptstats->AddText("Std Dev = 36.02"); + ptstats->SetOptStat(1111); + ptstats->SetOptFit(0); + ptstats->Draw(); + TVectorF__6->GetListOfFunctions()->Add(ptstats); + ptstats->SetParent(TVectorF__6); + + ci = TColor::GetColor("#000099"); + TVectorF__6->SetLineColor(ci); + TVectorF__6->GetXaxis()->SetLabelFont(42); + TVectorF__6->GetXaxis()->SetLabelSize(0.035); + TVectorF__6->GetXaxis()->SetTitleSize(0.035); + TVectorF__6->GetXaxis()->SetTitleFont(42); + TVectorF__6->GetYaxis()->SetLabelFont(42); + TVectorF__6->GetYaxis()->SetLabelSize(0.035); + TVectorF__6->GetYaxis()->SetTitleSize(0.035); + TVectorF__6->GetYaxis()->SetTitleFont(42); + TVectorF__6->GetZaxis()->SetLabelFont(42); + TVectorF__6->GetZaxis()->SetLabelSize(0.035); + TVectorF__6->GetZaxis()->SetTitleSize(0.035); + TVectorF__6->GetZaxis()->SetTitleFont(42); + TVectorF__6->Draw(""); + c1_6->Modified(); + c1->cd(); + +// ------------>Primitives in pad: c1_7 + TPad *c1_7 = new TPad("c1_7", "c1_7",0.01,0.01,0.99,0.1328571); + c1_7->Draw(); + c1_7->cd(); + c1_7->Range(-16,-2.800115e+07,144,2.390326e+08); + c1_7->SetFillColor(0); + c1_7->SetBorderMode(0); + c1_7->SetBorderSize(2); + c1_7->SetFrameBorderMode(0); + c1_7->SetFrameBorderMode(0); + + TH1F *TVectorF__7 = new TH1F("TVectorF__7","",128,0,128); + TVectorF__7->SetBinContent(1,6.441422e+07); + TVectorF__7->SetBinContent(2,7.364782e+07); + TVectorF__7->SetBinContent(3,7.899302e+07); + TVectorF__7->SetBinContent(4,8.035218e+07); + TVectorF__7->SetBinContent(5,8.603366e+07); + TVectorF__7->SetBinContent(6,9.125464e+07); + TVectorF__7->SetBinContent(7,9.555515e+07); + TVectorF__7->SetBinContent(8,9.923179e+07); + TVectorF__7->SetBinContent(9,1.055503e+08); + TVectorF__7->SetBinContent(10,1.094482e+08); + TVectorF__7->SetBinContent(11,1.09208e+08); + TVectorF__7->SetBinContent(12,1.149396e+08); + TVectorF__7->SetBinContent(13,1.156414e+08); + TVectorF__7->SetBinContent(14,1.257422e+08); + TVectorF__7->SetBinContent(15,1.298268e+08); + TVectorF__7->SetBinContent(16,1.256456e+08); + TVectorF__7->SetBinContent(17,1.295187e+08); + TVectorF__7->SetBinContent(18,1.300839e+08); + TVectorF__7->SetBinContent(19,1.29228e+08); + TVectorF__7->SetBinContent(20,1.232884e+08); + TVectorF__7->SetBinContent(21,1.207394e+08); + TVectorF__7->SetBinContent(22,1.275877e+08); + TVectorF__7->SetBinContent(23,1.203928e+08); + TVectorF__7->SetBinContent(24,1.227514e+08); + TVectorF__7->SetBinContent(25,1.247782e+08); + TVectorF__7->SetBinContent(26,1.280923e+08); + TVectorF__7->SetBinContent(27,1.279164e+08); + TVectorF__7->SetBinContent(28,1.253073e+08); + TVectorF__7->SetBinContent(29,1.237513e+08); + TVectorF__7->SetBinContent(30,1.194929e+08); + TVectorF__7->SetBinContent(31,1.176427e+08); + TVectorF__7->SetBinContent(32,1.182599e+08); + TVectorF__7->SetBinContent(33,1.230587e+08); + TVectorF__7->SetBinContent(34,1.178417e+08); + TVectorF__7->SetBinContent(35,1.267378e+08); + TVectorF__7->SetBinContent(36,1.241748e+08); + TVectorF__7->SetBinContent(37,1.273869e+08); + TVectorF__7->SetBinContent(38,1.310414e+08); + TVectorF__7->SetBinContent(39,1.263616e+08); + TVectorF__7->SetBinContent(40,1.225244e+08); + TVectorF__7->SetBinContent(41,1.239318e+08); + TVectorF__7->SetBinContent(42,1.193972e+08); + TVectorF__7->SetBinContent(43,1.223319e+08); + TVectorF__7->SetBinContent(44,1.213827e+08); + TVectorF__7->SetBinContent(45,1.179495e+08); + TVectorF__7->SetBinContent(46,1.22158e+08); + TVectorF__7->SetBinContent(47,1.20696e+08); + TVectorF__7->SetBinContent(48,1.242809e+08); + TVectorF__7->SetBinContent(49,1.171382e+08); + TVectorF__7->SetBinContent(50,1.153884e+08); + TVectorF__7->SetBinContent(51,1.151171e+08); + TVectorF__7->SetBinContent(52,1.156518e+08); + TVectorF__7->SetBinContent(53,1.30375e+08); + TVectorF__7->SetBinContent(54,1.292237e+08); + TVectorF__7->SetBinContent(55,1.252844e+08); + TVectorF__7->SetBinContent(56,1.270202e+08); + TVectorF__7->SetBinContent(57,1.268542e+08); + TVectorF__7->SetBinContent(58,1.252655e+08); + TVectorF__7->SetBinContent(59,1.248975e+08); + TVectorF__7->SetBinContent(60,1.26757e+08); + TVectorF__7->SetBinContent(61,1.287523e+08); + TVectorF__7->SetBinContent(62,1.269365e+08); + TVectorF__7->SetBinContent(63,1.235479e+08); + TVectorF__7->SetBinContent(64,1.285604e+08); + TVectorF__7->SetBinContent(65,1.453085e+08); + TVectorF__7->SetBinContent(66,1.431395e+08); + TVectorF__7->SetBinContent(67,1.42666e+08); + TVectorF__7->SetBinContent(68,1.422222e+08); + TVectorF__7->SetBinContent(69,1.420137e+08); + TVectorF__7->SetBinContent(70,1.423349e+08); + TVectorF__7->SetBinContent(71,1.390434e+08); + TVectorF__7->SetBinContent(72,1.366087e+08); + TVectorF__7->SetBinContent(73,1.356984e+08); + TVectorF__7->SetBinContent(74,1.353251e+08); + TVectorF__7->SetBinContent(75,1.350389e+08); + TVectorF__7->SetBinContent(76,1.339285e+08); + TVectorF__7->SetBinContent(77,1.360414e+08); + TVectorF__7->SetBinContent(78,1.363379e+08); + TVectorF__7->SetBinContent(79,1.378522e+08); + TVectorF__7->SetBinContent(80,1.381734e+08); + TVectorF__7->SetBinContent(81,1.366564e+08); + TVectorF__7->SetBinContent(82,1.38197e+08); + TVectorF__7->SetBinContent(83,1.391999e+08); + TVectorF__7->SetBinContent(84,1.398116e+08); + TVectorF__7->SetBinContent(85,1.434673e+08); + TVectorF__7->SetBinContent(86,1.41188e+08); + TVectorF__7->SetBinContent(87,1.459232e+08); + TVectorF__7->SetBinContent(88,1.433376e+08); + TVectorF__7->SetBinContent(89,1.44047e+08); + TVectorF__7->SetBinContent(90,1.441704e+08); + TVectorF__7->SetBinContent(91,1.482757e+08); + TVectorF__7->SetBinContent(92,1.480849e+08); + TVectorF__7->SetBinContent(93,1.514032e+08); + TVectorF__7->SetBinContent(94,1.487975e+08); + TVectorF__7->SetBinContent(95,1.477672e+08); + TVectorF__7->SetBinContent(96,1.492772e+08); + TVectorF__7->SetBinContent(97,1.515909e+08); + TVectorF__7->SetBinContent(98,1.476536e+08); + TVectorF__7->SetBinContent(99,1.492547e+08); + TVectorF__7->SetBinContent(100,1.515119e+08); + TVectorF__7->SetBinContent(101,1.475872e+08); + TVectorF__7->SetBinContent(102,1.488255e+08); + TVectorF__7->SetBinContent(103,1.501198e+08); + TVectorF__7->SetBinContent(104,1.483555e+08); + TVectorF__7->SetBinContent(105,1.514659e+08); + TVectorF__7->SetBinContent(106,1.542594e+08); + TVectorF__7->SetBinContent(107,1.542601e+08); + TVectorF__7->SetBinContent(108,1.551265e+08); + TVectorF__7->SetBinContent(109,1.534842e+08); + TVectorF__7->SetBinContent(110,1.555267e+08); + TVectorF__7->SetBinContent(111,1.549075e+08); + TVectorF__7->SetBinContent(112,1.592932e+08); + TVectorF__7->SetBinContent(113,1.598729e+08); + TVectorF__7->SetBinContent(114,1.547276e+08); + TVectorF__7->SetBinContent(115,1.558127e+08); + TVectorF__7->SetBinContent(116,1.56212e+08); + TVectorF__7->SetBinContent(117,1.504944e+08); + TVectorF__7->SetBinContent(118,1.496208e+08); + TVectorF__7->SetBinContent(119,1.468328e+08); + TVectorF__7->SetBinContent(120,1.459586e+08); + TVectorF__7->SetBinContent(121,1.383157e+08); + TVectorF__7->SetBinContent(122,1.326969e+08); + TVectorF__7->SetBinContent(123,1.285596e+08); + TVectorF__7->SetBinContent(124,1.213254e+08); + TVectorF__7->SetBinContent(125,1.144667e+08); + TVectorF__7->SetBinContent(126,1.085453e+08); + TVectorF__7->SetBinContent(127,1.050863e+08); + TVectorF__7->SetBinContent(128,9.684794e+07); + TVectorF__7->SetMinimum(-1297770); + TVectorF__7->SetMaximum(2.123292e+08); + TVectorF__7->SetEntries(128); + TVectorF__7->SetDirectory(0); + + ptstats = new TPaveStats(0.78,0.775,0.98,0.935,"brNDC"); + ptstats->SetName("stats"); + ptstats->SetBorderSize(1); + ptstats->SetFillColor(0); + ptstats->SetTextAlign(12); + ptstats->SetTextFont(42); + AText = ptstats->AddText("TVectorF"); + AText->SetTextSize(0.0368); + AText = ptstats->AddText("Entries = 128 "); + AText = ptstats->AddText("Mean = 67.56"); + AText = ptstats->AddText("Std Dev = 35.9"); + ptstats->SetOptStat(1111); + ptstats->SetOptFit(0); + ptstats->Draw(); + TVectorF__7->GetListOfFunctions()->Add(ptstats); + ptstats->SetParent(TVectorF__7); + + ci = TColor::GetColor("#000099"); + TVectorF__7->SetLineColor(ci); + TVectorF__7->GetXaxis()->SetLabelFont(42); + TVectorF__7->GetXaxis()->SetLabelSize(0.035); + TVectorF__7->GetXaxis()->SetTitleSize(0.035); + TVectorF__7->GetXaxis()->SetTitleFont(42); + TVectorF__7->GetYaxis()->SetLabelFont(42); + TVectorF__7->GetYaxis()->SetLabelSize(0.035); + TVectorF__7->GetYaxis()->SetTitleSize(0.035); + TVectorF__7->GetYaxis()->SetTitleFont(42); + TVectorF__7->GetZaxis()->SetLabelFont(42); + TVectorF__7->GetZaxis()->SetLabelSize(0.035); + TVectorF__7->GetZaxis()->SetTitleSize(0.035); + TVectorF__7->GetZaxis()->SetTitleFont(42); + TVectorF__7->Draw(""); + c1_7->Modified(); + c1->cd(); + c1->Modified(); + c1->cd(); + c1->SetSelected(c1); +} diff --git a/Scripts_20171217/unnamed.pdf b/Scripts_20171217/unnamed.pdf new file mode 100644 index 0000000..45ec0e9 Binary files /dev/null and b/Scripts_20171217/unnamed.pdf differ diff --git a/Scripts_20180425/Scripts_20180425/.emacs_old b/Scripts_20180425/Scripts_20180425/.emacs_old new file mode 100644 index 0000000..f290301 --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/.emacs_old @@ -0,0 +1,21 @@ +(custom-set-variables + ;; custom-set-variables was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + '(inhibit-startup-screen t) + '(show-paren-mode t)) +(custom-set-faces + ;; custom-set-faces was added by Custom. + ;; If you edit it by hand, you could mess it up, so be careful. + ;; Your init file should contain only one such instance. + ;; If there is more than one, they won't work right. + ) +(setq auto-mode-alist + (cons '("\\.m$" . octave-mode) auto-mode-alist)) +(add-hook 'octave-mode-hook + (lambda () + (abbrev-mode 1) + (auto-fill-mode 1) + (if (eq window-system 'x) + (font-lock-mode 1)))) diff --git a/Scripts_20180425/Scripts_20180425/GaussSmoothen.h b/Scripts_20180425/Scripts_20180425/GaussSmoothen.h new file mode 100644 index 0000000..ed5a2df --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/GaussSmoothen.h @@ -0,0 +1,72 @@ +#pragma once + +#include +#include +#include + +inline double gauss(double sigma, double x) { + double expVal = -1 * (pow(x, 2) / pow(2 * sigma, 2)); + double divider = sqrt(2 * M_PI * pow(sigma, 2)); + return (1 / divider) * exp(expVal); +} + +inline std::vector gaussKernel(int samples, double sigma) { + std::vector v; + + bool doubleCenter = false; + if (samples % 2 == 0) { + doubleCenter = true; + samples--; + } + int steps = (samples - 1) / 2; + double stepSize = (3 * sigma) / steps; + + for (int i = steps; i >= 1; i--) { + v.push_back(gauss(sigma, i * stepSize * -1)); + } + std::cout << std::endl; + + v.push_back(gauss(sigma, 0)); + if (doubleCenter) { + v.push_back(gauss(sigma, 0)); + } + + for (int i = 1; i <= steps; i++) { + v.push_back(gauss(sigma, i * stepSize)); + } + + std::cout << "The kernel contains " << v.size() << " entries:"; + for (auto it = v.begin(); it != v.end(); ++it) { + std::cout << ' ' << *it; + } + std::cout << std::endl; + assert(v.size() == samples); + + return v; +} + +inline std::vector gaussSmoothen(std::vector values, double sigma, int samples) { + std::vector out; + auto kernel = gaussKernel(samples, sigma); + int sampleSide = samples / 2; + int valueIdx = samples / 2 + 1; + unsigned long ubound = values.size(); + for (unsigned long i = 0; i < ubound; i++) { + double sample = 0; + int sampleCtr = 0; + std::cout << "Now at value" << i << ": "; + for (long j = i - sampleSide; j <= i + sampleSide; j++) { + std::cout << j << " "; + if (j > 0 && j < ubound) { + int sampleWeightIndex = sampleSide + (j - i); + std::cout << "(" << sampleWeightIndex << " [" << kernel[sampleWeightIndex] << "]) "; + sample += kernel[sampleWeightIndex] * values[j]; + sampleCtr++; + } + } + double smoothed = sample / (double)sampleCtr; + std::cout << " S: " << sample << " C: " << sampleCtr << " V: " << values[i] << " SM: " << smoothed << std::endl; + out.push_back(smoothed); + } + return out; +} diff --git a/Scripts_20180425/Scripts_20180425/Makefile b/Scripts_20180425/Scripts_20180425/Makefile new file mode 100644 index 0000000..af2cae7 --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/Makefile @@ -0,0 +1,45 @@ + +ROOTCFLAGS := $(shell root-config --cflags) +ROOTLIBS := $(shell root-config --libs) +ROOTGLIBS := $(shell root-config --glibs) + +GSLCFLAGS := $(shell gsl-config --cflags) +GSLLIBS := $(shell gsl-config --libs) +GSLGLIBS := $(shell gsl-config --glibs) + + +LDFLAGS = -O +LIBS += $(ROOTLIBS) $(GSLLIBS) +CFLAGS += $(ROOTCFLAGS) $(GSLCFLAGS) #-std=gnu++11 + +# Not sure why Minuit isn't being included -- put in by hand +# +LIBS += -lMinuit + + +all: convert_clean hit_analyse + + + +hit_analyse: hit_analyse.o + g++ -o hit_analyse hit_analyse.o $(LDFLAGS) $(LIBS) + +%.o: %.c + g++ ${CFLAGS} -c -g $< + + +convert_clean: convert_clean.o + g++ -o convert_clean convert_clean.o $(LDFLAGS) $(LIBS) + +%.o: %.c + g++ ${CFLAGS} -c -g $< + + +test: + @echo $(ROOTCFLAGS) + @echo $(LDFLAGS) + @echo $(LIBS) + +clean: + -rm -f *.o + diff --git a/Scripts_20180425/Scripts_20180425/Makefile~ b/Scripts_20180425/Scripts_20180425/Makefile~ new file mode 100644 index 0000000..78d300a --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/Makefile~ @@ -0,0 +1,47 @@ + +ROOTCFLAGS := $(shell root-config --cflags) +ROOTLIBS := $(shell root-config --libs) +ROOTGLIBS := $(shell root-config --glibs) + +GSLCFLAGS := $(shell gsl-config --cflags) +GSLLIBS := $(shell gsl-config --libs) +GSLGLIBS := $(shell gsl-config --glibs) + + +LDFLAGS = -O +LIBS += $(ROOTLIBS) $(GSLLIBS) -L/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_95/tbb/2019_U1/x86_64-slc6-gcc8-opt/include +CFLAGS += $(ROOTCFLAGS) $(GSLCFLAGS) -std=gnu++11 + +# Not sure why Minuit isn't being included -- put in by hand +# +LIBS += -lMinuit + +OBJS = convert_clean.o init.o align_ethercat.o read_bpm.o + +all: convert_clean + + +convert_clean: $(OBJS) + g++ -o convert_clean $(OBJS) $(LDFLAGS) $(LIBS) + +%.o: %.c + g++ ${CFLAGS} -c -g $< + +init.o: init.c init.h + g++ ${CFLAGS} -c init.c + +align_ethercat.o: align_ethercat.c align_ethercat.h + g++ ${CFLAGS} -c align_ethercat.c + +read_bpm.o: read_bpm.c read_bpm.h + g++ ${CFLAGS} -c read_bpm.c + + +test: + @echo $(ROOTCFLAGS) + @echo $(LDFLAGS) + @echo $(LIBS) + +clean: + -rm -f *.o + diff --git a/Scripts_20180425/Scripts_20180425/align_ethercat.c b/Scripts_20180425/Scripts_20180425/align_ethercat.c new file mode 100644 index 0000000..1a4acd4 --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/align_ethercat.c @@ -0,0 +1,6 @@ +#include "align_ethercat.h" + +void align_ethercat() +{ + +} diff --git a/Scripts_20180425/Scripts_20180425/align_ethercat.h b/Scripts_20180425/Scripts_20180425/align_ethercat.h new file mode 100644 index 0000000..7ed2763 --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/align_ethercat.h @@ -0,0 +1 @@ +void align_ethercat(); diff --git a/Scripts_20180425/Scripts_20180425/convert b/Scripts_20180425/Scripts_20180425/convert new file mode 100755 index 0000000..f572c77 Binary files /dev/null and b/Scripts_20180425/Scripts_20180425/convert differ diff --git a/Scripts_20180425/Scripts_20180425/convert.c b/Scripts_20180425/Scripts_20180425/convert.c new file mode 100644 index 0000000..3635c85 --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/convert.c @@ -0,0 +1,928 @@ +/// to do: +/// 1. correct for gap between arrays + +#define convert_cxx +#include "hitutils.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "GaussSmoothen.h" +#include + +using namespace std; + +bool smooth_on = true; + +int eventID = 0; +int framestart=0; +int frameend = 0; +double board_b0_ch[128]; +double board_b1_ch[128]; +double board_b2_ch[128]; +double board_b3_ch[128]; +double board_b0_ch_bkg[128]; +double board_b1_ch_bkg[128]; +double board_b2_ch_bkg[128]; +double board_b3_ch_bkg[128]; +double signal_b0 = 0.; +double signal_b1 = 0.; +double signal_b2 = 0.; +double signal_b3 = 0.; + +double signal_b0_left = 0.; +double signal_b1_left = 0.; +double signal_b2_left = 0.; +double signal_b3_left = 0.; + +double signal_b0_right = 0.; +double signal_b1_right = 0.; +double signal_b2_right = 0.; +double signal_b3_right = 0.; + +double signal_gsl_b0[128]; +double signal_gsl_b1[128]; +double signal_gsl_b2[128]; +double signal_gsl_b3[128]; + + +double channellist_gsl_b0[128]; +double channellist_gsl_b1[128]; +double channellist_gsl_b2[128]; +double channellist_gsl_b3[128]; +double channellist[128]; +double pos[128]; + +double maxchannelamp_b0 =0.; +double maxchannelamp_b1 =0.; +double maxchannelamp_b2 =0.; +double maxchannelamp_b3 =0.; +int maxchannel_b0 =0; +int maxchannel_b1 =0; +int maxchannel_b2 =0; +int maxchannel_b3 =0; +int numtocalc_b0 =0; +int numtocalc_b1 =0; +int numtocalc_b2 =0; +int numtocalc_b3 =0; +int nfwhm_b0 = 0; +int nfwhm_b1 = 0; +int nfwhm_b2 = 0; +int nfwhm_b3 = 0; + +double beamPosX_b0,beamPosX_b1,beamPosX_b2,beamPosX_b3; +double beamFocusX_b0,beamFocusX_b1,beamFocusX_b2,beamFocusX_b3; +double beamSkewX_b0,beamSkewX_b1,beamSkewX_b2,beamSkewX_b3; +double beamKurtX_b0,beamKurtX_b1,beamKurtX_b2,beamKurtX_b3; +double beamNumX_b0,beamNumX_b1,beamNumX_b2,beamNumX_b3; + +double beamSidebandNoise_b0, beamSidebandNoise_b1, beamSidebandNoise_b2, beamSidebandNoise_b3 ; +int sidenumtocalc_b0,sidenumtocalc_b1,sidenumtocalc_b2,sidenumtocalc_b3; +size_t size = 5; +vector boxcar; +vector boxcarsort; +vector boxcarweight{1,3,5,3,1}; +vector data(128); +TVector sumvector_b0(128); +TVector sumvector_b1(128); +TVector sumvector_b2(128); +TVector sumvector_b3(128); + +TVector * sumvector_b0_ptr = &sumvector_b0; +TVector * sumvector_b1_ptr = &sumvector_b1; +TVector * sumvector_b2_ptr = &sumvector_b2; +TVector * sumvector_b3_ptr = &sumvector_b3; + +const int length = 100; //length of the rolling average +double array_b0[length][128] = {{0.}}; +double array_b1[length][128] = {{0.}}; +double array_b2[length][128] = {{0.}}; +double array_b3[length][128] = {{0.}}; + +double arrayavg_b0[128] = {0.}; +double arrayavg_b1[128] = {0.}; +double arrayavg_b2[128] = {0.}; +double arrayavg_b3[128] = {0.}; + + + +double board_b0_smooth_ch[128]; +double board_b1_smooth_ch[128]; +double board_b2_smooth_ch[128]; +double board_b3_smooth_ch[128]; + +bool graphsaved_b0 = false; +bool graphsaved_b1 = false; +bool graphsaved_b2 = false; +bool graphsaved_b3 = false; + +TVector beamontime(0,3,0.,0.,0.,0.,"END"); +TVector * beamontime_ptr = &beamontime; + +double calibration_b0[128] = {0.}; +double calibration_b1[128] = {0.}; +double calibration_b2[128] = {0.}; +double calibration_b3[128] = {0.}; + + +/// compile with: +//// $ make clean; make +/// run with: +//// $ ./convert +//// $ ./convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run2 + + + +int main(int argc, char **argv) +{ + //initialise some values; + for (int i = 0;i<128;i++){ + board_b0_ch_bkg[i] = 0.; + board_b1_ch_bkg[i] = 0.; + board_b2_ch_bkg[i] = 0.; + board_b3_ch_bkg[i] = 0.; + channellist_gsl_b0[i] = 0; + channellist_gsl_b1[i] = 0; + channellist_gsl_b2[i] = 0; + channellist_gsl_b3[i] = 0; + sumvector_b0[i] = 0; + sumvector_b1[i] = 0; + sumvector_b2[i] = 0; + sumvector_b3[i] = 0; + calibration_b0[i] = 1.0; + calibration_b1[i] = 1.0; + calibration_b2[i] = 1.0; + calibration_b3[i] = 1.0; + + if (i<64) {pos[i] = double(i);} + else {pos[i] = double(i) + 0.2; } + } + if (argc > 1){ + //open the file names specified in the command line + string filename; + string rootfilename; + // argv[1]= "/work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/"; + // argv[2]= "Run11" + filename = Form("%s%s.dat",argv[1],argv[2]); + rootfilename = Form("%s/root/%s.root",argv[1],argv[2]); // Giulia needs to change the path %s/root/ of the written root file. + ifstream file(filename, ifstream::in | ifstream::binary); + + if (!file.is_open()){ + printf(".dat did not open.\n"); + return -1; //file could not be opened + } + + ///some variables to get the data + // int number_of_records_to_read = 4*10; + // BufferData* buffer = new BufferData[number_of_records_to_read]; + if(argc > 4) { + framestart = atoi(argv[3]); + frameend = atoi(argv[4]); + } + + + int board_b = -1; + long int fileframesize = getFileSize(filename.c_str()) / ( 4*sizeof(BufferData) ); + BufferData* dataptr = new BufferData(); + + if (fileframesize>0){ + cout << "Number of frames:" << fileframesize << endl; + //open ROOT file for saving histos and TTree. + TFile *rootFile = new TFile(rootfilename.c_str(),"RECREATE"); + if ( rootFile->IsOpen() ) printf("ROOT file opened successfully\n"); + TH2D * th2_signal_vs_channel_b0 = new TH2D("th2_signal_vs_channel_b0","th2_signal_vs_channel_b0",128,0,128,2200,-1000,10000); + TH2D * th2_signal_vs_channel_b1 = new TH2D("th2_signal_vs_channel_b1","th2_signal_vs_channel_b1",128,0,128,2200,-1000,10000); + TH2D * th2_signal_vs_channel_b2 = new TH2D("th2_signal_vs_channel_b2","th2_signal_vs_channel_b2",128,0,128,2200,-1000,10000); + TH2D * th2_signal_vs_channel_b3 = new TH2D("th2_signal_vs_channel_b3","th2_signal_vs_channel_b3",128,0,128,2200,-1000,10000); + TH2D * th2_signal_vs_channel_sub_b0 = new TH2D("th2_signal_vs_channel_sub_b0","th2_signal_vs_channel_sub_b0",128,0,128,2200,-1000,10000); + TH2D * th2_signal_vs_channel_sub_b1 = new TH2D("th2_signal_vs_channel_sub_b1","th2_signal_vs_channel_sub_b1",128,0,128,2200,-1000,10000); + TH2D * th2_signal_vs_channel_sub_b2 = new TH2D("th2_signal_vs_channel_sub_b2","th2_signal_vs_channel_sub_b2",128,0,128,2200,-1000,10000); + TH2D * th2_signal_vs_channel_sub_b3 = new TH2D("th2_signal_vs_channel_sub_b3","th2_signal_vs_channel_sub_b3",128,0,128,2200,-1000,10000); + TH1D * th1_signal_b0 = new TH1D("th1_signal_b0","th1_signal_b0",2200,-10000,50000); + TH1D * th1_signal_b1 = new TH1D("th1_signal_b1","th1_signal_b1",2200,-10000,50000); + TH1D * th1_signal_b2 = new TH1D("th1_signal_b2","th1_signal_b2",2200,-10000,50000); + TH1D * th1_signal_b3 = new TH1D("th1_signal_b3","th1_signal_b3",2200,-10000,50000); + TGraph * graph_bkg_b0 = new TGraph(); + TGraph * graph_bkg_b1 = new TGraph(); + TGraph * graph_bkg_b2 = new TGraph(); + TGraph * graph_bkg_b3 = new TGraph(); + TGraph * gr_b0; + TGraph * gr_sm_b0; + TGraph * gr_b1; + TGraph * gr_sm_b1; + TGraph * gr_b2; + TGraph * gr_sm_b2; + TGraph * gr_b3; + TGraph * gr_sm_b3; + + TH2D * th2_signal_vs_channel_bkg_b0 = new TH2D("th2_signal_vs_channel_bkg_b0","th2_signal_vs_channel_bkg_b0",128,0,128,1000,-500,500); + TH2D * th2_signal_vs_channel_bkg_b1 = new TH2D("th2_signal_vs_channel_bkg_b1","th2_signal_vs_channel_bkg_b1",128,0,128,1000,-500,500); + TH2D * th2_signal_vs_channel_bkg_b2 = new TH2D("th2_signal_vs_channel_bkg_b2","th2_signal_vs_channel_bkg_b2",128,0,128,1000,-500,500); + TH2D * th2_signal_vs_channel_bkg_b3 = new TH2D("th2_signal_vs_channel_bkg_b3","th2_signal_vs_channel_bkg_b3",128,0,128,1000,-500,500); + + TTree *rootTree = new TTree("t","HIT Data Root Tree"); + rootTree->Branch("beamPosX_b0",&beamPosX_b0,"beamPosX_b0/D"); + rootTree->Branch("beamPosX_b1",&beamPosX_b1,"beamPosX_b1/D"); + rootTree->Branch("beamPosX_b2",&beamPosX_b2,"beamPosX_b2/D"); + rootTree->Branch("beamPosX_b3",&beamPosX_b3,"beamPosX_b3/D"); + rootTree->Branch("beamFocusX_b0",&beamFocusX_b0,"beamFocusX_b0/D"); + rootTree->Branch("beamFocusX_b1",&beamFocusX_b1,"beamFocusX_b1/D"); + rootTree->Branch("beamFocusX_b2",&beamFocusX_b2,"beamFocusX_b2/D"); + rootTree->Branch("beamFocusX_b3",&beamFocusX_b3,"beamFocusX_b3/D"); + rootTree->Branch("beamSkewX_b0",&beamSkewX_b0,"beamSkewX_b0/D"); + rootTree->Branch("beamSkewX_b1",&beamSkewX_b1,"beamSkewX_b1/D"); + rootTree->Branch("beamSkewX_b2",&beamSkewX_b2,"beamSkewX_b2/D"); + rootTree->Branch("beamSkewX_b3",&beamSkewX_b3,"beamSkewX_b3/D"); + rootTree->Branch("beamKurtX_b0",&beamKurtX_b0,"beamKurtX_b0/D"); + rootTree->Branch("beamKurtX_b1",&beamKurtX_b1,"beamKurtX_b1/D"); + rootTree->Branch("beamKurtX_b2",&beamKurtX_b2,"beamKurtX_b2/D"); + rootTree->Branch("beamKurtX_b3",&beamKurtX_b3,"beamKurtX_b3/D"); + rootTree->Branch("beamNumX_b0",&beamNumX_b0,"beamNumX_b0/D"); + rootTree->Branch("beamNumX_b1",&beamNumX_b1,"beamNumX_b1/D"); + rootTree->Branch("beamNumX_b2",&beamNumX_b2,"beamNumX_b2/D"); + rootTree->Branch("beamNumX_b3",&beamNumX_b3,"beamNumX_b3/D"); + rootTree->Branch("beamSignal_b0",&signal_b0,"beamSignal_b0/D"); + rootTree->Branch("beamSignal_b1",&signal_b1,"beamSignal_b1/D"); + rootTree->Branch("beamSignal_b2",&signal_b2,"beamSignal_b2/D"); + rootTree->Branch("beamSignal_b3",&signal_b3,"beamSignal_b3/D"); + + rootTree->Branch("beamSignal_b0_left",&signal_b0_left,"beamSignal_b0_left/D"); + rootTree->Branch("beamSignal_b1_left",&signal_b1_left,"beamSignal_b1_left/D"); + rootTree->Branch("beamSignal_b2_left",&signal_b2_left,"beamSignal_b2_left/D"); + rootTree->Branch("beamSignal_b3_left",&signal_b3_left,"beamSignal_b3_left/D"); + rootTree->Branch("beamSignal_b0_right",&signal_b0_right,"beamSignal_b0_right/D"); + rootTree->Branch("beamSignal_b1_right",&signal_b1_right,"beamSignal_b1_right/D"); + rootTree->Branch("beamSignal_b2_right",&signal_b2_right,"beamSignal_b2_right/D"); + rootTree->Branch("beamSignal_b3_right",&signal_b3_right,"beamSignal_b3_right/D"); + + rootTree->Branch("eventID",&eventID,"eventID/I"); + rootTree->Branch("board_b0_ch",&board_b0_ch,"board_b0_ch[128]/D"); + rootTree->Branch("board_b1_ch",&board_b1_ch,"board_b1_ch[128]/D"); + rootTree->Branch("board_b2_ch",&board_b2_ch,"board_b2_ch[128]/D"); + rootTree->Branch("board_b3_ch",&board_b3_ch,"board_b3_ch[128]/D"); + + rootTree->Branch("beamSidebandNoise_b0",&beamSidebandNoise_b0,"beamSidebandNoise_b0/D"); + rootTree->Branch("beamSidebandNoise_b1",&beamSidebandNoise_b1,"beamSidebandNoise_b1/D"); + rootTree->Branch("beamSidebandNoise_b2",&beamSidebandNoise_b2,"beamSidebandNoise_b2/D"); + rootTree->Branch("beamSidebandNoise_b3",&beamSidebandNoise_b3,"beamSidebandNoise_b3/D"); + rootTree->Branch("arrayavg_b0",&arrayavg_b0,"arrayavg_b0[128]/D"); + rootTree->Branch("arrayavg_b1",&arrayavg_b1,"arrayavg_b1[128]/D"); + rootTree->Branch("arrayavg_b2",&arrayavg_b2,"arrayavg_b2[128]/D"); + rootTree->Branch("arrayavg_b3",&arrayavg_b3,"arrayavg_b3[128]/D"); + + + // import and align matching ethercat data + TTree *tree2 = new TTree("t2", "t2"); + + + + //loop through recorded data frames + for (int frame = 0; framesync_frame.device_nr==board_b){ + //cout << frame << " " << dataptr->sync_frame.device_nr << endl; + if (frame%1000==0) cout << "Frame: " << frame << endl; + for (int i = 0;i<128;i++){ + board_b0_ch[i] = dataptr->sensor_data[i]; + if (frame<1000){ + board_b0_ch_bkg[i] += board_b0_ch[i]/1000.; //find baseline from the average of first 1000 events + + } + else if (frame>=1000&& frame<2000){ + board_b0_ch[i] -= board_b0_ch_bkg[i]; //histogram the subtracted baseline in the next 1000 events + th2_signal_vs_channel_bkg_b0->Fill(i,board_b0_ch[i]); + if (i==1) graph_bkg_b0->SetPoint(graph_bkg_b0->GetN(), frame, board_b0_ch[i]); + } + else if (frame>=2000) { + board_b0_ch[i]-=board_b0_ch_bkg[i]; // the rest background subtracted + board_b0_ch[i]*=calibration_b0[i]; //calibration factor + th2_signal_vs_channel_b0->Fill(i,board_b0_ch[i]); + // signal_b0 +=board_b0_ch[i] ; + if (board_b0_ch[i]> maxchannelamp_b0) { + maxchannel_b0 = i; + maxchannelamp_b0 = board_b0_ch[i]; + } + //calculate a rolling average of the signal + arrayavg_b0[i] = 0; + for (int j = 1; j-1000){ + array_b0[length-1][i] = board_b0_ch[i]; + arrayavg_b0[i] += array_b0[length-1][i]/double(length); + } + //////////////////////////////////////////// + } + } + // th1_signal_b0->Fill(signal_b0); + } + else { + cout << "Error." << endl; + } + + //board_b 1 + board_b=1; + signal_b1=0.; + maxchannelamp_b1 = 0.; + + file.seekg(framestart*sizeof(BufferData)+board_b*sizeof(BufferData)+4*frame*sizeof(BufferData)); + file.read ((char*)dataptr ,sizeof(BufferData)); + if (dataptr->sync_frame.device_nr==board_b){ + //cout << frame << " " << dataptr->sync_frame.device_nr << endl; + for (int i = 0;i<128;i++){ + board_b1_ch[i] = dataptr->sensor_data[i]; + if (frame<1000){ + board_b1_ch_bkg[i] += board_b1_ch[i]/1000.; //find baseline from the average of first 1000 events + } + else if (frame>=1000&& frame<2000){ + board_b1_ch[i] -= board_b1_ch_bkg[i]; //histogram the subtracted baseline in the next 1000 events + th2_signal_vs_channel_bkg_b1->Fill(i,board_b1_ch[i]); + if (i==1) graph_bkg_b1->SetPoint(graph_bkg_b1->GetN(), frame, board_b1_ch[i]); + + } + else if (frame>=2000) { + board_b1_ch[i]-=board_b1_ch_bkg[i]; // the rest are background subtracted + board_b1_ch[i]*=calibration_b1[i]; //calibration factor + + th2_signal_vs_channel_b1->Fill(i,board_b1_ch[i]); + // signal_b1 +=board_b1_ch[i] ; + if (board_b1_ch[i]> maxchannelamp_b1) { + maxchannel_b1 = i; + maxchannelamp_b1 = board_b1_ch[i]; + } + //calculate a rolling average of the signal + arrayavg_b1[i] = 0; + for (int j = 1; j-1000){ + array_b1[length-1][i] = board_b1_ch[i]; + arrayavg_b1[i] += array_b1[length-1][i]/double(length); + } + //////////////////////////////////////////// + } + } + // th1_signal_b1->Fill(signal_b1); + } + else { + cout << "Error." << endl; + } + //board_b 2 + board_b=2; + signal_b2=0.; + maxchannelamp_b2 = 0.; + file.seekg(framestart*sizeof(BufferData)+board_b*sizeof(BufferData)+4*frame*sizeof(BufferData)); + file.read ((char*)dataptr ,sizeof(BufferData)); + if (dataptr->sync_frame.device_nr==board_b){ + //cout << frame << " " << dataptr->sync_frame.device_nr << endl; + for (int i = 0;i<128;i++){ + board_b2_ch[i] = dataptr->sensor_data[i]; + if (frame<1000){ + board_b2_ch_bkg[i] += board_b2_ch[i]/1000.; //find baseline from the average of first 1000 events + } + else if (frame>=1000&& frame<2000){ + board_b2_ch[i] -= board_b2_ch_bkg[i]; //histogram the subtracted baseline in the next 1000 events + th2_signal_vs_channel_bkg_b2->Fill(i,board_b2_ch[i]); + if (i==1) graph_bkg_b2->SetPoint(graph_bkg_b2->GetN(), frame, board_b2_ch[i]); + + } + else if (frame>=2000) { + board_b2_ch[i]-=board_b2_ch_bkg[i]; // the rest background subtracted + board_b2_ch[i]*=calibration_b2[i]; //calibration factor + + th2_signal_vs_channel_b2->Fill(i,board_b2_ch[i]); + // signal_b2 +=board_b2_ch[i] ; + if (board_b2_ch[i]> maxchannelamp_b2) { + maxchannel_b2 = i; + maxchannelamp_b2 = board_b2_ch[i]; + } + //calculate a rolling average of the signal + arrayavg_b2[i] = 0; + for (int j = 1; j-1000){ + array_b2[length-1][i] = board_b2_ch[i]; + arrayavg_b2[i] += array_b2[length-1][i]/double(length); + } + //////////////////////////////////////////// + } + } + // th1_signal_b2->Fill(signal_b2); + } + else { + cout << "Error." << endl; + } + + //board_b 3 + board_b=3; + signal_b3=0.; + maxchannelamp_b3 = 0.; + file.seekg(framestart*sizeof(BufferData)+board_b*sizeof(BufferData)+4*frame*sizeof(BufferData)); + file.read ((char*)dataptr ,sizeof(BufferData)); + if (dataptr->sync_frame.device_nr==board_b){ + //cout << frame << " " << dataptr->sync_frame.device_nr << endl; + for (int i = 0;i<128;i++){ + board_b3_ch[i] = dataptr->sensor_data[i]; + if (frame<1000){ + board_b3_ch_bkg[i] += board_b3_ch[i]/1000.; //find baseline from the average of first 1000 events + } + else if (frame>=1000&& frame<2000){ + board_b3_ch[i] -= board_b3_ch_bkg[i]; //histogram the subtracted baseline in the next 1000 events + th2_signal_vs_channel_bkg_b3->Fill(i,board_b3_ch[i]); + if (i==1) graph_bkg_b3->SetPoint(graph_bkg_b3->GetN(), frame, board_b3_ch[i]); + + } + else if (frame>=2000) { + board_b3_ch[i]-=board_b3_ch_bkg[i]; // the rest of the events are background subtracted + board_b3_ch[i]*=calibration_b3[i]; //with a calibration factor + + th2_signal_vs_channel_b3->Fill(i,board_b3_ch[i]); + // signal_b3 +=board_b3_ch[i] ; + if (board_b3_ch[i]> maxchannelamp_b3) { + maxchannel_b3 = i; + maxchannelamp_b3 = board_b3_ch[i]; + } + //calculate a rolling average of the signal + arrayavg_b3[i] = 0; + for (int j = 1; j-1000){ + array_b3[length-1][i] = board_b3_ch[i]; + arrayavg_b3[i] += array_b3[length-1][i]/double(length); + } + //////////////////////////////////////////// + } + } + // th1_signal_b3->Fill(signal_b3); + } + else { + cout << "Error." << endl; + } + + + + + //////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////// + //start the signal analysis + //////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////// + + if (frame>=2000){ + + + + + //////////////////////////////////////////////////////////// + //boxcar smoothing filter + //////////////////////////////////////////////////////////// + if (smooth_on){ + maxchannelamp_b0 = 0.0; + maxchannelamp_b1 = 0.0; + maxchannelamp_b2 = 0.0; + maxchannelamp_b3 = 0.0; + } + boxcar.clear(); + boxcar.push_back(board_b0_ch[0]); + boxcar.push_back(board_b0_ch[1]); + // cout << frame << endl; + for (int i = 0;i<128;i++){ + channellist[i] = i; + if (i<126) { + boxcar.push_back(board_b0_ch[i+2]); + } + if ( (i<126&&boxcar.size()>5) || (i>=126&&boxcar.size()>3) ) boxcar.erase(boxcar.cbegin()); + board_b0_smooth_ch[i] = gsl_stats_mean(boxcar.data(), 1, 5 ); + if (smooth_on && board_b0_smooth_ch[i]> maxchannelamp_b0) { + maxchannel_b0 = i; + maxchannelamp_b0 = board_b0_smooth_ch[i]; + } + } + if (eventID>2001&&maxchannelamp_b0>100&&!graphsaved_b0) { + gr_b0 = new TGraph(128, channellist, board_b0_ch); + gr_b0->SetTitle("RawData_b0"); + gr_b0->SetName("RawData_b0"); + gr_b0->Write(); + gr_sm_b0 = new TGraph(128, channellist, board_b0_smooth_ch); + gr_sm_b0->SetTitle("SmoothedData_b0"); + gr_sm_b0->SetName("SmoothedData_b0"); + gr_sm_b0->Write(); + graphsaved_b0=true; + } + + boxcar.clear(); + boxcar.push_back(board_b1_ch[0]); + boxcar.push_back(board_b1_ch[1]); + // cout << frame << endl; + for (int i = 0;i<128;i++){ + channellist[i] = i; + if (i<126) { + boxcar.push_back(board_b1_ch[i+2]); + } + if ( (i<126&&boxcar.size()>5) || (i>=126&&boxcar.size()>3) ) boxcar.erase(boxcar.cbegin()); + board_b1_smooth_ch[i] = gsl_stats_mean(boxcar.data(), 1, 5 ); + if (smooth_on && board_b1_smooth_ch[i]> maxchannelamp_b1) { + maxchannel_b1 = i; + maxchannelamp_b1 = board_b1_smooth_ch[i]; + } + } + if (eventID>2001&&maxchannelamp_b1>100&&!graphsaved_b1) { + gr_b1 = new TGraph(128, channellist, board_b1_ch); + gr_b1->SetTitle("RawData_b1"); + gr_b1->SetName("RawData_b1"); + gr_b1->Write(); + gr_sm_b1 = new TGraph(128, channellist, board_b1_smooth_ch); + gr_sm_b1->SetTitle("SmoothedData_b1"); + gr_sm_b1->SetName("SmoothedData_b1"); + gr_sm_b1->Write(); + graphsaved_b1=true; + } + + boxcar.clear(); + boxcar.push_back(board_b2_ch[0]); + boxcar.push_back(board_b2_ch[1]); + // cout << frame << endl; + for (int i = 0;i<128;i++){ + channellist[i] = i; + if (i<126) { + boxcar.push_back(board_b2_ch[i+2]); + } + if ( (i<126&&boxcar.size()>5) || (i>=126&&boxcar.size()>3) ) boxcar.erase(boxcar.cbegin()); + board_b2_smooth_ch[i] = gsl_stats_mean(boxcar.data(), 1, 5 ); + if (smooth_on && board_b2_smooth_ch[i]> maxchannelamp_b2) { + maxchannel_b2 = i; + maxchannelamp_b2 = board_b2_smooth_ch[i]; + } + } + if (eventID>2001&&maxchannelamp_b2>100&&!graphsaved_b2) { + gr_b2 = new TGraph(128, channellist, board_b2_ch); + gr_b2->SetTitle("RawData_b2"); + gr_b2->SetName("RawData_b2"); + gr_b2->Write(); + gr_sm_b2 = new TGraph(128, channellist, board_b2_smooth_ch); + gr_sm_b2->SetTitle("SmoothedData_b2"); + gr_sm_b2->SetName("SmoothedData_b2"); + gr_sm_b2->Write(); + graphsaved_b2=true; + } + + + boxcar.clear(); + boxcar.push_back(board_b3_ch[0]); + boxcar.push_back(board_b3_ch[1]); + // cout << frame << endl; + for (int i = 0;i<128;i++){ + channellist[i] = i; + if (i<126) { + boxcar.push_back(board_b3_ch[i+2]); + } + if ( (i<126&&boxcar.size()>5) || (i>=126&&boxcar.size()>3) ) boxcar.erase(boxcar.cbegin()); + board_b3_smooth_ch[i] = gsl_stats_mean(boxcar.data(), 1, 5 ); + if (smooth_on && board_b3_smooth_ch[i]> maxchannelamp_b3) { + maxchannel_b3 = i; + maxchannelamp_b3 = board_b3_smooth_ch[i]; + } + } + if (eventID>2001&&maxchannelamp_b3>100&&!graphsaved_b3) { + gr_b3 = new TGraph(128, channellist, board_b3_ch); + gr_b3->SetTitle("RawData_b3"); + gr_b3->SetName("RawData_b3"); + gr_b3->Write(); + gr_sm_b3 = new TGraph(128, channellist, board_b3_smooth_ch); + gr_sm_b3->SetTitle("SmoothedData_b3"); + gr_sm_b3->SetName("SmoothedData_b3"); + gr_sm_b3->Write(); + graphsaved_b3=true; + } + + + + //////////////////////////////////////////////////////////// + //find the approx FWHM + //////////////////////////////////////////////////////////// + + nfwhm_b0 =0; + nfwhm_b1 =0; + nfwhm_b2 =0; + nfwhm_b3 =0; + if (smooth_on){ + for (int i = 0;i<128;i++){ + if (board_b0_smooth_ch[i] > maxchannelamp_b0/2.) nfwhm_b0++; + if (board_b1_smooth_ch[i] > maxchannelamp_b1/2.) nfwhm_b1++; + if (board_b2_smooth_ch[i] > maxchannelamp_b2/2.) nfwhm_b2++; + if (board_b3_smooth_ch[i] > maxchannelamp_b3/2.) nfwhm_b3++; + signal_gsl_b0[i] = 0.; + signal_gsl_b1[i] = 0.; + signal_gsl_b2[i] = 0.; + signal_gsl_b3[i] = 0.; + + } + + } + else { + for (int i = 0;i<128;i++){ + if (board_b0_ch[i] > maxchannelamp_b0/2.) nfwhm_b0++; + if (board_b1_ch[i] > maxchannelamp_b1/2.) nfwhm_b1++; + if (board_b2_ch[i] > maxchannelamp_b2/2.) nfwhm_b2++; + if (board_b3_ch[i] > maxchannelamp_b3/2.) nfwhm_b3++; + signal_gsl_b0[i] = 0.; + signal_gsl_b1[i] = 0.; + signal_gsl_b2[i] = 0.; + signal_gsl_b3[i] = 0.; + + } + } + + + //////////////////////////////////////////////////////////// + //integrate the sidebands first to check for baseline shift + //////////////////////////////////////////////////////////// + + beamSidebandNoise_b0 = 0.; + sidenumtocalc_b0 = 0; + for (int i =0; i=0 && i<=127){ + beamSidebandNoise_b0 += board_b0_ch[i]; //integrate the noise outside the peak + sidenumtocalc_b0++; + } + } + for (int i = maxchannel_b0+nfwhm_b0; i < 128; i++){ + if (i>=0 && i<=127){ + beamSidebandNoise_b0 += board_b0_ch[i]; //integrate the noise outside the peak + sidenumtocalc_b0++; + } + } + if (sidenumtocalc_b0>0) beamSidebandNoise_b0 = beamSidebandNoise_b0 /double(sidenumtocalc_b0); // channel baseline shift + + beamSidebandNoise_b1 = 0.; + sidenumtocalc_b1 = 0; + for (int i =0; i=0 && i<=127){ + beamSidebandNoise_b1 += board_b1_ch[i]; //integrate the noise outside the peak + sidenumtocalc_b1++; + } + } + for (int i = maxchannel_b1+nfwhm_b1; i < 128; i++){ + if (i>=0 && i<=127){ + beamSidebandNoise_b1 += board_b1_ch[i]; //integrate the noise outside the peak + sidenumtocalc_b1++; + } + } + if (sidenumtocalc_b1>0) beamSidebandNoise_b1 = beamSidebandNoise_b1 /double(sidenumtocalc_b1); // channel baseline shift + + beamSidebandNoise_b2 = 0.; + sidenumtocalc_b2 = 0; + for (int i =0; i=0 && i<=127){ + beamSidebandNoise_b2 += board_b2_ch[i]; //integrate the noise outside the peak + sidenumtocalc_b2++; + } + } + for (int i = maxchannel_b2+nfwhm_b2; i < 128; i++){ + if (i>=0 && i<=127){ + beamSidebandNoise_b2 += board_b2_ch[i]; //integrate the noise outside the peak + sidenumtocalc_b2++; + } + } + if (sidenumtocalc_b2>0) beamSidebandNoise_b2 = beamSidebandNoise_b2 /double(sidenumtocalc_b2); // channel baseline shift + + beamSidebandNoise_b3 = 0.; + sidenumtocalc_b3 = 0; + for (int i =0; i=0 && i<=127){ + beamSidebandNoise_b3 += board_b3_ch[i]; //integrate the noise outside the peak + sidenumtocalc_b3++; + } + } + for (int i = maxchannel_b3+nfwhm_b3; i < 128; i++){ + if (i>=0 && i<=127){ + beamSidebandNoise_b3 += board_b3_ch[i]; //integrate the noise outside the peak + sidenumtocalc_b3++; + } + } + if (sidenumtocalc_b3>0) beamSidebandNoise_b3 = beamSidebandNoise_b3 /double(sidenumtocalc_b3); // channel baseline shift + + + + + + //////////////////////////////////////////////////////////// + //integrate under the approximate peak + //build the channel list for statistical analysis + //////////////////////////////////////////////////////////// + + numtocalc_b0 = 0; + numtocalc_b1 = 0; + numtocalc_b2 = 0; + numtocalc_b3 = 0; + signal_b0_left = 0.; + signal_b0_right = 0.; + for (int i = maxchannel_b0-nfwhm_b0 ; i <= maxchannel_b0 + nfwhm_b0; i++){ + if (i>=0 && i<=127 && board_b0_ch[i]>50){ + signal_b0 +=board_b0_ch[i]-beamSidebandNoise_b0 ; + if (i<64) {signal_b0_left +=board_b0_ch[i]-beamSidebandNoise_b0 ;} + else {signal_b0_right +=board_b0_ch[i]-beamSidebandNoise_b0 ;} + signal_gsl_b0[numtocalc_b0]=board_b0_ch[i]-beamSidebandNoise_b0 ; + // channellist_gsl_b0[numtocalc_b0] = i; + channellist_gsl_b0[numtocalc_b0] = pos[i]; + numtocalc_b0++; + } + } + th1_signal_b0->Fill(signal_b0); + + signal_b1_left = 0.; + signal_b1_right = 0.; + for (int i = maxchannel_b1-nfwhm_b1 ; i <= maxchannel_b1 + nfwhm_b1; i++){ + if (i>=0 && i<=127&&board_b1_ch[i]>50){ + signal_b1 +=board_b1_ch[i]-beamSidebandNoise_b1 ; + if (i<64) {signal_b1_left +=board_b1_ch[i]-beamSidebandNoise_b1 ;} + else {signal_b1_right +=board_b1_ch[i]-beamSidebandNoise_b1 ;} + signal_gsl_b1[numtocalc_b1]=board_b1_ch[i]-beamSidebandNoise_b1 ; + // channellist_gsl_b1[numtocalc_b1] = i; + channellist_gsl_b1[numtocalc_b1] = pos[i]; + numtocalc_b1++; + } + } + th1_signal_b0->Fill(signal_b1); + + signal_b2_left = 0.; + signal_b2_right = 0.; + for (int i = maxchannel_b2-nfwhm_b2 ; i <= maxchannel_b2 + nfwhm_b2; i++){ + if (i>=0 && i<=127&&board_b2_ch[i]>50){ + signal_b2 +=board_b2_ch[i]-beamSidebandNoise_b2 ; + if (i<64) {signal_b2_left +=board_b2_ch[i]-beamSidebandNoise_b2 ;} + else {signal_b2_right +=board_b2_ch[i]-beamSidebandNoise_b2 ;} + signal_gsl_b2[numtocalc_b2]=board_b2_ch[i]-beamSidebandNoise_b2 ; + // channellist_gsl_b2[numtocalc_b2] = i; + channellist_gsl_b2[numtocalc_b2] = pos[i]; + numtocalc_b2++; + } + } + th1_signal_b0->Fill(signal_b2); + + signal_b3_left = 0.; + signal_b3_right = 0.; + for (int i = maxchannel_b3-nfwhm_b3 ; i <= maxchannel_b3 + nfwhm_b3; i++){ + if (i>=0 && i<=127&&board_b3_ch[i]>50){ + signal_b3 +=board_b3_ch[i]-beamSidebandNoise_b3 ; + if (i<64) {signal_b3_left +=board_b3_ch[i]-beamSidebandNoise_b3 ;} + else {signal_b3_right +=board_b3_ch[i]-beamSidebandNoise_b3 ;} + signal_gsl_b3[numtocalc_b3]=board_b3_ch[i]-beamSidebandNoise_b3 ; + //channellist_gsl_b3[numtocalc_b3] = i; + channellist_gsl_b3[numtocalc_b3] = pos[i]; + numtocalc_b3++; + } + } + th1_signal_b0->Fill(signal_b3); + + + for (int i=0;i<128;i++){ + if(signal_b0>7000) { + th2_signal_vs_channel_sub_b0->Fill(i,board_b0_ch[i]-beamSidebandNoise_b0); + sumvector_b0[i] += board_b0_ch[i];//-beamSidebandNoise_b0; + + } + if(signal_b1>7000) { + th2_signal_vs_channel_sub_b1->Fill(i,board_b1_ch[i]-beamSidebandNoise_b1); + sumvector_b1[i] += board_b1_ch[i];//-beamSidebandNoise_b1; + } + if(signal_b2>7000){ + th2_signal_vs_channel_sub_b2->Fill(i,board_b2_ch[i]-beamSidebandNoise_b2); + sumvector_b2[i] += board_b2_ch[i];//-beamSidebandNoise_b2; + } + if(signal_b3>7000) { + th2_signal_vs_channel_sub_b3->Fill(i,board_b3_ch[i]-beamSidebandNoise_b3); + sumvector_b3[i] += board_b3_ch[i];//-beamSidebandNoise_b3; + } + } + if(signal_b0>1000) beamontime[0]+=1.0; + if(signal_b1>1000) beamontime[1]+=1.0; + if(signal_b2>1000) beamontime[2]+=1.0; + if(signal_b3>1000) beamontime[3]+=1.0; + + + + ///add gsl stuff here. + /* cout << maxchannel_b0 << " " << maxchannel_b1 << " "<< maxchannel_b2 << " "<< maxchannel_b3 << " " << endl; + cout << maxchannelamp_b0 << " " << maxchannelamp_b1 << " "<< maxchannelamp_b2 << " "<< maxchannelamp_b3 << " " << endl; + cout << nfwhm_b0 << " " << nfwhm_b1 << " " << nfwhm_b2 << " " << nfwhm_b3 << " " << endl; + cout << endl;*/ + + beamPosX_b0 = gsl_stats_wmean(signal_gsl_b0,1,channellist_gsl_b0,1,numtocalc_b0); //calculate the weighted mean + beamFocusX_b0 = gsl_stats_wsd_with_fixed_mean(signal_gsl_b0,1,channellist_gsl_b0,1,numtocalc_b0,beamPosX_b0); //Standard Deviation + beamSkewX_b0 = gsl_stats_wskew_m_sd(signal_gsl_b0,1,channellist_gsl_b0,1,numtocalc_b0,beamPosX_b0,beamFocusX_b0); //skewness (symmetry) + beamKurtX_b0 = gsl_stats_wkurtosis_m_sd(signal_gsl_b0,1,channellist_gsl_b0,1,numtocalc_b0,beamPosX_b0,beamFocusX_b0); //excess kurtosis (well behaved tails) + beamNumX_b0 = numtocalc_b0; + beamFocusX_b0 *=2.3548;//SD-->FWHM + + beamPosX_b1 = gsl_stats_wmean(signal_gsl_b1,1,channellist_gsl_b1,1,numtocalc_b1); //calculate the weighted mean + beamFocusX_b1 = gsl_stats_wsd_with_fixed_mean(signal_gsl_b1,1,channellist_gsl_b1,1,numtocalc_b1,beamPosX_b1); //Standard Deviation + beamSkewX_b1 = gsl_stats_wskew_m_sd(signal_gsl_b1,1,channellist_gsl_b1,1,numtocalc_b1,beamPosX_b1,beamFocusX_b1); //skewness (symmetry) + beamKurtX_b1 = gsl_stats_wkurtosis_m_sd(signal_gsl_b1,1,channellist_gsl_b1,1,numtocalc_b1,beamPosX_b1,beamFocusX_b1); //excess kurtosis (well behaved tails) + beamNumX_b1 = numtocalc_b1; + beamFocusX_b1 *=2.3548;//SD-->FWHM + + beamPosX_b2 = gsl_stats_wmean(signal_gsl_b2,1,channellist_gsl_b2,1,numtocalc_b2); //calculate the weighted mean + beamFocusX_b2 = gsl_stats_wsd_with_fixed_mean(signal_gsl_b2,1,channellist_gsl_b2,1,numtocalc_b2,beamPosX_b2); //Standard Deviation + beamSkewX_b2 = gsl_stats_wskew_m_sd(signal_gsl_b2,1,channellist_gsl_b2,1,numtocalc_b2,beamPosX_b2,beamFocusX_b2); //skewness (symmetry) + beamKurtX_b2 = gsl_stats_wkurtosis_m_sd(signal_gsl_b2,1,channellist_gsl_b2,1,numtocalc_b2,beamPosX_b2,beamFocusX_b2); //excess kurtosis (well behaved tails) + beamNumX_b2 = numtocalc_b2; + beamFocusX_b2 *=2.3548;//SD-->FWHM + + beamPosX_b3 = gsl_stats_wmean(signal_gsl_b3,1,channellist_gsl_b3,1,numtocalc_b3); //calculate the weighted mean + beamFocusX_b3 = gsl_stats_wsd_with_fixed_mean(signal_gsl_b3,1,channellist_gsl_b3,1,numtocalc_b3,beamPosX_b3); //Standard Deviation + beamSkewX_b3 = gsl_stats_wskew_m_sd(signal_gsl_b3,1,channellist_gsl_b3,1,numtocalc_b3,beamPosX_b3,beamFocusX_b3); //skewness (symmetry) + beamKurtX_b3 = gsl_stats_wkurtosis_m_sd(signal_gsl_b3,1,channellist_gsl_b3,1,numtocalc_b3,beamPosX_b3,beamFocusX_b3); //excess kurtosis (well behaved tails) + beamNumX_b3 = numtocalc_b3; + beamFocusX_b3 *=2.3548;//SD-->FWHM + + + ///////////////////////////////////////////////// + /////Add fitting algorithm here + ///////////////////////////////////////////////// + /* + + use board_b0_ch[i] to fill a TGraph. + fit with a gaussian + subtract the difference + fill a THF2 with the difference, delta_amp vs channel + */ + + + + rootTree->Fill(); + + } + if (frameend>0 && frame+framestart>=frameend) break; + }//end of loop over frames + /* th2_signal_vs_channel_b0->Write(); + th2_signal_vs_channel_b1->Write(); + th2_signal_vs_channel_b2->Write(); + th2_signal_vs_channel_b3->Write(); + + th2_signal_vs_channel_bkg_b0->Write(); + th2_signal_vs_channel_bkg_b1->Write(); + th2_signal_vs_channel_bkg_b2->Write(); + th2_signal_vs_channel_bkg_b3->Write(); + + th1_signal_b0->Write(); + th1_signal_b1->Write(); + th1_signal_b2->Write(); + th1_signal_b3->Write();*/ + graph_bkg_b0->SetName("graph_bkg_b0"); // graph_bkg_b0->Write(); + graph_bkg_b1->SetName("graph_bkg_b1"); // graph_bkg_b1->Write(); + graph_bkg_b2->SetName("graph_bkg_b2"); // graph_bkg_b2->Write(); + graph_bkg_b3->SetName("graph_bkg_b3"); // graph_bkg_b3->Write(); + sumvector_b0_ptr->Write("sumvector_b0"); + sumvector_b1_ptr->Write("sumvector_b1"); + sumvector_b2_ptr->Write("sumvector_b2"); + sumvector_b3_ptr->Write("sumvector_b3"); + beamontime_ptr->Write("beamontime"); + + + rootFile->Write(); + rootFile->Close(); + + } + cout << eventID << " frames analysed." << endl; + return 0; + } + else { + cerr << "Error 1" << endl; + return 1; + } + + +} diff --git a/Scripts_20180425/Scripts_20180425/convert2 b/Scripts_20180425/Scripts_20180425/convert2 new file mode 100755 index 0000000..769c22b Binary files /dev/null and b/Scripts_20180425/Scripts_20180425/convert2 differ diff --git a/Scripts_20180425/Scripts_20180425/convert2.cpp b/Scripts_20180425/Scripts_20180425/convert2.cpp new file mode 100644 index 0000000..1310bae --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/convert2.cpp @@ -0,0 +1,1186 @@ +/// to do: +/// 1. correct for gap between arrays + +#define convert2_cxx +#include "hitutils.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "TStopwatch.h" +#include "Math/MinimizerOptions.h" +#include "TVirtualFitter.h" + +using namespace std; + +bool smooth_on = false; +bool doFit = false; + + +int eventID = 0; +int framestart=0; +int frameend = 0; +double board_b0_ch[128]; +double board_b1_ch[128]; +double board_b2_ch[128]; +double board_b3_ch[128]; +double board_b0_ch_bkg[128]; +double board_b1_ch_bkg[128]; +double board_b2_ch_bkg[128]; +double board_b3_ch_bkg[128]; +double signal_b0 = 0.; +double signal_b1 = 0.; +double signal_b2 = 0.; +double signal_b3 = 0.; + +double signal_b0_left = 0.; +double signal_b1_left = 0.; +double signal_b2_left = 0.; +double signal_b3_left = 0.; + +double signal_b0_right = 0.; +double signal_b1_right = 0.; +double signal_b2_right = 0.; +double signal_b3_right = 0.; + +double signal_gsl_b0[128]; +double signal_gsl_b1[128]; +double signal_gsl_b2[128]; +double signal_gsl_b3[128]; + + +double channellist_gsl_b0[128]; +double channellist_gsl_b1[128]; +double channellist_gsl_b2[128]; +double channellist_gsl_b3[128]; +double channellist[128]; +double pos[128]; + +double maxchannelamp_b0 =0.; +double maxchannelamp_b1 =0.; +double maxchannelamp_b2 =0.; +double maxchannelamp_b3 =0.; +int maxchannel_b0 =0; +int maxchannel_b1 =0; +int maxchannel_b2 =0; +int maxchannel_b3 =0; +int numtocalc_b0 =0; +int numtocalc_b1 =0; +int numtocalc_b2 =0; +int numtocalc_b3 =0; +int nfwhm_b0 = 0; +int nfwhm_b1 = 0; +int nfwhm_b2 = 0; +int nfwhm_b3 = 0; + +double beamPosX_b0,beamPosX_b1,beamPosX_b2,beamPosX_b3; +double beamFocusX_b0,beamFocusX_b1,beamFocusX_b2,beamFocusX_b3; +double beamPosX_fit_b0,beamPosX_fit_b1,beamPosX_fit_b2,beamPosX_fit_b3; +double beamFocusX_fit_b0,beamFocusX_fit_b1,beamFocusX_fit_b2,beamFocusX_fit_b3; +double beamSkewX_b0,beamSkewX_b1,beamSkewX_b2,beamSkewX_b3; +double beamKurtX_b0,beamKurtX_b1,beamKurtX_b2,beamKurtX_b3; +double beamNumX_b0,beamNumX_b1,beamNumX_b2,beamNumX_b3; + +double beamSidebandNoise_b0, beamSidebandNoise_b1, beamSidebandNoise_b2, beamSidebandNoise_b3 ; +int sidenumtocalc_b0,sidenumtocalc_b1,sidenumtocalc_b2,sidenumtocalc_b3; +size_t size = 5; +vector boxcar; +vector boxcarsort; +vector boxcarweight{1,3,5,3,1}; +vector data(128); +TVector sumvector_b0(128); +TVector sumvector_b1(128); +TVector sumvector_b2(128); +TVector sumvector_b3(128); + +TVector * sumvector_b0_ptr = &sumvector_b0; +TVector * sumvector_b1_ptr = &sumvector_b1; +TVector * sumvector_b2_ptr = &sumvector_b2; +TVector * sumvector_b3_ptr = &sumvector_b3; + +const int length = 100; //length of the rolling average +double array_b0[length][128] = {{0.}}; +double array_b1[length][128] = {{0.}}; +double array_b2[length][128] = {{0.}}; +double array_b3[length][128] = {{0.}}; + +double arrayavg_b0[128] = {0.}; +double arrayavg_b1[128] = {0.}; +double arrayavg_b2[128] = {0.}; +double arrayavg_b3[128] = {0.}; + + + +double board_b0_smooth_ch[128]; +double board_b1_smooth_ch[128]; +double board_b2_smooth_ch[128]; +double board_b3_smooth_ch[128]; + +bool graphsaved_b0 = false; +bool graphsaved_b1 = false; +bool graphsaved_b2 = false; +bool graphsaved_b3 = false; + +TVector beamontime(0,3,0.,0.,0.,0.,"END"); +TVector * beamontime_ptr = &beamontime; + +double calibration_b0[128] = {0.}; +double calibration_b1[128] = {0.}; +double calibration_b2[128] = {0.}; +double calibration_b3[128] = {0.}; + +TF1 * gausfunc_b0 = new TF1("gausfunc_b0","gaus(0)+[3]"); +TF1 * gausfunc_b1 = new TF1("gausfunc_b1","gaus(0)+[3]"); + + + +TGraphErrors * gausgraph_b0; +TGraphErrors * gausgraph_b1; +Int_t lastfit_b0 = 0; +Int_t lastfit_b1 = 0; +double errorx[128]; +double errory[128]; + + + +/// compile with: +//// $ make clean; make +/// run with: +//// $ ./convert +//// $ ./convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run2 + + + +int analyse(int argc, char **argv) +{ + + TVirtualFitter::SetDefaultFitter("Minuit2"); + TVirtualFitter::SetPrecision(0.01); + + std::cout << "Default Fitter:" << TVirtualFitter::GetDefaultFitter() << std::endl; + + //initialise some values; + for (int i = 0;i<128;i++){ + board_b0_ch_bkg[i] = 0.; + board_b1_ch_bkg[i] = 0.; + board_b2_ch_bkg[i] = 0.; + board_b3_ch_bkg[i] = 0.; + channellist_gsl_b0[i] = 0; + channellist_gsl_b1[i] = 0; + channellist_gsl_b2[i] = 0; + channellist_gsl_b3[i] = 0; + sumvector_b0[i] = 0; + sumvector_b1[i] = 0; + sumvector_b2[i] = 0; + sumvector_b3[i] = 0; + calibration_b0[i] = 1.0; + calibration_b1[i] = 1.0; + calibration_b2[i] = 1.0; + calibration_b3[i] = 1.0; + errorx[i]=17.; + errory[i]=17.; + + if (i<64) {pos[i] = double(i);} + else {pos[i] = double(i) + 0.2; } + } + if (argc > 1){ + //open the file names specified in the command line + string ethercatfile = argv[3]; + // argv[1]= "/work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/"; + // argv[2]= "Run11" + string filename = Form("%s%s.dat",argv[1],argv[2]); + string timestampfilename = Form("%s%s_timestamp.csv",argv[1],argv[2]); + string rootfilename = Form("%s/root/%s.root",argv[1],argv[2]); // Giulia needs to change the path %s/root/ of the written root file. + ifstream file(filename, ifstream::in | ifstream::binary); + ifstream timestampfile(timestampfilename, ifstream::in); + if (!file.is_open()){ + printf(".dat did not open.\n"); + return -1; //file could not be opened + } + if (!timestampfile.is_open()){ + printf("timestamp.csv did not open.\n"); + return -1; //file could not be opened + } + + + + ///some variables to get the data + // int number_of_records_to_read = 4*10; + // BufferData* buffer = new BufferData[number_of_records_to_read]; + //if(argc > 4) { + // framestart = atoi(argv[3]); + // frameend = atoi(argv[4]); + // } + + + int board_b = -1; + long int fileframesize = getFileSize(filename.c_str()) / ( 4*sizeof(BufferData) ); + BufferData* dataptr = new BufferData(); + + if (fileframesize>0){ + std::cout << "Number of frames:" << fileframesize << std::endl; + //open ROOT file for saving histos and TTree. + TFile *rootFile = new TFile(rootfilename.c_str(),"RECREATE"); + if ( rootFile->IsOpen() ) printf("ROOT file opened successfully\n"); + TH2D * th2_signal_vs_channel_b0 = new TH2D("th2_signal_vs_channel_b0","th2_signal_vs_channel_b0",128,0,128,2200,-1000,10000); + TH2D * th2_signal_vs_channel_b1 = new TH2D("th2_signal_vs_channel_b1","th2_signal_vs_channel_b1",128,0,128,2200,-1000,10000); + TH2D * th2_signal_vs_channel_b2 = new TH2D("th2_signal_vs_channel_b2","th2_signal_vs_channel_b2",128,0,128,2200,-1000,10000); + TH2D * th2_signal_vs_channel_b3 = new TH2D("th2_signal_vs_channel_b3","th2_signal_vs_channel_b3",128,0,128,2200,-1000,10000); + TH2D * th2_signal_vs_channel_sub_b0 = new TH2D("th2_signal_vs_channel_sub_b0","th2_signal_vs_channel_sub_b0",128,0,128,2200,-1000,10000); + TH2D * th2_signal_vs_channel_sub_b1 = new TH2D("th2_signal_vs_channel_sub_b1","th2_signal_vs_channel_sub_b1",128,0,128,2200,-1000,10000); + TH2D * th2_signal_vs_channel_sub_b2 = new TH2D("th2_signal_vs_channel_sub_b2","th2_signal_vs_channel_sub_b2",128,0,128,2200,-1000,10000); + TH2D * th2_signal_vs_channel_sub_b3 = new TH2D("th2_signal_vs_channel_sub_b3","th2_signal_vs_channel_sub_b3",128,0,128,2200,-1000,10000); + TH1D * th1_signal_b0 = new TH1D("th1_signal_b0","th1_signal_b0",2200,-10000,50000); + TH1D * th1_signal_b1 = new TH1D("th1_signal_b1","th1_signal_b1",2200,-10000,50000); + TH1D * th1_signal_b2 = new TH1D("th1_signal_b2","th1_signal_b2",2200,-10000,50000); + TH1D * th1_signal_b3 = new TH1D("th1_signal_b3","th1_signal_b3",2200,-10000,50000); + TGraph * graph_bkg_b0 = new TGraph(); + TGraph * graph_bkg_b1 = new TGraph(); + TGraph * graph_bkg_b2 = new TGraph(); + TGraph * graph_bkg_b3 = new TGraph(); + TGraph * gr_b0; + TGraph * gr_sm_b0; + TGraph * gr_b1; + TGraph * gr_sm_b1; + TGraph * gr_b2; + TGraph * gr_sm_b2; + TGraph * gr_b3; + TGraph * gr_sm_b3; + + TH2D * th2_signal_vs_channel_bkg_b0 = new TH2D("th2_signal_vs_channel_bkg_b0","th2_signal_vs_channel_bkg_b0",128,0,128,1000,-500,500); + TH2D * th2_signal_vs_channel_bkg_b1 = new TH2D("th2_signal_vs_channel_bkg_b1","th2_signal_vs_channel_bkg_b1",128,0,128,1000,-500,500); + TH2D * th2_signal_vs_channel_bkg_b2 = new TH2D("th2_signal_vs_channel_bkg_b2","th2_signal_vs_channel_bkg_b2",128,0,128,1000,-500,500); + TH2D * th2_signal_vs_channel_bkg_b3 = new TH2D("th2_signal_vs_channel_bkg_b3","th2_signal_vs_channel_bkg_b3",128,0,128,1000,-500,500); + + TTree *rootTree = new TTree("t","HIT Data Root Tree"); + rootTree->Branch("beamPosX_b0",&beamPosX_b0,"beamPosX_b0/D"); + rootTree->Branch("beamPosX_b1",&beamPosX_b1,"beamPosX_b1/D"); + rootTree->Branch("beamPosX_b2",&beamPosX_b2,"beamPosX_b2/D"); + rootTree->Branch("beamPosX_b3",&beamPosX_b3,"beamPosX_b3/D"); + + rootTree->Branch("beamPosX_fit_b0",&beamPosX_fit_b0,"beamPosX_fit_b0/D"); + rootTree->Branch("beamPosX_fit_b1",&beamPosX_fit_b1,"beamPosX_fit_b1/D"); + rootTree->Branch("beamPosX_fit_b2",&beamPosX_fit_b2,"beamPosX_fit_b2/D"); + rootTree->Branch("beamPosX_fit_b3",&beamPosX_fit_b3,"beamPosX_fit_b3/D"); + + rootTree->Branch("beamFocusX_b0",&beamFocusX_b0,"beamFocusX_b0/D"); + rootTree->Branch("beamFocusX_b1",&beamFocusX_b1,"beamFocusX_b1/D"); + rootTree->Branch("beamFocusX_b2",&beamFocusX_b2,"beamFocusX_b2/D"); + rootTree->Branch("beamFocusX_b3",&beamFocusX_b3,"beamFocusX_b3/D"); + + rootTree->Branch("beamFocusX_fit_b0",&beamFocusX_fit_b0,"beamFocusX_fit_b0/D"); + rootTree->Branch("beamFocusX_fit_b1",&beamFocusX_fit_b1,"beamFocusX_fit_b1/D"); + rootTree->Branch("beamFocusX_fit_b2",&beamFocusX_fit_b2,"beamFocusX_fit_b2/D"); + rootTree->Branch("beamFocusX_fit_b3",&beamFocusX_fit_b3,"beamFocusX_fit_b3/D"); + + + + rootTree->Branch("beamSkewX_b0",&beamSkewX_b0,"beamSkewX_b0/D"); + rootTree->Branch("beamSkewX_b1",&beamSkewX_b1,"beamSkewX_b1/D"); + rootTree->Branch("beamSkewX_b2",&beamSkewX_b2,"beamSkewX_b2/D"); + rootTree->Branch("beamSkewX_b3",&beamSkewX_b3,"beamSkewX_b3/D"); + rootTree->Branch("beamKurtX_b0",&beamKurtX_b0,"beamKurtX_b0/D"); + rootTree->Branch("beamKurtX_b1",&beamKurtX_b1,"beamKurtX_b1/D"); + rootTree->Branch("beamKurtX_b2",&beamKurtX_b2,"beamKurtX_b2/D"); + rootTree->Branch("beamKurtX_b3",&beamKurtX_b3,"beamKurtX_b3/D"); + rootTree->Branch("beamNumX_b0",&beamNumX_b0,"beamNumX_b0/D"); + rootTree->Branch("beamNumX_b1",&beamNumX_b1,"beamNumX_b1/D"); + rootTree->Branch("beamNumX_b2",&beamNumX_b2,"beamNumX_b2/D"); + rootTree->Branch("beamNumX_b3",&beamNumX_b3,"beamNumX_b3/D"); + rootTree->Branch("beamSignal_b0",&signal_b0,"beamSignal_b0/D"); + rootTree->Branch("beamSignal_b1",&signal_b1,"beamSignal_b1/D"); + rootTree->Branch("beamSignal_b2",&signal_b2,"beamSignal_b2/D"); + rootTree->Branch("beamSignal_b3",&signal_b3,"beamSignal_b3/D"); + + rootTree->Branch("beamSignal_b0_left",&signal_b0_left,"beamSignal_b0_left/D"); + rootTree->Branch("beamSignal_b1_left",&signal_b1_left,"beamSignal_b1_left/D"); + rootTree->Branch("beamSignal_b2_left",&signal_b2_left,"beamSignal_b2_left/D"); + rootTree->Branch("beamSignal_b3_left",&signal_b3_left,"beamSignal_b3_left/D"); + rootTree->Branch("beamSignal_b0_right",&signal_b0_right,"beamSignal_b0_right/D"); + rootTree->Branch("beamSignal_b1_right",&signal_b1_right,"beamSignal_b1_right/D"); + rootTree->Branch("beamSignal_b2_right",&signal_b2_right,"beamSignal_b2_right/D"); + rootTree->Branch("beamSignal_b3_right",&signal_b3_right,"beamSignal_b3_right/D"); + + rootTree->Branch("eventID",&eventID,"eventID/I"); + //rootTree->Branch("board_b0_ch",&board_b0_ch,"board_b0_ch[128]/D"); + //rootTree->Branch("board_b1_ch",&board_b1_ch,"board_b1_ch[128]/D"); + //rootTree->Branch("board_b2_ch",&board_b2_ch,"board_b2_ch[128]/D"); + //rootTree->Branch("board_b3_ch",&board_b3_ch,"board_b3_ch[128]/D"); + + rootTree->Branch("beamSidebandNoise_b0",&beamSidebandNoise_b0,"beamSidebandNoise_b0/D"); + rootTree->Branch("beamSidebandNoise_b1",&beamSidebandNoise_b1,"beamSidebandNoise_b1/D"); + rootTree->Branch("beamSidebandNoise_b2",&beamSidebandNoise_b2,"beamSidebandNoise_b2/D"); + rootTree->Branch("beamSidebandNoise_b3",&beamSidebandNoise_b3,"beamSidebandNoise_b3/D"); + //rootTree->Branch("arrayavg_b0",&arrayavg_b0,"arrayavg_b0[128]/D"); + //rootTree->Branch("arrayavg_b1",&arrayavg_b1,"arrayavg_b1[128]/D"); + // rootTree->Branch("arrayavg_b2",&arrayavg_b2,"arrayavg_b2[128]/D"); + //rootTree->Branch("arrayavg_b3",&arrayavg_b3,"arrayavg_b3[128]/D"); + double time; + + // import and align matching ethercat data + TTree *tree2 = new TTree("t2", "t2"); + std::cout << " Loading Ethercat data." << std::endl; + tree2->ReadFile(ethercatfile.c_str(), "RELTIME2/D:IC1/D:MW1_POSX/D:MW1_POSY/D:ANALOG_IN1/D:ENERGY/D:INTENSITY/D:ION-SORT/D:TIME2/D", '\t'); + std::cout << "Ethercat data loaded." << std::endl; + tree2->Print(); + int k = 0; + // int count = 0; + double ic1, ic2, mw1_focusx, mw1_focusy, mw2_focusx, mw2_focusy, mw1_posx, mw1_posy, mw2_posx, mw2_posy; + double ic1_avg, ic2_avg, mw1_focusx_avg, mw1_focusy_avg, mw2_focusx_avg, mw2_focusy_avg, mw1_posx_avg, mw1_posy_avg, mw2_posx_avg, mw2_posy_avg; + + double analog_in1; + double energy; + double intensity; + double ionsort; + + double rel_time2,time2; + + double timeoffset; + int mwoffset; + double timewindow; + double timeoffset2; + double timewindow2; + + + rootTree->Branch("ic1_avg", &ic1_avg, "ic1_avg/D"); + rootTree->Branch("mw1_posx", &mw1_posx_avg, "mw1_posx/D"); + rootTree->Branch("mw1_posy", &mw1_posy_avg, "mw1_posy/D"); + rootTree->Branch("energy", &energy, "energy/D"); + rootTree->Branch("intensity", &intensity, "intensity/D"); + rootTree->Branch("ionsort", &ionsort, "ionsort/D"); + + + timeoffset = 0.10; //offset between ic and bpm readouts + mwoffset = 2; // offset for timestamped event. MW chamber position correlation seems to be better in other windows + timewindow = -0.0999; //should be a negative number. window size in time to average over. + timeoffset2 = -0.00; //offset between ic and bpm readouts + timewindow2 = -0.05; //should be a negative number. window size in time to average over. + ////////////////////////////////////////////////////////////////// + ///// ETHERCAT DATA + ////////////////////////////////////////////////////////////////// + // tree->SetBranchAddress("time", &time); + + tree2->SetBranchAddress("RELTIME2", &rel_time2); + tree2->SetBranchAddress("TIME2", &time2); + tree2->SetBranchAddress("IC1", &ic1); + // tree2->SetBranchAddress("IC2", &ic2); + //tree2->SetBranchAddress("MW1_FOCUSX", &mw1_focusx); + //tree2->SetBranchAddress("MW1_FOCUSY", &mw1_focusy); + ///tree2->SetBranchAddress("MW2_FOCUSX", &mw2_focusx); + ///tree2->SetBranchAddress("MW2_FOCUSY", &mw2_focusy); + tree2->SetBranchAddress("MW1_POSX", &mw1_posx); + tree2->SetBranchAddress("MW1_POSY", &mw1_posy); + //tree2->SetBranchAddress("MW2_POSX", &mw2_posx); + //tree2->SetBranchAddress("MW2_POSY", &mw2_posy); + tree2->SetBranchAddress("ENERGY", &energy); + tree2->SetBranchAddress("INTENSITY", &intensity); + tree2->SetBranchAddress("ION-SORT", &ionsort); + tree2->SetBranchAddress("ANALOG_IN1", &analog_in1); + + + + + + int currentEntryTree2 = 1; + + // int nevents = tree->GetEntries(); + int nevents2 = tree2->GetEntries(); + + int icCounter = 0; + + int count = 0; + int count2 = 0; + + //loop through recorded data frames + for (int frame = 0; frame10000) break; + eventID = frame; + if (timestampfile) timestampfile >> time ; + //printf("%i %f\n", eventID, time); + + count= 0; + count2 = 0; + ic1_avg = 0.; + mw1_posx_avg = 0.; + mw1_posy_avg = 0.; + tree2->GetEntry(currentEntryTree2); + + + /* if (frame % 100 == 0) + { + + printf("merging event %d ,", frame); + printf("Time %f \n", time); + printf("Entry hit %d ,", currentEntryTree2); + printf("Time hit %f \n", time2); + } + */ + + while (time2 < time + timeoffset && currentEntryTree2 < nevents2 ) + { + if (time2 - time - timeoffset > timewindow) + { + tree2->GetEntry(currentEntryTree2); + + if (ic1>0.0) ic1_avg += ic1; + + if (ic1>0.0) count++; + // if (frame % 200 == 0) printf("%i %2.3f %2.3f %2.3f %2.3f %2.3f %i \n", count, ic1, time2, time, timeoffset, time2 - time - timeoffset, mwoffset); + } + + tree2->GetEntry(currentEntryTree2); + + if ( time2 - time - timeoffset2 > timewindow2) + { + tree2->GetEntry(currentEntryTree2 + mwoffset); //why currentEtryTree2-4? + mw1_posx_avg += mw1_posx; + mw1_posy_avg += mw1_posy; + count2++; + // if (i % 2000 == 0) printf("%i %2.3f %2.3f %2.3f %2.3f\n", count2, time, time2, ic1, mw1_posx); + //if (i % 2001 == 0) printf("%i %2.3f %2.3f %2.3f %2.3f\n", count2, time, time2, ic1, mw1_posx); + // if (i % 2002 == 0) printf("%i %2.3f %2.3f %2.3f %2.3f\n", count2, time, time2, ic1, mw1_posx); + // printf("%i %2.3f %2.3f %2.3f %2.3f\n", count2, time, time2, ic1, mw1_posx); + } + // currentEntryTree2++; + tree2->GetEntry(currentEntryTree2); + currentEntryTree2++; + + + + + if (count2>0){ + mw1_posx_avg /= double(count2); //the positions are weighted by the charge + mw1_posy_avg /= double(count2); + } + if(count>0){ + ic1_avg /= double(count); + if (ic1_avg>1.) icCounter++; + // if (frame % 2000 == 0) printf("%i %f.2 %i \n", count, ic1_avg, icCounter); + } + // std::cout << ic1_avg << " " << icCounter << std::endl; + + + } + /////////end of ethercat matching + if(frame >=2000&& ic1_avg<0.5) continue; + + + /////////////////////////////////// + //// HIT DATA + /////////////////////////////////// + + + //board_b 0 + board_b=0; + signal_b0 = 0.; + maxchannelamp_b0 = 0.; + + file.seekg(framestart*sizeof(BufferData)+board_b*sizeof(BufferData)+4*frame*sizeof(BufferData)); + file.read ((char*)dataptr ,sizeof(BufferData)); + if (dataptr->sync_frame.device_nr==board_b){ + // std::cout << frame << " " << dataptr->sync_frame.device_nr << " " << dataptr->sync_frame.local_ctr << " " << dataptr->sync_frame.global_ctr << " " << dataptr->sync_frame.sma_state << std::endl; + if (frame%1000==0) std::cout << "Frame: " << frame << " (" <sensor_data[i]; + if (frame<1000){ + board_b0_ch_bkg[i] += board_b0_ch[i]/1000.; //find baseline from the average of first 1000 events + + } + else if (frame>=1000&& frame<2000){ + board_b0_ch[i] -= board_b0_ch_bkg[i]; //histogram the subtracted baseline in the next 1000 events + th2_signal_vs_channel_bkg_b0->Fill(i,board_b0_ch[i]); + if (i==1) graph_bkg_b0->SetPoint(graph_bkg_b0->GetN(), frame, board_b0_ch[i]); + } + else if (frame>=2000) { + board_b0_ch[i]-=board_b0_ch_bkg[i]; // the rest background subtracted + board_b0_ch[i]*=calibration_b0[i]; //calibration factor + th2_signal_vs_channel_b0->Fill(i,board_b0_ch[i]); + // signal_b0 +=board_b0_ch[i] ; + if (board_b0_ch[i]> maxchannelamp_b0) { + maxchannel_b0 = i; + maxchannelamp_b0 = board_b0_ch[i]; + } + //calculate a rolling average of the signal + arrayavg_b0[i] = 0; + for (int j = 1; j-1000){ + array_b0[length-1][i] = board_b0_ch[i]; + arrayavg_b0[i] += array_b0[length-1][i]/double(length); + } + //////////////////////////////////////////// + } + } + // th1_signal_b0->Fill(signal_b0); + } + else { + std::cout << "Error." << std::endl; + } + + //board_b 1 + board_b=1; + signal_b1=0.; + maxchannelamp_b1 = 0.; + + file.seekg(framestart*sizeof(BufferData)+board_b*sizeof(BufferData)+4*frame*sizeof(BufferData)); + file.read ((char*)dataptr ,sizeof(BufferData)); + if (dataptr->sync_frame.device_nr==board_b){ + //std::cout << frame << " " << dataptr->sync_frame.device_nr << std::endl; + for (int i = 0;i<128;i++){ + board_b1_ch[i] = dataptr->sensor_data[i]; + if (frame<1000){ + board_b1_ch_bkg[i] += board_b1_ch[i]/1000.; //find baseline from the average of first 1000 events + } + else if (frame>=1000&& frame<2000){ + board_b1_ch[i] -= board_b1_ch_bkg[i]; //histogram the subtracted baseline in the next 1000 events + th2_signal_vs_channel_bkg_b1->Fill(i,board_b1_ch[i]); + if (i==1) graph_bkg_b1->SetPoint(graph_bkg_b1->GetN(), frame, board_b1_ch[i]); + + } + else if (frame>=2000) { + board_b1_ch[i]-=board_b1_ch_bkg[i]; // the rest are background subtracted + board_b1_ch[i]*=calibration_b1[i]; //calibration factor + + th2_signal_vs_channel_b1->Fill(i,board_b1_ch[i]); + // signal_b1 +=board_b1_ch[i] ; + if (board_b1_ch[i]> maxchannelamp_b1) { + maxchannel_b1 = i; + maxchannelamp_b1 = board_b1_ch[i]; + } + //calculate a rolling average of the signal + arrayavg_b1[i] = 0; + for (int j = 1; j-1000){ + array_b1[length-1][i] = board_b1_ch[i]; + arrayavg_b1[i] += array_b1[length-1][i]/double(length); + } + //////////////////////////////////////////// + } + } + // th1_signal_b1->Fill(signal_b1); + } + else { + std::cout << "Error." << std::endl; + } + //board_b 2 + board_b=2; + signal_b2=0.; + maxchannelamp_b2 = 0.; + file.seekg(framestart*sizeof(BufferData)+board_b*sizeof(BufferData)+4*frame*sizeof(BufferData)); + file.read ((char*)dataptr ,sizeof(BufferData)); + if (dataptr->sync_frame.device_nr==board_b){ + //std::cout << frame << " " << dataptr->sync_frame.device_nr << std::endl; + for (int i = 0;i<128;i++){ + board_b2_ch[i] = dataptr->sensor_data[i]; + if (frame<1000){ + board_b2_ch_bkg[i] += board_b2_ch[i]/1000.; //find baseline from the average of first 1000 events + } + else if (frame>=1000&& frame<2000){ + board_b2_ch[i] -= board_b2_ch_bkg[i]; //histogram the subtracted baseline in the next 1000 events + th2_signal_vs_channel_bkg_b2->Fill(i,board_b2_ch[i]); + if (i==1) graph_bkg_b2->SetPoint(graph_bkg_b2->GetN(), frame, board_b2_ch[i]); + + } + else if (frame>=2000) { + board_b2_ch[i]-=board_b2_ch_bkg[i]; // the rest background subtracted + board_b2_ch[i]*=calibration_b2[i]; //calibration factor + + th2_signal_vs_channel_b2->Fill(i,board_b2_ch[i]); + // signal_b2 +=board_b2_ch[i] ; + if (board_b2_ch[i]> maxchannelamp_b2) { + maxchannel_b2 = i; + maxchannelamp_b2 = board_b2_ch[i]; + } + //calculate a rolling average of the signal + arrayavg_b2[i] = 0; + for (int j = 1; j-1000){ + array_b2[length-1][i] = board_b2_ch[i]; + arrayavg_b2[i] += array_b2[length-1][i]/double(length); + } + //////////////////////////////////////////// + } + } + // th1_signal_b2->Fill(signal_b2); + } + else { + std::cout << "Error." << std::endl; + } + + //board_b 3 + board_b=3; + signal_b3=0.; + maxchannelamp_b3 = 0.; + file.seekg(framestart*sizeof(BufferData)+board_b*sizeof(BufferData)+4*frame*sizeof(BufferData)); + file.read ((char*)dataptr ,sizeof(BufferData)); + if (dataptr->sync_frame.device_nr==board_b){ + //std::cout << frame << " " << dataptr->sync_frame.device_nr << std::endl; + for (int i = 0;i<128;i++){ + board_b3_ch[i] = dataptr->sensor_data[i]; + if (frame<1000){ + board_b3_ch_bkg[i] += board_b3_ch[i]/1000.; //find baseline from the average of first 1000 events + } + else if (frame>=1000&& frame<2000){ + board_b3_ch[i] -= board_b3_ch_bkg[i]; //histogram the subtracted baseline in the next 1000 events + th2_signal_vs_channel_bkg_b3->Fill(i,board_b3_ch[i]); + if (i==1) graph_bkg_b3->SetPoint(graph_bkg_b3->GetN(), frame, board_b3_ch[i]); + + } + else if (frame>=2000) { + board_b3_ch[i]-=board_b3_ch_bkg[i]; // the rest of the events are background subtracted + board_b3_ch[i]*=calibration_b3[i]; //with a calibration factor + + th2_signal_vs_channel_b3->Fill(i,board_b3_ch[i]); + // signal_b3 +=board_b3_ch[i] ; + if (board_b3_ch[i]> maxchannelamp_b3) { + maxchannel_b3 = i; + maxchannelamp_b3 = board_b3_ch[i]; + } + //calculate a rolling average of the signal + arrayavg_b3[i] = 0; + for (int j = 1; j-1000){ + array_b3[length-1][i] = board_b3_ch[i]; + arrayavg_b3[i] += array_b3[length-1][i]/double(length); + } + //////////////////////////////////////////// + } + } + // th1_signal_b3->Fill(signal_b3); + } + else { + std::cout << "Error." << std::endl; + } + + + + + //////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////// + //start the signal analysis + //////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////// + + if (frame>=2000){ + + + + + //////////////////////////////////////////////////////////// + //boxcar smoothing filter + //////////////////////////////////////////////////////////// + if (smooth_on){ + maxchannelamp_b0 = 0.0; + maxchannelamp_b1 = 0.0; + maxchannelamp_b2 = 0.0; + maxchannelamp_b3 = 0.0; + } + boxcar.clear(); + boxcar.push_back(board_b0_ch[0]); + boxcar.push_back(board_b0_ch[1]); + // std::cout << frame << std::endl; + for (int i = 0;i<128;i++){ + channellist[i] = i; + if (i<126) { + boxcar.push_back(board_b0_ch[i+2]); + } + if ( (i<126&&boxcar.size()>5) || (i>=126&&boxcar.size()>3) ) boxcar.erase(boxcar.cbegin()); + board_b0_smooth_ch[i] = gsl_stats_mean(boxcar.data(), 1, 5 ); + if (smooth_on && board_b0_smooth_ch[i]> maxchannelamp_b0) { + maxchannel_b0 = i; + maxchannelamp_b0 = board_b0_smooth_ch[i]; + } + } + if (eventID>2001&&maxchannelamp_b0>100&&!graphsaved_b0) { + gr_b0 = new TGraph(128, channellist, board_b0_ch); + gr_b0->SetTitle("RawData_b0"); + gr_b0->SetName("RawData_b0"); + gr_b0->Write(); + gr_sm_b0 = new TGraph(128, channellist, board_b0_smooth_ch); + gr_sm_b0->SetTitle("SmoothedData_b0"); + gr_sm_b0->SetName("SmoothedData_b0"); + gr_sm_b0->Write(); + graphsaved_b0=true; + } + + boxcar.clear(); + boxcar.push_back(board_b1_ch[0]); + boxcar.push_back(board_b1_ch[1]); + // std::cout << frame << std::endl; + for (int i = 0;i<128;i++){ + channellist[i] = i; + if (i<126) { + boxcar.push_back(board_b1_ch[i+2]); + } + if ( (i<126&&boxcar.size()>5) || (i>=126&&boxcar.size()>3) ) boxcar.erase(boxcar.cbegin()); + board_b1_smooth_ch[i] = gsl_stats_mean(boxcar.data(), 1, 5 ); + if (smooth_on && board_b1_smooth_ch[i]> maxchannelamp_b1) { + maxchannel_b1 = i; + maxchannelamp_b1 = board_b1_smooth_ch[i]; + } + } + if (eventID>2001&&maxchannelamp_b1>100&&!graphsaved_b1) { + gr_b1 = new TGraph(128, channellist, board_b1_ch); + gr_b1->SetTitle("RawData_b1"); + gr_b1->SetName("RawData_b1"); + gr_b1->Write(); + gr_sm_b1 = new TGraph(128, channellist, board_b1_smooth_ch); + gr_sm_b1->SetTitle("SmoothedData_b1"); + gr_sm_b1->SetName("SmoothedData_b1"); + gr_sm_b1->Write(); + graphsaved_b1=true; + } + + boxcar.clear(); + boxcar.push_back(board_b2_ch[0]); + boxcar.push_back(board_b2_ch[1]); + // std::cout << frame << std::endl; + for (int i = 0;i<128;i++){ + channellist[i] = i; + if (i<126) { + boxcar.push_back(board_b2_ch[i+2]); + } + if ( (i<126&&boxcar.size()>5) || (i>=126&&boxcar.size()>3) ) boxcar.erase(boxcar.cbegin()); + board_b2_smooth_ch[i] = gsl_stats_mean(boxcar.data(), 1, 5 ); + if (smooth_on && board_b2_smooth_ch[i]> maxchannelamp_b2) { + maxchannel_b2 = i; + maxchannelamp_b2 = board_b2_smooth_ch[i]; + } + } + if (eventID>2001&&maxchannelamp_b2>100&&!graphsaved_b2) { + gr_b2 = new TGraph(128, channellist, board_b2_ch); + gr_b2->SetTitle("RawData_b2"); + gr_b2->SetName("RawData_b2"); + gr_b2->Write(); + gr_sm_b2 = new TGraph(128, channellist, board_b2_smooth_ch); + gr_sm_b2->SetTitle("SmoothedData_b2"); + gr_sm_b2->SetName("SmoothedData_b2"); + gr_sm_b2->Write(); + graphsaved_b2=true; + } + + + boxcar.clear(); + boxcar.push_back(board_b3_ch[0]); + boxcar.push_back(board_b3_ch[1]); + // std::cout << frame << std::endl; + for (int i = 0;i<128;i++){ + channellist[i] = i; + if (i<126) { + boxcar.push_back(board_b3_ch[i+2]); + } + if ( (i<126&&boxcar.size()>5) || (i>=126&&boxcar.size()>3) ) boxcar.erase(boxcar.cbegin()); + board_b3_smooth_ch[i] = gsl_stats_mean(boxcar.data(), 1, 5 ); + if (smooth_on && board_b3_smooth_ch[i]> maxchannelamp_b3) { + maxchannel_b3 = i; + maxchannelamp_b3 = board_b3_smooth_ch[i]; + } + } + if (eventID>2001&&maxchannelamp_b3>100&&!graphsaved_b3) { + gr_b3 = new TGraph(128, channellist, board_b3_ch); + gr_b3->SetTitle("RawData_b3"); + gr_b3->SetName("RawData_b3"); + gr_b3->Write(); + gr_sm_b3 = new TGraph(128, channellist, board_b3_smooth_ch); + gr_sm_b3->SetTitle("SmoothedData_b3"); + gr_sm_b3->SetName("SmoothedData_b3"); + gr_sm_b3->Write(); + graphsaved_b3=true; + } + + + + //////////////////////////////////////////////////////////// + //find the approx FWHM + //////////////////////////////////////////////////////////// + + nfwhm_b0 =0; + nfwhm_b1 =0; + nfwhm_b2 =0; + nfwhm_b3 =0; + if (smooth_on){ + for (int i = 0;i<128;i++){ + if (board_b0_smooth_ch[i] > maxchannelamp_b0/2.) nfwhm_b0++; + if (board_b1_smooth_ch[i] > maxchannelamp_b1/2.) nfwhm_b1++; + if (board_b2_smooth_ch[i] > maxchannelamp_b2/2.) nfwhm_b2++; + if (board_b3_smooth_ch[i] > maxchannelamp_b3/2.) nfwhm_b3++; + signal_gsl_b0[i] = 0.; + signal_gsl_b1[i] = 0.; + signal_gsl_b2[i] = 0.; + signal_gsl_b3[i] = 0.; + + } + + } + else { + for (int i = 0;i<128;i++){ + if (board_b0_ch[i] > maxchannelamp_b0/2.) nfwhm_b0++; + if (board_b1_ch[i] > maxchannelamp_b1/2.) nfwhm_b1++; + if (board_b2_ch[i] > maxchannelamp_b2/2.) nfwhm_b2++; + if (board_b3_ch[i] > maxchannelamp_b3/2.) nfwhm_b3++; + signal_gsl_b0[i] = 0.; + signal_gsl_b1[i] = 0.; + signal_gsl_b2[i] = 0.; + signal_gsl_b3[i] = 0.; + + } + } + + + //////////////////////////////////////////////////////////// + //integrate the sidebands first to check for baseline shift + //////////////////////////////////////////////////////////// + + beamSidebandNoise_b0 = 0.; + sidenumtocalc_b0 = 0; + for (int i =0; i=0 && i<=127){ + beamSidebandNoise_b0 += board_b0_ch[i]; //integrate the noise outside the peak + sidenumtocalc_b0++; + } + } + for (int i = maxchannel_b0+nfwhm_b0; i < 128; i++){ + if (i>=0 && i<=127){ + beamSidebandNoise_b0 += board_b0_ch[i]; //integrate the noise outside the peak + sidenumtocalc_b0++; + } + } + if (sidenumtocalc_b0>0) beamSidebandNoise_b0 = beamSidebandNoise_b0 /double(sidenumtocalc_b0); // channel baseline shift + + beamSidebandNoise_b1 = 0.; + sidenumtocalc_b1 = 0; + for (int i =0; i=0 && i<=127){ + beamSidebandNoise_b1 += board_b1_ch[i]; //integrate the noise outside the peak + sidenumtocalc_b1++; + } + } + for (int i = maxchannel_b1+nfwhm_b1; i < 128; i++){ + if (i>=0 && i<=127){ + beamSidebandNoise_b1 += board_b1_ch[i]; //integrate the noise outside the peak + sidenumtocalc_b1++; + } + } + if (sidenumtocalc_b1>0) beamSidebandNoise_b1 = beamSidebandNoise_b1 /double(sidenumtocalc_b1); // channel baseline shift + + beamSidebandNoise_b2 = 0.; + sidenumtocalc_b2 = 0; + for (int i =0; i=0 && i<=127){ + beamSidebandNoise_b2 += board_b2_ch[i]; //integrate the noise outside the peak + sidenumtocalc_b2++; + } + } + for (int i = maxchannel_b2+nfwhm_b2; i < 128; i++){ + if (i>=0 && i<=127){ + beamSidebandNoise_b2 += board_b2_ch[i]; //integrate the noise outside the peak + sidenumtocalc_b2++; + } + } + if (sidenumtocalc_b2>0) beamSidebandNoise_b2 = beamSidebandNoise_b2 /double(sidenumtocalc_b2); // channel baseline shift + + beamSidebandNoise_b3 = 0.; + sidenumtocalc_b3 = 0; + for (int i =0; i=0 && i<=127){ + beamSidebandNoise_b3 += board_b3_ch[i]; //integrate the noise outside the peak + sidenumtocalc_b3++; + } + } + for (int i = maxchannel_b3+nfwhm_b3; i < 128; i++){ + if (i>=0 && i<=127){ + beamSidebandNoise_b3 += board_b3_ch[i]; //integrate the noise outside the peak + sidenumtocalc_b3++; + } + } + if (sidenumtocalc_b3>0) beamSidebandNoise_b3 = beamSidebandNoise_b3 /double(sidenumtocalc_b3); // channel baseline shift + + + + + + //////////////////////////////////////////////////////////// + //integrate under the approximate peak + //build the channel list for statistical analysis + //////////////////////////////////////////////////////////// + + numtocalc_b0 = 0; + numtocalc_b1 = 0; + numtocalc_b2 = 0; + numtocalc_b3 = 0; + beamSidebandNoise_b0=0.; + beamSidebandNoise_b1=0.; + beamSidebandNoise_b2=0.; + beamSidebandNoise_b3=0.; + + signal_b0_left = 0.; + signal_b0_right = 0.; + for (int i = maxchannel_b0-nfwhm_b0 ; i <= maxchannel_b0 + nfwhm_b0; i++){ + if (i>=0 && i<=127 && board_b0_ch[i]>50){ + signal_b0 +=board_b0_ch[i]-beamSidebandNoise_b0 ; + if (i<64) {signal_b0_left +=board_b0_ch[i]-beamSidebandNoise_b0 ;} + else {signal_b0_right +=board_b0_ch[i]-beamSidebandNoise_b0 ;} + signal_gsl_b0[numtocalc_b0]=board_b0_ch[i]-beamSidebandNoise_b0 ; + // channellist_gsl_b0[numtocalc_b0] = i; + channellist_gsl_b0[numtocalc_b0] = pos[i]; + numtocalc_b0++; + } + } + th1_signal_b0->Fill(signal_b0); + + signal_b1_left = 0.; + signal_b1_right = 0.; + for (int i = maxchannel_b1-nfwhm_b1 ; i <= maxchannel_b1 + nfwhm_b1; i++){ + if (i>=0 && i<=127&&board_b1_ch[i]>50){ + signal_b1 +=board_b1_ch[i]-beamSidebandNoise_b1 ; + if (i<64) {signal_b1_left +=board_b1_ch[i]-beamSidebandNoise_b1 ;} + else {signal_b1_right +=board_b1_ch[i]-beamSidebandNoise_b1 ;} + signal_gsl_b1[numtocalc_b1]=board_b1_ch[i]-beamSidebandNoise_b1 ; + // channellist_gsl_b1[numtocalc_b1] = i; + channellist_gsl_b1[numtocalc_b1] = pos[i]; + numtocalc_b1++; + } + } + th1_signal_b0->Fill(signal_b1); + + signal_b2_left = 0.; + signal_b2_right = 0.; + for (int i = maxchannel_b2-nfwhm_b2 ; i <= maxchannel_b2 + nfwhm_b2; i++){ + if (i>=0 && i<=127&&board_b2_ch[i]>50){ + signal_b2 +=board_b2_ch[i]-beamSidebandNoise_b2 ; + if (i<64) {signal_b2_left +=board_b2_ch[i]-beamSidebandNoise_b2 ;} + else {signal_b2_right +=board_b2_ch[i]-beamSidebandNoise_b2 ;} + signal_gsl_b2[numtocalc_b2]=board_b2_ch[i]-beamSidebandNoise_b2 ; + // channellist_gsl_b2[numtocalc_b2] = i; + channellist_gsl_b2[numtocalc_b2] = pos[i]; + numtocalc_b2++; + } + } + th1_signal_b0->Fill(signal_b2); + + signal_b3_left = 0.; + signal_b3_right = 0.; + for (int i = maxchannel_b3-nfwhm_b3 ; i <= maxchannel_b3 + nfwhm_b3; i++){ + if (i>=0 && i<=127&&board_b3_ch[i]>50){ + signal_b3 +=board_b3_ch[i]-beamSidebandNoise_b3 ; + if (i<64) {signal_b3_left +=board_b3_ch[i]-beamSidebandNoise_b3 ;} + else {signal_b3_right +=board_b3_ch[i]-beamSidebandNoise_b3 ;} + signal_gsl_b3[numtocalc_b3]=board_b3_ch[i]-beamSidebandNoise_b3 ; + //channellist_gsl_b3[numtocalc_b3] = i; + channellist_gsl_b3[numtocalc_b3] = pos[i]; + numtocalc_b3++; + } + } + th1_signal_b0->Fill(signal_b3); + + + for (int i=0;i<128;i++){ + if(signal_b0>700) { + th2_signal_vs_channel_sub_b0->Fill(i,board_b0_ch[i]-beamSidebandNoise_b0); + sumvector_b0[i] += board_b0_ch[i];//-beamSidebandNoise_b0; + + } + if(signal_b1>700) { + th2_signal_vs_channel_sub_b1->Fill(i,board_b1_ch[i]-beamSidebandNoise_b1); + sumvector_b1[i] += board_b1_ch[i];//-beamSidebandNoise_b1; + } + if(signal_b2>700){ + th2_signal_vs_channel_sub_b2->Fill(i,board_b2_ch[i]-beamSidebandNoise_b2); + sumvector_b2[i] += board_b2_ch[i];//-beamSidebandNoise_b2; + } + if(signal_b3>700) { + th2_signal_vs_channel_sub_b3->Fill(i,board_b3_ch[i]-beamSidebandNoise_b3); + sumvector_b3[i] += board_b3_ch[i];//-beamSidebandNoise_b3; + } + } + if(signal_b0>100) beamontime[0]+=1.0; + if(signal_b1>100) beamontime[1]+=1.0; + if(signal_b2>100) beamontime[2]+=1.0; + if(signal_b3>100) beamontime[3]+=1.0; + + + + ///add gsl stuff here. + /* std::cout << maxchannel_b0 << " " << maxchannel_b1 << " "<< maxchannel_b2 << " "<< maxchannel_b3 << " " << std::endl; + std::cout << maxchannelamp_b0 << " " << maxchannelamp_b1 << " "<< maxchannelamp_b2 << " "<< maxchannelamp_b3 << " " << std::endl; + std::cout << nfwhm_b0 << " " << nfwhm_b1 << " " << nfwhm_b2 << " " << nfwhm_b3 << " " << std::endl; + std::cout << std::endl;*/ + + beamPosX_b0 = gsl_stats_wmean(signal_gsl_b0,1,channellist_gsl_b0,1,numtocalc_b0); //calculate the weighted mean + beamFocusX_b0 = gsl_stats_wsd_with_fixed_mean(signal_gsl_b0,1,channellist_gsl_b0,1,numtocalc_b0,beamPosX_b0); //Standard Deviation + beamSkewX_b0 = gsl_stats_wskew_m_sd(signal_gsl_b0,1,channellist_gsl_b0,1,numtocalc_b0,beamPosX_b0,beamFocusX_b0); //skewness (symmetry) + beamKurtX_b0 = gsl_stats_wkurtosis_m_sd(signal_gsl_b0,1,channellist_gsl_b0,1,numtocalc_b0,beamPosX_b0,beamFocusX_b0); //excess kurtosis (well behaved tails) + beamNumX_b0 = numtocalc_b0; + beamFocusX_b0 *=2.3548;//SD-->FWHM + + beamPosX_b1 = gsl_stats_wmean(signal_gsl_b1,1,channellist_gsl_b1,1,numtocalc_b1); //calculate the weighted mean + beamFocusX_b1 = gsl_stats_wsd_with_fixed_mean(signal_gsl_b1,1,channellist_gsl_b1,1,numtocalc_b1,beamPosX_b1); //Standard Deviation + beamSkewX_b1 = gsl_stats_wskew_m_sd(signal_gsl_b1,1,channellist_gsl_b1,1,numtocalc_b1,beamPosX_b1,beamFocusX_b1); //skewness (symmetry) + beamKurtX_b1 = gsl_stats_wkurtosis_m_sd(signal_gsl_b1,1,channellist_gsl_b1,1,numtocalc_b1,beamPosX_b1,beamFocusX_b1); //excess kurtosis (well behaved tails) + beamNumX_b1 = numtocalc_b1; + beamFocusX_b1 *=2.3548;//SD-->FWHM + + beamPosX_b2 = gsl_stats_wmean(signal_gsl_b2,1,channellist_gsl_b2,1,numtocalc_b2); //calculate the weighted mean + beamFocusX_b2 = gsl_stats_wsd_with_fixed_mean(signal_gsl_b2,1,channellist_gsl_b2,1,numtocalc_b2,beamPosX_b2); //Standard Deviation + beamSkewX_b2 = gsl_stats_wskew_m_sd(signal_gsl_b2,1,channellist_gsl_b2,1,numtocalc_b2,beamPosX_b2,beamFocusX_b2); //skewness (symmetry) + beamKurtX_b2 = gsl_stats_wkurtosis_m_sd(signal_gsl_b2,1,channellist_gsl_b2,1,numtocalc_b2,beamPosX_b2,beamFocusX_b2); //excess kurtosis (well behaved tails) + beamNumX_b2 = numtocalc_b2; + beamFocusX_b2 *=2.3548;//SD-->FWHM + + beamPosX_b3 = gsl_stats_wmean(signal_gsl_b3,1,channellist_gsl_b3,1,numtocalc_b3); //calculate the weighted mean + beamFocusX_b3 = gsl_stats_wsd_with_fixed_mean(signal_gsl_b3,1,channellist_gsl_b3,1,numtocalc_b3,beamPosX_b3); //Standard Deviation + beamSkewX_b3 = gsl_stats_wskew_m_sd(signal_gsl_b3,1,channellist_gsl_b3,1,numtocalc_b3,beamPosX_b3,beamFocusX_b3); //skewness (symmetry) + beamKurtX_b3 = gsl_stats_wkurtosis_m_sd(signal_gsl_b3,1,channellist_gsl_b3,1,numtocalc_b3,beamPosX_b3,beamFocusX_b3); //excess kurtosis (well behaved tails) + beamNumX_b3 = numtocalc_b3; + beamFocusX_b3 *=2.3548;//SD-->FWHM + + + ///////////////////////////////////////////////// + /////Add fitting algorithm here + ///////////////////////////////////////////////// + /* + + use board_b0_ch[i] to fill a TGraph. + fit with a gaussian + subtract the difference + fill a THF2 with the difference, delta_amp vs channel + */ + + // std::cout << ic1_avg << std::endl; + + + //fit with a gaussian function; + if (doFit&&ic1_avg>0.1){ + if ((lastfit_b0!=0||lastfit_b1!=0)&&numtocalc_b0>1&&numtocalc_b0<50){ + gausfunc_b0->SetParameters(signal_b0/(sqrt(2)*beamFocusX_b0/2.3548),beamPosX_b0,4.,0.); + gausfunc_b1->SetParameters(signal_b1/(sqrt(2)*beamFocusX_b1/2.3548),beamPosX_b1,4.,0.); + + } + else if (signal_b0<=0||signal_b1<=0) { + gausfunc_b0->SetParameters(100.,35.,10.,0.); + gausfunc_b1->SetParameters(100.,35.,10.,0.); + } + + + gausfunc_b0->SetParLimits(0,0.,5000.); + gausfunc_b0->SetParLimits(1,0.,128.); + gausfunc_b0->SetParLimits(2,0.5,40.); + gausfunc_b0->SetParLimits(3,-150.,150.); + + gausfunc_b1->SetParLimits(0,0.,5000.); + gausfunc_b1->SetParLimits(1,0,128); + gausfunc_b1->SetParLimits(2,0.5,40.); + gausfunc_b1->SetParLimits(3,-150.,150.); + //signal_gsl_b0,1,channellist_gsl_b0,1,numtocalc_b0) + gausgraph_b0 = new TGraphErrors(128,channellist_gsl_b0,signal_gsl_b0,errorx,errory); + gausgraph_b1 = new TGraphErrors(128,channellist_gsl_b1,signal_gsl_b1,errorx,errory); + + + lastfit_b0 = gausgraph_b0->Fit(gausfunc_b0,"QRN","",1,128); // single gaussian fit + lastfit_b1 = gausgraph_b1->Fit(gausfunc_b1,"QRN","",1,128); // single gaussian fit + beamPosX_fit_b0 = gausfunc_b0->GetParameter(1); + beamFocusX_fit_b0 =2.3548* gausfunc_b0->GetParameter(2); + // beamChi2_fit_b0 = gausfunc_b0->GetChisquare()/gausfunc_b0->GetNDF(); + // beamPeakX_fit_b0 = gausfunc_b0->GetParameter(0); + + beamPosX_fit_b1 = gausfunc_b1->GetParameter(1); + beamFocusX_fit_b1 =2.3548* gausfunc_b1->GetParameter(2); + // beamChi2_fit_b1 = gausfunc_b1->GetChisquare()/gausfunc_b1->GetNDF(); + // beamPeakX_fit_b1 = gausfunc_b1->GetParameter(0); + // cout << lastfit_b0 << " " << lastfit_b1 << " " << ic1_avg << " " << maxchannelamp_b0 << " " << nfwhm_b0<< " " << nfwhm_b1 <<" " << beamPosX_b0 << " " <Fill(ch, double(channelamp[ch]-gausfunc->Eval(ch))); + } + for (int ch = 64; ch < 128; ch++){ + th2d_fit2diff_channel->Fill(ch, double(channelamp[ch]-gausfunc2->Eval(ch))); + } + */ + + } + + + + rootTree->Fill(); + + + + } + if (frameend>0 && frame+framestart>=frameend) break; + }//end of loop over frames + /* th2_signal_vs_channel_b0->Write(); + th2_signal_vs_channel_b1->Write(); + th2_signal_vs_channel_b2->Write(); + th2_signal_vs_channel_b3->Write(); + + th2_signal_vs_channel_bkg_b0->Write(); + th2_signal_vs_channel_bkg_b1->Write(); + th2_signal_vs_channel_bkg_b2->Write(); + th2_signal_vs_channel_bkg_b3->Write(); + + th1_signal_b0->Write(); + th1_signal_b1->Write(); + th1_signal_b2->Write(); + th1_signal_b3->Write();*/ + graph_bkg_b0->SetName("graph_bkg_b0"); // graph_bkg_b0->Write(); + graph_bkg_b1->SetName("graph_bkg_b1"); // graph_bkg_b1->Write(); + graph_bkg_b2->SetName("graph_bkg_b2"); // graph_bkg_b2->Write(); + graph_bkg_b3->SetName("graph_bkg_b3"); // graph_bkg_b3->Write(); + sumvector_b0_ptr->Write("sumvector_b0"); + sumvector_b1_ptr->Write("sumvector_b1"); + sumvector_b2_ptr->Write("sumvector_b2"); + sumvector_b3_ptr->Write("sumvector_b3"); + beamontime_ptr->Write("beamontime"); + // bic1->Fill(); + // bmw1_posx->Fill(); + //bmw1_posy->Fill(); + rootFile->Write(); + rootFile->Close(); + } + std::cout << eventID << " frames analysed." << std::endl; + return 0; + } + else { + std::cerr << "Error 1" << std::endl; + return 1; + } + +} + +int main(int argc, char **argv){ + + analyse(argc, argv); + + } diff --git a/Scripts_20180425/Scripts_20180425/convert_clean b/Scripts_20180425/Scripts_20180425/convert_clean new file mode 100755 index 0000000..9c93368 Binary files /dev/null and b/Scripts_20180425/Scripts_20180425/convert_clean differ diff --git a/Scripts_20180425/Scripts_20180425/convert_clean.c b/Scripts_20180425/Scripts_20180425/convert_clean.c new file mode 100644 index 0000000..4ac2b7d --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/convert_clean.c @@ -0,0 +1,1550 @@ +/// to do: +/// 1. correct for gap between arrays + +#define convert_cxx +#include "hitutils.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "TStopwatch.h" +#include "Math/MinimizerOptions.h" +#include "TVirtualFitter.h" +#include "TMatrixD.h" + +//using namespace std; + +bool smooth_on = true; +bool doFit = false; +bool doLinInt = true; +bool ethercat = true; + +Double_t S[128], T[128], SumT, SumS, SumS2, SumST, SumT2, SumY, SumYS, SumYT, sigmaABC, muABC,p,c, b, b_den, b_num, SumYYP, SumYYM, MeanY; +TMatrixD M1(3,3); +TMatrixD M1inv(3,3); +TVectorD ABC(3); +TVectorD M2(3); +Double_t M1elements_b0[9] = {0.}; +Double_t M1elements_b1[9] = {0.}; +Double_t M1elements_b2[9] = {0.}; +Double_t M1elements_b3[9] = {0.}; + +TMatrixD matrix(2,2); +TMatrixD *M1pointer = &M1; +TVectorD *M2pointer = &M2; +TVectorD *ABCpointer = &ABC; + + +int eventID = 0; +int framestart=0; +int frameend = 0; +double board_b0_ch[128]; +double board_b1_ch[128]; +double board_b2_ch[128]; +double board_b3_ch[128]; +double board_b0_ch_bkg[128]; +double board_b1_ch_bkg[128]; +double board_b2_ch_bkg[128]; +double board_b3_ch_bkg[128]; +double signal_b0 = 0.; +double signal_b1 = 0.; +double signal_b2 = 0.; +double signal_b3 = 0.; + +double signal_cor_b0 = 0.; +double signal_cor_b1 = 0.; +double signal_cor_b2 = 0.; +double signal_cor_b3 = 0.; + +double signal_b0_left = 0.; +double signal_b1_left = 0.; +double signal_b2_left = 0.; +double signal_b3_left = 0.; + +double signal_b0_right = 0.; +double signal_b1_right = 0.; +double signal_b2_right = 0.; +double signal_b3_right = 0.; + +double signal_gsl_b0[128]; +double signal_gsl_b1[128]; +double signal_gsl_b2[128]; +double signal_gsl_b3[128]; +double signal_reg[128]; + + +double channellist_gsl_b0[128]; +double channellist_gsl_b1[128]; +double channellist_gsl_b2[128]; +double channellist_gsl_b3[128]; +double channellist[128]; +double channellist_reg[128]; + + +double pos[128]; + +double maxchannelamp_b0 =0.; +double maxchannelamp_b1 =0.; +double maxchannelamp_b2 =0.; +double maxchannelamp_b3 =0.; +int maxchannel_b0 =0; +int maxchannel_b1 =0; +int maxchannel_b2 =0; +int maxchannel_b3 =0; +int numtocalc_b0 =0; +int numtocalc_b1 =0; +int numtocalc_b2 =0; +int numtocalc_b3 =0; +int numtocalc_reg =0; + +int nfwhm_b0 = 0; +int nfwhm_b1 = 0; +int nfwhm_b2 = 0; +int nfwhm_b3 = 0; + +double beamPosX_b0,beamPosX_b1,beamPosX_b2,beamPosX_b3; +double beamFocusX_b0,beamFocusX_b1,beamFocusX_b2,beamFocusX_b3; +double beamPosX_fit_b0,beamPosX_fit_b1,beamPosX_fit_b2,beamPosX_fit_b3; +double beamFocusX_fit_b0,beamFocusX_fit_b1,beamFocusX_fit_b2,beamFocusX_fit_b3; +double beamSkewX_b0,beamSkewX_b1,beamSkewX_b2,beamSkewX_b3; +double beamKurtX_b0,beamKurtX_b1,beamKurtX_b2,beamKurtX_b3; +int beamNumX_b0,beamNumX_b1,beamNumX_b2,beamNumX_b3; +double beamRsqr_b0,beamRsqr_b1,beamRsqr_b2,beamRsqr_b3; +double beamChi2_fit_b0,beamChi2_fit_b1,beamChi2_fit_b2,beamChi2_fit_b3; + +double beamPosX_reg_b0,beamPosX_reg_b1,beamPosX_reg_b2,beamPosX_reg_b3; +double beamFocusX_reg_b0,beamFocusX_reg_b1,beamFocusX_reg_b2,beamFocusX_reg_b3; +double beamPeakX_reg_b0,beamPeakX_reg_b1,beamPeakX_reg_b2,beamPeakX_reg_b3; + +double beamSidebandNoise_b0, beamSidebandNoise_b1, beamSidebandNoise_b2, beamSidebandNoise_b3 ; +int sidenumtocalc_b0,sidenumtocalc_b1,sidenumtocalc_b2,sidenumtocalc_b3; +size_t size = 5; + +const int length = 100; //length of the rolling average +double array_b0[length] = {0.}; +double array_b1[length] = {0.}; +double array_b2[length] = {0.}; +double array_b3[length] = {0.}; + +double arrayavg_b0 = 0.; +double arrayavg_b1 = 0.; +double arrayavg_b2 = 0.; +double arrayavg_b3 = 0.; + + +bool graphsaved_b0 = false; +bool graphsaved_b1 = false; +bool graphsaved_b2 = false; +bool graphsaved_b3 = false; + +TVector beamontime(0,3,0.,0.,0.,0.,"END"); +TVector * beamontime_ptr = &beamontime; + +double calibration_b0[128] = {0.}; +double calibration_b1[128] = {0.}; +double calibration_b2[128] = {0.}; +double calibration_b3[128] = {0.}; + +TF1 * gausfunc_b0 = new TF1("gausfunc_b0","gaus(0)+[3]"); +TF1 * gausfunc_b1 = new TF1("gausfunc_b1","gaus(0)+[3]"); + + + +TGraphErrors * gausgraph_b0; +TGraphErrors * gausgraph_b1; +Int_t lastfit_b0 = 0; +Int_t lastfit_b1 = 0; +double errorx[128]; +double errory[128]; + +bool samplenoise = false; +bool beam_off = true; +bool beam_wason = false; +int beamoffcounter = 0; +int beamoncounter = 0; + +Double_t mybeta = 0.; +Double_t lorentz_gamma = 0.; +Double_t zsqr = 0.; +Double_t sp_air = 0.; +Double_t sp_ps = 0.; +Double_t sp2_air = 0.; +Double_t sp2_ps = 0.; +Double_t intcorr = 1.; + +Double_t x, q, median; + +Double_t signaloffset_b0[30]; +Double_t signaloffset_b1[30]; +Double_t signaloffset_b2[30]; +Double_t signaloffset_b3[30]; + + + +TF1 * f_sp_air = new TF1("f_sp_air","[0]*pow(x,[1])+[2]", 50, 250); //stopping power of protons in Air [MeV cm2 /g] +TF1 * f_sp_ps = new TF1("f_sp_ps","[0]*pow(x,[1])+[2]", 50, 250); //stopping power of protons in polystyrene [MeV cm2 /g] +TF1 * f_h2sp_air = new TF1("f_h2sp_air","[0]*pow(x,[1])+[2]", 50, 250); //stopping power of helium in air [MeV cm2 /g] +TF1 * f_h2sp_ps = new TF1("f_h2sp_ps","[0]*pow(x,[1])+[2]", 50, 250); //stopping power of helium in polystyrene [MeV cm2 /g] +TF1 * f_c12sp_air = new TF1("f_c12sp_air","[0]*pow(x,[1])+[2]", 80, 480); //stopping power of carbon in air [MeV cm2 /g] +TF1 * f_c12sp_ps = new TF1("f_c12sp_ps","[0]*pow(x,[1])+[2]", 80, 480); //stopping power of carbon in polystyrene [MeV cm2 /g] +TF1 * f_o16sp_air = new TF1("f_o16sp_air","[0]*pow(x,[1])+[2]", 80, 480); //stopping power of oxygen in air [MeV cm2 /g] +TF1 * f_o16sp_ps = new TF1("f_o16sp_ps","[0]*pow(x,[1])+[2]", 80,480); //stopping power of oxygen in polystyrene [MeV cm2 /g] +///// ic1/SP intensity correction factor = 19.8E6+/-0.1E6 particles/s per nA/(Mevcm2/g) + + +/// compile with: +//// $ make clean; make +/// run with: +//// $ ./convert +//// $ ./convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run2 + + + +int analyse(int argc, char **argv) +{ + f_sp_air->SetParameters(303.746, -0.873697,1.01335); //protons between 50 and 300 MeV + f_sp_ps->SetParameters(361.936, -0.892255, 1.19133); //protons between 50 and 220 MeV + f_h2sp_air->SetParameters(1236.51, -0.880225, 4.17041); //helium between 50 and 300 MeV + f_h2sp_ps->SetParameters(1387.08, -0.882686,4.60833); //heelium between 50 and 300 MeV + f_c12sp_air->SetParameters(13291.2, -0.925464,45.3876); //carbon between 80 and 480 MeV + f_c12sp_ps->SetParameters(14538.9, -0.922423,49.2859); //carbon between 80 and 480 MeV + f_o16sp_air->SetParameters(24624.9, -0.925425,80.6828); //oxygen between 80 and 480 MeV + f_o16sp_ps->SetParameters(26465.6, -0.928309,88.6728); //oxygen between 80 and 480 MeV + + // TVirtualFitter::SetDefaultFitter("Minuit2"); + // TVirtualFitter::SetPrecision(0.1); + + // std::cout << "Default Fitter:" << TVirtualFitter::GetDefaultFitter() << std::endl; + + //initialise some values; + for (int i = 0;i<128;i++){ + board_b0_ch_bkg[i] = 0.; + board_b1_ch_bkg[i] = 0.; + board_b2_ch_bkg[i] = 0.; + board_b3_ch_bkg[i] = 0.; + channellist_gsl_b0[i] = 0; + channellist_gsl_b1[i] = 0; + channellist_gsl_b2[i] = 0; + channellist_gsl_b3[i] = 0; + + calibration_b0[i] = 1.0; + calibration_b1[i] = 1.0; + calibration_b2[i] = 1.0; + calibration_b3[i] = 1.0; + errorx[i]=17.; + errory[i]=17.; + + if (i<64) {pos[i] = double(i);} + else {pos[i] = double(i) + 0.2; } + } + if (argc > 3){ + //open the file names specified in the command line + char * ethercatfile = argv[3]; + // argv[1]= "/work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/"; + // argv[2]= "Run11" + char * filename = Form("%s%s.dat",argv[1],argv[2]); + char * offsetfilename = Form("%s",argv[4]); + char * timestampfilename = Form("%s%s_timestamp.csv",argv[1],argv[2]); + char * rootfilename = Form("%s/root/%s.root",argv[1],argv[2]); + ifstream file(filename, ifstream::in | ifstream::binary); + ifstream timestampfile(timestampfilename, ifstream::in); + ifstream offsetfile(offsetfilename, ifstream::in); + + if (!file.is_open()){ + printf(".dat did not open.\n"); + return -1; //file could not be opened + } + else { + printf("Data file opened.\n"); + } + if (!timestampfile.is_open()){ + printf("timestamp.csv did not open.\n"); + ethercat = false; + //return -1; //file could not be opened + } + if (!offsetfile.is_open()){ + printf("no offset.txt file found\n"); + // return -1; //file could not be opened + for (int ii = 0; ii<30;ii++) { + signaloffset_b0[ii] = 0.; signaloffset_b1[ii] = 0.; signaloffset_b2[ii] = 0.; signaloffset_b3[ii] = 0.; + } + } + else { + for (int ii = 0; ii<30;ii++) offsetfile >> signaloffset_b0[ii] >> signaloffset_b1[ii] >>signaloffset_b2[ii] >>signaloffset_b3[ii] ; + } + + + ///read in offsets produced by offsetcor.C script (needs to be run after convert_clean, then repeat convert_clean.) + + ///some variables to get the data + // int number_of_records_to_read = 4*10; + // BufferData* buffer = new BufferData[number_of_records_to_read]; + //if(argc > 4) { + // framestart = atoi(argv[3]); + // frameend = atoi(argv[4]); + // } + + + int board_b = -1; + long int fileframesize = getFileSize(filename) / ( 4*sizeof(BufferData) ); + BufferData* dataptr = new BufferData(); + + if (fileframesize>0){ + std::cout << "Number of frames:" << fileframesize << std::endl; + //open ROOT file for saving histos and TTree. + TFile *rootFile = new TFile(rootfilename,"RECREATE"); + if ( rootFile->IsOpen() ) printf("ROOT file opened successfully\n"); + TH2D * th2_signal_vs_channel_b0 = new TH2D("th2_signal_vs_channel_b0","th2_signal_vs_channel_b0",128,0,128,2200,-1000,10000); + TH2D * th2_signal_vs_channel_b1 = new TH2D("th2_signal_vs_channel_b1","th2_signal_vs_channel_b1",128,0,128,2200,-1000,10000); + TH2D * th2_signal_vs_channel_b2 = new TH2D("th2_signal_vs_channel_b2","th2_signal_vs_channel_b2",128,0,128,2200,-1000,10000); + TH2D * th2_signal_vs_channel_b3 = new TH2D("th2_signal_vs_channel_b3","th2_signal_vs_channel_b3",128,0,128,2200,-1000,10000); + TH2D * th2_signal_vs_channel_sub_b0 = new TH2D("th2_signal_vs_channel_sub_b0","th2_signal_vs_channel_sub_b0",128,0,128,2200,-1000,10000); + TH2D * th2_signal_vs_channel_sub_b1 = new TH2D("th2_signal_vs_channel_sub_b1","th2_signal_vs_channel_sub_b1",128,0,128,2200,-1000,10000); + TH2D * th2_signal_vs_channel_sub_b2 = new TH2D("th2_signal_vs_channel_sub_b2","th2_signal_vs_channel_sub_b2",128,0,128,2200,-1000,10000); + TH2D * th2_signal_vs_channel_sub_b3 = new TH2D("th2_signal_vs_channel_sub_b3","th2_signal_vs_channel_sub_b3",128,0,128,2200,-1000,10000); + TH1D * th1_signal_b0 = new TH1D("th1_signal_b0","th1_signal_b0",2200,-10000,50000); + TH1D * th1_signal_b1 = new TH1D("th1_signal_b1","th1_signal_b1",2200,-10000,50000); + TH1D * th1_signal_b2 = new TH1D("th1_signal_b2","th1_signal_b2",2200,-10000,50000); + TH1D * th1_signal_b3 = new TH1D("th1_signal_b3","th1_signal_b3",2200,-10000,50000); + TH1D * h_regresidual_b0 = new TH1D("h_regresidual_b0","h_regresidual_b0", 200,-.20,.20); + TH1D * h_regresidual_b1 = new TH1D("h_regresidual_b1","h_regresidual_b1", 200,-.20,.20); + TH1D * h_regresidual_b2 = new TH1D("h_regresidual_b2","h_regresidual_b2", 200,-.20,.20); + TH1D * h_regresidual_b3 = new TH1D("h_regresidual_b3","h_regresidual_b3", 200,-.20,.20); + + + TGraph * graph_bkg_b0 = new TGraph(); + TGraph * graph_bkg_b1 = new TGraph(); + TGraph * graph_bkg_b2 = new TGraph(); + TGraph * graph_bkg_b3 = new TGraph(); + TGraph * gr_b0; + TGraph * gr_sm_b0; + TGraph * gr_b1; + TGraph * gr_sm_b1; + TGraph * gr_b2; + TGraph * gr_sm_b2; + TGraph * gr_b3; + TGraph * gr_sm_b3; + + TH2D * th2_signal_vs_channel_bkg_b0 = new TH2D("th2_signal_vs_channel_bkg_b0","th2_signal_vs_channel_bkg_b0",128,0,128,1000,-500,500); + TH2D * th2_signal_vs_channel_bkg_b1 = new TH2D("th2_signal_vs_channel_bkg_b1","th2_signal_vs_channel_bkg_b1",128,0,128,1000,-500,500); + TH2D * th2_signal_vs_channel_bkg_b2 = new TH2D("th2_signal_vs_channel_bkg_b2","th2_signal_vs_channel_bkg_b2",128,0,128,1000,-500,500); + TH2D * th2_signal_vs_channel_bkg_b3 = new TH2D("th2_signal_vs_channel_bkg_b3","th2_signal_vs_channel_bkg_b3",128,0,128,1000,-500,500); + TH2D * th2_resid_vs_channel_bkg_b0 = new TH2D("th2_resid_vs_channel_bkg_b0","th2_resid_vs_channel_bkg_b0",128,0,128,300,-.15,.15); + TH2D * th2_resid_vs_channel_bkg_b1 = new TH2D("th2_resid_vs_channel_bkg_b1","th2_resid_vs_channel_bkg_b1",128,0,128,300,-.15,.15); + TH2D * th2_resid_vs_channel_bkg_b2 = new TH2D("th2_resid_vs_channel_bkg_b2","th2_resid_vs_channel_bkg_b2",128,0,128,300,-.15,.15); + TH2D * th2_resid_vs_channel_bkg_b3 = new TH2D("th2_resid_vs_channel_bkg_b3","th2_resid_vs_channel_bkg_b3",128,0,128,300,-.15,.15); + + + TH1D* h_beamSignal_b0[30]; + TH1D* h_beamSignal_b1[30]; + TH1D* h_beamSignal_b2[30]; + TH1D* h_beamSignal_b3[30]; + int energy_indexbin = 0; + char histname[30] = ""; + TH1D* h_beamSignal_ic1[30]; + + + TH1D* h_beamSignal_cor_b0[30]; + TH1D* h_beamSignal_cor_b1[30]; + TH1D* h_beamSignal_cor_b2[30]; + TH1D* h_beamSignal_cor_b3[30]; + Double_t beamSignal_cor_b0_mean[30]; + Double_t beamSignal_cor_b1_mean[30]; + Double_t beamSignal_cor_b2_mean[30]; + Double_t beamSignal_cor_b3_mean[30]; + Double_t mybeta_graph[30]; + + int goodevents_b0=0; + int goodevents_b1=0; + int goodevents_b2=0; + int goodevents_b3=0; + + for (int iii=0; iii<=29; iii++){ + sprintf(histname,"h_beamSignal_b0_%d",iii); + h_beamSignal_b0[iii] = new TH1D(histname,histname,200,0,100000); + sprintf(histname,"h_beamSignal_b1_%d",iii); + h_beamSignal_b1[iii] = new TH1D(histname,histname,200,0,100000); + sprintf(histname,"h_beamSignal_b2_%d",iii); + h_beamSignal_b2[iii] = new TH1D(histname,histname,200,0,100000); + sprintf(histname,"h_beamSignal_b3_%d",iii); + h_beamSignal_b3[iii] = new TH1D(histname,histname,200,0,100000); + } + for (int iii=0; iii<=29; iii++){ + sprintf(histname,"h_beamSignal_cor_b0_%d",iii); + h_beamSignal_cor_b0[iii] = new TH1D(histname,histname,200,0,10); + sprintf(histname,"h_beamSignal_cor_b1_%d",iii); + h_beamSignal_cor_b1[iii] = new TH1D(histname,histname,200,0,10.); + sprintf(histname,"h_beamSignal_cor_b2_%d",iii); + h_beamSignal_cor_b2[iii] = new TH1D(histname,histname,200,0,10.); + sprintf(histname,"h_beamSignal_cor_b3_%d",iii); + h_beamSignal_cor_b3[iii] = new TH1D(histname,histname,200,0,10.); + sprintf(histname,"h_beamSignal_ic1_%d",iii); + h_beamSignal_ic1[iii] = new TH1D(histname,histname,200,0,1000.); + + } + + + TTree *rootTree = new TTree("t","HIT Data Root Tree"); + + rootTree->Branch("beamPosX_reg_b0",&beamPosX_reg_b0,"beamPosX_reg_b0/D"); + rootTree->Branch("beamPosX_reg_b1",&beamPosX_reg_b1,"beamPosX_reg_b1/D"); + rootTree->Branch("beamPosX_reg_b2",&beamPosX_reg_b2,"beamPosX_reg_b2/D"); + rootTree->Branch("beamPosX_reg_b3",&beamPosX_reg_b3,"beamPosX_reg_b3/D"); + + + rootTree->Branch("beamFocusX_reg_b0",&beamFocusX_reg_b0,"beamFocusX_reg_b0/D"); + rootTree->Branch("beamFocusX_reg_b1",&beamFocusX_reg_b1,"beamFocusX_reg_b1/D"); + rootTree->Branch("beamFocusX_reg_b2",&beamFocusX_reg_b2,"beamFocusX_reg_b2/D"); + rootTree->Branch("beamFocusX_reg_b3",&beamFocusX_reg_b3,"beamFocusX_reg_b3/D"); + + rootTree->Branch("beamPeakX_reg_b0",&beamPeakX_reg_b0,"beamPeakX_reg_b0/D"); + rootTree->Branch("beamPeakX_reg_b1",&beamPeakX_reg_b1,"beamPeakX_reg_b1/D"); + rootTree->Branch("beamPeakX_reg_b2",&beamPeakX_reg_b2,"beamPeakX_reg_b2/D"); + rootTree->Branch("beamPeakX_reg_b3",&beamPeakX_reg_b3,"beamPeakX_reg_b3/D"); + + + rootTree->Branch("beamRsqr_b0",&beamRsqr_b0,"beamRsqr_b0/D"); + rootTree->Branch("beamRsqr_b1",&beamRsqr_b1,"beamRsqr_b1/D"); + rootTree->Branch("beamRsqr_b2",&beamRsqr_b2,"beamRsqr_b2/D"); + rootTree->Branch("beamRsqr_b3",&beamRsqr_b3,"beamRsqr_b3/D"); + rootTree->Branch("sp2_ps",&sp2_ps,"sp2_ps/D"); + rootTree->Branch("sp2_air",&sp2_air,"sp2_air/D"); + rootTree->Branch("mybeta",&mybeta,"mybeta/D"); + + + rootTree->Branch("beamSkewX_b0",&beamSkewX_b0,"beamSkewX_b0/D"); + rootTree->Branch("beamSkewX_b1",&beamSkewX_b1,"beamSkewX_b1/D"); + rootTree->Branch("beamSkewX_b2",&beamSkewX_b2,"beamSkewX_b2/D"); + rootTree->Branch("beamSkewX_b3",&beamSkewX_b3,"beamSkewX_b3/D"); + rootTree->Branch("beamKurtX_b0",&beamKurtX_b0,"beamKurtX_b0/D"); + rootTree->Branch("beamKurtX_b1",&beamKurtX_b1,"beamKurtX_b1/D"); + rootTree->Branch("beamKurtX_b2",&beamKurtX_b2,"beamKurtX_b2/D"); + rootTree->Branch("beamKurtX_b3",&beamKurtX_b3,"beamKurtX_b3/D"); + rootTree->Branch("beamNumX_b0",&numtocalc_b0,"beamNumX_b0/I"); + rootTree->Branch("beamNumX_b1",&numtocalc_b1,"beamNumX_b1/I"); + rootTree->Branch("beamNumX_b2",&numtocalc_b2,"beamNumX_b2/I"); + rootTree->Branch("beamNumX_b3",&numtocalc_b3,"beamNumX_b3/I"); + rootTree->Branch("beamSignal_b0",&signal_b0,"beamSignal_b0/D"); + rootTree->Branch("beamSignal_b1",&signal_b1,"beamSignal_b1/D"); + rootTree->Branch("beamSignal_b2",&signal_b2,"beamSignal_b2/D"); + rootTree->Branch("beamSignal_b3",&signal_b3,"beamSignal_b3/D"); + + + rootTree->Branch("beamSignal_cor_b0",&signal_cor_b0,"beamSignal_cor_b0/D"); + rootTree->Branch("beamSignal_cor_b1",&signal_cor_b1,"beamSignal_cor_b1/D"); + rootTree->Branch("beamSignal_cor_b2",&signal_cor_b2,"beamSignal_cor_b2/D"); + rootTree->Branch("beamSignal_cor_b3",&signal_cor_b3,"beamSignal_cor_b3/D"); + + + rootTree->Branch("eventID",&eventID,"eventID/I"); + //rootTree->Branch("board_b0_ch",&board_b0_ch,"board_b0_ch[128]/D"); + //rootTree->Branch("board_b1_ch",&board_b1_ch,"board_b1_ch[128]/D"); + //rootTree->Branch("board_b2_ch",&board_b2_ch,"board_b2_ch[128]/D"); + //rootTree->Branch("board_b3_ch",&board_b3_ch,"board_b3_ch[128]/D"); + + rootTree->Branch("arrayavg_b0",&arrayavg_b0,"arrayavg_b0/D"); + rootTree->Branch("arrayavg_b1",&arrayavg_b1,"arrayavg_b1/D"); + rootTree->Branch("arrayavg_b2",&arrayavg_b2,"arrayavg_b2/D"); + rootTree->Branch("arrayavg_b3",&arrayavg_b3,"arrayavg_b3/D"); + + rootTree->Branch("M1elements_b0",&M1elements_b0,"M1elements_b0[9]/D"); + rootTree->Branch("M1elements_b1",&M1elements_b1,"M1elements_b1[9]/D"); + rootTree->Branch("M1elements_b2",&M1elements_b2,"M1elements_b2[9]/D"); + rootTree->Branch("M1elements_b3",&M1elements_b3,"M1elements_b3[9]/D"); + + rootTree->Branch("goodevents_b0",&goodevents_b0,"goodevents_b0/I"); + rootTree->Branch("goodevents_b1",&goodevents_b1,"goodevents_b1/I"); + rootTree->Branch("goodevents_b2",&goodevents_b2,"goodevents_b2/I"); + rootTree->Branch("goodevents_b3",&goodevents_b3,"goodevents_b3/I"); + + + double time; + + // import and align matching ethercat data + TTree *tree2 = new TTree("t2", "t2"); + if(ethercat){ + std::cout << " Loading Ethercat data." << std::endl; + tree2->ReadFile(ethercatfile, "RELTIME2/D:IC1/D:MW1_POSX/D:MW1_POSY/D:ANALOG_IN1/D:ENERGY_INDEX/D:INTENSITY_INDEX/D:ION-SORT/D:TIME2/D", '\t'); + std::cout << "Ethercat data loaded." << std::endl; + tree2->Print(); + } + int k = 0; + // int count = 0; + double ic1, ic2, mw1_focusx, mw1_focusy, mw2_focusx, mw2_focusy, mw1_posx, mw1_posy, mw2_posx, mw2_posy; + double ic1_avg, ic2_avg, mw1_focusx_avg, mw1_focusy_avg, mw2_focusx_avg, mw2_focusy_avg, mw1_posx_avg, mw1_posy_avg, mw2_posx_avg, mw2_posy_avg; + + double analog_in1; + double energy_index; + double energy; + double energy_list_p[27] = {48.12, 59.82, 70.03, 79.17, 87.53, 95.3, 102.61, 109.56, 116.2, 122.57, 128.72, 134.65, 140.41, 146.01, 151.5, 156.89, 162.21, 167.46, 172.62, 177.7, 184.81, 191.87, 198.76, 205.48, 212.06, 218.51, 0.}; + double energy_list_he[27] = {50.57, 61.86, 71.73, 80.64, 88.85, 96.52, 103.76, 110.64, 117.23, 123.55, 129.64, 135.55, 141.27, 146.84, 152.26, 157.56, 162.73, 167.8, 172.77, 177.64, 184.56, 191.54, 198.36, 205.03, 211.57, 217.98, 0.}; + double energy_list_c[27] = {88.83,110.58,129.79,147.13,163.09,178.01,192.13,205.6,218.52,230.98,243.03,254.71,266.08,277.19,288.1,298.87,309.52,320.07,330.48,340.77,355.22,369.64,383.78,397.66,411.32,424.77,0.}; + double energy_list_o[27] = {103.77, 129.65, 152.42, 172.98, 191.96, 209.63, 226.53, 242.58, 258.11, 273.04, 287.5, 301.55, 315.32, 328.61, 341.84, 354.88, 367.94, 380.48, 393.09, 405.65, 423.23, 440.82, 458.11, 475.28, 491.93, 508.38, 0.}; + double intensity_index; + double intensity; + double intensity_list_p[16] = {0., 8.00E+07, 1.20E+08, 2.00E+08, 3.20E+08,4.00E+08, 6.00E+08, 8.00E+08, 1.20E+09, 2.00E+09, 3.20E+09, 4.00E+09, 6.00E+09, 8.00E+09, 1.20E+10, 2.00E+10}; + double intensity_list_he[16] = { 0., 2.00E+07, 3.00E+07, 5.00E+07, 8.00E+07, 1.00E+08, 1.50E+08, 2.00E+08, 3.00E+08, 5.00E+08, 8.00E+08, 1.00E+09, 1.50E+09, 2.00E+09, 3.00E+09, 5.00E+09}; + + double intensity_list_c[16] = {0.,2.00E+06, 3.00E+06, 5.00E+06, 8.00E+06, 1.00E+07, 1.50E+07, 2.00E+07, 3.00E+07, 5.00E+07, 8.00E+07, 1.00E+08, 1.50E+08, 2.00E+08, 3.00E+08, 5.00E+08}; + double intensity_list_o[16] = {0., 1.00E+06, 1.50E+06, 2.50E+06, 4.00E+06, 5.00E+06, 8.00E+06, 1.00E+07, 1.50E+07, 2.50E+07, 4.00E+07, 5.00E+07, 8.00E+07, 1.00E+08, 1.50E+08, 2.50E+08 }; + double ionsort; + + double rel_time2,time2; + + double timeoffset; + int mwoffset; + double timewindow; + double timeoffset2; + double timewindow2; + + + + if(ethercat){ + rootTree->Branch("ic1_avg", &ic1_avg, "ic1_avg/D"); + rootTree->Branch("mw1_posx", &mw1_posx_avg, "mw1_posx/D"); + rootTree->Branch("mw1_posy", &mw1_posy_avg, "mw1_posy/D"); + rootTree->Branch("energy_index", &energy_index, "energy_index/D"); + rootTree->Branch("intensity_index", &intensity_index, "intensity_index/D"); + rootTree->Branch("ionsort", &ionsort, "ionsort/D"); + + + timeoffset = -0.050; //offset between ic and bpm readouts + mwoffset = 2; // offset for timestamped event. MW chamber position correlation seems to be better in other windows + timewindow = -0.0999; //should be a negative number. window size in time to average over. + timeoffset2 = -0.00; //offset between ic and bpm readouts + timewindow2 = -0.0999; //should be a negative number. window size in time to average over. + ////////////////////////////////////////////////////////////////// + ///// ETHERCAT DATA + ////////////////////////////////////////////////////////////////// + // tree->SetBranchAddress("time", &time); + + tree2->SetBranchAddress("RELTIME2", &rel_time2); + tree2->SetBranchAddress("TIME2", &time2); + tree2->SetBranchAddress("IC1", &ic1); + // tree2->SetBranchAddress("IC2", &ic2); + //tree2->SetBranchAddress("MW1_FOCUSX", &mw1_focusx); + //tree2->SetBranchAddress("MW1_FOCUSY", &mw1_focusy); + ///tree2->SetBranchAddress("MW2_FOCUSX", &mw2_focusx); + ///tree2->SetBranchAddress("MW2_FOCUSY", &mw2_focusy); + tree2->SetBranchAddress("MW1_POSX", &mw1_posx); + tree2->SetBranchAddress("MW1_POSY", &mw1_posy); + //tree2->SetBranchAddress("MW2_POSX", &mw2_posx); + //tree2->SetBranchAddress("MW2_POSY", &mw2_posy); + tree2->SetBranchAddress("ENERGY_INDEX", &energy_index); + tree2->SetBranchAddress("INTENSITY_INDEX", &intensity_index); + tree2->SetBranchAddress("ION-SORT", &ionsort); + tree2->SetBranchAddress("ANALOG_IN1", &analog_in1); + } + + + + + int currentEntryTree2 = 1; + + // int nevents = tree->GetEntries(); + int nevents2 = tree2->GetEntries(); + + int icCounter = 0; + + int count = 0; + int count2 = 0; + + //loop through recorded data frames + for (int frame = 0; frame10000) break; + // if(frame>2000&&frame<120000) continue; + eventID = frame; + if (ethercat){ + if (timestampfile) timestampfile >> time ; + //printf("%i %f\n", eventID, time); + + count= 0; + count2 = 0; + ic1_avg = 0.; + mw1_posx_avg = 0.; + mw1_posy_avg = 0.; + tree2->GetEntry(currentEntryTree2); + + + /* if (frame % 100 == 0) + { + + printf("merging event %d ,", frame); + printf("Time %f \n", time); + printf("Entry hit %d ,", currentEntryTree2); + printf("Time hit %f \n", time2); + } + */ + + while (time2 < time + timeoffset && currentEntryTree2 < nevents2 ) + { + if (time2 - time - timeoffset > timewindow) + { + tree2->GetEntry(currentEntryTree2); + + if (ic1>0.0) ic1_avg += ic1; + + if (ic1>0.0) count++; + // if (frame % 200 == 0) printf("%i %2.3f %2.3f %2.3f %2.3f %2.3f %i \n", count, ic1, time2, time, timeoffset, time2 - time - timeoffset, mwoffset); + } + + tree2->GetEntry(currentEntryTree2); + + if ( time2 - time - timeoffset2 > timewindow2) + { + tree2->GetEntry(currentEntryTree2 + mwoffset); //why currentEtryTree2-4? + mw1_posx_avg += mw1_posx; + mw1_posy_avg += mw1_posy; + count2++; + // if (i % 2000 == 0) printf("%i %2.3f %2.3f %2.3f %2.3f\n", count2, time, time2, ic1, mw1_posx); + //if (i % 2001 == 0) printf("%i %2.3f %2.3f %2.3f %2.3f\n", count2, time, time2, ic1, mw1_posx); + // if (i % 2002 == 0) printf("%i %2.3f %2.3f %2.3f %2.3f\n", count2, time, time2, ic1, mw1_posx); + // printf("%i %2.3f %2.3f %2.3f %2.3f\n", count2, time, time2, ic1, mw1_posx); + } + // currentEntryTree2++; + tree2->GetEntry(currentEntryTree2); + currentEntryTree2++; + + + + + if (count2>0){ + mw1_posx_avg /= double(count2); //the positions are weighted by the charge + mw1_posy_avg /= double(count2); + } + if(count>0){ + ic1_avg /= double(count); + if (ic1_avg>1.) icCounter++; + // if (frame % 2000 == 0) printf("%i %f.2 %i \n", count, ic1_avg, icCounter); + } + // std::cout << ic1_avg << " " << icCounter << std::endl; + + + } + /////////end of ethercat matching + + if (floor(energy_index/10.)>=0&&floor(energy_index/10)<=26){energy_indexbin = floor(energy_index/10.);} + else {energy_indexbin=27;} + + + if (ionsort==3){ + //protons + energy = energy_list_p[ energy_indexbin]; + intensity = intensity_list_p[ int(intensity_index) ]; + sp_air = f_sp_air->Eval(energy)*(intensity/1.0E6); + sp_ps = f_sp_ps->Eval(energy)*(intensity/1.0E6); + sp2_air = f_sp_air->Eval(energy); + sp2_ps = f_sp_ps->Eval(energy); + lorentz_gamma = energy/938.272 +1.; // lorentz_gamma = E_u/M_u +1 + mybeta = sqrt(1. - 1./(lorentz_gamma*lorentz_gamma)); + zsqr = 1.; + } + else if (ionsort==1){ + //helium + energy = energy_list_he[ energy_indexbin ]; + intensity = intensity_list_he[ int(intensity_index) ]; + sp_air = f_h2sp_air->Eval(energy)*(intensity/1.0E6); + sp_ps = f_h2sp_ps->Eval(energy)*(intensity/1.0E6); + sp2_air = f_h2sp_air->Eval(energy); + sp2_ps = f_h2sp_ps->Eval(energy); + lorentz_gamma = energy/932.1055 +1.;// lorentz_gamma = E_u/M_u +1 + mybeta = sqrt(1. - 1./(lorentz_gamma*lorentz_gamma)); + zsqr = 4.; + + } + else if (ionsort==4){ + //carbon + energy = energy_list_c[ energy_indexbin]; + intensity = intensity_list_c[ int(intensity_index) ]; + + sp_air = f_c12sp_air->Eval(energy)*(intensity/1.0E6); + sp_ps = f_c12sp_ps->Eval(energy)*(intensity/1.0E6); + sp2_air = f_c12sp_air->Eval(energy); + sp2_ps = f_c12sp_ps->Eval(energy); + lorentz_gamma = energy/932.3539 +1.;// lorentz_gamma = E_u/M_u +1 + mybeta = sqrt(1. - 1./(lorentz_gamma*lorentz_gamma)); + zsqr = 36.; + + } + else if (ionsort==2){ + //oxygen + energy = energy_list_o[ energy_indexbin]; + intensity = intensity_list_o[ int(intensity_index) ]; + sp_air = f_o16sp_air->Eval(energy)*(intensity/1.0E6); + sp_ps = f_o16sp_ps->Eval(energy)*(intensity/1.0E6); + sp2_air = f_o16sp_air->Eval(energy); + sp2_ps = f_o16sp_ps->Eval(energy); + lorentz_gamma = energy/931.4418 +1.;// lorentz_gamma = E_u/M_u +1 + mybeta = sqrt(1. - 1./(lorentz_gamma*lorentz_gamma)); + zsqr = 64.; + + } + else { + sp_air = -1.; + sp_ps = -1.; + sp2_air = -1.; + sp2_ps = -1.; + lorentz_gamma = 0.; + mybeta = 0.; + zsqr = -1.; + + } + // intcorr = (Intensity /19.8E6) / (totalcurrent/sp2_air/totaltime); + intcorr = (intensity / 19.8E6) / (ic1_avg/sp2_air)/ 3.11; + + + // if (frame>2000&&ic1_avg<0.5) continue; + } + + /////////////////////////////////// + //// HIT DATA + /////////////////////////////////// + if (frame>2000 && beam_wason == true && beam_off == true) { beamoffcounter++; + // cout << beamoffcounter<< endl; + } + if (samplenoise==false && frame> 2000 && beam_wason == true && beam_off == true && beamoffcounter==5000) { + samplenoise = true; + } + + //board_b 0 + board_b=0; + signal_b0 = 0.; + maxchannelamp_b0 = 0.; + + file.seekg(framestart*sizeof(BufferData)+board_b*sizeof(BufferData)+4*frame*sizeof(BufferData)); + file.read ((char*)dataptr ,sizeof(BufferData)); + if (dataptr->sync_frame.device_nr==board_b){ + // std::cout << frame << " " << dataptr->sync_frame.device_nr << " " << dataptr->sync_frame.local_ctr << " " << dataptr->sync_frame.global_ctr << " " << dataptr->sync_frame.sma_state << std::endl; + if (frame%10000==0) std::cout << "Frame: " << frame << " (" <sensor_data[i]; + if (frame<1000 || samplenoise==true){ + if (samplenoise==true&& beamoffcounter==5000) { + board_b0_ch_bkg[i]=0.; + if(i==0) cout << frame << " Resampling noise " << beamoffcounter << endl; + } + board_b0_ch_bkg[i] += board_b0_ch[i]/1000.; //find baseline from the average of first 1000 events + if (samplenoise==true && beamoffcounter==6000) { + beam_wason = false; + samplenoise =false; + cout << frame << " End sampling." << endl; + } + } + else if (frame>=1000&& frame<2000){ + board_b0_ch[i] -= board_b0_ch_bkg[i]; //histogram the subtracted baseline in the next 1000 events + th2_signal_vs_channel_bkg_b0->Fill(i,board_b0_ch[i]); + if (i==1) graph_bkg_b0->SetPoint(graph_bkg_b0->GetN(), frame, board_b0_ch[i]); + } + else if (frame>=2000 && samplenoise==false) { + board_b0_ch[i]-=board_b0_ch_bkg[i]; // the rest background subtracted + // board_b0_ch[i]*=calibration_b0[i]; //calibration factor + th2_signal_vs_channel_b0->Fill(i,board_b0_ch[i]); + + //find the peak channel + if (board_b0_ch[i]> maxchannelamp_b0) { + maxchannel_b0 = i; + maxchannelamp_b0 = board_b0_ch[i]; + // cout << maxchannel_b0 << " " <50.0){ + array_b0[length-1] += board_b0_ch[i]; + } + //////////////////////////////////////////// + } + + + }//end of 128 + // th1_signal_b0->Fill(signal_b0); + if (frame>2000) { + arrayavg_b0 += array_b0[length-1]/length; + if (arrayavg_b0>= 20000) { + beamoncounter++; + } + if (beamoncounter>100 && beam_wason == false && arrayavg_b0>= 20000) { + beam_off = false; + beam_wason = true; + cout << frame << " Beam on " << arrayavg_b0 << endl; + } + if (arrayavg_b0< 10000) { + if(beam_wason== true && beam_off==false ) { + cout << frame << "Beam went OFF!" << arrayavg_b0 << endl; + beamoffcounter = 0; + } + beam_off = true; + goodevents_b0=0; + goodevents_b1=0; + goodevents_b2=0; + goodevents_b3=0; + + } + } + + // cout << frame << " Rolling average: " << arrayavg_b0 << endl;// " ic: " << ic1_avg << endl; + + } + else { + std::cout << "Error." << std::endl; + } + + //board_b 1 + board_b=1; + signal_b1 = 0.; + maxchannelamp_b1 = 0.; + + file.seekg(framestart*sizeof(BufferData)+board_b*sizeof(BufferData)+4*frame*sizeof(BufferData)); + file.read ((char*)dataptr ,sizeof(BufferData)); + if (dataptr->sync_frame.device_nr==board_b){ + // std::cout << frame << " " << dataptr->sync_frame.device_nr << " " << dataptr->sync_frame.local_ctr << " " << dataptr->sync_frame.global_ctr << " " << dataptr->sync_frame.sma_state << std::endl; + + + arrayavg_b1 = 0; + //shift the events of the rolling average of the signal one left + for (int j = 1; jsensor_data[i]; + if (frame<1000){ + board_b1_ch_bkg[i] += board_b1_ch[i]/1000.; //find baseline from the average of first 1000 events + + } + else if (frame>=1000&& frame<2000){ + board_b1_ch[i] -= board_b1_ch_bkg[i]; //histogram the subtracted baseline in the next 1000 events + th2_signal_vs_channel_bkg_b1->Fill(i,board_b1_ch[i]); + if (i==1) graph_bkg_b1->SetPoint(graph_bkg_b1->GetN(), frame, board_b1_ch[i]); + } + else if (frame>=2000) { + board_b1_ch[i]-=board_b1_ch_bkg[i]; // the rest background subtracted + // board_b1_ch[i]*=calibration_b1[i]; //calibration factor + th2_signal_vs_channel_b1->Fill(i,board_b1_ch[i]); + + //find the peak channel + if (board_b1_ch[i]> maxchannelamp_b1) { + maxchannel_b1 = i; + maxchannelamp_b1 = board_b1_ch[i]; + // cout << maxchannel_b1 << " " <50.0){ + array_b1[length-1] += board_b1_ch[i]; + } + //////////////////////////////////////////// + } + + + }//end of 128 + // th1_signal_b1->Fill(signal_b1); + arrayavg_b1 += array_b1[length-1]/length; + + // cout << frame << " Rolling average: " << arrayavg_b1 << endl;// " ic: " << ic1_avg << endl; + + } + else { + std::cout << "Error." << std::endl; + } + + + //board_b 2 + board_b=2; + signal_b2 = 0.; + maxchannelamp_b2 = 0.; + + file.seekg(framestart*sizeof(BufferData)+board_b*sizeof(BufferData)+4*frame*sizeof(BufferData)); + file.read ((char*)dataptr ,sizeof(BufferData)); + if (dataptr->sync_frame.device_nr==board_b){ + // std::cout << frame << " " << dataptr->sync_frame.device_nr << " " << dataptr->sync_frame.local_ctr << " " << dataptr->sync_frame.global_ctr << " " << dataptr->sync_frame.sma_state << std::endl; + + + arrayavg_b2 = 0; + //shift the events of the rolling average of the signal one left + for (int j = 1; jsensor_data[i]; + if (frame<1000){ + board_b2_ch_bkg[i] += board_b2_ch[i]/1000.; //find baseline from the average of first 1000 events + + } + else if (frame>=1000&& frame<2000){ + board_b2_ch[i] -= board_b2_ch_bkg[i]; //histogram the subtracted baseline in the next 1000 events + th2_signal_vs_channel_bkg_b2->Fill(i,board_b2_ch[i]); + if (i==1) graph_bkg_b2->SetPoint(graph_bkg_b2->GetN(), frame, board_b2_ch[i]); + } + else if (frame>=2000) { + board_b2_ch[i]-=board_b2_ch_bkg[i]; // the rest background subtracted + // board_b2_ch[i]*=calibration_b2[i]; //calibration factor + th2_signal_vs_channel_b2->Fill(i,board_b2_ch[i]); + + //find the peak channel + if (board_b2_ch[i]> maxchannelamp_b2) { + maxchannel_b2 = i; + maxchannelamp_b2 = board_b2_ch[i]; + // cout << maxchannel_b2 << " " <50.0){ + array_b2[length-1] += board_b2_ch[i]; + } + //////////////////////////////////////////// + } + + + }//end of 128 + // th1_signal_b2->Fill(signal_b2); + arrayavg_b2 += array_b2[length-1]/length; + + // cout << frame << " Rolling average: " << arrayavg_b2 << endl;// " ic: " << ic1_avg << endl; + + } + else { + std::cout << "Error." << std::endl; + } + + + //board_b 3 + board_b=3; + signal_b3 = 0.; + maxchannelamp_b3 = 0.; + + file.seekg(framestart*sizeof(BufferData)+board_b*sizeof(BufferData)+4*frame*sizeof(BufferData)); + file.read ((char*)dataptr ,sizeof(BufferData)); + if (dataptr->sync_frame.device_nr==board_b){ + // std::cout << frame << " " << dataptr->sync_frame.device_nr << " " << dataptr->sync_frame.local_ctr << " " << dataptr->sync_frame.global_ctr << " " << dataptr->sync_frame.sma_state << std::endl; + + arrayavg_b3 = 0; + //shift the events of the rolling average of the signal one left + for (int j = 1; jsensor_data[i]; + if (frame<1000){ + board_b3_ch_bkg[i] += board_b3_ch[i]/1000.; //find baseline from the average of first 1000 events + + } + else if (frame>=1000&& frame<2000){ + board_b3_ch[i] -= board_b3_ch_bkg[i]; //histogram the subtracted baseline in the next 1000 events + th2_signal_vs_channel_bkg_b3->Fill(i,board_b3_ch[i]); + if (i==1) graph_bkg_b3->SetPoint(graph_bkg_b3->GetN(), frame, board_b3_ch[i]); + } + else if (frame>=2000) { + board_b3_ch[i]-=board_b3_ch_bkg[i]; // the rest background subtracted + // board_b3_ch[i]*=calibration_b3[i]; //calibration factor + th2_signal_vs_channel_b3->Fill(i,board_b3_ch[i]); + + //find the peak channel + if (board_b3_ch[i]> maxchannelamp_b3) { + maxchannel_b3 = i; + maxchannelamp_b3 = board_b3_ch[i]; + // cout << maxchannel_b3 << " " <50.0){ + array_b3[length-1] += board_b3_ch[i]; + } + //////////////////////////////////////////// + } + + + }//end of 128 + // th1_signal_b3->Fill(signal_b3); + arrayavg_b3 += array_b3[length-1]/length; + + // cout << frame << " Rolling average: " << arrayavg_b3 << endl;// " ic: " << ic1_avg << endl; + + } + else { + std::cout << "Error." << std::endl; + } + + + //////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////// + //start the signal analysis + //////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////// + + if (frame>=2000&&beam_off == false&&beam_wason == true){ + + + + + + + //////////////////////////////////////////////////////////// + //find the approx FWHM + //////////////////////////////////////////////////////////// + + nfwhm_b0 =0; + nfwhm_b1 =0; + nfwhm_b2 =0; + nfwhm_b3 =0; + + for (int i = 0;i<128;i++){ + if (board_b0_ch[i] > maxchannelamp_b0/3.) nfwhm_b0++; //switched to a lower threshold 1/3 instead of 1/2 + if (board_b1_ch[i] > maxchannelamp_b1/3.) nfwhm_b1++; + if (board_b2_ch[i] > maxchannelamp_b2/3.) nfwhm_b2++; + if (board_b3_ch[i] > maxchannelamp_b3/3.) nfwhm_b3++; + signal_gsl_b0[i] = 0.; + signal_gsl_b1[i] = 0.; + signal_gsl_b2[i] = 0.; + signal_gsl_b3[i] = 0.; + + } + + + + + + + //////////////////////////////////////////////////////////// + //integrate under the approximate peak + //build the channel list for statistical analysis + //////////////////////////////////////////////////////////// + + numtocalc_b0 = 0; + numtocalc_b1 = 0; + numtocalc_b2 = 0; + numtocalc_b3 = 0; + signal_b0 = 0. - signaloffset_b0[energy_indexbin]; + + + // cout << energy_indexbin << endl; + for (int i = maxchannel_b0-nfwhm_b0 ; i <= maxchannel_b0 + nfwhm_b0; i++){ + if (i>=0 && i<=127 && board_b0_ch[i]>0){ + signal_b0 +=board_b0_ch[i]; + signal_gsl_b0[numtocalc_b0]=board_b0_ch[i]; + // channellist_gsl_b0[numtocalc_b0] = i; + channellist_gsl_b0[numtocalc_b0] = pos[i]; + numtocalc_b0++; + } + } + th1_signal_b0->Fill(signal_b0); //cout << signal_b0 << endl; + if (ic1_avg>0.1){ + h_beamSignal_b0[energy_indexbin]->Fill(signal_b0); + goodevents_b0++; + + } + + signal_b1 = 0. - signaloffset_b1[energy_indexbin];; + for (int i = maxchannel_b1-nfwhm_b1 ; i <= maxchannel_b1 + nfwhm_b1; i++){ + if (i>=0 && i<=127&&board_b1_ch[i]>0){ + signal_b1 +=board_b1_ch[i] ; + signal_gsl_b1[numtocalc_b1]=board_b1_ch[i]; + // channellist_gsl_b1[numtocalc_b1] = i; + channellist_gsl_b1[numtocalc_b1] = pos[i]; + numtocalc_b1++; + } + } + th1_signal_b1->Fill(signal_b1); + if (ic1_avg>0.1){ + h_beamSignal_b1[energy_indexbin]->Fill(signal_b1); + goodevents_b1++; + } + + signal_b2 = 0. - signaloffset_b2[energy_indexbin];; + for (int i = maxchannel_b2-nfwhm_b2 ; i <= maxchannel_b2 + nfwhm_b2; i++){ + if (i>=0 && i<=127&&board_b2_ch[i]>0){ + signal_b2 +=board_b2_ch[i]; + signal_gsl_b2[numtocalc_b2]=board_b2_ch[i]; + // channellist_gsl_b2[numtocalc_b2] = i; + channellist_gsl_b2[numtocalc_b2] = pos[i]; + numtocalc_b2++; + } + } + + th1_signal_b2->Fill(signal_b2); + if (ic1_avg>0.1) { + h_beamSignal_b2[energy_indexbin]->Fill(signal_b2); + goodevents_b2++; + } + + signal_b3 = 0. - signaloffset_b3[energy_indexbin]; + for (int i = maxchannel_b3-nfwhm_b3 ; i <= maxchannel_b3 + nfwhm_b3; i++){ + if (i>=0 && i<=127&&board_b3_ch[i]>0){ + signal_b3 +=board_b3_ch[i]; + signal_gsl_b3[numtocalc_b3]=board_b3_ch[i]; + //channellist_gsl_b3[numtocalc_b3] = i; + channellist_gsl_b3[numtocalc_b3] = pos[i]; + numtocalc_b3++; + } + } + th1_signal_b3->Fill(signal_b3); + if (ic1_avg>0.1) { + h_beamSignal_b3[energy_indexbin]->Fill(signal_b3); + h_beamSignal_ic1[energy_indexbin]->Fill(ic1_avg); + goodevents_b3++; + } + + + signal_cor_b0 = signal_b0*intcorr/(intensity/1.E6)/sp2_ps; + signal_cor_b1 = signal_b1*intcorr/(intensity/1.E6)/sp2_ps; + signal_cor_b2 = signal_b2*intcorr/(intensity/1.E6)/sp2_ps; + signal_cor_b3 = signal_b3*intcorr/(intensity/1.E6)/sp2_ps; + if (signal_cor_b0 >0.05 && signal_cor_b0 < 10.) {h_beamSignal_cor_b0[energy_indexbin]->Fill(signal_cor_b0);} + if (signal_cor_b1 >0.05 && signal_cor_b1 < 10.) {h_beamSignal_cor_b1[energy_indexbin]->Fill(signal_cor_b1);} + if (signal_cor_b2 >0.05 && signal_cor_b2 < 10.) {h_beamSignal_cor_b2[energy_indexbin]->Fill(signal_cor_b2);} + if (signal_cor_b3 >0.05 && signal_cor_b3 < 10.) {h_beamSignal_cor_b3[energy_indexbin]->Fill(signal_cor_b3);} + + ///////////////// linear regression using Integration by parts of gaussian function. + + if (doLinInt&&numtocalc_b0>=3&&numtocalc_b1>=3&&numtocalc_b2>=3&&numtocalc_b3>=3){ + for (int j = 0; j<=4; j++){ + if (j== 0) { + copy(signal_gsl_b0,signal_gsl_b0+128, signal_reg); + copy(channellist_gsl_b0,channellist_gsl_b0+128, channellist_reg); + numtocalc_reg = numtocalc_b0; + } + else if (j== 1) { + copy(signal_gsl_b1,signal_gsl_b1+128, signal_reg); + copy(channellist_gsl_b1,channellist_gsl_b1+128, channellist_reg); + numtocalc_reg = numtocalc_b1; + } + else if (j== 2) { + copy(signal_gsl_b2,signal_gsl_b2+128, signal_reg); + copy(channellist_gsl_b2,channellist_gsl_b2+128, channellist_reg); + numtocalc_reg = numtocalc_b2; + } + else if (j== 3) { + copy(signal_gsl_b3,signal_gsl_b3+128, signal_reg); + copy(channellist_gsl_b3,channellist_gsl_b3+128, channellist_reg); + numtocalc_reg = numtocalc_b3; + } + SumY = 0.; + SumS = 0.; + SumT = 0.; + SumS2 = 0.; + SumST = 0.; + SumT2 = 0.; + SumYS = 0.; + SumYT = 0.; + b_den = 0.; + b_num = 0.; + b = 0.; + SumYYM = 0.; + SumYYP = 0.; + MeanY = 0.; + + + for(int k=0; k y = b*exp(-p*(x-c)*(x-c)) + p = -ABC(0)/2.; c = -ABC(1)/ABC(0); + + for(int k=0; kFill((b*exp(-p*(channellist_reg[k]-c)*(channellist_reg[k]-c)) - signal_reg[k])/signal_reg[k]); + th2_resid_vs_channel_bkg_b0->Fill(channellist_reg[k],(b*exp(-p*(channellist_reg[k]-c)*(channellist_reg[k]-c)) - signal_reg[k])/signal_reg[k]); + } + if (j == 1) { + h_regresidual_b1->Fill((b*exp(-p*(channellist_reg[k]-c)*(channellist_reg[k]-c)) - signal_reg[k])/signal_reg[k]); + th2_resid_vs_channel_bkg_b1->Fill(channellist_reg[k],(b*exp(-p*(channellist_reg[k]-c)*(channellist_reg[k]-c)) - signal_reg[k])/signal_reg[k]); + } + if (j == 2) { + h_regresidual_b2->Fill((b*exp(-p*(channellist_reg[k]-c)*(channellist_reg[k]-c)) - signal_reg[k])/signal_reg[k]); + th2_resid_vs_channel_bkg_b2->Fill(channellist_reg[k],(b*exp(-p*(channellist_reg[k]-c)*(channellist_reg[k]-c)) - signal_reg[k])/signal_reg[k]); + } + if (j == 3) { + h_regresidual_b3->Fill((b*exp(-p*(channellist_reg[k]-c)*(channellist_reg[k]-c)) - signal_reg[k])/signal_reg[k]); + th2_resid_vs_channel_bkg_b3->Fill(channellist_reg[k],(b*exp(-p*(channellist_reg[k]-c)*(channellist_reg[k]-c)) - signal_reg[k])/signal_reg[k]); + } + + } + // cout << "R-squared = " << SumYYP/SumYYM << endl; + + + //final results + + if (j == 0) { + beamFocusX_reg_b0 = 2.3548/sqrt(2*p); + beamPosX_reg_b0 = -ABC(1)/ ABC(0); + beamPeakX_reg_b0 = b; + beamRsqr_b0 = SumYYP/SumYYM; + beamSkewX_b0 = gsl_stats_wskew_m_sd(signal_reg,1,channellist_reg,1,numtocalc_reg,beamPosX_reg_b0,beamFocusX_reg_b0/2.3548); //skewness (symmetry) + beamKurtX_b0 = gsl_stats_wkurtosis_m_sd(signal_reg,1,channellist_reg,1,numtocalc_reg,beamPosX_reg_b0,beamFocusX_reg_b0/2.3548); //excess kurtosis (well behaved tails) + + M1elements_b0[0] = SumT2; + M1elements_b0[1] = SumST; + M1elements_b0[2] = SumT; + M1elements_b0[3] = SumST; + M1elements_b0[4] = SumS2; + M1elements_b0[5] = SumS; + M1elements_b0[6] = SumT; + M1elements_b0[7] = SumS; + M1elements_b0[8] = numtocalc_reg; + } + else if (j == 1) { + beamFocusX_reg_b1 = 2.3548/sqrt(2*p); + beamPosX_reg_b1 = -ABC(1)/ ABC(0); + beamPeakX_reg_b1 = b; + + beamRsqr_b1 = SumYYP/SumYYM; + beamSkewX_b1 = gsl_stats_wskew_m_sd(signal_reg,1,channellist_reg,1,numtocalc_reg,beamPosX_reg_b1,beamFocusX_reg_b1/2.3548); //skewness (symmetry) + beamKurtX_b1 = gsl_stats_wkurtosis_m_sd(signal_reg,1,channellist_reg,1,numtocalc_reg,beamPosX_reg_b1,beamFocusX_reg_b1/2.3548); //excess kurtosis (well behaved tails) + + M1elements_b0[0] = SumT2; + M1elements_b1[1] = SumST; + M1elements_b1[2] = SumT; + M1elements_b1[3] = SumST; + M1elements_b1[4] = SumS2; + M1elements_b1[5] = SumS; + M1elements_b1[6] = SumT; + M1elements_b1[7] = SumS; + M1elements_b1[8] = numtocalc_reg; + + } + else if (j == 2) { + beamFocusX_reg_b2 = 2.3548/sqrt(2*p); + beamPosX_reg_b2 = -ABC(1)/ ABC(0); + beamPeakX_reg_b2 = b; + + beamRsqr_b2 = SumYYP/SumYYM; + beamSkewX_b2 = gsl_stats_wskew_m_sd(signal_reg,1,channellist_reg,1,numtocalc_reg,beamPosX_reg_b2,beamFocusX_reg_b2/2.3548); //skewness (symmetry) + beamKurtX_b2 = gsl_stats_wkurtosis_m_sd(signal_reg,1,channellist_reg,1,numtocalc_reg,beamPosX_reg_b2,beamFocusX_reg_b2/2.3548); //excess kurtosis (well behaved tails) + + M1elements_b2[0] = SumT2; + M1elements_b2[1] = SumST; + M1elements_b2[2] = SumT; + M1elements_b2[3] = SumST; + M1elements_b2[4] = SumS2; + M1elements_b2[5] = SumS; + M1elements_b2[6] = SumT; + M1elements_b2[7] = SumS; + M1elements_b2[8] = numtocalc_reg; + } + else if (j == 3) { + beamFocusX_reg_b3 = 2.3548/sqrt(2*p); + beamPosX_reg_b3 = -ABC(1)/ ABC(0); + beamPeakX_reg_b3 = b; + beamRsqr_b3 = SumYYP/SumYYM; + beamSkewX_b3 = gsl_stats_wskew_m_sd(signal_reg,1,channellist_reg,1,numtocalc_reg,beamPosX_reg_b3,beamFocusX_reg_b3/2.3548); //skewness (symmetry) + beamKurtX_b3 = gsl_stats_wkurtosis_m_sd(signal_reg,1,channellist_reg,1,numtocalc_reg,beamPosX_reg_b3,beamFocusX_reg_b3/2.3548); //excess kurtosis (well behaved tails) + + M1elements_b0[0] = SumT2; + M1elements_b3[1] = SumST; + M1elements_b3[2] = SumT; + M1elements_b3[3] = SumST; + M1elements_b3[4] = SumS2; + M1elements_b3[5] = SumS; + M1elements_b3[6] = SumT; + M1elements_b3[7] = SumS; + M1elements_b3[8] = numtocalc_reg; + } + + + + + + } + } + else if (numtocalc_b0>0&&numtocalc_b1>0) { + + + beamPosX_reg_b0 = gsl_stats_wmean(signal_gsl_b0,1,channellist_gsl_b0,1,numtocalc_b0); //calculate the weighted mean + beamFocusX_reg_b0 = gsl_stats_wsd_with_fixed_mean(signal_gsl_b0,1,channellist_gsl_b0,1,numtocalc_b0,beamPosX_reg_b0); //Standard Deviation + beamFocusX_reg_b0 *=2.3548;//SD-->FWHM + + beamPosX_reg_b1 = gsl_stats_wmean(signal_gsl_b1,1,channellist_gsl_b1,1,numtocalc_b1); //calculate the weighted mean + beamFocusX_reg_b1 = gsl_stats_wsd_with_fixed_mean(signal_gsl_b1,1,channellist_gsl_b1,1,numtocalc_b1,beamPosX_reg_b1); //Standard Deviation + beamNumX_b1 = numtocalc_b1; + beamFocusX_reg_b1 *=2.3548;//SD-->FWHM + + beamPosX_reg_b2 = gsl_stats_wmean(signal_gsl_b2,1,channellist_gsl_b2,1,numtocalc_b2); //calculate the weighted mean + beamFocusX_reg_b2 = gsl_stats_wsd_with_fixed_mean(signal_gsl_b2,1,channellist_gsl_b2,1,numtocalc_b2,beamPosX_reg_b2); //Standard Deviation + beamNumX_b2 = numtocalc_b2; + beamFocusX_reg_b2 *=2.3548;//SD-->FWHM + + beamPosX_reg_b3 = gsl_stats_wmean(signal_gsl_b3,1,channellist_gsl_b3,1,numtocalc_b3); //calculate the weighted mean + beamFocusX_reg_b3 = gsl_stats_wsd_with_fixed_mean(signal_gsl_b3,1,channellist_gsl_b3,1,numtocalc_b3,beamPosX_reg_b3); //Standard Deviation + beamNumX_b3 = numtocalc_b3; + beamFocusX_reg_b3 *=2.3548;//SD-->FWHM + + beamRsqr_b0 = .0; + beamRsqr_b1 = .0; + beamRsqr_b2 = .0; + beamRsqr_b3 = .0; + + } + else + { + beamFocusX_reg_b0 = 0.; + beamFocusX_reg_b1 = 0.; + beamFocusX_reg_b1 = 0.; + beamFocusX_reg_b1 = 0.; + beamPosX_reg_b0 = 0.; + beamPosX_reg_b1 = 0.; + beamPosX_reg_b2 = 0.; + beamPosX_reg_b3 = 0.; + beamRsqr_b0 = .0; + beamRsqr_b1 = .0; + beamRsqr_b2 = .0; + beamRsqr_b3 = .0; + + } + + + + + + + + + rootTree->Fill(); + + + + } + if (frameend>0 && frame+framestart>=frameend) break; + }//end of loop over frames + + + + graph_bkg_b0->SetName("graph_bkg_b0"); // graph_bkg_b0->Write(); + graph_bkg_b1->SetName("graph_bkg_b1"); // graph_bkg_b1->Write(); + graph_bkg_b2->SetName("graph_bkg_b2"); // graph_bkg_b2->Write(); + graph_bkg_b3->SetName("graph_bkg_b3"); // graph_bkg_b3->Write(); + + // bic1->Fill(); + // bmw1_posx->Fill(); + //bmw1_posy->Fill(); + + ///make reduced signal graph. + + for (int jjj = 0; jjj<23;jjj++) { + // beamSignal_cor_b0_mean[jjj] = h_beamSignal_cor_b0[jjj]->GetMean(); + // beamSignal_cor_b1_mean[jjj] = h_beamSignal_cor_b1[jjj]->GetMean(); + // beamSignal_cor_b2_mean[jjj] = h_beamSignal_cor_b2[jjj]->GetMean(); + // beamSignal_cor_b3_mean[jjj] = h_beamSignal_cor_b3[jjj]->GetMean(); + + //// get the median (0.5 quantile) + q = 0.5; // 0.5 for "median" + + + + + if (ionsort==3){ + //protons + energy = energy_list_p[ jjj]; + intensity = intensity_list_p[ int(intensity_index) ]; + sp_air = f_sp_air->Eval(energy)*(intensity/1.0E6); + sp_ps = f_sp_ps->Eval(energy)*(intensity/1.0E6); + sp2_air = f_sp_air->Eval(energy); + sp2_ps = f_sp_ps->Eval(energy); + lorentz_gamma = energy/938.272 +1.; // lorentz_gamma = E_u/M_u +1 + mybeta = sqrt(1. - 1./(lorentz_gamma*lorentz_gamma)); + zsqr = 1.; + } + else if (ionsort==1){ + //helium + energy = energy_list_he[ jjj ]; + intensity = intensity_list_he[ int(intensity_index) ]; + sp_air = f_h2sp_air->Eval(energy)*(intensity/1.0E6); + sp_ps = f_h2sp_ps->Eval(energy)*(intensity/1.0E6); + sp2_air = f_h2sp_air->Eval(energy); + sp2_ps = f_h2sp_ps->Eval(energy); + lorentz_gamma = energy/932.1055 +1.;// lorentz_gamma = E_u/M_u +1 + mybeta = sqrt(1. - 1./(lorentz_gamma*lorentz_gamma)); + zsqr = 4.; + + } + else if (ionsort==4){ + //carbon + energy = energy_list_c[ jjj]; + intensity = intensity_list_c[ int(intensity_index) ]; + + sp_air = f_c12sp_air->Eval(energy)*(intensity/1.0E6); + sp_ps = f_c12sp_ps->Eval(energy)*(intensity/1.0E6); + sp2_air = f_c12sp_air->Eval(energy); + sp2_ps = f_c12sp_ps->Eval(energy); + lorentz_gamma = energy/932.3539 +1.;// lorentz_gamma = E_u/M_u +1 + mybeta = sqrt(1. - 1./(lorentz_gamma*lorentz_gamma)); + zsqr = 36.; + + } + else if (ionsort==2){ + //oxygen + energy = energy_list_o[ jjj]; + intensity = intensity_list_o[ int(intensity_index) ]; + sp_air = f_o16sp_air->Eval(energy)*(intensity/1.0E6); + sp_ps = f_o16sp_ps->Eval(energy)*(intensity/1.0E6); + sp2_air = f_o16sp_air->Eval(energy); + sp2_ps = f_o16sp_ps->Eval(energy); + lorentz_gamma = energy/931.4418 +1.;// lorentz_gamma = E_u/M_u +1 + mybeta = sqrt(1. - 1./(lorentz_gamma*lorentz_gamma)); + zsqr = 64.; + + } + else { + sp_air = -1.; + sp_ps = -1.; + sp2_air = -1.; + sp2_ps = -1.; + lorentz_gamma = 0.; + mybeta = 0.; + zsqr = -1.; + + } + + h_beamSignal_ic1[jjj]->ComputeIntegral(); //just a precaution + h_beamSignal_ic1[jjj]->GetQuantiles(1,&median, &q); + //median = h_beamSignal_ic1[jjj]->GetMean(); + // intcorr = (Intensity /19.8E6) / (totalcurrent/sp2_air/totaltime); + if (median>0&&energy>0) {intcorr = (intensity / 19.8E6) / (median/sp2_air)/ 3.11;} + + // else if (median>0&&energy>0) {intcorr = 0.; median = 0.;} + else {intcorr = 0.; median = 0.;} + + cout << "energy: " << energy << endl; + cout << "intensity: " << intensity << endl; + cout << "sp2_air: " << sp2_air << endl; + cout << "median: " << median << endl; + cout << "intcorr: " << intcorr << endl; + + mybeta_graph[jjj] = sqrt(1. - 1./(lorentz_gamma*lorentz_gamma)); + + + h_beamSignal_b0[jjj]->ComputeIntegral(); //just a precaution + h_beamSignal_b0[jjj]->GetQuantiles(1,&median, &q); + beamSignal_cor_b0_mean[jjj] = median*intcorr /(intensity/1.E6)/sp2_ps; + //beamSignal_cor_b0_mean[jjj] = h_beamSignal_b0[jjj]->GetMean()*intcorr /(intensity/1.E6)/sp2_ps; + cout << beamSignal_cor_b0_mean[jjj] << endl; + + h_beamSignal_b1[jjj]->ComputeIntegral(); //just a precaution + h_beamSignal_b1[jjj]->GetQuantiles(1,&median, &q); + beamSignal_cor_b1_mean[jjj] = median*intcorr /(intensity/1.E6)/sp2_ps; + //beamSignal_cor_b1_mean[jjj] = h_beamSignal_b1[jjj]->GetMean()*intcorr /(intensity/1.E6)/sp2_ps; + + h_beamSignal_b2[jjj]->ComputeIntegral(); //just a precaution + h_beamSignal_b2[jjj]->GetQuantiles(1,&median, &q); + beamSignal_cor_b2_mean[jjj] = median*intcorr /(intensity/1.E6)/sp2_ps; + // beamSignal_cor_b2_mean[jjj] = h_beamSignal_b2[jjj]->GetMean()*intcorr /(intensity/1.E6)/sp2_ps; + + h_beamSignal_b3[jjj]->ComputeIntegral(); //just a precaution + h_beamSignal_b3[jjj]->GetQuantiles(1,&median, &q); + beamSignal_cor_b3_mean[jjj] = median*intcorr /(intensity/1.E6)/sp2_ps; + //beamSignal_cor_b3_mean[jjj] = h_beamSignal_b3[jjj]->GetMean()*intcorr /(intensity/1.E6)/sp2_ps; + + } + + TGraph * graph_b0 = new TGraph(23,mybeta_graph, beamSignal_cor_b0_mean); + TGraph * graph_b1 = new TGraph(23,mybeta_graph, beamSignal_cor_b1_mean); + TGraph * graph_b2 = new TGraph(23,mybeta_graph, beamSignal_cor_b2_mean); + TGraph * graph_b3 = new TGraph(23,mybeta_graph, beamSignal_cor_b3_mean); + + graph_b0->SetName("graph_b0");graph_b0->Write(); + graph_b1->SetName("graph_b1");graph_b1->Write(); + graph_b2->SetName("graph_b2");graph_b2->Write(); + graph_b3->SetName("graph_b3");graph_b3->Write(); + + + rootFile->Write(); + rootFile->Close(); + } + std::cout << eventID << " frames analysed." << std::endl; + return 0; + } + else { + std::cerr << "Error 1" << std::endl; + return 1; + } + +} + +int main(int argc, char **argv){ + + analyse(argc, argv); + +} diff --git a/Scripts_20180425/Scripts_20180425/convert_clean.c_old b/Scripts_20180425/Scripts_20180425/convert_clean.c_old new file mode 100644 index 0000000..d7a8a9f --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/convert_clean.c_old @@ -0,0 +1,1503 @@ +/// to do: +/// 1. correct for gap between arrays + +#define convert_cxx +#include "hitutils.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "TStopwatch.h" +#include "Math/MinimizerOptions.h" +#include "TVirtualFitter.h" +#include "TMatrixD.h" + +//using namespace std; + +bool smooth_on = true; +bool doFit = false; +bool doLinInt = true; +bool ethercat = true; + +Double_t S[128], T[128], SumT, SumS, SumS2, SumST, SumT2, SumY, SumYS, SumYT, sigmaABC, muABC,p,c, b, b_den, b_num, SumYYP, SumYYM, MeanY; +TMatrixD M1(3,3); +TMatrixD M1inv(3,3); +TVectorD ABC(3); +TVectorD M2(3); +Double_t M1elements_b0[9] = {0.}; +Double_t M1elements_b1[9] = {0.}; +Double_t M1elements_b2[9] = {0.}; +Double_t M1elements_b3[9] = {0.}; + +TMatrixD matrix(2,2); +TMatrixD *M1pointer = &M1; +TVectorD *M2pointer = &M2; +TVectorD *ABCpointer = &ABC; + + +int eventID = 0; +int framestart=0; +int frameend = 0; +double board_b0_ch[128]; +double board_b1_ch[128]; +double board_b2_ch[128]; +double board_b3_ch[128]; +double board_b0_ch_bkg[128]; +double board_b1_ch_bkg[128]; +double board_b2_ch_bkg[128]; +double board_b3_ch_bkg[128]; +double signal_b0 = 0.; +double signal_b1 = 0.; +double signal_b2 = 0.; +double signal_b3 = 0.; + +double signal_cor_b0 = 0.; +double signal_cor_b1 = 0.; +double signal_cor_b2 = 0.; +double signal_cor_b3 = 0.; + +double signal_b0_left = 0.; +double signal_b1_left = 0.; +double signal_b2_left = 0.; +double signal_b3_left = 0.; + +double signal_b0_right = 0.; +double signal_b1_right = 0.; +double signal_b2_right = 0.; +double signal_b3_right = 0.; + +double signal_gsl_b0[128]; +double signal_gsl_b1[128]; +double signal_gsl_b2[128]; +double signal_gsl_b3[128]; +double signal_reg[128]; + + +double channellist_gsl_b0[128]; +double channellist_gsl_b1[128]; +double channellist_gsl_b2[128]; +double channellist_gsl_b3[128]; +double channellist[128]; +double channellist_reg[128]; + + +double pos[128]; + +double maxchannelamp_b0 =0.; +double maxchannelamp_b1 =0.; +double maxchannelamp_b2 =0.; +double maxchannelamp_b3 =0.; +int maxchannel_b0 =0; +int maxchannel_b1 =0; +int maxchannel_b2 =0; +int maxchannel_b3 =0; +int numtocalc_b0 =0; +int numtocalc_b1 =0; +int numtocalc_b2 =0; +int numtocalc_b3 =0; +int numtocalc_reg =0; + +int nfwhm_b0 = 0; +int nfwhm_b1 = 0; +int nfwhm_b2 = 0; +int nfwhm_b3 = 0; + +double beamPosX_b0,beamPosX_b1,beamPosX_b2,beamPosX_b3; +double beamFocusX_b0,beamFocusX_b1,beamFocusX_b2,beamFocusX_b3; +double beamPosX_fit_b0,beamPosX_fit_b1,beamPosX_fit_b2,beamPosX_fit_b3; +double beamFocusX_fit_b0,beamFocusX_fit_b1,beamFocusX_fit_b2,beamFocusX_fit_b3; +double beamSkewX_b0,beamSkewX_b1,beamSkewX_b2,beamSkewX_b3; +double beamKurtX_b0,beamKurtX_b1,beamKurtX_b2,beamKurtX_b3; +int beamNumX_b0,beamNumX_b1,beamNumX_b2,beamNumX_b3; +double beamRsqr_b0,beamRsqr_b1,beamRsqr_b2,beamRsqr_b3; +double beamChi2_fit_b0,beamChi2_fit_b1,beamChi2_fit_b2,beamChi2_fit_b3; + +double beamPosX_reg_b0,beamPosX_reg_b1,beamPosX_reg_b2,beamPosX_reg_b3; +double beamFocusX_reg_b0,beamFocusX_reg_b1,beamFocusX_reg_b2,beamFocusX_reg_b3; +double beamPeakX_reg_b0,beamPeakX_reg_b1,beamPeakX_reg_b2,beamPeakX_reg_b3; + +double beamSidebandNoise_b0, beamSidebandNoise_b1, beamSidebandNoise_b2, beamSidebandNoise_b3 ; +int sidenumtocalc_b0,sidenumtocalc_b1,sidenumtocalc_b2,sidenumtocalc_b3; +size_t size = 5; + +const int length = 100; //length of the rolling average +double array_b0[length] = {0.}; +double array_b1[length] = {0.}; +double array_b2[length] = {0.}; +double array_b3[length] = {0.}; + +double arrayavg_b0 = 0.; +double arrayavg_b1 = 0.; +double arrayavg_b2 = 0.; +double arrayavg_b3 = 0.; + + +bool graphsaved_b0 = false; +bool graphsaved_b1 = false; +bool graphsaved_b2 = false; +bool graphsaved_b3 = false; + +TVector beamontime(0,3,0.,0.,0.,0.,"END"); +TVector * beamontime_ptr = &beamontime; + +double calibration_b0[128] = {0.}; +double calibration_b1[128] = {0.}; +double calibration_b2[128] = {0.}; +double calibration_b3[128] = {0.}; + +TF1 * gausfunc_b0 = new TF1("gausfunc_b0","gaus(0)+[3]"); +TF1 * gausfunc_b1 = new TF1("gausfunc_b1","gaus(0)+[3]"); + + + +TGraphErrors * gausgraph_b0; +TGraphErrors * gausgraph_b1; +Int_t lastfit_b0 = 0; +Int_t lastfit_b1 = 0; +double errorx[128]; +double errory[128]; + +bool samplenoise = false; +bool beam_off = true; +bool beam_wason = false; +int beamoffcounter = 0; +int beamoncounter = 0; + +Double_t mybeta = 0.; +Double_t lorentz_gamma = 0.; +Double_t zsqr = 0.; +Double_t sp_air = 0.; +Double_t sp_ps = 0.; +Double_t sp2_air = 0.; +Double_t sp2_ps = 0.; +Double_t intcorr = 1.; + +Double_t x, q, median; + +TF1 * f_sp_air = new TF1("f_sp_air","[0]*pow(x,[1])+[2]", 50, 250); //stopping power of protons in Air [MeV cm2 /g] +TF1 * f_sp_ps = new TF1("f_sp_ps","[0]*pow(x,[1])+[2]", 50, 250); //stopping power of protons in polystyrene [MeV cm2 /g] +TF1 * f_h2sp_air = new TF1("f_h2sp_air","[0]*pow(x,[1])+[2]", 50, 250); //stopping power of helium in air [MeV cm2 /g] +TF1 * f_h2sp_ps = new TF1("f_h2sp_ps","[0]*pow(x,[1])+[2]", 50, 250); //stopping power of helium in polystyrene [MeV cm2 /g] +TF1 * f_c12sp_air = new TF1("f_c12sp_air","[0]*pow(x,[1])+[2]", 80, 480); //stopping power of carbon in air [MeV cm2 /g] +TF1 * f_c12sp_ps = new TF1("f_c12sp_ps","[0]*pow(x,[1])+[2]", 80, 480); //stopping power of carbon in polystyrene [MeV cm2 /g] +TF1 * f_o16sp_air = new TF1("f_o16sp_air","[0]*pow(x,[1])+[2]", 80, 480); //stopping power of oxygen in air [MeV cm2 /g] +TF1 * f_o16sp_ps = new TF1("f_o16sp_ps","[0]*pow(x,[1])+[2]", 80,480); //stopping power of oxygen in polystyrene [MeV cm2 /g] +///// ic1/SP intensity correction factor = 19.8E6+/-0.1E6 particles/s per nA/(Mevcm2/g) + + +/// compile with: +//// $ make clean; make +/// run with: +//// $ ./convert +//// $ ./convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run2 + + + +int analyse(int argc, char **argv) +{ + f_sp_air->SetParameters(303.746, -0.873697,1.01335); //protons between 50 and 300 MeV + f_sp_ps->SetParameters(361.936, -0.892255, 1.19133); //protons between 50 and 220 MeV + f_h2sp_air->SetParameters(1236.51, -0.880225, 4.17041); //helium between 50 and 300 MeV + f_h2sp_ps->SetParameters(1387.08, -0.882686,4.60833); //heelium between 50 and 300 MeV + f_c12sp_air->SetParameters(13291.2, -0.925464,45.3876); //carbon between 80 and 480 MeV + f_c12sp_ps->SetParameters(14538.9, -0.922423,49.2859); //carbon between 80 and 480 MeV + f_o16sp_air->SetParameters(24624.9, -0.925425,80.6828); //oxygen between 80 and 480 MeV + f_o16sp_ps->SetParameters(26465.6, -0.928309,88.6728); //oxygen between 80 and 480 MeV + + // TVirtualFitter::SetDefaultFitter("Minuit2"); + // TVirtualFitter::SetPrecision(0.1); + + // std::cout << "Default Fitter:" << TVirtualFitter::GetDefaultFitter() << std::endl; + + //initialise some values; + for (int i = 0;i<128;i++){ + board_b0_ch_bkg[i] = 0.; + board_b1_ch_bkg[i] = 0.; + board_b2_ch_bkg[i] = 0.; + board_b3_ch_bkg[i] = 0.; + channellist_gsl_b0[i] = 0; + channellist_gsl_b1[i] = 0; + channellist_gsl_b2[i] = 0; + channellist_gsl_b3[i] = 0; + + calibration_b0[i] = 1.0; + calibration_b1[i] = 1.0; + calibration_b2[i] = 1.0; + calibration_b3[i] = 1.0; + errorx[i]=17.; + errory[i]=17.; + + if (i<64) {pos[i] = double(i);} + else {pos[i] = double(i) + 0.2; } + } + if (argc > 1){ + //open the file names specified in the command line + char * ethercatfile = argv[3]; + // argv[1]= "/work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/"; + // argv[2]= "Run11" + char * filename = Form("%s%s.dat",argv[1],argv[2]); + char * timestampfilename = Form("%s%s_timestamp.csv",argv[1],argv[2]); + char * rootfilename = Form("%s/root/%s.root",argv[1],argv[2]); + ifstream file(filename, ifstream::in | ifstream::binary); + ifstream timestampfile(timestampfilename, ifstream::in); + if (!file.is_open()){ + printf(".dat did not open.\n"); + return -1; //file could not be opened + } + if (!timestampfile.is_open()){ + printf("timestamp.csv did not open.\n"); + ethercat = false; + //return -1; //file could not be opened + } + + + + ///some variables to get the data + // int number_of_records_to_read = 4*10; + // BufferData* buffer = new BufferData[number_of_records_to_read]; + //if(argc > 4) { + // framestart = atoi(argv[3]); + // frameend = atoi(argv[4]); + // } + + + int board_b = -1; + long int fileframesize = getFileSize(filename) / ( 4*sizeof(BufferData) ); + BufferData* dataptr = new BufferData(); + + if (fileframesize>0){ + std::cout << "Number of frames:" << fileframesize << std::endl; + //open ROOT file for saving histos and TTree. + TFile *rootFile = new TFile(rootfilename,"RECREATE"); + if ( rootFile->IsOpen() ) printf("ROOT file opened successfully\n"); + TH2D * th2_signal_vs_channel_b0 = new TH2D("th2_signal_vs_channel_b0","th2_signal_vs_channel_b0",128,0,128,2200,-1000,10000); + TH2D * th2_signal_vs_channel_b1 = new TH2D("th2_signal_vs_channel_b1","th2_signal_vs_channel_b1",128,0,128,2200,-1000,10000); + TH2D * th2_signal_vs_channel_b2 = new TH2D("th2_signal_vs_channel_b2","th2_signal_vs_channel_b2",128,0,128,2200,-1000,10000); + TH2D * th2_signal_vs_channel_b3 = new TH2D("th2_signal_vs_channel_b3","th2_signal_vs_channel_b3",128,0,128,2200,-1000,10000); + TH2D * th2_signal_vs_channel_sub_b0 = new TH2D("th2_signal_vs_channel_sub_b0","th2_signal_vs_channel_sub_b0",128,0,128,2200,-1000,10000); + TH2D * th2_signal_vs_channel_sub_b1 = new TH2D("th2_signal_vs_channel_sub_b1","th2_signal_vs_channel_sub_b1",128,0,128,2200,-1000,10000); + TH2D * th2_signal_vs_channel_sub_b2 = new TH2D("th2_signal_vs_channel_sub_b2","th2_signal_vs_channel_sub_b2",128,0,128,2200,-1000,10000); + TH2D * th2_signal_vs_channel_sub_b3 = new TH2D("th2_signal_vs_channel_sub_b3","th2_signal_vs_channel_sub_b3",128,0,128,2200,-1000,10000); + TH1D * th1_signal_b0 = new TH1D("th1_signal_b0","th1_signal_b0",2200,-10000,50000); + TH1D * th1_signal_b1 = new TH1D("th1_signal_b1","th1_signal_b1",2200,-10000,50000); + TH1D * th1_signal_b2 = new TH1D("th1_signal_b2","th1_signal_b2",2200,-10000,50000); + TH1D * th1_signal_b3 = new TH1D("th1_signal_b3","th1_signal_b3",2200,-10000,50000); + TH1D * h_regresidual_b0 = new TH1D("h_regresidual_b0","h_regresidual_b0", 200,-.20,.20); + TH1D * h_regresidual_b1 = new TH1D("h_regresidual_b1","h_regresidual_b1", 200,-.20,.20); + TH1D * h_regresidual_b2 = new TH1D("h_regresidual_b2","h_regresidual_b2", 200,-.20,.20); + TH1D * h_regresidual_b3 = new TH1D("h_regresidual_b3","h_regresidual_b3", 200,-.20,.20); + + + TGraph * graph_bkg_b0 = new TGraph(); + TGraph * graph_bkg_b1 = new TGraph(); + TGraph * graph_bkg_b2 = new TGraph(); + TGraph * graph_bkg_b3 = new TGraph(); + TGraph * gr_b0; + TGraph * gr_sm_b0; + TGraph * gr_b1; + TGraph * gr_sm_b1; + TGraph * gr_b2; + TGraph * gr_sm_b2; + TGraph * gr_b3; + TGraph * gr_sm_b3; + + TH2D * th2_signal_vs_channel_bkg_b0 = new TH2D("th2_signal_vs_channel_bkg_b0","th2_signal_vs_channel_bkg_b0",128,0,128,1000,-500,500); + TH2D * th2_signal_vs_channel_bkg_b1 = new TH2D("th2_signal_vs_channel_bkg_b1","th2_signal_vs_channel_bkg_b1",128,0,128,1000,-500,500); + TH2D * th2_signal_vs_channel_bkg_b2 = new TH2D("th2_signal_vs_channel_bkg_b2","th2_signal_vs_channel_bkg_b2",128,0,128,1000,-500,500); + TH2D * th2_signal_vs_channel_bkg_b3 = new TH2D("th2_signal_vs_channel_bkg_b3","th2_signal_vs_channel_bkg_b3",128,0,128,1000,-500,500); + TH2D * th2_resid_vs_channel_bkg_b0 = new TH2D("th2_resid_vs_channel_bkg_b0","th2_resid_vs_channel_bkg_b0",128,0,128,300,-.15,.15); + TH2D * th2_resid_vs_channel_bkg_b1 = new TH2D("th2_resid_vs_channel_bkg_b1","th2_resid_vs_channel_bkg_b1",128,0,128,300,-.15,.15); + TH2D * th2_resid_vs_channel_bkg_b2 = new TH2D("th2_resid_vs_channel_bkg_b2","th2_resid_vs_channel_bkg_b2",128,0,128,300,-.15,.15); + TH2D * th2_resid_vs_channel_bkg_b3 = new TH2D("th2_resid_vs_channel_bkg_b3","th2_resid_vs_channel_bkg_b3",128,0,128,300,-.15,.15); + + + TH1D* h_beamSignal_b0[30]; + TH1D* h_beamSignal_b1[30]; + TH1D* h_beamSignal_b2[30]; + TH1D* h_beamSignal_b3[30]; + int energy_indexbin = 0; + char histname[30] = ""; + TH1D* h_beamSignal_ic1[30]; + + + TH1D* h_beamSignal_cor_b0[30]; + TH1D* h_beamSignal_cor_b1[30]; + TH1D* h_beamSignal_cor_b2[30]; + TH1D* h_beamSignal_cor_b3[30]; + Double_t beamSignal_cor_b0_mean[30]; + Double_t beamSignal_cor_b1_mean[30]; + Double_t beamSignal_cor_b2_mean[30]; + Double_t beamSignal_cor_b3_mean[30]; + Double_t mybeta_graph[30]; + + + + for (int iii=0; iii<=29; iii++){ + sprintf(histname,"h_beamSignal_b0_%d",iii); + h_beamSignal_b0[iii] = new TH1D(histname,histname,200,0,100000); + sprintf(histname,"h_beamSignal_b1_%d",iii); + h_beamSignal_b1[iii] = new TH1D(histname,histname,200,0,100000); + sprintf(histname,"h_beamSignal_b2_%d",iii); + h_beamSignal_b2[iii] = new TH1D(histname,histname,200,0,100000); + sprintf(histname,"h_beamSignal_b3_%d",iii); + h_beamSignal_b3[iii] = new TH1D(histname,histname,200,0,100000); + } + for (int iii=0; iii<=29; iii++){ + sprintf(histname,"h_beamSignal_cor_b0_%d",iii); + h_beamSignal_cor_b0[iii] = new TH1D(histname,histname,200,0,10); + sprintf(histname,"h_beamSignal_cor_b1_%d",iii); + h_beamSignal_cor_b1[iii] = new TH1D(histname,histname,200,0,10.); + sprintf(histname,"h_beamSignal_cor_b2_%d",iii); + h_beamSignal_cor_b2[iii] = new TH1D(histname,histname,200,0,10.); + sprintf(histname,"h_beamSignal_cor_b3_%d",iii); + h_beamSignal_cor_b3[iii] = new TH1D(histname,histname,200,0,10.); + sprintf(histname,"h_beamSignal_ic1_%d",iii); + h_beamSignal_ic1[iii] = new TH1D(histname,histname,200,0,1000.); + + } + + + TTree *rootTree = new TTree("t","HIT Data Root Tree"); + + rootTree->Branch("beamPosX_reg_b0",&beamPosX_reg_b0,"beamPosX_reg_b0/D"); + rootTree->Branch("beamPosX_reg_b1",&beamPosX_reg_b1,"beamPosX_reg_b1/D"); + rootTree->Branch("beamPosX_reg_b2",&beamPosX_reg_b2,"beamPosX_reg_b2/D"); + rootTree->Branch("beamPosX_reg_b3",&beamPosX_reg_b3,"beamPosX_reg_b3/D"); + + + rootTree->Branch("beamFocusX_reg_b0",&beamFocusX_reg_b0,"beamFocusX_reg_b0/D"); + rootTree->Branch("beamFocusX_reg_b1",&beamFocusX_reg_b1,"beamFocusX_reg_b1/D"); + rootTree->Branch("beamFocusX_reg_b2",&beamFocusX_reg_b2,"beamFocusX_reg_b2/D"); + rootTree->Branch("beamFocusX_reg_b3",&beamFocusX_reg_b3,"beamFocusX_reg_b3/D"); + + rootTree->Branch("beamPeakX_reg_b0",&beamPeakX_reg_b0,"beamPeakX_reg_b0/D"); + rootTree->Branch("beamPeakX_reg_b1",&beamPeakX_reg_b1,"beamPeakX_reg_b1/D"); + rootTree->Branch("beamPeakX_reg_b2",&beamPeakX_reg_b2,"beamPeakX_reg_b2/D"); + rootTree->Branch("beamPeakX_reg_b3",&beamPeakX_reg_b3,"beamPeakX_reg_b3/D"); + + + rootTree->Branch("beamRsqr_b0",&beamRsqr_b0,"beamRsqr_b0/D"); + rootTree->Branch("beamRsqr_b1",&beamRsqr_b1,"beamRsqr_b1/D"); + rootTree->Branch("beamRsqr_b2",&beamRsqr_b2,"beamRsqr_b2/D"); + rootTree->Branch("beamRsqr_b3",&beamRsqr_b3,"beamRsqr_b3/D"); + rootTree->Branch("sp2_ps",&sp2_ps,"sp2_ps/D"); + rootTree->Branch("sp2_air",&sp2_air,"sp2_air/D"); + rootTree->Branch("mybeta",&mybeta,"mybeta/D"); + + + rootTree->Branch("beamSkewX_b0",&beamSkewX_b0,"beamSkewX_b0/D"); + rootTree->Branch("beamSkewX_b1",&beamSkewX_b1,"beamSkewX_b1/D"); + rootTree->Branch("beamSkewX_b2",&beamSkewX_b2,"beamSkewX_b2/D"); + rootTree->Branch("beamSkewX_b3",&beamSkewX_b3,"beamSkewX_b3/D"); + rootTree->Branch("beamKurtX_b0",&beamKurtX_b0,"beamKurtX_b0/D"); + rootTree->Branch("beamKurtX_b1",&beamKurtX_b1,"beamKurtX_b1/D"); + rootTree->Branch("beamKurtX_b2",&beamKurtX_b2,"beamKurtX_b2/D"); + rootTree->Branch("beamKurtX_b3",&beamKurtX_b3,"beamKurtX_b3/D"); + rootTree->Branch("beamNumX_b0",&numtocalc_b0,"beamNumX_b0/I"); + rootTree->Branch("beamNumX_b1",&numtocalc_b1,"beamNumX_b1/I"); + rootTree->Branch("beamNumX_b2",&numtocalc_b2,"beamNumX_b2/I"); + rootTree->Branch("beamNumX_b3",&numtocalc_b3,"beamNumX_b3/I"); + rootTree->Branch("beamSignal_b0",&signal_b0,"beamSignal_b0/D"); + rootTree->Branch("beamSignal_b1",&signal_b1,"beamSignal_b1/D"); + rootTree->Branch("beamSignal_b2",&signal_b2,"beamSignal_b2/D"); + rootTree->Branch("beamSignal_b3",&signal_b3,"beamSignal_b3/D"); + + + rootTree->Branch("beamSignal_cor_b0",&signal_cor_b0,"beamSignal_cor_b0/D"); + rootTree->Branch("beamSignal_cor_b1",&signal_cor_b1,"beamSignal_cor_b1/D"); + rootTree->Branch("beamSignal_cor_b2",&signal_cor_b2,"beamSignal_cor_b2/D"); + rootTree->Branch("beamSignal_cor_b3",&signal_cor_b3,"beamSignal_cor_b3/D"); + + + rootTree->Branch("eventID",&eventID,"eventID/I"); + //rootTree->Branch("board_b0_ch",&board_b0_ch,"board_b0_ch[128]/D"); + //rootTree->Branch("board_b1_ch",&board_b1_ch,"board_b1_ch[128]/D"); + //rootTree->Branch("board_b2_ch",&board_b2_ch,"board_b2_ch[128]/D"); + //rootTree->Branch("board_b3_ch",&board_b3_ch,"board_b3_ch[128]/D"); + + rootTree->Branch("arrayavg_b0",&arrayavg_b0,"arrayavg_b0/D"); + rootTree->Branch("arrayavg_b1",&arrayavg_b1,"arrayavg_b1/D"); + rootTree->Branch("arrayavg_b2",&arrayavg_b2,"arrayavg_b2/D"); + rootTree->Branch("arrayavg_b3",&arrayavg_b3,"arrayavg_b3/D"); + + rootTree->Branch("M1elements_b0",&M1elements_b0,"M1elements_b0[9]/D"); + rootTree->Branch("M1elements_b1",&M1elements_b1,"M1elements_b1[9]/D"); + rootTree->Branch("M1elements_b2",&M1elements_b2,"M1elements_b2[9]/D"); + rootTree->Branch("M1elements_b3",&M1elements_b3,"M1elements_b3[9]/D"); + + + + double time; + + // import and align matching ethercat data + TTree *tree2 = new TTree("t2", "t2"); + if(ethercat){ + std::cout << " Loading Ethercat data." << std::endl; + tree2->ReadFile(ethercatfile, "RELTIME2/D:IC1/D:MW1_POSX/D:MW1_POSY/D:ANALOG_IN1/D:ENERGY_INDEX/D:INTENSITY_INDEX/D:ION-SORT/D:TIME2/D", '\t'); + std::cout << "Ethercat data loaded." << std::endl; + tree2->Print(); + } + int k = 0; + // int count = 0; + double ic1, ic2, mw1_focusx, mw1_focusy, mw2_focusx, mw2_focusy, mw1_posx, mw1_posy, mw2_posx, mw2_posy; + double ic1_avg, ic2_avg, mw1_focusx_avg, mw1_focusy_avg, mw2_focusx_avg, mw2_focusy_avg, mw1_posx_avg, mw1_posy_avg, mw2_posx_avg, mw2_posy_avg; + + double analog_in1; + double energy_index; + double energy; + double energy_list_p[27] = {48.12, 59.82, 70.03, 79.17, 87.53, 95.3, 102.61, 109.56, 116.2, 122.57, 128.72, 134.65, 140.41, 146.01, 151.5, 156.89, 162.21, 167.46, 172.62, 177.7, 184.81, 191.87, 198.76, 205.48, 212.06, 218.51, 0.}; + double energy_list_he[27] = {50.57, 61.86, 71.73, 80.64, 88.85, 96.52, 103.76, 110.64, 117.23, 123.55, 129.64, 135.55, 141.27, 146.84, 152.26, 157.56, 162.73, 167.8, 172.77, 177.64, 184.56, 191.54, 198.36, 205.03, 211.57, 217.98, 0.}; + double energy_list_c[27] = {88.83,110.58,129.79,147.13,163.09,178.01,192.13,205.6,218.52,230.98,243.03,254.71,266.08,277.19,288.1,298.87,309.52,320.07,330.48,340.77,355.22,369.64,383.78,397.66,411.32,424.77,0.}; + double energy_list_o[27] = {103.77, 129.65, 152.42, 172.98, 191.96, 209.63, 226.53, 242.58, 258.11, 273.04, 287.5, 301.55, 315.32, 328.61, 341.84, 354.88, 367.94, 380.48, 393.09, 405.65, 423.23, 440.82, 458.11, 475.28, 491.93, 508.38, 0.}; + double intensity_index; + double intensity; + double intensity_list_p[16] = {0., 8.00E+07, 1.20E+08, 2.00E+08, 3.20E+08,4.00E+08, 6.00E+08, 8.00E+08, 1.20E+09, 2.00E+09, 3.20E+09, 4.00E+09, 6.00E+09, 8.00E+09, 1.20E+10, 2.00E+10}; + double intensity_list_he[16] = { 0., 2.00E+07, 3.00E+07, 5.00E+07, 8.00E+07, 1.00E+08, 1.50E+08, 2.00E+08, 3.00E+08, 5.00E+08, 8.00E+08, 1.00E+09, 1.50E+09, 2.00E+09, 3.00E+09, 5.00E+09}; + + double intensity_list_c[16] = {0.,2.00E+06, 3.00E+06, 5.00E+06, 8.00E+06, 1.00E+07, 1.50E+07, 2.00E+07, 3.00E+07, 5.00E+07, 8.00E+07, 1.00E+08, 1.50E+08, 2.00E+08, 3.00E+08, 5.00E+08}; + double intensity_list_o[16] = {0., 1.00E+06, 1.50E+06, 2.50E+06, 4.00E+06, 5.00E+06, 8.00E+06, 1.00E+07, 1.50E+07, 2.50E+07, 4.00E+07, 5.00E+07, 8.00E+07, 1.00E+08, 1.50E+08, 2.50E+08 }; + double ionsort; + + double rel_time2,time2; + + double timeoffset; + int mwoffset; + double timewindow; + double timeoffset2; + double timewindow2; + + if(ethercat){ + rootTree->Branch("ic1_avg", &ic1_avg, "ic1_avg/D"); + rootTree->Branch("mw1_posx", &mw1_posx_avg, "mw1_posx/D"); + rootTree->Branch("mw1_posy", &mw1_posy_avg, "mw1_posy/D"); + rootTree->Branch("energy_index", &energy_index, "energy_index/D"); + rootTree->Branch("intensity_index", &intensity_index, "intensity_index/D"); + rootTree->Branch("ionsort", &ionsort, "ionsort/D"); + + + timeoffset = -0.050; //offset between ic and bpm readouts + mwoffset = 2; // offset for timestamped event. MW chamber position correlation seems to be better in other windows + timewindow = -0.0999; //should be a negative number. window size in time to average over. + timeoffset2 = -0.00; //offset between ic and bpm readouts + timewindow2 = -0.0999; //should be a negative number. window size in time to average over. + ////////////////////////////////////////////////////////////////// + ///// ETHERCAT DATA + ////////////////////////////////////////////////////////////////// + // tree->SetBranchAddress("time", &time); + + tree2->SetBranchAddress("RELTIME2", &rel_time2); + tree2->SetBranchAddress("TIME2", &time2); + tree2->SetBranchAddress("IC1", &ic1); + // tree2->SetBranchAddress("IC2", &ic2); + //tree2->SetBranchAddress("MW1_FOCUSX", &mw1_focusx); + //tree2->SetBranchAddress("MW1_FOCUSY", &mw1_focusy); + ///tree2->SetBranchAddress("MW2_FOCUSX", &mw2_focusx); + ///tree2->SetBranchAddress("MW2_FOCUSY", &mw2_focusy); + tree2->SetBranchAddress("MW1_POSX", &mw1_posx); + tree2->SetBranchAddress("MW1_POSY", &mw1_posy); + //tree2->SetBranchAddress("MW2_POSX", &mw2_posx); + //tree2->SetBranchAddress("MW2_POSY", &mw2_posy); + tree2->SetBranchAddress("ENERGY_INDEX", &energy_index); + tree2->SetBranchAddress("INTENSITY_INDEX", &intensity_index); + tree2->SetBranchAddress("ION-SORT", &ionsort); + tree2->SetBranchAddress("ANALOG_IN1", &analog_in1); + } + + + + + int currentEntryTree2 = 1; + + // int nevents = tree->GetEntries(); + int nevents2 = tree2->GetEntries(); + + int icCounter = 0; + + int count = 0; + int count2 = 0; + + //loop through recorded data frames + for (int frame = 0; frame10000) break; + // if(frame>2000&&frame<120000) continue; + eventID = frame; + if (ethercat){ + if (timestampfile) timestampfile >> time ; + //printf("%i %f\n", eventID, time); + + count= 0; + count2 = 0; + ic1_avg = 0.; + mw1_posx_avg = 0.; + mw1_posy_avg = 0.; + tree2->GetEntry(currentEntryTree2); + + + /* if (frame % 100 == 0) + { + + printf("merging event %d ,", frame); + printf("Time %f \n", time); + printf("Entry hit %d ,", currentEntryTree2); + printf("Time hit %f \n", time2); + } + */ + + while (time2 < time + timeoffset && currentEntryTree2 < nevents2 ) + { + if (time2 - time - timeoffset > timewindow) + { + tree2->GetEntry(currentEntryTree2); + + if (ic1>0.0) ic1_avg += ic1; + + if (ic1>0.0) count++; + // if (frame % 200 == 0) printf("%i %2.3f %2.3f %2.3f %2.3f %2.3f %i \n", count, ic1, time2, time, timeoffset, time2 - time - timeoffset, mwoffset); + } + + tree2->GetEntry(currentEntryTree2); + + if ( time2 - time - timeoffset2 > timewindow2) + { + tree2->GetEntry(currentEntryTree2 + mwoffset); //why currentEtryTree2-4? + mw1_posx_avg += mw1_posx; + mw1_posy_avg += mw1_posy; + count2++; + // if (i % 2000 == 0) printf("%i %2.3f %2.3f %2.3f %2.3f\n", count2, time, time2, ic1, mw1_posx); + //if (i % 2001 == 0) printf("%i %2.3f %2.3f %2.3f %2.3f\n", count2, time, time2, ic1, mw1_posx); + // if (i % 2002 == 0) printf("%i %2.3f %2.3f %2.3f %2.3f\n", count2, time, time2, ic1, mw1_posx); + // printf("%i %2.3f %2.3f %2.3f %2.3f\n", count2, time, time2, ic1, mw1_posx); + } + // currentEntryTree2++; + tree2->GetEntry(currentEntryTree2); + currentEntryTree2++; + + + + + if (count2>0){ + mw1_posx_avg /= double(count2); //the positions are weighted by the charge + mw1_posy_avg /= double(count2); + } + if(count>0){ + ic1_avg /= double(count); + if (ic1_avg>1.) icCounter++; + // if (frame % 2000 == 0) printf("%i %f.2 %i \n", count, ic1_avg, icCounter); + } + // std::cout << ic1_avg << " " << icCounter << std::endl; + + + } + /////////end of ethercat matching + + if (floor(energy_index/10.)>=0&&floor(energy_index/10)<=26){energy_indexbin = floor(energy_index/10.);} + else {energy_indexbin=27;} + + + if (ionsort==3){ + //protons + energy = energy_list_p[ energy_indexbin]; + intensity = intensity_list_p[ int(intensity_index) ]; + sp_air = f_sp_air->Eval(energy)*(intensity/1.0E6); + sp_ps = f_sp_ps->Eval(energy)*(intensity/1.0E6); + sp2_air = f_sp_air->Eval(energy); + sp2_ps = f_sp_ps->Eval(energy); + lorentz_gamma = energy/938.272 +1.; // lorentz_gamma = E_u/M_u +1 + mybeta = sqrt(1. - 1./(lorentz_gamma*lorentz_gamma)); + zsqr = 1.; + } + else if (ionsort==1){ + //helium + energy = energy_list_he[ energy_indexbin ]; + intensity = intensity_list_he[ int(intensity_index) ]; + sp_air = f_h2sp_air->Eval(energy)*(intensity/1.0E6); + sp_ps = f_h2sp_ps->Eval(energy)*(intensity/1.0E6); + sp2_air = f_h2sp_air->Eval(energy); + sp2_ps = f_h2sp_ps->Eval(energy); + lorentz_gamma = energy/932.1055 +1.;// lorentz_gamma = E_u/M_u +1 + mybeta = sqrt(1. - 1./(lorentz_gamma*lorentz_gamma)); + zsqr = 4.; + + } + else if (ionsort==4){ + //carbon + energy = energy_list_c[ energy_indexbin]; + intensity = intensity_list_c[ int(intensity_index) ]; + + sp_air = f_c12sp_air->Eval(energy)*(intensity/1.0E6); + sp_ps = f_c12sp_ps->Eval(energy)*(intensity/1.0E6); + sp2_air = f_c12sp_air->Eval(energy); + sp2_ps = f_c12sp_ps->Eval(energy); + lorentz_gamma = energy/932.3539 +1.;// lorentz_gamma = E_u/M_u +1 + mybeta = sqrt(1. - 1./(lorentz_gamma*lorentz_gamma)); + zsqr = 36.; + + } + else if (ionsort==2){ + //oxygen + energy = energy_list_o[ energy_indexbin]; + intensity = intensity_list_o[ int(intensity_index) ]; + sp_air = f_o16sp_air->Eval(energy)*(intensity/1.0E6); + sp_ps = f_o16sp_ps->Eval(energy)*(intensity/1.0E6); + sp2_air = f_o16sp_air->Eval(energy); + sp2_ps = f_o16sp_ps->Eval(energy); + lorentz_gamma = energy/931.4418 +1.;// lorentz_gamma = E_u/M_u +1 + mybeta = sqrt(1. - 1./(lorentz_gamma*lorentz_gamma)); + zsqr = 64.; + + } + else { + sp_air = -1.; + sp_ps = -1.; + sp2_air = -1.; + sp2_ps = -1.; + lorentz_gamma = 0.; + mybeta = 0.; + zsqr = -1.; + + } + // intcorr = (Intensity /19.8E6) / (totalcurrent/sp2_air/totaltime); + intcorr = (intensity / 19.8E6) / (ic1_avg/sp2_air)/ 3.11; + + + // if (frame>2000&&ic1_avg<0.5) continue; + } + + /////////////////////////////////// + //// HIT DATA + /////////////////////////////////// + if (frame>2000 && beam_wason == true && beam_off == true) { beamoffcounter++; + // cout << beamoffcounter<< endl; + } + if (samplenoise==false && frame> 2000 && beam_wason == true && beam_off == true && beamoffcounter==5000) { + samplenoise = true; + } + + //board_b 0 + board_b=0; + signal_b0 = 0.; + maxchannelamp_b0 = 0.; + + file.seekg(framestart*sizeof(BufferData)+board_b*sizeof(BufferData)+4*frame*sizeof(BufferData)); + file.read ((char*)dataptr ,sizeof(BufferData)); + if (dataptr->sync_frame.device_nr==board_b){ + // std::cout << frame << " " << dataptr->sync_frame.device_nr << " " << dataptr->sync_frame.local_ctr << " " << dataptr->sync_frame.global_ctr << " " << dataptr->sync_frame.sma_state << std::endl; + if (frame%10000==0) std::cout << "Frame: " << frame << " (" <sensor_data[i]; + if (frame<1000 || samplenoise==true){ + if (samplenoise==true&& beamoffcounter==5000) { + board_b0_ch_bkg[i]=0.; + if(i==0) cout << frame << " Resampling noise " << beamoffcounter << endl; + } + board_b0_ch_bkg[i] += board_b0_ch[i]/1000.; //find baseline from the average of first 1000 events + if (samplenoise==true && beamoffcounter==6000) { + beam_wason = false; + samplenoise =false; + cout << frame << " End sampling." << endl; + } + } + else if (frame>=1000&& frame<2000){ + board_b0_ch[i] -= board_b0_ch_bkg[i]; //histogram the subtracted baseline in the next 1000 events + th2_signal_vs_channel_bkg_b0->Fill(i,board_b0_ch[i]); + if (i==1) graph_bkg_b0->SetPoint(graph_bkg_b0->GetN(), frame, board_b0_ch[i]); + } + else if (frame>=2000 && samplenoise==false) { + board_b0_ch[i]-=board_b0_ch_bkg[i]; // the rest background subtracted + // board_b0_ch[i]*=calibration_b0[i]; //calibration factor + th2_signal_vs_channel_b0->Fill(i,board_b0_ch[i]); + + //find the peak channel + if (board_b0_ch[i]> maxchannelamp_b0) { + maxchannel_b0 = i; + maxchannelamp_b0 = board_b0_ch[i]; + // cout << maxchannel_b0 << " " <50.0){ + array_b0[length-1] += board_b0_ch[i]; + } + //////////////////////////////////////////// + } + + + }//end of 128 + // th1_signal_b0->Fill(signal_b0); + if (frame>2000) { + arrayavg_b0 += array_b0[length-1]/length; + if (arrayavg_b0>= 20000) { + beamoncounter++; + } + if (beamoncounter>1000 && beam_wason == false && arrayavg_b0>= 20000) { + beam_off = false; + beam_wason = true; + cout << frame << " Beam on " << arrayavg_b0 << endl; + } + if (arrayavg_b0< 10000) { + if(beam_wason== true && beam_off==false ) { + cout << frame << "Beam went OFF!" << arrayavg_b0 << endl; + beamoffcounter = 0; + } + beam_off = true; + + } + } + + // cout << frame << " Rolling average: " << arrayavg_b0 << endl;// " ic: " << ic1_avg << endl; + + } + else { + std::cout << "Error." << std::endl; + } + + //board_b 1 + board_b=1; + signal_b1 = 0.; + maxchannelamp_b1 = 0.; + + file.seekg(framestart*sizeof(BufferData)+board_b*sizeof(BufferData)+4*frame*sizeof(BufferData)); + file.read ((char*)dataptr ,sizeof(BufferData)); + if (dataptr->sync_frame.device_nr==board_b){ + // std::cout << frame << " " << dataptr->sync_frame.device_nr << " " << dataptr->sync_frame.local_ctr << " " << dataptr->sync_frame.global_ctr << " " << dataptr->sync_frame.sma_state << std::endl; + + + arrayavg_b1 = 0; + //shift the events of the rolling average of the signal one left + for (int j = 1; jsensor_data[i]; + if (frame<1000){ + board_b1_ch_bkg[i] += board_b1_ch[i]/1000.; //find baseline from the average of first 1000 events + + } + else if (frame>=1000&& frame<2000){ + board_b1_ch[i] -= board_b1_ch_bkg[i]; //histogram the subtracted baseline in the next 1000 events + th2_signal_vs_channel_bkg_b1->Fill(i,board_b1_ch[i]); + if (i==1) graph_bkg_b1->SetPoint(graph_bkg_b1->GetN(), frame, board_b1_ch[i]); + } + else if (frame>=2000) { + board_b1_ch[i]-=board_b1_ch_bkg[i]; // the rest background subtracted + // board_b1_ch[i]*=calibration_b1[i]; //calibration factor + th2_signal_vs_channel_b1->Fill(i,board_b1_ch[i]); + + //find the peak channel + if (board_b1_ch[i]> maxchannelamp_b1) { + maxchannel_b1 = i; + maxchannelamp_b1 = board_b1_ch[i]; + // cout << maxchannel_b1 << " " <50.0){ + array_b1[length-1] += board_b1_ch[i]; + } + //////////////////////////////////////////// + } + + + }//end of 128 + // th1_signal_b1->Fill(signal_b1); + arrayavg_b1 += array_b1[length-1]/length; + + // cout << frame << " Rolling average: " << arrayavg_b1 << endl;// " ic: " << ic1_avg << endl; + + } + else { + std::cout << "Error." << std::endl; + } + + + //board_b 2 + board_b=2; + signal_b2 = 0.; + maxchannelamp_b2 = 0.; + + file.seekg(framestart*sizeof(BufferData)+board_b*sizeof(BufferData)+4*frame*sizeof(BufferData)); + file.read ((char*)dataptr ,sizeof(BufferData)); + if (dataptr->sync_frame.device_nr==board_b){ + // std::cout << frame << " " << dataptr->sync_frame.device_nr << " " << dataptr->sync_frame.local_ctr << " " << dataptr->sync_frame.global_ctr << " " << dataptr->sync_frame.sma_state << std::endl; + + + arrayavg_b2 = 0; + //shift the events of the rolling average of the signal one left + for (int j = 1; jsensor_data[i]; + if (frame<1000){ + board_b2_ch_bkg[i] += board_b2_ch[i]/1000.; //find baseline from the average of first 1000 events + + } + else if (frame>=1000&& frame<2000){ + board_b2_ch[i] -= board_b2_ch_bkg[i]; //histogram the subtracted baseline in the next 1000 events + th2_signal_vs_channel_bkg_b2->Fill(i,board_b2_ch[i]); + if (i==1) graph_bkg_b2->SetPoint(graph_bkg_b2->GetN(), frame, board_b2_ch[i]); + } + else if (frame>=2000) { + board_b2_ch[i]-=board_b2_ch_bkg[i]; // the rest background subtracted + // board_b2_ch[i]*=calibration_b2[i]; //calibration factor + th2_signal_vs_channel_b2->Fill(i,board_b2_ch[i]); + + //find the peak channel + if (board_b2_ch[i]> maxchannelamp_b2) { + maxchannel_b2 = i; + maxchannelamp_b2 = board_b2_ch[i]; + // cout << maxchannel_b2 << " " <50.0){ + array_b2[length-1] += board_b2_ch[i]; + } + //////////////////////////////////////////// + } + + + }//end of 128 + // th1_signal_b2->Fill(signal_b2); + arrayavg_b2 += array_b2[length-1]/length; + + // cout << frame << " Rolling average: " << arrayavg_b2 << endl;// " ic: " << ic1_avg << endl; + + } + else { + std::cout << "Error." << std::endl; + } + + + //board_b 3 + board_b=3; + signal_b3 = 0.; + maxchannelamp_b3 = 0.; + + file.seekg(framestart*sizeof(BufferData)+board_b*sizeof(BufferData)+4*frame*sizeof(BufferData)); + file.read ((char*)dataptr ,sizeof(BufferData)); + if (dataptr->sync_frame.device_nr==board_b){ + // std::cout << frame << " " << dataptr->sync_frame.device_nr << " " << dataptr->sync_frame.local_ctr << " " << dataptr->sync_frame.global_ctr << " " << dataptr->sync_frame.sma_state << std::endl; + + arrayavg_b3 = 0; + //shift the events of the rolling average of the signal one left + for (int j = 1; jsensor_data[i]; + if (frame<1000){ + board_b3_ch_bkg[i] += board_b3_ch[i]/1000.; //find baseline from the average of first 1000 events + + } + else if (frame>=1000&& frame<2000){ + board_b3_ch[i] -= board_b3_ch_bkg[i]; //histogram the subtracted baseline in the next 1000 events + th2_signal_vs_channel_bkg_b3->Fill(i,board_b3_ch[i]); + if (i==1) graph_bkg_b3->SetPoint(graph_bkg_b3->GetN(), frame, board_b3_ch[i]); + } + else if (frame>=2000) { + board_b3_ch[i]-=board_b3_ch_bkg[i]; // the rest background subtracted + // board_b3_ch[i]*=calibration_b3[i]; //calibration factor + th2_signal_vs_channel_b3->Fill(i,board_b3_ch[i]); + + //find the peak channel + if (board_b3_ch[i]> maxchannelamp_b3) { + maxchannel_b3 = i; + maxchannelamp_b3 = board_b3_ch[i]; + // cout << maxchannel_b3 << " " <50.0){ + array_b3[length-1] += board_b3_ch[i]; + } + //////////////////////////////////////////// + } + + + }//end of 128 + // th1_signal_b3->Fill(signal_b3); + arrayavg_b3 += array_b3[length-1]/length; + + // cout << frame << " Rolling average: " << arrayavg_b3 << endl;// " ic: " << ic1_avg << endl; + + } + else { + std::cout << "Error." << std::endl; + } + + + //////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////// + //start the signal analysis + //////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////// + + if (frame>=2000&&beam_off == false&&beam_wason == true){ + + + + + + + //////////////////////////////////////////////////////////// + //find the approx FWHM + //////////////////////////////////////////////////////////// + + nfwhm_b0 =0; + nfwhm_b1 =0; + nfwhm_b2 =0; + nfwhm_b3 =0; + + for (int i = 0;i<128;i++){ + if (board_b0_ch[i] > maxchannelamp_b0/3.) nfwhm_b0++; //switched to a lower threshold 1/3 instead of 1/2 + if (board_b1_ch[i] > maxchannelamp_b1/3.) nfwhm_b1++; + if (board_b2_ch[i] > maxchannelamp_b2/3.) nfwhm_b2++; + if (board_b3_ch[i] > maxchannelamp_b3/3.) nfwhm_b3++; + signal_gsl_b0[i] = 0.; + signal_gsl_b1[i] = 0.; + signal_gsl_b2[i] = 0.; + signal_gsl_b3[i] = 0.; + + } + + + + + + + //////////////////////////////////////////////////////////// + //integrate under the approximate peak + //build the channel list for statistical analysis + //////////////////////////////////////////////////////////// + + numtocalc_b0 = 0; + numtocalc_b1 = 0; + numtocalc_b2 = 0; + numtocalc_b3 = 0; + signal_b0 = 0.; + + + // cout << energy_indexbin << endl; + for (int i = maxchannel_b0-nfwhm_b0 ; i <= maxchannel_b0 + nfwhm_b0; i++){ + if (i>=0 && i<=127 && board_b0_ch[i]>0){ + signal_b0 +=board_b0_ch[i]; + signal_gsl_b0[numtocalc_b0]=board_b0_ch[i]; + // channellist_gsl_b0[numtocalc_b0] = i; + channellist_gsl_b0[numtocalc_b0] = pos[i]; + numtocalc_b0++; + } + } + th1_signal_b0->Fill(signal_b0); //cout << signal_b0 << endl; + if (ic1_avg>0.1) h_beamSignal_b0[energy_indexbin]->Fill(signal_b0); + + + signal_b1 = 0.; + for (int i = maxchannel_b1-nfwhm_b1 ; i <= maxchannel_b1 + nfwhm_b1; i++){ + if (i>=0 && i<=127&&board_b1_ch[i]>0){ + signal_b1 +=board_b1_ch[i] ; + signal_gsl_b1[numtocalc_b1]=board_b1_ch[i]; + // channellist_gsl_b1[numtocalc_b1] = i; + channellist_gsl_b1[numtocalc_b1] = pos[i]; + numtocalc_b1++; + } + } + th1_signal_b0->Fill(signal_b1); + if (ic1_avg>0.1) h_beamSignal_b1[energy_indexbin]->Fill(signal_b1); + + + signal_b2 = 0.; + for (int i = maxchannel_b2-nfwhm_b2 ; i <= maxchannel_b2 + nfwhm_b2; i++){ + if (i>=0 && i<=127&&board_b2_ch[i]>0){ + signal_b2 +=board_b2_ch[i]; + signal_gsl_b2[numtocalc_b2]=board_b2_ch[i]; + // channellist_gsl_b2[numtocalc_b2] = i; + channellist_gsl_b2[numtocalc_b2] = pos[i]; + numtocalc_b2++; + } + } + + th1_signal_b0->Fill(signal_b2); + if (ic1_avg>0.1) h_beamSignal_b2[energy_indexbin]->Fill(signal_b2); + + signal_b3 = 0.; + for (int i = maxchannel_b3-nfwhm_b3 ; i <= maxchannel_b3 + nfwhm_b3; i++){ + if (i>=0 && i<=127&&board_b3_ch[i]>0){ + signal_b3 +=board_b3_ch[i]; + signal_gsl_b3[numtocalc_b3]=board_b3_ch[i]; + //channellist_gsl_b3[numtocalc_b3] = i; + channellist_gsl_b3[numtocalc_b3] = pos[i]; + numtocalc_b3++; + } + } + th1_signal_b0->Fill(signal_b3); + if (ic1_avg>0.1) {h_beamSignal_b3[energy_indexbin]->Fill(signal_b3); + h_beamSignal_ic1[energy_indexbin]->Fill(ic1_avg); + } + + + signal_cor_b0 = signal_b0*intcorr/(intensity/1.E6)/sp2_ps; + signal_cor_b1 = signal_b1*intcorr/(intensity/1.E6)/sp2_ps; + signal_cor_b2 = signal_b2*intcorr/(intensity/1.E6)/sp2_ps; + signal_cor_b3 = signal_b3*intcorr/(intensity/1.E6)/sp2_ps; + if (signal_cor_b0 >0.05 && signal_cor_b0 < 10.) {h_beamSignal_cor_b0[energy_indexbin]->Fill(signal_cor_b0);} + if (signal_cor_b1 >0.05 && signal_cor_b1 < 10.) {h_beamSignal_cor_b1[energy_indexbin]->Fill(signal_cor_b1);} + if (signal_cor_b2 >0.05 && signal_cor_b2 < 10.) {h_beamSignal_cor_b2[energy_indexbin]->Fill(signal_cor_b2);} + if (signal_cor_b3 >0.05 && signal_cor_b3 < 10.) {h_beamSignal_cor_b3[energy_indexbin]->Fill(signal_cor_b3);} + + ///////////////// linear regression using Integration by parts of gaussian function. + + if (doLinInt&&numtocalc_b0>=3&&numtocalc_b1>=3&&numtocalc_b2>=3&&numtocalc_b3>=3){ + for (int j = 0; j<=4; j++){ + if (j== 0) { + copy(signal_gsl_b0,signal_gsl_b0+128, signal_reg); + copy(channellist_gsl_b0,channellist_gsl_b0+128, channellist_reg); + numtocalc_reg = numtocalc_b0; + } + else if (j== 1) { + copy(signal_gsl_b1,signal_gsl_b1+128, signal_reg); + copy(channellist_gsl_b1,channellist_gsl_b1+128, channellist_reg); + numtocalc_reg = numtocalc_b1; + } + else if (j== 2) { + copy(signal_gsl_b2,signal_gsl_b2+128, signal_reg); + copy(channellist_gsl_b2,channellist_gsl_b2+128, channellist_reg); + numtocalc_reg = numtocalc_b2; + } + else if (j== 3) { + copy(signal_gsl_b3,signal_gsl_b3+128, signal_reg); + copy(channellist_gsl_b3,channellist_gsl_b3+128, channellist_reg); + numtocalc_reg = numtocalc_b3; + } + SumY = 0.; + SumS = 0.; + SumT = 0.; + SumS2 = 0.; + SumST = 0.; + SumT2 = 0.; + SumYS = 0.; + SumYT = 0.; + b_den = 0.; + b_num = 0.; + b = 0.; + SumYYM = 0.; + SumYYP = 0.; + MeanY = 0.; + + + for(int k=0; k y = b*exp(-p*(x-c)*(x-c)) + p = -ABC(0)/2.; c = -ABC(1)/ABC(0); + + for(int k=0; kFill((b*exp(-p*(channellist_reg[k]-c)*(channellist_reg[k]-c)) - signal_reg[k])/signal_reg[k]); + th2_resid_vs_channel_bkg_b0->Fill(channellist_reg[k],(b*exp(-p*(channellist_reg[k]-c)*(channellist_reg[k]-c)) - signal_reg[k])/signal_reg[k]); + } + if (j == 1) { + h_regresidual_b1->Fill((b*exp(-p*(channellist_reg[k]-c)*(channellist_reg[k]-c)) - signal_reg[k])/signal_reg[k]); + th2_resid_vs_channel_bkg_b1->Fill(channellist_reg[k],(b*exp(-p*(channellist_reg[k]-c)*(channellist_reg[k]-c)) - signal_reg[k])/signal_reg[k]); + } + if (j == 2) { + h_regresidual_b2->Fill((b*exp(-p*(channellist_reg[k]-c)*(channellist_reg[k]-c)) - signal_reg[k])/signal_reg[k]); + th2_resid_vs_channel_bkg_b2->Fill(channellist_reg[k],(b*exp(-p*(channellist_reg[k]-c)*(channellist_reg[k]-c)) - signal_reg[k])/signal_reg[k]); + } + if (j == 3) { + h_regresidual_b3->Fill((b*exp(-p*(channellist_reg[k]-c)*(channellist_reg[k]-c)) - signal_reg[k])/signal_reg[k]); + th2_resid_vs_channel_bkg_b3->Fill(channellist_reg[k],(b*exp(-p*(channellist_reg[k]-c)*(channellist_reg[k]-c)) - signal_reg[k])/signal_reg[k]); + } + + } + // cout << "R-squared = " << SumYYP/SumYYM << endl; + + + //final results + + if (j == 0) { + beamFocusX_reg_b0 = 2.3548/sqrt(2*p); + beamPosX_reg_b0 = -ABC(1)/ ABC(0); + beamPeakX_reg_b0 = b; + beamRsqr_b0 = SumYYP/SumYYM; + beamSkewX_b0 = gsl_stats_wskew_m_sd(signal_reg,1,channellist_reg,1,numtocalc_reg,beamPosX_reg_b0,beamFocusX_reg_b0/2.3548); //skewness (symmetry) + beamKurtX_b0 = gsl_stats_wkurtosis_m_sd(signal_reg,1,channellist_reg,1,numtocalc_reg,beamPosX_reg_b0,beamFocusX_reg_b0/2.3548); //excess kurtosis (well behaved tails) + + M1elements_b0[0] = SumT2; + M1elements_b0[1] = SumST; + M1elements_b0[2] = SumT; + M1elements_b0[3] = SumST; + M1elements_b0[4] = SumS2; + M1elements_b0[5] = SumS; + M1elements_b0[6] = SumT; + M1elements_b0[7] = SumS; + M1elements_b0[8] = numtocalc_reg; + } + else if (j == 1) { + beamFocusX_reg_b1 = 2.3548/sqrt(2*p); + beamPosX_reg_b1 = -ABC(1)/ ABC(0); + beamPeakX_reg_b1 = b; + + beamRsqr_b1 = SumYYP/SumYYM; + beamSkewX_b1 = gsl_stats_wskew_m_sd(signal_reg,1,channellist_reg,1,numtocalc_reg,beamPosX_reg_b1,beamFocusX_reg_b1/2.3548); //skewness (symmetry) + beamKurtX_b1 = gsl_stats_wkurtosis_m_sd(signal_reg,1,channellist_reg,1,numtocalc_reg,beamPosX_reg_b1,beamFocusX_reg_b1/2.3548); //excess kurtosis (well behaved tails) + + M1elements_b0[0] = SumT2; + M1elements_b1[1] = SumST; + M1elements_b1[2] = SumT; + M1elements_b1[3] = SumST; + M1elements_b1[4] = SumS2; + M1elements_b1[5] = SumS; + M1elements_b1[6] = SumT; + M1elements_b1[7] = SumS; + M1elements_b1[8] = numtocalc_reg; + + } + else if (j == 2) { + beamFocusX_reg_b2 = 2.3548/sqrt(2*p); + beamPosX_reg_b2 = -ABC(1)/ ABC(0); + beamPeakX_reg_b2 = b; + + beamRsqr_b2 = SumYYP/SumYYM; + beamSkewX_b2 = gsl_stats_wskew_m_sd(signal_reg,1,channellist_reg,1,numtocalc_reg,beamPosX_reg_b2,beamFocusX_reg_b2/2.3548); //skewness (symmetry) + beamKurtX_b2 = gsl_stats_wkurtosis_m_sd(signal_reg,1,channellist_reg,1,numtocalc_reg,beamPosX_reg_b2,beamFocusX_reg_b2/2.3548); //excess kurtosis (well behaved tails) + + M1elements_b2[0] = SumT2; + M1elements_b2[1] = SumST; + M1elements_b2[2] = SumT; + M1elements_b2[3] = SumST; + M1elements_b2[4] = SumS2; + M1elements_b2[5] = SumS; + M1elements_b2[6] = SumT; + M1elements_b2[7] = SumS; + M1elements_b2[8] = numtocalc_reg; + } + else if (j == 3) { + beamFocusX_reg_b3 = 2.3548/sqrt(2*p); + beamPosX_reg_b3 = -ABC(1)/ ABC(0); + beamPeakX_reg_b3 = b; + beamRsqr_b3 = SumYYP/SumYYM; + beamSkewX_b3 = gsl_stats_wskew_m_sd(signal_reg,1,channellist_reg,1,numtocalc_reg,beamPosX_reg_b3,beamFocusX_reg_b3/2.3548); //skewness (symmetry) + beamKurtX_b3 = gsl_stats_wkurtosis_m_sd(signal_reg,1,channellist_reg,1,numtocalc_reg,beamPosX_reg_b3,beamFocusX_reg_b3/2.3548); //excess kurtosis (well behaved tails) + + M1elements_b0[0] = SumT2; + M1elements_b3[1] = SumST; + M1elements_b3[2] = SumT; + M1elements_b3[3] = SumST; + M1elements_b3[4] = SumS2; + M1elements_b3[5] = SumS; + M1elements_b3[6] = SumT; + M1elements_b3[7] = SumS; + M1elements_b3[8] = numtocalc_reg; + } + + + + + + } + } + else if (numtocalc_b0>0&&numtocalc_b1>0) { + + + beamPosX_reg_b0 = gsl_stats_wmean(signal_gsl_b0,1,channellist_gsl_b0,1,numtocalc_b0); //calculate the weighted mean + beamFocusX_reg_b0 = gsl_stats_wsd_with_fixed_mean(signal_gsl_b0,1,channellist_gsl_b0,1,numtocalc_b0,beamPosX_reg_b0); //Standard Deviation + beamFocusX_reg_b0 *=2.3548;//SD-->FWHM + + beamPosX_reg_b1 = gsl_stats_wmean(signal_gsl_b1,1,channellist_gsl_b1,1,numtocalc_b1); //calculate the weighted mean + beamFocusX_reg_b1 = gsl_stats_wsd_with_fixed_mean(signal_gsl_b1,1,channellist_gsl_b1,1,numtocalc_b1,beamPosX_reg_b1); //Standard Deviation + beamNumX_b1 = numtocalc_b1; + beamFocusX_reg_b1 *=2.3548;//SD-->FWHM + + beamPosX_reg_b2 = gsl_stats_wmean(signal_gsl_b2,1,channellist_gsl_b2,1,numtocalc_b2); //calculate the weighted mean + beamFocusX_reg_b2 = gsl_stats_wsd_with_fixed_mean(signal_gsl_b2,1,channellist_gsl_b2,1,numtocalc_b2,beamPosX_reg_b2); //Standard Deviation + beamNumX_b2 = numtocalc_b2; + beamFocusX_reg_b2 *=2.3548;//SD-->FWHM + + beamPosX_reg_b3 = gsl_stats_wmean(signal_gsl_b3,1,channellist_gsl_b3,1,numtocalc_b3); //calculate the weighted mean + beamFocusX_reg_b3 = gsl_stats_wsd_with_fixed_mean(signal_gsl_b3,1,channellist_gsl_b3,1,numtocalc_b3,beamPosX_reg_b3); //Standard Deviation + beamNumX_b3 = numtocalc_b3; + beamFocusX_reg_b3 *=2.3548;//SD-->FWHM + + beamRsqr_b0 = .0; + beamRsqr_b1 = .0; + beamRsqr_b2 = .0; + beamRsqr_b3 = .0; + + } + else + { + beamFocusX_reg_b0 = 0.; + beamFocusX_reg_b1 = 0.; + beamFocusX_reg_b1 = 0.; + beamFocusX_reg_b1 = 0.; + beamPosX_reg_b0 = 0.; + beamPosX_reg_b1 = 0.; + beamPosX_reg_b2 = 0.; + beamPosX_reg_b3 = 0.; + beamRsqr_b0 = .0; + beamRsqr_b1 = .0; + beamRsqr_b2 = .0; + beamRsqr_b3 = .0; + + } + + + + + + + + + rootTree->Fill(); + + + + } + if (frameend>0 && frame+framestart>=frameend) break; + }//end of loop over frames + + + + graph_bkg_b0->SetName("graph_bkg_b0"); // graph_bkg_b0->Write(); + graph_bkg_b1->SetName("graph_bkg_b1"); // graph_bkg_b1->Write(); + graph_bkg_b2->SetName("graph_bkg_b2"); // graph_bkg_b2->Write(); + graph_bkg_b3->SetName("graph_bkg_b3"); // graph_bkg_b3->Write(); + + // bic1->Fill(); + // bmw1_posx->Fill(); + //bmw1_posy->Fill(); + + ///make reduced signal graph. + + for (int jjj = 0; jjj<23;jjj++) { + // beamSignal_cor_b0_mean[jjj] = h_beamSignal_cor_b0[jjj]->GetMean(); + // beamSignal_cor_b1_mean[jjj] = h_beamSignal_cor_b1[jjj]->GetMean(); + // beamSignal_cor_b2_mean[jjj] = h_beamSignal_cor_b2[jjj]->GetMean(); + // beamSignal_cor_b3_mean[jjj] = h_beamSignal_cor_b3[jjj]->GetMean(); + + //// get the median (0.5 quantile) + q = 0.5; // 0.5 for "median" + + + + + if (ionsort==3){ + //protons + energy = energy_list_p[ jjj]; + intensity = intensity_list_p[ int(intensity_index) ]; + sp_air = f_sp_air->Eval(energy)*(intensity/1.0E6); + sp_ps = f_sp_ps->Eval(energy)*(intensity/1.0E6); + sp2_air = f_sp_air->Eval(energy); + sp2_ps = f_sp_ps->Eval(energy); + lorentz_gamma = energy/938.272 +1.; // lorentz_gamma = E_u/M_u +1 + mybeta = sqrt(1. - 1./(lorentz_gamma*lorentz_gamma)); + zsqr = 1.; + } + else if (ionsort==1){ + //helium + energy = energy_list_he[ jjj ]; + intensity = intensity_list_he[ int(intensity_index) ]; + sp_air = f_h2sp_air->Eval(energy)*(intensity/1.0E6); + sp_ps = f_h2sp_ps->Eval(energy)*(intensity/1.0E6); + sp2_air = f_h2sp_air->Eval(energy); + sp2_ps = f_h2sp_ps->Eval(energy); + lorentz_gamma = energy/932.1055 +1.;// lorentz_gamma = E_u/M_u +1 + mybeta = sqrt(1. - 1./(lorentz_gamma*lorentz_gamma)); + zsqr = 4.; + + } + else if (ionsort==4){ + //carbon + energy = energy_list_c[ jjj]; + intensity = intensity_list_c[ int(intensity_index) ]; + + sp_air = f_c12sp_air->Eval(energy)*(intensity/1.0E6); + sp_ps = f_c12sp_ps->Eval(energy)*(intensity/1.0E6); + sp2_air = f_c12sp_air->Eval(energy); + sp2_ps = f_c12sp_ps->Eval(energy); + lorentz_gamma = energy/932.3539 +1.;// lorentz_gamma = E_u/M_u +1 + mybeta = sqrt(1. - 1./(lorentz_gamma*lorentz_gamma)); + zsqr = 36.; + + } + else if (ionsort==2){ + //oxygen + energy = energy_list_o[ jjj]; + intensity = intensity_list_o[ int(intensity_index) ]; + sp_air = f_o16sp_air->Eval(energy)*(intensity/1.0E6); + sp_ps = f_o16sp_ps->Eval(energy)*(intensity/1.0E6); + sp2_air = f_o16sp_air->Eval(energy); + sp2_ps = f_o16sp_ps->Eval(energy); + lorentz_gamma = energy/931.4418 +1.;// lorentz_gamma = E_u/M_u +1 + mybeta = sqrt(1. - 1./(lorentz_gamma*lorentz_gamma)); + zsqr = 64.; + + } + else { + sp_air = -1.; + sp_ps = -1.; + sp2_air = -1.; + sp2_ps = -1.; + lorentz_gamma = 0.; + mybeta = 0.; + zsqr = -1.; + + } + + h_beamSignal_ic1[jjj]->ComputeIntegral(); //just a precaution + h_beamSignal_ic1[jjj]->GetQuantiles(1,&median, &q); + //median = h_beamSignal_ic1[jjj]->GetMean(); + // intcorr = (Intensity /19.8E6) / (totalcurrent/sp2_air/totaltime); + if (median>0&&energy>0) {intcorr = (intensity / 19.8E6) / (median/sp2_air)/ 3.11;} + + // else if (median>0&&energy>0) {intcorr = 0.; median = 0.;} + else {intcorr = 0.; median = 0.;} + + cout << "energy: " << energy << endl; + cout << "intensity: " << intensity << endl; + cout << "sp2_air: " << sp2_air << endl; + cout << "median: " << median << endl; + cout << "intcorr: " << intcorr << endl; + + mybeta_graph[jjj] = sqrt(1. - 1./(lorentz_gamma*lorentz_gamma)); + + + h_beamSignal_b0[jjj]->ComputeIntegral(); //just a precaution + h_beamSignal_b0[jjj]->GetQuantiles(1,&median, &q); + beamSignal_cor_b0_mean[jjj] = median*intcorr /(intensity/1.E6)/sp2_ps; + //beamSignal_cor_b0_mean[jjj] = h_beamSignal_b0[jjj]->GetMean()*intcorr /(intensity/1.E6)/sp2_ps; + cout << beamSignal_cor_b0_mean[jjj] << endl; + + h_beamSignal_b1[jjj]->ComputeIntegral(); //just a precaution + h_beamSignal_b1[jjj]->GetQuantiles(1,&median, &q); + beamSignal_cor_b1_mean[jjj] = median*intcorr /(intensity/1.E6)/sp2_ps; + //beamSignal_cor_b1_mean[jjj] = h_beamSignal_b1[jjj]->GetMean()*intcorr /(intensity/1.E6)/sp2_ps; + + h_beamSignal_b2[jjj]->ComputeIntegral(); //just a precaution + h_beamSignal_b2[jjj]->GetQuantiles(1,&median, &q); + beamSignal_cor_b2_mean[jjj] = median*intcorr /(intensity/1.E6)/sp2_ps; + // beamSignal_cor_b2_mean[jjj] = h_beamSignal_b2[jjj]->GetMean()*intcorr /(intensity/1.E6)/sp2_ps; + + h_beamSignal_b3[jjj]->ComputeIntegral(); //just a precaution + h_beamSignal_b3[jjj]->GetQuantiles(1,&median, &q); + beamSignal_cor_b3_mean[jjj] = median*intcorr /(intensity/1.E6)/sp2_ps; + //beamSignal_cor_b3_mean[jjj] = h_beamSignal_b3[jjj]->GetMean()*intcorr /(intensity/1.E6)/sp2_ps; + + } + + TGraph * graph_b0 = new TGraph(23,mybeta_graph, beamSignal_cor_b0_mean); + TGraph * graph_b1 = new TGraph(23,mybeta_graph, beamSignal_cor_b1_mean); + TGraph * graph_b2 = new TGraph(23,mybeta_graph, beamSignal_cor_b2_mean); + TGraph * graph_b3 = new TGraph(23,mybeta_graph, beamSignal_cor_b3_mean); + + graph_b0->SetName("graph_b0");graph_b0->Write(); + graph_b1->SetName("graph_b1");graph_b1->Write(); + graph_b2->SetName("graph_b2");graph_b2->Write(); + graph_b3->SetName("graph_b3");graph_b3->Write(); + + + rootFile->Write(); + rootFile->Close(); + } + std::cout << eventID << " frames analysed." << std::endl; + return 0; + } + else { + std::cerr << "Error 1" << std::endl; + return 1; + } + +} + +int main(int argc, char **argv){ + + analyse(argc, argv); + +} diff --git a/Scripts_20180425/Scripts_20180425/convert_clean_fix.c b/Scripts_20180425/Scripts_20180425/convert_clean_fix.c new file mode 100644 index 0000000..70834a7 --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/convert_clean_fix.c @@ -0,0 +1,1306 @@ +/// to do: +/// 1. correct for gap between arrays + +#define convert_cxx +#include "convert_clean.h" + +int init(int argc, char **argv); +int analyse(int argc, char **argv); + +//using namespace std; + + + +/// compile with: +//// $ make clean; make +/// run with: +//// $ ./convert +///// $convert_clean /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ run41 /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ethercat/with_timestamp/run41.csv ./run41_offsetcor.txt + + + +int main(int argc, char **argv){ + init(argc, argv); // initialise some variables, create histograms and root tree + analyse(argc, argv); +} + + + +int init(int argc, char **argv){ + smooth_on = true; // boxcar smoothing of data + doFit = false; // gaussian fitting (slow) + doLinInt = true; // Linear Interpolation (fast) + ethercat = true; // align with ethercat data (IC and MWPC) + f_sp_air->SetParameters(303.746, -0.873697,1.01335); //protons between 50 and 300 MeV + f_sp_ps->SetParameters(361.936, -0.892255, 1.19133); //protons between 50 and 220 MeV + f_h2sp_air->SetParameters(1236.51, -0.880225, 4.17041); //helium between 50 and 300 MeV + f_h2sp_ps->SetParameters(1387.08, -0.882686,4.60833); //heelium between 50 and 300 MeV + f_c12sp_air->SetParameters(13291.2, -0.925464,45.3876); //carbon between 80 and 480 MeV + f_c12sp_ps->SetParameters(14538.9, -0.922423,49.2859); //carbon between 80 and 480 MeV + f_o16sp_air->SetParameters(24624.9, -0.925425,80.6828); //oxygen between 80 and 480 MeV + f_o16sp_ps->SetParameters(26465.6, -0.928309,88.6728); //oxygen between 80 and 480 MeV + + // TVirtualFitter::SetDefaultFitter("Minuit2"); + // TVirtualFitter::SetPrecision(0.1); + + // std::cout << "Default Fitter:" << TVirtualFitter::GetDefaultFitter() << std::endl; + + //initialise some values; + for (int i = 0;i<128;i++){ + board_b0_ch_bkg[i] = 0.; + board_b1_ch_bkg[i] = 0.; + board_b2_ch_bkg[i] = 0.; + board_b3_ch_bkg[i] = 0.; + channellist_gsl_b0[i] = 0; + channellist_gsl_b1[i] = 0; + channellist_gsl_b2[i] = 0; + channellist_gsl_b3[i] = 0; + + calibration_b0[i] = 1.0; + calibration_b1[i] = 1.0; + calibration_b2[i] = 1.0; + calibration_b3[i] = 1.0; + errorx[i]=17.; + errory[i]=17.; + + if (i<64) {pos[i] = double(i);} + else {pos[i] = double(i) + 0.2; } + } + // if (argc > 3){ + //open the file names specified in the command line + ethercatfile = argv[3]; + // argv[1]= "/work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/"; + // argv[2]= "Run11" + filename = Form("%s%s.dat",argv[1],argv[2]); + offsetfilename = Form("%s",argv[4]); + timestampfilename = Form("%s%s_timestamp.csv",argv[1],argv[2]); + // modify location of rootfilename to somewhere writeable + rootfilename = Form("%s/root/%s.root",argv[1],argv[2]); + file.open(filename, ifstream::in | ifstream::binary); + timestampfile.open(timestampfilename, ifstream::in); + offsetfile.open(offsetfilename, ifstream::in); + + if (!file.is_open()){ + printf(".dat did not open.\n"); + return -1; //file could not be opened + } + else { + printf("Data file opened.\n"); + } + if (!timestampfile.is_open()){ + printf("timestamp.csv did not open.\n"); + ethercat = false; + //return -1; //file could not be opened + } + if (!offsetfile.is_open()){ + printf("no offset.txt file found\n"); + // return -1; //file could not be opened + for (int ii = 0; ii<30;ii++) { + signaloffset_b0[ii] = 0.; signaloffset_b1[ii] = 0.; signaloffset_b2[ii] = 0.; signaloffset_b3[ii] = 0.; + } + } + else { + for (int ii = 0; ii<30;ii++) offsetfile >> signaloffset_b0[ii] >> signaloffset_b1[ii] >>signaloffset_b2[ii] >>signaloffset_b3[ii] ; + } + + + ///read in offsets produced by offsetcor.C script (needs to be run after convert_clean, then repeat convert_clean.) + + ///some variables to get the data + // int number_of_records_to_read = 4*10; + // BufferData* buffer = new BufferData[number_of_records_to_read]; + //if(argc > 4) { + // framestart = atoi(argv[3]); + // frameend = atoi(argv[4]); + // } + + + board_b = -1; + fileframesize = getFileSize(filename) / ( 4*sizeof(BufferData) ); + dataptr = new BufferData(); + + if (fileframesize>0){ + std::cout << "Number of frames:" << fileframesize << std::endl; + //open ROOT file for saving histos and TTree. + rootFile = new TFile(rootfilename,"RECREATE"); + if ( rootFile->IsOpen() ) printf("ROOT file opened successfully\n"); + th2_signal_vs_channel_b0 = new TH2D("th2_signal_vs_channel_b0","th2_signal_vs_channel_b0",128,0,128,2200,-1000,10000); + th2_signal_vs_channel_b1 = new TH2D("th2_signal_vs_channel_b1","th2_signal_vs_channel_b1",128,0,128,2200,-1000,10000); + th2_signal_vs_channel_b2 = new TH2D("th2_signal_vs_channel_b2","th2_signal_vs_channel_b2",128,0,128,2200,-1000,10000); + th2_signal_vs_channel_b3 = new TH2D("th2_signal_vs_channel_b3","th2_signal_vs_channel_b3",128,0,128,2200,-1000,10000); + th2_signal_vs_channel_sub_b0 = new TH2D("th2_signal_vs_channel_sub_b0","th2_signal_vs_channel_sub_b0",128,0,128,2200,-1000,10000); + th2_signal_vs_channel_sub_b1 = new TH2D("th2_signal_vs_channel_sub_b1","th2_signal_vs_channel_sub_b1",128,0,128,2200,-1000,10000); + th2_signal_vs_channel_sub_b2 = new TH2D("th2_signal_vs_channel_sub_b2","th2_signal_vs_channel_sub_b2",128,0,128,2200,-1000,10000); + th2_signal_vs_channel_sub_b3 = new TH2D("th2_signal_vs_channel_sub_b3","th2_signal_vs_channel_sub_b3",128,0,128,2200,-1000,10000); + th1_signal_b0 = new TH1D("th1_signal_b0","th1_signal_b0",2200,-10000,50000); + th1_signal_b1 = new TH1D("th1_signal_b1","th1_signal_b1",2200,-10000,50000); + th1_signal_b2 = new TH1D("th1_signal_b2","th1_signal_b2",2200,-10000,50000); + th1_signal_b3 = new TH1D("th1_signal_b3","th1_signal_b3",2200,-10000,50000); + h_regresidual_b0 = new TH1D("h_regresidual_b0","h_regresidual_b0", 200,-.20,.20); + h_regresidual_b1 = new TH1D("h_regresidual_b1","h_regresidual_b1", 200,-.20,.20); + h_regresidual_b2 = new TH1D("h_regresidual_b2","h_regresidual_b2", 200,-.20,.20); + h_regresidual_b3 = new TH1D("h_regresidual_b3","h_regresidual_b3", 200,-.20,.20); + + + graph_bkg_b0 = new TGraph(); + graph_bkg_b1 = new TGraph(); + graph_bkg_b2 = new TGraph(); + graph_bkg_b3 = new TGraph(); + + th2_signal_vs_channel_bkg_b0 = new TH2D("th2_signal_vs_channel_bkg_b0","th2_signal_vs_channel_bkg_b0",128,0,128,1000,-500,500); + th2_signal_vs_channel_bkg_b1 = new TH2D("th2_signal_vs_channel_bkg_b1","th2_signal_vs_channel_bkg_b1",128,0,128,1000,-500,500); + th2_signal_vs_channel_bkg_b2 = new TH2D("th2_signal_vs_channel_bkg_b2","th2_signal_vs_channel_bkg_b2",128,0,128,1000,-500,500); + th2_signal_vs_channel_bkg_b3 = new TH2D("th2_signal_vs_channel_bkg_b3","th2_signal_vs_channel_bkg_b3",128,0,128,1000,-500,500); + th2_resid_vs_channel_bkg_b0 = new TH2D("th2_resid_vs_channel_bkg_b0","th2_resid_vs_channel_bkg_b0",128,0,128,300,-.15,.15); + th2_resid_vs_channel_bkg_b1 = new TH2D("th2_resid_vs_channel_bkg_b1","th2_resid_vs_channel_bkg_b1",128,0,128,300,-.15,.15); + th2_resid_vs_channel_bkg_b2 = new TH2D("th2_resid_vs_channel_bkg_b2","th2_resid_vs_channel_bkg_b2",128,0,128,300,-.15,.15); + th2_resid_vs_channel_bkg_b3 = new TH2D("th2_resid_vs_channel_bkg_b3","th2_resid_vs_channel_bkg_b3",128,0,128,300,-.15,.15); + + + + + for (int iii=0; iii<=29; iii++){ + sprintf(histname,"h_beamSignal_b0_%d",iii); + h_beamSignal_b0[iii] = new TH1D(histname,histname,200,0,100000); + sprintf(histname,"h_beamSignal_b1_%d",iii); + h_beamSignal_b1[iii] = new TH1D(histname,histname,200,0,100000); + sprintf(histname,"h_beamSignal_b2_%d",iii); + h_beamSignal_b2[iii] = new TH1D(histname,histname,200,0,100000); + sprintf(histname,"h_beamSignal_b3_%d",iii); + h_beamSignal_b3[iii] = new TH1D(histname,histname,200,0,100000); + } + for (int iii=0; iii<=29; iii++){ + sprintf(histname,"h_beamSignal_cor_b0_%d",iii); + h_beamSignal_cor_b0[iii] = new TH1D(histname,histname,200,0,10); + sprintf(histname,"h_beamSignal_cor_b1_%d",iii); + h_beamSignal_cor_b1[iii] = new TH1D(histname,histname,200,0,10.); + sprintf(histname,"h_beamSignal_cor_b2_%d",iii); + h_beamSignal_cor_b2[iii] = new TH1D(histname,histname,200,0,10.); + sprintf(histname,"h_beamSignal_cor_b3_%d",iii); + h_beamSignal_cor_b3[iii] = new TH1D(histname,histname,200,0,10.); + sprintf(histname,"h_beamSignal_ic1_%d",iii); + h_beamSignal_ic1[iii] = new TH1D(histname,histname,200,0,1000.); + + } + + + rootTree = new TTree("t","HIT Data Root Tree"); + + rootTree->Branch("beamPosX_reg_b0",&beamPosX_reg_b0,"beamPosX_reg_b0/D"); + rootTree->Branch("beamPosX_reg_b1",&beamPosX_reg_b1,"beamPosX_reg_b1/D"); + rootTree->Branch("beamPosX_reg_b2",&beamPosX_reg_b2,"beamPosX_reg_b2/D"); + rootTree->Branch("beamPosX_reg_b3",&beamPosX_reg_b3,"beamPosX_reg_b3/D"); + + + rootTree->Branch("beamFocusX_reg_b0",&beamFocusX_reg_b0,"beamFocusX_reg_b0/D"); + rootTree->Branch("beamFocusX_reg_b1",&beamFocusX_reg_b1,"beamFocusX_reg_b1/D"); + rootTree->Branch("beamFocusX_reg_b2",&beamFocusX_reg_b2,"beamFocusX_reg_b2/D"); + rootTree->Branch("beamFocusX_reg_b3",&beamFocusX_reg_b3,"beamFocusX_reg_b3/D"); + + rootTree->Branch("beamPeakX_reg_b0",&beamPeakX_reg_b0,"beamPeakX_reg_b0/D"); + rootTree->Branch("beamPeakX_reg_b1",&beamPeakX_reg_b1,"beamPeakX_reg_b1/D"); + rootTree->Branch("beamPeakX_reg_b2",&beamPeakX_reg_b2,"beamPeakX_reg_b2/D"); + rootTree->Branch("beamPeakX_reg_b3",&beamPeakX_reg_b3,"beamPeakX_reg_b3/D"); + + + rootTree->Branch("beamRsqr_b0",&beamRsqr_b0,"beamRsqr_b0/D"); + rootTree->Branch("beamRsqr_b1",&beamRsqr_b1,"beamRsqr_b1/D"); + rootTree->Branch("beamRsqr_b2",&beamRsqr_b2,"beamRsqr_b2/D"); + rootTree->Branch("beamRsqr_b3",&beamRsqr_b3,"beamRsqr_b3/D"); + rootTree->Branch("sp2_ps",&sp2_ps,"sp2_ps/D"); + rootTree->Branch("sp2_air",&sp2_air,"sp2_air/D"); + rootTree->Branch("mybeta",&mybeta,"mybeta/D"); + + + rootTree->Branch("beamSkewX_b0",&beamSkewX_b0,"beamSkewX_b0/D"); + rootTree->Branch("beamSkewX_b1",&beamSkewX_b1,"beamSkewX_b1/D"); + rootTree->Branch("beamSkewX_b2",&beamSkewX_b2,"beamSkewX_b2/D"); + rootTree->Branch("beamSkewX_b3",&beamSkewX_b3,"beamSkewX_b3/D"); + rootTree->Branch("beamKurtX_b0",&beamKurtX_b0,"beamKurtX_b0/D"); + rootTree->Branch("beamKurtX_b1",&beamKurtX_b1,"beamKurtX_b1/D"); + rootTree->Branch("beamKurtX_b2",&beamKurtX_b2,"beamKurtX_b2/D"); + rootTree->Branch("beamKurtX_b3",&beamKurtX_b3,"beamKurtX_b3/D"); + rootTree->Branch("beamNumX_b0",&numtocalc_b0,"beamNumX_b0/I"); + rootTree->Branch("beamNumX_b1",&numtocalc_b1,"beamNumX_b1/I"); + rootTree->Branch("beamNumX_b2",&numtocalc_b2,"beamNumX_b2/I"); + rootTree->Branch("beamNumX_b3",&numtocalc_b3,"beamNumX_b3/I"); + rootTree->Branch("beamSignal_b0",&signal_b0,"beamSignal_b0/D"); + rootTree->Branch("beamSignal_b1",&signal_b1,"beamSignal_b1/D"); + rootTree->Branch("beamSignal_b2",&signal_b2,"beamSignal_b2/D"); + rootTree->Branch("beamSignal_b3",&signal_b3,"beamSignal_b3/D"); + + + rootTree->Branch("beamSignal_cor_b0",&signal_cor_b0,"beamSignal_cor_b0/D"); + rootTree->Branch("beamSignal_cor_b1",&signal_cor_b1,"beamSignal_cor_b1/D"); + rootTree->Branch("beamSignal_cor_b2",&signal_cor_b2,"beamSignal_cor_b2/D"); + rootTree->Branch("beamSignal_cor_b3",&signal_cor_b3,"beamSignal_cor_b3/D"); + + + rootTree->Branch("eventID",&eventID,"eventID/I"); + //rootTree->Branch("board_b0_ch",&board_b0_ch,"board_b0_ch[128]/D"); + //rootTree->Branch("board_b1_ch",&board_b1_ch,"board_b1_ch[128]/D"); + //rootTree->Branch("board_b2_ch",&board_b2_ch,"board_b2_ch[128]/D"); + //rootTree->Branch("board_b3_ch",&board_b3_ch,"board_b3_ch[128]/D"); + + rootTree->Branch("arrayavg_b0",&arrayavg_b0,"arrayavg_b0/D"); + rootTree->Branch("arrayavg_b1",&arrayavg_b1,"arrayavg_b1/D"); + rootTree->Branch("arrayavg_b2",&arrayavg_b2,"arrayavg_b2/D"); + rootTree->Branch("arrayavg_b3",&arrayavg_b3,"arrayavg_b3/D"); + + rootTree->Branch("M1elements_b0",&M1elements_b0,"M1elements_b0[9]/D"); + rootTree->Branch("M1elements_b1",&M1elements_b1,"M1elements_b1[9]/D"); + rootTree->Branch("M1elements_b2",&M1elements_b2,"M1elements_b2[9]/D"); + rootTree->Branch("M1elements_b3",&M1elements_b3,"M1elements_b3[9]/D"); + + rootTree->Branch("goodevents_b0",&goodevents_b0,"goodevents_b0/I"); + rootTree->Branch("goodevents_b1",&goodevents_b1,"goodevents_b1/I"); + rootTree->Branch("goodevents_b2",&goodevents_b2,"goodevents_b2/I"); + rootTree->Branch("goodevents_b3",&goodevents_b3,"goodevents_b3/I"); + + double mytime; + + // import and align matching ethercat data + TTree *tree2 = new TTree("t2", "t2"); + if(ethercat){ + std::cout << " Loading Ethercat data." << std::endl; + tree2->ReadFile(ethercatfile, "RELTIME2/D:IC1/D:MW1_POSX/D:MW1_POSY/D:ANALOG_IN1/D:ENERGY_INDEX/D:INTENSITY_INDEX/D:ION-SORT/D:TIME2/D", '\t'); + std::cout << "Ethercat data loaded." << std::endl; + tree2->Print(); + } + + + + if(ethercat){ + rootTree->Branch("ic1_avg", &ic1_avg, "ic1_avg/D"); + rootTree->Branch("mw1_posx", &mw1_posx_avg, "mw1_posx/D"); + rootTree->Branch("mw1_posy", &mw1_posy_avg, "mw1_posy/D"); + rootTree->Branch("energy_index", &energy_index, "energy_index/D"); + rootTree->Branch("intensity_index", &intensity_index, "intensity_index/D"); + rootTree->Branch("ionsort", &ionsort, "ionsort/D"); + + + timeoffset = -0.050; //offset between ic and bpm readouts + mwoffset = 2; // offset for timestamped event. MW chamber position correlation seems to be better in other windows + timewindow = -0.0999; //should be a negative number. window size in time to average over. + timeoffset2 = -0.00; //offset between ic and bpm readouts + timewindow2 = -0.0999; //should be a negative number. window size in time to average over. + ////////////////////////////////////////////////////////////////// + ///// ETHERCAT DATA + ////////////////////////////////////////////////////////////////// + // tree->SetBranchAddress("time", &time); + + tree2->SetBranchAddress("RELTIME2", &rel_time2); + tree2->SetBranchAddress("TIME2", &time2); + tree2->SetBranchAddress("IC1", &ic1); + // tree2->SetBranchAddress("IC2", &ic2); + //tree2->SetBranchAddress("MW1_FOCUSX", &mw1_focusx); + //tree2->SetBranchAddress("MW1_FOCUSY", &mw1_focusy); + ///tree2->SetBranchAddress("MW2_FOCUSX", &mw2_focusx); + ///tree2->SetBranchAddress("MW2_FOCUSY", &mw2_focusy); + tree2->SetBranchAddress("MW1_POSX", &mw1_posx); + tree2->SetBranchAddress("MW1_POSY", &mw1_posy); + //tree2->SetBranchAddress("MW2_POSX", &mw2_posx); + //tree2->SetBranchAddress("MW2_POSY", &mw2_posy); + tree2->SetBranchAddress("ENERGY_INDEX", &energy_index); + tree2->SetBranchAddress("INTENSITY_INDEX", &intensity_index); + tree2->SetBranchAddress("ION-SORT", &ionsort); + tree2->SetBranchAddress("ANALOG_IN1", &analog_in1); + } + + + + + int currentEntryTree2 = 1; + + // int nevents = tree->GetEntries(); + int nevents2 = tree2->GetEntries(); + + int icCounter = 0; + + int count = 0; + int count2 = 0; + + } + +} + + +int analyse(int argc, char **argv) +{ + + + //loop through recorded data frames + for (int frame = 0; frame10000) break; + // if(frame>2000&&frame<120000) continue; + eventID = frame; + if (ethercat){ + if (timestampfile) timestampfile >> time ; + //printf("%i %f\n", eventID, time); + + count= 0; + count2 = 0; + ic1_avg = 0.; + mw1_posx_avg = 0.; + mw1_posy_avg = 0.; + tree2->GetEntry(currentEntryTree2); + + + /* if (frame % 100 == 0) + { + + printf("merging event %d ,", frame); + printf("Time %f \n", time); + printf("Entry hit %d ,", currentEntryTree2); + printf("Time hit %f \n", time2); + } + */ + + while (time2 < mytime + timeoffset && currentEntryTree2 < nevents2 ) + { + if (time2 - mytime - timeoffset > timewindow) + { + tree2->GetEntry(currentEntryTree2); + + if (ic1>0.0) ic1_avg += ic1; + + if (ic1>0.0) count++; + // if (frame % 200 == 0) printf("%i %2.3f %2.3f %2.3f %2.3f %2.3f %i \n", count, ic1, time2, mytime, timeoffset, time2 - mytime - timeoffset, mwoffset); + } + + tree2->GetEntry(currentEntryTree2); + + if ( time2 - mytime - timeoffset2 > timewindow2) + { + tree2->GetEntry(currentEntryTree2 + mwoffset); //why currentEtryTree2-4? + mw1_posx_avg += mw1_posx; + mw1_posy_avg += mw1_posy; + count2++; + // if (i % 2000 == 0) printf("%i %2.3f %2.3f %2.3f %2.3f\n", count2, mytime, time2, ic1, mw1_posx); + //if (i % 2001 == 0) printf("%i %2.3f %2.3f %2.3f %2.3f\n", count2, mytime, time2, ic1, mw1_posx); + // if (i % 2002 == 0) printf("%i %2.3f %2.3f %2.3f %2.3f\n", count2, mytime, time2, ic1, mw1_posx); + // printf("%i %2.3f %2.3f %2.3f %2.3f\n", count2, mytime, time2, ic1, mw1_posx); + } + // currentEntryTree2++; + tree2->GetEntry(currentEntryTree2); + currentEntryTree2++; + + + + + if (count2>0){ + mw1_posx_avg /= double(count2); //the positions are weighted by the charge + mw1_posy_avg /= double(count2); + } + if(count>0){ + ic1_avg /= double(count); + if (ic1_avg>1.) icCounter++; + // if (frame % 2000 == 0) printf("%i %f.2 %i \n", count, ic1_avg, icCounter); + } + // std::cout << ic1_avg << " " << icCounter << std::endl; + + + } + /////////end of ethercat matching + + if (floor(energy_index/10.)>=0&&floor(energy_index/10)<=26){energy_indexbin = floor(energy_index/10.);} + else {energy_indexbin=27;} + + + if (ionsort==3){ + //protons + energy = energy_list_p[ energy_indexbin]; + intensity = intensity_list_p[ int(intensity_index) ]; + sp_air = f_sp_air->Eval(energy)*(intensity/1.0E6); + sp_ps = f_sp_ps->Eval(energy)*(intensity/1.0E6); + sp2_air = f_sp_air->Eval(energy); + sp2_ps = f_sp_ps->Eval(energy); + lorentz_gamma = energy/938.272 +1.; // lorentz_gamma = E_u/M_u +1 + mybeta = sqrt(1. - 1./(lorentz_gamma*lorentz_gamma)); + zsqr = 1.; + } + else if (ionsort==1){ + //helium + energy = energy_list_he[ energy_indexbin ]; + intensity = intensity_list_he[ int(intensity_index) ]; + sp_air = f_h2sp_air->Eval(energy)*(intensity/1.0E6); + sp_ps = f_h2sp_ps->Eval(energy)*(intensity/1.0E6); + sp2_air = f_h2sp_air->Eval(energy); + sp2_ps = f_h2sp_ps->Eval(energy); + lorentz_gamma = energy/932.1055 +1.;// lorentz_gamma = E_u/M_u +1 + mybeta = sqrt(1. - 1./(lorentz_gamma*lorentz_gamma)); + zsqr = 4.; + + } + else if (ionsort==4){ + //carbon + energy = energy_list_c[ energy_indexbin]; + intensity = intensity_list_c[ int(intensity_index) ]; + + sp_air = f_c12sp_air->Eval(energy)*(intensity/1.0E6); + sp_ps = f_c12sp_ps->Eval(energy)*(intensity/1.0E6); + sp2_air = f_c12sp_air->Eval(energy); + sp2_ps = f_c12sp_ps->Eval(energy); + lorentz_gamma = energy/932.3539 +1.;// lorentz_gamma = E_u/M_u +1 + mybeta = sqrt(1. - 1./(lorentz_gamma*lorentz_gamma)); + zsqr = 36.; + + } + else if (ionsort==2){ + //oxygen + energy = energy_list_o[ energy_indexbin]; + intensity = intensity_list_o[ int(intensity_index) ]; + sp_air = f_o16sp_air->Eval(energy)*(intensity/1.0E6); + sp_ps = f_o16sp_ps->Eval(energy)*(intensity/1.0E6); + sp2_air = f_o16sp_air->Eval(energy); + sp2_ps = f_o16sp_ps->Eval(energy); + lorentz_gamma = energy/931.4418 +1.;// lorentz_gamma = E_u/M_u +1 + mybeta = sqrt(1. - 1./(lorentz_gamma*lorentz_gamma)); + zsqr = 64.; + + } + else { + sp_air = -1.; + sp_ps = -1.; + sp2_air = -1.; + sp2_ps = -1.; + lorentz_gamma = 0.; + mybeta = 0.; + zsqr = -1.; + + } + // intcorr = (Intensity /19.8E6) / (totalcurrent/sp2_air/totaltime); + intcorr = (intensity / 19.8E6) / (ic1_avg/sp2_air)/ 3.11; + + + // if (frame>2000&&ic1_avg<0.5) continue; + } + + /////////////////////////////////// + //// HIT DATA + /////////////////////////////////// + if (frame>2000 && beam_wason == true && beam_off == true) { beamoffcounter++; + // cout << beamoffcounter<< endl; + } + if (samplenoise==false && frame> 2000 && beam_wason == true && beam_off == true && beamoffcounter==5000) { + samplenoise = true; + } + + //board_b 0 + board_b=0; + signal_b0 = 0.; + maxchannelamp_b0 = 0.; + + file.seekg(framestart*sizeof(BufferData)+board_b*sizeof(BufferData)+4*frame*sizeof(BufferData)); + file.read ((char*)dataptr ,sizeof(BufferData)); + if (dataptr->sync_frame.device_nr==board_b){ + // std::cout << frame << " " << dataptr->sync_frame.device_nr << " " << dataptr->sync_frame.local_ctr << " " << dataptr->sync_frame.global_ctr << " " << dataptr->sync_frame.sma_state << std::endl; + if (frame%10000==0) std::cout << "Frame: " << frame << " (" <sensor_data[i]; + if (frame<1000 || samplenoise==true){ + if (samplenoise==true&& beamoffcounter==5000) { + board_b0_ch_bkg[i]=0.; + if(i==0) cout << frame << " Resampling noise " << beamoffcounter << endl; + } + board_b0_ch_bkg[i] += board_b0_ch[i]/1000.; //find baseline from the average of first 1000 events + if (samplenoise==true && beamoffcounter==6000) { + beam_wason = false; + samplenoise =false; + cout << frame << " End sampling." << endl; + } + } + else if (frame>=1000&& frame<2000){ + board_b0_ch[i] -= board_b0_ch_bkg[i]; //histogram the subtracted baseline in the next 1000 events + th2_signal_vs_channel_bkg_b0->Fill(i,board_b0_ch[i]); + if (i==1) graph_bkg_b0->SetPoint(graph_bkg_b0->GetN(), frame, board_b0_ch[i]); + } + else if (frame>=2000 && samplenoise==false) { + board_b0_ch[i]-=board_b0_ch_bkg[i]; // the rest background subtracted + // board_b0_ch[i]*=calibration_b0[i]; //calibration factor + th2_signal_vs_channel_b0->Fill(i,board_b0_ch[i]); + + //find the peak channel + if (board_b0_ch[i]> maxchannelamp_b0) { + maxchannel_b0 = i; + maxchannelamp_b0 = board_b0_ch[i]; + // cout << maxchannel_b0 << " " <50.0){ + array_b0[length-1] += board_b0_ch[i]; + } + //////////////////////////////////////////// + } + + + }//end of 128 + // th1_signal_b0->Fill(signal_b0); + if (frame>2000) { + arrayavg_b0 += array_b0[length-1]/length; + if (arrayavg_b0>= 20000) { + beamoncounter++; + } + if (beamoncounter>100 && beam_wason == false && arrayavg_b0>= 20000) { + beam_off = false; + beam_wason = true; + cout << frame << " Beam on " << arrayavg_b0 << endl; + } + if (arrayavg_b0< 10000) { + if(beam_wason== true && beam_off==false ) { + cout << frame << "Beam went OFF!" << arrayavg_b0 << endl; + beamoffcounter = 0; + } + beam_off = true; + goodevents_b0=0; + goodevents_b1=0; + goodevents_b2=0; + goodevents_b3=0; + + } + } + + // cout << frame << " Rolling average: " << arrayavg_b0 << endl;// " ic: " << ic1_avg << endl; + + } + else { + std::cout << "Error." << std::endl; + } + + //board_b 1 + board_b=1; + signal_b1 = 0.; + maxchannelamp_b1 = 0.; + + file.seekg(framestart*sizeof(BufferData)+board_b*sizeof(BufferData)+4*frame*sizeof(BufferData)); + file.read ((char*)dataptr ,sizeof(BufferData)); + if (dataptr->sync_frame.device_nr==board_b){ + // std::cout << frame << " " << dataptr->sync_frame.device_nr << " " << dataptr->sync_frame.local_ctr << " " << dataptr->sync_frame.global_ctr << " " << dataptr->sync_frame.sma_state << std::endl; + + + arrayavg_b1 = 0; + //shift the events of the rolling average of the signal one left + for (int j = 1; jsensor_data[i]; + if (frame<1000){ + board_b1_ch_bkg[i] += board_b1_ch[i]/1000.; //find baseline from the average of first 1000 events + + } + else if (frame>=1000&& frame<2000){ + board_b1_ch[i] -= board_b1_ch_bkg[i]; //histogram the subtracted baseline in the next 1000 events + th2_signal_vs_channel_bkg_b1->Fill(i,board_b1_ch[i]); + if (i==1) graph_bkg_b1->SetPoint(graph_bkg_b1->GetN(), frame, board_b1_ch[i]); + } + else if (frame>=2000) { + board_b1_ch[i]-=board_b1_ch_bkg[i]; // the rest background subtracted + // board_b1_ch[i]*=calibration_b1[i]; //calibration factor + th2_signal_vs_channel_b1->Fill(i,board_b1_ch[i]); + + //find the peak channel + if (board_b1_ch[i]> maxchannelamp_b1) { + maxchannel_b1 = i; + maxchannelamp_b1 = board_b1_ch[i]; + // cout << maxchannel_b1 << " " <50.0){ + array_b1[length-1] += board_b1_ch[i]; + } + //////////////////////////////////////////// + } + + + }//end of 128 + // th1_signal_b1->Fill(signal_b1); + arrayavg_b1 += array_b1[length-1]/length; + + // cout << frame << " Rolling average: " << arrayavg_b1 << endl;// " ic: " << ic1_avg << endl; + + } + else { + std::cout << "Error." << std::endl; + } + + + //board_b 2 + board_b=2; + signal_b2 = 0.; + maxchannelamp_b2 = 0.; + + file.seekg(framestart*sizeof(BufferData)+board_b*sizeof(BufferData)+4*frame*sizeof(BufferData)); + file.read ((char*)dataptr ,sizeof(BufferData)); + if (dataptr->sync_frame.device_nr==board_b){ + // std::cout << frame << " " << dataptr->sync_frame.device_nr << " " << dataptr->sync_frame.local_ctr << " " << dataptr->sync_frame.global_ctr << " " << dataptr->sync_frame.sma_state << std::endl; + + + arrayavg_b2 = 0; + //shift the events of the rolling average of the signal one left + for (int j = 1; jsensor_data[i]; + if (frame<1000){ + board_b2_ch_bkg[i] += board_b2_ch[i]/1000.; //find baseline from the average of first 1000 events + + } + else if (frame>=1000&& frame<2000){ + board_b2_ch[i] -= board_b2_ch_bkg[i]; //histogram the subtracted baseline in the next 1000 events + th2_signal_vs_channel_bkg_b2->Fill(i,board_b2_ch[i]); + if (i==1) graph_bkg_b2->SetPoint(graph_bkg_b2->GetN(), frame, board_b2_ch[i]); + } + else if (frame>=2000) { + board_b2_ch[i]-=board_b2_ch_bkg[i]; // the rest background subtracted + // board_b2_ch[i]*=calibration_b2[i]; //calibration factor + th2_signal_vs_channel_b2->Fill(i,board_b2_ch[i]); + + //find the peak channel + if (board_b2_ch[i]> maxchannelamp_b2) { + maxchannel_b2 = i; + maxchannelamp_b2 = board_b2_ch[i]; + // cout << maxchannel_b2 << " " <50.0){ + array_b2[length-1] += board_b2_ch[i]; + } + //////////////////////////////////////////// + } + + + }//end of 128 + // th1_signal_b2->Fill(signal_b2); + arrayavg_b2 += array_b2[length-1]/length; + + // cout << frame << " Rolling average: " << arrayavg_b2 << endl;// " ic: " << ic1_avg << endl; + + } + else { + std::cout << "Error." << std::endl; + } + + + //board_b 3 + board_b=3; + signal_b3 = 0.; + maxchannelamp_b3 = 0.; + + file.seekg(framestart*sizeof(BufferData)+board_b*sizeof(BufferData)+4*frame*sizeof(BufferData)); + file.read ((char*)dataptr ,sizeof(BufferData)); + if (dataptr->sync_frame.device_nr==board_b){ + // std::cout << frame << " " << dataptr->sync_frame.device_nr << " " << dataptr->sync_frame.local_ctr << " " << dataptr->sync_frame.global_ctr << " " << dataptr->sync_frame.sma_state << std::endl; + + arrayavg_b3 = 0; + //shift the events of the rolling average of the signal one left + for (int j = 1; jsensor_data[i]; + if (frame<1000){ + board_b3_ch_bkg[i] += board_b3_ch[i]/1000.; //find baseline from the average of first 1000 events + + } + else if (frame>=1000&& frame<2000){ + board_b3_ch[i] -= board_b3_ch_bkg[i]; //histogram the subtracted baseline in the next 1000 events + th2_signal_vs_channel_bkg_b3->Fill(i,board_b3_ch[i]); + if (i==1) graph_bkg_b3->SetPoint(graph_bkg_b3->GetN(), frame, board_b3_ch[i]); + } + else if (frame>=2000) { + board_b3_ch[i]-=board_b3_ch_bkg[i]; // the rest background subtracted + // board_b3_ch[i]*=calibration_b3[i]; //calibration factor + th2_signal_vs_channel_b3->Fill(i,board_b3_ch[i]); + + //find the peak channel + if (board_b3_ch[i]> maxchannelamp_b3) { + maxchannel_b3 = i; + maxchannelamp_b3 = board_b3_ch[i]; + // cout << maxchannel_b3 << " " <50.0){ + array_b3[length-1] += board_b3_ch[i]; + } + //////////////////////////////////////////// + } + + + }//end of 128 + // th1_signal_b3->Fill(signal_b3); + arrayavg_b3 += array_b3[length-1]/length; + + // cout << frame << " Rolling average: " << arrayavg_b3 << endl;// " ic: " << ic1_avg << endl; + + } + else { + std::cout << "Error." << std::endl; + } + + + + //////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////// + //start the signal analysis + //////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////// + + if (frame>=2000&&beam_off == false&&beam_wason == true){ + + + + + + + //////////////////////////////////////////////////////////// + //find the approx FWHM + //////////////////////////////////////////////////////////// + + nfwhm_b0 =0; + nfwhm_b1 =0; + nfwhm_b2 =0; + nfwhm_b3 =0; + + for (int i = 0;i<128;i++){ + if (board_b0_ch[i] > maxchannelamp_b0/3.) nfwhm_b0++; //switched to a lower threshold 1/3 instead of 1/2 + if (board_b1_ch[i] > maxchannelamp_b1/3.) nfwhm_b1++; + if (board_b2_ch[i] > maxchannelamp_b2/3.) nfwhm_b2++; + if (board_b3_ch[i] > maxchannelamp_b3/3.) nfwhm_b3++; + signal_gsl_b0[i] = 0.; + signal_gsl_b1[i] = 0.; + signal_gsl_b2[i] = 0.; + signal_gsl_b3[i] = 0.; + + } + + + + //////////////////////////////////////////////////////////// + //integrate under the approximate peak + //build the channel list for statistical analysis + //////////////////////////////////////////////////////////// + + numtocalc_b0 = 0; + numtocalc_b1 = 0; + numtocalc_b2 = 0; + numtocalc_b3 = 0; + signal_b0 = 0. - signaloffset_b0[energy_indexbin]; + + + // cout << energy_indexbin << endl; + for (int i = maxchannel_b0-nfwhm_b0 ; i <= maxchannel_b0 + nfwhm_b0; i++){ + if (i>=0 && i<=127 && board_b0_ch[i]>0){ + signal_b0 +=board_b0_ch[i]; + signal_gsl_b0[numtocalc_b0]=board_b0_ch[i]; + // channellist_gsl_b0[numtocalc_b0] = i; + channellist_gsl_b0[numtocalc_b0] = pos[i]; + numtocalc_b0++; + } + } + th1_signal_b0->Fill(signal_b0); //cout << signal_b0 << endl; + if (ic1_avg>0.1){ + h_beamSignal_b0[energy_indexbin]->Fill(signal_b0); + goodevents_b0++; + + } + + signal_b1 = 0. - signaloffset_b1[energy_indexbin];; + for (int i = maxchannel_b1-nfwhm_b1 ; i <= maxchannel_b1 + nfwhm_b1; i++){ + if (i>=0 && i<=127&&board_b1_ch[i]>0){ + signal_b1 +=board_b1_ch[i] ; + signal_gsl_b1[numtocalc_b1]=board_b1_ch[i]; + // channellist_gsl_b1[numtocalc_b1] = i; + channellist_gsl_b1[numtocalc_b1] = pos[i]; + numtocalc_b1++; + } + } + th1_signal_b1->Fill(signal_b1); + if (ic1_avg>0.1){ + h_beamSignal_b1[energy_indexbin]->Fill(signal_b1); + goodevents_b1++; + } + + signal_b2 = 0. - signaloffset_b2[energy_indexbin];; + for (int i = maxchannel_b2-nfwhm_b2 ; i <= maxchannel_b2 + nfwhm_b2; i++){ + if (i>=0 && i<=127&&board_b2_ch[i]>0){ + signal_b2 +=board_b2_ch[i]; + signal_gsl_b2[numtocalc_b2]=board_b2_ch[i]; + // channellist_gsl_b2[numtocalc_b2] = i; + channellist_gsl_b2[numtocalc_b2] = pos[i]; + numtocalc_b2++; + } + } + + th1_signal_b2->Fill(signal_b2); + if (ic1_avg>0.1) { + h_beamSignal_b2[energy_indexbin]->Fill(signal_b2); + goodevents_b2++; + } + + signal_b3 = 0. - signaloffset_b3[energy_indexbin]; + for (int i = maxchannel_b3-nfwhm_b3 ; i <= maxchannel_b3 + nfwhm_b3; i++){ + if (i>=0 && i<=127&&board_b3_ch[i]>0){ + signal_b3 +=board_b3_ch[i]; + signal_gsl_b3[numtocalc_b3]=board_b3_ch[i]; + //channellist_gsl_b3[numtocalc_b3] = i; + channellist_gsl_b3[numtocalc_b3] = pos[i]; + numtocalc_b3++; + } + } + th1_signal_b3->Fill(signal_b3); + if (ic1_avg>0.1) { + h_beamSignal_b3[energy_indexbin]->Fill(signal_b3); + h_beamSignal_ic1[energy_indexbin]->Fill(ic1_avg); + goodevents_b3++; + } + + + signal_cor_b0 = signal_b0*intcorr/(intensity/1.E6)/sp2_ps; + signal_cor_b1 = signal_b1*intcorr/(intensity/1.E6)/sp2_ps; + signal_cor_b2 = signal_b2*intcorr/(intensity/1.E6)/sp2_ps; + signal_cor_b3 = signal_b3*intcorr/(intensity/1.E6)/sp2_ps; + if (signal_cor_b0 >0.05 && signal_cor_b0 < 10.) {h_beamSignal_cor_b0[energy_indexbin]->Fill(signal_cor_b0);} + if (signal_cor_b1 >0.05 && signal_cor_b1 < 10.) {h_beamSignal_cor_b1[energy_indexbin]->Fill(signal_cor_b1);} + if (signal_cor_b2 >0.05 && signal_cor_b2 < 10.) {h_beamSignal_cor_b2[energy_indexbin]->Fill(signal_cor_b2);} + if (signal_cor_b3 >0.05 && signal_cor_b3 < 10.) {h_beamSignal_cor_b3[energy_indexbin]->Fill(signal_cor_b3);} + + ///////////////// linear regression using Integration by parts of gaussian function. + + if (doLinInt&&numtocalc_b0>=3&&numtocalc_b1>=3&&numtocalc_b2>=3&&numtocalc_b3>=3){ + for (int j = 0; j<=4; j++){ + if (j== 0) { + copy(signal_gsl_b0,signal_gsl_b0+128, signal_reg); + copy(channellist_gsl_b0,channellist_gsl_b0+128, channellist_reg); + numtocalc_reg = numtocalc_b0; + } + else if (j== 1) { + copy(signal_gsl_b1,signal_gsl_b1+128, signal_reg); + copy(channellist_gsl_b1,channellist_gsl_b1+128, channellist_reg); + numtocalc_reg = numtocalc_b1; + } + else if (j== 2) { + copy(signal_gsl_b2,signal_gsl_b2+128, signal_reg); + copy(channellist_gsl_b2,channellist_gsl_b2+128, channellist_reg); + numtocalc_reg = numtocalc_b2; + } + else if (j== 3) { + copy(signal_gsl_b3,signal_gsl_b3+128, signal_reg); + copy(channellist_gsl_b3,channellist_gsl_b3+128, channellist_reg); + numtocalc_reg = numtocalc_b3; + } + SumY = 0.; + SumS = 0.; + SumT = 0.; + SumS2 = 0.; + SumST = 0.; + SumT2 = 0.; + SumYS = 0.; + SumYT = 0.; + b_den = 0.; + b_num = 0.; + b = 0.; + SumYYM = 0.; + SumYYP = 0.; + MeanY = 0.; + + + for(int k=0; k y = b*exp(-p*(x-c)*(x-c)) + p = -ABC(0)/2.; c = -ABC(1)/ABC(0); + + for(int k=0; kFill((b*exp(-p*(channellist_reg[k]-c)*(channellist_reg[k]-c)) - signal_reg[k])/signal_reg[k]); + th2_resid_vs_channel_bkg_b0->Fill(channellist_reg[k],(b*exp(-p*(channellist_reg[k]-c)*(channellist_reg[k]-c)) - signal_reg[k])/signal_reg[k]); + } + if (j == 1) { + h_regresidual_b1->Fill((b*exp(-p*(channellist_reg[k]-c)*(channellist_reg[k]-c)) - signal_reg[k])/signal_reg[k]); + th2_resid_vs_channel_bkg_b1->Fill(channellist_reg[k],(b*exp(-p*(channellist_reg[k]-c)*(channellist_reg[k]-c)) - signal_reg[k])/signal_reg[k]); + } + if (j == 2) { + h_regresidual_b2->Fill((b*exp(-p*(channellist_reg[k]-c)*(channellist_reg[k]-c)) - signal_reg[k])/signal_reg[k]); + th2_resid_vs_channel_bkg_b2->Fill(channellist_reg[k],(b*exp(-p*(channellist_reg[k]-c)*(channellist_reg[k]-c)) - signal_reg[k])/signal_reg[k]); + } + if (j == 3) { + h_regresidual_b3->Fill((b*exp(-p*(channellist_reg[k]-c)*(channellist_reg[k]-c)) - signal_reg[k])/signal_reg[k]); + th2_resid_vs_channel_bkg_b3->Fill(channellist_reg[k],(b*exp(-p*(channellist_reg[k]-c)*(channellist_reg[k]-c)) - signal_reg[k])/signal_reg[k]); + } + + } + // cout << "R-squared = " << SumYYP/SumYYM << endl; + + + //final results + + if (j == 0) { + beamFocusX_reg_b0 = 2.3548/sqrt(2*p); + beamPosX_reg_b0 = -ABC(1)/ ABC(0); + beamPeakX_reg_b0 = b; + beamRsqr_b0 = SumYYP/SumYYM; + beamSkewX_b0 = gsl_stats_wskew_m_sd(signal_reg,1,channellist_reg,1,numtocalc_reg,beamPosX_reg_b0,beamFocusX_reg_b0/2.3548); //skewness (symmetry) + beamKurtX_b0 = gsl_stats_wkurtosis_m_sd(signal_reg,1,channellist_reg,1,numtocalc_reg,beamPosX_reg_b0,beamFocusX_reg_b0/2.3548); //excess kurtosis (well behaved tails) + + M1elements_b0[0] = SumT2; + M1elements_b0[1] = SumST; + M1elements_b0[2] = SumT; + M1elements_b0[3] = SumST; + M1elements_b0[4] = SumS2; + M1elements_b0[5] = SumS; + M1elements_b0[6] = SumT; + M1elements_b0[7] = SumS; + M1elements_b0[8] = numtocalc_reg; + } + else if (j == 1) { + beamFocusX_reg_b1 = 2.3548/sqrt(2*p); + beamPosX_reg_b1 = -ABC(1)/ ABC(0); + beamPeakX_reg_b1 = b; + + beamRsqr_b1 = SumYYP/SumYYM; + beamSkewX_b1 = gsl_stats_wskew_m_sd(signal_reg,1,channellist_reg,1,numtocalc_reg,beamPosX_reg_b1,beamFocusX_reg_b1/2.3548); //skewness (symmetry) + beamKurtX_b1 = gsl_stats_wkurtosis_m_sd(signal_reg,1,channellist_reg,1,numtocalc_reg,beamPosX_reg_b1,beamFocusX_reg_b1/2.3548); //excess kurtosis (well behaved tails) + + M1elements_b0[0] = SumT2; + M1elements_b1[1] = SumST; + M1elements_b1[2] = SumT; + M1elements_b1[3] = SumST; + M1elements_b1[4] = SumS2; + M1elements_b1[5] = SumS; + M1elements_b1[6] = SumT; + M1elements_b1[7] = SumS; + M1elements_b1[8] = numtocalc_reg; + + } + else if (j == 2) { + beamFocusX_reg_b2 = 2.3548/sqrt(2*p); + beamPosX_reg_b2 = -ABC(1)/ ABC(0); + beamPeakX_reg_b2 = b; + + beamRsqr_b2 = SumYYP/SumYYM; + beamSkewX_b2 = gsl_stats_wskew_m_sd(signal_reg,1,channellist_reg,1,numtocalc_reg,beamPosX_reg_b2,beamFocusX_reg_b2/2.3548); //skewness (symmetry) + beamKurtX_b2 = gsl_stats_wkurtosis_m_sd(signal_reg,1,channellist_reg,1,numtocalc_reg,beamPosX_reg_b2,beamFocusX_reg_b2/2.3548); //excess kurtosis (well behaved tails) + + M1elements_b2[0] = SumT2; + M1elements_b2[1] = SumST; + M1elements_b2[2] = SumT; + M1elements_b2[3] = SumST; + M1elements_b2[4] = SumS2; + M1elements_b2[5] = SumS; + M1elements_b2[6] = SumT; + M1elements_b2[7] = SumS; + M1elements_b2[8] = numtocalc_reg; + } + else if (j == 3) { + beamFocusX_reg_b3 = 2.3548/sqrt(2*p); + beamPosX_reg_b3 = -ABC(1)/ ABC(0); + beamPeakX_reg_b3 = b; + beamRsqr_b3 = SumYYP/SumYYM; + beamSkewX_b3 = gsl_stats_wskew_m_sd(signal_reg,1,channellist_reg,1,numtocalc_reg,beamPosX_reg_b3,beamFocusX_reg_b3/2.3548); //skewness (symmetry) + beamKurtX_b3 = gsl_stats_wkurtosis_m_sd(signal_reg,1,channellist_reg,1,numtocalc_reg,beamPosX_reg_b3,beamFocusX_reg_b3/2.3548); //excess kurtosis (well behaved tails) + + M1elements_b0[0] = SumT2; + M1elements_b3[1] = SumST; + M1elements_b3[2] = SumT; + M1elements_b3[3] = SumST; + M1elements_b3[4] = SumS2; + M1elements_b3[5] = SumS; + M1elements_b3[6] = SumT; + M1elements_b3[7] = SumS; + M1elements_b3[8] = numtocalc_reg; + } + + + + + + } + } + else if (numtocalc_b0>0&&numtocalc_b1>0) { + + + beamPosX_reg_b0 = gsl_stats_wmean(signal_gsl_b0,1,channellist_gsl_b0,1,numtocalc_b0); //calculate the weighted mean + beamFocusX_reg_b0 = gsl_stats_wsd_with_fixed_mean(signal_gsl_b0,1,channellist_gsl_b0,1,numtocalc_b0,beamPosX_reg_b0); //Standard Deviation + beamFocusX_reg_b0 *=2.3548;//SD-->FWHM + + beamPosX_reg_b1 = gsl_stats_wmean(signal_gsl_b1,1,channellist_gsl_b1,1,numtocalc_b1); //calculate the weighted mean + beamFocusX_reg_b1 = gsl_stats_wsd_with_fixed_mean(signal_gsl_b1,1,channellist_gsl_b1,1,numtocalc_b1,beamPosX_reg_b1); //Standard Deviation + beamNumX_b1 = numtocalc_b1; + beamFocusX_reg_b1 *=2.3548;//SD-->FWHM + + beamPosX_reg_b2 = gsl_stats_wmean(signal_gsl_b2,1,channellist_gsl_b2,1,numtocalc_b2); //calculate the weighted mean + beamFocusX_reg_b2 = gsl_stats_wsd_with_fixed_mean(signal_gsl_b2,1,channellist_gsl_b2,1,numtocalc_b2,beamPosX_reg_b2); //Standard Deviation + beamNumX_b2 = numtocalc_b2; + beamFocusX_reg_b2 *=2.3548;//SD-->FWHM + + beamPosX_reg_b3 = gsl_stats_wmean(signal_gsl_b3,1,channellist_gsl_b3,1,numtocalc_b3); //calculate the weighted mean + beamFocusX_reg_b3 = gsl_stats_wsd_with_fixed_mean(signal_gsl_b3,1,channellist_gsl_b3,1,numtocalc_b3,beamPosX_reg_b3); //Standard Deviation + beamNumX_b3 = numtocalc_b3; + beamFocusX_reg_b3 *=2.3548;//SD-->FWHM + + beamRsqr_b0 = .0; + beamRsqr_b1 = .0; + beamRsqr_b2 = .0; + beamRsqr_b3 = .0; + + } + else + { + beamFocusX_reg_b0 = 0.; + beamFocusX_reg_b1 = 0.; + beamFocusX_reg_b1 = 0.; + beamFocusX_reg_b1 = 0.; + beamPosX_reg_b0 = 0.; + beamPosX_reg_b1 = 0.; + beamPosX_reg_b2 = 0.; + beamPosX_reg_b3 = 0.; + beamRsqr_b0 = .0; + beamRsqr_b1 = .0; + beamRsqr_b2 = .0; + beamRsqr_b3 = .0; + + } + + + + + + + + + rootTree->Fill(); + + + + } + if (frameend>0 && frame+framestart>=frameend) break; + }//end of loop over frames + + + + graph_bkg_b0->SetName("graph_bkg_b0"); // graph_bkg_b0->Write(); + graph_bkg_b1->SetName("graph_bkg_b1"); // graph_bkg_b1->Write(); + graph_bkg_b2->SetName("graph_bkg_b2"); // graph_bkg_b2->Write(); + graph_bkg_b3->SetName("graph_bkg_b3"); // graph_bkg_b3->Write(); + + // bic1->Fill(); + // bmw1_posx->Fill(); + //bmw1_posy->Fill(); + + ///make reduced signal graph. + + for (int jjj = 0; jjj<23;jjj++) { + // beamSignal_cor_b0_mean[jjj] = h_beamSignal_cor_b0[jjj]->GetMean(); + // beamSignal_cor_b1_mean[jjj] = h_beamSignal_cor_b1[jjj]->GetMean(); + // beamSignal_cor_b2_mean[jjj] = h_beamSignal_cor_b2[jjj]->GetMean(); + // beamSignal_cor_b3_mean[jjj] = h_beamSignal_cor_b3[jjj]->GetMean(); + + //// get the median (0.5 quantile) + q = 0.5; // 0.5 for "median" + + + + + if (ionsort==3){ + //protons + energy = energy_list_p[ jjj]; + intensity = intensity_list_p[ int(intensity_index) ]; + sp_air = f_sp_air->Eval(energy)*(intensity/1.0E6); + sp_ps = f_sp_ps->Eval(energy)*(intensity/1.0E6); + sp2_air = f_sp_air->Eval(energy); + sp2_ps = f_sp_ps->Eval(energy); + lorentz_gamma = energy/938.272 +1.; // lorentz_gamma = E_u/M_u +1 + mybeta = sqrt(1. - 1./(lorentz_gamma*lorentz_gamma)); + zsqr = 1.; + } + else if (ionsort==1){ + //helium + energy = energy_list_he[ jjj ]; + intensity = intensity_list_he[ int(intensity_index) ]; + sp_air = f_h2sp_air->Eval(energy)*(intensity/1.0E6); + sp_ps = f_h2sp_ps->Eval(energy)*(intensity/1.0E6); + sp2_air = f_h2sp_air->Eval(energy); + sp2_ps = f_h2sp_ps->Eval(energy); + lorentz_gamma = energy/932.1055 +1.;// lorentz_gamma = E_u/M_u +1 + mybeta = sqrt(1. - 1./(lorentz_gamma*lorentz_gamma)); + zsqr = 4.; + + } + else if (ionsort==4){ + //carbon + energy = energy_list_c[ jjj]; + intensity = intensity_list_c[ int(intensity_index) ]; + + sp_air = f_c12sp_air->Eval(energy)*(intensity/1.0E6); + sp_ps = f_c12sp_ps->Eval(energy)*(intensity/1.0E6); + sp2_air = f_c12sp_air->Eval(energy); + sp2_ps = f_c12sp_ps->Eval(energy); + lorentz_gamma = energy/932.3539 +1.;// lorentz_gamma = E_u/M_u +1 + mybeta = sqrt(1. - 1./(lorentz_gamma*lorentz_gamma)); + zsqr = 36.; + + } + else if (ionsort==2){ + //oxygen + energy = energy_list_o[ jjj]; + intensity = intensity_list_o[ int(intensity_index) ]; + sp_air = f_o16sp_air->Eval(energy)*(intensity/1.0E6); + sp_ps = f_o16sp_ps->Eval(energy)*(intensity/1.0E6); + sp2_air = f_o16sp_air->Eval(energy); + sp2_ps = f_o16sp_ps->Eval(energy); + lorentz_gamma = energy/931.4418 +1.;// lorentz_gamma = E_u/M_u +1 + mybeta = sqrt(1. - 1./(lorentz_gamma*lorentz_gamma)); + zsqr = 64.; + + } + else { + sp_air = -1.; + sp_ps = -1.; + sp2_air = -1.; + sp2_ps = -1.; + lorentz_gamma = 0.; + mybeta = 0.; + zsqr = -1.; + + } + + h_beamSignal_ic1[jjj]->ComputeIntegral(); //just a precaution + h_beamSignal_ic1[jjj]->GetQuantiles(1,&median, &q); + //median = h_beamSignal_ic1[jjj]->GetMean(); + // intcorr = (Intensity /19.8E6) / (totalcurrent/sp2_air/totaltime); + if (median>0&&energy>0) {intcorr = (intensity / 19.8E6) / (median/sp2_air)/ 3.11;} + + // else if (median>0&&energy>0) {intcorr = 0.; median = 0.;} + else {intcorr = 0.; median = 0.;} + + cout << "energy: " << energy << endl; + cout << "intensity: " << intensity << endl; + cout << "sp2_air: " << sp2_air << endl; + cout << "median: " << median << endl; + cout << "intcorr: " << intcorr << endl; + + mybeta_graph[jjj] = sqrt(1. - 1./(lorentz_gamma*lorentz_gamma)); + + + h_beamSignal_b0[jjj]->ComputeIntegral(); //just a precaution + h_beamSignal_b0[jjj]->GetQuantiles(1,&median, &q); + beamSignal_cor_b0_mean[jjj] = median*intcorr /(intensity/1.E6)/sp2_ps; + //beamSignal_cor_b0_mean[jjj] = h_beamSignal_b0[jjj]->GetMean()*intcorr /(intensity/1.E6)/sp2_ps; + cout << beamSignal_cor_b0_mean[jjj] << endl; + + h_beamSignal_b1[jjj]->ComputeIntegral(); //just a precaution + h_beamSignal_b1[jjj]->GetQuantiles(1,&median, &q); + beamSignal_cor_b1_mean[jjj] = median*intcorr /(intensity/1.E6)/sp2_ps; + //beamSignal_cor_b1_mean[jjj] = h_beamSignal_b1[jjj]->GetMean()*intcorr /(intensity/1.E6)/sp2_ps; + + h_beamSignal_b2[jjj]->ComputeIntegral(); //just a precaution + h_beamSignal_b2[jjj]->GetQuantiles(1,&median, &q); + beamSignal_cor_b2_mean[jjj] = median*intcorr /(intensity/1.E6)/sp2_ps; + // beamSignal_cor_b2_mean[jjj] = h_beamSignal_b2[jjj]->GetMean()*intcorr /(intensity/1.E6)/sp2_ps; + + h_beamSignal_b3[jjj]->ComputeIntegral(); //just a precaution + h_beamSignal_b3[jjj]->GetQuantiles(1,&median, &q); + beamSignal_cor_b3_mean[jjj] = median*intcorr /(intensity/1.E6)/sp2_ps; + //beamSignal_cor_b3_mean[jjj] = h_beamSignal_b3[jjj]->GetMean()*intcorr /(intensity/1.E6)/sp2_ps; + + } + + TGraph * graph_b0 = new TGraph(23,mybeta_graph, beamSignal_cor_b0_mean); + TGraph * graph_b1 = new TGraph(23,mybeta_graph, beamSignal_cor_b1_mean); + TGraph * graph_b2 = new TGraph(23,mybeta_graph, beamSignal_cor_b2_mean); + TGraph * graph_b3 = new TGraph(23,mybeta_graph, beamSignal_cor_b3_mean); + + graph_b0->SetName("graph_b0");graph_b0->Write(); + graph_b1->SetName("graph_b1");graph_b1->Write(); + graph_b2->SetName("graph_b2");graph_b2->Write(); + graph_b3->SetName("graph_b3");graph_b3->Write(); + + + rootFile->Write(); + rootFile->Close(); + + std::cout << eventID << " frames analysed." << std::endl; + return 0; + // } + // else { + // std::cerr << "Error 1" << std::endl; + // return 1; + // } + +} diff --git a/Scripts_20180425/Scripts_20180425/convert_clean_fix.h b/Scripts_20180425/Scripts_20180425/convert_clean_fix.h new file mode 100644 index 0000000..df804e3 --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/convert_clean_fix.h @@ -0,0 +1,308 @@ +#include "hitutils.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "TStopwatch.h" +#include "Math/MinimizerOptions.h" +#include "TVirtualFitter.h" +#include "TMatrixD.h" + +Double_t S[128], T[128], SumT, SumS, SumS2, SumST, SumT2, SumY, SumYS, SumYT, sigmaABC, muABC,p,c, b, b_den, b_num, SumYYP, SumYYM, MeanY; +TMatrixD M1(3,3); +TMatrixD M1inv(3,3); +TVectorD ABC(3); +TVectorD M2(3); +Double_t M1elements_b0[9] = {0.}; +Double_t M1elements_b1[9] = {0.}; +Double_t M1elements_b2[9] = {0.}; +Double_t M1elements_b3[9] = {0.}; + +TMatrixD matrix(2,2); +TMatrixD *M1pointer = &M1; +TVectorD *M2pointer = &M2; +TVectorD *ABCpointer = &ABC; + + +int eventID = 0; +int framestart=0; +int frameend = 0; +double board_b0_ch[128]; +double board_b1_ch[128]; +double board_b2_ch[128]; +double board_b3_ch[128]; +double board_b0_ch_bkg[128]; +double board_b1_ch_bkg[128]; +double board_b2_ch_bkg[128]; +double board_b3_ch_bkg[128]; +double signal_b0 = 0.; +double signal_b1 = 0.; +double signal_b2 = 0.; +double signal_b3 = 0.; + +double signal_cor_b0 = 0.; +double signal_cor_b1 = 0.; +double signal_cor_b2 = 0.; +double signal_cor_b3 = 0.; + +double signal_b0_left = 0.; +double signal_b1_left = 0.; +double signal_b2_left = 0.; +double signal_b3_left = 0.; + +double signal_b0_right = 0.; +double signal_b1_right = 0.; +double signal_b2_right = 0.; +double signal_b3_right = 0.; + +double signal_gsl_b0[128]; +double signal_gsl_b1[128]; +double signal_gsl_b2[128]; +double signal_gsl_b3[128]; +double signal_reg[128]; + + +double channellist_gsl_b0[128]; +double channellist_gsl_b1[128]; +double channellist_gsl_b2[128]; +double channellist_gsl_b3[128]; +double channellist[128]; +double channellist_reg[128]; + + +double pos[128]; + +double maxchannelamp_b0 =0.; +double maxchannelamp_b1 =0.; +double maxchannelamp_b2 =0.; +double maxchannelamp_b3 =0.; +int maxchannel_b0 =0; +int maxchannel_b1 =0; +int maxchannel_b2 =0; +int maxchannel_b3 =0; +int numtocalc_b0 =0; +int numtocalc_b1 =0; +int numtocalc_b2 =0; +int numtocalc_b3 =0; +int numtocalc_reg =0; + +int nfwhm_b0 = 0; +int nfwhm_b1 = 0; +int nfwhm_b2 = 0; +int nfwhm_b3 = 0; + +double beamPosX_b0,beamPosX_b1,beamPosX_b2,beamPosX_b3; +double beamFocusX_b0,beamFocusX_b1,beamFocusX_b2,beamFocusX_b3; +double beamPosX_fit_b0,beamPosX_fit_b1,beamPosX_fit_b2,beamPosX_fit_b3; +double beamFocusX_fit_b0,beamFocusX_fit_b1,beamFocusX_fit_b2,beamFocusX_fit_b3; +double beamSkewX_b0,beamSkewX_b1,beamSkewX_b2,beamSkewX_b3; +double beamKurtX_b0,beamKurtX_b1,beamKurtX_b2,beamKurtX_b3; +int beamNumX_b0,beamNumX_b1,beamNumX_b2,beamNumX_b3; +double beamRsqr_b0,beamRsqr_b1,beamRsqr_b2,beamRsqr_b3; +double beamChi2_fit_b0,beamChi2_fit_b1,beamChi2_fit_b2,beamChi2_fit_b3; + +double beamPosX_reg_b0,beamPosX_reg_b1,beamPosX_reg_b2,beamPosX_reg_b3; +double beamFocusX_reg_b0,beamFocusX_reg_b1,beamFocusX_reg_b2,beamFocusX_reg_b3; +double beamPeakX_reg_b0,beamPeakX_reg_b1,beamPeakX_reg_b2,beamPeakX_reg_b3; + +double beamSidebandNoise_b0, beamSidebandNoise_b1, beamSidebandNoise_b2, beamSidebandNoise_b3 ; +int sidenumtocalc_b0,sidenumtocalc_b1,sidenumtocalc_b2,sidenumtocalc_b3; +size_t size = 5; + +const int length = 100; //length of the rolling average +double array_b0[length] = {0.}; +double array_b1[length] = {0.}; +double array_b2[length] = {0.}; +double array_b3[length] = {0.}; + +double arrayavg_b0 = 0.; +double arrayavg_b1 = 0.; +double arrayavg_b2 = 0.; +double arrayavg_b3 = 0.; + + +bool graphsaved_b0 = false; +bool graphsaved_b1 = false; +bool graphsaved_b2 = false; +bool graphsaved_b3 = false; + +TVector beamontime(0,3,0.,0.,0.,0.,"END"); +TVector * beamontime_ptr = &beamontime; + +double calibration_b0[128] = {0.}; +double calibration_b1[128] = {0.}; +double calibration_b2[128] = {0.}; +double calibration_b3[128] = {0.}; + +TF1 * gausfunc_b0 = new TF1("gausfunc_b0","gaus(0)+[3]"); +TF1 * gausfunc_b1 = new TF1("gausfunc_b1","gaus(0)+[3]"); + + + +TGraphErrors * gausgraph_b0; +TGraphErrors * gausgraph_b1; +Int_t lastfit_b0 = 0; +Int_t lastfit_b1 = 0; +double errorx[128]; +double errory[128]; + +bool samplenoise = false; +bool beam_off = true; +bool beam_wason = false; +int beamoffcounter = 0; +int beamoncounter = 0; + +Double_t mybeta = 0.; +Double_t lorentz_gamma = 0.; +Double_t zsqr = 0.; +Double_t sp_air = 0.; +Double_t sp_ps = 0.; +Double_t sp2_air = 0.; +Double_t sp2_ps = 0.; +Double_t intcorr = 1.; + +Double_t x, q, median; + +Double_t signaloffset_b0[30]; +Double_t signaloffset_b1[30]; +Double_t signaloffset_b2[30]; +Double_t signaloffset_b3[30]; + + + +TF1 * f_sp_air = new TF1("f_sp_air","[0]*pow(x,[1])+[2]", 50, 250); //stopping power of protons in Air [MeV cm2 /g] +TF1 * f_sp_ps = new TF1("f_sp_ps","[0]*pow(x,[1])+[2]", 50, 250); //stopping power of protons in polystyrene [MeV cm2 /g] +TF1 * f_h2sp_air = new TF1("f_h2sp_air","[0]*pow(x,[1])+[2]", 50, 250); //stopping power of helium in air [MeV cm2 /g] +TF1 * f_h2sp_ps = new TF1("f_h2sp_ps","[0]*pow(x,[1])+[2]", 50, 250); //stopping power of helium in polystyrene [MeV cm2 /g] +TF1 * f_c12sp_air = new TF1("f_c12sp_air","[0]*pow(x,[1])+[2]", 80, 480); //stopping power of carbon in air [MeV cm2 /g] +TF1 * f_c12sp_ps = new TF1("f_c12sp_ps","[0]*pow(x,[1])+[2]", 80, 480); //stopping power of carbon in polystyrene [MeV cm2 /g] +TF1 * f_o16sp_air = new TF1("f_o16sp_air","[0]*pow(x,[1])+[2]", 80, 480); //stopping power of oxygen in air [MeV cm2 /g] +TF1 * f_o16sp_ps = new TF1("f_o16sp_ps","[0]*pow(x,[1])+[2]", 80,480); //stopping power of oxygen in polystyrene [MeV cm2 /g] +///// ic1/SP intensity correction factor = 19.8E6+/-0.1E6 particles/s per nA/(Mevcm2/g) + + +bool smooth_on; +bool doFit; +bool doLinInt; +bool ethercat; +char * ethercatfile; +char * filename; +char * offsetfilename; +char * timestampfilename ; +char * rootfilename ; +ifstream file; +ifstream timestampfile; +ifstream offsetfile; +int board_b; +long int fileframesize; +BufferData* dataptr; +TFile *rootFile; + +TH2D * th2_signal_vs_channel_b0; +TH2D * th2_signal_vs_channel_b1; +TH2D * th2_signal_vs_channel_b2; +TH2D * th2_signal_vs_channel_b3 ; + +TH2D * th2_signal_vs_channel_sub_b0; +TH2D * th2_signal_vs_channel_sub_b1; +TH2D * th2_signal_vs_channel_sub_b2; +TH2D * th2_signal_vs_channel_sub_b3; + +TH1D * th1_signal_b0; +TH1D * th1_signal_b1; +TH1D * th1_signal_b2; +TH1D * th1_signal_b3; + +TH1D * h_regresidual_b0; +TH1D * h_regresidual_b1; +TH1D * h_regresidual_b2; +TH1D * h_regresidual_b3; + +TGraph * graph_bkg_b0; +TGraph * graph_bkg_b1; +TGraph * graph_bkg_b2; +TGraph * graph_bkg_b3; + +TGraph * gr_b0; TGraph * gr_b1; TGraph * gr_b2; TGraph * gr_b3; +TGraph * gr_sm_b0; TGraph * gr_sm_b1; TGraph * gr_sm_b2; TGraph * gr_sm_b3; + +TH2D * th2_signal_vs_channel_bkg_b0; +TH2D * th2_signal_vs_channel_bkg_b1; +TH2D * th2_signal_vs_channel_bkg_b2; +TH2D * th2_signal_vs_channel_bkg_b3; + +TH2D * th2_resid_vs_channel_bkg_b0; +TH2D * th2_resid_vs_channel_bkg_b1; +TH2D * th2_resid_vs_channel_bkg_b2; +TH2D * th2_resid_vs_channel_bkg_b3; +TH1D* h_beamSignal_b0[30]; +TH1D* h_beamSignal_b1[30]; +TH1D* h_beamSignal_b2[30]; +TH1D* h_beamSignal_b3[30]; + +int energy_indexbin = 0; +char histname[30] = ""; +TH1D* h_beamSignal_ic1[30]; + + +TH1D* h_beamSignal_cor_b0[30]; +TH1D* h_beamSignal_cor_b1[30]; +TH1D* h_beamSignal_cor_b2[30]; +TH1D* h_beamSignal_cor_b3[30]; +Double_t beamSignal_cor_b0_mean[30]; +Double_t beamSignal_cor_b1_mean[30]; +Double_t beamSignal_cor_b2_mean[30]; +Double_t beamSignal_cor_b3_mean[30]; +Double_t mybeta_graph[30]; + +int goodevents_b0=0; +int goodevents_b1=0; +int goodevents_b2=0; +int goodevents_b3=0; + +TTree *rootTree; + + int k = 0; + // int count = 0; + double ic1, ic2, mw1_focusx, mw1_focusy, mw2_focusx, mw2_focusy, mw1_posx, mw1_posy, mw2_posx, mw2_posy; + double ic1_avg, ic2_avg, mw1_focusx_avg, mw1_focusy_avg, mw2_focusx_avg, mw2_focusy_avg, mw1_posx_avg, mw1_posy_avg, mw2_posx_avg, mw2_posy_avg; + + double analog_in1; + double energy_index; + double energy; + double energy_list_p[27] = {48.12, 59.82, 70.03, 79.17, 87.53, 95.3, 102.61, 109.56, 116.2, 122.57, 128.72, 134.65, 140.41, 146.01, 151.5, 156.89, 162.21, 167.46, 172.62, 177.7, 184.81, 191.87, 198.76, 205.48, 212.06, 218.51, 0.}; + double energy_list_he[27] = {50.57, 61.86, 71.73, 80.64, 88.85, 96.52, 103.76, 110.64, 117.23, 123.55, 129.64, 135.55, 141.27, 146.84, 152.26, 157.56, 162.73, 167.8, 172.77, 177.64, 184.56, 191.54, 198.36, 205.03, 211.57, 217.98, 0.}; + double energy_list_c[27] = {88.83,110.58,129.79,147.13,163.09,178.01,192.13,205.6,218.52,230.98,243.03,254.71,266.08,277.19,288.1,298.87,309.52,320.07,330.48,340.77,355.22,369.64,383.78,397.66,411.32,424.77,0.}; + double energy_list_o[27] = {103.77, 129.65, 152.42, 172.98, 191.96, 209.63, 226.53, 242.58, 258.11, 273.04, 287.5, 301.55, 315.32, 328.61, 341.84, 354.88, 367.94, 380.48, 393.09, 405.65, 423.23, 440.82, 458.11, 475.28, 491.93, 508.38, 0.}; + double intensity_index; + double intensity; + double intensity_list_p[16] = {0., 8.00E+07, 1.20E+08, 2.00E+08, 3.20E+08,4.00E+08, 6.00E+08, 8.00E+08, 1.20E+09, 2.00E+09, 3.20E+09, 4.00E+09, 6.00E+09, 8.00E+09, 1.20E+10, 2.00E+10}; + double intensity_list_he[16] = { 0., 2.00E+07, 3.00E+07, 5.00E+07, 8.00E+07, 1.00E+08, 1.50E+08, 2.00E+08, 3.00E+08, 5.00E+08, 8.00E+08, 1.00E+09, 1.50E+09, 2.00E+09, 3.00E+09, 5.00E+09}; + + double intensity_list_c[16] = {0.,2.00E+06, 3.00E+06, 5.00E+06, 8.00E+06, 1.00E+07, 1.50E+07, 2.00E+07, 3.00E+07, 5.00E+07, 8.00E+07, 1.00E+08, 1.50E+08, 2.00E+08, 3.00E+08, 5.00E+08}; + double intensity_list_o[16] = {0., 1.00E+06, 1.50E+06, 2.50E+06, 4.00E+06, 5.00E+06, 8.00E+06, 1.00E+07, 1.50E+07, 2.50E+07, 4.00E+07, 5.00E+07, 8.00E+07, 1.00E+08, 1.50E+08, 2.50E+08 }; + double ionsort; + + double rel_time2,time2; + + double timeoffset; + int mwoffset; + double timewindow; + double timeoffset2; + double timewindow2; diff --git a/Scripts_20180425/Scripts_20180425/convert_test b/Scripts_20180425/Scripts_20180425/convert_test new file mode 100755 index 0000000..d7b3564 Binary files /dev/null and b/Scripts_20180425/Scripts_20180425/convert_test differ diff --git a/Scripts_20180425/Scripts_20180425/convert_test.c b/Scripts_20180425/Scripts_20180425/convert_test.c new file mode 100644 index 0000000..e7732f5 --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/convert_test.c @@ -0,0 +1,539 @@ +/// to do: +/// 1. correct for gap between arrays + +#define convert_cxx +#include "hitutils.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "GaussSmoothen.h" +#include + +using namespace std; + +bool smooth_on = true; +int ngraphs = 0; +int eventID = 0; +int framestart=0; +int frameend = 0; +double board_b0_ch[128]; +double board_b1_ch[128]; +double board_b2_ch[128]; +double board_b3_ch[128]; +double board_b0_ch_bkg[128]; +double board_b1_ch_bkg[128]; +double board_b2_ch_bkg[128]; +double board_b3_ch_bkg[128]; +double signal_b0 = 0.; +double signal_b1 = 0.; +double signal_b2 = 0.; +double signal_b3 = 0.; +double signal_avg = 0.; +double signal_b0_left = 0.; +double signal_b1_left = 0.; +double signal_b2_left = 0.; +double signal_b3_left = 0.; + +double signal_b0_right = 0.; +double signal_b1_right = 0.; +double signal_b2_right = 0.; +double signal_b3_right = 0.; + +double signal_gsl_b0[128]; +double signal_gsl_b1[128]; +double signal_gsl_b2[128]; +double signal_gsl_b3[128]; + + +double channellist_gsl_b0[128]; +double channellist_gsl_b1[128]; +double channellist_gsl_b2[128]; +double channellist_gsl_b3[128]; +double channellist[128]; +double pos[128]; + +double maxchannelamp_b0 =0.; +double maxchannelamp_b1 =0.; +double maxchannelamp_b2 =0.; +double maxchannelamp_b3 =0.; +int maxchannel_b0 =0; +int maxchannel_b1 =0; +int maxchannel_b2 =0; +int maxchannel_b3 =0; +int numtocalc_b0 =0; +int numtocalc_b1 =0; +int numtocalc_b2 =0; +int numtocalc_b3 =0; +int nfwhm_b0 = 0; +int nfwhm_b1 = 0; +int nfwhm_b2 = 0; +int nfwhm_b3 = 0; + +double beamPosX_b0,beamPosX_b1,beamPosX_b2,beamPosX_b3; +double beamFocusX_b0,beamFocusX_b1,beamFocusX_b2,beamFocusX_b3; +double beamSkewX_b0,beamSkewX_b1,beamSkewX_b2,beamSkewX_b3; +double beamKurtX_b0,beamKurtX_b1,beamKurtX_b2,beamKurtX_b3; +double beamNumX_b0,beamNumX_b1,beamNumX_b2,beamNumX_b3; + +double beamSidebandNoise_b0, beamSidebandNoise_b1, beamSidebandNoise_b2, beamSidebandNoise_b3 ; +int sidenumtocalc_b0,sidenumtocalc_b1,sidenumtocalc_b2,sidenumtocalc_b3; +size_t size = 5; +vector boxcar; +vector boxcarsort; +vector boxcarweight{1,3,5,3,1}; +vector data(128); +TVector sumvector_b0(128); +TVector sumvector_b1(128); +TVector sumvector_b2(128); +TVector sumvector_b3(128); + +TVector * sumvector_b0_ptr = &sumvector_b0; +TVector * sumvector_b1_ptr = &sumvector_b1; +TVector * sumvector_b2_ptr = &sumvector_b2; +TVector * sumvector_b3_ptr = &sumvector_b3; + +const int length = 100; //length of the rolling average +double array_b0[length][128] = {{0.}}; +double array_b1[length][128] = {{0.}}; +double array_b2[length][128] = {{0.}}; +double array_b3[length][128] = {{0.}}; + +double arrayavg_b0[128] = {0.}; +double arrayavg_b1[128] = {0.}; +double arrayavg_b2[128] = {0.}; +double arrayavg_b3[128] = {0.}; + + + +double board_b0_smooth_ch[128]; +double board_b1_smooth_ch[128]; +double board_b2_smooth_ch[128]; +double board_b3_smooth_ch[128]; + +bool graphsaved_b0 = false; +bool graphsaved_b1 = false; +bool graphsaved_b2 = false; +bool graphsaved_b3 = false; + +TVector beamontime(0,3,0.,0.,0.,0.,"END"); +TVector * beamontime_ptr = &beamontime; + +double calibration_b0[128] = {0.}; +double calibration_b1[128] = {0.}; +double calibration_b2[128] = {0.}; +double calibration_b3[128] = {0.}; + +TGraph * graph[100]; + +/// compile with: +//// $ make clean; make +/// run with: +//// $ ./convert +//// $ ./convert /work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/ run2 + + + +int main(int argc, char **argv) +{ + //initialise some values; + for (int i = 0;i<128;i++){ + board_b0_ch_bkg[i] = 0.; + board_b1_ch_bkg[i] = 0.; + board_b2_ch_bkg[i] = 0.; + board_b3_ch_bkg[i] = 0.; + channellist_gsl_b0[i] = 0; + channellist_gsl_b1[i] = 0; + channellist_gsl_b2[i] = 0; + channellist_gsl_b3[i] = 0; + sumvector_b0[i] = 0; + sumvector_b1[i] = 0; + sumvector_b2[i] = 0; + sumvector_b3[i] = 0; + calibration_b0[i] = 1.0; + calibration_b1[i] = 1.0; + calibration_b2[i] = 1.0; + calibration_b3[i] = 1.0; + channellist[i] = i; + if (i<64) {pos[i] = double(i);} + else {pos[i] = double(i) + 0.2; } + } + if (argc > 1){ + //open the file names specified in the command line + string filename; + string rootfilename; + // argv[1]= "/work/leverington/beamprofilemonitor/hitdata/HIT_17_12_2017/"; + // argv[2]= "Run11" + filename = Form("%s%s.dat",argv[1],argv[2]); + rootfilename = Form("%s/root/%s.root",argv[1],argv[2]); // Giulia needs to change the path %s/root/ of the written root file. + ifstream file(filename, ifstream::in | ifstream::binary); + + if (!file.is_open()){ + printf(".dat did not open.\n"); + return -1; //file could not be opened + } + + ///some variables to get the data + // int number_of_records_to_read = 4*10; + // BufferData* buffer = new BufferData[number_of_records_to_read]; + if(argc > 4) { + framestart = atoi(argv[3]); + frameend = atoi(argv[4]); + } + + + int board_b = -1; + long int fileframesize = getFileSize(filename.c_str()) / ( 4*sizeof(BufferData) ); + BufferData* dataptr = new BufferData(); + + if (fileframesize>0){ + + //open ROOT file for saving histos and TTree. + TFile *rootFile = new TFile(rootfilename.c_str(),"RECREATE"); + if ( rootFile->IsOpen() ) printf("ROOT file opened successfully\n"); + TH2D * th2_signal_vs_channel_b0 = new TH2D("th2_signal_vs_channel_b0","th2_signal_vs_channel_b0",128,0,128,2200,-1000,10000); + TH2D * th2_signal_vs_channel_b1 = new TH2D("th2_signal_vs_channel_b1","th2_signal_vs_channel_b1",128,0,128,2200,-1000,10000); + TH2D * th2_signal_vs_channel_b2 = new TH2D("th2_signal_vs_channel_b2","th2_signal_vs_channel_b2",128,0,128,2200,-1000,10000); + TH2D * th2_signal_vs_channel_b3 = new TH2D("th2_signal_vs_channel_b3","th2_signal_vs_channel_b3",128,0,128,2200,-1000,10000); + TH2D * th2_signal_vs_channel_sub_b0 = new TH2D("th2_signal_vs_channel_sub_b0","th2_signal_vs_channel_sub_b0",128,0,128,2200,-1000,10000); + TH2D * th2_signal_vs_channel_sub_b1 = new TH2D("th2_signal_vs_channel_sub_b1","th2_signal_vs_channel_sub_b1",128,0,128,2200,-1000,10000); + TH2D * th2_signal_vs_channel_sub_b2 = new TH2D("th2_signal_vs_channel_sub_b2","th2_signal_vs_channel_sub_b2",128,0,128,2200,-1000,10000); + TH2D * th2_signal_vs_channel_sub_b3 = new TH2D("th2_signal_vs_channel_sub_b3","th2_signal_vs_channel_sub_b3",128,0,128,2200,-1000,10000); + TH1D * th1_signal_b0 = new TH1D("th1_signal_b0","th1_signal_b0",2200,-10000,50000); + TH1D * th1_signal_b1 = new TH1D("th1_signal_b1","th1_signal_b1",2200,-10000,50000); + TH1D * th1_signal_b2 = new TH1D("th1_signal_b2","th1_signal_b2",2200,-10000,50000); + TH1D * th1_signal_b3 = new TH1D("th1_signal_b3","th1_signal_b3",2200,-10000,50000); + TGraph * graph_bkg_b0 = new TGraph(); + TGraph * graph_bkg_b1 = new TGraph(); + TGraph * graph_bkg_b2 = new TGraph(); + TGraph * graph_bkg_b3 = new TGraph(); + TGraph * gr_b0; + TGraph * gr_sm_b0; + TGraph * gr_b1; + TGraph * gr_sm_b1; + TGraph * gr_b2; + TGraph * gr_sm_b2; + TGraph * gr_b3; + TGraph * gr_sm_b3; + + TH2D * th2_signal_vs_channel_bkg_b0 = new TH2D("th2_signal_vs_channel_bkg_b0","th2_signal_vs_channel_bkg_b0",128,0,128,1000,-500,500); + TH2D * th2_signal_vs_channel_bkg_b1 = new TH2D("th2_signal_vs_channel_bkg_b1","th2_signal_vs_channel_bkg_b1",128,0,128,1000,-500,500); + TH2D * th2_signal_vs_channel_bkg_b2 = new TH2D("th2_signal_vs_channel_bkg_b2","th2_signal_vs_channel_bkg_b2",128,0,128,1000,-500,500); + TH2D * th2_signal_vs_channel_bkg_b3 = new TH2D("th2_signal_vs_channel_bkg_b3","th2_signal_vs_channel_bkg_b3",128,0,128,1000,-500,500); + + TTree *rootTree = new TTree("t","HIT Data Root Tree"); + rootTree->Branch("beamPosX_b0",&beamPosX_b0,"beamPosX_b0/D"); + rootTree->Branch("beamPosX_b1",&beamPosX_b1,"beamPosX_b1/D"); + rootTree->Branch("beamPosX_b2",&beamPosX_b2,"beamPosX_b2/D"); + rootTree->Branch("beamPosX_b3",&beamPosX_b3,"beamPosX_b3/D"); + rootTree->Branch("beamFocusX_b0",&beamFocusX_b0,"beamFocusX_b0/D"); + rootTree->Branch("beamFocusX_b1",&beamFocusX_b1,"beamFocusX_b1/D"); + rootTree->Branch("beamFocusX_b2",&beamFocusX_b2,"beamFocusX_b2/D"); + rootTree->Branch("beamFocusX_b3",&beamFocusX_b3,"beamFocusX_b3/D"); + rootTree->Branch("beamSkewX_b0",&beamSkewX_b0,"beamSkewX_b0/D"); + rootTree->Branch("beamSkewX_b1",&beamSkewX_b1,"beamSkewX_b1/D"); + rootTree->Branch("beamSkewX_b2",&beamSkewX_b2,"beamSkewX_b2/D"); + rootTree->Branch("beamSkewX_b3",&beamSkewX_b3,"beamSkewX_b3/D"); + rootTree->Branch("beamKurtX_b0",&beamKurtX_b0,"beamKurtX_b0/D"); + rootTree->Branch("beamKurtX_b1",&beamKurtX_b1,"beamKurtX_b1/D"); + rootTree->Branch("beamKurtX_b2",&beamKurtX_b2,"beamKurtX_b2/D"); + rootTree->Branch("beamKurtX_b3",&beamKurtX_b3,"beamKurtX_b3/D"); + rootTree->Branch("beamNumX_b0",&beamNumX_b0,"beamNumX_b0/D"); + rootTree->Branch("beamNumX_b1",&beamNumX_b1,"beamNumX_b1/D"); + rootTree->Branch("beamNumX_b2",&beamNumX_b2,"beamNumX_b2/D"); + rootTree->Branch("beamNumX_b3",&beamNumX_b3,"beamNumX_b3/D"); + rootTree->Branch("beamSignal_b0",&signal_b0,"beamSignal_b0/D"); + rootTree->Branch("beamSignal_b1",&signal_b1,"beamSignal_b1/D"); + rootTree->Branch("beamSignal_b2",&signal_b2,"beamSignal_b2/D"); + rootTree->Branch("beamSignal_b3",&signal_b3,"beamSignal_b3/D"); + + rootTree->Branch("beamSignal_b0_left",&signal_b0_left,"beamSignal_b0_left/D"); + rootTree->Branch("beamSignal_b1_left",&signal_b1_left,"beamSignal_b1_left/D"); + rootTree->Branch("beamSignal_b2_left",&signal_b2_left,"beamSignal_b2_left/D"); + rootTree->Branch("beamSignal_b3_left",&signal_b3_left,"beamSignal_b3_left/D"); + rootTree->Branch("beamSignal_b0_right",&signal_b0_right,"beamSignal_b0_right/D"); + rootTree->Branch("beamSignal_b1_right",&signal_b1_right,"beamSignal_b1_right/D"); + rootTree->Branch("beamSignal_b2_right",&signal_b2_right,"beamSignal_b2_right/D"); + rootTree->Branch("beamSignal_b3_right",&signal_b3_right,"beamSignal_b3_right/D"); + + rootTree->Branch("eventID",&eventID,"eventID/I"); + rootTree->Branch("board_b0_ch",&board_b0_ch,"board_b0_ch[128]/D"); + rootTree->Branch("board_b1_ch",&board_b1_ch,"board_b1_ch[128]/D"); + rootTree->Branch("board_b2_ch",&board_b2_ch,"board_b2_ch[128]/D"); + rootTree->Branch("board_b3_ch",&board_b3_ch,"board_b3_ch[128]/D"); + + rootTree->Branch("beamSidebandNoise_b0",&beamSidebandNoise_b0,"beamSidebandNoise_b0/D"); + rootTree->Branch("beamSidebandNoise_b1",&beamSidebandNoise_b1,"beamSidebandNoise_b1/D"); + rootTree->Branch("beamSidebandNoise_b2",&beamSidebandNoise_b2,"beamSidebandNoise_b2/D"); + rootTree->Branch("beamSidebandNoise_b3",&beamSidebandNoise_b3,"beamSidebandNoise_b3/D"); + rootTree->Branch("arrayavg_b0",&arrayavg_b0,"arrayavg_b0[128]/D"); + rootTree->Branch("arrayavg_b1",&arrayavg_b1,"arrayavg_b1[128]/D"); + rootTree->Branch("arrayavg_b2",&arrayavg_b2,"arrayavg_b2[128]/D"); + rootTree->Branch("arrayavg_b3",&arrayavg_b3,"arrayavg_b3[128]/D"); + + + + //loop through recorded data frames + for (int frame = 0; framesync_frame.device_nr==board_b){ + //cout << frame << " " << dataptr->sync_frame.device_nr << endl; + if (frame%1000==0) cout << "Frame: " << frame << endl; + for (int i = 0;i<128;i++){ + board_b0_ch[i] = dataptr->sensor_data[i]; + if (frame<1000){ + board_b0_ch_bkg[i] += board_b0_ch[i]/1000.; //find baseline from the average of first 1000 events + + } + else if (frame>=1000&& frame<2000){ + board_b0_ch[i] -= board_b0_ch_bkg[i]; //histogram the subtracted baseline in the next 1000 events + th2_signal_vs_channel_bkg_b0->Fill(i,board_b0_ch[i]); + if (i==1) graph_bkg_b0->SetPoint(graph_bkg_b0->GetN(), frame, board_b0_ch[i]); + } + else if (frame>=2000) { + board_b0_ch[i]-=board_b0_ch_bkg[i]; // the rest background subtracted + board_b0_ch[i]*=calibration_b0[i]; //calibration factor + th2_signal_vs_channel_b0->Fill(i,board_b0_ch[i]); + // signal_b0 +=board_b0_ch[i] ; + if (board_b0_ch[i]> maxchannelamp_b0) { + maxchannel_b0 = i; + maxchannelamp_b0 = board_b0_ch[i]; + } + //calculate a rolling average of the signal + arrayavg_b0[i] = 0; + for (int j = 1; j-1000){ + array_b0[length-1][i] = board_b0_ch[i]; + arrayavg_b0[i] += array_b0[length-1][i]/double(length); + } + //////////////////////////////////////////// + } + } + // th1_signal_b0->Fill(signal_b0); + } + else { + cout << "Error." << endl; + } + + //board_b 1 + board_b=1; + signal_b1=0.; + maxchannelamp_b1 = 0.; + + file.seekg(framestart*sizeof(BufferData)+board_b*sizeof(BufferData)+4*frame*sizeof(BufferData)); + file.read ((char*)dataptr ,sizeof(BufferData)); + if (dataptr->sync_frame.device_nr==board_b){ + //cout << frame << " " << dataptr->sync_frame.device_nr << endl; + for (int i = 0;i<128;i++){ + board_b1_ch[i] = dataptr->sensor_data[i]; + if (frame<1000){ + board_b1_ch_bkg[i] += board_b1_ch[i]/1000.; //find baseline from the average of first 1000 events + } + else if (frame>=1000&& frame<2000){ + board_b1_ch[i] -= board_b1_ch_bkg[i]; //histogram the subtracted baseline in the next 1000 events + th2_signal_vs_channel_bkg_b1->Fill(i,board_b1_ch[i]); + if (i==1) graph_bkg_b1->SetPoint(graph_bkg_b1->GetN(), frame, board_b1_ch[i]); + + } + else if (frame>=2000) { + board_b1_ch[i]-=board_b1_ch_bkg[i]; // the rest are background subtracted + board_b1_ch[i]*=calibration_b1[i]; //calibration factor + + th2_signal_vs_channel_b1->Fill(i,board_b1_ch[i]); + // signal_b1 +=board_b1_ch[i] ; + if (board_b1_ch[i]> maxchannelamp_b1) { + maxchannel_b1 = i; + maxchannelamp_b1 = board_b1_ch[i]; + } + //calculate a rolling average of the signal + arrayavg_b1[i] = 0; + for (int j = 1; j-1000){ + array_b1[length-1][i] = board_b1_ch[i]; + arrayavg_b1[i] += array_b1[length-1][i]/double(length); + } + //////////////////////////////////////////// + } + } + // th1_signal_b1->Fill(signal_b1); + } + else { + cout << "Error." << endl; + } + //board_b 2 + board_b=2; + signal_b2=0.; + maxchannelamp_b2 = 0.; + file.seekg(framestart*sizeof(BufferData)+board_b*sizeof(BufferData)+4*frame*sizeof(BufferData)); + file.read ((char*)dataptr ,sizeof(BufferData)); + if (dataptr->sync_frame.device_nr==board_b){ + //cout << frame << " " << dataptr->sync_frame.device_nr << endl; + for (int i = 0;i<128;i++){ + board_b2_ch[i] = dataptr->sensor_data[i]; + if (frame<1000){ + board_b2_ch_bkg[i] += board_b2_ch[i]/1000.; //find baseline from the average of first 1000 events + } + else if (frame>=1000&& frame<2000){ + board_b2_ch[i] -= board_b2_ch_bkg[i]; //histogram the subtracted baseline in the next 1000 events + th2_signal_vs_channel_bkg_b2->Fill(i,board_b2_ch[i]); + if (i==1) graph_bkg_b2->SetPoint(graph_bkg_b2->GetN(), frame, board_b2_ch[i]); + + } + else if (frame>=2000) { + board_b2_ch[i]-=board_b2_ch_bkg[i]; // the rest background subtracted + board_b2_ch[i]*=calibration_b2[i]; //calibration factor + + th2_signal_vs_channel_b2->Fill(i,board_b2_ch[i]); + // signal_b2 +=board_b2_ch[i] ; + if (board_b2_ch[i]> maxchannelamp_b2) { + maxchannel_b2 = i; + maxchannelamp_b2 = board_b2_ch[i]; + } + //calculate a rolling average of the signal + arrayavg_b2[i] = 0; + for (int j = 1; j-1000){ + array_b2[length-1][i] = board_b2_ch[i]; + arrayavg_b2[i] += array_b2[length-1][i]/double(length); + } + //////////////////////////////////////////// + } + } + // th1_signal_b2->Fill(signal_b2); + } + else { + cout << "Error." << endl; + } + + //board_b 3 + board_b=3; + signal_b3=0.; + maxchannelamp_b3 = 0.; + file.seekg(framestart*sizeof(BufferData)+board_b*sizeof(BufferData)+4*frame*sizeof(BufferData)); + file.read ((char*)dataptr ,sizeof(BufferData)); + if (dataptr->sync_frame.device_nr==board_b){ + //cout << frame << " " << dataptr->sync_frame.device_nr << endl; + for (int i = 0;i<128;i++){ + board_b3_ch[i] = dataptr->sensor_data[i]; + if (frame<1000){ + board_b3_ch_bkg[i] += board_b3_ch[i]/1000.; //find baseline from the average of first 1000 events + } + else if (frame>=1000&& frame<2000){ + board_b3_ch[i] -= board_b3_ch_bkg[i]; //histogram the subtracted baseline in the next 1000 events + th2_signal_vs_channel_bkg_b3->Fill(i,board_b3_ch[i]); + if (i==1) graph_bkg_b3->SetPoint(graph_bkg_b3->GetN(), frame, board_b3_ch[i]); + + } + else if (frame>=2000) { + board_b3_ch[i]-=board_b3_ch_bkg[i]; // the rest of the events are background subtracted + board_b3_ch[i]*=calibration_b3[i]; //with a calibration factor + + th2_signal_vs_channel_b3->Fill(i,board_b3_ch[i]); + // signal_b3 +=board_b3_ch[i] ; + if (board_b3_ch[i]> maxchannelamp_b3) { + maxchannel_b3 = i; + maxchannelamp_b3 = board_b3_ch[i]; + } + //calculate a rolling average of the signal + arrayavg_b3[i] = 0; + for (int j = 1; j-1000){ + array_b3[length-1][i] = board_b3_ch[i]; + arrayavg_b3[i] += array_b3[length-1][i]/double(length); + } + //////////////////////////////////////////// + } + } + // th1_signal_b3->Fill(signal_b3); + } + else { + cout << "Error." << endl; + } + + + + + //////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////// + //start the signal analysis + //////////////////////////////////////////////////////////// + //////////////////////////////////////////////////////////// + + if (frame>=2000){ + signal_b0 = 0.; signal_b1 = 0.; signal_b2 = 0.; signal_b3 = 0.; + + for (int i = 1; i<128; i++){ + + signal_b0 += board_b0_ch[i]; + signal_b1 += board_b1_ch[i]; + signal_b2 += board_b2_ch[i]; + signal_b3 += board_b3_ch[i]; + signal_avg = (signal_b0 + signal_b1 + signal_b2 + signal_b3)/4.; + } + if ( signal_avg> 2000 && ngraphs<100){ + graph[ngraphs] = new TGraph(128,channellist,board_b0_ch); graph[ngraphs]->SetName(Form("graph_%i",ngraphs)); graph[ngraphs]->Write(); + ngraphs++; + } + if ( signal_avg> 2000) cout << signal_b0 << " " << signal_b1 << " " << signal_b2 << " " << signal_b3 << " " << signal_avg << " " << ngraphs << endl; + + + // rootTree->Fill(); + + }//end of if (frame>=2000) + if (frameend>0 && frame+framestart>=frameend) break; + if (ngraphs==100) break; + }//end of loop over frames + + + rootFile->Write(); + rootFile->Close(); + + } + cout << eventID << " frames analysed." << endl; + return 0; + } + else { + cerr << "Error 1" << endl; + return 1; + } + + +} diff --git a/Scripts_20180425/Scripts_20180425/hit_analyse.c b/Scripts_20180425/Scripts_20180425/hit_analyse.c new file mode 100644 index 0000000..c5f7b5c --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/hit_analyse.c @@ -0,0 +1,259 @@ +#define hit_analyse_cxx +#include "hit_analyse.h" + +int main(int argc, char **argv){ + + opendatafiles(argc, argv); + histograms(argc, argv); + analyse(argc, argv); + closedatafiles(); + return 0; +} + +int opendatafiles(int argc, char ** argv){ + if (argc>2){ + //open bpm data file + filename = Form("%s%s.dat",argv[1],argv[2]); + file.open(filename, ifstream::in | ifstream::binary); + fileframesize = getFileSize(filename) / ( 4*sizeof(BufferData) ); + if (fileframesize>0){ std::cout << "Number of frames in data file: " << fileframesize << std::endl;} + else { std:cout << "BPM .dat dile not found." << endl; return -1;} + + //bpm data timestamps + timestampfilename = Form("%s%s_timestamp.csv",argv[1],argv[2]); + timestampfile.open(timestampfilename, ifstream::in); + if (!timestampfile.is_open()){ + printf("timestamp.csv did not open.\n"); + ethercat = false; + //return -1; //file could not be opened + } + + + //open ethercat file + if (argc>3){ + ethercatfile = argv[3]; + tree2 = new TTree("t2", "t2"); + std::cout << " Loading Ethercat data." << std::endl; + tree2->ReadFile(ethercatfile, "RELTIME2/D:IC1/D:MW1_POSX/D:MW1_POSY/D:ANALOG_IN1/D:ENERGY_INDEX/D:INTENSITY_INDEX/D:ION-SORT/D:TIME2/D", '\t'); + std::cout << "Ethercat data loaded." << std::endl; + tree2->Print(); + } + + //open amplitude offset correction file + if (argc>4){ + offsetfilename = Form("%s",argv[4]); + offsetfile.open(offsetfilename, ifstream::in); + if (!offsetfile.is_open()){ + printf("no offset.txt file found\n"); + // return -1; //file could not be opened + } + } + + + + dataptr = new BufferData(); + + + return 1; +} + +int closedatafiles(int argc, char ** argv){ + + if (file.is_open()) file.close(); + if (timestampfile.is_open()) timestampfile.close(); + if (offsetfile.is_open()) offsetfile.close(); + + rootFile->Write(); + rootFile->Close(); +} + + +int analyse(int argc, char **argv) +{ + int bkg_frames = 1000; + set_background_v1(bkg_frames); + + for (int frame = 0; frame< fileframesize - bkg_frames; frame++ ){ + if (frame%10000==0) std::cout << "Frame: " << frame << " (" <sync_frame.device_nr==boardnumber){ + for (int j = 1; j<128;j++){ + //subtract the background from the data + board.channel_amp[j] = dataptr->sensor_data[j] - board_b_bkg[boardnumber].channel_amp[j]; + // std::cout << j << " " << board.channel_amp[j] << " " << dataptr->sensor_data[j] << std::endl; + + //sum the signal across channels + board.integratedsignalamp += board.channel_amp[j]; + + //find the peak channel + if (board.channel_amp[j]> board.maxchannel_amp) { + board.maxchannel = j; + board.maxchannel_amp = board.channel_amp[j]; + // cout << maxchannel_b0 << " " <IsOpen() ) printf("ROOT file opened successfully\n"); +} + else return -1; + TTree *rootTree = new TTree("t","HIT Data Root Tree"); + +} + +void set_background_v1(int max_frames){ + + for (int j = 0; j<128; j++){ + for (int k = 0; k<4; k++){ + board_b_bkg[k].channel_amp[j] = 0.; + } + } + for (int i = 0;isync_frame.device_nr==boardnumber){ + for (int j = 1; j<128;j++){ + board_b_bkg[boardnumber].channel_amp[j] += double(dataptr->sensor_data[j]) / double(max_frames); + // std::cout << j << " " << board.channel_amp[j] << " " << dataptr->sensor_data[j] << std::endl; + } + } + else std::cerr << "Error reading board data." << std::endl; + } + } +} + + + + +beamRecon beamreconstruction(bpm_frame_v1 frametoanalyse, double threshold = 50.){ + + ///////////////// linear regression using Integration by parts of gaussian function. + + beamRecon beam; + double SumT, SumS, SumS2, SumST, SumT2, SumY, SumYS, SumYT, sigmaABC, muABC,p,c, b, b_den, b_num, SumYYP, SumYYM, MeanY; + TMatrixD M1(3,3); + TMatrixD M1inv(3,3); + TVectorD ABC(3); + TVectorD M2(3); + vector signal_list; + vector channel_list; + + SumY = 0.; + SumS = 0.; + SumT = 0.; + SumS2 = 0.; + SumST = 0.; + SumT2 = 0.; + SumYS = 0.; + SumYT = 0.; + b_den = 0.; + b_num = 0.; + b = 0.; + p = 0.; + c = 0.; + SumYYM = 0.; + SumYYP = 0.; + MeanY = 0.; + + + // const int array_length = sizeof(frametoanalyse.channel_amp)/sizeof(double); + const int array_length = 128; + for (int i = 0; i< array_length; i++){ + if (frametoanalyse.channel_amp[i]>=threshold) { + signal_list.push_back(frametoanalyse.channel_amp[i]); + channel_list.push_back(i);//correct for actual detector position + } + } + const int vector_length = channel_list.size(); + if (vector_length<=3) return beam; + + double S[vector_length]; + double T[vector_length]; + + + + + for(int k=0; k y = b*exp(-p*(x-c)*(x-c)) + p = -ABC(0)/2.; c = -ABC(1)/ABC(0); + + for(int k=0; k +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "TStopwatch.h" +#include "Math/MinimizerOptions.h" +#include "TVirtualFitter.h" +#include "TMatrixD.h" + +//function declarations +int analyse(int argc, char **argv); +int opendatafiles(int argc, char ** argv); +void histograms(int argc, char ** argv); +void set_background_v1(int frames); +int closedatafiles(); + + +//////global variables + +//opendatafiles +long int fileframesize; +BufferData* dataptr; +char * filename; +ifstream file; +TFile *rootFile; //output root file +TTree *rootTree; +char * rootfilename; +char * ethercatfile; +TTree *tree2; //ethercat root tree +char * timestampfilename; +ifstream timestampfile; +char * offsetfilename; +ifstream offsetfile; +bool ethercat; + +struct bpm_frame_v1 { + double channel_amp[128]; + double avg_position; + double avg_width; + double integratedsignalamp; + int maxchannel; + double maxchannel_amp; +}; + +bpm_frame_v1 board_b[4]; +bpm_frame_v1 board_b_bkg[4]; + +bpm_frame_v1 readboard(int frame, int boardnumber); +int framestart = 0; + +struct beamRecon { + double Position; + double Focus; + double Peak; + double Rsqr; + double Skew; + double Kurtosis; +}; + +beamRecon beamreconstruction(bpm_frame_v1 frametoanalyse, double threshold); +beamRecon BPMbeamrecon[4]; diff --git a/Scripts_20180425/Scripts_20180425/hitutils.h b/Scripts_20180425/Scripts_20180425/hitutils.h new file mode 100644 index 0000000..b0d2561 --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/hitutils.h @@ -0,0 +1,110 @@ +//This file contains structures and functions used for processing the HIT2017 files +#include +#include + +using namespace std; + +#define DATA_SAMPLES_PER_SENSOR 64 +#define DATA_SENSORS_PER_BOARD 2 + +//**** Structure definitions **** + +typedef struct SyncFrame +{ + //unsigned short channel_id; + unsigned short local_ctr;// local counter // 16 bits, possibly different for each board + unsigned short global_ctr; //global counter same for all board up to 512 + unsigned short sma_state; //external signal input (external timestamper) + //these files are additional compared to STM side + unsigned short dummy = 0xFFFF; //spacer for nice structure packing + int device_nr; //device number + int data_ok; //0 = not ok, anything else is ok +} SyncFrame; + +typedef struct BufferData +{ + SyncFrame sync_frame; + unsigned short sensor_data[DATA_SENSORS_PER_BOARD * DATA_SAMPLES_PER_SENSOR]; +} BufferData; + +//**** Interface functions **** + +//Read some data from a binary HIT2017 file +// The data are grouped in block of BufferData type. Each block is a single frame +// from one detector board. If there are more than 1 board, the data is ordered sequentially: +// B1F1 B2F1 .. BmF1 B1F2 B2F2 .. BmF2 .. B1Fn B2Fn .. BmFn +// where Bx stands for board x (1..m) and Fx stands for frame x (1..n) +// User can read files in smaller blocks by specifying the first block and the number of blocks +// to be read. The function will return the number of correctly read blocks. +// The user must allocate memory for the data before running the function. +// If smaller number of blocks was read than specified, the remaining data in the +// allocated memory should be considered invalid. +//Parameters: +// filename: name of the file to read (with extension) +// first: number of first data record (starting with 0) +// nr: number of data records to be read (one record is one board! +// dataptr: a pointer to an allocaced memory block with min size = sizeof(BufferData)*nr +//Returned value: number of records read. +int hit_read_binary_file(const char* file, int first, int nr, BufferData* dataptr); + + + + + +//**** Function bodies **** + +int hit_read_binary_file(const char* filename, int first, int nr, BufferData* dataptr) +{ + + ifstream file(filename, ifstream::in | ifstream::binary); + + if (!file.is_open()){ + return -1; //file could not be opened + } + //seek to right position + file.seekg(first*sizeof(BufferData)); + + //read data + file.read((char*)dataptr, nr*sizeof(BufferData)); + int blocks_read = file.gcount() / sizeof(BufferData); + + // //close the file + file.close(); + + return blocks_read; +} + +int getFileSize(const char* filename) +{ + ifstream file(filename, ifstream::in | ifstream::binary); + + if(!file.is_open()) + { + return -1; + } + + file.seekg(0, ios::end); + int fileSize = file.tellg(); + file.close(); + + return fileSize; +} + +int getBlock(const char* filename,int block) +{ + ifstream file(filename, ifstream::in | ifstream::binary); + + if(!file.is_open()) + { + return -1; + } + file.seekg (block*sizeof(BufferData)); + + BufferData* dataptr = new BufferData(); + file.read ((char*)dataptr ,sizeof(BufferData)); + file.close(); + cout << dataptr->sync_frame.device_nr << endl; + cout << dataptr->sensor_data[127] << endl; + + return 0; +} diff --git a/Scripts_20180425/Scripts_20180425/init.c b/Scripts_20180425/Scripts_20180425/init.c new file mode 100644 index 0000000..49ed94a --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/init.c @@ -0,0 +1 @@ +#include "init.h" diff --git a/Scripts_20180425/Scripts_20180425/init.h b/Scripts_20180425/Scripts_20180425/init.h new file mode 100644 index 0000000..e69de29 diff --git a/Scripts_20180425/Scripts_20180425/jobs/runjob31.sh b/Scripts_20180425/Scripts_20180425/jobs/runjob31.sh new file mode 100644 index 0000000..f4e5195 --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/jobs/runjob31.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/GSL/1.10-a0511/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/fftw3/3.3.4-a8420/x86_64-slc6-gcc49-opt/lib/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/xrootd/4.2.3/x86_64-slc6-gcc49-opt/lib64/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/include:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20180425/convert_clean /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ run31 /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ethercat/with_timestamp/run31.csv diff --git a/Scripts_20180425/Scripts_20180425/jobs/runjob32.sh b/Scripts_20180425/Scripts_20180425/jobs/runjob32.sh new file mode 100644 index 0000000..4926e19 --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/jobs/runjob32.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/GSL/1.10-a0511/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/fftw3/3.3.4-a8420/x86_64-slc6-gcc49-opt/lib/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/xrootd/4.2.3/x86_64-slc6-gcc49-opt/lib64/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/include:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20180425/convert_clean /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ run32 /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ethercat/with_timestamp/run32.csv diff --git a/Scripts_20180425/Scripts_20180425/jobs/runjob33.sh b/Scripts_20180425/Scripts_20180425/jobs/runjob33.sh new file mode 100644 index 0000000..e481815 --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/jobs/runjob33.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/GSL/1.10-a0511/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/fftw3/3.3.4-a8420/x86_64-slc6-gcc49-opt/lib/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/xrootd/4.2.3/x86_64-slc6-gcc49-opt/lib64/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/include:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20180425/convert_clean /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ run33 /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ethercat/with_timestamp/run33.csv diff --git a/Scripts_20180425/Scripts_20180425/jobs/runjob34.sh b/Scripts_20180425/Scripts_20180425/jobs/runjob34.sh new file mode 100644 index 0000000..71720bf --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/jobs/runjob34.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/GSL/1.10-a0511/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/fftw3/3.3.4-a8420/x86_64-slc6-gcc49-opt/lib/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/xrootd/4.2.3/x86_64-slc6-gcc49-opt/lib64/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/include:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20180425/convert_clean /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ run34 /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ethercat/with_timestamp/run34.csv diff --git a/Scripts_20180425/Scripts_20180425/jobs/runjob35.sh b/Scripts_20180425/Scripts_20180425/jobs/runjob35.sh new file mode 100644 index 0000000..696b171 --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/jobs/runjob35.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/GSL/1.10-a0511/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/fftw3/3.3.4-a8420/x86_64-slc6-gcc49-opt/lib/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/xrootd/4.2.3/x86_64-slc6-gcc49-opt/lib64/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/include:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20180425/convert_clean /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ run35 /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ethercat/with_timestamp/run35.csv diff --git a/Scripts_20180425/Scripts_20180425/jobs/runjob36.sh b/Scripts_20180425/Scripts_20180425/jobs/runjob36.sh new file mode 100644 index 0000000..498c4c9 --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/jobs/runjob36.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/GSL/1.10-a0511/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/fftw3/3.3.4-a8420/x86_64-slc6-gcc49-opt/lib/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/xrootd/4.2.3/x86_64-slc6-gcc49-opt/lib64/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/include:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20180425/convert_clean /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ run36 /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ethercat/with_timestamp/run36.csv diff --git a/Scripts_20180425/Scripts_20180425/jobs/runjob37.sh b/Scripts_20180425/Scripts_20180425/jobs/runjob37.sh new file mode 100644 index 0000000..3a26d5b --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/jobs/runjob37.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/GSL/1.10-a0511/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/fftw3/3.3.4-a8420/x86_64-slc6-gcc49-opt/lib/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/xrootd/4.2.3/x86_64-slc6-gcc49-opt/lib64/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/include:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20180425/convert_clean /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ run37 /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ethercat/with_timestamp/run37.csv diff --git a/Scripts_20180425/Scripts_20180425/jobs/runjob38.sh b/Scripts_20180425/Scripts_20180425/jobs/runjob38.sh new file mode 100644 index 0000000..348998b --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/jobs/runjob38.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/GSL/1.10-a0511/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/fftw3/3.3.4-a8420/x86_64-slc6-gcc49-opt/lib/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/xrootd/4.2.3/x86_64-slc6-gcc49-opt/lib64/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/include:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20180425/convert_clean /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ run38 /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ethercat/with_timestamp/run38.csv diff --git a/Scripts_20180425/Scripts_20180425/jobs/runjob39.sh b/Scripts_20180425/Scripts_20180425/jobs/runjob39.sh new file mode 100644 index 0000000..592fc02 --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/jobs/runjob39.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/GSL/1.10-a0511/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/fftw3/3.3.4-a8420/x86_64-slc6-gcc49-opt/lib/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/xrootd/4.2.3/x86_64-slc6-gcc49-opt/lib64/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/include:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20180425/convert_clean /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ run39 /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ethercat/with_timestamp/run39.csv diff --git a/Scripts_20180425/Scripts_20180425/jobs/runjob40.sh b/Scripts_20180425/Scripts_20180425/jobs/runjob40.sh new file mode 100644 index 0000000..852afc3 --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/jobs/runjob40.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/GSL/1.10-a0511/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/fftw3/3.3.4-a8420/x86_64-slc6-gcc49-opt/lib/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/xrootd/4.2.3/x86_64-slc6-gcc49-opt/lib64/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/include:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20180425/convert_clean /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ run40 /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ethercat/with_timestamp/run40.csv diff --git a/Scripts_20180425/Scripts_20180425/jobs/runjob41.sh b/Scripts_20180425/Scripts_20180425/jobs/runjob41.sh new file mode 100644 index 0000000..9cf84ec --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/jobs/runjob41.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/GSL/1.10-a0511/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/fftw3/3.3.4-a8420/x86_64-slc6-gcc49-opt/lib/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/xrootd/4.2.3/x86_64-slc6-gcc49-opt/lib64/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/include:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20180425/convert_clean /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ run41 /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ethercat/with_timestamp/run41.csv diff --git a/Scripts_20180425/Scripts_20180425/jobs/runjob42.sh b/Scripts_20180425/Scripts_20180425/jobs/runjob42.sh new file mode 100644 index 0000000..37d9fc3 --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/jobs/runjob42.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/GSL/1.10-a0511/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/fftw3/3.3.4-a8420/x86_64-slc6-gcc49-opt/lib/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/xrootd/4.2.3/x86_64-slc6-gcc49-opt/lib64/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/include:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20180425/convert_clean /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ run42 /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ethercat/with_timestamp/run42.csv diff --git a/Scripts_20180425/Scripts_20180425/jobs/runjob43.sh b/Scripts_20180425/Scripts_20180425/jobs/runjob43.sh new file mode 100644 index 0000000..9c9e993 --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/jobs/runjob43.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/GSL/1.10-a0511/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/fftw3/3.3.4-a8420/x86_64-slc6-gcc49-opt/lib/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/xrootd/4.2.3/x86_64-slc6-gcc49-opt/lib64/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/include:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20180425/convert_clean /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ run43 /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ethercat/with_timestamp/run43.csv diff --git a/Scripts_20180425/Scripts_20180425/jobs/runjob44.sh b/Scripts_20180425/Scripts_20180425/jobs/runjob44.sh new file mode 100644 index 0000000..f23a7bb --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/jobs/runjob44.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/GSL/1.10-a0511/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/fftw3/3.3.4-a8420/x86_64-slc6-gcc49-opt/lib/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/xrootd/4.2.3/x86_64-slc6-gcc49-opt/lib64/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/include:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20180425/convert_clean /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ run44 /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ethercat/with_timestamp/run44.csv diff --git a/Scripts_20180425/Scripts_20180425/jobs/runjob45.sh b/Scripts_20180425/Scripts_20180425/jobs/runjob45.sh new file mode 100644 index 0000000..2706933 --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/jobs/runjob45.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/GSL/1.10-a0511/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/fftw3/3.3.4-a8420/x86_64-slc6-gcc49-opt/lib/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/xrootd/4.2.3/x86_64-slc6-gcc49-opt/lib64/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/include:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20180425/convert_clean /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ run45 /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ethercat/with_timestamp/run45.csv diff --git a/Scripts_20180425/Scripts_20180425/jobs/runjob46.sh b/Scripts_20180425/Scripts_20180425/jobs/runjob46.sh new file mode 100644 index 0000000..c62c81e --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/jobs/runjob46.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/GSL/1.10-a0511/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/fftw3/3.3.4-a8420/x86_64-slc6-gcc49-opt/lib/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/xrootd/4.2.3/x86_64-slc6-gcc49-opt/lib64/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/include:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20180425/convert_clean /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ run46 /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ethercat/with_timestamp/run46.csv diff --git a/Scripts_20180425/Scripts_20180425/jobs/runjob47.sh b/Scripts_20180425/Scripts_20180425/jobs/runjob47.sh new file mode 100644 index 0000000..dadc34a --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/jobs/runjob47.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/GSL/1.10-a0511/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/fftw3/3.3.4-a8420/x86_64-slc6-gcc49-opt/lib/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/xrootd/4.2.3/x86_64-slc6-gcc49-opt/lib64/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/include:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20180425/convert_clean /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ run47 /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ethercat/with_timestamp/run47.csv diff --git a/Scripts_20180425/Scripts_20180425/jobs/runjob48.sh b/Scripts_20180425/Scripts_20180425/jobs/runjob48.sh new file mode 100644 index 0000000..b2a8e5c --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/jobs/runjob48.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/GSL/1.10-a0511/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/fftw3/3.3.4-a8420/x86_64-slc6-gcc49-opt/lib/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/xrootd/4.2.3/x86_64-slc6-gcc49-opt/lib64/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/include:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20180425/convert_clean /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ run48 /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ethercat/with_timestamp/run48.csv diff --git a/Scripts_20180425/Scripts_20180425/jobs/runjob49.sh b/Scripts_20180425/Scripts_20180425/jobs/runjob49.sh new file mode 100644 index 0000000..b189ec3 --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/jobs/runjob49.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/GSL/1.10-a0511/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/fftw3/3.3.4-a8420/x86_64-slc6-gcc49-opt/lib/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/xrootd/4.2.3/x86_64-slc6-gcc49-opt/lib64/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/include:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20180425/convert_clean /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ run49 /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ethercat/with_timestamp/run49.csv diff --git a/Scripts_20180425/Scripts_20180425/jobs/runjob50.sh b/Scripts_20180425/Scripts_20180425/jobs/runjob50.sh new file mode 100644 index 0000000..489325d --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/jobs/runjob50.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/GSL/1.10-a0511/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/fftw3/3.3.4-a8420/x86_64-slc6-gcc49-opt/lib/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/xrootd/4.2.3/x86_64-slc6-gcc49-opt/lib64/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/include:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20180425/convert_clean /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ run50 /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ethercat/with_timestamp/run50.csv diff --git a/Scripts_20180425/Scripts_20180425/jobs/runjob51.sh b/Scripts_20180425/Scripts_20180425/jobs/runjob51.sh new file mode 100644 index 0000000..3a35bc6 --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/jobs/runjob51.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/GSL/1.10-a0511/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/fftw3/3.3.4-a8420/x86_64-slc6-gcc49-opt/lib/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/xrootd/4.2.3/x86_64-slc6-gcc49-opt/lib64/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/include:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20180425/convert_clean /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ run51 /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ethercat/with_timestamp/run51.csv diff --git a/Scripts_20180425/Scripts_20180425/jobs/runjob52.sh b/Scripts_20180425/Scripts_20180425/jobs/runjob52.sh new file mode 100644 index 0000000..1b35f40 --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/jobs/runjob52.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/GSL/1.10-a0511/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/fftw3/3.3.4-a8420/x86_64-slc6-gcc49-opt/lib/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/xrootd/4.2.3/x86_64-slc6-gcc49-opt/lib64/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/include:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20180425/convert_clean /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ run52 /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ethercat/with_timestamp/run52.csv diff --git a/Scripts_20180425/Scripts_20180425/jobs/runjob53.sh b/Scripts_20180425/Scripts_20180425/jobs/runjob53.sh new file mode 100644 index 0000000..2b6b052 --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/jobs/runjob53.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/GSL/1.10-a0511/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/fftw3/3.3.4-a8420/x86_64-slc6-gcc49-opt/lib/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/xrootd/4.2.3/x86_64-slc6-gcc49-opt/lib64/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/include:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20180425/convert_clean /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ run53 /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ethercat/with_timestamp/run53.csv diff --git a/Scripts_20180425/Scripts_20180425/jobs/runjob54.sh b/Scripts_20180425/Scripts_20180425/jobs/runjob54.sh new file mode 100644 index 0000000..1cee4ab --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/jobs/runjob54.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/GSL/1.10-a0511/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/fftw3/3.3.4-a8420/x86_64-slc6-gcc49-opt/lib/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/xrootd/4.2.3/x86_64-slc6-gcc49-opt/lib64/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/include:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20180425/convert_clean /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ run54 /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ethercat/with_timestamp/run54.csv diff --git a/Scripts_20180425/Scripts_20180425/jobs/runjob55.sh b/Scripts_20180425/Scripts_20180425/jobs/runjob55.sh new file mode 100644 index 0000000..89160d7 --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/jobs/runjob55.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/GSL/1.10-a0511/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/fftw3/3.3.4-a8420/x86_64-slc6-gcc49-opt/lib/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/xrootd/4.2.3/x86_64-slc6-gcc49-opt/lib64/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/include:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20180425/convert_clean /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ run55 /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ethercat/with_timestamp/run55.csv diff --git a/Scripts_20180425/Scripts_20180425/jobs/runjob56.sh b/Scripts_20180425/Scripts_20180425/jobs/runjob56.sh new file mode 100644 index 0000000..bf89c9c --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/jobs/runjob56.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/GSL/1.10-a0511/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/fftw3/3.3.4-a8420/x86_64-slc6-gcc49-opt/lib/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/xrootd/4.2.3/x86_64-slc6-gcc49-opt/lib64/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/include:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20180425/convert_clean /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ run56 /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ethercat/with_timestamp/run56.csv diff --git a/Scripts_20180425/Scripts_20180425/jobs/runjob57.sh b/Scripts_20180425/Scripts_20180425/jobs/runjob57.sh new file mode 100644 index 0000000..1261bbc --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/jobs/runjob57.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/GSL/1.10-a0511/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/fftw3/3.3.4-a8420/x86_64-slc6-gcc49-opt/lib/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/xrootd/4.2.3/x86_64-slc6-gcc49-opt/lib64/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/include:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20180425/convert_clean /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ run57 /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ethercat/with_timestamp/run57.csv diff --git a/Scripts_20180425/Scripts_20180425/jobs/runjob58.sh b/Scripts_20180425/Scripts_20180425/jobs/runjob58.sh new file mode 100644 index 0000000..8e59ff2 --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/jobs/runjob58.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/GSL/1.10-a0511/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/fftw3/3.3.4-a8420/x86_64-slc6-gcc49-opt/lib/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/xrootd/4.2.3/x86_64-slc6-gcc49-opt/lib64/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/include:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20180425/convert_clean /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ run58 /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ethercat/with_timestamp/run58.csv diff --git a/Scripts_20180425/Scripts_20180425/jobs/runjob59.sh b/Scripts_20180425/Scripts_20180425/jobs/runjob59.sh new file mode 100644 index 0000000..91fc62e --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/jobs/runjob59.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/GSL/1.10-a0511/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/fftw3/3.3.4-a8420/x86_64-slc6-gcc49-opt/lib/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/xrootd/4.2.3/x86_64-slc6-gcc49-opt/lib64/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/include:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20180425/convert_clean /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ run59 /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ethercat/with_timestamp/run59.csv diff --git a/Scripts_20180425/Scripts_20180425/jobs/runjob60.sh b/Scripts_20180425/Scripts_20180425/jobs/runjob60.sh new file mode 100644 index 0000000..42b9c9a --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/jobs/runjob60.sh @@ -0,0 +1,7 @@ +#!/bin/bash +. /local/env.sh +. /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh +source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh +export LD_LIBRARY_PATH=/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/lib64:/home/lhcb/leverington/Programs/gossip/GosSiP_V1.11:/cvmfs/lhcb.cern.ch/lib/lhcb/COMPAT/COMPAT_v1r19/CompatSys/x86_64-slc6-gcc49-opt/lib::/work/leverington/gsl-2.4/lib:.:/lib:/lib64:/usr/lib64:/work/leverington/gsl-2.4/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/GSL/1.10-a0511/x86_64-slc6-gcc49-opt/lib:/cvmfs/lhcb.cern.ch/lib/lcg/releases/fftw3/3.3.4-a8420/x86_64-slc6-gcc49-opt/lib/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/xrootd/4.2.3/x86_64-slc6-gcc49-opt/lib64/:/cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/include:/work/leverington/gsl-2.4/lib +/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20180425/convert_clean /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ run60 /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ethercat/with_timestamp/run60.csv diff --git a/Scripts_20180425/Scripts_20180425/langaus.C b/Scripts_20180425/Scripts_20180425/langaus.C new file mode 100644 index 0000000..f5e016c --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/langaus.C @@ -0,0 +1,345 @@ + /// \ingroup tutorial_fit + /// \notebook + /// Convoluted Landau and Gaussian Fitting Function + /// (using ROOT's Landau and Gauss functions) + /// + /// Based on a Fortran code by R.Fruehwirth (fruhwirth@hephy.oeaw.ac.at) + /// + /// to execute this example, do: + /// + /// ~~~{.cpp} + /// root > .x langaus.C + /// ~~~ + /// + /// or + /// + /// ~~~{.cpp} + /// root > .x langaus.C++ + /// ~~~ + /// + /// \macro_image + /// \macro_output + /// \macro_code + /// + /// \authors H.Pernegger, Markus Friedl + + #include "TH1.h" + #include "TF1.h" + #include "TROOT.h" + #include "TStyle.h" + #include "TMath.h" + + Double_t langaufun(Double_t *x, Double_t *par) { + + //Fit parameters: + //par[0]=Width (scale) parameter of Landau density + //par[1]=Most Probable (MP, location) parameter of Landau density + //par[2]=Total area (integral -inf to inf, normalization constant) + //par[3]=Width (sigma) of convoluted Gaussian function + // + //In the Landau distribution (represented by the CERNLIB approximation), + //the maximum is located at x=-0.22278298 with the location parameter=0. + //This shift is corrected within this function, so that the actual + //maximum is identical to the MP parameter. + + // Numeric constants + Double_t invsq2pi = 0.3989422804014; // (2 pi)^(-1/2) + Double_t mpshift = -0.22278298; // Landau maximum location + + // Control constants + Double_t np = 100.0; // number of convolution steps + Double_t sc = 5.0; // convolution extends to +-sc Gaussian sigmas + + // Variables + Double_t xx; + Double_t mpc; + Double_t fland; + Double_t sum = 0.0; + Double_t xlow,xupp; + Double_t step; + Double_t i; + + + // MP shift correction + mpc = par[1] - mpshift * par[0]; + + // Range of convolution integral + xlow = x[0] - sc * par[3]; + xupp = x[0] + sc * par[3]; + + step = (xupp-xlow) / np; + + // Convolution integral of Landau and Gaussian by sum + for(i=1.0; i<=np/2; i++) { + xx = xlow + (i-.5) * step; + fland = TMath::Landau(xx,mpc,par[0]) / par[0]; + sum += fland * TMath::Gaus(x[0],xx,par[3]); + + xx = xupp - (i-.5) * step; + fland = TMath::Landau(xx,mpc,par[0]) / par[0]; + sum += fland * TMath::Gaus(x[0],xx,par[3]); + } + + return (par[2] * step * sum * invsq2pi / par[3]); + } + + + + TF1 *langaufit(TH1D *his, Double_t *fitrange, Double_t *startvalues, Double_t *parlimitslo, Double_t *parlimitshi, Double_t *fitparams, Double_t *fiterrors, Double_t *ChiSqr, Int_t *NDF) + { + // Once again, here are the Landau * Gaussian parameters: + // par[0]=Width (scale) parameter of Landau density + // par[1]=Most Probable (MP, location) parameter of Landau density + // par[2]=Total area (integral -inf to inf, normalization constant) + // par[3]=Width (sigma) of convoluted Gaussian function + // + // Variables for langaufit call: + // his histogram to fit + // fitrange[2] lo and hi boundaries of fit range + // startvalues[4] reasonable start values for the fit + // parlimitslo[4] lower parameter limits + // parlimitshi[4] upper parameter limits + // fitparams[4] returns the final fit parameters + // fiterrors[4] returns the final fit errors + // ChiSqr returns the chi square + // NDF returns ndf + + Int_t i; + Char_t FunName[100]; + + sprintf(FunName,"Fitfcn_%s",his->GetName()); + + TF1 *ffitold = (TF1*)gROOT->GetListOfFunctions()->FindObject(FunName); + if (ffitold) delete ffitold; + + TF1 *ffit = new TF1(FunName,langaufun,fitrange[0],fitrange[1],4); + ffit->SetParameters(startvalues); + ffit->SetParNames("Width","MP","Area","GSigma"); + + for (i=0; i<4; i++) { + ffit->SetParLimits(i, parlimitslo[i], parlimitshi[i]); + } + + his->Fit(FunName,"RB0"); // fit within specified range, use ParLimits, do not plot + + ffit->GetParameters(fitparams); // obtain fit parameters + for (i=0; i<4; i++) { + fiterrors[i] = ffit->GetParError(i); // obtain fit parameter errors + } + ChiSqr[0] = ffit->GetChisquare(); // obtain chi^2 + NDF[0] = ffit->GetNDF(); // obtain ndf + + return (ffit); // return fit function + + } + + + Int_t langaupro(Double_t *params, Double_t &maxx, Double_t &FWHM) { + + // Seaches for the location (x value) at the maximum of the + // Landau-Gaussian convolute and its full width at half-maximum. + // + // The search is probably not very efficient, but it's a first try. + + Double_t p,x,fy,fxr,fxl; + Double_t step; + Double_t l,lold; + Int_t i = 0; + Int_t MAXCALLS = 10000; + + + // Search for maximum + + p = params[1] - 0.1 * params[0]; + step = 0.05 * params[0]; + lold = -2.0; + l = -1.0; + + + while ( (l != lold) && (i < MAXCALLS) ) { + i++; + + lold = l; + x = p + step; + l = langaufun(&x,params); + + if (l < lold) + step = -step/10; + + p += step; + } + + if (i == MAXCALLS) + return (-1); + + maxx = x; + + fy = l/2; + + + // Search for right x location of fy + + p = maxx + params[0]; + step = params[0]; + lold = -2.0; + l = -1e300; + i = 0; + + + while ( (l != lold) && (i < MAXCALLS) ) { + i++; + + lold = l; + x = p + step; + l = TMath::Abs(langaufun(&x,params) - fy); + + if (l > lold) + step = -step/10; + + p += step; + } + + if (i == MAXCALLS) + return (-2); + + fxr = x; + + + // Search for left x location of fy + + p = maxx - 0.5 * params[0]; + step = -params[0]; + lold = -2.0; + l = -1e300; + i = 0; + + while ( (l != lold) && (i < MAXCALLS) ) { + i++; + + lold = l; + x = p + step; + l = TMath::Abs(langaufun(&x,params) - fy); + + if (l > lold) + step = -step/10; + + p += step; + } + + if (i == MAXCALLS) + return (-3); + + + fxl = x; + + FWHM = fxr - fxl; + return (0); + } + +void langaus(string rootfilename, int ionsort) { + // Fill Histogram + /* Int_t data[100] = {10,20,50,3,10,5,2,6,11,18,18,55,90,141,255,323,454,563,681, + 737,821,796,832,720,637,558,519,460,357,291,279,241,212, + 153,164,139,106,95,91,76,80,80,59,58,51,30,49,23,35,28,23, + 22,27,27,24,20,16,17,14,20,12,12,13,10,17,7,6,12,6,12,4, + 9,9,10,3,4,5,2,4,1,5,5,1,7,1,6,3,3,3,4,5,4,4,2,2,7,2,4}; + TH1F *hSNR = new TH1F("snr","Signal-to-noise",400,0,400); + */ + // for (Int_t i=0; i<100; i++) hSNR->Fill(i,data[i]); + TFile *rootFile = new TFile(rootfilename.c_str(),"OPEN"); + TFile *outFile = new TFile("langausout.root","RECREATE"); + TH1D * hSNR; + + TH1D* h_beamSignal_b0[30]; + TH1D* h_beamSignal_b1[30]; + TH1D* h_beamSignal_b2[30]; + TH1D* h_beamSignal_b3[30]; + int energy_indexbin = 0; + char histname[30] = ""; + TH1D* h_beamSignal_ic1[30]; + + + Double_t graph_x[30], graph_y[30], graph_xerr[30], graph_yerr[30]; + TGraphErrors * graph_1; + Double_t beta_proton[30] = {0.308525262, 0.340993523, 0.366173485, 0.386743776, 0.404197708, 0.4194131, 0.43294541, 0.445179695, 0.456345494, 0.466616582, 0.476154213, 0.48502264, 0.493348242, 0.501186212, 0.50863865, 0.515744144, 0.522562549, 0.52911069, 0.535379917, 0.541397728, 0.549575745, 0.557428612, 0.564849395, 0.571867977, 0.578541117, 0.584900169}; + Double_t beta_helium[30] = {0.316661966, 0.34727202, 0.371222186, 0.391037227, 0.408018455, 0.422922098, 0.436235455, 0.44827542, 0.459299095, 0.469441244, 0.478845524, 0.487649369, 0.495886825, 0.503656244, 0.510990953, 0.517959457, 0.52457247, 0.530888884, 0.536925849, 0.54269899, 0.550671248, 0.55845178, 0.565814653, 0.572798702, 0.579448698, 0.585785313}; + Double_t beta_carbon[30] = {0.407931067, 0.448122448, 0.479020432, 0.504000457, 0.524971648, 0.543076553, 0.559041917, 0.573329576, 0.586254563, 0.598061846, 0.608917559, 0.618952311, 0.62829287, 0.637039726, 0.645286945, 0.65311609, 0.660570813, 0.667689852, 0.67446932, 0.680943928, 0.689677353, 0.698000799, 0.70580765, 0.71315081, 0.720086739, 0.726650602}; + Double_t beta_oxygen[30] = {0.43638582, 0.479000679, 0.51134888, 0.537325331, 0.559061572, 0.57764689, 0.594123989, 0.608730698, 0.621997639, 0.63402408, 0.645050809, 0.655226738, 0.664724227, 0.673475951, 0.681810969, 0.689681788, 0.697243281, 0.704219104, 0.710968918, 0.717442538, 0.726111033, 0.734356548, 0.742073831, 0.749383281, 0.756156282, 0.762562424}; + + for (int i = 0;i<23;i++){ + + if (ionsort ==3 ) graph_x[i] = beta_proton[i]; + if (ionsort ==1 ) graph_x[i] = beta_helium[i]; + if (ionsort ==4 ) graph_x[i] = beta_carbon[i]; + if (ionsort ==2 ) graph_x[i] = beta_oxygen[i]; + + sprintf(histname,"h_beamSignal_b0_%d",i); + h_beamSignal_b0[i] = (TH1D*)rootFile->Get(histname); + sprintf(histname,"h_beamSignal_b1_%d",i); + h_beamSignal_b1[i] = (TH1D*)rootFile->Get(histname); + sprintf(histname,"h_beamSignal_b2_%d",i); + h_beamSignal_b2[i] = (TH1D*)rootFile->Get(histname); + sprintf(histname,"h_beamSignal_b3_%d",i); + h_beamSignal_b3[i] = (TH1D*)rootFile->Get(histname); + sprintf(histname,"h_beamSignal_ic1_%d",i); + h_beamSignal_ic1[i] = (TH1D*)rootFile->Get(histname); + } + + // hSNR = h_beamSignal_b0[13]; + // Fitting SNR histo + printf("Fitting...\n"); + + // Setting fit range and start values + Double_t fr[2]; + Double_t sv[4], pllo[4], plhi[4], fp[4], fpe[4]; + Double_t chisqr; + Int_t ndf; + TF1 *fitsnr[24]; + Double_t SNRPeak, SNRFWHM; + TCanvas * c1 = new TCanvas("c1","c1", 800, 600); + Double_t norm = 1; + + for (int i = 0; i<23;i++){ + //hSNR = h_beamSignal_b0[i]; + h_beamSignal_ic1[i]->Scale(norm/h_beamSignal_ic1[i]->Integral("width")); + hSNR = h_beamSignal_ic1[i]; + fr[0]=hSNR->GetMean() - 3*hSNR->GetRMS(); + fr[1]=hSNR->GetMean() + 3*hSNR->GetRMS(); + + pllo[0]=0.0075; pllo[1]=1.0; pllo[2]=0.01; pllo[3]=0.07; + plhi[0]=1.0E3; plhi[1]=300.0; plhi[2]=2E2; plhi[3]=0.65; + sv[0]=20.2; + //sv[1]=2.1; + sv[2]=1.0; + sv[3]=hSNR->GetRMS(); + sv[1] = hSNR->GetMean(); + + fitsnr[i] = langaufit(hSNR,fr,sv,pllo,plhi,fp,fpe,&chisqr,&ndf); + + + langaupro(fp,SNRPeak,SNRFWHM); + graph_y[i] = fp[1]; + graph_yerr[i] = sqrt(fitsnr[i]->GetParError(1)*fitsnr[i]->GetParError(1)+0.012*0.012*graph_y[i]*graph_y[i]); + + printf("Fitting done\nPlotting results...\n"); + + // Global style settings + gStyle->SetOptStat(1111); + gStyle->SetOptFit(111); + //gStyle->SetLabelSize(0.03,"x"); + //gStyle->SetLabelSize(0.03,"y"); + + // hSNR->GetXaxis()->SetRange(0,70); + // hSNR->Draw(); + // fitsnr[i]->Draw("lsame"); + // c1->Update(); + // c1->WaitPrimitive(); + } + graph_1 = new TGraphErrors(23,graph_x, graph_y, 0, graph_yerr); + TCanvas * c2 = new TCanvas("c2","c2", 800, 600); + c2->cd(); + graph_1->Draw("A*"); + outFile->Write(); + outFile->Close(); + + } diff --git a/Scripts_20180425/Scripts_20180425/library.csv b/Scripts_20180425/Scripts_20180425/library.csv new file mode 100644 index 0000000..426900a --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/library.csv @@ -0,0 +1,9411 @@ +startptr endptr nr_samples start_timestamp end_timestamp mean_X mean_Y mean_IC1 run_id energy ionsort closest_offspill_id profile data_start_index data_end_index +263367 348100 84734 8569702.6972 8573940.2118 32.9798 -33.6606 249.9008 run1.mat -1 -1 1 150452 192821 +348350 359642 11293 8573952.5271 8574515.5514 32.9783 -33.6591 250.4115 run1.mat -1 -1 1 192946 198592 +427463 523737 96275 8577909.7079 8582720.517 32.9791 -33.6603 249.9742 run1.mat -1 -1 2 232504 280643 +591469 606831 15363 8586108.5858 8586877.1198 32.9826 -33.6615 250.6452 run1.mat -1 -1 3 314511 322192 +607173 687732 80560 8586894.3396 8590920.4448 32.9811 -16.8332 249.8333 run1.mat -1 -1 3 322363 362645 +755523 851790 96268 8594310.9263 8599123.8177 32.9795 -16.8319 250.0494 run1.mat -1 -1 4 396542 444677 +919581 950712 31132 8602514.6071 8604070.0674 32.9797 -16.832 249.9978 run1.mat -1 -1 5 478574 494140 +951055 1015857 64803 8604087.3591 8607327.2543 32.9818 -0.004888 249.8008 run1.mat -1 -1 5 494312 526714 +1083614 1179892 96279 8610717.0058 8615529.6052 32.9797 -0.0046071 249.9545 run1.mat -1 -1 6 560594 608735 +1247731 1294615 46885 8618921.8404 8621264.8384 32.981 -0.004886 250.1808 run1.mat -1 -1 7 642656 666099 +1294956 1343991 49036 8621281.9573 8623733.3379 32.9814 16.8237 249.7787 run1.mat -1 -1 7 666270 690788 +1411787 1497145 85359 8627125.029 8631392.9178 32.9802 16.8245 249.8525 run1.mat -1 -1 8 724688 767368 +1497395 1505265 7871 8631405.3235 8631799.7261 32.9809 16.8222 250.4819 run1.mat -1 -1 8 767493 771429 +1505515 1508056 2542 8631812.1318 8631938.2235 32.9842 16.8241 249.5073 run1.mat -1 -1 8 771554 772825 +1575995 1638656 62662 8635336.0854 8638467.2433 32.9807 16.8243 249.766 run1.mat -1 -1 9 806795 838127 +1639011 1672273 33263 8638484.8559 8640149.4648 32.9777 33.6532 249.8786 run1.mat -1 -1 9 838305 854937 +1739880 1836164 96285 8643531.7833 8648346.2391 32.98 33.6514 250.0547 run1.mat -1 -1 10 888741 936886 +1904091 1982516 78426 8651741.4184 8655662.7459 32.9795 33.6523 249.9397 run1.mat -1 -1 11 970850 1010065 +1982868 2000367 17500 8655680.3493 8656553.5249 16.4919 33.6511 249.7757 run1.mat -1 -1 11 1010241 1018991 +2070039 2166329 96291 8660036.9992 8664851.8341 16.4863 33.6527 250.0391 run1.mat -1 -1 12 1053828 1101976 +2234103 2328256 94154 8668241.5011 8672947.29 16.4883 33.6519 249.7199 run1.mat -1 -1 13 1135864 1182943 +2328607 2330364 1758 8672964.5774 8673052.4126 16.4852 16.8251 248.9646 run1.mat -1 -1 13 1183118 1183997 +2400179 2496427 96249 8676544.9935 8681357.8682 16.4876 16.8237 249.9685 run1.mat -1 -1 14 1218906 1267032 +2564292 2660529 96238 8684749.439 8689561.5524 16.4882 16.8234 249.9397 run1.mat -1 -1 15 1300966 1349086 +2728333 2741237 12905 8692952.9347 8693599.0561 16.4893 16.8246 250.8729 run1.mat -1 -1 16 1382990 1389442 +2741594 2824627 83034 8693616.9098 8697768.0449 16.4874 -0.0035462 249.8041 run1.mat -1 -1 16 1389620 1431139 +2892356 2988641 96286 8701154.5854 8705968.436 16.4881 -0.0046416 249.8927 run1.mat -1 -1 17 1465005 1513149 +3056447 3085079 28633 8709358.5571 8710790.6574 16.4888 -0.0043325 250.0142 run1.mat -1 -1 18 1547053 1561370 +3085437 3152721 67285 8710808.5648 8714171.7233 16.4883 -16.8319 249.8289 run1.mat -1 -1 18 1561549 1595193 +3220592 3316836 96245 8717565.9428 8722378.072 16.4866 -16.8315 249.7866 run1.mat -1 -1 19 1629130 1677254 +3384791 3429219 44429 8725774.7015 8727997.5406 16.4875 -16.8317 249.7933 run1.mat -1 -1 20 1711233 1733448 +3429568 3481079 51512 8728015.1349 8730592.8411 16.4891 -33.6605 249.8406 run1.mat -1 -1 20 1733623 1759379 +3548902 3645167 96266 8733983.8471 8738796.4113 16.4874 -33.6606 250.0821 run1.mat -1 -1 21 1793292 1841426 +3712937 3773100 60164 8742183.5419 8745192.5446 16.4881 -33.6604 250.14 run1.mat -1 -1 22 1875313 1905396 +3773455 3809205 35751 8745210.1572 8746996.476 -0.0042141 -33.6611 249.7951 run1.mat -1 -1 22 1905574 1923449 +3877143 3973427 96285 8750394.2683 8755209.6884 -0.0051307 -33.6603 249.9584 run1.mat -1 -1 23 1957420 2005564 +4041236 4117202 75967 8758598.2533 8762398.0609 -0.0047852 -33.6606 249.9745 run1.mat -1 -1 24 2039470 2077455 +4117555 4137517 19963 8762415.5743 8763412.3586 -0.0053033 -16.8314 249.7652 run1.mat -1 -1 24 2077631 2087613 +4205265 4301524 96260 8766799.3772 8771612.0516 -0.004643 -16.8322 249.9387 run1.mat -1 -1 25 2121488 2169619 +4369546 4461305 91760 8775015.9416 8779604.4799 -0.0046402 -16.8327 249.9123 run1.mat -1 -1 26 2203632 2249514 +4461642 4465818 4177 8779621.4692 8779830.7301 0.00091433 -0.0052533 249.0946 run1.mat -1 -1 26 2249682 2251770 +4533598 4629883 96286 8783216.8514 8788032.3963 -0.0051884 -0.0042374 249.8356 run1.mat -1 -1 27 2285662 2333806 +4697633 4793919 96287 8791419.4825 8796233.9831 -0.0034249 -0.0042661 249.8492 run1.mat -1 -1 28 2367682 2415827 +4861757 4872207 10451 8799626.9254 8800149.7848 -0.0027779 -0.0029059 250.734 run1.mat -1 -1 29 2449749 2454974 +4872563 4958019 85457 8800167.732 8804438.2336 -0.0032832 16.8232 249.8504 run1.mat -1 -1 29 2455152 2497882 +5025847 5122122 96276 8807831.4611 8812644.1986 -0.0046317 16.8238 249.988 run1.mat -1 -1 30 2531797 2579937 +5190068 5216247 26180 8816041.6074 8817351.7523 -0.0049735 16.8234 249.7238 run1.mat -1 -1 31 2613911 2627001 +5216599 5286364 69766 8817369.2161 8820855.0877 -0.0044691 33.652 249.7415 run1.mat -1 -1 31 2627177 2662061 +5354161 5450411 96251 8824245.5318 8829058.7575 -0.003384 33.6519 249.9662 run1.mat -1 -1 32 2695961 2744089 +5518189 5560089 41901 8832449.0661 8834542.6695 -0.0033401 33.6507 250.1267 run1.mat -1 -1 33 2777979 2798930 +5560438 5614028 53591 8834560.1262 8837241.3878 -16.4961 33.651 249.6438 run1.mat -1 -1 33 2799105 2825900 +5614279 5614479 201 8837253.9427 8837263.9465 -16.4965 33.6527 249.6324 run1.mat -1 -1 33 2826026 2826126 +5682410 5778691 96282 8840657.5724 8845475.8587 -16.4973 33.6524 249.9862 run1.mat -1 -1 34 2860093 2908236 +5846516 5904149 57634 8848864.5914 8851745.4616 -16.496 33.6519 249.7508 run1.mat -1 -1 35 2942150 2970967 +5904504 5942780 38277 8851763.215 8853679.4191 -16.4953 16.8229 249.7953 run1.mat -1 -1 35 2971145 2990284 +6010511 6106793 96283 8857065.4345 8861878.3856 -16.4949 16.8236 249.9249 run1.mat -1 -1 36 3024151 3072294 +6174783 6248190 73408 8865278.4609 8868950.4138 -16.4959 16.8235 249.9659 run1.mat -1 -1 37 3106290 3142995 +6248547 6271073 22527 8868968.4114 8870093.5645 -16.498 -0.0047037 250.0731 run1.mat -1 -1 37 3143174 3154437 +6338863 6435127 96265 8873483.6685 8878295.4279 -16.4972 -0.0039384 249.9265 run1.mat -1 -1 38 3188334 3236468 +6503072 6592253 89182 8881692.5582 8886151.3854 -16.4961 -0.0047277 249.9004 run1.mat -1 -1 39 3270442 3315035 +6592596 6599349 6754 8886168.6772 8886507.6842 -16.4986 -16.8314 249.941 run1.mat -1 -1 39 3315206 3318583 +6667129 6763416 96288 8889898.0901 8894711.6114 -16.4969 -16.8327 249.7327 run1.mat -1 -1 40 3352474 3400619 +6831166 6927445 96280 8898097.8881 8902912.9064 -16.4969 -16.8321 249.9543 run1.mat -1 -1 41 3434496 3482638 +6995381 7003173 7793 8906310.9266 8906699.3597 -16.4953 -16.8351 250.915 run1.mat -1 -1 42 3516607 3520504 +7003524 7091660 88137 8906716.9133 8911122.9563 -16.4971 -33.6605 249.8778 run1.mat -1 -1 42 3520679 3564749 +7159487 7255763 96277 8914516.0677 8919329.0798 -16.4965 -33.661 249.755 run1.mat -1 -1 43 3598664 3646804 +7323581 7347095 23515 8922719.6855 8923893.8245 -16.4962 -33.6605 249.9605 run1.mat -1 -1 44 3680715 3692472 +7347453 7419838 72386 8923911.732 8927533.501 -32.9883 -33.66 249.8554 run1.mat -1 -1 44 3692651 3728845 +7487576 7583869 96294 8930920.6894 8935735.4608 -32.9892 -33.6603 249.9183 run1.mat -1 -1 45 3762716 3810864 +7651652 7690917 39266 8939122.5646 8941087.2336 -32.9877 -33.6599 250.1218 run1.mat -1 -1 46 3844757 3864390 +7691274 7747933 56660 8941105.2348 8943937.3708 -32.9887 -16.8323 249.8252 run1.mat -1 -1 46 3864569 3892900 +7815899 7912199 96301 8947336.2143 8952150.9188 -32.989 -16.8321 249.9679 run1.mat -1 -1 47 3926884 3975036 +7979935 8034977 55043 8955538.9958 8958289.6269 -32.9898 -16.8319 250.063 run1.mat -1 -1 48 4008906 4036428 +8035320 8076206 40887 8958306.9221 8960350.95 -32.9882 -0.0044747 249.8204 run1.mat -1 -1 48 4036599 4057044 +8144246 8240499 96254 8963751.8773 8968566.8894 -32.9889 -0.0041916 249.9853 run1.mat -1 -1 49 4091065 4139194 +8308246 8379058 70813 8971953.1235 8975493.6189 -32.9892 -0.0036123 250.0865 run1.mat -1 -1 50 4173068 4208476 +8379415 8404528 25114 8975511.4726 8976767.4239 -32.9864 16.8235 249.9368 run1.mat -1 -1 50 4208655 4221212 +8472509 8568778 96270 8980167.2174 8984980.6859 -32.9887 16.8239 249.931 run1.mat -1 -1 51 4255204 4303340 +8636531 8723158 86628 8988368.0188 8992699.0469 -32.9887 16.8242 249.9256 run1.mat -1 -1 52 4337218 4380534 +8723512 8732811 9300 8992716.7504 8993181.7936 -32.9925 33.6527 250.0569 run1.mat -1 -1 52 4380711 4385360 +8800753 8897015 96263 8996580.0941 9001393.3319 -32.988 33.6521 249.944 run1.mat -1 -1 53 4419333 4467466 +8964880 9061077 96198 9004785.9301 9009594.9812 -32.9874 33.6509 249.8433 run1.mat -1 -1 54 4501400 4549501 +9128897 9133943 5047 9012986.7892 9013237.1467 -32.9917 33.6536 253.9543 run1.mat -1 -1 55 4583412 4585935 +292620 313019 20400 15038209.6964 15039228.2315 82.4663 -26.9224 92.7655 run10.mat -1 -1 57 161532 171732 +313326 334041 20716 15039243.7084 15040280.7482 80.8206 -26.9224 92.5606 run10.mat -1 -1 57 171885 182243 +334347 355039 20693 15040295.9297 15041330.7963 79.1653 -26.9235 92.5285 run10.mat -1 -1 57 182396 192742 +355346 376038 20693 15041346.3351 15042381.5062 77.5163 -26.9234 92.5435 run10.mat -1 -1 57 192896 203243 +376343 388412 12070 15042396.6411 15042997.8199 75.8668 -26.9219 92.7384 run10.mat -1 -1 57 203395 209430 +472563 480217 7655 15047207.4556 15047590.0663 75.8695 -26.9224 93.6457 run10.mat -1 -1 58 251507 255334 +480540 501238 20699 15047606.2196 15048639.3528 74.2196 -26.9226 92.5382 run10.mat -1 -1 58 255496 265845 +501547 522220 20674 15048654.8088 15049690.2436 72.5666 -26.924 92.561 run10.mat -1 -1 58 266000 276337 +522527 543218 20692 15049705.7205 15050739.1239 70.9183 -26.922 92.6206 run10.mat -1 -1 58 276490 286836 +543525 564197 20673 15050754.3581 15051786.4828 69.2665 -26.9216 92.594 run10.mat -1 -1 58 286989 297326 +564505 568352 3848 15051802.0101 15051995.9504 67.6158 -26.923 92.8367 run10.mat -1 -1 58 297480 299403 +652655 668516 15862 15056210.0048 15057004.6941 67.6175 -26.9214 93.0272 run10.mat -1 -1 59 341557 349488 +668848 689501 20654 15057021.2976 15058054.0401 65.9687 -26.9238 92.5852 run10.mat -1 -1 59 349654 359981 +689809 710498 20690 15058069.3239 15059103.8528 64.3176 -26.922 92.5877 run10.mat -1 -1 59 360135 370480 +710807 731501 20695 15059119.4336 15060154.9069 62.6699 -26.922 92.6716 run10.mat -1 -1 59 370634 380982 +731807 748432 16626 15060170.0885 15060999.468 61.0218 -26.9227 92.7792 run10.mat -1 -1 59 381135 389448 +832524 835580 3057 15065204.4211 15065358.5068 61.0186 -26.9238 94.6479 run10.mat -1 -1 60 431496 433024 +835917 856582 20666 15065375.4961 15066409.2205 59.3743 -26.9234 92.5341 run10.mat -1 -1 60 433192 443525 +856889 877582 20694 15066424.3408 15067457.7922 57.7283 -26.9238 92.6701 run10.mat -1 -1 60 443678 454025 +877888 898583 20696 15067472.9738 15068507.7029 56.0747 -26.9233 92.5487 run10.mat -1 -1 60 454178 464527 +898889 919563 20675 15068522.8845 15069557.6157 54.4308 -26.9223 92.7457 run10.mat -1 -1 60 464680 475017 +919868 928291 8424 15069572.7507 15069992.5343 52.7778 -26.9203 92.8172 run10.mat -1 -1 60 475170 479381 +1012418 1023801 11384 15074199.3199 15074769.8617 52.778 -26.9219 93.3095 run10.mat -1 -1 61 521446 527138 +1024123 1044802 20680 15074786.0948 15075818.1349 51.1282 -26.9243 92.4816 run10.mat -1 -1 61 527299 537639 +1045113 1065803 20691 15075833.6263 15076868.3612 49.4795 -26.9222 92.5559 run10.mat -1 -1 61 537794 548140 +1066108 1086797 20690 15076883.7372 15077918.3197 47.8299 -26.9228 92.6353 run10.mat -1 -1 61 548293 558637 +1087106 1107761 20656 15077933.7757 15078968.0399 46.1805 -26.9222 92.6662 run10.mat -1 -1 61 558792 569120 +1108067 1108311 245 15078983.2215 15078995.327 44.5186 -26.9318 90.9352 run10.mat -1 -1 61 569273 569395 +1192591 1212058 19468 15083210.313 15084181.715 44.5272 -26.9221 92.8225 run10.mat -1 -1 62 611537 621271 +1212388 1233059 20672 15084198.0873 15085231.6257 42.8791 -26.922 92.6051 run10.mat -1 -1 62 621436 631772 +1233369 1254045 20677 15085247.0058 15086280.7243 41.2266 -26.9232 92.6197 run10.mat -1 -1 62 631927 642265 +1254358 1262757 8400 15086296.5037 15086716.3662 39.5788 -26.9232 92.7382 run10.mat -1 -1 62 642421 646621 +1263575 1263637 63 15086757.9682 15086761.1214 127.9375 127.9375 0 run10.mat -1 -1 62 647030 647061 +1263975 1264097 123 15086778.3115 15086784.5162 127.9375 127.9375 0 run10.mat -1 -1 62 647230 647291 +1264635 1264997 363 15086811.8779 15086830.2886 127.9375 127.9375 0.060524 run10.mat -1 -1 62 647560 647741 +1265575 1266437 863 15086859.6847 15086903.5245 127.9375 127.9375 0.16599 run10.mat -1 -1 62 648030 648461 +1504449 1516102 11654 15098803.3257 15099384.4552 39.5807 -26.9223 93.3207 run10.mat -1 -1 63 767473 773299 +1516443 1537104 20662 15099401.3733 15100436.4493 37.9343 -26.9239 92.5207 run10.mat -1 -1 63 773470 783801 +1537411 1558108 20698 15100451.7555 15101483.9165 36.2831 -26.9231 92.6487 run10.mat -1 -1 63 783955 794303 +1558415 1579107 20693 15101499.2724 15102534.7044 34.6355 -26.9224 92.5709 run10.mat -1 -1 63 794457 804803 +1579413 1600068 20656 15102550.1309 15103582.703 32.9807 -26.9244 92.7004 run10.mat -1 -1 63 804956 815284 +1684236 1704243 20008 15107792.9564 15108791.877 31.3383 -26.9232 92.9684 run10.mat -1 -1 64 857370 867374 +1704573 1725226 20654 15108808.5134 15109840.9342 29.6858 -26.923 92.5004 run10.mat -1 -1 64 867539 877866 +1725534 1746225 20692 15109856.3401 15110892.0853 28.0378 -26.9223 92.6268 run10.mat -1 -1 64 878020 888366 +1746533 1767225 20693 15110907.3661 15111940.8163 26.3835 -26.9233 92.6142 run10.mat -1 -1 64 888520 898867 +1767532 1780109 12578 15111956.2932 15112583.7314 24.7408 -26.9227 92.7509 run10.mat -1 -1 64 899020 905308 +1864210 1871444 7235 15116789.1039 15117152.8295 24.7369 -26.9195 93.5011 run10.mat -1 -1 65 947361 950978 +1871766 1892442 20677 15117168.6886 15118202.2215 23.0877 -26.9227 92.5048 run10.mat -1 -1 65 951139 961477 +1892752 1913448 20697 15118217.8528 15119251.7716 21.4346 -26.9217 92.612 run10.mat -1 -1 65 961632 971981 +1913756 1934424 20669 15119267.0524 15120298.7991 19.7851 -26.9221 92.6112 run10.mat -1 -1 65 972135 982469 +1934731 1955408 20678 15120314.3951 15121349.5878 18.1371 -26.9225 92.6892 run10.mat -1 -1 65 982623 992962 +1955714 1959990 4277 15121365.0143 15121579.8424 16.4877 -26.9238 92.8297 run10.mat -1 -1 65 993115 995253 +2044296 2059784 15489 15125794.8772 15126569.2094 16.4883 -26.9228 93.0168 run10.mat -1 -1 66 1037408 1045152 +2060102 2080768 20667 15126584.9863 15127617.7678 14.8428 -26.9249 92.6086 run10.mat -1 -1 66 1045311 1055645 +2081074 2101767 20694 15127633.0742 15128669.9702 13.1891 -26.9223 92.5625 run10.mat -1 -1 66 1055798 1066145 +2102073 2122759 20687 15128685.2731 15129718.6019 11.5432 -26.9239 92.6057 run10.mat -1 -1 66 1066298 1076641 +2123072 2140090 17019 15129734.1308 15130584.5312 9.8929 -26.9233 92.743 run10.mat -1 -1 66 1076798 1085307 +2224173 2227002 2830 15134787.8719 15134929.541 9.8946 -26.9222 95.8197 run10.mat -1 -1 67 1127351 1128765 +2227308 2247987 20680 15134945.1036 15135978.8574 8.2456 -26.9227 92.6165 run10.mat -1 -1 67 1128918 1139258 +2248295 2268989 20695 15135994.3848 15137028.7744 6.5934 -26.9224 92.5929 run10.mat -1 -1 67 1139412 1149760 +2269295 2289989 20695 15137043.9559 15138081.4078 4.9457 -26.9218 92.5971 run10.mat -1 -1 67 1149913 1160260 +2290295 2310949 20655 15138096.7726 15139127.7725 3.2972 -26.9231 92.6218 run10.mat -1 -1 67 1160413 1170741 +2311266 2319968 8703 15139143.7554 15139579.3497 1.6491 -26.9214 92.8312 run10.mat -1 -1 67 1170899 1175250 +2404060 2415065 11006 15143783.7856 15144333.3683 1.6516 -26.9226 93.3117 run10.mat -1 -1 68 1217298 1222800 +2415385 2436068 20684 15144349.2445 15145382.394 0.00083778 -26.9233 92.5945 run10.mat -1 -1 68 1222960 1233302 +2436374 2457066 20693 15145397.6999 15146434.3445 -1.6476 -26.9231 92.6547 run10.mat -1 -1 68 1233455 1243802 +2457374 2478047 20674 15146449.6253 15147482.3779 -3.2948 -26.9232 92.5761 run10.mat -1 -1 68 1243956 1254293 +2478354 2499028 20675 15147497.8548 15148532.206 -4.9469 -26.9224 92.7383 run10.mat -1 -1 68 1254447 1264784 +2499334 2499848 515 15148547.3906 15148572.8968 -6.5734 -26.9252 92.8991 run10.mat -1 -1 68 1264937 1265194 +2585987 2605343 19357 15152879.2809 15153847.9819 -6.5988 -26.9226 93.3004 run10.mat -1 -1 69 1308265 1317930 +2605670 2626364 20695 15153864.2054 15154900.3756 -8.2468 -26.9233 92.6486 run10.mat -1 -1 69 1318107 1328454 +2626672 2647324 20653 15154915.906 15155946.9492 -9.8997 -26.9234 92.5685 run10.mat -1 -1 69 1328608 1338935 +2647635 2668327 20693 15155962.3955 15156996.8044 -11.5461 -26.922 92.7092 run10.mat -1 -1 69 1339091 1349437 +2668633 2681769 13137 15157012.2278 15157670.4396 -13.1974 -26.9219 92.8152 run10.mat -1 -1 69 1349590 1356158 +2765858 2772425 6568 15161874.167 15162200.6728 -13.1967 -26.9199 93.7538 run10.mat -1 -1 70 1398204 1401488 +2772730 2793449 20720 15162215.8996 15163252.1088 -14.8454 -26.9217 92.5543 run10.mat -1 -1 70 1401641 1412001 +2793755 2814441 20687 15163267.412 15164302.7606 -16.4957 -26.9221 92.5885 run10.mat -1 -1 70 1412154 1422497 +2814751 2835427 20677 15164318.3888 15165353.3616 -18.1433 -26.9231 92.6334 run10.mat -1 -1 70 1422652 1432991 +2835733 2856387 20655 15165368.5432 15166402.3692 -19.7883 -26.9235 92.6705 run10.mat -1 -1 70 1433144 1443471 +2856697 2861649 4953 15166417.9974 15166662.8829 -21.4408 -26.9248 92.8779 run10.mat -1 -1 70 1443626 1446102 +2945705 2960525 14821 15170865.9219 15171606.8276 -21.4357 -26.9232 93.0822 run10.mat -1 -1 71 1488132 1495543 +2960845 2981547 20703 15171622.9599 15172657.3803 -23.0892 -26.9213 92.5572 run10.mat -1 -1 71 1495703 1506054 +2981855 3002527 20673 15172672.7835 15173707.001 -24.7395 -26.9228 92.529 run10.mat -1 -1 71 1506208 1516545 +3002835 3023510 20676 15173722.2818 15174758.0985 -26.3857 -26.9216 92.5638 run10.mat -1 -1 71 1516699 1527036 +3023818 3041527 17710 15174773.411 15175656.4162 -28.0338 -26.9233 92.7175 run10.mat -1 -1 71 1527190 1536045 +3125642 3127728 2087 15179864.3931 15179967.8859 -28.0331 -26.9171 96.1066 run10.mat -1 -1 72 1578105 1579148 +3128035 3148727 20693 15179983.1171 15181015.5858 -29.6867 -26.9218 92.561 run10.mat -1 -1 72 1579301 1589648 +3149037 3169728 20692 15181030.9659 15182067.8052 -31.3361 -26.9238 92.568 run10.mat -1 -1 72 1589803 1600149 +3170035 3190729 20695 15182083.1584 15183116.116 -32.9844 -26.9224 92.6124 run10.mat -1 -1 72 1600302 1610650 +3191035 3211709 20675 15183131.4189 15184166.9308 -34.6311 -26.9228 92.6159 run10.mat -1 -1 72 1610803 1621140 +3212014 3221387 9374 15184182.3746 15184651.312 -36.2912 -26.9205 92.8255 run10.mat -1 -1 72 1621292 1625979 +3305630 3315966 10337 15188862.1266 15189380.5666 -36.2849 -26.9244 93.0356 run10.mat -1 -1 73 1668103 1673271 +3316291 3336971 20681 15189396.8198 15190429.0741 -37.9378 -26.9223 92.4727 run10.mat -1 -1 73 1673433 1683774 +3337278 3357967 20690 15190444.427 15191479.8563 -39.582 -26.9234 92.6847 run10.mat -1 -1 73 1683927 1694272 +3358275 3378946 20672 15191495.1371 15192529.4426 -41.2353 -26.9217 92.581 run10.mat -1 -1 73 1694426 1704762 +3379257 3399923 20667 15192544.9958 15193576.5628 -42.8828 -26.9219 92.7623 run10.mat -1 -1 73 1704918 1715251 +3400234 3401407 1174 15193592.2414 15193651.3763 -44.5318 -26.9233 92.1755 run10.mat -1 -1 73 1715407 1715993 +3485439 3504087 18649 15197853.6078 15198785.8974 -44.536 -26.9218 92.9414 run10.mat -1 -1 74 1758011 1767336 +3504393 3525067 20675 15198801.3239 15199835.5457 -46.1812 -26.9232 92.6047 run10.mat -1 -1 74 1767489 1777826 +3525377 3546070 20694 15199850.9258 15200886.7105 -47.8316 -26.9241 92.6308 run10.mat -1 -1 74 1777981 1788328 +3546380 3567049 20670 15200902.0905 15201934.167 -49.4777 -26.9225 92.5927 run10.mat -1 -1 74 1788483 1798818 +3567356 3581287 13932 15201949.5199 15202646.2584 -51.1294 -26.9241 92.7818 run10.mat -1 -1 74 1798971 1805937 +3665382 3671268 5887 15206849.235 15207145.2298 -51.1276 -26.9257 94.3068 run10.mat -1 -1 75 1847986 1850930 +3671575 3692288 20714 15207160.461 15208194.7337 -52.7767 -26.9232 92.569 run10.mat -1 -1 75 1851083 1861440 +3692594 3713290 20697 15208210.0396 15209246.0947 -54.4253 -26.9237 92.5071 run10.mat -1 -1 75 1861593 1871941 +3713594 3734272 20679 15209261.183 15210295.8849 -56.0748 -26.9239 92.6241 run10.mat -1 -1 75 1872093 1882433 +3734581 3755249 20669 15210311.4626 15211345.6935 -57.7243 -26.9222 92.7525 run10.mat -1 -1 75 1882588 1892922 +3755554 3761167 5614 15211360.9467 15211641.5756 -59.376 -26.9266 92.8329 run10.mat -1 -1 75 1893075 1895881 +3845155 3859327 14173 15215839.8595 15216547.0905 -59.3755 -26.9259 93.1379 run10.mat -1 -1 76 1937877 1944963 +3859652 3880332 20681 15216563.4749 15217597.8053 -61.023 -26.9223 92.5596 run10.mat -1 -1 76 1945126 1955466 +3880636 3901331 20696 15217612.951 15218649.6735 -62.6729 -26.9251 92.6231 run10.mat -1 -1 76 1955618 1965966 +3901638 3922313 20676 15218665.0528 15219697.1054 -64.3222 -26.9219 92.599 run10.mat -1 -1 76 1966120 1976458 +3922617 3941006 18390 15219712.3083 15220633.6279 -65.9724 -26.9218 92.734 run10.mat -1 -1 76 1976610 1985804 +4025071 4026409 1339 15224835.0208 15224902.2276 -65.9673 -26.9251 96.9412 run10.mat -1 -1 77 2027839 2028508 +4026732 4047398 20667 15224918.4516 15225954.0691 -67.6255 -26.9224 92.6304 run10.mat -1 -1 77 2028670 2039002 +4047707 4068393 20687 15225969.4025 15227002.162 -69.2716 -26.9214 92.642 run10.mat -1 -1 77 2039157 2049501 +4068699 4089389 20691 15227017.4649 15228051.0488 -70.9198 -26.9221 92.5237 run10.mat -1 -1 77 2049654 2059999 +4089698 4110372 20675 15228066.6297 15229100.3989 -72.5732 -26.9217 92.6354 run10.mat -1 -1 77 2060153 2070491 +4110681 4120866 10186 15229115.7293 15229625.9427 -74.2227 -26.9227 92.9148 run10.mat -1 -1 77 2070646 2075739 +4206908 4216454 9547 15233926.7434 15234404.6284 -74.2176 -26.9235 93.4009 run10.mat -1 -1 78 2118761 2123534 +4216780 4237475 20696 15234420.8055 15235453.6816 -75.8669 -26.9227 92.514 run10.mat -1 -1 78 2123697 2134046 +4237782 4258458 20677 15235468.9158 15236504.7646 -77.5149 -26.9232 92.6518 run10.mat -1 -1 78 2134199 2144538 +4258765 4279438 20674 15236519.9958 15237555.5406 -79.1676 -26.9227 92.6855 run10.mat -1 -1 78 2144691 2155028 +4279753 4300414 20662 15237571.1687 15238602.6062 -80.8147 -26.9227 92.6806 run10.mat -1 -1 78 2155186 2165516 +4300720 4302726 2007 15238618.0944 15238719.6282 -82.462 -26.9227 93.2005 run10.mat -1 -1 78 2165669 2166672 +4386799 4404537 17739 15242922.5828 15243809.2534 -82.4662 -26.9227 92.7996 run10.mat -1 -1 79 2208711 2217580 +4404864 4425518 20655 15243825.4769 15244857.3695 -82.463 -25.243 92.6372 run10.mat -1 -1 79 2217744 2228071 +4425824 4446520 20697 15244872.4433 15245907.9754 -80.8172 -25.2429 92.5093 run10.mat -1 -1 79 2228224 2238572 +4446826 4467502 20677 15245923.0493 15246957.2105 -79.1685 -25.243 92.6235 run10.mat -1 -1 79 2238725 2249064 +4467818 4482585 14768 15246973.1412 15247710.5868 -77.5191 -25.243 92.7028 run10.mat -1 -1 79 2249222 2256606 +4566687 4571607 4921 15251916.4196 15252161.4745 -77.5193 -25.2414 94.025 run10.mat -1 -1 80 2298659 2301119 +4571921 4592618 20698 15252177.1777 15253214.2847 -75.8699 -25.2434 92.5436 run10.mat -1 -1 80 2301276 2311625 +4592926 4613601 20676 15253229.6876 15254261.9222 -74.2253 -25.2432 92.6637 run10.mat -1 -1 80 2311779 2322117 +4613907 4634597 20691 15254277.1038 15255311.8016 -72.5727 -25.2423 92.7004 run10.mat -1 -1 80 2322270 2332615 +4634905 4655563 20659 15255327.2048 15256360.8159 -70.9209 -25.2432 92.6757 run10.mat -1 -1 80 2332769 2343099 +4655883 4662485 6603 15256376.9482 15256707.3042 -69.2786 -25.2463 92.7207 run10.mat -1 -1 80 2343259 2346560 +4746586 4759704 13119 15260912.2325 15261565.7619 -69.2674 -25.2438 93.2775 run10.mat -1 -1 81 2388612 2395171 +4760025 4780681 20657 15261582.0658 15262615.1472 -67.6221 -25.2444 92.4436 run10.mat -1 -1 81 2395332 2405661 +4780989 4801680 20692 15262630.6745 15263667.1677 -65.9712 -25.2435 92.6754 run10.mat -1 -1 81 2405815 2416161 +4801988 4822681 20694 15263682.5707 15264717.0546 -64.3206 -25.2435 92.5735 run10.mat -1 -1 81 2416315 2426661 +4822989 4842365 19377 15264732.6441 15265700.9479 -62.6693 -25.2433 92.8064 run10.mat -1 -1 81 2426815 2436504 +4928474 4928866 393 15270007.4048 15270026.8531 -62.6839 -25.242 102.8606 run10.mat -1 -1 82 2479560 2479756 +4929184 4949820 20637 15270042.6301 15271074.0917 -61.0234 -25.2436 92.6994 run10.mat -1 -1 82 2479915 2490234 +4950129 4970820 20692 15271089.5447 15272122.3982 -59.3725 -25.2438 92.6486 run10.mat -1 -1 82 2490388 2500734 +4971128 4991822 20695 15272137.8021 15273173.1283 -57.7248 -25.2432 92.6076 run10.mat -1 -1 82 2500888 2511236 +4992127 5012801 20675 15273188.5043 15274222.7854 -56.0751 -25.2436 92.6909 run10.mat -1 -1 82 2511388 2521725 +5013109 5024264 11156 15274238.3128 15274795.3324 -54.4272 -25.2435 92.7589 run10.mat -1 -1 82 2521879 2527457 +5108358 5116928 8571 15279000.8937 15279430.7 -54.4241 -25.2417 93.4799 run10.mat -1 -1 83 2569506 2573791 +5117237 5137941 20705 15279446.15 15280480.1093 -52.7794 -25.2432 92.5361 run10.mat -1 -1 83 2573946 2584298 +5138247 5158920 20674 15280495.5358 15281528.9623 -51.1274 -25.2433 92.653 run10.mat -1 -1 83 2584451 2594788 +5159227 5179922 20696 15281544.0826 15282577.9345 -49.4814 -25.244 92.5432 run10.mat -1 -1 83 2594942 2605290 +5180228 5200881 20654 15282593.1191 15283627.1974 -47.8286 -25.2426 92.7282 run10.mat -1 -1 83 2605443 2615770 +5201186 5204164 2979 15283642.5735 15283792.1654 -46.1917 -25.2408 93.1064 run10.mat -1 -1 83 2615922 2617411 +5288236 5305007 16772 15287993.7096 15288834.0279 -46.1859 -25.243 93.0283 run10.mat -1 -1 84 2659449 2667835 +5305320 5326002 20683 15288849.6809 15289882.4412 -44.5332 -25.2434 92.5667 run10.mat -1 -1 84 2667992 2678333 +5326306 5346987 20682 15289897.5235 15290933.3718 -42.8821 -25.2426 92.5522 run10.mat -1 -1 84 2678485 2688826 +5347303 5367981 20679 15290949.3001 15291984.4572 -41.2336 -25.2432 92.5684 run10.mat -1 -1 84 2688984 2699323 +5368289 5384024 15736 15291999.8604 15292784.1108 -39.584 -25.2438 92.8049 run10.mat -1 -1 84 2699477 2707345 +5468106 5472070 3965 15296988.1488 15297187.9875 -39.5927 -25.2439 94.4882 run10.mat -1 -1 85 2749388 2751370 +5472381 5493061 20681 15297203.6661 15298235.267 -37.9327 -25.2435 92.6247 run10.mat -1 -1 85 2751526 2761866 +5493366 5514065 20700 15298250.6431 15299287.1731 -36.2857 -25.243 92.6383 run10.mat -1 -1 85 2762019 2772368 +5514371 5535061 20691 15299302.3577 15300338.7317 -34.6321 -25.244 92.5731 run10.mat -1 -1 85 2772521 2782867 +5535368 5556039 20672 15300353.9629 15301385.6249 -32.9839 -25.242 92.691 run10.mat -1 -1 85 2783021 2793356 +5556348 5563883 7536 15301400.9583 15301777.6257 -31.3323 -25.2446 92.9213 run10.mat -1 -1 85 2793511 2797279 +5647947 5660155 12209 15305980.5371 15306590.9829 -31.3333 -25.2435 93.1668 run10.mat -1 -1 86 2839313 2845417 +5660469 5681160 20692 15306606.6895 15307643.5272 -29.6884 -25.2433 92.5141 run10.mat -1 -1 86 2845574 2855920 +5681469 5702142 20674 15307658.9802 15308690.3948 -28.034 -25.2433 92.5959 run10.mat -1 -1 86 2856074 2866411 +5702448 5723143 20696 15308705.8213 15309739.4216 -26.3843 -25.2432 92.5365 run10.mat -1 -1 86 2866564 2876912 +5723449 5743783 20335 15309754.6062 15310771.504 -24.7378 -25.2431 92.7704 run10.mat -1 -1 86 2877065 2887232 +5827862 5848224 20363 15314977.0089 15315994.2026 -23.091 -25.2439 92.8995 run10.mat -1 -1 87 2929274 2939455 +5848537 5869202 20666 15316009.7315 15317044.968 -21.4386 -25.2426 92.6349 run10.mat -1 -1 87 2939612 2949944 +5869509 5890204 20696 15317060.0726 15318092.81 -19.7865 -25.2431 92.6196 run10.mat -1 -1 87 2950098 2960446 +5890519 5911183 20665 15318108.6934 15319142.7798 -18.143 -25.2424 92.6309 run10.mat -1 -1 87 2960604 2970936 +5911489 5923642 12154 15319157.9583 15319766.7895 -16.4934 -25.2437 92.8196 run10.mat -1 -1 87 2971089 2977166 +6007729 6015269 7541 15323968.2335 15324346.9734 -16.4943 -25.2409 93.5221 run10.mat -1 -1 88 3019211 3022981 +6015583 6036268 20686 15324362.555 15325398.5695 -14.8463 -25.2429 92.5045 run10.mat -1 -1 88 3023138 3033482 +6036578 6057262 20685 15325414.0727 15326447.3397 -13.1921 -25.2419 92.6759 run10.mat -1 -1 88 3033637 3043979 +6057570 6078244 20675 15326462.6206 15327494.4007 -11.5465 -25.2433 92.622 run10.mat -1 -1 88 3044133 3054470 +6078551 6099224 20674 15327509.6319 15328544.8528 -9.8967 -25.2434 92.7295 run10.mat -1 -1 88 3054624 3064961 +6099531 6103502 3972 15328560.3297 15328760.5587 -8.2522 -25.2449 92.7713 run10.mat -1 -1 88 3065114 3067100 +6187573 6203323 15751 15332963.6144 15333749.2328 -8.2461 -25.2429 93.079 run10.mat -1 -1 89 3109137 3117013 +6203634 6224305 20672 15333764.6624 15334799.7404 -6.5943 -25.2433 92.6015 run10.mat -1 -1 89 3117168 3127504 +6224611 6245305 20695 15334815.0436 15335850.0187 -4.9447 -25.2426 92.5951 run10.mat -1 -1 89 3127657 3138005 +6245610 6266286 20677 15335865.1506 15336897.3159 -3.2978 -25.2435 92.5775 run10.mat -1 -1 89 3138157 3148495 +6266592 6283342 16751 15336912.6218 15337752.3281 -1.6469 -25.2436 92.852 run10.mat -1 -1 89 3148648 3157024 +6367320 6370367 3048 15341951.2786 15342103.6872 -1.6495 -25.2444 94.8613 run10.mat -1 -1 90 3199015 3200538 +6370675 6391387 20713 15342119.0931 15343155.0038 0.00066307 -25.2435 92.5096 run10.mat -1 -1 90 3200692 3211049 +6391694 6412367 20674 15343170.3569 15344200.2632 1.6501 -25.2428 92.4903 run10.mat -1 -1 90 3211202 3221539 +6412675 6433355 20681 15344215.6664 15345251.974 3.2953 -25.2435 92.5832 run10.mat -1 -1 90 3221693 3232034 +6433670 6454346 20677 15345267.7271 15346302.8172 4.9446 -25.2428 92.7041 run10.mat -1 -1 90 3232191 3242530 +6454656 6463222 8567 15346318.3232 15346745.9857 6.595 -25.2433 92.8491 run10.mat -1 -1 90 3242685 3246968 +6547219 6558435 11217 15350945.7558 15351504.6872 6.5913 -25.2428 93.3682 run10.mat -1 -1 91 3288968 3294576 +6558753 6579428 20676 15351520.5933 15352556.5273 8.2422 -25.2441 92.575 run10.mat -1 -1 91 3294735 3305073 +6579733 6600426 20694 15352571.6593 15353607.3767 9.8903 -25.2431 92.5803 run10.mat -1 -1 91 3305226 3315573 +6600731 6621424 20694 15353622.7528 15354654.1886 11.5398 -25.2429 92.5933 run10.mat -1 -1 91 3315725 3326072 +6621733 6642385 20653 15354669.522 15355702.4926 13.1883 -25.2425 92.7535 run10.mat -1 -1 91 3326227 3336553 +6642691 6643061 371 15355717.9191 15355736.5721 14.8095 -25.2491 94.1457 run10.mat -1 -1 91 3336706 3336891 +6727140 6746592 19453 15359942.2326 15360913.4279 14.8399 -25.244 93.0426 run10.mat -1 -1 92 3378933 3388659 +6746901 6767587 20687 15360928.7614 15361965.1101 16.4908 -25.2441 92.5378 run10.mat -1 -1 92 3388813 3399157 +6767895 6788568 20674 15361980.391 15363012.3397 18.1409 -25.2441 92.5953 run10.mat -1 -1 92 3399311 3409648 +6788876 6809567 20692 15363027.6817 15364062.3672 19.7891 -25.2437 92.6517 run10.mat -1 -1 92 3409802 3420148 +6809873 6822901 13029 15364077.7937 15364728.6628 21.4391 -25.2432 92.737 run10.mat -1 -1 92 3420301 3426816 +6906820 6913635 6816 15368927.2916 15369264.4564 21.4332 -25.2436 93.6347 run10.mat -1 -1 93 3468777 3472189 +6913953 6934629 20677 15369280.3595 15370316.866 23.0904 -25.2435 92.4496 run10.mat -1 -1 93 3472343 3482682 +6934936 6955627 20692 15370332.0972 15371367.5762 24.7373 -25.2435 92.5977 run10.mat -1 -1 93 3482835 3493181 +6955933 6976612 20680 15371382.8793 15372415.7448 26.3901 -25.2427 92.6458 run10.mat -1 -1 93 3493334 3503674 +6976919 6997586 20668 15372430.976 15373462.2501 28.0365 -25.2429 92.6336 run10.mat -1 -1 93 3503828 3514161 +6997895 7002741 4847 15373477.5836 15373719.8957 29.6898 -25.246 92.5508 run10.mat -1 -1 93 3514316 3516739 +7086841 7101726 14886 15377927.0816 15378670.5781 29.6871 -25.2425 92.9897 run10.mat -1 -1 94 3558791 3566234 +7102040 7122709 20670 15378686.4079 15379719.5085 31.3358 -25.2439 92.6082 run10.mat -1 -1 94 3566391 3576726 +7123018 7143709 20692 15379734.842 15380771.1024 32.9834 -25.2435 92.5869 run10.mat -1 -1 94 3576880 3587226 +7144015 7164710 20696 15380786.4736 15381821.2516 34.6338 -25.2431 92.6823 run10.mat -1 -1 94 3587379 3597727 +7165016 7182621 17606 15381836.4332 15382715.3201 36.2828 -25.2423 92.9285 run10.mat -1 -1 94 3597880 3606683 +7266708 7268793 2086 15386921.7746 15387026.0446 36.2857 -25.2445 96.4362 run10.mat -1 -1 95 3648729 3649771 +7269109 7289785 20677 15387041.8477 15388075.7801 37.9323 -25.2434 92.5297 run10.mat -1 -1 95 3649929 3660267 +7290093 7310768 20676 15388091.0609 15389121.9068 39.5775 -25.2433 92.5284 run10.mat -1 -1 95 3660421 3670760 +7311074 7331769 20696 15389137.3333 15390173.8013 41.2277 -25.2438 92.6103 run10.mat -1 -1 95 3670913 3681260 +7332077 7352747 20671 15390189.0822 15391223.8305 42.8771 -25.2432 92.6558 run10.mat -1 -1 95 3681414 3691750 +7353059 7362481 9423 15391239.4335 15391709.7046 44.5249 -25.2418 92.879 run10.mat -1 -1 95 3691906 3696617 +7446558 7456842 10285 15395914.156 15396425.1171 44.5254 -25.2419 93.2536 run10.mat -1 -1 96 3738657 3743800 +7457152 7477849 20698 15396440.6201 15397476.6807 46.176 -25.2428 92.5999 run10.mat -1 -1 96 3743955 3754303 +7478163 7498846 20684 15397492.2592 15398527.2384 47.826 -25.2432 92.6236 run10.mat -1 -1 96 3754460 3764802 +7499155 7519837 20683 15398542.8193 15399575.6958 49.4764 -25.2437 92.6751 run10.mat -1 -1 96 3764957 3775299 +7520149 7540807 20659 15399591.299 15400624.7356 51.1256 -25.2431 92.8177 run10.mat -1 -1 96 3775455 3785784 +7541113 7542340 1228 15400640.1621 15400702.0194 52.7804 -25.2418 93.3014 run10.mat -1 -1 96 3785937 3786550 +7626391 7644998 18608 15404903.8885 15405836.0139 52.776 -25.2438 93.0447 run10.mat -1 -1 97 3828578 3837882 +7645323 7666007 20685 15405852.3983 15406885.0647 54.4253 -25.2434 92.6042 run10.mat -1 -1 97 3838044 3848387 +7666316 7687006 20691 15406900.3955 15407935.3101 56.0736 -25.2433 92.5704 run10.mat -1 -1 97 3848541 3858887 +7687312 7707987 20676 15407950.6133 15408984.9973 57.7283 -25.2424 92.6499 run10.mat -1 -1 97 3859040 3869377 +7708293 7722180 13888 15409000.3674 15409694.9412 59.3724 -25.2424 92.6808 run10.mat -1 -1 97 3869530 3876474 +7806198 7812039 5842 15413895.4788 15414188.6595 59.3803 -25.2432 94.2136 run10.mat -1 -1 98 3918485 3921406 +7812358 7833045 20688 15414204.6126 15415237.8788 61.0223 -25.2432 92.5706 run10.mat -1 -1 98 3921566 3931909 +7833353 7854048 20696 15415253.4061 15416288.6955 62.6728 -25.2434 92.5714 run10.mat -1 -1 98 3932063 3942411 +7854353 7875009 20657 15416304.0716 15417334.4407 64.3216 -25.2435 92.6163 run10.mat -1 -1 98 3942564 3952892 +7875315 7896009 20695 15417349.6252 15418384.3116 65.9725 -25.2435 92.7042 run10.mat -1 -1 98 3953045 3963392 +7896315 7902040 5726 15418399.5041 15418687.4997 67.6242 -25.2434 92.8743 run10.mat -1 -1 98 3963546 3966408 +7986149 8000229 14081 15422895.2259 15423597.021 67.618 -25.2432 93.2507 run10.mat -1 -1 99 4008465 4015505 +8000538 8021230 20693 15423612.6019 15424647.8438 69.269 -25.2434 92.5558 run10.mat -1 -1 99 4015659 4026006 +8021535 8042211 20677 15424663.0967 15425697.1033 70.9132 -25.2433 92.6598 run10.mat -1 -1 99 4026158 4036497 +8042518 8063209 20692 15425712.4562 15426745.718 72.5696 -25.243 92.6318 run10.mat -1 -1 99 4036650 4046996 +8063515 8081900 18386 15426761.1476 15427679.0954 74.2136 -25.2427 92.6716 run10.mat -1 -1 99 4047149 4056342 +8165970 8167298 1329 15431885.6822 15431952.0961 74.2117 -25.241 99.0587 run10.mat -1 -1 100 4098379 4099043 +8167613 8188292 20680 15431967.8493 15432998.2287 75.865 -25.242 92.6247 run10.mat -1 -1 100 4099201 4109540 +8188599 8209275 20677 15433013.7088 15434049.4632 77.5137 -25.2437 92.657 run10.mat -1 -1 100 4109694 4120033 +8209586 8230273 20688 15434065.0162 15435099.4813 79.1661 -25.2428 92.5762 run10.mat -1 -1 100 4120188 4130532 +8230581 8251254 20674 15435115.0087 15436147.9283 80.8174 -25.2434 92.6529 run10.mat -1 -1 100 4130686 4141023 +8251563 8261758 10196 15436163.3815 15436675.2833 82.4625 -25.2435 92.8536 run10.mat -1 -1 100 4141178 4146275 +8345852 8355026 9175 15440878.0221 15441336.8642 82.4676 -25.2424 93.3089 run10.mat -1 -1 101 4188324 4192912 +288928 309438 20511 15554700.5231 15555725.6814 82.4684 -23.5597 92.942 run11.mat -1 -1 103 161551 171805 +309744 330440 20697 15555740.9873 15556777.0345 80.815 -23.5596 92.5763 run11.mat -1 -1 103 171958 182307 +330746 351438 20693 15556792.2191 15557828.2392 79.1706 -23.5593 92.5118 run11.mat -1 -1 103 182460 192807 +351745 372421 20677 15557843.3595 15558875.8137 77.5153 -23.5589 92.5891 run11.mat -1 -1 103 192960 203299 +372730 384698 11969 15558891.1441 15559490.2833 75.8718 -23.5609 92.8118 run11.mat -1 -1 103 203453 209437 +468757 476637 7881 15563693.0881 15564087.7504 75.8709 -23.5599 93.6119 run11.mat -1 -1 104 251469 255409 +476966 497658 20693 15564104.3364 15565137.2579 74.2161 -23.5604 92.5257 run11.mat -1 -1 104 255574 265920 +497964 518640 20677 15565152.5609 15566187.3491 72.5708 -23.559 92.6341 run11.mat -1 -1 104 266073 276412 +518946 539637 20692 15566202.7756 15567234.6995 70.9146 -23.5595 92.5579 run11.mat -1 -1 104 276565 286910 +539945 560615 20671 15567250.1054 15568284.5354 69.2673 -23.5601 92.7081 run11.mat -1 -1 104 287065 297400 +560923 564558 3636 15568299.8162 15568482.0012 67.6117 -23.5596 92.6877 run11.mat -1 -1 104 297554 299371 +648650 664757 16108 15572686.3548 15573492.3225 67.6157 -23.5596 93.0634 run11.mat -1 -1 105 341419 349473 +665063 685739 20677 15573507.5041 15574542.6824 65.9695 -23.5599 92.6078 run11.mat -1 -1 105 349626 359965 +686046 706762 20717 15574558.0356 15575593.0914 64.3175 -23.5604 92.582 run11.mat -1 -1 105 360118 370477 +707065 727740 20676 15575608.2443 15576644.2454 62.6691 -23.5601 92.5328 run11.mat -1 -1 105 370628 380966 +728045 744437 16393 15576659.4984 15577476.8907 61.0209 -23.5596 92.7809 run11.mat -1 -1 105 381119 389315 +828493 831839 3347 15581677.5076 15581847.4881 61.028 -23.5596 95.5755 run11.mat -1 -1 106 431344 433017 +832168 852846 20679 15581864.2016 15582896.4216 59.3741 -23.5602 92.5935 run11.mat -1 -1 106 433182 443522 +853151 873840 20690 15582911.5566 15583948.2075 57.727 -23.5594 92.6423 run11.mat -1 -1 106 443674 454019 +874146 894823 20678 15583963.5105 15584996.9639 56.077 -23.5598 92.5744 run11.mat -1 -1 106 454172 464511 +895133 915818 20686 15585012.3439 15586045.6487 54.4259 -23.5588 92.6394 run11.mat -1 -1 106 464666 475009 +916127 924317 8191 15586061.1047 15586470.7199 52.78 -23.5595 92.6442 run11.mat -1 -1 106 475164 479259 +1008341 1019998 11658 15590671.9962 15591256.5588 52.7748 -23.5592 93.2916 run11.mat -1 -1 107 521273 527102 +1020329 1041001 20673 15591272.9808 15592306.3271 51.1302 -23.5596 92.5688 run11.mat -1 -1 107 527267 537603 +1041311 1061985 20675 15592321.9585 15593355.5864 49.4767 -23.56 92.5466 run11.mat -1 -1 107 537759 548096 +1062293 1082981 20689 15593370.8672 15594403.3803 47.8286 -23.5595 92.6351 run11.mat -1 -1 107 548250 558595 +1083289 1103941 20653 15594418.6642 15595453.0611 46.1791 -23.5595 92.7456 run11.mat -1 -1 107 558749 569075 +1188123 1208098 19976 15599660.996 15600659.4225 44.531 -23.5592 92.9541 run11.mat -1 -1 108 611168 621156 +1208425 1229080 20656 15600675.7788 15601710.7942 42.8734 -23.5597 92.6558 run11.mat -1 -1 108 621319 631647 +1229387 1250084 20698 15601726.1471 15602761.1429 41.2297 -23.5593 92.5978 run11.mat -1 -1 108 631801 642150 +1250390 1271061 20672 15602776.3245 15603806.6642 39.5765 -23.5597 92.6895 run11.mat -1 -1 108 642303 652639 +1271374 1284036 12663 15603822.3774 15604458.2897 37.9294 -23.5602 92.7766 run11.mat -1 -1 108 652795 659126 +1368005 1375140 7136 15608655.0228 15609012.6172 37.9331 -23.5611 94.189 run11.mat -1 -1 109 701113 704680 +1375474 1396160 20687 15609029.1879 15610062.4134 36.2813 -23.5604 92.4777 run11.mat -1 -1 109 704847 715191 +1396467 1417163 20697 15610077.8903 15611113.5026 34.6296 -23.5596 92.5356 run11.mat -1 -1 109 715344 725693 +1417471 1438142 20672 15611128.7864 15612162.8369 32.9817 -23.5597 92.6299 run11.mat -1 -1 109 725847 736183 +1438451 1459124 20674 15612178.4146 15613214.0406 31.3334 -23.5598 92.6783 run11.mat -1 -1 109 736337 746674 +1459429 1463896 4468 15613229.2935 15613452.6865 29.6818 -23.5589 92.9368 run11.mat -1 -1 109 746827 749060 +1547972 1563243 15272 15617654.576 15618418.3474 29.6894 -23.5592 93.0533 run11.mat -1 -1 110 791100 798736 +1563577 1584246 20670 15618434.9214 15619467.3069 28.0354 -23.5595 92.6106 run11.mat -1 -1 110 798903 809238 +1584551 1605244 20694 15619482.4418 15620518.7378 26.3903 -23.5591 92.5553 run11.mat -1 -1 110 809391 819738 +1605552 1626233 20682 15620534.2683 15621566.6563 24.7393 -23.5593 92.6603 run11.mat -1 -1 110 819892 830232 +1626547 1643755 17209 15621582.3593 15622443.0287 23.0903 -23.56 92.683 run11.mat -1 -1 110 830389 838994 +1727769 1730364 2596 15626645.0655 15626773.8368 23.0908 -23.5576 95.2276 run11.mat -1 -1 111 881002 882300 +1730692 1751365 20674 15626790.1131 15627825.8619 21.4392 -23.5595 92.6485 run11.mat -1 -1 111 882464 892801 +1751672 1772346 20675 15627841.2178 15628873.2631 19.7881 -23.5598 92.5655 run11.mat -1 -1 111 892954 903292 +1772654 1793345 20692 15628888.6661 15629922.3013 18.1407 -23.5599 92.599 run11.mat -1 -1 111 903446 913792 +1793651 1814327 20677 15629937.7309 15630971.6356 16.4893 -23.5595 92.6282 run11.mat -1 -1 111 913945 924283 +1814634 1823655 9022 15630986.8698 15631437.3197 14.8438 -23.5603 92.764 run11.mat -1 -1 111 924436 928948 +1907723 1918424 10702 15635641.1885 15636177.4646 14.8374 -23.559 93.3068 run11.mat -1 -1 112 970983 976334 +1918730 1939428 20699 15636192.6462 15637227.5467 13.1876 -23.5598 92.5333 run11.mat -1 -1 112 976487 986837 +1939741 1960426 20686 15637243.3261 15638277.322 11.5387 -23.5592 92.6551 run11.mat -1 -1 112 986993 997336 +1960732 1981404 20673 15638292.5066 15639327.9442 9.8894 -23.5596 92.6454 run11.mat -1 -1 112 997489 1007825 +1981712 2002367 20656 15639343.3474 15640375.287 8.2412 -23.5594 92.7589 run11.mat -1 -1 112 1007979 1018307 +2002678 2003515 838 15640390.7197 15640432.2541 6.5899 -23.5567 91.6104 run11.mat -1 -1 112 1018463 1018881 +2087555 2106504 18950 15644631.951 15645582.6394 6.5934 -23.5598 92.9425 run11.mat -1 -1 113 1060904 1070378 +2106823 2127508 20686 15645598.5924 15646631.2771 4.9445 -23.5589 92.5306 run11.mat -1 -1 113 1070538 1080881 +2127812 2148487 20676 15646646.3624 15647680.3526 3.2955 -23.5599 92.6172 run11.mat -1 -1 113 1081033 1091371 +2148793 2169484 20692 15647695.6558 15648731.8738 1.6513 -23.5594 92.5912 run11.mat -1 -1 113 1091524 1101870 +2169794 2183395 13602 15648747.2538 15649424.2013 -0.0010531 -23.5603 92.7813 run11.mat -1 -1 113 1102025 1108825 +2267722 2273904 6183 15653642.7765 15653953.1379 0.0015293 -23.5603 94.0187 run11.mat -1 -1 114 1150991 1154082 +2274224 2294925 20702 15653968.9015 15655004.5606 -1.6473 -23.5596 92.5573 run11.mat -1 -1 114 1154242 1164593 +2295231 2315907 20677 15655019.7422 15656051.5292 -3.2958 -23.5602 92.5836 run11.mat -1 -1 114 1164746 1175084 +2316212 2336908 20697 15656066.9084 15657103.2708 -4.9452 -23.5597 92.5588 run11.mat -1 -1 114 1175237 1185585 +2337217 2357886 20670 15657118.8486 15658151.0419 -6.5932 -23.5597 92.6952 run11.mat -1 -1 114 1185740 1196075 +2358195 2363475 5281 15658166.4951 15658432.5373 -8.2433 -23.5595 92.8943 run11.mat -1 -1 114 1196229 1198869 +2447594 2462025 14432 15662637.0875 15663357.1322 -8.2476 -23.56 93.0383 run11.mat -1 -1 115 1240930 1248147 +2462349 2483028 20680 15663373.2068 15664408.318 -9.8923 -23.5603 92.5971 run11.mat -1 -1 115 1248309 1258648 +2483342 2504028 20687 15664424.1478 15665457.1084 -11.5421 -23.5591 92.587 run11.mat -1 -1 115 1258805 1269149 +2504333 2525028 20696 15665472.2603 15666509.2618 -13.1919 -23.5595 92.6017 run11.mat -1 -1 115 1269302 1279649 +2525334 2543375 18042 15666524.5682 15667425.2072 -14.847 -23.5594 92.8037 run11.mat -1 -1 115 1279802 1288823 +2627484 2629265 1782 15671631.3689 15671719.7297 -14.8434 -23.5567 97.5312 run11.mat -1 -1 116 1330880 1331770 +2629591 2650249 20659 15671735.9036 15672768.957 -16.4963 -23.5591 92.482 run11.mat -1 -1 116 1331933 1342263 +2650559 2671250 20692 15672784.5852 15673819.2119 -18.1433 -23.5593 92.561 run11.mat -1 -1 116 1342418 1352764 +2671557 2692248 20692 15673834.5651 15674868.5192 -19.794 -23.5596 92.5214 run11.mat -1 -1 116 1352917 1363263 +2692554 2713230 20677 15674883.7007 15675918.726 -21.442 -23.5592 92.6358 run11.mat -1 -1 116 1363416 1373755 +2713539 2723253 9715 15675934.366 15676421.0608 -23.0907 -23.5606 92.7252 run11.mat -1 -1 116 1373909 1378766 +2807266 2817306 10041 15680620.0708 15681122.1546 -23.0873 -23.5585 93.207 run11.mat -1 -1 117 1420775 1425795 +2817612 2838288 20677 15681137.3362 15682171.6751 -24.739 -23.5604 92.5086 run11.mat -1 -1 117 1425948 1436286 +2838599 2859308 20710 15682187.1665 15683223.9254 -26.3888 -23.5596 92.5771 run11.mat -1 -1 117 1436442 1446797 +2859614 2880288 20675 15683239.3519 15684270.0925 -28.0364 -23.5603 92.5779 run11.mat -1 -1 117 1446950 1457287 +2880597 2901267 20671 15684285.4229 15685319.0413 -29.687 -23.5595 92.7241 run11.mat -1 -1 117 1457442 1467777 +2901574 2903074 1501 15685334.5182 15685410.1383 -31.3356 -23.5606 92.9867 run11.mat -1 -1 117 1467931 1468681 +2987158 3005506 18349 15689614.4198 15690531.2897 -31.3363 -23.5593 92.9732 run11.mat -1 -1 118 1510725 1519899 +3005823 3026488 20666 15690547.1427 15691580.6837 -32.9818 -23.5591 92.5568 run11.mat -1 -1 118 1520058 1530390 +3026795 3047489 20695 15691596.0932 15692631.644 -34.6361 -23.5604 92.651 run11.mat -1 -1 118 1530544 1540892 +3047795 3068448 20654 15692646.8256 15693678.8796 -36.2814 -23.56 92.5304 run11.mat -1 -1 118 1541045 1551372 +3068753 3082953 14201 15693694.2557 15694405.1387 -37.936 -23.5595 92.8333 run11.mat -1 -1 118 1551524 1558624 +3167274 3172766 5493 15698621.7721 15698896.3987 -37.9323 -23.5607 93.7631 run11.mat -1 -1 119 1600786 1603533 +3173105 3193768 20664 15698913.2175 15699946.9134 -39.5806 -23.5594 92.535 run11.mat -1 -1 119 1603702 1614034 +3194078 3214768 20691 15699962.4164 15700996.2201 -41.2326 -23.5598 92.6268 run11.mat -1 -1 119 1614189 1624535 +3215076 3235769 20694 15701011.5009 15702044.2733 -42.8787 -23.5585 92.578 run11.mat -1 -1 119 1624689 1635036 +3236074 3256748 20675 15702059.4052 15703095.3533 -44.535 -23.5594 92.6839 run11.mat -1 -1 119 1635188 1645526 +3257057 3263052 5996 15703110.9933 15703410.8351 -46.1778 -23.5589 92.6115 run11.mat -1 -1 119 1645680 1648678 +3347140 3360829 13690 15707614.8281 15708299.0771 -46.1842 -23.5592 92.979 run11.mat -1 -1 120 1690723 1697568 +3361136 3381851 20716 15708314.4301 15709348.9488 -47.8323 -23.5595 92.6108 run11.mat -1 -1 120 1697722 1708080 +3382158 3402831 20674 15709364.183 15710400.5991 -49.4818 -23.5595 92.6269 run11.mat -1 -1 120 1708234 1718570 +3403142 3423830 20689 15710416.2777 15711451.0067 -51.1309 -23.5593 92.6407 run11.mat -1 -1 120 1718726 1729070 +3424140 3442913 18774 15711466.5099 15712401.3963 -52.7796 -23.5601 92.6904 run11.mat -1 -1 120 1729225 1738612 +3527222 3528147 926 15716620.3651 15716667.0069 -52.7782 -23.5621 97.0589 run11.mat -1 -1 121 1780769 1781231 +3528472 3549131 20660 15716683.3945 15717714.603 -54.4288 -23.5595 92.6481 run11.mat -1 -1 121 1781394 1791723 +3549437 3570132 20696 15717729.9062 15718764.3977 -56.0728 -23.56 92.5199 run11.mat -1 -1 121 1791876 1802224 +3570437 3591129 20693 15718779.5297 15719814.3143 -57.7289 -23.5599 92.5645 run11.mat -1 -1 121 1802377 1812723 +3591436 3612112 20677 15719829.5455 15720864.5556 -59.3748 -23.5597 92.669 run11.mat -1 -1 121 1812877 1823215 +3612418 3622993 10576 15720879.8615 15721408.7363 -61.0231 -23.5588 92.7871 run11.mat -1 -1 121 1823368 1828656 +3707135 3716369 9235 15725615.9779 15726076.9238 -61.0219 -23.5595 93.5334 run11.mat -1 -1 122 1870729 1875346 +3716684 3737369 20686 15726092.5519 15727126.8158 -62.6719 -23.5596 92.5263 run11.mat -1 -1 122 1875504 1885846 +3737676 3758370 20695 15727142.05 15728176.6956 -64.3168 -23.5595 92.5672 run11.mat -1 -1 122 1886000 1896347 +3758681 3779371 20691 15728192.1252 15729224.7488 -65.9722 -23.5602 92.6319 run11.mat -1 -1 122 1896503 1906849 +3779677 3800349 20673 15729240.0744 15730275.3867 -67.6188 -23.5597 92.6322 run11.mat -1 -1 122 1907002 1917338 +3800655 3803032 2378 15730290.5713 15730408.5248 -69.2748 -23.56 92.6282 run11.mat -1 -1 122 1917491 1918680 +3887536 3904855 17320 15734635.2757 15735499.4697 -69.2706 -23.5596 92.9356 run11.mat -1 -1 123 1960933 1969593 +3905168 3925870 20703 15735515.105 15736552.4584 -70.9173 -23.5589 92.5412 run11.mat -1 -1 123 1969750 1980101 +3926178 3946872 20695 15736567.8616 15737602.1469 -72.5711 -23.5594 92.5989 run11.mat -1 -1 123 1980255 1990603 +3947179 3967853 20675 15737617.3781 15738651.6216 -74.2198 -23.5593 92.5777 run11.mat -1 -1 123 1990756 2001094 +3968159 3983352 15194 15738666.8639 15739425.6766 -75.8709 -23.5608 92.8092 run11.mat -1 -1 123 2001247 2008844 +4067601 4072131 4531 15743637.0881 15743863.1069 -75.8775 -23.5593 94.2868 run11.mat -1 -1 124 2050970 2053235 +4072458 4093142 20685 15743879.5921 15744916.2255 -77.5188 -23.5594 92.5277 run11.mat -1 -1 124 2053399 2063741 +4093454 4114133 20680 15744931.8287 15745964.1193 -79.1716 -23.5603 92.4812 run11.mat -1 -1 124 2063897 2074237 +4114443 4135135 20693 15745979.6252 15747016.2328 -80.8193 -23.5596 92.5325 run11.mat -1 -1 124 2074392 2084738 +4135451 4156113 20663 15747032.1666 15748061.9339 -82.4664 -23.5593 92.649 run11.mat -1 -1 124 2084896 2095228 +4156422 4163411 6990 15748077.6491 15748428.7035 -82.4667 -21.8756 92.7698 run11.mat -1 -1 124 2095382 2098877 +4247699 4260448 12750 15752645.2809 15753279.2477 -82.4629 -21.8761 93.1489 run11.mat -1 -1 125 2141023 2147397 +4260762 4281433 20672 15753294.8293 15754330.453 -80.819 -21.8763 92.5218 run11.mat -1 -1 125 2147554 2157890 +4281740 4302435 20696 15754345.8059 15755380.4545 -79.168 -21.8757 92.5727 run11.mat -1 -1 125 2158044 2168392 +4302739 4323434 20696 15755395.5399 15756430.2759 -77.5148 -21.8763 92.6166 run11.mat -1 -1 125 2168544 2178892 +4323741 4343491 19751 15756445.5101 15757433.333 -75.8646 -21.8763 92.8058 run11.mat -1 -1 125 2179045 2188921 +4428006 4428118 113 15761659.5431 15761665.1008 -75.8807 -21.8807 100.7588 run11.mat -1 -1 126 2231180 2231236 +4428430 4449053 20624 15761680.5832 15762711.9825 -74.2172 -21.8755 92.6796 run11.mat -1 -1 126 2231392 2241704 +4449358 4470053 20696 15762727.4232 15763761.4535 -72.5697 -21.8757 92.469 run11.mat -1 -1 126 2241856 2252205 +4470361 4491052 20692 15763776.623 15764810.4908 -70.9171 -21.8753 92.5748 run11.mat -1 -1 126 2252359 2262705 +4491361 4512034 20674 15764825.8212 15765859.4588 -69.2692 -21.8765 92.6363 run11.mat -1 -1 126 2262859 2273196 +4512342 4523771 11430 15765874.803 15766446.9415 -67.6173 -21.8753 92.8185 run11.mat -1 -1 126 2273350 2279065 +4607912 4616301 8390 15770655.5412 15771074.5477 -67.6196 -21.8768 93.8241 run11.mat -1 -1 127 2321137 2325332 +4616616 4637293 20678 15771090.4279 15772122.9927 -65.9751 -21.8756 92.5525 run11.mat -1 -1 127 2325489 2335828 +4637600 4658291 20692 15772138.3459 15773171.1507 -64.3173 -21.876 92.6109 run11.mat -1 -1 127 2335982 2346328 +4658600 4679276 20677 15773186.6039 15774222.6749 -62.6754 -21.8763 92.6271 run11.mat -1 -1 127 2346482 2356821 +4679583 4700252 20670 15774238.0308 15775271.5912 -61.025 -21.8761 92.6664 run11.mat -1 -1 127 2356974 2367309 +4700559 4703811 3253 15775287.0682 15775450.7566 -59.3725 -21.8754 92.885 run11.mat -1 -1 127 2367463 2369089 +4788181 4804762 16582 15779668.3305 15780498.8203 -59.3743 -21.8758 93.1573 run11.mat -1 -1 128 2411276 2419566 +4805076 4825765 20690 15780514.5269 15781547.2706 -57.7327 -21.876 92.6072 run11.mat -1 -1 128 2419723 2430069 +4826077 4846744 20668 15781562.8736 15782595.2391 -56.0782 -21.876 92.4965 run11.mat -1 -1 128 2430225 2440558 +4847055 4867741 20687 15782610.6688 15783646.6389 -54.429 -21.876 92.621 run11.mat -1 -1 128 2440714 2451058 +4868056 4884070 16015 15783662.3922 15784463.2255 -52.7805 -21.8753 92.7998 run11.mat -1 -1 128 2451215 2459222 +4968304 4972048 3745 15788674.576 15788861.2342 -52.7855 -21.8752 94.5005 run11.mat -1 -1 129 2501341 2503213 +4972364 4993036 20673 15788876.9119 15789911.5002 -51.1289 -21.8759 92.5186 run11.mat -1 -1 129 2503371 2513707 +4993345 5014032 20688 15789927.0811 15790962.9777 -49.4793 -21.8757 92.655 run11.mat -1 -1 129 2513862 2524206 +5014341 5035034 20694 15790978.4931 15792009.5943 -47.8277 -21.8762 92.52 run11.mat -1 -1 129 2524361 2534707 +5035340 5056014 20675 15792025.0208 15793059.2515 -46.1788 -21.8761 92.6342 run11.mat -1 -1 129 2534860 2545198 +5056320 5064131 7812 15793074.678 15793464.8617 -44.5315 -21.8761 92.8081 run11.mat -1 -1 129 2545351 2549257 +5148535 5160541 12007 15797688.5031 15798285.7506 -44.5309 -21.8755 93.3604 run11.mat -1 -1 130 2591460 2597470 +5160855 5181533 20679 15798301.5804 15799335.2885 -42.8795 -21.8759 92.5324 run11.mat -1 -1 130 2597621 2607960 +5181843 5202532 20690 15799350.7949 15800387.5017 -41.2296 -21.8763 92.5883 run11.mat -1 -1 130 2608115 2618460 +5202839 5223534 20696 15800402.8576 15801435.9165 -39.5812 -21.8759 92.6485 run11.mat -1 -1 130 2618613 2628962 +5223843 5244429 20587 15801451.3725 15802481.2247 -37.9327 -21.8759 92.6985 run11.mat -1 -1 130 2629116 2639409 +5328914 5349018 20105 15806704.5525 15807710.8785 -36.2857 -21.8766 92.8577 run11.mat -1 -1 131 2681654 2691706 +5349338 5370001 20664 15807726.8819 15808760.856 -34.6338 -21.8764 92.5848 run11.mat -1 -1 131 2691866 2702198 +5370315 5391014 20700 15808776.6858 15809808.2526 -32.9816 -21.876 92.5333 run11.mat -1 -1 131 2702355 2712705 +5391321 5411979 20659 15809823.6853 15810858.707 -31.3398 -21.8764 92.6441 run11.mat -1 -1 131 2712859 2723188 +5412294 5424689 12396 15810874.4603 15811493.8163 -29.6887 -21.8765 92.9047 run11.mat -1 -1 131 2723346 2729544 +5509167 5516463 7297 15815719.287 15816083.2475 -29.6924 -21.8766 93.5926 run11.mat -1 -1 132 2771784 2775433 +5516781 5537462 20682 15816099.1256 15817133.4572 -28.0392 -21.8761 92.5468 run11.mat -1 -1 132 2775592 2785933 +5537776 5558454 20679 15817149.1602 15818182.6243 -26.3908 -21.8758 92.6785 run11.mat -1 -1 132 2786090 2796429 +5558763 5579455 20693 15818197.9548 15819232.6384 -24.7404 -21.8756 92.5555 run11.mat -1 -1 132 2796584 2806930 +5579762 5600419 20658 15819248.1153 15820280.7479 -23.0912 -21.876 92.6159 run11.mat -1 -1 132 2807083 2817412 +5600726 5604930 4205 15820295.9821 15820504.5692 -21.4411 -21.8757 92.8236 run11.mat -1 -1 132 2817566 2819668 +5689220 5704759 15540 15824720.2673 15825498.3695 -21.4403 -21.8759 92.8304 run11.mat -1 -1 133 2861815 2869585 +5705071 5725757 20687 15825514.1017 15826545.533 -19.7894 -21.8764 92.615 run11.mat -1 -1 133 2869741 2880084 +5726063 5746739 20677 15826560.8362 15827597.8923 -18.1414 -21.8764 92.548 run11.mat -1 -1 133 2880237 2890576 +5747061 5767738 20678 15827613.9954 15828646.1147 -16.4915 -21.8758 92.6014 run11.mat -1 -1 133 2890737 2901075 +5768043 5785029 16987 15828661.4604 15829511.9837 -14.8413 -21.8761 92.7927 run11.mat -1 -1 133 2901228 2909721 +5869491 5872247 2757 15833733.9683 15833871.7948 -14.8446 -21.8756 95.9937 run11.mat -1 -1 134 2951954 2953332 +5872560 5893255 20696 15833887.4478 15834922.5049 -13.1896 -21.8759 92.5095 run11.mat -1 -1 134 2953489 2963837 +5893564 5914241 20678 15834937.9581 15835971.4494 -11.5437 -21.8759 92.6575 run11.mat -1 -1 134 2963992 2974330 +5914550 5935234 20685 15835986.7829 15837021.048 -9.8909 -21.8759 92.6675 run11.mat -1 -1 134 2974485 2984827 +5935542 5956217 20676 15837036.3288 15838070.0657 -8.2445 -21.8762 92.6699 run11.mat -1 -1 134 2984981 2995319 +5956521 5965308 8788 15838085.148 15838525.1666 -6.5919 -21.876 92.772 run11.mat -1 -1 134 2995471 2999865 +6049723 6060777 11055 15842746.15 15843298.5414 -6.5937 -21.8764 93.4528 run11.mat -1 -1 135 3042075 3047601 +6061089 6081795 20707 15843314.0206 15844349.2955 -4.9455 -21.8755 92.6116 run11.mat -1 -1 135 3047757 3058111 +6082103 6102776 20674 15844364.5763 15845400.0734 -3.2962 -21.8759 92.5492 run11.mat -1 -1 135 3058265 3068602 +6103084 6123774 20691 15845415.3573 15846447.9262 -1.6472 -21.8761 92.6096 run11.mat -1 -1 135 3068756 3079101 +6124082 6144736 20655 15846463.207 15847495.0727 -0.0033815 -21.8761 92.7349 run11.mat -1 -1 135 3079255 3089583 +6145041 6145608 568 15847510.3843 15847538.8488 1.6514 -21.8742 91.8307 run11.mat -1 -1 135 3089735 3090019 +6229866 6249057 19192 15851752.6075 15852711.1635 1.6437 -21.876 92.9656 run11.mat -1 -1 136 3132150 3141746 +6249379 6270036 20658 15852727.2666 15853762.4464 3.2952 -21.8763 92.4995 run11.mat -1 -1 136 3141907 3152235 +6270343 6291036 20694 15853777.8028 15854812.4307 4.9432 -21.8767 92.6707 run11.mat -1 -1 136 3152389 3162736 +6291344 6312038 20695 15854827.7146 15855863.8693 6.5904 -21.8758 92.6366 run11.mat -1 -1 136 3162890 3173238 +6312342 6325688 13347 15855879.195 15856543.6237 8.2447 -21.8755 92.7355 run11.mat -1 -1 136 3173390 3180063 +6410166 6416506 6341 15860767.7731 15861085.8742 8.248 -21.8754 93.7934 run11.mat -1 -1 137 3222303 3225473 +6416820 6437516 20697 15861101.5802 15862136.5115 9.8947 -21.8754 92.5576 run11.mat -1 -1 137 3225630 3235980 +6437825 6458498 20674 15862152.0924 15863184.0079 11.5425 -21.8761 92.6038 run11.mat -1 -1 137 3236134 3246471 +6458803 6479495 20693 15863199.2608 15864234.1274 13.1917 -21.8759 92.5584 run11.mat -1 -1 137 3246623 3256969 +6479803 6500459 20657 15864249.5333 15865282.2244 14.8445 -21.8759 92.6686 run11.mat -1 -1 137 3257123 3267452 +6500773 6505947 5175 15865297.8653 15865556.1009 16.4897 -21.8761 92.87 run11.mat -1 -1 137 3267609 3270196 +6590435 6604999 14565 15869782.4392 15870511.9642 16.4924 -21.8759 93.0248 run11.mat -1 -1 138 3312442 3319725 +6605308 6625999 20692 15870527.4174 15871560.1442 18.1452 -21.8755 92.6509 run11.mat -1 -1 138 3319879 3330225 +6626306 6628761 2456 15871575.6211 15871699.3172 19.7875 -21.8762 92.6922 run11.mat -1 -1 138 3330379 3331606 +6629011 6646990 17980 15871711.7229 15872609.6032 19.7894 -21.8762 92.5915 run11.mat -1 -1 138 3331731 3340721 +6647303 6667982 20680 15872625.129 15873660.6181 21.4413 -21.8755 92.6689 run11.mat -1 -1 138 3340877 3351217 +6668297 6686227 17931 15873676.4983 15874572.434 23.0889 -21.8761 92.7375 run11.mat -1 -1 138 3351375 3360340 +6770505 6772379 1875 15878785.4634 15878879.1814 23.0907 -21.8746 96.2249 run11.mat -1 -1 139 3402481 3403418 +6772689 6793362 20674 15878894.6844 15879928.9669 24.7382 -21.8753 92.6803 run11.mat -1 -1 139 3403573 3413910 +6793686 6814360 20675 15879945.0415 15880976.7481 26.3865 -21.8764 92.6152 run11.mat -1 -1 139 3414072 3424410 +6814668 6835359 20692 15880992.2008 15882028.695 28.0311 -21.876 92.5884 run11.mat -1 -1 139 3424564 3434910 +6835666 6856326 20661 15882043.9262 15883076.24 29.686 -21.8768 92.6122 run11.mat -1 -1 139 3435063 3445393 +6856639 6866287 9649 15883092.0194 15883573.7169 31.3315 -21.8766 92.7685 run11.mat -1 -1 139 3445550 3450374 +6950758 6960858 10101 15887799.3701 15888302.9266 31.329 -21.8763 93.4584 run11.mat -1 -1 140 3492611 3497662 +6961166 6981861 20696 15888318.4539 15889353.6929 32.9815 -21.8757 92.5599 run11.mat -1 -1 140 3497816 3508164 +6982167 7002835 20669 15889369.1194 15890403.0476 34.6297 -21.876 92.6264 run11.mat -1 -1 140 3508317 3518651 +7003143 7023839 20697 15890418.5749 15891452.247 36.281 -21.8755 92.5601 run11.mat -1 -1 140 3518805 3529154 +7024145 7044800 20656 15891467.3181 15892499.8139 37.9299 -21.8761 92.7828 run11.mat -1 -1 140 3529307 3539635 +7045106 7046567 1462 15892515.1083 15892588.7623 39.5883 -21.8743 92.5795 run11.mat -1 -1 140 3539788 3540518 +7130853 7149254 18402 15896803.7935 15897722.235 39.5807 -21.8759 93.0747 run11.mat -1 -1 141 3582663 3591864 +7149567 7170239 20673 15897737.7638 15898773.2289 41.2303 -21.8757 92.5616 run11.mat -1 -1 141 3592020 3602357 +7170546 7191238 20693 15898788.6975 15899822.5545 42.8757 -21.8761 92.5923 run11.mat -1 -1 141 3602510 3612857 +7191547 7212220 20674 15899838.0075 15900873.4105 44.5321 -21.8763 92.6387 run11.mat -1 -1 141 3613011 3623348 +7212527 7226627 14101 15900888.6447 15901594.0982 46.181 -21.8755 92.7148 run11.mat -1 -1 141 3623502 3630552 +7311011 7316642 5632 15905809.7777 15906093.1197 46.1801 -21.8752 94.0928 run11.mat -1 -1 142 3672746 3675558 +7316958 7337641 20684 15906108.7974 15907142.9311 47.8288 -21.8759 92.5757 run11.mat -1 -1 142 3675719 3686062 +7337951 7358643 20693 15907158.3112 15908193.9016 49.478 -21.8758 92.6123 run11.mat -1 -1 142 3686217 3696563 +7358947 7379623 20677 15908209.108 15909241.8099 51.1268 -21.8759 92.5644 run11.mat -1 -1 142 3696715 3707054 +7379928 7400602 20675 15909256.9419 15910292.0387 52.7783 -21.8761 92.6983 run11.mat -1 -1 142 3707206 3717543 +7400909 7406826 5918 15910307.5156 15910601.829 54.4226 -21.8767 92.9939 run11.mat -1 -1 142 3717697 3720656 +7491171 7504989 13819 15914819.2973 15915512.1329 54.4241 -21.8756 93.0219 run11.mat -1 -1 143 3762830 3769739 +7505308 7526002 20695 15915528.086 15916561.0904 56.0733 -21.8766 92.515 run11.mat -1 -1 143 3769899 3780246 +7526308 7546980 20673 15916576.3933 15917611.2436 57.724 -21.8763 92.5497 run11.mat -1 -1 143 3780399 3790736 +7547287 7567984 20698 15917626.6028 15918659.7157 59.3705 -21.8757 92.5216 run11.mat -1 -1 143 3790889 3801238 +7568289 7586965 18677 15918674.9721 15919611.042 61.02 -21.8766 92.7374 run11.mat -1 -1 143 3801391 3810729 +7671391 7672533 1143 15923831.4729 15923888.5948 61.0248 -21.8771 98.404 run11.mat -1 -1 144 3852944 3853515 +7672845 7693502 20658 15923904.1917 15924938.3074 62.6698 -21.8761 92.5972 run11.mat -1 -1 144 3853671 3864000 +7693810 7714502 20693 15924953.7106 15925988.5678 64.3163 -21.8762 92.6303 run11.mat -1 -1 144 3864154 3874500 +7714808 7735503 20696 15926003.871 15927034.8549 65.9686 -21.8762 92.5888 run11.mat -1 -1 144 3874653 3885001 +7735807 7756484 20678 15927050.0613 15928086.1371 67.6196 -21.8756 92.6846 run11.mat -1 -1 144 3885153 3895492 +7756790 7767265 10476 15928101.4401 15928623.6569 69.2623 -21.8763 92.8358 run11.mat -1 -1 144 3895645 3900883 +7851504 7860767 9264 15932836.7672 15933299.8198 69.2701 -21.8758 93.6767 run11.mat -1 -1 145 3943004 3947636 +7861080 7881750 20671 15933315.3517 15934350.1846 70.9163 -21.8759 92.4866 run11.mat -1 -1 145 3947793 3958128 +7882063 7902740 20678 15934365.8379 15935398.229 72.5697 -21.8758 92.5706 run11.mat -1 -1 145 3958284 3968623 +7903048 7923743 20696 15935413.5098 15936450.0049 74.2168 -21.8763 92.5453 run11.mat -1 -1 145 3968777 3979126 +7924049 7944702 20654 15936465.076 15937495.9782 75.8687 -21.8761 92.7569 run11.mat -1 -1 145 3979279 3989605 +7945008 7947326 2319 15937511.4078 15937628.2896 77.5063 -21.875 92.8205 run11.mat -1 -1 145 3989758 3990918 +8031697 8049264 17568 15941845.4699 15942724.8452 77.5187 -21.8753 93.1888 run11.mat -1 -1 146 4033105 4041889 +8049574 8070244 20671 15942740.2252 15943772.7233 79.1684 -21.8755 92.5075 run11.mat -1 -1 146 4042044 4052379 +8070550 8091261 20712 15943788.1498 15944825.3926 80.82 -21.8757 92.6027 run11.mat -1 -1 146 4052532 4062888 +8091568 8111885 20318 15944840.6268 15945855.8291 82.4659 -21.8757 92.6178 run11.mat -1 -1 146 4063042 4073200 +284756 305158 20403 16065619.9199 16066641.0273 82.4647 -20.1921 92.8385 run12.mat -1 -1 148 154733 164934 +305463 326158 20696 16066656.0491 16067689.4509 80.8154 -20.1921 92.6432 run12.mat -1 -1 148 165087 175435 +326466 347159 20694 16067704.7317 16068740.582 79.1695 -20.1924 92.5246 run12.mat -1 -1 148 175589 185936 +347465 368139 20675 16068755.8852 16069788.2304 77.5153 -20.1926 92.5609 run12.mat -1 -1 148 186089 196426 +368447 380545 12099 16069803.5112 16070408.904 75.8676 -20.1919 92.7308 run12.mat -1 -1 148 196580 202629 +464832 472457 7626 16074623.0373 16075004.7494 75.87 -20.192 93.468 run12.mat -1 -1 149 244775 248588 +472787 493464 20678 16075021.1217 16076055.0008 74.2181 -20.1925 92.5228 run12.mat -1 -1 149 248753 259092 +493772 514460 20689 16076070.2846 16077102.7595 72.5718 -20.1921 92.6208 run12.mat -1 -1 149 259246 269590 +514766 535458 20693 16077118.0654 16078155.4318 70.9184 -20.1931 92.5803 run12.mat -1 -1 149 269743 280089 +535766 556419 20654 16078170.7126 16079201.1698 69.2721 -20.1923 92.6247 run12.mat -1 -1 149 280243 290570 +556728 560625 3898 16079216.7475 16079413.2085 67.6198 -20.1933 92.9944 run12.mat -1 -1 149 290725 292673 +644920 660738 15819 16083627.7596 16084419.9424 67.6221 -20.1923 93.0498 run12.mat -1 -1 150 334823 342732 +661063 681742 20680 16084436.0699 16085467.9738 65.9732 -20.1924 92.5726 run12.mat -1 -1 150 342895 353235 +682049 695083 13035 16085483.205 16086136.6828 64.3155 -20.1928 92.6173 run12.mat -1 -1 150 353388 359906 +695333 702741 7409 16086149.2861 16086519.8472 64.3192 -20.1924 92.7048 run12.mat -1 -1 150 360031 363735 +703048 723718 20671 16086535.0784 16087566.3972 62.671 -20.1931 92.6166 run12.mat -1 -1 150 363888 374224 +724031 740684 16654 16087582.0828 16088414.9312 61.0229 -20.192 92.7936 run12.mat -1 -1 150 374380 382707 +824685 827838 3154 16092616.9289 16092773.3898 61.0176 -20.1911 95.2265 run12.mat -1 -1 151 424709 426285 +828166 848858 20693 16092789.6661 16093825.9264 59.3717 -20.193 92.5729 run12.mat -1 -1 151 426449 436796 +849167 869841 20675 16093841.4945 16094874.5043 57.7218 -20.192 92.551 run12.mat -1 -1 151 436951 447288 +870147 890837 20691 16094889.8073 16095923.0506 56.0698 -20.1927 92.5966 run12.mat -1 -1 151 447441 457787 +891145 911819 20675 16095938.5779 16096973.9696 54.423 -20.1925 92.611 run12.mat -1 -1 151 457941 468278 +912125 920585 8461 16096989.2726 16097410.5902 52.7734 -20.1912 92.7453 run12.mat -1 -1 151 468431 472661 +1004842 1016177 11336 16101623.5299 16102190.1655 52.7784 -20.1926 93.2378 run12.mat -1 -1 152 514792 520459 +1016503 1037200 20698 16102206.4723 16103241.617 51.1278 -20.1919 92.523 run12.mat -1 -1 152 520622 530971 +1037506 1058199 20694 16103256.92 16104292.8134 49.4776 -20.1924 92.5759 run12.mat -1 -1 152 531124 541471 +1058507 1079199 20693 16104308.0973 16105341.4624 47.8254 -20.1924 92.6286 run12.mat -1 -1 152 541625 551972 +1079504 1100161 20658 16105356.6549 16106391.4918 46.1826 -20.1916 92.704 run12.mat -1 -1 152 552124 562453 +1100467 1100604 138 16106406.7948 16106413.6461 44.5408 -20.1935 88.4635 run12.mat -1 -1 152 562606 562675 +1184869 1204440 19572 16110627.2104 16111604.7695 44.5322 -20.1921 92.9328 run12.mat -1 -1 153 604809 614595 +1204776 1225438 20663 16111621.576 16112653.1584 42.8775 -20.1926 92.5462 run12.mat -1 -1 153 614763 625094 +1225747 1246437 20691 16112668.4919 16113704.2019 41.234 -20.1915 92.6802 run12.mat -1 -1 153 625249 635595 +1246745 1267418 20674 16113719.6051 16114753.9837 39.5821 -20.1924 92.6375 run12.mat -1 -1 153 635749 646085 +1267726 1280624 12899 16114769.511 16115411.9937 37.9362 -20.1919 92.738 run12.mat -1 -1 153 646239 652689 +1364923 1371837 6915 16119629.134 16119976.5911 37.9337 -20.194 94.0674 run12.mat -1 -1 154 694840 698297 +1372166 1392847 20682 16119992.798 16121024.0944 36.2857 -20.1917 92.5267 run12.mat -1 -1 154 698462 708803 +1393160 1413838 20679 16121039.8738 16122074.3565 34.6329 -20.1929 92.6011 run12.mat -1 -1 154 708959 719299 +1414144 1434840 20697 16122089.783 16123123.9033 32.9846 -20.1921 92.5945 run12.mat -1 -1 154 719452 729800 +1435145 1455817 20673 16123139.1596 16124173.0738 31.3339 -20.1925 92.7085 run12.mat -1 -1 154 729952 740289 +1456124 1460684 4561 16124188.4302 16124417.9419 29.6812 -20.1914 92.9171 run12.mat -1 -1 154 740443 742723 +1546850 1561977 15128 16128726.4858 16129483.443 29.684 -20.1927 93.0967 run12.mat -1 -1 155 785807 793371 +1562304 1582980 20677 16129499.7964 16130531.8621 28.0317 -20.1922 92.4165 run12.mat -1 -1 155 793535 803874 +1583287 1603980 20694 16130547.0933 16131580.6721 26.3831 -20.1928 92.5284 run12.mat -1 -1 155 804027 814374 +1604294 1624979 20686 16131596.5019 16132632.811 24.7353 -20.193 92.5859 run12.mat -1 -1 155 814531 824874 +1625286 1642623 17338 16132648.2282 16133513.7491 23.0876 -20.1938 92.7486 run12.mat -1 -1 155 825028 833696 +1726897 1729277 2381 16137728.6897 16137847.7134 23.0831 -20.1904 94.6434 run12.mat -1 -1 156 875835 877025 +1729599 1750300 20702 16137863.8165 16138899.002 21.4353 -20.1924 92.587 run12.mat -1 -1 156 877186 887555 +1750606 1771276 20671 16138914.4285 16139948.0175 19.7875 -20.1921 92.6455 run12.mat -1 -1 156 887690 898026 +1771585 1792279 20695 16139963.3509 16140996.1403 18.1404 -20.1921 92.645 run12.mat -1 -1 156 898180 908528 +1792587 1813259 20673 16141011.4211 16142046.9487 16.4868 -20.1921 92.652 run12.mat -1 -1 156 908682 919018 +1813568 1822703 9136 16142062.4026 16142517.5731 14.844 -20.1923 92.7494 run12.mat -1 -1 156 919173 923740 +1906915 1917539 10625 16146729.2376 16147260.8147 14.8444 -20.1934 93.3123 run12.mat -1 -1 157 965848 971160 +1917855 1938538 20684 16147276.7453 16148311.5484 13.1911 -20.1918 92.5996 run12.mat -1 -1 157 971318 981660 +1938846 1959539 20694 16148326.8976 16149361.9081 11.5429 -20.1923 92.6386 run12.mat -1 -1 157 981814 992161 +1959848 1980519 20672 16149377.361 16150407.114 9.8976 -20.1932 92.598 run12.mat -1 -1 157 992316 1002652 +1980828 2001481 20654 16150422.5672 16151455.4741 8.2463 -20.1922 92.7335 run12.mat -1 -1 157 1002806 1013133 +2001786 2002743 958 16151470.7272 16151518.5872 6.6051 -20.1942 92.6289 run12.mat -1 -1 157 1013286 1013764 +2086694 2105599 18906 16155717.1937 16156662.0688 6.593 -20.1916 93.0386 run12.mat -1 -1 158 1055741 1065194 +2105930 2126585 20656 16156678.7556 16157712.536 4.9467 -20.1935 92.603 run12.mat -1 -1 158 1065360 1075688 +2126900 2147580 20681 16157728.1641 16158762.4922 3.2977 -20.1921 92.6655 run12.mat -1 -1 158 1075845 1086186 +2147890 2168564 20675 16158778.1204 16159811.2015 1.6489 -20.1923 92.6041 run12.mat -1 -1 158 1086341 1096678 +2168870 2182582 13713 16159826.6279 16160512.5134 0.00083013 -20.1928 92.9106 run12.mat -1 -1 158 1096831 1103688 +2266833 2272841 6009 16164722.9964 16165024.9256 -0.0040766 -20.1933 93.7736 run12.mat -1 -1 159 1145815 1148819 +2273146 2293860 20715 16165040.1788 16166078.8517 -1.6494 -20.1929 92.6043 run12.mat -1 -1 159 1148972 1159329 +2294168 2314861 20694 16166094.3139 16167125.4447 -3.3016 -20.1928 92.6208 run12.mat -1 -1 159 1159483 1169830 +2315168 2335849 20682 16167140.7977 16168175.3331 -4.946 -20.1919 92.5395 run12.mat -1 -1 159 1169984 1180324 +2336163 2356844 20682 16168191.1629 16169226.4987 -6.5978 -20.1925 92.64 run12.mat -1 -1 159 1180481 1190823 +2357149 2362642 5494 16169241.6307 16169515.1235 -8.2526 -20.1933 92.6049 run12.mat -1 -1 159 1190975 1193721 +2446939 2461141 14203 16173731.6503 16174440.4032 -8.2491 -20.1925 93.0385 run12.mat -1 -1 160 1235872 1242973 +2461470 2482161 20692 16174456.8563 16175492.2597 -9.8961 -20.1915 92.517 run12.mat -1 -1 160 1243138 1253484 +2482469 2503141 20673 16175507.7871 16176539.8177 -11.5456 -20.1919 92.6302 run12.mat -1 -1 160 1253638 1263974 +2503449 2524138 20690 16176555.345 16177589.79 -13.1911 -20.192 92.5591 run12.mat -1 -1 160 1264128 1274473 +2524448 2542702 18255 16177605.1731 16178519.5657 -14.8457 -20.1923 92.7241 run12.mat -1 -1 160 1274628 1283756 +2626921 2628539 1619 16182730.2749 16182810.5487 -14.8497 -20.1937 97.6113 run12.mat -1 -1 161 1325861 1326658 +2628878 2649540 20663 16182827.3675 16183861.8348 -16.4924 -20.1927 92.5845 run12.mat -1 -1 161 1326845 1337177 +2649850 2670521 20672 16183877.338 16184909.1862 -18.1388 -20.1926 92.5963 run12.mat -1 -1 161 1337332 1347667 +2670829 2691520 20692 16184924.5922 16185958.4543 -19.7887 -20.1925 92.6815 run12.mat -1 -1 161 1347821 1358168 +2691825 2712501 20677 16185973.7073 16187009.7633 -21.4339 -20.1928 92.6289 run12.mat -1 -1 161 1358320 1368659 +2712809 2722741 9933 16187025.1665 16187519.8661 -23.093 -20.1922 92.8269 run12.mat -1 -1 161 1368813 1373779 +2806793 2816579 9787 16191723.5848 16192213.2072 -23.0891 -20.1924 93.2021 run12.mat -1 -1 162 1415807 1420700 +2816897 2837582 20686 16192229.1138 16193262.6646 -24.7378 -20.1921 92.5113 run12.mat -1 -1 162 1420859 1431202 +2837891 2858583 20693 16193278.1175 16194312.9742 -26.3861 -20.1924 92.5666 run12.mat -1 -1 162 1431356 1441703 +2858890 2879582 20693 16194328.3272 16195363.8817 -28.0332 -20.1921 92.6536 run12.mat -1 -1 162 1441856 1452203 +2879887 2900539 20653 16195379.0167 16196411.3863 -29.6892 -20.1929 92.6148 run12.mat -1 -1 162 1452355 1462682 +2900848 2902581 1734 16196426.8422 16196512.9853 -31.3388 -20.1911 92.7499 run12.mat -1 -1 162 1462837 1463703 +2986802 3004820 18019 16200724.8253 16201625.7861 -31.3394 -20.1933 92.9178 run12.mat -1 -1 163 1505815 1514825 +3005147 3025823 20677 16201642.1393 16202676.0658 -32.9857 -20.1923 92.6551 run12.mat -1 -1 163 1514988 1525326 +3026127 3046805 20679 16202691.3945 16203726.3422 -34.6385 -20.1921 92.5923 run12.mat -1 -1 163 1525478 1535818 +3047119 3067801 20683 16203741.9238 16204776.6162 -36.2883 -20.1928 92.6066 run12.mat -1 -1 163 1535975 1546317 +3068106 3082621 14516 16204791.8693 16205515.283 -37.9403 -20.192 92.7798 run12.mat -1 -1 163 1546469 1553727 +3166905 3172121 5217 16209730.8238 16209990.4217 -37.9466 -20.1929 94.3606 run12.mat -1 -1 164 1595871 1598479 +3172445 3193140 20696 16210006.7556 16211040.2188 -39.584 -20.1923 92.5098 run12.mat -1 -1 164 1598641 1608989 +3193448 3214111 20664 16211055.622 16212091.029 -41.2325 -20.1921 92.5247 run12.mat -1 -1 164 1609143 1619475 +3214429 3235117 20689 16212106.9321 16213140.0298 -42.8827 -20.1921 92.5937 run12.mat -1 -1 164 1619634 1629978 +3235427 3256086 20660 16213155.4129 16214188.3417 -44.5301 -20.1921 92.7419 run12.mat -1 -1 164 1630133 1640463 +3256403 3262701 6299 16214204.1978 16214519.1633 -46.1799 -20.1904 92.7717 run12.mat -1 -1 164 1640621 1643771 +3346978 3360380 13403 16218733.0546 16219403.951 -46.177 -20.1921 93.143 run12.mat -1 -1 165 1685911 1692613 +3360709 3381388 20680 16219420.2737 16220455.8256 -47.8289 -20.1925 92.5744 run12.mat -1 -1 165 1692777 1703117 +3381701 3402400 20700 16220471.6001 16221503.1133 -49.4765 -20.1922 92.6354 run12.mat -1 -1 165 1703273 1713624 +3402709 3423382 20674 16221518.6911 16222553.6335 -51.1266 -20.1932 92.5859 run12.mat -1 -1 165 1713778 1724115 +3423688 3442779 19092 16222568.815 16223522.7241 -52.7752 -20.1928 92.7688 run12.mat -1 -1 165 1724268 1733814 +3526852 3527582 731 16227726.1238 16227762.5039 -52.7814 -20.1967 100.8194 run12.mat -1 -1 166 1775852 1776217 +3527906 3548565 20660 16227778.7071 16228813.4331 -54.4253 -20.1929 92.6856 run12.mat -1 -1 166 1776379 1786709 +3548873 3569544 20672 16228828.717 16229861.1707 -56.0744 -20.1932 92.6457 run12.mat -1 -1 166 1786863 1797199 +3569851 3590544 20694 16229876.5239 16230913.4811 -57.7273 -20.1925 92.6345 run12.mat -1 -1 166 1797352 1807699 +3590850 3603837 12988 16230928.784 16231574.5726 -59.3738 -20.1929 92.7001 run12.mat -1 -1 166 1807852 1814346 +3604088 3611544 7457 16231587.1775 16231962.4172 -59.3712 -20.1927 92.7411 run12.mat -1 -1 166 1814472 1818200 +3611852 3622660 10809 16231977.9445 16232518.706 -61.0288 -20.1926 92.7247 run12.mat -1 -1 166 1818354 1823758 +3706785 3715762 8978 16236723.5668 16237171.9661 -61.0229 -20.1926 93.7497 run12.mat -1 -1 167 1865822 1870311 +3716089 3736766 20678 16237188.1895 16238223.9758 -62.6756 -20.1922 92.4956 run12.mat -1 -1 167 1870475 1880814 +3737070 3757765 20696 16238239.3015 16239272.8371 -64.3257 -20.1926 92.6269 run12.mat -1 -1 167 1880966 1891313 +3758076 3778765 20690 16239288.3017 16240323.2075 -65.9782 -20.1932 92.6672 run12.mat -1 -1 167 1891469 1901814 +3779073 3799739 20667 16240338.7348 16241370.0108 -67.6241 -20.1927 92.6886 run12.mat -1 -1 167 1901968 1912302 +3800049 3802680 2632 16241385.5138 16241517.0891 -69.273 -20.1917 92.7079 run12.mat -1 -1 167 1912457 1913772 +3886998 3904204 17207 16245735.1334 16246595.7745 -69.2711 -20.193 93.0627 run12.mat -1 -1 168 1955933 1964537 +3904523 3925206 20684 16246611.8596 16247644.6532 -70.9202 -20.1912 92.5844 run12.mat -1 -1 168 1964696 1975038 +3925511 3946206 20696 16247660.0292 16248695.1533 -72.5687 -20.1924 92.5641 run12.mat -1 -1 168 1975190 1985538 +3946513 3967184 20672 16248710.6302 16249744.7096 -74.2202 -20.1926 92.6183 run12.mat -1 -1 168 1985692 1996028 +3967493 3982740 15248 16249760.2874 16250522.181 -75.863 -20.1921 92.7673 run12.mat -1 -1 168 1996182 2003806 +4067023 4071601 4579 16254735.8038 16254965.6491 -75.8618 -20.194 94.7859 run12.mat -1 -1 169 2045949 2048238 +4071907 4092606 20700 16254981.0756 16256015.3332 -77.5159 -20.1923 92.5465 run12.mat -1 -1 169 2048391 2058741 +4092925 4113606 20682 16256031.2865 16257063.5912 -79.1658 -20.1919 92.5797 run12.mat -1 -1 169 2058901 2069242 +4113913 4134607 20695 16257078.9444 16258116.9496 -80.8173 -20.1914 92.6468 run12.mat -1 -1 169 2069395 2079743 +4134913 4155586 20674 16258132.132 16259164.122 -82.4653 -20.1921 92.6096 run12.mat -1 -1 169 2079896 2090233 +4155894 4162819 6926 16259179.5279 16259527.1633 -82.4582 -18.5082 92.9526 run12.mat -1 -1 169 2090387 2093850 +4247125 4259912 12788 16263742.1541 16264380.8467 -82.4638 -18.5073 93.1798 run12.mat -1 -1 170 2136004 2142398 +4260231 4280925 20695 16264396.7998 16265432.029 -80.816 -18.5094 92.6124 run12.mat -1 -1 170 2142558 2152905 +4281234 4301915 20682 16265447.6068 16266480.8537 -79.1688 -18.5094 92.5593 run12.mat -1 -1 170 2153060 2163401 +4302228 4322907 20680 16266496.3826 16267529.3772 -77.5173 -18.5098 92.5354 run12.mat -1 -1 170 2163557 2173897 +4323214 4342918 19705 16267544.7301 16268531.1613 -75.8658 -18.508 92.7514 run12.mat -1 -1 170 2174050 2183903 +4427281 4427336 56 16272748.8386 16272751.613 -75.9296 -18.5081 101.4863 run12.mat -1 -1 171 2226086 2226113 +4427658 4448269 20612 16272767.8559 16273799.0202 -74.2217 -18.5089 92.7732 run12.mat -1 -1 171 2226274 2236581 +4448572 4469269 20698 16273814.2954 16274848.5123 -72.5744 -18.5099 92.5908 run12.mat -1 -1 171 2236732 2247081 +4469574 4490269 20696 16274863.7687 16275899.1607 -70.9209 -18.5093 92.5821 run12.mat -1 -1 171 2247233 2257582 +4490575 4511246 20672 16275914.3423 16276948.9034 -69.2729 -18.5097 92.6121 run12.mat -1 -1 171 2257735 2268070 +4511556 4523038 11483 16276964.4094 16277536.6681 -67.6218 -18.5092 92.8048 run12.mat -1 -1 171 2268225 2273967 +4607163 4615491 8329 16281743.0042 16282160.9254 -67.624 -18.5077 93.7856 run12.mat -1 -1 172 2316031 2320195 +4615799 4636489 20691 16282176.4527 16283209.7852 -65.9757 -18.5084 92.5077 run12.mat -1 -1 172 2320349 2330695 +4636795 4657486 20692 16283225.0331 16284261.5677 -64.3198 -18.5081 92.6332 run12.mat -1 -1 172 2330848 2341194 +4657795 4678470 20676 16284276.9012 16285309.267 -62.6718 -18.5087 92.5556 run12.mat -1 -1 172 2341348 2351686 +4678777 4699449 20673 16285324.6199 16286357.4358 -61.023 -18.5091 92.6759 run12.mat -1 -1 172 2351840 2362176 +4699755 4703058 3304 16286372.6174 16286537.5457 -59.3747 -18.5079 92.8715 run12.mat -1 -1 172 2362329 2363981 +4787332 4803756 16425 16290754.6901 16291572.6796 -59.3741 -18.508 92.9723 run12.mat -1 -1 173 2406120 2414332 +4804076 4824749 20674 16291588.8119 16292623.1828 -57.7272 -18.5087 92.635 run12.mat -1 -1 173 2414492 2424829 +4825055 4845747 20693 16292638.3644 16293673.6922 -56.0702 -18.5079 92.6521 run12.mat -1 -1 173 2424982 2435329 +4846056 4866746 20691 16293689.2731 16294725.4299 -54.4254 -18.5084 92.6224 run12.mat -1 -1 173 2435483 2445828 +4867054 4883118 16065 16294740.8973 16295542.204 -52.7759 -18.5075 92.689 run12.mat -1 -1 173 2445982 2454015 +4967419 4971188 3770 16299758.5398 16299945.7307 -52.7783 -18.5072 95.34 run12.mat -1 -1 174 2496167 2498052 +4971496 4992170 20675 16299961.0115 16300992.8412 -51.1283 -18.509 92.3862 run12.mat -1 -1 174 2498206 2508543 +4992486 5013169 20684 16301008.519 16302043.6988 -49.4771 -18.5088 92.6489 run12.mat -1 -1 174 2508701 2519043 +5013476 5034167 20692 16302059.0563 16303093.9192 -47.8281 -18.5078 92.6459 run12.mat -1 -1 174 2519196 2529542 +5034475 5055148 20674 16303109.3251 16304144.5121 -46.1817 -18.5094 92.6373 run12.mat -1 -1 174 2529696 2540033 +5055456 5063158 7703 16304159.796 16304541.944 -44.5344 -18.5112 92.8721 run12.mat -1 -1 174 2540187 2544039 +5147217 5159370 12154 16308747.4271 16309356.4484 -44.5364 -18.5081 93.3223 run12.mat -1 -1 175 2586070 2592147 +5159679 5180368 20690 16309371.7758 16310404.105 -42.8831 -18.5092 92.5741 run12.mat -1 -1 175 2592302 2602646 +5180677 5201347 20671 16310419.4354 16311453.05 -41.2346 -18.5079 92.571 run12.mat -1 -1 175 2602801 2613136 +5201657 5222371 20715 16311468.6782 16312504.1804 -39.5861 -18.5089 92.5544 run12.mat -1 -1 175 2613291 2623649 +5222679 5243037 20359 16312519.4612 16313537.1316 -37.9371 -18.5096 92.772 run12.mat -1 -1 175 2623803 2633982 +5327294 5347774 20481 16317750.0092 16318772.92 -36.2851 -18.5086 92.9985 run12.mat -1 -1 176 2676112 2686353 +5348095 5368770 20676 16318788.8458 16319823.1429 -34.6348 -18.5084 92.5856 run12.mat -1 -1 176 2686514 2696851 +5369079 5389757 20679 16319838.3645 16320873.1504 -32.9866 -18.5082 92.6364 run12.mat -1 -1 176 2697006 2707345 +5390073 5410767 20695 16320889.0811 16321925.8632 -31.3361 -18.5086 92.7022 run12.mat -1 -1 176 2707503 2717851 +5411076 5423117 12042 16321941.3162 16322542.8923 -29.6847 -18.5078 92.8146 run12.mat -1 -1 176 2718005 2724026 +5507326 5514971 7646 16326751.9425 16327136.3366 -29.692 -18.5103 93.5607 run12.mat -1 -1 177 2766132 2769955 +5515281 5535987 20707 16327151.7197 16328187.1943 -28.0324 -18.5088 92.5339 run12.mat -1 -1 177 2770110 2780463 +5536296 5556971 20676 16328202.5247 16329236.2616 -26.3875 -18.5092 92.6309 run12.mat -1 -1 177 2780618 2790956 +5557277 5577954 20678 16329251.4431 16330283.4881 -24.7364 -18.5079 92.6289 run12.mat -1 -1 177 2791109 2801448 +5578262 5598931 20670 16330299.0186 16331333.004 -23.091 -18.5089 92.6839 run12.mat -1 -1 177 2801602 2811937 +5599237 5603117 3881 16331348.4336 16331541.7289 -21.4254 -18.5093 92.8614 run12.mat -1 -1 177 2812090 2814030 +5687391 5703262 15872 16335757.948 16336550.5044 -21.435 -18.5096 92.9689 run12.mat -1 -1 178 2856169 2864105 +5703579 5724253 20675 16336566.3605 16337598.9583 -19.7922 -18.5094 92.6012 run12.mat -1 -1 178 2864263 2874601 +5724574 5745251 20678 16337614.8873 16338648.4806 -18.1416 -18.5093 92.5639 run12.mat -1 -1 178 2874761 2885100 +5745557 5766234 20678 16338663.7865 16339700.9542 -16.4946 -18.5086 92.6332 run12.mat -1 -1 178 2885253 2895592 +5766543 5783176 16634 16339716.4102 16340547.1501 -14.8473 -18.5098 92.8008 run12.mat -1 -1 178 2895746 2904063 +5867467 5870662 3196 16344759.613 16344918.1266 -14.8484 -18.5097 95.2928 run12.mat -1 -1 179 2946211 2947808 +5870980 5891649 20670 16344933.9036 16345967.6378 -13.1952 -18.5087 92.5485 run12.mat -1 -1 179 2947967 2958302 +5891960 5912649 20690 16345983.0013 16347019.0194 -11.5472 -18.5096 92.6156 run12.mat -1 -1 179 2958458 2968803 +5912957 5933651 20695 16347034.5498 16348070.3253 -9.8989 -18.5084 92.6176 run12.mat -1 -1 179 2968957 2979304 +5933956 5954648 20693 16348085.4572 16349119.2576 -8.2487 -18.5099 92.6735 run12.mat -1 -1 179 2979457 2989803 +5954959 5963256 8298 16349134.8141 16349549.8287 -6.6015 -18.5076 92.8413 run12.mat -1 -1 179 2989959 2994107 +6047521 6058931 11411 16353764.248 16354334.4763 -6.5983 -18.508 93.253 run12.mat -1 -1 180 3036242 3041961 +6059240 6079930 20691 16354350.054 16355382.9921 -4.9442 -18.5096 92.5501 run12.mat -1 -1 180 3042102 3052447 +6080238 6100931 20694 16355398.5195 16356432.8891 -3.2975 -18.5077 92.6409 run12.mat -1 -1 180 3052601 3062948 +6101237 6121910 20674 16356448.0706 16357483.3148 -1.6483 -18.5084 92.6046 run12.mat -1 -1 180 3063101 3073438 +6122217 6142891 20675 16357498.7917 16358530.8611 -0.0020519 -18.5089 92.7978 run12.mat -1 -1 180 3073591 3083929 +6143199 6143316 118 16358546.267 16358552.1193 1.6737 -18.5212 93.4067 run12.mat -1 -1 180 3084083 3084141 +6227593 6247199 19607 16362768.0438 16363746.5911 1.6483 -18.5092 92.8159 run12.mat -1 -1 181 3126282 3136085 +6247517 6268192 20676 16363762.4941 16364796.5515 3.2988 -18.5091 92.5483 run12.mat -1 -1 181 3136244 3146582 +6268500 6289182 20683 16364811.9579 16365845.9476 4.9445 -18.5086 92.606 run12.mat -1 -1 181 3146736 3157078 +6289492 6310171 20680 16365861.3307 16366896.0186 6.5965 -18.5079 92.6792 run12.mat -1 -1 181 3157233 3167572 +6310482 6323395 12914 16366911.6971 16367556.6033 8.2427 -18.5078 92.7366 run12.mat -1 -1 181 3167728 3174185 +6407594 6414407 6814 16371766.0242 16372108.5793 8.246 -18.5095 93.7463 run12.mat -1 -1 182 3216286 3219693 +6414727 6435411 20685 16372124.644 16373159.1159 9.897 -18.5089 92.425 run12.mat -1 -1 182 3219853 3230195 +6435720 6456413 20694 16373174.4463 16374208.4343 11.5409 -18.5085 92.5862 run12.mat -1 -1 182 3230350 3240697 +6456720 6477392 20673 16374224.0272 16375257.0246 13.1918 -18.5091 92.5803 run12.mat -1 -1 182 3240850 3251187 +6477700 6498373 20674 16375272.5519 16376304.8458 14.8416 -18.5092 92.6325 run12.mat -1 -1 182 3251341 3261678 +6498680 6503394 4715 16376320.199 16376555.9888 16.4914 -18.5081 92.5669 run12.mat -1 -1 182 3261831 3264188 +6587576 6602819 15244 16380765.1825 16381528.9179 16.4883 -18.5083 93.08 run12.mat -1 -1 183 3306281 3313903 +6603131 6623796 20666 16381544.6469 16382578.6895 18.1356 -18.5087 92.6205 run12.mat -1 -1 183 3314059 3324392 +6624102 6644803 20702 16382593.9954 16383627.2148 19.7864 -18.5095 92.6021 run12.mat -1 -1 183 3324545 3334896 +6645117 6665798 20682 16383642.7963 16384678.3628 21.4372 -18.5082 92.5538 run12.mat -1 -1 183 3335053 3345394 +6666115 6683476 17362 16384694.2161 16385562.0887 23.0867 -18.5077 92.817 run12.mat -1 -1 183 3345552 3354233 +6767523 6769916 2394 16389762.9076 16389883.5712 23.0901 -18.5089 96.0727 run12.mat -1 -1 184 3396259 3397455 +6770237 6790913 20677 16389899.6526 16390931.721 24.7372 -18.5082 92.5023 run12.mat -1 -1 184 3397616 3407954 +6791220 6811917 20698 16390947.077 16391983.8713 26.3858 -18.5085 92.5897 run12.mat -1 -1 184 3408108 3418456 +6812223 6832895 20673 16391999.3009 16393032.3758 28.036 -18.5093 92.62 run12.mat -1 -1 184 3418609 3428946 +6833202 6853893 20692 16393047.7288 16394082.5343 29.6877 -18.5088 92.7026 run12.mat -1 -1 184 3429099 3439445 +6854203 6863375 9173 16394098.0375 16394555.6761 31.3354 -18.5105 92.8243 run12.mat -1 -1 184 3439600 3444187 +6947667 6958207 10541 16398772.5642 16399297.6872 31.339 -18.5074 93.3836 run12.mat -1 -1 185 3486335 3491605 +6958525 6979216 20692 16399313.7187 16400347.8549 32.9854 -18.5083 92.6344 run12.mat -1 -1 185 3491764 3502109 +6979523 7000196 20674 16400363.0861 16401398.3425 34.6346 -18.5086 92.5835 run12.mat -1 -1 185 3502263 3512600 +7000503 7021197 20695 16401413.8225 16402448.9 36.286 -18.5077 92.5913 run12.mat -1 -1 185 3512754 3523101 +7021503 7042172 20670 16402464.2063 16403497.5711 37.9338 -18.5094 92.7488 run12.mat -1 -1 185 3523254 3533589 +7042480 7043474 995 16403512.852 16403562.1673 39.5795 -18.5013 92.3249 run12.mat -1 -1 185 3533743 3534240 +7127543 7146277 18735 16407765.1664 16408703.5015 39.5794 -18.5095 92.8486 run12.mat -1 -1 186 3576276 3585644 +7146586 7167257 20672 16408718.9579 16409750.8117 41.2298 -18.509 92.5086 run12.mat -1 -1 186 3585798 3596134 +7167566 7188258 20693 16409766.2647 16410800.3949 42.8759 -18.5104 92.6668 run12.mat -1 -1 186 3596289 3606635 +7188565 7209238 20674 16410815.6261 16411849.2914 44.5294 -18.5086 92.5469 run12.mat -1 -1 186 3606789 3617126 +7209546 7223314 13769 16411864.5752 16412554.7715 46.1738 -18.5088 92.7757 run12.mat -1 -1 186 3617280 3624164 +7307550 7313516 5967 16416764.3 16417062.6352 46.1772 -18.5069 94.1226 run12.mat -1 -1 187 3666284 3669267 +7313827 7334512 20686 16417078.1912 16418113.8715 47.8257 -18.5087 92.5955 run12.mat -1 -1 187 3669422 3679765 +7334822 7355517 20696 16418129.4997 16419163.824 49.4723 -18.5091 92.5871 run12.mat -1 -1 187 3679920 3690268 +7355825 7376497 20673 16419179.1048 16420212.5462 51.1249 -18.5086 92.5589 run12.mat -1 -1 187 3690422 3700759 +7376805 7397478 20674 16420227.9494 16421262.766 52.7779 -18.5084 92.6557 run12.mat -1 -1 187 3700913 3711250 +7397786 7403333 5548 16421278.0468 16421553.6699 54.4262 -18.5079 92.8466 run12.mat -1 -1 187 3711404 3714177 +7487441 7501711 14271 16425760.2136 16426473.8883 54.4254 -18.5075 93.2082 run12.mat -1 -1 188 3756233 3763368 +7502023 7522686 20664 16426489.4948 16427521.9034 56.0769 -18.5091 92.4593 run12.mat -1 -1 188 3763524 3773856 +7523002 7543701 20700 16427537.7095 16428574.5479 57.7279 -18.5089 92.6358 run12.mat -1 -1 188 3774014 3784365 +7544004 7564677 20674 16428589.5807 16429622.7358 59.3766 -18.5092 92.6297 run12.mat -1 -1 188 3784516 3794853 +7564985 7583213 18229 16429638.2632 16430547.0843 61.0223 -18.5081 92.8017 run12.mat -1 -1 188 3795007 3804121 +7667531 7669137 1607 16434765.3018 16434844.9804 61.031 -18.507 97.169 run12.mat -1 -1 189 3846282 3847085 +7669447 7690133 20687 16434860.3604 16435895.419 62.6706 -18.5081 92.6189 run12.mat -1 -1 189 3847240 3857584 +7690441 7711119 20679 16435910.8223 16436943.9087 64.3245 -18.5079 92.5108 run12.mat -1 -1 189 3857738 3868077 +7711425 7732120 20696 16436959.0903 16437994.105 65.9741 -18.5089 92.5991 run12.mat -1 -1 189 3868230 3878578 +7732426 7753098 20673 16438009.4668 16439043.6386 67.6231 -18.5075 92.56 run12.mat -1 -1 189 3878731 3889068 +7753407 7763313 9907 16439059.0339 16439556.2787 69.2701 -18.509 92.7331 run12.mat -1 -1 189 3889222 3894175 +7847275 7857188 9914 16443753.1428 16444249.3835 69.27 -18.5087 93.5652 run12.mat -1 -1 190 3936158 3941115 +7857509 7878196 20688 16444265.4366 16445300.761 70.9171 -18.5091 92.5455 run12.mat -1 -1 190 3941275 3951620 +7878503 7899186 20684 16445316.238 16446348.7789 72.5679 -18.5084 92.6252 run12.mat -1 -1 190 3951773 3962115 +7899502 7920180 20679 16446364.4597 16447397.1456 74.214 -18.5085 92.6369 run12.mat -1 -1 190 3962273 3972612 +7920486 7941158 20673 16447412.5752 16448447.1609 75.8654 -18.5085 92.7187 run12.mat -1 -1 190 3972765 3983102 +7941464 7943173 1710 16448462.3425 16448547.1312 77.4978 -18.5129 92.7123 run12.mat -1 -1 190 3983255 3984109 +8027383 8045461 18079 16452758.5023 16453659.6094 77.5125 -18.5089 93.0427 run12.mat -1 -1 191 4026216 4035255 +8045780 8066458 20679 16453675.5661 16454709.7652 79.1656 -18.5095 92.6397 run12.mat -1 -1 191 4035415 4045755 +8066764 8087440 20677 16454725.0683 16455761.1758 80.8132 -18.5091 92.5327 run12.mat -1 -1 191 4045908 4056246 +8087745 8108085 20341 16455776.4287 16456791.6822 82.4613 -18.5076 92.5507 run12.mat -1 -1 191 4056399 4066569 +291208 311719 20512 -185214.5305 -184180.2929 82.4623 -16.8285 92.817 run13.mat -1 -1 193 1 1 +312025 332698 20674 -184164.8633 -183122.457 80.8155 -16.829 92.6045 run13.mat -1 -1 193 1 1 +333005 353697 20693 -183106.977 -182063.6127 79.1641 -16.8294 92.6106 run13.mat -1 -1 193 1 1 +354004 374698 20695 -182048.1327 -181004.6676 77.5117 -16.8284 92.6558 run13.mat -1 -1 193 1 1 +375009 387104 12096 -180988.9859 -180379.1129 75.8639 -16.8275 92.623 run13.mat -1 -1 193 1 1 +471090 478826 7737 -176144.24 -175754.1634 75.8636 -16.8288 93.9133 run13.mat -1 -1 194 1 1 +479138 499837 20700 -175738.4312 -174694.714 74.214 -16.8276 92.5937 run13.mat -1 -1 194 1 1 +500145 520820 20676 -174679.1835 -173636.6765 72.5679 -16.8286 92.6341 run13.mat -1 -1 194 1 1 +521126 541815 20690 -173621.2469 -172578.0339 70.9159 -16.8283 92.6525 run13.mat -1 -1 194 1 1 +542124 562798 20675 -172562.453 -171519.9964 69.2677 -16.8301 92.6836 run13.mat -1 -1 194 1 1 +563105 566984 3880 -171504.5163 -171308.9234 67.6121 -16.8285 92.9537 run13.mat -1 -1 194 1 1 +651132 667096 15965 -167065.8818 -166260.9201 67.6202 -16.8291 93.2359 run13.mat -1 -1 195 1 1 +667402 688095 20694 -166245.4905 -165202.0758 65.9717 -16.8282 92.6254 run13.mat -1 -1 195 1 1 +688403 709078 20676 -165186.5454 -164144.0383 64.3225 -16.8292 92.6039 run13.mat -1 -1 195 1 1 +709385 730077 20693 -164128.5583 -163085.194 62.673 -16.8294 92.6237 run13.mat -1 -1 195 1 1 +730385 747023 16639 -163069.6636 -162230.7164 61.0256 -16.8292 92.725 run13.mat -1 -1 195 1 1 +831361 834416 3056 -157978.0944 -157824.0504 61.0135 -16.8291 94.5246 run13.mat -1 -1 196 1 1 +834739 855418 20680 -157807.7636 -156765.0549 59.3759 -16.8288 92.4518 run13.mat -1 -1 196 1 1 +855723 876416 20694 -156749.6757 -155706.261 57.7292 -16.8301 92.647 run13.mat -1 -1 196 1 1 +876723 897398 20676 -155690.781 -154648.2739 56.0776 -16.8288 92.5088 run13.mat -1 -1 196 1 1 +897703 918378 20676 -154632.8947 -153590.3877 54.4264 -16.8291 92.6468 run13.mat -1 -1 196 1 1 +918684 927122 8439 -153574.958 -153149.4841 52.7786 -16.8282 92.7163 run13.mat -1 -1 196 1 1 +1011335 1022656 11322 -148903.165 -148332.3199 52.7826 -16.8269 93.0775 run13.mat -1 -1 197 1 1 +1022982 1043677 20696 -148315.8818 -147272.3663 51.1276 -16.8286 92.5299 run13.mat -1 -1 197 1 1 +1043983 1064660 20678 -147256.9367 -146214.3288 49.4767 -16.8287 92.5361 run13.mat -1 -1 197 1 1 +1064964 1085656 20693 -146199 -145155.6357 47.8266 -16.8294 92.6501 run13.mat -1 -1 197 1 1 +1085965 1106618 20654 -145140.0549 -144098.6571 46.1761 -16.8283 92.7277 run13.mat -1 -1 197 1 1 +1106926 1107162 237 -144083.1267 -144071.2267 44.5561 -16.8246 92.3627 run13.mat -1 -1 197 1 1 +1191424 1210936 19513 -139822.4369 -138838.5724 44.5285 -16.8293 92.9137 run13.mat -1 -1 198 1 1 +1211263 1231939 20677 -138822.0839 -137779.5264 42.876 -16.829 92.5981 run13.mat -1 -1 198 1 1 +1232250 1252938 20689 -137763.8447 -136720.6821 41.2263 -16.8285 92.548 run13.mat -1 -1 198 1 1 +1253245 1273940 20696 -136705.2021 -135661.6866 39.581 -16.8288 92.5688 run13.mat -1 -1 198 1 1 +1274245 1287222 12978 -135646.3074 -134991.9609 37.9323 -16.8301 92.7391 run13.mat -1 -1 198 1 1 +1371322 1378038 6717 -130751.3397 -130412.695 37.932 -16.8274 93.4481 run13.mat -1 -1 199 1 1 +1378363 1399039 20677 -130396.3074 -129353.7499 36.2859 -16.829 92.5092 run13.mat -1 -1 199 1 1 +1399346 1420040 20695 -129338.2699 -128294.8048 34.6318 -16.8284 92.5816 run13.mat -1 -1 199 1 1 +1420347 1441027 20681 -128279.3247 -127236.5656 32.9848 -16.8293 92.5545 run13.mat -1 -1 199 1 1 +1441339 1462000 20662 -127220.8334 -126179.0323 31.3364 -16.8282 92.6385 run13.mat -1 -1 199 1 1 +1462307 1467102 4796 -126163.5522 -125921.7713 29.6926 -16.8284 92.7476 run13.mat -1 -1 199 1 1 +1551444 1566477 15034 -121668.9476 -120910.9302 29.6891 -16.8301 93.1681 run13.mat -1 -1 200 1 1 +1566809 1587479 20671 -120894.1896 -119851.9347 28.0373 -16.8286 92.5372 run13.mat -1 -1 200 1 1 +1587786 1608460 20675 -119836.4546 -118793.998 26.3879 -16.8299 92.5523 run13.mat -1 -1 200 1 1 +1608768 1629459 20692 -118778.4675 -117735.1537 24.7405 -16.8286 92.6578 run13.mat -1 -1 200 1 1 +1629769 1647202 17434 -117719.5224 -116840.4885 23.0913 -16.8289 92.7036 run13.mat -1 -1 200 1 1 +1731392 1733898 2507 -112595.3292 -112468.9677 23.0824 -16.8292 95.7749 run13.mat -1 -1 201 1 1 +1734234 1754919 20686 -112452.0254 -111409.0141 21.4385 -16.8284 92.5553 run13.mat -1 -1 201 1 1 +1755228 1775902 20675 -111393.4332 -110350.9766 19.7839 -16.829 92.6693 run13.mat -1 -1 201 1 1 +1776209 1796902 20694 -110335.4966 -109292.0819 18.1402 -16.8284 92.6575 run13.mat -1 -1 201 1 1 +1797206 1817881 20676 -109276.7531 -108234.2461 16.4877 -16.8294 92.6298 run13.mat -1 -1 201 1 1 +1818188 1827281 9094 -108218.766 -107760.2646 14.8416 -16.8285 92.7666 run13.mat -1 -1 201 1 1 +1911549 1922271 10723 -103511.1722 -102970.5309 14.8434 -16.8284 93.4103 run13.mat -1 -1 202 1 1 +1922582 1943264 20683 -102954.8491 -101911.9891 13.1897 -16.8289 92.5685 run13.mat -1 -1 202 1 1 +1943570 1964260 20691 -101896.5595 -100853.2961 11.5412 -16.8295 92.5841 run13.mat -1 -1 202 1 1 +1964568 1985262 20695 -100837.7656 -99794.3005 9.8929 -16.829 92.6444 run13.mat -1 -1 202 1 1 +1985568 2006241 20674 -99778.8709 -98736.4647 8.2441 -16.8291 92.6801 run13.mat -1 -1 202 1 1 +2006547 2007320 774 -98721.0351 -98682.0577 6.604 -16.8282 92.2902 run13.mat -1 -1 202 1 1 +2091370 2110363 18994 -94443.9576 -93486.263 6.591 -16.8294 92.9586 run13.mat -1 -1 203 1 1 +2110696 2131381 20686 -93469.472 -92426.4607 4.9464 -16.8283 92.615 run13.mat -1 -1 203 1 1 +2131690 2152363 20674 -92410.8798 -91368.4736 3.2996 -16.8291 92.6082 run13.mat -1 -1 203 1 1 +2152671 2173365 20695 -91352.9431 -90309.478 1.6514 -16.8292 92.6216 run13.mat -1 -1 203 1 1 +2173672 2187220 13549 -90293.998 -89610.8596 0.00252 -16.8303 92.8102 run13.mat -1 -1 203 1 1 +2271374 2277662 6289 -85367.5155 -85050.4522 -0.0041433 -16.8271 93.8567 run13.mat -1 -1 204 1 1 +2277968 2298658 20691 -85035.0226 -83991.7592 -1.6479 -16.8299 92.5593 run13.mat -1 -1 204 1 1 +2298968 2319644 20677 -83976.1279 -82933.5704 -3.2957 -16.8286 92.5309 run13.mat -1 -1 204 1 1 +2319949 2340661 20713 -82918.1912 -81873.8185 -4.9467 -16.8285 92.5743 run13.mat -1 -1 204 1 1 +2340970 2361624 20655 -81858.2376 -80816.7894 -6.5951 -16.8279 92.6971 run13.mat -1 -1 204 1 1 +2361930 2367280 5351 -80801.3598 -80531.5938 -8.2474 -16.8317 92.9771 run13.mat -1 -1 204 1 1 +2451344 2465722 14379 -76292.7878 -75567.7979 -8.2508 -16.8288 93.0388 run13.mat -1 -1 205 1 1 +2466049 2486741 20693 -75551.3094 -74507.9451 -9.8977 -16.8287 92.5331 run13.mat -1 -1 205 1 1 +2487049 2507741 20693 -74492.4147 -73449.0504 -11.548 -16.8291 92.6711 run13.mat -1 -1 205 1 1 +2508051 2528725 20675 -73433.4191 -72390.9625 -13.195 -16.8292 92.5459 run13.mat -1 -1 205 1 1 +2529030 2547140 18111 -72375.5833 -71462.4127 -14.8481 -16.8282 92.7936 run13.mat -1 -1 205 1 1 +2631458 2633051 1594 -67210.7991 -67130.4744 -14.8458 -16.8282 97.2933 run13.mat -1 -1 206 1 1 +2633365 2654066 20702 -67114.6414 -66070.8233 -16.4919 -16.8297 92.5946 run13.mat -1 -1 206 1 1 +2654371 2675063 20693 -66055.4441 -65012.0799 -18.1429 -16.829 92.6355 run13.mat -1 -1 206 1 1 +2675371 2696044 20674 -64996.5494 -63954.1432 -19.7928 -16.8296 92.6244 run13.mat -1 -1 206 1 1 +2696351 2717044 20694 -63938.6632 -62895.2485 -21.4365 -16.8295 92.652 run13.mat -1 -1 206 1 1 +2717352 2727240 9889 -62879.718 -62381.1299 -23.0886 -16.8281 92.8122 run13.mat -1 -1 206 1 1 +2811506 2821462 9957 -58132.1384 -57630.1214 -23.0928 -16.8294 93.4493 run13.mat -1 -1 207 1 1 +2821789 2842473 20685 -57613.6329 -56570.672 -24.7347 -16.8292 92.4909 run13.mat -1 -1 207 1 1 +2842789 2863462 20674 -56554.7382 -55512.332 -26.3868 -16.829 92.649 run13.mat -1 -1 207 1 1 +2863773 2884468 20696 -55496.6503 -54453.1347 -28.0319 -16.8291 92.6427 run13.mat -1 -1 207 1 1 +2884784 2905442 20659 -54437.2009 -53395.551 -29.6862 -16.8292 92.6744 run13.mat -1 -1 207 1 1 +2905751 2907279 1529 -53379.9701 -53302.923 -31.3244 -16.8276 92.918 run13.mat -1 -1 207 1 1 +2991425 3009718 18294 -49059.9823 -48137.5841 -31.3358 -16.8284 93.0436 run13.mat -1 -1 208 1 1 +3010039 3030707 20669 -48121.3981 -47079.2441 -32.9822 -16.8282 92.6329 run13.mat -1 -1 208 1 1 +3031016 3051706 20691 -47063.6632 -46020.3998 -34.633 -16.828 92.6339 run13.mat -1 -1 208 1 1 +3052013 3072705 20693 -46004.9197 -44961.5555 -36.2845 -16.8288 92.5696 run13.mat -1 -1 208 1 1 +3073011 3087179 14169 -44946.1259 -44231.7249 -37.9354 -16.8276 92.7339 run13.mat -1 -1 208 1 1 +3171455 3176985 5531 -39982.2291 -39703.3868 -37.9397 -16.83 94.0142 run13.mat -1 -1 209 1 1 +3177310 3198005 20696 -39686.9992 -38643.4837 -39.5855 -16.8284 92.4158 run13.mat -1 -1 209 1 1 +3198314 3218988 20675 -38627.9028 -37585.4461 -41.2321 -16.828 92.6054 run13.mat -1 -1 209 1 1 +3219306 3239987 20682 -37569.4115 -36526.6019 -42.8822 -16.8282 92.5264 run13.mat -1 -1 209 1 1 +3240295 3260966 20672 -36511.0714 -35468.766 -44.5359 -16.8288 92.6948 run13.mat -1 -1 209 1 1 +3261276 3267259 5984 -35453.1347 -35151.4506 -46.1767 -16.8297 92.803 run13.mat -1 -1 209 1 1 +3351532 3365305 13774 -30902.1061 -30207.6224 -46.1831 -16.8287 93.1122 run13.mat -1 -1 210 1 1 +3365612 3386294 20683 -30192.1424 -29149.2824 -47.829 -16.8289 92.5924 run13.mat -1 -1 210 1 1 +3386601 3407309 20709 -29133.8023 -28089.6313 -49.4764 -16.8284 92.559 run13.mat -1 -1 210 1 1 +3407615 3428287 20673 -28074.2017 -27031.8459 -51.1292 -16.8292 92.6346 run13.mat -1 -1 210 1 1 +3428593 3447358 18766 -27016.4163 -26070.2182 -52.778 -16.8285 92.7996 run13.mat -1 -1 210 1 1 +3531460 3532546 1087 -21829.4962 -21774.7362 -52.7781 -16.8304 99.8064 run13.mat -1 -1 211 1 1 +3532866 3553511 20646 -21758.6006 -20717.6063 -54.4252 -16.8294 92.5522 run13.mat -1 -1 211 1 1 +3553818 3574530 20713 -20702.1263 -19657.7535 -56.073 -16.8285 92.6527 run13.mat -1 -1 211 1 1 +3574838 3595510 20673 -19642.2231 -18599.8673 -57.7254 -16.8287 92.6289 run13.mat -1 -1 211 1 1 +3595818 3616510 20693 -18584.3368 -17540.9726 -59.3761 -16.8297 92.5828 run13.mat -1 -1 211 1 1 +3616816 3627238 10423 -17525.543 -17000.0286 -61.0213 -16.829 92.8009 run13.mat -1 -1 211 1 1 +3711363 3720769 9407 -12758.1468 -12283.8628 -61.0254 -16.8276 93.4594 run13.mat -1 -1 212 1 1 +3721088 3741768 20681 -12267.7777 -11225.0186 -62.6746 -16.8289 92.5328 run13.mat -1 -1 212 1 1 +3742077 3762755 20679 -11209.4377 -10166.7793 -64.3235 -16.8289 92.5567 run13.mat -1 -1 212 1 1 +3763063 3783771 20709 -10151.2489 -9107.0779 -65.9755 -16.8287 92.6283 run13.mat -1 -1 212 1 1 +3784077 3804733 20657 -9091.6482 -8050.0992 -67.6241 -16.8281 92.6571 run13.mat -1 -1 212 1 1 +3805036 3807258 2223 -8034.8209 -7922.7797 -69.2693 -16.8295 92.7439 run13.mat -1 -1 212 1 1 +3891379 3909009 17631 -3681.0996 -2792.1323 -69.2716 -16.8284 93.0343 run13.mat -1 -1 213 1 1 +3909338 3930010 20673 -2775.543 -1733.1872 -70.9198 -16.8292 92.6592 run13.mat -1 -1 213 1 1 +3930319 3950993 20675 -1717.6063 -675.1497 -72.5722 -16.8287 92.5803 run13.mat -1 -1 213 1 1 +3951301 3971990 20690 -659.6192 382.9158 -74.2196 -16.8297 92.639 run13.mat -1 -1 213 1 1 +3972296 3987278 14983 398.2187 1148.518 -75.8708 -16.8289 92.8211 run13.mat -1 -1 213 1 1 +4071258 4076051 4794 5346.6567 5586.2418 -75.8643 -16.8286 93.9913 run13.mat -1 -1 214 1 1 +4076375 4097052 20678 5602.3196 6636.1992 -77.5127 -16.8283 92.5292 run13.mat -1 -1 214 1 1 +4097358 4118070 20713 6651.3808 7687.9038 -79.1689 -16.8293 92.6032 run13.mat -1 -1 214 1 1 +4118378 4139052 20675 7703.1846 8735.5656 -80.8159 -16.8285 92.5096 run13.mat -1 -1 214 1 1 +4139359 4160052 20694 8751.0456 9784.925 -82.4632 -16.83 92.6087 run13.mat -1 -1 214 1 1 +4160359 4167137 6779 9800.1562 10140.4519 -82.4646 -15.1442 92.7854 run13.mat -1 -1 214 1 1 +4251462 4264516 13055 14357.1115 15009.3418 -82.4641 -15.1454 93.0812 run13.mat -1 -1 215 1 1 +4264833 4285514 20682 15025.3228 16058.8581 -80.8157 -15.1461 92.4658 run13.mat -1 -1 215 1 1 +4285821 4306511 20691 16074.0893 17108.447 -79.1677 -15.1449 92.6383 run13.mat -1 -1 215 1 1 +4306819 4327514 20696 17123.85 18159.623 -77.5139 -15.1454 92.6835 run13.mat -1 -1 215 1 1 +4327820 4347236 19417 18174.8016 19144.2056 -75.8729 -15.1454 92.7841 run13.mat -1 -1 215 1 1 +4431296 4431638 343 23347.8635 23365.1049 -75.8935 -15.1382 97.9479 run13.mat -1 -1 216 1 1 +4431958 4452594 20637 23381.2371 24412.5551 -74.2231 -15.1449 92.668 run13.mat -1 -1 216 1 1 +4452900 4473593 20694 24427.9847 25464.1818 -72.5756 -15.1448 92.5357 run13.mat -1 -1 216 1 1 +4473902 4494597 20696 25479.5153 26512.3207 -70.9187 -15.1444 92.5868 run13.mat -1 -1 216 1 1 +4494903 4515578 20676 26527.5023 27561.6737 -69.2713 -15.145 92.6673 run13.mat -1 -1 216 1 1 +4515884 4527117 11234 27577.1033 28139.3817 -67.6235 -15.1451 92.6559 run13.mat -1 -1 216 1 1 +4611365 4619842 8478 32350.6456 32775.969 -67.6234 -15.1448 93.2388 run13.mat -1 -1 217 1 1 +4620159 4640855 20697 32791.8221 33826.8576 -65.9755 -15.148 92.5562 run13.mat -1 -1 217 1 1 +4641160 4661835 20676 33842.1135 34875.5314 -64.3203 -15.1455 92.6135 run13.mat -1 -1 217 1 1 +4662141 4682836 20696 34890.9485 35926.147 -62.6751 -15.1459 92.5827 run13.mat -1 -1 217 1 1 +4683141 4703813 20673 35941.5231 36972.6703 -61.0239 -15.146 92.6905 run13.mat -1 -1 217 1 1 +4704123 4707157 3035 36988.2984 37141.2527 -59.3659 -15.1463 92.4648 run13.mat -1 -1 217 1 1 +4791386 4808142 16757 41354.3281 42192.2206 -59.376 -15.1459 93.0268 run13.mat -1 -1 218 1 1 +4808462 4829136 20675 42208.3448 43240.3901 -57.7235 -15.1456 92.5662 run13.mat -1 -1 218 1 1 +4829443 4850126 20684 43255.8021 44289.5587 -56.0722 -15.1469 92.6104 run13.mat -1 -1 218 1 1 +4850440 4871118 20679 44305.3917 45338.9729 -54.4249 -15.1455 92.5864 run13.mat -1 -1 218 1 1 +4871435 4887237 15803 45354.8262 46145.799 -52.7752 -15.1457 92.8499 run13.mat -1 -1 218 1 1 +4971445 4975443 3999 50356.8664 50555.6616 -52.7788 -15.1466 94.6561 run13.mat -1 -1 219 1 1 +4975764 4996442 20679 50571.7149 51607.8727 -51.1295 -15.1445 92.5741 run13.mat -1 -1 219 1 1 +4996760 5017455 20696 51623.7757 52656.8263 -49.4772 -15.1457 92.6196 run13.mat -1 -1 219 1 1 +5017761 5038428 20668 52672.1293 53705.1361 -47.8322 -15.1461 92.6382 run13.mat -1 -1 219 1 1 +5038740 5059419 20680 53720.8651 54753.5466 -46.182 -15.1453 92.6542 run13.mat -1 -1 219 1 1 +5059724 5067335 7612 54768.7997 55150.9193 -44.5375 -15.1455 92.7812 run13.mat -1 -1 219 1 1 +5151445 5163524 12080 59357.0096 59959.1108 -44.5365 -15.1457 93.0632 run13.mat -1 -1 220 1 1 +5163842 5184538 20697 59975.0169 61012.5709 -42.8827 -15.1463 92.6143 run13.mat -1 -1 220 1 1 +5184845 5205537 20693 61028.1097 62061.2557 -41.235 -15.1455 92.5143 run13.mat -1 -1 220 1 1 +5205844 5226518 20675 62076.487 63109.0175 -39.5854 -15.1448 92.603 run13.mat -1 -1 220 1 1 +5226827 5247196 20370 63124.5953 64144.7672 -37.9327 -15.1448 92.733 run13.mat -1 -1 220 1 1 +5331424 5352023 20600 68356.2045 69385.9867 -36.2851 -15.1459 93.0223 run13.mat -1 -1 221 1 1 +5352332 5372998 20667 69401.3171 70433.7826 -34.6319 -15.1456 92.6953 run13.mat -1 -1 221 1 1 +5373303 5394000 20698 70449.0972 71483.8911 -32.9856 -15.145 92.605 run13.mat -1 -1 221 1 1 +5394308 5414980 20673 71499.4215 72532.1742 -31.3345 -15.1449 92.708 run13.mat -1 -1 221 1 1 +5415286 5427315 12030 72547.4806 73150.6859 -29.6887 -15.1464 92.7191 run13.mat -1 -1 221 1 1 +5511564 5519245 7682 77362.5831 77744.7793 -29.6799 -15.1447 93.5033 run13.mat -1 -1 222 1 1 +5519562 5540240 20679 77760.6326 78797.3775 -28.0354 -15.1452 92.5907 run13.mat -1 -1 222 1 1 +5540547 5561238 20692 78812.8544 79847.9421 -26.3843 -15.1464 92.6116 run13.mat -1 -1 222 1 1 +5561548 5582239 20692 79863.4342 80897.9649 -24.7389 -15.1451 92.5858 run13.mat -1 -1 222 1 1 +5582545 5603208 20664 80913.1465 81943.695 -23.0896 -15.1459 92.6331 run13.mat -1 -1 222 1 1 +5603522 5607335 3814 81959.528 82151.0409 -21.4334 -15.1458 92.9368 run13.mat -1 -1 222 1 1 +5691434 5707464 16031 86356.3917 87159.9409 -21.4388 -15.145 93.1245 run13.mat -1 -1 223 1 1 +5707778 5728463 20686 87175.4089 88206.9498 -19.7879 -15.1445 92.6647 run13.mat -1 -1 223 1 1 +5728766 5749458 20693 88222.225 89257.6773 -18.1432 -15.1459 92.581 run13.mat -1 -1 223 1 1 +5749765 5770457 20693 89272.9115 90307.8633 -16.4962 -15.1452 92.6643 run13.mat -1 -1 223 1 1 +5770764 5787215 16452 90323.3402 91145.0137 -14.8472 -15.144 92.6632 run13.mat -1 -1 223 1 1 +5873391 5876632 3242 95453.7571 95615.8382 -14.8475 -15.1461 94.745 run13.mat -1 -1 224 1 1 +5876947 5897639 20693 95631.5913 96666.6368 -13.1935 -15.1442 92.59 run13.mat -1 -1 224 1 1 +5897944 5918617 20674 96681.7688 97713.6526 -11.5461 -15.1453 92.5866 run13.mat -1 -1 224 1 1 +5918925 5939619 20695 97729.0585 98767.0602 -9.8999 -15.1454 92.6307 run13.mat -1 -1 224 1 1 +5939928 5960599 20672 98782.5134 99816.3205 -8.2505 -15.1458 92.6112 run13.mat -1 -1 224 1 1 +5960908 5969155 8248 99831.7737 100242.2132 -6.5931 -15.1457 92.837 run13.mat -1 -1 224 1 1 +6053426 6064939 11514 104456.2336 105033.0394 -6.5916 -15.1465 93.1398 run13.mat -1 -1 225 1 1 +6065251 6085938 20688 105048.4089 106081.2747 -4.9455 -15.1457 92.6063 run13.mat -1 -1 225 1 1 +6086245 6106935 20691 106096.5089 107131.2162 -3.2988 -15.1462 92.6454 run13.mat -1 -1 225 1 1 +6107244 6127918 20675 107146.7939 108180.0875 -1.6466 -15.145 92.5561 run13.mat -1 -1 225 1 1 +6128222 6148897 20676 108195.1699 109231.7483 0.00070073 -15.1455 92.8178 run13.mat -1 -1 225 1 1 +6149206 6149233 28 109247.2028 109248.5533 1.5749 -15.1594 89.5312 run13.mat -1 -1 225 1 1 +6233322 6253133 19812 113451.7898 114441.3941 1.6525 -15.1452 92.969 run13.mat -1 -1 226 1 1 +6253446 6274121 20676 114456.8128 115491.4578 3.2964 -15.1464 92.594 run13.mat -1 -1 226 1 1 +6274430 6295119 20690 115507.0355 116539.925 4.9472 -15.146 92.6563 run13.mat -1 -1 226 1 1 +6295425 6316122 20698 116555.3546 117590.2728 6.5951 -15.1447 92.5985 run13.mat -1 -1 226 1 1 +6316426 6329093 12668 117605.4786 118239.4025 8.2479 -15.1474 92.7796 run13.mat -1 -1 226 1 1 +6413361 6420382 7022 122453.5931 122803.5003 8.2472 -15.1451 93.6869 run13.mat -1 -1 227 1 1 +6420693 6441379 20687 122819.0533 123855.6545 9.8913 -15.1458 92.4612 run13.mat -1 -1 227 1 1 +6441687 6462379 20693 123871.0575 124904.4331 11.5446 -15.1443 92.5747 run13.mat -1 -1 227 1 1 +6462685 6483359 20675 124919.6177 125953.1351 13.1893 -15.147 92.5335 run13.mat -1 -1 227 1 1 +6483669 6504341 20673 125968.7633 127002.2578 14.8402 -15.1462 92.7251 run13.mat -1 -1 227 1 1 +6504647 6509133 4487 127017.4394 127241.1809 16.4854 -15.143 92.6429 run13.mat -1 -1 227 1 1 +6593207 6608570 15364 131446.2306 132215.2967 16.4906 -15.1445 93.2248 run13.mat -1 -1 228 1 1 +6608886 6629561 20676 132231.1027 133263.1306 18.1356 -15.1452 92.6412 run13.mat -1 -1 228 1 1 +6629867 6650561 20695 133278.4335 134312.3744 19.7845 -15.1448 92.6762 run13.mat -1 -1 228 1 1 +6650867 6671560 20694 134327.4483 135361.696 21.4338 -15.1461 92.614 run13.mat -1 -1 228 1 1 +6671869 6688993 17125 135377.1024 136234.4376 23.0897 -15.1459 92.7519 run13.mat -1 -1 228 1 1 +6773273 6775844 2572 140448.0799 140577.7188 23.083 -15.1467 94.7609 run13.mat -1 -1 229 1 1 +6776150 6796827 20678 140593.1484 141627.5877 24.7375 -15.1463 92.5607 run13.mat -1 -1 229 1 1 +6797144 6817820 20677 141643.4342 142675.8026 26.3863 -15.1465 92.5446 run13.mat -1 -1 229 1 1 +6818131 6838823 20693 142691.4811 143727.435 28.0349 -15.1466 92.6174 run13.mat -1 -1 229 1 1 +6839133 6859801 20669 143742.815 144775.0931 29.6858 -15.1451 92.6726 run13.mat -1 -1 229 1 1 +6860108 6869052 8945 144790.3243 145237.4845 31.3369 -15.146 92.8116 run13.mat -1 -1 229 1 1 +6953224 6964115 10892 149448.114 149992.1451 31.3333 -15.1457 93.45 run13.mat -1 -1 230 1 1 +6964429 6985101 20673 150007.6102 151040.6547 32.9848 -15.1461 92.5686 run13.mat -1 -1 230 1 1 +6985407 7006120 20714 151056.0843 152090.9315 34.6315 -15.1463 92.5971 run13.mat -1 -1 230 1 1 +7006427 7027113 20687 152106.2845 153142.5677 36.287 -15.1457 92.5797 run13.mat -1 -1 230 1 1 +7027425 7048062 20638 153158.2966 154188.5506 37.9332 -15.1456 92.7081 run13.mat -1 -1 230 1 1 +7048367 7049112 746 154203.8065 154241.0708 39.5856 -15.1425 92.1931 run13.mat -1 -1 230 1 1 +7133228 7152336 19109 158448.9923 159402.6426 39.5848 -15.1458 93.0458 run13.mat -1 -1 231 1 1 +7152645 7173300 20656 159418.0959 160449.1091 41.2283 -15.1462 92.5439 run13.mat -1 -1 231 1 1 +7173607 7194315 20709 160464.586 161502.8083 42.8778 -15.1455 92.6616 run13.mat -1 -1 231 1 1 +7194625 7215302 20678 161518.1883 162552.8 44.5292 -15.1467 92.6314 run13.mat -1 -1 231 1 1 +7215609 7228992 13384 162568.15 163235.5033 46.1802 -15.1442 92.8646 run13.mat -1 -1 231 1 1 +7313253 7319686 6434 167447.8865 167771.6643 46.1741 -15.144 94.0785 run13.mat -1 -1 232 1 1 +7319994 7340679 20686 167786.8149 168821.5542 47.8238 -15.1447 92.5583 run13.mat -1 -1 232 1 1 +7340987 7361662 20676 168836.838 169869.6788 49.4732 -15.1455 92.53 run13.mat -1 -1 232 1 1 +7361968 7382682 20715 169884.9817 170920.4618 51.1261 -15.1451 92.6404 run13.mat -1 -1 232 1 1 +7382987 7403642 20656 170935.8379 171969.1107 52.7737 -15.1453 92.6725 run13.mat -1 -1 232 1 1 +7403948 7409012 5065 171984.4661 172235.848 54.4155 -15.1463 92.9121 run13.mat -1 -1 232 1 1 +7493062 7507776 14715 176438.3369 177174.8718 54.4219 -15.1463 93.1833 run13.mat -1 -1 233 1 1 +7508094 7528762 20669 177190.6487 178225.4263 56.0753 -15.1447 92.6373 run13.mat -1 -1 233 1 1 +7529069 7533517 4449 178240.9032 178462.0597 57.7267 -15.1477 92.6083 run13.mat -1 -1 233 1 1 +7618979 7634730 15752 182735.3823 183520.8626 57.7258 -15.1455 93.3998 run13.mat -1 -1 234 1 1 +7635050 7655744 20695 183536.742 184571.623 59.3771 -15.1439 92.6199 run13.mat -1 -1 234 1 1 +7656050 7676732 20683 184586.8509 185622.2075 61.0229 -15.1456 92.4929 run13.mat -1 -1 234 1 1 +7677047 7697726 20680 185637.9606 186672.8871 62.6725 -15.1454 92.6549 run13.mat -1 -1 234 1 1 +7698033 7714871 16839 186688.364 187531.6264 64.3229 -15.1455 92.8095 run13.mat -1 -1 234 1 1 +7799109 7801973 2865 191743.9863 191888.6368 64.3288 -15.1417 95.085 run13.mat -1 -1 235 1 1 +7802291 7822981 20691 191904.4168 192934.9684 65.9739 -15.1455 92.5532 run13.mat -1 -1 235 1 1 +7823289 7843961 20673 192950.2493 193983.8373 67.6218 -15.1463 92.5459 run13.mat -1 -1 235 1 1 +7844272 7864963 20692 193999.2669 195035.2336 69.2656 -15.1456 92.5657 run13.mat -1 -1 235 1 1 +7865270 7885943 20674 195050.5868 196082.492 70.9198 -15.1446 92.6504 run13.mat -1 -1 235 1 1 +7886251 7894891 8641 196097.895 196530.7956 72.566 -15.1461 92.6061 run13.mat -1 -1 235 1 1 +7978957 7990061 11105 200736.4527 201288.7668 72.5681 -15.1465 93.1498 run13.mat -1 -1 236 1 1 +7990374 8011043 20670 201304.4229 202339.7792 74.2121 -15.1452 92.5095 run13.mat -1 -1 236 1 1 +8011352 8032048 20697 202355.3569 203390.6023 75.8661 -15.1453 92.5829 run13.mat -1 -1 236 1 1 +8032359 8053044 20686 203406.1588 204438.6668 77.5106 -15.1448 92.6314 run13.mat -1 -1 236 1 1 +8053349 8074007 20659 204453.9227 205486.7527 79.1647 -15.1452 92.7057 run13.mat -1 -1 236 1 1 +8074313 8074751 439 205501.995 205523.8125 80.8229 -15.1421 92.0038 run13.mat -1 -1 236 1 1 +8158818 8178133 19316 209727.4351 210691.8834 80.8129 -15.1449 92.8437 run13.mat -1 -1 237 1 1 +8178451 8198784 20334 210707.9181 211727.2938 82.462 -15.1463 92.5998 run13.mat -1 -1 237 1 1 +279863 300259 20397 347921.9481 348941.9722 82.465 -13.4623 92.8402 run14.mat -1 -1 239 165659 175858 +300568 321259 20692 348957.3026 349991.8452 80.815 -13.462 92.5608 run14.mat -1 -1 239 176013 186358 +321564 342241 20678 350006.9802 351042.7229 79.1678 -13.4612 92.6156 run14.mat -1 -1 239 186511 196850 +342548 363241 20694 351058.0761 352090.2394 77.5139 -13.4619 92.5371 run14.mat -1 -1 239 197003 207350 +363546 375661 12116 352105.6154 352712.1 75.8632 -13.4628 92.6704 run14.mat -1 -1 239 207503 213560 +459923 467559 7637 356922.615 357306.4474 75.865 -13.4621 93.5316 run14.mat -1 -1 240 255693 259511 +467876 488581 20706 357322.1778 358359.4704 74.2149 -13.4615 92.526 run14.mat -1 -1 240 259670 270023 +488888 509560 20673 358374.7046 359406.3898 72.5657 -13.4623 92.6305 run14.mat -1 -1 240 270177 280513 +509868 530559 20692 359421.6737 360457.9967 70.9144 -13.462 92.6011 run14.mat -1 -1 240 280667 291013 +530868 551525 20658 360473.4499 361506.5025 69.2674 -13.4622 92.6252 run14.mat -1 -1 240 291167 301496 +551834 555721 3888 361521.8329 361714.6787 67.6158 -13.461 92.5123 run14.mat -1 -1 240 301651 303594 +639788 655639 15852 365919.9823 366711.0925 67.6207 -13.4611 93.0316 run14.mat -1 -1 241 345630 353555 +655963 676640 20678 366727.1671 367759.0961 65.97 -13.4623 92.5765 run14.mat -1 -1 241 353717 364057 +676948 697620 20673 367774.5281 368809.9216 64.3208 -13.4619 92.5828 run14.mat -1 -1 241 364211 374547 +697929 718622 20694 368825.252 369858.7361 62.6736 -13.4619 92.5755 run14.mat -1 -1 241 374702 385048 +718928 735581 16654 369874.0419 370708.4039 61.0228 -13.4624 92.7602 run14.mat -1 -1 241 385201 393528 +819656 822708 3053 374910.8739 375063.7274 61.033 -13.4588 95.0885 run14.mat -1 -1 242 435568 437094 +823019 843721 20703 375079.4059 376115.8551 59.3753 -13.462 92.5776 run14.mat -1 -1 242 437249 447601 +844029 864701 20673 376131.1359 377161.6741 57.7278 -13.4614 92.5618 run14.mat -1 -1 242 447755 458091 +865010 885702 20693 377177.1273 378214.0252 56.0738 -13.4623 92.5666 run14.mat -1 -1 242 458246 468592 +886010 906702 20693 378229.6178 379263.6878 54.4257 -13.4624 92.6808 run14.mat -1 -1 242 468746 479093 +907011 915440 8430 379279.0183 379701.183 52.7782 -13.4616 92.906 run14.mat -1 -1 242 479247 483461 +999664 1011082 11419 383911.4243 384481.7317 52.7799 -13.4622 93.4465 run14.mat -1 -1 243 525576 531285 +1011401 1032082 20682 384497.6847 385534.7272 51.1297 -13.4612 92.4892 run14.mat -1 -1 243 531445 541785 +1032389 1053083 20695 385550.2041 386583.3942 49.475 -13.4621 92.5948 run14.mat -1 -1 243 541939 552287 +1053388 1074064 20677 386598.7703 387631.168 47.824 -13.4616 92.6531 run14.mat -1 -1 243 552439 562777 +1074368 1095042 20675 387646.4936 388681.8399 46.179 -13.4619 92.7306 run14.mat -1 -1 243 562929 573266 +1095351 1095459 109 388697.2959 388702.698 44.5231 -13.4625 91.9335 run14.mat -1 -1 243 573421 573475 +1179441 1199182 19742 392900.4159 393889.2732 44.5282 -13.4614 93.1296 run14.mat -1 -1 244 615468 625339 +1199515 1220185 20671 393905.9296 394936.9059 42.8769 -13.4623 92.6621 run14.mat -1 -1 244 625505 635841 +1220491 1241184 20694 394952.0905 395987.698 41.2266 -13.4613 92.4517 run14.mat -1 -1 244 635994 646341 +1241492 1262163 20672 396002.9788 397036.1396 39.581 -13.4626 92.6054 run14.mat -1 -1 244 646495 656831 +1262470 1275339 12870 397051.4926 397695.9689 37.9349 -13.4611 92.7623 run14.mat -1 -1 244 656985 663419 +1359389 1366245 6857 401898.2192 402242.6632 37.933 -13.4632 93.7882 run14.mat -1 -1 245 705446 708874 +1366553 1387247 20695 402258.0696 403291.4366 36.2847 -13.4613 92.575 run14.mat -1 -1 245 709028 719376 +1387556 1408266 20711 403306.767 404344.1438 34.6359 -13.4624 92.6393 run14.mat -1 -1 245 719530 729886 +1408573 1429249 20677 404359.4855 405393.4295 32.9829 -13.4615 92.6123 run14.mat -1 -1 245 730039 740377 +1429555 1450228 20674 405408.6141 406442.2939 31.3383 -13.4614 92.6871 run14.mat -1 -1 245 740530 750867 +1450537 1455219 4683 406457.6243 406691.0383 29.6938 -13.4612 92.6638 run14.mat -1 -1 245 751022 753363 +1539193 1554344 15152 410889.2494 411646.9587 29.689 -13.4622 93.1005 run14.mat -1 -1 246 795352 802928 +1554672 1575343 20672 411663.3118 412695.2205 28.0354 -13.4623 92.609 run14.mat -1 -1 246 803092 813427 +1575652 1596330 20679 412710.6764 413746.1655 26.3862 -13.462 92.5506 run14.mat -1 -1 246 813582 823922 +1596646 1617328 20683 413761.8432 414796.5529 24.7403 -13.4618 92.673 run14.mat -1 -1 246 824080 834421 +1617647 1635098 17452 414812.4427 415683.0968 23.088 -13.4618 92.7519 run14.mat -1 -1 246 834581 843306 +1719355 1721584 2230 419899.8324 420010.4695 23.0795 -13.4624 94.844 run14.mat -1 -1 247 885437 886539 +1721890 1742575 20686 420025.6511 421057.8547 21.4331 -13.4624 92.5591 run14.mat -1 -1 247 886704 897047 +1742889 1763567 20679 421073.4363 422108.6279 19.7868 -13.4619 92.6189 run14.mat -1 -1 247 897204 907544 +1763875 1784568 20694 422124.1553 423157.3551 18.1365 -13.4624 92.6357 run14.mat -1 -1 247 907698 918045 +1784876 1805564 20689 423172.7611 424209.0208 16.4884 -13.4616 92.6252 run14.mat -1 -1 247 918199 928543 +1805875 1815138 9264 424224.4505 424686.5993 14.8404 -13.4609 92.869 run14.mat -1 -1 247 928699 933331 +1899246 1909767 10522 428893.6066 429421.5517 14.8419 -13.4622 93.5036 run14.mat -1 -1 248 975386 980647 +1910075 1930771 20697 429436.7241 430466.9706 13.1902 -13.4621 92.5639 run14.mat -1 -1 248 980801 991149 +1931077 1951769 20693 430482.4002 431517.6677 11.5432 -13.4619 92.6414 run14.mat -1 -1 248 991302 1001649 +1952078 1972773 20696 431533.0012 432568.4906 9.8948 -13.4622 92.6068 run14.mat -1 -1 248 1001804 1012152 +1973081 1993728 20648 432584.0179 433616.4306 8.2484 -13.462 92.7052 run14.mat -1 -1 248 1012306 1022629 +1994037 1995139 1103 433631.7611 433687.0952 6.6211 -13.4612 92.9245 run14.mat -1 -1 248 1022784 1023335 +2079425 2098067 18643 437902.0992 438833.1298 6.5952 -13.4622 92.9322 run14.mat -1 -1 249 1065480 1074801 +2098374 2119050 20677 438848.364 439882.8869 4.9437 -13.462 92.5494 run14.mat -1 -1 249 1074955 1085293 +2119359 2140052 20694 439898.3428 440933.219 3.2967 -13.4619 92.5878 run14.mat -1 -1 249 1085448 1095795 +2140360 2161030 20671 440948.5598 441980.7911 1.651 -13.4626 92.5518 run14.mat -1 -1 249 1095949 1106284 +2161336 2175198 13863 441996.2176 442688.9661 -0.0045162 -13.4618 92.7839 run14.mat -1 -1 249 1106437 1113369 +2259309 2265150 5842 446894.9915 447188.4396 0.00096172 -13.4614 93.5258 run14.mat -1 -1 250 1155426 1158346 +2265456 2286169 20714 447203.8661 448239.5664 -1.6506 -13.4624 92.5882 run14.mat -1 -1 250 1158499 1168857 +2286477 2307152 20676 448254.8533 449286.8133 -3.2965 -13.4617 92.5777 run14.mat -1 -1 250 1169011 1179348 +2307468 2328153 20686 449302.491 450336.6809 -4.9503 -13.4621 92.6456 run14.mat -1 -1 250 1179506 1189849 +2328459 2349132 20674 450352.1105 451385.519 -6.5981 -13.4623 92.723 run14.mat -1 -1 250 1190002 1200339 +2349439 2355058 5620 451400.9393 451682.241 -8.2527 -13.4614 92.788 run14.mat -1 -1 250 1200493 1203302 +2439311 2453450 14140 455894.6579 456602.2169 -8.251 -13.4622 93.2395 run14.mat -1 -1 251 1245431 1252500 +2453756 2474432 20677 456617.3985 457652.4814 -9.8962 -13.462 92.5697 run14.mat -1 -1 251 1252653 1262992 +2474737 2495434 20698 457667.7344 458702.3001 -11.5458 -13.4619 92.5147 run14.mat -1 -1 251 1263144 1273493 +2495739 2516431 20693 458717.432 459751.8834 -13.1944 -13.4617 92.5712 run14.mat -1 -1 251 1273646 1283992 +2516738 2535137 18400 459767.3604 460686.154 -14.8441 -13.4616 92.6052 run14.mat -1 -1 251 1284146 1293346 +2619326 2620711 1386 464898.0371 464966.7511 -14.8527 -13.4635 97.575 run14.mat -1 -1 252 1335442 1336135 +2621018 2641733 20716 464981.9823 466015.6418 -16.4925 -13.4617 92.5665 run14.mat -1 -1 252 1336288 1346646 +2642038 2662712 20675 466030.8538 467065.0472 -18.141 -13.4615 92.6323 run14.mat -1 -1 252 1346799 1357136 +2663018 2683710 20693 467080.4737 468115.0154 -19.7888 -13.4622 92.6021 run14.mat -1 -1 252 1357289 1367635 +2684018 2704694 20677 468130.4186 469166.4707 -21.4349 -13.4616 92.6906 run14.mat -1 -1 252 1367789 1378128 +2705000 2715177 10178 469181.8972 469690.9716 -23.0872 -13.4611 92.7933 run14.mat -1 -1 252 1378281 1383370 +2799444 2809070 9627 473904.2235 474382.9587 -23.0876 -13.4626 93.3727 run14.mat -1 -1 253 1425505 1430318 +2809387 2830077 20691 474398.6892 475435.3093 -24.7389 -13.4619 92.4953 run14.mat -1 -1 253 1430477 1440823 +2830388 2851075 20688 475450.8658 476483.9984 -26.3842 -13.4618 92.6027 run14.mat -1 -1 253 1440978 1451322 +2851381 2872065 20685 476499.183 477533.3463 -28.0358 -13.4616 92.5815 run14.mat -1 -1 253 1451475 1461817 +2872377 2893032 20656 477548.998 478582.2216 -29.685 -13.4616 92.7014 run14.mat -1 -1 253 1461973 1472301 +2893339 2895217 1879 478597.6985 478692.3749 -31.3236 -13.4612 93.0317 run14.mat -1 -1 253 1472454 1473393 +2979383 2997336 17954 482900.4731 483797.5007 -31.3373 -13.4629 93.0522 run14.mat -1 -1 254 1515479 1524456 +2997648 3018331 20684 483813.104 484847.0859 -32.9864 -13.462 92.5758 run14.mat -1 -1 254 1524612 1534953 +3018639 3039333 20695 484862.3667 485897.8716 -34.6334 -13.4626 92.5448 run14.mat -1 -1 254 1535107 1545455 +3039644 3060314 20671 485913.4249 486946.0445 -36.2916 -13.4618 92.6661 run14.mat -1 -1 254 1545610 1555946 +3060621 3075296 14676 486961.2787 487694.5814 -37.9357 -13.4626 92.7302 run14.mat -1 -1 254 1556100 1563437 +3159408 3164412 5005 491901.0912 492152.5 -37.9373 -13.4615 94.1481 run14.mat -1 -1 255 1605495 1607997 +3164728 3185413 20686 492168.3 493200.8319 -39.5847 -13.4615 92.4684 run14.mat -1 -1 255 1608155 1618498 +3185719 3206414 20696 493216.1348 494252.9371 -41.2335 -13.4615 92.5933 run14.mat -1 -1 255 1618651 1628999 +3206720 3227399 20680 494268.3636 495301.7055 -42.8819 -13.4615 92.6361 run14.mat -1 -1 255 1629152 1639492 +3227716 3248392 20677 495317.4328 496350.1762 -44.5331 -13.4618 92.6175 run14.mat -1 -1 255 1639651 1649989 +3248697 3255156 6460 496365.5523 496689.9592 -46.1784 -13.4628 92.9011 run14.mat -1 -1 255 1650141 1653371 +3341511 3354893 13383 501005.7803 501676.026 -46.1814 -13.4634 93.3024 run14.mat -1 -1 256 1696550 1703242 +3355198 3375879 20682 501691.4021 502724.6308 -47.8265 -13.4614 92.5771 run14.mat -1 -1 256 1703394 1713735 +3376191 3396874 20684 502740.234 503773.0706 -49.4796 -13.4624 92.5925 run14.mat -1 -1 256 1713891 1724233 +3397180 3417874 20695 503788.2522 504824.8885 -51.1293 -13.4612 92.5823 run14.mat -1 -1 256 1724386 1734734 +3418184 3437276 19093 504840.2685 505794.4271 -52.7745 -13.4617 92.8112 run14.mat -1 -1 256 1734889 1744435 +3521382 3522110 729 510000.0613 510036.7697 -52.7711 -13.4611 101.0625 run14.mat -1 -1 257 1786490 1786854 +3522416 3543095 20680 510052.1993 511084.8499 -54.4247 -13.4609 92.6467 run14.mat -1 -1 257 1787007 1797347 +3543401 3564092 20692 511100.0669 512136.6267 -56.0748 -13.4625 92.5632 run14.mat -1 -1 257 1797500 1807846 +3564400 3585075 20676 512151.9075 513185.2666 -57.7247 -13.4617 92.5698 run14.mat -1 -1 257 1808000 1818338 +3585380 3606052 20673 513200.5195 514233.3698 -59.3742 -13.4617 92.6511 run14.mat -1 -1 257 1818490 1828827 +3606360 3617155 10796 514248.8972 514788.1248 -61.0248 -13.4629 92.7387 run14.mat -1 -1 257 1828981 1834379 +3701353 3710311 8959 519000.2448 519447.7162 -61.0221 -13.4617 93.2994 run14.mat -1 -1 258 1876479 1880959 +3710637 3731313 20677 519464.0196 520497.0589 -62.672 -13.4622 92.594 run14.mat -1 -1 258 1881122 1891460 +3731621 3752308 20688 520512.3397 521547.6261 -64.3224 -13.4616 92.6069 run14.mat -1 -1 258 1891614 1901958 +3752617 3773311 20695 521563.2069 522596.7315 -65.9713 -13.4616 92.5128 run14.mat -1 -1 258 1902112 1912460 +3773619 3794272 20654 522612.0123 523642.9589 -67.6253 -13.4621 92.6958 run14.mat -1 -1 258 1912614 1922941 +3794581 3797175 2595 523658.5397 523789.3384 -69.2653 -13.4628 92.8201 run14.mat -1 -1 258 1923095 1924392 +3881137 3898380 17244 527986.8027 528851.1171 -69.2736 -13.4611 93.1273 run14.mat -1 -1 259 1966375 1974997 +3898689 3919375 20687 528866.4475 529901.6549 -70.9202 -13.4622 92.5088 run14.mat -1 -1 259 1975152 1985495 +3919685 3940374 20690 529917.1598 530949.9054 -72.5746 -13.4614 92.5352 run14.mat -1 -1 259 1985650 1995995 +3940681 3961353 20673 530965.2583 532000.5788 -74.2251 -13.4621 92.6998 run14.mat -1 -1 259 1996149 2006485 +3961659 3977014 15356 532015.7634 532783.2301 -75.8718 -13.461 92.828 run14.mat -1 -1 259 2006638 2014316 +4061272 4065669 4398 536997.0286 537215.5393 -75.8681 -13.4623 94.5978 run14.mat -1 -1 260 2056447 2058645 +4065991 4086679 20689 537231.7757 538264.1079 -77.517 -13.4623 92.5419 run14.mat -1 -1 260 2058806 2069151 +4086993 4107673 20681 538279.8109 539316.0673 -79.17 -13.4622 92.5774 run14.mat -1 -1 260 2069308 2079648 +4107980 4128672 20693 539331.4205 540364.3272 -80.8187 -13.4626 92.5841 run14.mat -1 -1 260 2079802 2090148 +4128980 4149653 20674 540379.7301 541414.2364 -82.4642 -13.4624 92.6257 run14.mat -1 -1 260 2090302 2100639 +4149962 4157094 7133 541429.5668 541787.3192 -82.4621 -11.7789 92.8213 run14.mat -1 -1 260 2100794 2104360 +4241123 4253725 12603 545987.3051 546618.5966 -82.4643 -11.7783 93.0956 run14.mat -1 -1 261 2146376 2152677 +4254042 4274731 20690 546634.5809 547667.6636 -80.8159 -11.7785 92.5542 run14.mat -1 -1 261 2152836 2163181 +4275037 4295716 20680 547682.7346 548718.4429 -79.1675 -11.7779 92.6845 run14.mat -1 -1 261 2163334 2173674 +4296028 4316715 20688 548734.1751 549767.0008 -77.5142 -11.7779 92.6657 run14.mat -1 -1 261 2173830 2184173 +4317020 4336935 19916 549782.2572 550780.1042 -75.8677 -11.7783 92.6961 run14.mat -1 -1 261 2184326 2194284 +4421484 4442097 20614 555006.6962 556038.7009 -74.2186 -11.7781 92.8311 run14.mat -1 -1 262 2236561 2246868 +4442403 4463092 20690 556053.8825 557086.8136 -72.5688 -11.7782 92.5887 run14.mat -1 -1 262 2247021 2257366 +4463400 4484078 20679 557102.2166 558137.453 -70.9195 -11.7782 92.5723 run14.mat -1 -1 262 2257520 2267859 +4484394 4505091 20698 558153.1338 559186.599 -69.2695 -11.7787 92.6344 run14.mat -1 -1 262 2268017 2278366 +4505397 4516994 11598 559202.0286 559783.5489 -67.6237 -11.7787 92.7771 run14.mat -1 -1 262 2278519 2284318 +4600975 4609101 8127 563981.7145 564388.1255 -67.6225 -11.7785 93.6923 run14.mat -1 -1 263 2326310 2330373 +4609418 4630112 20695 564403.9821 565439.0467 -65.9752 -11.7784 92.5515 run14.mat -1 -1 263 2330532 2340879 +4630419 4651093 20675 565454.4031 566486.3651 -64.3233 -11.7786 92.6217 run14.mat -1 -1 263 2341033 2351370 +4651399 4672091 20693 566501.671 567539.3148 -62.6776 -11.778 92.5379 run14.mat -1 -1 263 2351523 2361870 +4672399 4693073 20675 567554.8421 568584.924 -61.0254 -11.7783 92.7045 run14.mat -1 -1 263 2362024 2372361 +4693381 4696793 3413 568600.4017 568772.4122 -59.3756 -11.7774 92.5583 run14.mat -1 -1 263 2372515 2374221 +4781089 4797395 16307 572987.9254 573801.5674 -59.3792 -11.7783 92.9095 run14.mat -1 -1 264 2416371 2424524 +4797702 4818392 20691 573816.8595 574853.4517 -57.7278 -11.7782 92.6094 run14.mat -1 -1 264 2424678 2435023 +4818700 4839375 20676 574868.8576 575902.4934 -56.0771 -11.7783 92.6174 run14.mat -1 -1 264 2435177 2445515 +4839682 4860362 20681 575917.7277 576951.9034 -54.4263 -11.7785 92.6534 run14.mat -1 -1 264 2445669 2456009 +4860676 4876873 16198 576967.4818 577775.1135 -52.7768 -11.7781 92.7533 run14.mat -1 -1 264 2456166 2464265 +4960964 4964596 3633 581979.0881 582160.7543 -52.7675 -11.7781 94.5992 run14.mat -1 -1 265 2506312 2508129 +4964903 4985573 20671 582176.1075 583209.9146 -51.1307 -11.7782 92.557 run14.mat -1 -1 265 2508282 2518618 +4985883 5006575 20693 583225.4178 584260.2751 -49.4719 -11.778 92.6031 run14.mat -1 -1 265 2518773 2529119 +5006883 5027572 20690 584275.6783 585309.5719 -47.8284 -11.7779 92.6072 run14.mat -1 -1 265 2529273 2539618 +5027884 5048556 20673 585324.9384 586361.1607 -46.1766 -11.7782 92.6605 run14.mat -1 -1 265 2539774 2550110 +5048863 5056733 7871 586376.3919 586770.8651 -44.5327 -11.778 92.9436 run14.mat -1 -1 265 2550264 2554199 +5141042 5152886 11845 590985.7946 591578.0196 -44.5301 -11.7781 93.2618 run14.mat -1 -1 266 2596355 2602292 +5153203 5173875 20673 591594.0006 592627.0817 -42.8787 -11.7781 92.5807 run14.mat -1 -1 266 2602436 2612773 +5174180 5194875 20696 592642.4578 593675.7475 -41.2291 -11.7781 92.6005 run14.mat -1 -1 266 2612925 2623273 +5195183 5215859 20677 593691.2761 594724.8742 -39.5814 -11.7785 92.6042 run14.mat -1 -1 266 2623427 2633765 +5216166 5236813 20648 594740.1084 595774.0044 -37.9353 -11.7783 92.71 run14.mat -1 -1 266 2633919 2644243 +5320832 5340962 20131 599976.2467 600979.1576 -36.2881 -11.7786 93.0322 run14.mat -1 -1 267 2686254 2696319 +5341282 5361957 20676 600995.1025 602031.1112 -34.6347 -11.7786 92.5691 run14.mat -1 -1 267 2696480 2706818 +5362262 5382939 20678 602046.3641 603078.4699 -32.9885 -11.7783 92.5118 run14.mat -1 -1 267 2706970 2717309 +5383243 5403934 20692 603093.6731 604131.4803 -31.3357 -11.7782 92.6202 run14.mat -1 -1 267 2717461 2727807 +5404241 5416694 12454 604146.8332 604768.0198 -29.694 -11.7782 92.8045 run14.mat -1 -1 267 2727961 2734187 +5500599 5507962 7364 608962.1981 609332.167 -29.6889 -11.7784 93.7783 run14.mat -1 -1 268 2776142 2779823 +5508267 5528975 20709 609347.4199 610384.0996 -28.0389 -11.7782 92.5336 run14.mat -1 -1 268 2779976 2790330 +5529283 5549957 20675 610399.506 611429.5343 -26.3867 -11.7782 92.5864 run14.mat -1 -1 268 2790485 2800822 +5550261 5570956 20696 611444.7374 612481.7436 -24.7397 -11.7787 92.6526 run14.mat -1 -1 268 2800974 2811322 +5571262 5591937 20676 612497.0465 613529.2488 -23.0912 -11.7786 92.6929 run14.mat -1 -1 268 2811475 2821813 +5592244 5596492 4249 613544.7258 613758.8202 -21.4436 -11.7789 92.8717 run14.mat -1 -1 268 2821966 2824090 +5680564 5696083 15520 617961.8935 618738.7402 -21.4341 -11.7788 92.9962 run14.mat -1 -1 269 2866128 2873888 +5696402 5717077 20676 618754.6935 619786.772 -19.7889 -11.7782 92.511 run14.mat -1 -1 269 2874048 2884385 +5717384 5738078 20695 619802.0513 620838.2167 -18.138 -11.7782 92.6035 run14.mat -1 -1 269 2884539 2894886 +5738383 5759058 20676 620853.2414 621885.0623 -16.4927 -11.778 92.6395 run14.mat -1 -1 269 2895039 2905377 +5759365 5776392 17028 621900.5392 622754.0773 -14.8428 -11.7786 92.7657 run14.mat -1 -1 269 2905530 2914044 +5860512 5863218 2707 626958.4381 627094.436 -14.8424 -11.7787 95.7141 run14.mat -1 -1 270 2956106 2957459 +5863528 5884215 20688 627109.816 628143.2936 -13.1919 -11.7785 92.5664 run14.mat -1 -1 270 2957614 2967958 +5884524 5905198 20675 628158.8713 629194.1659 -11.5411 -11.778 92.5824 run14.mat -1 -1 270 2968113 2978450 +5905507 5926200 20694 629209.4963 630243.5845 -9.8964 -11.7783 92.4934 run14.mat -1 -1 270 2978605 2988952 +5926505 5947178 20674 630258.8377 631294.1731 -8.2466 -11.7784 92.6326 run14.mat -1 -1 270 2989104 2999441 +5947486 5956292 8807 631309.8168 631747.7923 -6.6007 -11.7782 92.8119 run14.mat -1 -1 270 2999595 3003998 +6040590 6051602 11013 635962.6138 636513.5482 -6.6004 -11.7791 93.2989 run14.mat -1 -1 271 3046149 3051656 +6051921 6072606 20686 636529.6333 637564.783 -4.9482 -11.779 92.5435 run14.mat -1 -1 271 3051815 3062158 +6072917 6093599 20683 637580.339 638614.7511 -3.3018 -11.779 92.52 run14.mat -1 -1 271 3062314 3072655 +6093906 6114602 20697 638630.1041 639663.524 -1.6501 -11.778 92.6308 run14.mat -1 -1 271 3072808 3083157 +6114909 6135561 20653 639679.004 640710.6849 -0.0017422 -11.7779 92.6616 run14.mat -1 -1 271 3083310 3093637 +6135867 6136371 505 640725.8664 640750.8714 1.6462 -11.7798 92.8814 run14.mat -1 -1 271 3093790 3094042 +6220434 6239702 19269 644955.9606 645917.1043 1.6482 -11.7783 93.1528 run14.mat -1 -1 272 3136075 3145709 +6240010 6260687 20678 645932.6316 646967.694 3.2979 -11.7777 92.6446 run14.mat -1 -1 272 3145863 3156203 +6261003 6281682 20680 646983.3717 648017.7543 4.9441 -11.7788 92.5793 run14.mat -1 -1 272 3156361 3166700 +6281990 6302681 20692 648033.3469 649068.2733 6.5949 -11.7784 92.6467 run14.mat -1 -1 272 3166854 3177200 +6302990 6316251 13262 649083.6037 649746.2164 8.2482 -11.7786 92.6485 run14.mat -1 -1 272 3177355 3183986 +6400294 6406861 6568 653949.4118 654277.8725 8.2512 -11.7767 93.8819 run14.mat -1 -1 273 3226009 3229293 +6407173 6427862 20690 654293.4755 655328.0585 9.8939 -11.7787 92.5576 run14.mat -1 -1 273 3229449 3239794 +6428169 6448846 20678 655343.5973 656377.0784 11.5443 -11.7784 92.5865 run14.mat -1 -1 273 3239947 3250286 +6449153 6469845 20693 656392.3096 657424.9827 13.1923 -11.7789 92.6464 run14.mat -1 -1 273 3250440 3260786 +6470156 6490824 20669 657440.4124 658475.9135 14.8459 -11.778 92.615 run14.mat -1 -1 273 3260942 3271276 +6491131 6496091 4961 658491.1447 658737.7935 16.4852 -11.7779 92.9302 run14.mat -1 -1 273 3271430 3273910 +6580169 6594954 14786 662943.238 663682.8423 16.4897 -11.7782 93.1082 run14.mat -1 -1 274 3315950 3323343 +6595287 6615954 20668 663699.4955 664733.0218 18.1367 -11.7778 92.5479 run14.mat -1 -1 274 3323510 3333844 +6616267 6636942 20676 664748.5507 665778.8215 19.7856 -11.7785 92.6343 run14.mat -1 -1 274 3334000 3344338 +6637251 6657943 20693 665794.2774 666832.5016 21.432 -11.7782 92.5895 run14.mat -1 -1 274 3344493 3354839 +6658251 6675991 17741 666847.6711 667732.8728 23.087 -11.7786 92.7867 run14.mat -1 -1 274 3354993 3363863 +6760278 6762333 2056 671947.187 672050.239 23.0919 -11.7755 96.0021 run14.mat -1 -1 275 3406009 3407037 +6762647 6783332 20686 672066.0688 673101.4477 24.735 -11.7785 92.5426 run14.mat -1 -1 275 3407194 3417537 +6783644 6804305 20662 673116.927 674150.1856 26.3838 -11.778 92.62 run14.mat -1 -1 275 3417693 3428024 +6804622 6825326 20705 674166.1698 675200.4273 28.0341 -11.7784 92.5875 run14.mat -1 -1 275 3428182 3438535 +6825629 6846284 20656 675215.5836 676248.5898 29.686 -11.7785 92.6407 run14.mat -1 -1 275 3438686 3449013 +6846591 6856050 9460 676263.9457 676737.5326 31.3365 -11.778 92.7061 run14.mat -1 -1 275 3449167 3453897 +6940047 6950535 10489 680936.0988 681461.5675 31.3406 -11.7787 93.4576 run14.mat -1 -1 276 3495897 3501141 +6950853 6971529 20677 681477.4736 682511.2582 32.9828 -11.7781 92.577 run14.mat -1 -1 276 3501300 3511639 +6971837 6992526 20690 682526.7886 683560.8959 34.6365 -11.7781 92.536 run14.mat -1 -1 276 3511793 3522138 +6992831 7013529 20699 683576.272 684611.5977 36.2852 -11.7784 92.5886 run14.mat -1 -1 276 3522291 3532640 +7013834 7034486 20653 684626.9738 685658.5082 37.9348 -11.7782 92.7388 run14.mat -1 -1 276 3532793 3543119 +7034791 7035930 1140 685673.6402 685730.1494 39.5787 -11.7772 93.5116 run14.mat -1 -1 276 3543271 3543841 +7119915 7138657 18743 689929.7386 690867.8889 39.5835 -11.7786 93.103 run14.mat -1 -1 277 3585835 3595207 +7138974 7159625 20652 690883.6162 691915.4506 41.2306 -11.7788 92.5989 run14.mat -1 -1 277 3595365 3605691 +7159932 7180645 20714 691930.9306 692966.1225 42.8769 -11.778 92.615 run14.mat -1 -1 277 3605844 3616202 +7180950 7201627 20678 692981.3757 694017.5152 44.5294 -11.7788 92.6642 run14.mat -1 -1 277 3616354 3626693 +7201932 7215809 13878 694032.7711 694724.7744 46.1792 -11.7778 92.7512 run14.mat -1 -1 277 3626845 3633784 +7299839 7305662 5824 698926.9895 699219.5964 46.1777 -11.7793 94.088 run14.mat -1 -1 278 3675801 3678704 +7305988 7326664 20677 699235.9027 700268.8313 47.8232 -11.7783 92.5313 run14.mat -1 -1 278 3678876 3689214 +7326971 7347666 20696 700284.0625 701318.9714 49.473 -11.7781 92.5771 run14.mat -1 -1 278 3689368 3699715 +7347974 7368652 20679 701334.5018 702368.9413 51.1271 -11.7783 92.5896 run14.mat -1 -1 278 3699869 3710209 +7368965 7389644 20680 702384.487 703416.7641 52.776 -11.7777 92.6616 run14.mat -1 -1 278 3710366 3720706 +7389952 7395629 5678 703432.1701 703716.1159 54.4263 -11.7781 92.7738 run14.mat -1 -1 278 3720860 3723698 +7479716 7493769 14054 707920.5037 708621.6151 54.425 -11.7784 93.2655 run14.mat -1 -1 279 3765744 3772770 +7494091 7514765 20675 708637.5873 709673.3323 56.0735 -11.7786 92.5341 run14.mat -1 -1 279 3772931 3783269 +7515074 7535766 20693 709688.6657 710722.1514 57.7261 -11.7781 92.6867 run14.mat -1 -1 279 3783423 3793770 +7536073 7556746 20674 710737.6284 711773.7929 59.3749 -11.7783 92.5645 run14.mat -1 -1 279 3793923 3804261 +7557054 7575529 18476 711789.3202 712710.5087 61.0266 -11.7783 92.7769 run14.mat -1 -1 279 3804415 3813652 +7659831 7661093 1263 716927.4276 716990.2735 61.0188 -11.7756 97.5842 run14.mat -1 -1 280 3855805 3856436 +7661410 7682065 20656 717006.0008 718038.1565 62.674 -11.7784 92.6478 run14.mat -1 -1 280 3856595 3866923 +7682373 7703066 20694 718053.6838 719089.1929 64.3204 -11.7783 92.4764 run14.mat -1 -1 280 3867077 3877423 +7703373 7724068 20696 719104.485 720137.6597 65.9756 -11.778 92.6086 run14.mat -1 -1 280 3877577 3887925 +7724373 7745067 20695 720152.7916 721189.3695 67.6222 -11.7779 92.5111 run14.mat -1 -1 280 3888078 3898424 +7745374 7755609 10236 721204.7545 721716.6218 69.2708 -11.7786 92.7774 run14.mat -1 -1 280 3898578 3903696 +7839661 7849176 9516 725917.7885 726395.2329 69.2715 -11.7791 93.3098 run14.mat -1 -1 281 3945724 3950482 +7849495 7870147 20653 726411.186 727442.4521 70.9184 -11.7782 92.4769 run14.mat -1 -1 281 3950641 3960968 +7870453 7891166 20714 727457.6337 728493.1569 72.5701 -11.7784 92.5991 run14.mat -1 -1 281 3961121 3971477 +7891474 7912149 20676 728508.5621 729542.283 74.219 -11.7783 92.5586 run14.mat -1 -1 281 3971631 3981969 +7912453 7933126 20674 729557.3684 730592.0623 75.8666 -11.7781 92.6917 run14.mat -1 -1 281 3982121 3992458 +7933434 7935468 2035 730607.3462 730708.2791 77.5025 -11.7793 92.872 run14.mat -1 -1 281 3992612 3993629 +8019729 8037435 17707 734920.6797 735805.6564 77.5137 -11.7785 93.0059 run14.mat -1 -1 282 4035762 4044615 +8037749 8058446 20698 735821.3597 736858.1234 79.1634 -11.7788 92.6019 run14.mat -1 -1 282 4044772 4055121 +8058754 8079427 20674 736873.6507 737907.7745 80.8128 -11.7786 92.6249 run14.mat -1 -1 282 4055275 4065612 +8079735 8100086 20352 737923.0584 738939.98 82.461 -11.7785 92.5546 run14.mat -1 -1 282 4065766 4075942 +197455 217858 20404 832294.1741 833313.97 82.4626 -10.0948 92.8579 run15.mat -1 -1 284 166344 176546 +218164 238866 20703 833329.1516 834364.3536 80.8137 -10.0947 92.5663 run15.mat -1 -1 284 176699 187050 +239183 259858 20676 834380.2097 835414.2575 79.1669 -10.0944 92.5228 run15.mat -1 -1 284 187208 197547 +260166 280860 20695 835429.6605 836466.9684 77.514 -10.0944 92.6391 run15.mat -1 -1 284 197701 208048 +281168 293241 12074 836482.2493 837086.8418 75.8678 -10.0951 92.6289 run15.mat -1 -1 284 208202 214239 +377482 385136 7655 841296.647 841680.4037 75.868 -10.0952 93.637 run15.mat -1 -1 285 256361 260188 +385467 406160 20694 841696.8256 842728.981 74.2216 -10.0944 92.5767 run15.mat -1 -1 285 260354 270700 +406466 427138 20673 842744.4106 843778.4044 72.5691 -10.0946 92.6181 run15.mat -1 -1 285 270853 281190 +427445 448139 20695 843793.7603 844829.2782 70.9205 -10.0953 92.5567 run15.mat -1 -1 285 281343 291691 +448446 469099 20654 844844.5094 845876.9923 69.2679 -10.0947 92.6199 run15.mat -1 -1 285 291845 302171 +469406 473300 3895 845892.3453 846088.4559 67.6253 -10.094 92.4905 run15.mat -1 -1 285 302325 304272 +557440 573380 15941 850294.1204 851091.3597 67.6227 -10.0946 93.0667 run15.mat -1 -1 286 346344 354314 +573688 594381 20694 851106.7662 852140.1512 65.9719 -10.0942 92.5494 run15.mat -1 -1 286 354468 364815 +594689 615380 20692 852155.432 853189.9627 64.3208 -10.0946 92.6275 run15.mat -1 -1 286 364969 375315 +615685 636360 20676 853205.238 854242.1602 62.6693 -10.0946 92.5793 run15.mat -1 -1 286 375468 385806 +636669 653200 16532 854257.6132 855083.3024 61.0242 -10.0948 92.8117 run15.mat -1 -1 286 385960 394226 +737395 740699 3305 859292.0658 859458.5038 61.0207 -10.0957 95.4445 run15.mat -1 -1 287 436325 437978 +741004 761720 20717 859473.7567 860508.2861 59.3719 -10.0945 92.5834 run15.mat -1 -1 287 438130 448498 +762025 782721 20697 860523.6622 861560.0524 57.722 -10.0956 92.4812 run15.mat -1 -1 287 448641 458990 +783027 803720 20694 861575.4789 862609.3664 56.0704 -10.095 92.5818 run15.mat -1 -1 287 459143 469489 +804026 824699 20674 862624.6728 863656.977 54.4211 -10.0951 92.6177 run15.mat -1 -1 287 469642 479980 +825006 833299 8294 863672.2112 864087.6265 52.7735 -10.0953 92.8909 run15.mat -1 -1 287 480133 484280 +917547 928957 11411 868299.1916 868870.4781 52.7741 -10.0939 93.2362 run15.mat -1 -1 288 526405 532111 +929284 949960 20677 868886.7015 869922.095 51.1282 -10.094 92.5265 run15.mat -1 -1 288 532274 542613 +950269 970961 20693 869937.6727 870970.6082 49.4749 -10.0946 92.6645 run15.mat -1 -1 288 542767 553113 +971270 991962 20693 870986.0646 872022.9315 47.8284 -10.0946 92.5915 run15.mat -1 -1 288 553268 563614 +992270 1012921 20652 872038.3374 873069.2516 46.179 -10.0949 92.7623 run15.mat -1 -1 288 563768 574095 +1013230 1013319 90 873084.4704 873088.8538 44.5816 -10.0924 101.387 run15.mat -1 -1 288 574249 574294 +1097448 1117081 19634 877294.9748 878276.2912 44.5349 -10.0946 92.8802 run15.mat -1 -1 289 616360 626177 +1117404 1138086 20683 878292.5747 879327.124 42.8787 -10.0948 92.6163 run15.mat -1 -1 289 626338 636680 +1138390 1159064 20675 879342.2064 880377.3231 41.2297 -10.0944 92.593 run15.mat -1 -1 289 636832 647169 +1159374 1180063 20690 880392.8295 881427.594 39.5855 -10.0954 92.5786 run15.mat -1 -1 289 647324 657669 +1180371 1193219 12849 881442.9923 882085.3894 37.9343 -10.0935 92.9105 run15.mat -1 -1 289 657823 664247 +1277510 1284442 6933 886298.9754 886645.4375 37.9285 -10.0944 94.1475 run15.mat -1 -1 290 706395 709861 +1284779 1305485 20707 886662.1604 887695.5362 36.283 -10.0942 92.4773 run15.mat -1 -1 290 710030 720383 +1305789 1326464 20676 887710.6186 888747.422 34.6274 -10.0948 92.6114 run15.mat -1 -1 290 720535 730873 +1326771 1347464 20694 888762.6562 889795.9129 32.9833 -10.095 92.5679 run15.mat -1 -1 290 731026 741373 +1347772 1368443 20672 889811.3161 890846.1715 31.3309 -10.0952 92.6403 run15.mat -1 -1 290 741527 751863 +1368752 1373279 4528 890861.505 891087.0217 29.683 -10.0961 92.8957 run15.mat -1 -1 290 752018 754281 +1457401 1472584 15184 895293.2559 896054.2935 29.6837 -10.0947 93.0348 run15.mat -1 -1 291 796344 803936 +1472892 1493583 20692 896069.5743 897103.6285 28.0275 -10.0948 92.5358 run15.mat -1 -1 291 804090 814436 +1493891 1514583 20693 897119.1589 898152.2252 26.3853 -10.0944 92.5349 run15.mat -1 -1 291 814590 824936 +1514890 1535564 20675 898167.7022 899200.4386 24.7352 -10.0941 92.6371 run15.mat -1 -1 291 825090 835427 +1535876 1553178 17303 899216.0419 900081.3755 23.0861 -10.0952 92.7905 run15.mat -1 -1 291 835583 844235 +1637503 1640001 2499 904297.6045 904422.5525 23.0884 -10.0949 95.0131 run15.mat -1 -1 292 886400 887660 +1640324 1661006 20683 904438.7087 905473.072 21.4367 -10.0946 92.6044 run15.mat -1 -1 292 887810 898151 +1661313 1682004 20692 905488.4279 906523.4712 19.7884 -10.0948 92.5511 run15.mat -1 -1 292 898305 908650 +1682310 1703003 20694 906538.6558 907575.2021 18.1399 -10.0949 92.6174 run15.mat -1 -1 292 908803 919150 +1703311 1723978 20668 907590.4859 908622.5159 16.4922 -10.0948 92.6534 run15.mat -1 -1 292 919304 929638 +1724289 1733258 8970 908638.0692 909086.6585 14.8478 -10.0949 92.7936 run15.mat -1 -1 292 929794 934279 +1817538 1828267 10730 913302.5495 913835.3017 14.8452 -10.0954 93.3512 run15.mat -1 -1 293 976421 981785 +1828575 1849286 20712 913850.7049 914887.004 13.1926 -10.0947 92.4504 run15.mat -1 -1 293 981939 992295 +1849591 1870287 20697 914902.3832 915938.9069 11.5429 -10.0946 92.6596 run15.mat -1 -1 293 992448 1002796 +1870593 1891267 20675 915954.0885 916988.4478 9.8959 -10.0942 92.6083 run15.mat -1 -1 293 1002949 1013286 +1891575 1912245 20671 917003.9782 918035.9734 8.2427 -10.095 92.6995 run15.mat -1 -1 293 1013440 1023776 +1912555 1913318 764 918051.6015 918090.0345 6.6111 -10.0967 92.682 run15.mat -1 -1 293 1023931 1024313 +1997520 2016605 19086 922301.8635 923254.78 6.5911 -10.0948 93.0878 run15.mat -1 -1 294 1066416 1075959 +2016912 2037610 20699 923270.1329 924303.8085 4.9429 -10.0944 92.6771 run15.mat -1 -1 294 1076112 1086461 +2037914 2058608 20695 924318.8909 925355.4455 3.2919 -10.0948 92.6737 run15.mat -1 -1 294 1086613 1096961 +2058917 2079586 20670 925370.8984 926404.6599 1.643 -10.0954 92.6357 run15.mat -1 -1 294 1097116 1107451 +2079897 2093417 13521 926420.2159 927097.0478 -0.0014255 -10.0942 92.7357 run15.mat -1 -1 294 1107606 1114366 +2177499 2183684 6186 931299.214 931609.7338 -0.0023008 -10.0942 93.2822 run15.mat -1 -1 295 1156409 1159502 +2183991 2204689 20699 931625.2107 932656.4025 -1.6493 -10.094 92.5038 run15.mat -1 -1 295 1159655 1170005 +2204997 2225688 20692 932671.9298 933707.2962 -3.3018 -10.0949 92.5689 run15.mat -1 -1 295 1170159 1180505 +2225995 2246667 20673 933722.835 934757.6747 -4.948 -10.0949 92.5941 run15.mat -1 -1 295 1180658 1190995 +2246976 2267648 20673 934773.2525 935807.4327 -6.5907 -10.0949 92.6671 run15.mat -1 -1 295 1191149 1201486 +2267959 2273297 5339 935823.1113 936089.1822 -8.2529 -10.0953 92.8661 run15.mat -1 -1 295 1201641 1204310 +2357505 2371986 14482 940300.2698 941024.826 -8.2475 -10.0946 93.2076 run15.mat -1 -1 296 1246416 1253657 +2372293 2393008 20716 941040.0572 942074.0649 -9.8915 -10.0953 92.6023 run15.mat -1 -1 296 1253810 1264168 +2393315 2413987 20673 942089.5418 943123.7104 -11.545 -10.0946 92.5636 run15.mat -1 -1 296 1264322 1274658 +2414293 2434988 20696 943139.14 944174.438 -13.1905 -10.0948 92.6052 run15.mat -1 -1 296 1274811 1285159 +2435294 2453397 18104 944189.7396 945093.1836 -14.8461 -10.0945 92.7671 run15.mat -1 -1 296 1285312 1294364 +2537541 2539146 1606 949301.4211 949382.3345 -14.8451 -10.0926 97.4899 run15.mat -1 -1 297 1336438 1337241 +2539467 2560130 20664 949398.5172 950432.1934 -16.4917 -10.0945 92.5762 run15.mat -1 -1 297 1337401 1347733 +2560451 2581146 20696 950448.132 951480.954 -18.1403 -10.0942 92.5684 run15.mat -1 -1 297 1347894 1358241 +2581455 2602148 20694 951496.2844 952529.9094 -19.7889 -10.0954 92.5455 run15.mat -1 -1 297 1358396 1368743 +2602453 2623127 20675 952545.221 953580.8883 -21.4403 -10.0948 92.705 run15.mat -1 -1 297 1368895 1379233 +2623437 2633317 9881 953596.2683 954090.4636 -23.0876 -10.0958 92.6462 run15.mat -1 -1 297 1379388 1384328 +2717563 2727392 9830 958300.8077 958794.3655 -23.093 -10.0947 93.3208 run15.mat -1 -1 298 1426453 1431367 +2727708 2748427 20720 958810.1716 959846.7345 -24.7405 -10.0949 92.5424 run15.mat -1 -1 298 1431525 1441886 +2748734 2769412 20679 959861.9657 960896.1013 -26.3921 -10.0954 92.5889 run15.mat -1 -1 298 1442039 1452378 +2769718 2790409 20692 960911.5309 961945.6132 -28.0383 -10.0949 92.5926 run15.mat -1 -1 298 1452531 1462877 +2790717 2811389 20673 961960.894 962992.5749 -29.6933 -10.0949 92.6034 run15.mat -1 -1 298 1463031 1473368 +2811695 2813356 1662 963007.7565 963090.7816 -31.3421 -10.0948 93.0658 run15.mat -1 -1 298 1473521 1474351 +2897582 2915869 18288 967302.2531 968218.2121 -31.3379 -10.0944 92.9605 run15.mat -1 -1 299 1516466 1525610 +2916176 2936849 20674 968233.6891 969268.1393 -32.9858 -10.0948 92.6028 run15.mat -1 -1 299 1525764 1536101 +2937155 2957849 20695 969283.4452 970316.6513 -34.6357 -10.0946 92.6344 run15.mat -1 -1 299 1536254 1546601 +2958157 2978829 20673 970332.1787 971367.1451 -36.285 -10.0948 92.6986 run15.mat -1 -1 299 1546755 1557092 +2979139 2993476 14338 971382.5251 972099.7031 -37.9336 -10.0949 92.714 run15.mat -1 -1 299 1557247 1564415 +3077564 3083049 5486 976304.5111 976577 -37.9332 -10.0942 94.1918 run15.mat -1 -1 300 1606461 1609203 +3083378 3104069 20692 976593.4534 977629.3153 -39.5821 -10.0954 92.5252 run15.mat -1 -1 300 1609368 1619714 +3104377 3125069 20693 977644.4877 978676.9423 -41.2282 -10.0946 92.5664 run15.mat -1 -1 300 1619868 1630215 +3125375 3146027 20653 978692.3041 979726.4422 -42.8796 -10.0948 92.5544 run15.mat -1 -1 300 1630368 1640694 +3146337 3167032 20696 979741.8222 980776.7061 -44.5287 -10.0949 92.6417 run15.mat -1 -1 300 1640849 1651197 +3167341 3173336 5996 980792.0365 981091.4436 -46.1809 -10.0955 92.724 run15.mat -1 -1 300 1651352 1654349 +3257583 3271411 13829 985305.882 985996.2514 -46.1817 -10.0954 93.1054 run15.mat -1 -1 301 1696475 1703389 +3271717 3292414 20698 986011.433 987047.3444 -47.8265 -10.0945 92.6527 run15.mat -1 -1 301 1703542 1713891 +3292720 3313412 20693 987062.7709 988094.2217 -49.4781 -10.095 92.5526 run15.mat -1 -1 301 1714044 1724390 +3313718 3334412 20695 988109.3001 989146.0391 -51.1289 -10.095 92.604 run15.mat -1 -1 301 1724544 1734891 +3334717 3353355 18639 989161.1711 990093.4404 -52.7807 -10.0951 92.7066 run15.mat -1 -1 301 1735043 1744363 +3437693 3438770 1078 994309.1526 994362.5858 -52.7924 -10.0965 97.7066 run15.mat -1 -1 302 1786534 1787072 +3439076 3459772 20697 994377.7674 995414.7595 -54.4297 -10.0945 92.6299 run15.mat -1 -1 302 1787225 1797573 +3460079 3480767 20689 995430.1154 996464.3192 -56.0794 -10.0952 92.5759 run15.mat -1 -1 302 1797727 1808072 +3481078 3501753 20676 996479.9978 997512.5301 -57.7307 -10.095 92.5774 run15.mat -1 -1 302 1808227 1818565 +3502060 3522747 20688 997527.7613 998561.3789 -59.3771 -10.0953 92.6438 run15.mat -1 -1 302 1818719 1829063 +3523059 3533476 10418 998576.9819 999099.4453 -61.0249 -10.0949 92.7991 run15.mat -1 -1 302 1829219 1834427 +3617538 3626832 9295 1003303.227 1003767.3126 -61.0244 -10.0946 93.3992 run15.mat -1 -1 303 1876460 1881107 +3627148 3647834 20687 1003782.9903 1004818.2986 -62.6729 -10.0947 92.5138 run15.mat -1 -1 303 1881265 1891609 +3648147 3668832 20686 1004833.9546 1005868.4839 -64.3188 -10.0945 92.5975 run15.mat -1 -1 303 1891765 1902108 +3669138 3689832 20695 1005883.7869 1006918.7436 -65.9745 -10.0951 92.6083 run15.mat -1 -1 303 1902261 1912609 +3690138 3710794 20657 1006934.0465 1007963.1046 -67.6188 -10.0947 92.6898 run15.mat -1 -1 303 1912762 1923090 +3711100 3713335 2236 1007978.411 1008090.2076 -69.256 -10.0939 92.6261 run15.mat -1 -1 303 1923243 1924361 +3797610 3815219 17610 1012307.237 1013186.5276 -69.2693 -10.094 93.1088 run15.mat -1 -1 304 1966500 1975305 +3815531 3836213 20683 1013202.2598 1014234.7122 -70.9181 -10.0943 92.5794 run15.mat -1 -1 304 1975461 1985802 +3836521 3857213 20693 1014250.1181 1015286.5927 -72.5693 -10.0948 92.5269 run15.mat -1 -1 304 1985956 1996303 +3857519 3878213 20695 1015301.7773 1016337.2009 -74.2164 -10.0947 92.6793 run15.mat -1 -1 304 1996456 2006803 +3878520 3893395 14876 1016352.6809 1017094.6866 -75.867 -10.0946 92.7245 run15.mat -1 -1 304 2006957 2014395 +3977351 3982291 4941 1021294.0198 1021539.8762 -75.866 -10.0953 95.0792 run15.mat -1 -1 305 2056374 2058845 +3982608 4003293 20686 1021555.8572 1022590.1819 -77.5164 -10.0951 92.4456 run15.mat -1 -1 305 2059003 2069346 +4003604 4024293 20690 1022605.8 1023641.0591 -79.1668 -10.0945 92.5255 run15.mat -1 -1 305 2069502 2079846 +4024600 4045273 20674 1023656.1823 1024689.9536 -80.8176 -10.0947 92.6007 run15.mat -1 -1 305 2080000 2090337 +4045582 4066273 20692 1024705.5345 1025738.948 -82.467 -10.0945 92.6796 run15.mat -1 -1 305 2090492 2100838 +4066580 4073254 6675 1025754.1822 1026089.2707 -82.4731 -8.416 92.7597 run15.mat -1 -1 305 2100991 2104328 +4157533 4170616 13084 1030301.3299 1030957.274 -82.469 -8.4152 93.2996 run15.mat -1 -1 306 2146469 2153011 +4170926 4191592 20667 1030972.7799 1032007.192 -80.8208 -8.4161 92.5925 run15.mat -1 -1 306 2153166 2163500 +4191901 4212594 20694 1032022.7729 1033057.5043 -79.1704 -8.4148 92.6297 run15.mat -1 -1 306 2163654 2174001 +4212901 4233592 20692 1033072.7355 1034107.2165 -77.5197 -8.4157 92.5455 run15.mat -1 -1 306 2174155 2184501 +4233902 4253353 19452 1034122.5965 1035092.7473 -75.8704 -8.4153 92.6611 run15.mat -1 -1 306 2184656 2194382 +4337489 4337896 408 1039299.2323 1039319.7506 -75.881 -8.4176 103.4245 run15.mat -1 -1 307 2236451 2236655 +4338207 4358853 20647 1039335.4291 1040368.2666 -74.2194 -8.4154 92.6349 run15.mat -1 -1 307 2236810 2247134 +4359158 4379854 20697 1040383.6458 1041417.9 -72.5714 -8.4152 92.5979 run15.mat -1 -1 307 2247287 2257635 +4380160 4400852 20693 1041433.2 1042469.6684 -70.917 -8.4145 92.5982 run15.mat -1 -1 307 2257788 2268135 +4401159 4421835 20677 1042485.1484 1043517.5522 -69.27 -8.4142 92.6848 run15.mat -1 -1 307 2268288 2278626 +4422142 4433253 11112 1043532.9642 1044088.0545 -67.6181 -8.4148 92.8699 run15.mat -1 -1 307 2278780 2284335 +4517400 4526097 8698 1048298.0542 1048731.2864 -67.6183 -8.4164 93.7311 run15.mat -1 -1 308 2326411 2330760 +4526405 4547098 20694 1048746.5672 1049779.3614 -65.9728 -8.4147 92.5243 run15.mat -1 -1 308 2330914 2341260 +4547412 4568096 20685 1049795.1944 1050829.9762 -64.3182 -8.4153 92.6666 run15.mat -1 -1 308 2341417 2351760 +4568405 4589093 20689 1050845.5539 1051881.7704 -62.6708 -8.4154 92.6261 run15.mat -1 -1 308 2351914 2362259 +4589399 4610054 20656 1051896.952 1052930.1898 -61.0237 -8.4144 92.7199 run15.mat -1 -1 308 2362412 2372740 +4610360 4613294 2935 1052945.6163 1053092.5047 -59.3739 -8.416 93.4511 run15.mat -1 -1 308 2372893 2374360 +4697586 4714383 16798 1057305.0456 1058146.8045 -59.3749 -8.4141 92.9422 run15.mat -1 -1 309 2416508 2424907 +4714701 4735375 20675 1058162.8424 1059195.7845 -57.7264 -8.4163 92.5007 run15.mat -1 -1 309 2425066 2435403 +4735683 4756393 20711 1059211.1877 1060244.9433 -56.0725 -8.4147 92.5306 run15.mat -1 -1 309 2435557 2445912 +4756700 4777360 20661 1060260.2962 1061293.7152 -54.4292 -8.4159 92.6979 run15.mat -1 -1 309 2446066 2456396 +4777677 4793353 15677 1061309.6995 1062094.0722 -52.7742 -8.4148 92.6692 run15.mat -1 -1 309 2456555 2464393 +4879305 4883348 4044 1066391.1731 1066593.827 -52.7811 -8.4145 94.0758 run15.mat -1 -1 310 2507371 2509393 +4883665 4904355 20691 1066609.7983 1067644.7185 -51.1298 -8.4156 92.6183 run15.mat -1 -1 310 2509551 2519897 +4904660 4925354 20695 1067660.0946 1068692.1546 -49.4823 -8.4154 92.5933 run15.mat -1 -1 310 2520049 2530396 +4925659 4946333 20675 1068707.411 1069744.337 -47.8304 -8.4158 92.6453 run15.mat -1 -1 310 2530549 2540887 +4946640 4967333 20694 1069759.6899 1070792.6728 -46.1835 -8.4156 92.7097 run15.mat -1 -1 310 2541040 2551387 +4967641 4975092 7452 1070808.0508 1071181.6388 -44.5335 -8.4156 92.582 run15.mat -1 -1 310 2551541 2555267 +5059372 5071659 12288 1075396.1792 1076009.7805 -44.5362 -8.4167 93.1986 run15.mat -1 -1 311 2597409 2603523 +5071972 5092653 20682 1076025.3124 1077059.287 -42.8809 -8.4149 92.5952 run15.mat -1 -1 311 2603709 2614050 +5092959 5113633 20675 1077074.5929 1078110.0936 -41.2328 -8.4161 92.566 run15.mat -1 -1 311 2614203 2624540 +5113940 5134639 20700 1078125.2167 1079159.1276 -39.5827 -8.4148 92.5466 run15.mat -1 -1 311 2624694 2635044 +5134953 5155173 20221 1079174.8341 1080185.3794 -37.9347 -8.415 92.7749 run15.mat -1 -1 311 2635201 2645311 +5239221 5259715 20495 1084388.5547 1085411.8177 -36.2845 -8.4166 92.8705 run15.mat -1 -1 312 2687337 2697584 +5260019 5280716 20698 1085427.1464 1086463.0772 -34.635 -8.4148 92.5896 run15.mat -1 -1 312 2697736 2708086 +5281024 5301715 20692 1086478.358 1087513.1288 -32.983 -8.4157 92.5752 run15.mat -1 -1 312 2708240 2718586 +5302021 5322697 20677 1087528.432 1088561.9006 -31.3355 -8.4148 92.6209 run15.mat -1 -1 312 2718739 2729077 +5323001 5333718 10718 1088577.2263 1089113.6459 -29.6859 -8.415 92.7624 run15.mat -1 -1 312 2729229 2734588 +5333968 5335031 1064 1089126.1483 1089178.9571 -29.6822 -8.4125 92.83 run15.mat -1 -1 312 2734713 2735244 +5419319 5427075 7757 1093393.7396 1093780.8377 -29.6889 -8.4164 93.597 run15.mat -1 -1 313 2777390 2781268 +5427385 5448079 20695 1093796.4658 1094831.7048 -28.0349 -8.4152 92.4274 run15.mat -1 -1 313 2781423 2791771 +5448383 5469057 20675 1094847.0304 1095881.3106 -26.3897 -8.4163 92.6338 run15.mat -1 -1 313 2791923 2802260 +5469365 5490056 20692 1095896.6668 1096927.8935 -24.7367 -8.4144 92.6196 run15.mat -1 -1 313 2802414 2812760 +5490366 5511034 20669 1096943.5217 1097979.9174 -23.0943 -8.4155 92.7566 run15.mat -1 -1 313 2812915 2823250 +5511343 5515051 3709 1097995.2479 1098179.2129 -21.4414 -8.4124 92.7183 run15.mat -1 -1 313 2823404 2825258 +5599113 5615140 16028 1102382.8224 1103186.3536 -21.4399 -8.4148 92.8819 run15.mat -1 -1 314 2867291 2875305 +5615446 5636138 20693 1103201.6595 1104234.182 -19.7929 -8.4152 92.5648 run15.mat -1 -1 314 2875458 2885805 +5636446 5657135 20690 1104249.4628 1105283.545 -18.1466 -8.4164 92.6267 run15.mat -1 -1 314 2885959 2896303 +5657444 5678118 20675 1105299.1259 1106334.1066 -16.4963 -8.4157 92.6089 run15.mat -1 -1 314 2896457 2906795 +5678426 5694912 16487 1106349.5125 1107172.1935 -14.8465 -8.4163 92.7085 run15.mat -1 -1 314 2906949 2915193 +5778884 5782225 3342 1111372.7145 1111539.1669 -14.8444 -8.417 95.2974 run15.mat -1 -1 315 2957181 2958851 +5782549 5803217 20669 1111555.2415 1112588.6636 -13.1954 -8.4142 92.5284 run15.mat -1 -1 315 2959013 2969347 +5803524 5824218 20695 1112604.1436 1113638.5914 -11.5441 -8.4155 92.5972 run15.mat -1 -1 315 2969501 2979849 +5824527 5845217 20691 1113653.9218 1114690.6561 -9.8947 -8.414 92.6117 run15.mat -1 -1 315 2980003 2990348 +5845525 5866196 20672 1114706.3857 1115738.3769 -8.2449 -8.4143 92.5927 run15.mat -1 -1 315 2990502 3000839 +5866504 5874771 8268 1115753.6577 1116166.7899 -6.5951 -8.4148 92.8 run15.mat -1 -1 315 3000993 3005126 +5958895 5970341 11447 1120372.5164 1120946.0292 -6.5955 -8.4151 93.1784 run15.mat -1 -1 316 3047190 3052913 +5970661 5991338 20678 1120962.0354 1121996.145 -4.9428 -8.4152 92.5976 run15.mat -1 -1 316 3053073 3063412 +5991647 6012340 20694 1122011.5982 1123044.3906 -3.2981 -8.4144 92.6177 run15.mat -1 -1 316 3063567 3073913 +6012650 6033338 20689 1123059.7737 1124092.664 -1.6456 -8.4151 92.6441 run15.mat -1 -1 316 3074068 3084413 +6033643 6054297 20655 1124107.9169 1125141.8996 -0.00071038 -8.4142 92.67 run15.mat -1 -1 316 3084565 3094893 +6054602 6054691 90 1125157.2757 1125161.7625 1.6838 -8.4224 83.8403 run15.mat -1 -1 316 3095046 3095090 +6138701 6158452 19752 1129364.7309 1130350.9596 1.6481 -8.4153 93.0682 run15.mat -1 -1 317 3137097 3146973 +6158764 6179438 20675 1130366.5626 1131399.2234 3.2933 -8.4151 92.5498 run15.mat -1 -1 317 3147129 3157466 +6179747 6200454 20708 1131414.8012 1132450.4145 4.9446 -8.4159 92.6103 run15.mat -1 -1 317 3157621 3167975 +6200764 6221440 20677 1132465.7975 1133500.1892 6.591 -8.414 92.6166 run15.mat -1 -1 317 3168130 3178468 +6221746 6234591 12846 1133515.4924 1134155.8891 8.2418 -8.4146 92.8795 run15.mat -1 -1 317 3178621 3185044 +6318831 6325667 6837 1138370.7555 1138710.9748 8.2398 -8.4157 93.8314 run15.mat -1 -1 318 3227166 3230584 +6325984 6346678 20695 1138726.8279 1139761.8641 9.8913 -8.4147 92.5355 run15.mat -1 -1 318 3230743 3241090 +6346986 6367662 20677 1139777.4535 1140810.5208 11.5389 -8.416 92.5014 run15.mat -1 -1 318 3241244 3251583 +6367971 6388662 20692 1140825.8543 1141862.6041 13.1901 -8.4154 92.6574 run15.mat -1 -1 318 3251737 3262083 +6388969 6409641 20673 1141877.9573 1142909.8148 14.8413 -8.4151 92.6307 run15.mat -1 -1 318 3262236 3272573 +6409949 6414610 4662 1142925.2177 1143158.8399 16.496 -8.4118 93.0345 run15.mat -1 -1 318 3272727 3275057 +6498597 6513870 15274 1147359.7055 1148121.7455 16.4918 -8.4154 93.2115 run15.mat -1 -1 319 3317053 3324690 +6514186 6534865 20680 1148137.6761 1149171.1264 18.142 -8.4148 92.6372 run15.mat -1 -1 319 3324848 3335188 +6535178 6555854 20677 1149186.6553 1150220.4187 19.7888 -8.4149 92.6934 run15.mat -1 -1 319 3335344 3345683 +6556163 6576845 20683 1150235.746 1151269.8234 21.4395 -8.4161 92.6436 run15.mat -1 -1 319 3345837 3356178 +6577150 6594490 17341 1151284.9524 1152153.817 23.0869 -8.4157 92.7897 run15.mat -1 -1 319 3356331 3365001 +6678662 6681030 2369 1156362.2435 1156479.7271 23.0836 -8.4196 95.0882 run15.mat -1 -1 320 3407089 3408273 +6681354 6702044 20691 1156495.8017 1157531.7236 24.737 -8.4148 92.6415 run15.mat -1 -1 320 3408435 3418781 +6702350 6723020 20671 1157547.03 1158579.8349 26.3898 -8.4157 92.6375 run15.mat -1 -1 320 3418934 3429269 +6723329 6744023 20695 1158595.2938 1159630.0671 28.0351 -8.4158 92.5708 run15.mat -1 -1 320 3429423 3439771 +6744331 6765003 20673 1159645.3509 1160678.9311 29.6869 -8.4146 92.6252 run15.mat -1 -1 320 3439925 3450262 +6765309 6774450 9142 1160694.1127 1161150.0104 31.3388 -8.4169 92.7943 run15.mat -1 -1 320 3450415 3454985 +6858547 6869251 10705 1165355.8992 1165891.2573 31.3309 -8.4156 93.5539 run15.mat -1 -1 321 3497035 3502388 +6869566 6890251 20686 1165907.0106 1166942.5164 32.9834 -8.4148 92.6343 run15.mat -1 -1 321 3502546 3512889 +6890567 6911244 20678 1166958.3195 1167991.4202 34.6276 -8.4142 92.6338 run15.mat -1 -1 321 3513047 3523385 +6911550 6932244 20695 1168006.8467 1169040.6834 36.2817 -8.415 92.6138 run15.mat -1 -1 321 3523538 3533886 +6932552 6953208 20657 1169056.0864 1170087.5756 37.9296 -8.4162 92.713 run15.mat -1 -1 321 3534040 3544368 +6953524 6954329 806 1170103.2565 1170143.3017 39.5827 -8.4159 92.2839 run15.mat -1 -1 321 3544526 3544929 +7038377 7057392 19016 1174347.6937 1175297.4066 39.5809 -8.4141 92.8604 run15.mat -1 -1 322 3586954 3596462 +7057703 7078369 20667 1175312.8363 1176347.7937 41.2296 -8.4142 92.6037 run15.mat -1 -1 322 3596618 3606952 +7078687 7099367 20681 1176363.697 1177396.0157 42.8767 -8.4147 92.5536 run15.mat -1 -1 322 3607111 3617451 +7099674 7120347 20674 1177411.4926 1178447.1766 44.5302 -8.4142 92.6246 run15.mat -1 -1 322 3617605 3627941 +7120655 7134249 13595 1178462.5825 1179142.4164 46.1769 -8.4164 92.7109 run15.mat -1 -1 322 3628095 3634892 +7218534 7224751 6218 1183355.0369 1183667.7575 46.1818 -8.4166 94.0982 run15.mat -1 -1 323 3677037 3680143 +7225058 7245747 20690 1183683.1104 1184717.8171 47.8307 -8.4158 92.5663 run15.mat -1 -1 323 3680299 3690644 +7246054 7266726 20673 1184733.17 1185764.0744 49.4771 -8.4147 92.5876 run15.mat -1 -1 323 3690798 3701134 +7267036 7287729 20694 1185779.4545 1186815.975 51.1298 -8.4141 92.5769 run15.mat -1 -1 323 3701289 3711636 +7288038 7308708 20671 1186831.5527 1187863.9532 52.7776 -8.4146 92.6347 run15.mat -1 -1 323 3711790 3722126 +7309017 7314289 5273 1187879.2836 1188142.9589 54.4269 -8.4143 92.7001 run15.mat -1 -1 323 3722281 3724916 +7398381 7412871 14491 1192347.0133 1193073.0187 54.4269 -8.4147 93.0977 run15.mat -1 -1 324 3766964 3774210 +7413192 7433867 20676 1193088.9476 1194123.7042 56.0761 -8.4154 92.4638 run15.mat -1 -1 324 3774370 3784708 +7434173 7454850 20678 1194139.2493 1195171.766 57.722 -8.4156 92.6188 run15.mat -1 -1 324 3784861 3795200 +7455158 7475866 20709 1195187.0468 1196221.363 59.3737 -8.4142 92.6289 run15.mat -1 -1 324 3795354 3805709 +7476174 7494209 18036 1196236.8903 1197138.3437 61.0197 -8.4161 92.7728 run15.mat -1 -1 324 3805863 3814880 +7578284 7579958 1675 1201342.2308 1201425.9469 61.0213 -8.4147 96.4947 run15.mat -1 -1 325 3856920 3857757 +7580275 7600928 20654 1201441.8 1202474.7563 62.67 -8.4159 92.6357 run15.mat -1 -1 325 3857916 3868242 +7601234 7621927 20694 1202490.0592 1203525.308 64.3144 -8.4159 92.5819 run15.mat -1 -1 325 3868395 3878742 +7622235 7642928 20694 1203540.5888 1204575.2004 65.9676 -8.4152 92.6262 run15.mat -1 -1 325 3878896 3889243 +7643235 7663926 20692 1204590.6708 1205625.6517 67.6189 -8.4144 92.6009 run15.mat -1 -1 325 3889397 3899743 +7664235 7674068 9834 1205641.2295 1206132.484 69.2685 -8.4152 92.7419 run15.mat -1 -1 325 3899897 3904814 +7758381 7768233 9853 1210348.4202 1210841.1103 69.2711 -8.4144 93.1702 run15.mat -1 -1 326 3946973 3951899 +7768547 7789229 20683 1210856.9401 1211892.2304 70.9148 -8.4138 92.5209 run15.mat -1 -1 326 3952056 3962397 +7789537 7810216 20680 1211907.6334 1212938.2846 72.5717 -8.4151 92.5786 run15.mat -1 -1 326 3962551 3972891 +7810529 7831230 20702 1212953.8135 1213990.8449 74.2168 -8.4149 92.497 run15.mat -1 -1 326 3973047 3983398 +7831536 7852188 20653 1214006.1334 1215038.0548 75.8675 -8.4142 92.7779 run15.mat -1 -1 326 3983551 3993878 +7852494 7854148 1655 1215053.358 1215136.0752 77.5255 -8.4122 92.4055 run15.mat -1 -1 326 3994031 3994858 +7938247 7956332 18086 1219341.4814 1220246.2586 77.5157 -8.4147 92.9412 run15.mat -1 -1 327 4036909 4045952 +7956655 7977331 20677 1220262.5454 1221297.6872 79.1695 -8.4153 92.5254 run15.mat -1 -1 327 4046114 4056452 +7977639 7998332 20694 1221312.971 1222347.6078 80.8167 -8.415 92.5098 run15.mat -1 -1 327 4056606 4066953 +7998639 8018982 20344 1222362.842 1223377.434 82.4634 -8.4148 92.5883 run15.mat -1 -1 327 4067106 4077279 +300846 321359 20514 1352634.7065 1353658.6326 82.4626 -6.7307 92.9539 run16.mat -1 -1 329 166815 177071 +321665 342357 20693 1353673.9356 1354710.5611 80.8182 -6.7315 92.5607 run16.mat -1 -1 329 177224 187571 +342664 363359 20696 1354726.0411 1355759.0238 79.1688 -6.7311 92.5297 run16.mat -1 -1 329 187725 198072 +363668 384360 20693 1355774.3573 1356808.9794 77.5192 -6.7313 92.5726 run16.mat -1 -1 329 198227 208573 +384665 396726 12062 1356824.3586 1357427.4658 75.8639 -6.7308 92.7242 run16.mat -1 -1 329 208725 214756 +480891 488660 7770 1361636.1723 1362024.7692 75.8687 -6.7298 93.8736 run16.mat -1 -1 330 256841 260725 +488988 509684 20697 1362041.2354 1363077.2108 74.2205 -6.7313 92.5342 run16.mat -1 -1 330 260889 271238 +509991 530684 20694 1363092.5638 1364126.2309 72.5712 -6.7306 92.5691 run16.mat -1 -1 330 271392 281739 +530989 551661 20673 1364141.607 1365174.5215 70.9185 -6.7317 92.5876 run16.mat -1 -1 330 281891 292227 +551968 572642 20675 1365189.6418 1366221.917 69.2695 -6.7311 92.7669 run16.mat -1 -1 330 292381 302718 +572949 576806 3858 1366237.2734 1366431.2178 67.6222 -6.7346 93.0507 run16.mat -1 -1 330 302871 304800 +660863 676745 15883 1370633.2656 1371428.5053 67.6163 -6.7325 92.9062 run16.mat -1 -1 331 346831 354772 +677053 697742 20690 1371444.0327 1372478.3802 65.9712 -6.7317 92.5918 run16.mat -1 -1 331 354926 365271 +698048 718739 20692 1372493.5618 1373530.75 64.3159 -6.7323 92.5438 run16.mat -1 -1 331 365424 375770 +719048 739741 20694 1373546.2 1374579.2545 62.6687 -6.7323 92.579 run16.mat -1 -1 331 375924 386271 +740046 756665 16620 1374594.4003 1375424.8023 61.0185 -6.7324 92.7487 run16.mat -1 -1 331 386424 394734 +840934 844002 3069 1379638.2034 1379792.2746 61.0194 -6.7244 94.7694 run16.mat -1 -1 332 436870 438404 +844330 865011 20682 1379808.7464 1380841.2991 59.3752 -6.7305 92.4867 run16.mat -1 -1 332 438568 448909 +865323 886025 20703 1380856.8231 1381892.415 57.726 -6.731 92.6292 run16.mat -1 -1 332 449066 459417 +886332 907006 20675 1381907.8919 1382943.4306 56.0727 -6.7323 92.6205 run16.mat -1 -1 332 459570 469907 +907314 927986 20673 1382958.8365 1383991.6543 54.4272 -6.7305 92.6043 run16.mat -1 -1 332 470061 480398 +928293 936725 8433 1384006.8855 1384428.1944 52.7808 -6.7328 92.5944 run16.mat -1 -1 332 480552 484768 +1020841 1032204 11364 1388635.6946 1389203.466 52.7796 -6.731 93.3118 run16.mat -1 -1 333 526828 532509 +1032535 1053217 20683 1389219.8879 1390253.8425 51.1312 -6.7307 92.5181 run16.mat -1 -1 333 532675 543017 +1053529 1074207 20679 1390269.5715 1391301.9046 49.4758 -6.7317 92.5709 run16.mat -1 -1 333 543173 553512 +1074512 1095209 20698 1391317.2807 1392352.4398 47.8306 -6.7307 92.655 run16.mat -1 -1 333 553664 564013 +1095513 1116187 20675 1392367.5221 1393403.2273 46.1774 -6.732 92.6572 run16.mat -1 -1 333 564165 574503 +1116494 1116725 232 1393418.6048 1393430.1593 44.5508 -6.7349 91.0017 run16.mat -1 -1 333 574656 574772 +1201045 1220645 19601 1397646.0904 1398624.588 44.5291 -6.7316 93.0356 run16.mat -1 -1 334 616934 626734 +1220952 1241646 20695 1398639.941 1399672.9805 42.8789 -6.7319 92.5744 run16.mat -1 -1 334 626888 637235 +1241952 1262627 20676 1399688.2522 1400722.6241 41.2242 -6.733 92.5491 run16.mat -1 -1 334 637388 647726 +1262932 1283608 20677 1400738.0002 1401772.5311 39.5812 -6.7324 92.6442 run16.mat -1 -1 334 647879 658217 +1283915 1296804 12890 1401787.8875 1402434.3884 37.93 -6.7319 92.8133 run16.mat -1 -1 334 658370 664815 +1380866 1387726 6861 1406635.3553 1406978.8019 37.9306 -6.7288 93.6156 run16.mat -1 -1 335 706848 710278 +1388032 1408709 20678 1406994.1048 1408029.8037 36.282 -6.7327 92.5845 run16.mat -1 -1 335 710431 720770 +1409016 1429726 20711 1408045.0349 1409080.5284 34.6274 -6.7313 92.6031 run16.mat -1 -1 335 720924 731279 +1430033 1450709 20677 1409095.7626 1410126.7568 32.9832 -6.7324 92.5532 run16.mat -1 -1 335 731432 741771 +1451016 1471687 20672 1410142.1127 1411176.438 31.3345 -6.7297 92.7288 run16.mat -1 -1 335 741925 752261 +1471995 1476664 4670 1411191.7188 1411424.8357 29.6854 -6.7351 92.8155 run16.mat -1 -1 335 752415 754749 +1560993 1576008 15016 1415643.4552 1416393.3102 29.6883 -6.7309 92.9223 run16.mat -1 -1 336 796915 804423 +1576314 1597027 20714 1416408.4918 1417443.6372 28.034 -6.7311 92.5399 run16.mat -1 -1 336 804576 814933 +1597334 1618009 20676 1417458.9902 1418492.8594 26.3869 -6.7314 92.5997 run16.mat -1 -1 336 815087 825425 +1618315 1639011 20697 1418508.2859 1419541.617 24.739 -6.732 92.5658 run16.mat -1 -1 336 825578 835926 +1639316 1656744 17429 1419557.0577 1420430.4253 23.0891 -6.7316 92.7424 run16.mat -1 -1 336 836078 844793 +1740708 1743106 2399 1424627.8724 1424746.8444 23.0902 -6.7308 96.8566 run16.mat -1 -1 337 886777 887976 +1743446 1764108 20663 1424763.7128 1425799.8991 21.437 -6.7318 92.4959 run16.mat -1 -1 337 888146 898477 +1764415 1785130 20716 1425815.1501 1426849.6084 19.7944 -6.7311 92.5702 run16.mat -1 -1 337 898631 908989 +1785435 1806116 20682 1426864.9845 1427900.0353 18.1394 -6.7315 92.5319 run16.mat -1 -1 337 909142 919482 +1806428 1827092 20665 1427915.5146 1428946.875 16.4935 -6.7312 92.6768 run16.mat -1 -1 337 919638 929970 +1827398 1836623 9226 1428962.0595 1429423.6216 14.8418 -6.7326 92.7372 run16.mat -1 -1 337 930123 934736 +1920874 1931368 10495 1433635.7647 1434163.3632 14.8436 -6.729 93.2252 run16.mat -1 -1 338 976864 982111 +1931684 1952351 20668 1434179.0441 1435210.6563 13.1887 -6.7313 92.5015 run16.mat -1 -1 338 982269 992603 +1952655 1973367 20713 1435225.9851 1436262.5884 11.5393 -6.7317 92.5636 run16.mat -1 -1 338 992755 1003111 +1973676 1994348 20673 1436278.0414 1437311.8586 9.8885 -6.7324 92.6641 run16.mat -1 -1 338 1003266 1013602 +1994656 2015313 20658 1437327.3508 1438358.3026 8.2408 -6.7327 92.6437 run16.mat -1 -1 338 1013756 1024086 +2015624 2016644 1021 1438373.7323 1438424.3376 6.5816 -6.7321 92.7858 run16.mat -1 -1 338 1024241 1024751 +2100684 2119420 18737 1442627.0264 1443565.6536 6.5909 -6.7313 92.9574 run16.mat -1 -1 339 1066773 1076141 +2119731 2140411 20681 1443581.3321 1444613.8165 4.9428 -6.7305 92.507 run16.mat -1 -1 339 1076296 1086637 +2140717 2161411 20695 1444629.2011 1445664.8472 3.2926 -6.7317 92.581 run16.mat -1 -1 339 1086790 1097138 +2161719 2182391 20673 1445680.131 1446713.0903 1.6461 -6.7302 92.5814 run16.mat -1 -1 339 1097292 1107628 +2182694 2196503 13810 1446728.3656 1447418.2583 -0.0020335 -6.7303 92.745 run16.mat -1 -1 339 1107780 1114684 +2280604 2286507 5904 1451623.5749 1451916.8207 0.0016061 -6.731 94.0779 run16.mat -1 -1 340 1156737 1159689 +2286841 2307529 20689 1451933.6588 1452970.0633 -1.6484 -6.7311 92.4952 run16.mat -1 -1 340 1159856 1170200 +2307836 2328510 20675 1452985.4165 1454017.3195 -3.2948 -6.7321 92.6196 run16.mat -1 -1 340 1170354 1180691 +2328817 2349521 20705 1454032.6724 1455070.1054 -4.945 -6.7321 92.5407 run16.mat -1 -1 340 1180844 1191197 +2349835 2370488 20654 1455085.8115 1456118.2444 -6.5929 -6.732 92.6308 run16.mat -1 -1 340 1191354 1201681 +2370796 2376383 5588 1456133.7717 1456413.5974 -8.2487 -6.7323 92.5791 run16.mat -1 -1 340 1201835 1204628 +2460622 2474789 14168 1460625.3263 1461332.2779 -8.242 -6.7301 93.2486 run16.mat -1 -1 341 1246750 1253833 +2475097 2495795 20699 1461347.6809 1462382.3196 -9.8945 -6.7316 92.5644 run16.mat -1 -1 341 1253987 1264337 +2496099 2516796 20698 1462397.6453 1463432.3354 -11.5436 -6.731 92.6088 run16.mat -1 -1 341 1264489 1274838 +2517105 2537792 20688 1463447.6746 1464484.0282 -13.191 -6.7322 92.5294 run16.mat -1 -1 341 1274993 1285336 +2538096 2556443 18348 1464499.1135 1465416.9902 -14.845 -6.7297 92.7571 run16.mat -1 -1 341 1285488 1294662 +2640521 2641871 1351 1469619.8017 1469686.7793 -14.8413 -6.736 98.1172 run16.mat -1 -1 342 1336703 1337378 +2642178 2662873 20696 1469702.0105 1470736.9149 -16.4961 -6.7305 92.5884 run16.mat -1 -1 342 1337532 1347880 +2663179 2683870 20692 1470752.3414 1471789.0135 -18.1429 -6.7337 92.5694 run16.mat -1 -1 342 1348033 1358379 +2684178 2704872 20695 1471804.4164 1472836.5114 -19.7935 -6.7319 92.5193 run16.mat -1 -1 342 1358533 1368880 +2705180 2725851 20672 1472851.7922 1473885.3802 -21.4408 -6.732 92.6123 run16.mat -1 -1 342 1369034 1379370 +2726158 2736301 10144 1473900.6114 1474408.8904 -23.0919 -6.7319 92.7319 run16.mat -1 -1 342 1379524 1384595 +2820276 2829851 9576 1478607.3859 1479086.445 -23.093 -6.7302 93.4557 run16.mat -1 -1 343 1426585 1431372 +2830160 2850872 20713 1479101.7785 1480136.7652 -24.7413 -6.732 92.593 run16.mat -1 -1 343 1431527 1441883 +2851178 2871856 20679 1480152.1321 1481186.2709 -26.3869 -6.7304 92.6326 run16.mat -1 -1 343 1442036 1452376 +2872165 2892855 20691 1481201.4926 1482237.3557 -28.036 -6.7321 92.6061 run16.mat -1 -1 343 1452530 1462875 +2893164 2913849 20686 1482252.6892 1483287.0485 -29.6869 -6.7305 92.6968 run16.mat -1 -1 343 1463030 1473373 +2914157 2916082 1926 1483302.4524 1483398.7224 -31.3435 -6.7306 92.913 run16.mat -1 -1 343 1473527 1474490 +3000184 3017972 17789 1487604.0088 1488493.0849 -31.3363 -6.7298 92.9696 run16.mat -1 -1 344 1516542 1525437 +3018287 3038956 20670 1488508.9651 1489541.2815 -32.9851 -6.7323 92.585 run16.mat -1 -1 344 1525594 1535929 +3039270 3059954 20685 1489556.9009 1490591.4596 -34.6305 -6.7308 92.5908 run16.mat -1 -1 344 1536087 1546429 +3060260 3080933 20674 1490606.8861 1491642.6059 -36.2861 -6.7317 92.5991 run16.mat -1 -1 344 1546582 1556919 +3081241 3095961 14721 1491657.7783 1492392.6348 -37.9306 -6.7323 92.7641 run16.mat -1 -1 344 1557073 1564433 +3182094 3187091 4998 1496699.1082 1496947.7695 -37.9412 -6.7311 94.4523 run16.mat -1 -1 345 1607502 1610000 +3187421 3208112 20692 1496964.273 1498000.2492 -39.5786 -6.7318 92.4386 run16.mat -1 -1 345 1610165 1620511 +3208419 3229112 20694 1498015.7262 1499050.9544 -41.2317 -6.73 92.6531 run16.mat -1 -1 345 1620664 1631011 +3229417 3250093 20677 1499066.3336 1500096.7551 -42.8806 -6.73 92.5828 run16.mat -1 -1 345 1631164 1641502 +3250400 3271072 20673 1500112.1166 1501147.2549 -44.531 -6.7316 92.663 run16.mat -1 -1 345 1641656 1651992 +3271380 3277901 6522 1501162.7854 1501489.4017 -46.1831 -6.7316 92.9402 run16.mat -1 -1 345 1652146 1655407 +3361858 3375172 13315 1505687.3343 1506351.2294 -46.1823 -6.7332 93.4193 run16.mat -1 -1 346 1697387 1704045 +3375497 3396194 20698 1506367.5529 1507403.6099 -47.8344 -6.7311 92.5252 run16.mat -1 -1 346 1704207 1714556 +3396501 3417173 20673 1507418.9631 1508453.5499 -49.4783 -6.7315 92.6311 run16.mat -1 -1 346 1714710 1725046 +3417487 3438176 20690 1508469.3797 1509505.2112 -51.1333 -6.7308 92.6393 run16.mat -1 -1 346 1725203 1735548 +3438479 3457761 19283 1509520.3671 1510481.7194 -52.7806 -6.7324 92.7013 run16.mat -1 -1 346 1735699 1745341 +3541745 3542270 526 1514682.7635 1514708.6256 -52.7723 -6.7298 99.7239 run16.mat -1 -1 347 1787335 1787597 +3542594 3563232 20639 1514724.5862 1515756.7312 -54.4306 -6.7311 92.751 run16.mat -1 -1 347 1787759 1798079 +3563541 3584231 20691 1515772.1844 1516805.3922 -56.0789 -6.7324 92.6233 run16.mat -1 -1 347 1798233 1808578 +3584540 3605232 20693 1516820.7257 1517857.1727 -57.731 -6.7299 92.567 run16.mat -1 -1 347 1808733 1819080 +3605540 3626233 20694 1517872.4565 1518907.0018 -59.3786 -6.7316 92.638 run16.mat -1 -1 347 1819234 1829581 +3626539 3637601 11063 1518922.4283 1519473.1741 -61.026 -6.7293 92.7427 run16.mat -1 -1 347 1829734 1835265 +3721817 3730434 8618 1523685.4192 1524117.0033 -61.0258 -6.7327 93.2995 run16.mat -1 -1 348 1877374 1881683 +3730744 3751453 20710 1524132.5098 1525166.2259 -62.6718 -6.7308 92.5731 run16.mat -1 -1 348 1881838 1892193 +3751761 3772451 20691 1525181.6318 1526217.3441 -64.3222 -6.732 92.6202 run16.mat -1 -1 348 1892347 1902693 +3772759 3793435 20677 1526232.8745 1527267.0641 -65.9702 -6.7306 92.6339 run16.mat -1 -1 348 1902847 1913185 +3793741 3814413 20673 1527282.4906 1528316.6099 -67.619 -6.7323 92.6211 run16.mat -1 -1 348 1913338 1923675 +3814720 3817601 2882 1528332.09 1528475.6395 -69.2714 -6.7329 92.5351 run16.mat -1 -1 348 1923828 1925269 +3901671 3918511 16841 1532680.1084 1533519.4716 -69.2691 -6.7308 93.108 run16.mat -1 -1 349 1967306 1975726 +3918839 3939532 20694 1533536.0105 1534571.6849 -70.9177 -6.7316 92.5566 run16.mat -1 -1 349 1975890 1986237 +3939840 3960534 20695 1534587.0879 1535622.8132 -72.5692 -6.7299 92.6556 run16.mat -1 -1 349 1986391 1996739 +3960842 3981508 20667 1535638.3437 1536671.8416 -74.2186 -6.7318 92.5858 run16.mat -1 -1 349 1996893 2007226 +3981820 3997460 15641 1536687.3239 1537468.3659 -75.8642 -6.7335 92.7277 run16.mat -1 -1 349 2007382 2015202 +4081448 4085597 4150 1541666.3257 1541875.4908 -75.8759 -6.7304 94.9868 run16.mat -1 -1 350 2057198 2059273 +4085908 4106614 20707 1541891.1694 1542926.8554 -77.5126 -6.7317 92.4984 run16.mat -1 -1 350 2059428 2069782 +4106920 4127605 20686 1542942.1586 1543976.0794 -79.1713 -6.7323 92.5751 run16.mat -1 -1 350 2069935 2080277 +4127918 4148592 20675 1543991.6114 1545025.2756 -80.8186 -6.7321 92.6016 run16.mat -1 -1 350 2080434 2090772 +4148901 4169589 20689 1545040.7286 1546074.7667 -82.4687 -6.731 92.6464 run16.mat -1 -1 350 2090926 2101271 +4169898 4177340 7443 1546090.3444 1546461.4998 -82.4642 -5.0486 92.7652 run16.mat -1 -1 350 2101425 2105146 +4261416 4273702 12287 1550665.8826 1551279.3204 -82.4694 -5.0459 93.1289 run16.mat -1 -1 351 2147186 2153329 +4274018 4294712 20695 1551295.1235 1552330.8964 -80.8191 -5.0479 92.4646 run16.mat -1 -1 351 2153487 2163835 +4295020 4315695 20676 1552346.1772 1553381.0294 -79.1698 -5.0469 92.6155 run16.mat -1 -1 351 2163989 2174327 +4316002 4336692 20691 1553396.5095 1554429.6455 -77.5175 -5.0468 92.627 run16.mat -1 -1 351 2174480 2184826 +4337001 4357200 20200 1554445.0985 1555453.4724 -75.8695 -5.047 92.7449 run16.mat -1 -1 351 2184980 2195080 +4441081 4461595 20515 1559648.4428 1560674.3553 -74.2222 -5.0478 92.8279 run16.mat -1 -1 352 2237022 2247280 +4461901 4482612 20712 1560689.5399 1561725.026 -72.5696 -5.0478 92.5259 run16.mat -1 -1 352 2247433 2257789 +4482921 4503593 20673 1561740.3564 1562777.0087 -70.9187 -5.0483 92.6364 run16.mat -1 -1 352 2257943 2268280 +4503901 4524575 20675 1562792.2926 1563824.4767 -69.2693 -5.0482 92.6774 run16.mat -1 -1 352 2268434 2278771 +4524882 4536898 12017 1563839.8326 1564440.8215 -67.6148 -5.0462 92.8128 run16.mat -1 -1 352 2278924 2284933 +4621181 4628956 7776 1568655.0161 1569042.9976 -67.6183 -5.0464 93.5333 run16.mat -1 -1 353 2327076 2330964 +4629273 4649974 20702 1569058.9786 1570094.9644 -65.9696 -5.0479 92.5323 run16.mat -1 -1 353 2331123 2341473 +4650280 4670955 20676 1570110.2676 1571143.1789 -64.3182 -5.0475 92.6188 run16.mat -1 -1 353 2341626 2351965 +4671261 4691955 20695 1571158.6054 1572193.8762 -62.6723 -5.0495 92.6262 run16.mat -1 -1 353 2352118 2362465 +4692263 4712917 20655 1572209.4066 1573241.3761 -61.0221 -5.0473 92.7677 run16.mat -1 -1 353 2362619 2372947 +4713226 4716899 3674 1573256.7065 1573441.241 -59.3794 -5.0486 92.9493 run16.mat -1 -1 353 2373101 2374938 +4800981 4817086 16106 1577645.5272 1578448.5956 -59.3764 -5.0478 92.8633 run16.mat -1 -1 354 2416980 2425033 +4817407 4838094 20688 1578464.5213 1579501.9486 -57.727 -5.0471 92.5664 run16.mat -1 -1 354 2425194 2435538 +4838400 4859074 20675 1579517.3751 1580549.7005 -56.078 -5.0476 92.5231 run16.mat -1 -1 354 2435691 2446028 +4859381 4880076 20696 1580565.0535 1581599.3894 -54.4264 -5.0481 92.6787 run16.mat -1 -1 354 2446182 2456530 +4880383 4896798 16416 1581614.8663 1582436.5135 -52.7813 -5.0486 92.7021 run16.mat -1 -1 354 2456683 2464891 +4980772 4984198 3427 1586634.6521 1586804.6263 -52.7783 -5.0475 94.9868 run16.mat -1 -1 355 2506880 2508593 +4984507 5005193 20687 1586820.1982 1587855.2393 -51.132 -5.0474 92.6259 run16.mat -1 -1 355 2508747 2519091 +5005500 5026173 20674 1587870.4705 1588904.87 -49.4823 -5.0481 92.7128 run16.mat -1 -1 355 2519245 2529582 +5026479 5047175 20697 1588920.1732 1589954.0685 -47.8316 -5.0467 92.5914 run16.mat -1 -1 355 2529735 2540083 +5047482 5068154 20673 1589969.2997 1591004.0817 -46.1834 -5.0478 92.6085 run16.mat -1 -1 355 2540236 2550573 +5068464 5076678 8215 1591019.7098 1591429.7581 -44.5329 -5.0473 92.7539 run16.mat -1 -1 355 2550728 2554835 +5160757 5172258 11502 1595634.8156 1596209.2559 -44.5311 -5.0464 93.161 run16.mat -1 -1 356 2596876 2602627 +5172567 5193254 20688 1596224.8336 1597258.4521 -42.8813 -5.0484 92.5152 run16.mat -1 -1 356 2602781 2613125 +5193562 5214253 20692 1597273.7329 1598308.2993 -41.2289 -5.0483 92.5305 run16.mat -1 -1 356 2613279 2623625 +5214563 5235239 20677 1598323.748 1599358.86 -39.5837 -5.0479 92.5685 run16.mat -1 -1 356 2623781 2634119 +5235552 5256215 20664 1599374.5132 1600407.9202 -37.9338 -5.0469 92.6719 run16.mat -1 -1 356 2634276 2644608 +5256522 5256559 38 1600423.2734 1600425.1238 -36.3271 -5.0574 91.0345 run16.mat -1 -1 356 2644761 2644780 +5340564 5360363 19800 1604623.4637 1605615.2453 -36.2845 -5.0479 93.1271 run16.mat -1 -1 357 2686784 2696684 +5360680 5381357 20678 1605630.9758 1606665.6399 -34.6312 -5.0474 92.5526 run16.mat -1 -1 357 2696842 2707181 +5381668 5402356 20689 1606681.1958 1607712.7521 -32.9851 -5.0478 92.5761 run16.mat -1 -1 357 2707337 2717681 +5402662 5423354 20693 1607727.9337 1608762.5518 -31.3366 -5.0478 92.6748 run16.mat -1 -1 357 2717834 2728180 +5423663 5436458 12796 1608777.8853 1609419.7292 -29.6854 -5.0468 92.7669 run16.mat -1 -1 357 2728335 2734733 +5520694 5527585 6892 1613631.5093 1613975.0699 -29.6816 -5.0488 93.862 run16.mat -1 -1 358 2776853 2780298 +5527898 5548600 20703 1613990.5987 1615026.2331 -28.039 -5.0472 92.5406 run16.mat -1 -1 358 2780455 2790806 +5548906 5569579 20674 1615041.5361 1616075.392 -26.3875 -5.0488 92.5469 run16.mat -1 -1 358 2790959 2801296 +5569888 5590580 20693 1616090.8452 1617125.7045 -24.7412 -5.0477 92.5575 run16.mat -1 -1 358 2801451 2811797 +5590889 5611559 20671 1617141.1604 1618174.4783 -23.0926 -5.0465 92.6799 run16.mat -1 -1 358 2811952 2822287 +5611866 5616458 4593 1618189.7095 1618418.396 -21.4387 -5.0474 93.0038 run16.mat -1 -1 358 2822441 2824737 +5700539 5715796 15258 1622622.3487 1623387.3313 -21.4415 -5.0485 93.1233 run16.mat -1 -1 359 2866779 2874408 +5716111 5736801 20691 1623402.9563 1624437.5461 -19.7905 -5.0483 92.6846 run16.mat -1 -1 359 2874565 2884911 +5737105 5757779 20675 1624452.6285 1625484.9846 -18.1453 -5.0479 92.5597 run16.mat -1 -1 359 2885063 2895400 +5758086 5778777 20692 1625500.3405 1626534.0157 -16.4928 -5.0497 92.6767 run16.mat -1 -1 359 2895553 2905900 +5779086 5796318 17233 1626549.3461 1627411.4951 -14.8428 -5.0482 92.8531 run16.mat -1 -1 359 2906054 2914671 +5880447 5882919 2473 1631618.6618 1631742.0568 -14.8381 -5.0456 94.567 run16.mat -1 -1 360 2956737 2957973 +5883228 5903920 20693 1631757.3872 1632793.0244 -13.1928 -5.048 92.5135 run16.mat -1 -1 360 2958128 2968474 +5904228 5924898 20671 1632808.4274 1633841.591 -11.5425 -5.0476 92.6664 run16.mat -1 -1 360 2968628 2978963 +5925204 5945901 20698 1633857.0206 1634892.6931 -9.8943 -5.0474 92.6201 run16.mat -1 -1 360 2979116 2989466 +5946207 5966878 20672 1634907.9962 1635942.753 -8.2472 -5.0475 92.6927 run16.mat -1 -1 360 2989619 2999954 +5967188 5976217 9030 1635958.256 1636408.0699 -6.5981 -5.0496 92.826 run16.mat -1 -1 360 3000109 3004624 +6060489 6071216 10728 1640621.8185 1641159.4313 -6.5893 -5.0474 93.3775 run16.mat -1 -1 361 3046762 3052126 +6071527 6092218 20692 1641175.1726 1642206.3669 -4.9459 -5.0476 92.5516 run16.mat -1 -1 361 3052281 3062627 +6092524 6113217 20694 1642221.7903 1643256.508 -3.2944 -5.0485 92.5615 run16.mat -1 -1 361 3062780 3073127 +6113525 6134198 20674 1643271.9112 1644307.8384 -1.6481 -5.047 92.5726 run16.mat -1 -1 361 3073281 3083618 +6134507 6155177 20671 1644323.2943 1645355.8761 0.0026724 -5.0487 92.7679 run16.mat -1 -1 361 3083773 3094108 +6155485 6156296 812 1645371.16 1645411.4041 1.6514 -5.0486 92.176 run16.mat -1 -1 361 3094262 3094668 +6240240 6259260 19021 1649609.2342 1650559.5174 1.6468 -5.0486 92.9331 run16.mat -1 -1 362 3136642 3146152 +6259571 6280241 20671 1650575.0704 1651608.873 3.2976 -5.0472 92.5757 run16.mat -1 -1 362 3146307 3156643 +6280552 6301253 20702 1651624.6691 1652658.3788 4.9429 -5.0479 92.5556 run16.mat -1 -1 362 3156798 3167150 +6301563 6322218 20656 1652673.7589 1653707.2363 6.5901 -5.0472 92.6692 run16.mat -1 -1 362 3167305 3177632 +6322527 6336136 13610 1653722.6928 1654404.5997 8.2435 -5.0477 92.7117 run16.mat -1 -1 362 3177786 3184591 +6420417 6426593 6177 1658617.7074 1658927.2609 8.2442 -5.0493 93.8702 run16.mat -1 -1 363 3226734 3229822 +6426912 6447579 20668 1658943.4071 1659975.5341 9.8902 -5.047 92.5244 run16.mat -1 -1 363 3229982 3240315 +6447887 6468586 20700 1659991.0645 1661028.4916 11.5395 -5.0475 92.5571 run16.mat -1 -1 363 3240469 3250819 +6468898 6489596 20699 1661043.9708 1662075.5836 13.1894 -5.0476 92.5731 run16.mat -1 -1 363 3250975 3261325 +6489902 6510559 20658 1662091.0101 1663124.3501 14.84 -5.0492 92.6044 run16.mat -1 -1 363 3261478 3271807 +6510864 6516156 5293 1663139.7293 1663405.622 16.4973 -5.0452 92.6254 run16.mat -1 -1 363 3271959 3274605 +6600242 6614792 14551 1667608.0108 1668335.8959 16.4913 -5.0482 93.0847 run16.mat -1 -1 364 3316650 3323926 +6615108 6635798 20691 1668351.8266 1669388.2332 18.141 -5.0483 92.4882 run16.mat -1 -1 364 3324084 3334429 +6636103 6656779 20677 1669403.489 1670436.6557 19.7898 -5.0486 92.6196 run16.mat -1 -1 364 3334581 3344920 +6657084 6677777 20694 1670451.7877 1671486.0698 21.4364 -5.0481 92.6046 run16.mat -1 -1 364 3345073 3355419 +6678085 6696016 17932 1671501.6002 1672398.9627 23.0947 -5.0483 92.7304 run16.mat -1 -1 364 3355573 3364540 +6780283 6782221 1939 1676612.1858 1676708.3549 23.0833 -5.0504 96.7547 run16.mat -1 -1 365 3406674 3407643 +6782531 6803220 20690 1676723.738 1677759.6324 24.7401 -5.0485 92.6726 run16.mat -1 -1 365 3407798 3418144 +6803527 6824200 20674 1677774.9856 1678808.4784 26.3876 -5.0483 92.5831 run16.mat -1 -1 365 3418297 3428634 +6824506 6845201 20696 1678823.8955 1679859.248 28.0379 -5.0474 92.5405 run16.mat -1 -1 365 3428787 3439135 +6845507 6866181 20675 1679874.552 1680908.1556 29.6868 -5.0467 92.6691 run16.mat -1 -1 365 3439288 3449626 +6866491 6876095 9605 1680923.5356 1681402.3618 31.335 -5.0475 92.8308 run16.mat -1 -1 365 3449781 3454583 +6960196 6970403 10208 1685606.04 1686116.3793 31.3379 -5.0457 93.3415 run16.mat -1 -1 366 3496635 3501739 +6970725 6991398 20674 1686132.2414 1687168.1545 32.9832 -5.0471 92.5028 run16.mat -1 -1 366 3501900 3512237 +6991706 7012401 20696 1687183.5574 1688217.9808 34.6317 -5.0475 92.6916 run16.mat -1 -1 366 3512391 3522739 +7012704 7033379 20676 1688233.0135 1689268.7394 36.281 -5.0497 92.5467 run16.mat -1 -1 366 3522890 3533228 +7033687 7054359 20673 1689284.2699 1690315.4581 37.9305 -5.0478 92.7416 run16.mat -1 -1 366 3533382 3543718 +7054665 7055975 1311 1690330.532 1690395.064 39.5708 -5.0524 92.7614 run16.mat -1 -1 366 3543871 3544526 +7142151 7160669 18519 1694704.5493 1695630.7539 39.5804 -5.0475 93.0435 run16.mat -1 -1 367 3587617 3596876 +7160988 7181664 20677 1695646.839 1696681.9335 41.2266 -5.0476 92.5803 run16.mat -1 -1 367 3597035 3607374 +7181970 7202661 20692 1696697.1151 1697732.2272 42.8761 -5.0476 92.6153 run16.mat -1 -1 367 3607527 3617873 +7202970 7223644 20675 1697747.6836 1698780.7627 44.53 -5.0478 92.5624 run16.mat -1 -1 367 3618027 3628365 +7223953 7237914 13962 1698796.0931 1699495.3763 46.1781 -5.0483 92.6015 run16.mat -1 -1 367 3628519 3635500 +7323989 7329747 5759 1703797.2843 1704086.2194 46.1814 -5.0476 93.9916 run16.mat -1 -1 368 3678540 3681419 +7330055 7350744 20690 1704101.7467 1705135.9972 47.8291 -5.048 92.5813 run16.mat -1 -1 368 3681573 3691918 +7351050 7371743 20694 1705151.1818 1706183.9091 49.4749 -5.0478 92.5508 run16.mat -1 -1 368 3692071 3702418 +7372049 7392722 20674 1706199.0937 1707234.8552 51.1304 -5.0479 92.692 run16.mat -1 -1 368 3702571 3712908 +7393029 7413702 20674 1707250.2081 1708283.511 52.7755 -5.0479 92.6915 run16.mat -1 -1 368 3713061 3723398 +7414010 7419794 5785 1708298.7918 1708587.8407 54.4262 -5.0481 92.7108 run16.mat -1 -1 368 3723552 3726445 +7503975 7517933 13959 1712798.0113 1713494.101 54.425 -5.0482 92.9433 run16.mat -1 -1 369 3768537 3775516 +7518251 7538924 20674 1713510.004 1714543.2634 56.0752 -5.0479 92.6142 run16.mat -1 -1 369 3775675 3786012 +7539232 7559906 20675 1714558.7939 1715593.5133 57.7275 -5.0481 92.567 run16.mat -1 -1 369 3786166 3796503 +7560217 7580906 20690 1715608.946 1716642.6274 59.3729 -5.0479 92.6366 run16.mat -1 -1 369 3796659 3807004 +7581213 7599774 18562 1716657.9804 1717587.5794 61.0219 -5.047 92.6596 run16.mat -1 -1 369 3807158 3816438 +7683873 7685050 1178 1721791.4215 1721850.7701 61.0131 -5.0468 98.0125 run16.mat -1 -1 370 3858489 3859078 +7685366 7706024 20659 1721866.7039 1722898.9879 62.6702 -5.0483 92.6756 run16.mat -1 -1 370 3859236 3869566 +7706332 7707508 1177 1722914.6316 1722974.362 64.3068 -5.0504 92.588 run16.mat -1 -1 370 3869720 3870308 +7707758 7727023 19266 1722987.0598 1723947.382 64.318 -5.0483 92.5376 run16.mat -1 -1 370 3870433 3880066 +7727333 7748025 20693 1723962.885 1724998.1258 65.9684 -5.0467 92.599 run16.mat -1 -1 370 3880221 3890567 +7748330 7769006 20677 1725013.2608 1726047.175 67.618 -5.0469 92.6971 run16.mat -1 -1 370 3890720 3901058 +7769312 7779654 10343 1726062.6632 1726580.6161 69.2652 -5.0468 92.6698 run16.mat -1 -1 370 3901211 3906382 +7865707 7875214 9508 1730883.129 1731358.4078 69.2666 -5.0472 93.7147 run16.mat -1 -1 371 3949410 3954164 +7875535 7896204 20670 1731374.5938 1732409.0726 70.9158 -5.0486 92.4502 run16.mat -1 -1 371 3954325 3964660 +7896511 7917205 20695 1732424.6114 1733460.322 72.5684 -5.0487 92.5582 run16.mat -1 -1 371 3964813 3975161 +7917510 7938185 20676 1733475.6981 1734506.5768 74.2179 -5.0485 92.5548 run16.mat -1 -1 371 3975313 3985651 +7938494 7959167 20674 1734521.9103 1735557.6595 75.8653 -5.0485 92.6704 run16.mat -1 -1 371 3985806 3996143 +7959476 7961613 2138 1735573.1154 1735680.0065 77.52 -5.0517 93.0193 run16.mat -1 -1 371 3996297 3997366 +8045711 8063305 17595 1739884.5279 1740763.5355 77.5165 -5.0471 92.9338 run16.mat -1 -1 372 4039416 4048214 +8063616 8084284 20669 1740778.9682 1741812.192 79.1682 -5.0484 92.5937 run16.mat -1 -1 372 4048370 4058704 +8084592 8105304 20713 1741827.5949 1742863.3787 80.8153 -5.0477 92.5775 run16.mat -1 -1 372 4058858 4069214 +8105609 8125938 20330 1742878.5137 1743893.7439 82.4689 -5.0471 92.6604 run16.mat -1 -1 372 4069367 4079532 +274357 294758 20402 1849037.9589 1850058.0791 82.4617 -3.3647 92.8483 run17.mat -1 -1 374 123184 133385 +295064 315756 20693 1850073.2599 1851105.3995 80.8166 -3.3635 92.5872 run17.mat -1 -1 374 133538 143884 +316063 336759 20697 1851120.8188 1852156.3354 79.1648 -3.365 92.5623 run17.mat -1 -1 374 144037 154386 +337066 357757 20692 1852171.6884 1853206.5445 77.5151 -3.3645 92.5578 run17.mat -1 -1 374 154540 164886 +358063 370163 12101 1853221.8431 1853828.9711 75.8664 -3.3649 92.6816 run17.mat -1 -1 374 165039 171089 +454269 461995 7727 1858033.4622 1858419.8777 75.867 -3.3653 93.3908 run17.mat -1 -1 375 213144 217007 +462329 482997 20669 1858436.5844 1859469.1996 74.2225 -3.3633 92.5243 run17.mat -1 -1 375 217174 227508 +483304 503998 20695 1859484.5527 1860519.3322 72.5682 -3.3645 92.6409 run17.mat -1 -1 375 227662 238009 +504303 524996 20694 1860534.5247 1861567.3681 70.9186 -3.3648 92.5998 run17.mat -1 -1 375 238162 248529 +525305 545958 20654 1861582.9523 1862617.4808 69.2686 -3.3648 92.7061 run17.mat -1 -1 375 248663 258990 +546271 550062 3792 1862633.074 1862821.9334 67.626 -3.3659 92.8275 run17.mat -1 -1 375 259147 261042 +634156 650095 15940 1867026.8683 1867823.8109 67.6219 -3.3646 93.1984 run17.mat -1 -1 376 303091 311061 +650424 671080 20657 1867840.1988 1868872.1544 65.9748 -3.364 92.5564 run17.mat -1 -1 376 311225 321554 +671387 692078 20692 1868887.4496 1869924.786 64.3215 -3.3646 92.5949 run17.mat -1 -1 376 321708 332053 +692387 713062 20676 1869940.3035 1870974.4981 62.672 -3.3645 92.5443 run17.mat -1 -1 376 332208 342546 +713371 729942 16572 1870989.8889 1871814.716 61.0253 -3.3633 92.6649 run17.mat -1 -1 376 342701 350986 +814144 817376 3233 1876027.6626 1876187.9709 61.0217 -3.3658 94.9012 run17.mat -1 -1 377 393089 394705 +817703 838399 20697 1876204.1902 1877239.0587 59.3714 -3.3637 92.5967 run17.mat -1 -1 377 394869 405217 +838707 859378 20672 1877254.586 1878289.513 57.7219 -3.3643 92.639 run17.mat -1 -1 377 405371 415707 +859688 880380 20693 1878305.0786 1879338.6693 56.0705 -3.3644 92.6526 run17.mat -1 -1 377 415862 426209 +880688 901362 20675 1879354.0725 1880388.2368 54.421 -3.3645 92.6393 run17.mat -1 -1 377 426363 436700 +901679 910041 8363 1880404.2211 1880821.7691 52.7733 -3.3633 92.8501 run17.mat -1 -1 377 436859 441040 +994082 1005557 11476 1885023.264 1885598.9066 52.7718 -3.3648 93.2554 run17.mat -1 -1 378 483062 488800 +1005883 1026561 20679 1885615.0275 1886648.958 51.1287 -3.3642 92.5146 run17.mat -1 -1 378 488963 499302 +1026879 1047560 20682 1886664.9916 1887697.3435 49.4751 -3.3644 92.7085 run17.mat -1 -1 378 499461 509802 +1047868 1068560 20693 1887712.5632 1888746.1981 47.8261 -3.3648 92.5666 run17.mat -1 -1 378 509956 520303 +1068869 1089538 20670 1888761.8351 1889797.5426 46.1807 -3.3634 92.7305 run17.mat -1 -1 378 520457 530792 +1089846 1089881 36 1889813.0079 1889814.7653 44.5702 -3.3722 86.9881 run17.mat -1 -1 378 530946 530964 +1174142 1193838 19697 1894026.007 1895010.8195 44.5315 -3.3638 92.9081 run17.mat -1 -1 379 573096 582944 +1194165 1214858 20694 1895027.3739 1896063.123 42.8805 -3.3645 92.6163 run17.mat -1 -1 379 583108 593455 +1215164 1235842 20679 1896078.4909 1897111.8186 41.2298 -3.3641 92.5412 run17.mat -1 -1 379 593608 603947 +1236146 1256826 20681 1897126.8406 1898160.4271 39.586 -3.3639 92.6507 run17.mat -1 -1 379 604099 614440 +1257142 1269921 12780 1898176.294 1898816.6317 37.931 -3.3644 92.7591 run17.mat -1 -1 379 614598 620987 +1354229 1361160 6932 1903032.265 1903379.3007 37.9346 -3.3633 93.8153 run17.mat -1 -1 380 663143 666609 +1361466 1382200 20735 1903394.5461 1904429.792 36.2872 -3.3639 92.4995 run17.mat -1 -1 380 666762 677130 +1382507 1403180 20674 1904445.206 1905479.3388 34.6333 -3.3646 92.6245 run17.mat -1 -1 380 677283 687620 +1403487 1424181 20695 1905494.6948 1906527.7586 32.9842 -3.3646 92.6438 run17.mat -1 -1 380 687773 698121 +1424487 1445156 20670 1906543.1234 1907577.3833 31.3364 -3.3643 92.7496 run17.mat -1 -1 380 698274 708609 +1445465 1450020 4556 1907592.7781 1907819.9631 29.6886 -3.363 92.8106 run17.mat -1 -1 380 708763 711041 +1534138 1549437 15300 1912026.0728 1912790.3596 29.6845 -3.3643 93.1659 run17.mat -1 -1 381 753102 760752 +1549764 1570423 20660 1912806.8426 1913841.3421 28.0322 -3.3645 92.5724 run17.mat -1 -1 381 760915 771245 +1570728 1591424 20697 1913856.7213 1914889.9765 26.3833 -3.3646 92.5892 run17.mat -1 -1 381 771398 781746 +1591731 1612420 20690 1914905.3295 1915940.7988 24.7334 -3.3648 92.6104 run17.mat -1 -1 381 781900 792245 +1612730 1630060 17331 1915956.1173 1916822.4926 23.0855 -3.3643 92.7459 run17.mat -1 -1 381 792400 801065 +1714225 1716699 2475 1921031.3864 1921154.129 23.0865 -3.3682 95.8353 run17.mat -1 -1 382 843150 844387 +1717030 1737698 20669 1921170.5509 1922205.2036 21.4341 -3.3642 92.5377 run17.mat -1 -1 382 844552 854886 +1738008 1758701 20694 1922220.836 1923254.0485 19.7859 -3.3645 92.5518 run17.mat -1 -1 382 855041 865389 +1759007 1779688 20682 1923269.3989 1924305.8237 18.1397 -3.3646 92.6129 run17.mat -1 -1 382 865542 875882 +1779999 1800668 20670 1924321.4438 1925355.3319 16.4911 -3.3644 92.5985 run17.mat -1 -1 382 876038 886373 +1800982 1810120 9139 1925371.1004 1925828.3648 14.839 -3.3652 92.701 run17.mat -1 -1 382 886530 891099 +1894141 1904736 10596 1930027.8543 1930556.0944 14.8457 -3.3632 93.4399 run17.mat -1 -1 383 933111 938409 +1905055 1925742 20688 1930572.1762 1931608.908 13.1915 -3.3638 92.5566 run17.mat -1 -1 383 938569 948913 +1926049 1946724 20676 1931624.1992 1932657.7112 11.5428 -3.3648 92.5122 run17.mat -1 -1 383 949066 959404 +1947036 1967742 20707 1932673.3175 1933708.3361 9.8949 -3.3642 92.5384 run17.mat -1 -1 383 959560 969914 +1968048 1988682 20635 1933723.8274 1934754.1419 8.2504 -3.3633 92.698 run17.mat -1 -1 383 970067 980384 +1988989 1989960 972 1934769.434 1934817.801 6.5905 -3.3645 92.9972 run17.mat -1 -1 383 980537 981023 +2074256 2093120 18865 1939032.3251 1939978.3896 6.596 -3.3635 93.0758 run17.mat -1 -1 384 1023172 1032605 +2093444 2114129 20686 1939994.6571 1941027.1135 4.9459 -3.365 92.5976 run17.mat -1 -1 384 1032767 1043110 +2114441 2135121 20681 1941042.6578 1942075.825 3.2955 -3.3646 92.632 run17.mat -1 -1 384 1043266 1053607 +2135429 2156123 20695 1942091.1678 1943126.9421 1.6494 -3.3638 92.6675 run17.mat -1 -1 384 1053761 1064108 +2156428 2170019 13592 1943142.2588 1943821.6108 -0.0019456 -3.3645 92.8163 run17.mat -1 -1 384 1064261 1071056 +2254206 2260419 6214 1948029.8545 1948341.2882 -0.001435 -3.365 93.9153 run17.mat -1 -1 385 1113152 1116258 +2260739 2281441 20703 1948357.4216 1949392.5257 -1.6534 -3.3639 92.4474 run17.mat -1 -1 385 1116418 1126770 +2281749 2302426 20678 1949407.9909 1950441.5372 -3.2989 -3.3644 92.6139 run17.mat -1 -1 385 1126924 1137263 +2302738 2323423 20686 1950457.1404 1951492.6475 -4.9498 -3.3645 92.5214 run17.mat -1 -1 385 1137419 1147762 +2323731 2344403 20673 1951508.0383 1952540.1114 -6.5974 -3.3635 92.6824 run17.mat -1 -1 385 1147916 1158252 +2344710 2350099 5390 1952555.5284 1952825.5824 -8.2467 -3.3627 92.8816 run17.mat -1 -1 385 1158405 1161100 +2434058 2448520 14463 1957024.6594 1957745.2777 -8.2513 -3.3647 93.1568 run17.mat -1 -1 386 1203081 1210313 +2448857 2469525 20669 1957762.2119 1958798.3442 -9.8962 -3.3641 92.5346 run17.mat -1 -1 386 1210482 1220816 +2469834 2490522 20689 1958813.6765 1959848.0818 -11.5457 -3.3644 92.6607 run17.mat -1 -1 386 1220970 1231315 +2490832 2511505 20674 1959863.4618 1960895.6919 -13.1948 -3.3645 92.5602 run17.mat -1 -1 386 1231470 1241807 +2511823 2529978 18156 1960911.5351 1961818.8508 -14.8434 -3.3647 92.6782 run17.mat -1 -1 386 1241966 1251044 +2614267 2615840 1574 1966033.6118 1966112.293 -14.8475 -3.3645 96.8484 run17.mat -1 -1 387 1293190 1293976 +2616160 2636840 20681 1966128.2993 1967162.5817 -16.4913 -3.3642 92.5907 run17.mat -1 -1 387 1294136 1304477 +2637149 2657822 20674 1967178.0348 1968211.3842 -18.1416 -3.3642 92.6778 run17.mat -1 -1 387 1304631 1314969 +2658129 2678821 20693 1968226.6208 1969262.154 -19.7883 -3.3644 92.6117 run17.mat -1 -1 387 1315122 1325468 +2679129 2699809 20681 1969277.5601 1970310.6505 -21.4361 -3.3637 92.6014 run17.mat -1 -1 387 1325622 1335963 +2700121 2710058 9938 1970326.1947 1970824.1877 -23.0874 -3.3643 92.819 run17.mat -1 -1 387 1336119 1341088 +2794075 2803861 9787 1975022.6126 1975513.05 -23.0887 -3.3636 93.3127 run17.mat -1 -1 388 1383098 1387991 +2804183 2824881 20699 1975529.2171 1976565.784 -24.738 -3.3638 92.5603 run17.mat -1 -1 388 1388152 1398502 +2825187 2845865 20679 1976580.9637 1977615.7219 -26.3862 -3.3638 92.667 run17.mat -1 -1 388 1398655 1408994 +2846172 2866863 20692 1977631.075 1978664.4622 -28.0336 -3.3638 92.5566 run17.mat -1 -1 388 1409148 1419494 +2867167 2887841 20675 1978679.4347 1979712.9732 -29.6849 -3.3644 92.6915 run17.mat -1 -1 388 1419646 1429983 +2888149 2889879 1731 1979728.4415 1979815.0623 -31.3388 -3.3634 92.969 run17.mat -1 -1 388 1430137 1431002 +2974009 2992120 18112 1984021.8968 1984926.8276 -31.3362 -3.364 93.0882 run17.mat -1 -1 389 1473069 1482125 +2992427 3013122 20696 1984942.1218 1985978.4683 -32.9889 -3.3639 92.5751 run17.mat -1 -1 389 1482278 1492626 +3013433 3034102 20670 1985994.2755 1987024.3856 -34.6335 -3.3644 92.6112 run17.mat -1 -1 389 1492782 1503117 +3034415 3055103 20689 1987040.2281 1988076.0242 -36.2907 -3.3643 92.6464 run17.mat -1 -1 389 1503273 1513618 +3055408 3069798 14391 1988091.4003 1988812.6928 -37.935 -3.3637 92.6933 run17.mat -1 -1 389 1513770 1520966 +3154117 3159547 5431 1993025.6317 1993298.7102 -37.9318 -3.3641 94.3635 run17.mat -1 -1 390 1563127 1565842 +3159862 3180560 20699 1993314.3414 1994350.3896 -39.5869 -3.364 92.4056 run17.mat -1 -1 390 1565999 1576349 +3180870 3201541 20672 1994365.9552 1995398.193 -41.2349 -3.3651 92.6475 run17.mat -1 -1 390 1576504 1586840 +3201848 3222541 20694 1995413.4261 1996448.6282 -42.8788 -3.3647 92.6256 run17.mat -1 -1 390 1586994 1597341 +3222848 3243524 20677 1996463.9846 1997498.0268 -44.5348 -3.365 92.6996 run17.mat -1 -1 390 1597494 1607832 +3243831 3249878 6048 1997513.3517 1997815.7749 -46.1803 -3.365 92.7429 run17.mat -1 -1 390 1607986 1611009 +3333990 3347822 13833 2002019.7695 2002713.2287 -46.1795 -3.3643 93.1639 run17.mat -1 -1 391 1653067 1659983 +3348148 3368824 20677 2002729.601 2003763.749 -47.8279 -3.3639 92.5208 run17.mat -1 -1 391 1660146 1670485 +3369131 3389823 20693 2003779.0434 2004811.7135 -49.477 -3.3635 92.6162 run17.mat -1 -1 391 1670638 1680985 +3390131 3410822 20692 2004827.3029 2005861.5324 -51.1301 -3.364 92.5434 run17.mat -1 -1 391 1681139 1691485 +3411131 3429818 18688 2005877.1724 2006811.5546 -52.7757 -3.3645 92.7585 run17.mat -1 -1 391 1691640 1700983 +3513927 3514981 1055 2011016.9572 2011069.8911 -52.7835 -3.3612 99.2512 run17.mat -1 -1 392 1743040 1743567 +3515303 3535947 20645 2011086.0625 2012120.1969 -54.4223 -3.3641 92.5532 run17.mat -1 -1 392 1743728 1754050 +3536265 3556964 20700 2012136.1032 2013169.7171 -56.0739 -3.3639 92.5576 run17.mat -1 -1 392 1754210 1764559 +3557270 3577944 20675 2013185.1436 2014218.9552 -57.7254 -3.3645 92.5829 run17.mat -1 -1 392 1764712 1775050 +3578250 3598945 20696 2014234.138 2015267.951 -59.3762 -3.3647 92.6386 run17.mat -1 -1 392 1775203 1785551 +3599252 3609717 10466 2015283.2431 2015808.501 -61.0238 -3.3654 92.7872 run17.mat -1 -1 392 1785704 1790937 +3693933 3703202 9270 2020017.7015 2020481.2958 -61.0268 -3.364 93.1385 run17.mat -1 -1 393 1833047 1837682 +3703508 3724222 20715 2020496.5989 2021531.6624 -62.6738 -3.3644 92.5327 run17.mat -1 -1 393 1837835 1848192 +3724530 3745204 20675 2021547.1276 2022582.2545 -64.3241 -3.3642 92.5977 run17.mat -1 -1 393 1848346 1858683 +3745514 3766205 20692 2022597.8233 2023632.2347 -65.9744 -3.3641 92.5471 run17.mat -1 -1 393 1858838 1869184 +3766512 3787183 20672 2023647.719 2024681.4356 -67.6267 -3.364 92.6485 run17.mat -1 -1 393 1869338 1879674 +3787488 3789756 2269 2024696.6886 2024809.6769 -69.2698 -3.3646 92.5337 run17.mat -1 -1 393 1879826 1880960 +3873838 3891345 17508 2029011.4273 2029889.3716 -69.2717 -3.3658 93.101 run17.mat -1 -1 394 1923003 1931757 +3891673 3912346 20674 2029905.5825 2030938.0137 -70.9198 -3.3643 92.5862 run17.mat -1 -1 394 1931921 1942258 +3912653 3933346 20694 2030953.4277 2031986.9125 -72.5696 -3.3648 92.6296 run17.mat -1 -1 394 1942411 1952759 +3933653 3954329 20677 2032001.9609 2033037.9597 -74.2188 -3.364 92.6272 run17.mat -1 -1 394 1952912 1963250 +3954635 3969657 15023 2033053.2662 2033806.142 -75.8675 -3.3648 92.6999 run17.mat -1 -1 394 1963403 1970915 +4053759 4058447 4689 2038007.8529 2038245.0815 -75.8696 -3.3665 93.9911 run17.mat -1 -1 395 2012968 2015312 +4058767 4079449 20683 2038261.1537 2039296.6164 -77.5144 -3.3645 92.5147 run17.mat -1 -1 395 2015472 2025813 +4079755 4100448 20694 2039311.9225 2040344.9358 -79.1702 -3.3652 92.6441 run17.mat -1 -1 395 2025966 2036313 +4100753 4121446 20694 2040360.3765 2041394.2658 -80.8158 -3.3642 92.4874 run17.mat -1 -1 395 2036466 2046812 +4121755 4142428 20674 2041409.9714 2042443.6821 -82.4634 -3.3647 92.6263 run17.mat -1 -1 395 2046967 2057304 +4142736 4149555 6820 2042459.024 2042800.3106 -82.4622 -1.6808 92.7678 run17.mat -1 -1 395 2057458 2060868 +4233888 4246910 13023 2047014.7538 2047667.3144 -82.4655 -1.6811 93.4943 run17.mat -1 -1 396 2103036 2109547 +4247219 4267912 20694 2047682.7092 2048719.2509 -80.8158 -1.6808 92.4839 run17.mat -1 -1 396 2109702 2120049 +4268230 4288908 20679 2048735.2215 2049768.4705 -79.1667 -1.6806 92.6373 run17.mat -1 -1 396 2120208 2130547 +4289213 4309887 20675 2049783.786 2050817.9282 -77.5167 -1.6808 92.5907 run17.mat -1 -1 396 2130700 2141038 +4310195 4329675 19481 2050833.1478 2051806.6239 -75.8694 -1.6807 92.7919 run17.mat -1 -1 396 2141192 2150932 +4413769 4414160 392 2056012.9103 2056032.1586 -75.8789 -1.6836 102.9059 run17.mat -1 -1 397 2192979 2193170 +4414482 4435128 20647 2056048.0102 2057077.9803 -74.2217 -1.6803 92.7323 run17.mat -1 -1 397 2193337 2203660 +4435435 4456127 20693 2057093.2705 2058128.0343 -72.5748 -1.681 92.6164 run17.mat -1 -1 397 2203814 2214161 +4456436 4477125 20690 2058143.4261 2059179.0857 -70.922 -1.6806 92.5677 run17.mat -1 -1 397 2214315 2224660 +4477431 4498127 20697 2059194.5122 2060229.852 -69.2731 -1.6805 92.5883 run17.mat -1 -1 397 2224813 2235162 +4498434 4509576 11143 2060245.3289 2060801.8025 -67.6241 -1.681 92.7674 run17.mat -1 -1 397 2235315 2240886 +4593529 4602276 8748 2065000.3617 2065436.5656 -67.625 -1.6803 93.7092 run17.mat -1 -1 398 2282864 2287238 +4602594 4623289 20696 2065452.533 2066488.6967 -65.9757 -1.681 92.547 run17.mat -1 -1 398 2287397 2297745 +4623596 4644267 20672 2066504.0498 2067535.9063 -64.324 -1.6804 92.5971 run17.mat -1 -1 398 2297898 2308235 +4644574 4665269 20696 2067551.2593 2068586.5863 -62.6721 -1.6807 92.5729 run17.mat -1 -1 398 2308388 2318736 +4665575 4686228 20654 2068601.9481 2069634.4222 -61.0243 -1.6809 92.6657 run17.mat -1 -1 398 2318889 2329216 +4686535 4689415 2881 2069649.6484 2069793.1208 -59.3715 -1.6823 92.3956 run17.mat -1 -1 398 2329369 2330810 +4773711 4790571 16861 2074007.6612 2074852.6641 -59.3756 -1.6812 92.8366 run17.mat -1 -1 399 2372959 2381390 +4790881 4811568 20688 2074867.9912 2075900.8049 -57.7243 -1.6805 92.617 run17.mat -1 -1 399 2381545 2391889 +4811874 4832549 20676 2075915.9865 2076951.289 -56.0747 -1.681 92.5549 run17.mat -1 -1 399 2392042 2402380 +4832856 4853550 20695 2076966.6421 2078001.6305 -54.4216 -1.6799 92.6209 run17.mat -1 -1 399 2402533 2412880 +4853858 4869475 15618 2078016.9727 2078796.4676 -52.7775 -1.6808 92.7844 run17.mat -1 -1 399 2413035 2420843 +4953558 4957757 4200 2083001.3972 2083208.9483 -52.7789 -1.6813 94.4239 run17.mat -1 -1 400 2462887 2464986 +4958079 4978768 20690 2083224.8504 2084260.2263 -51.1275 -1.6795 92.5228 run17.mat -1 -1 400 2465147 2475492 +4979075 4999749 20675 2084275.6413 2085308.7217 -49.4768 -1.6806 92.6532 run17.mat -1 -1 400 2475646 2485983 +5000057 5020749 20693 2085324.1879 2086357.7695 -47.828 -1.6804 92.6285 run17.mat -1 -1 400 2486137 2496484 +5021056 5041729 20674 2086373.1227 2087409.4077 -46.1784 -1.6809 92.6348 run17.mat -1 -1 400 2496638 2506974 +5042037 5049355 7319 2087424.7509 2087792.4073 -44.526 -1.6796 92.8841 run17.mat -1 -1 400 2507128 2510788 +5133685 5146056 12372 2092007.9512 2092625.1609 -44.5376 -1.6807 93.1186 run17.mat -1 -1 401 2552954 2559140 +5146370 5167068 20699 2092640.9274 2093676.9076 -42.882 -1.6809 92.5557 run17.mat -1 -1 401 2559297 2569647 +5167375 5188050 20676 2093692.3866 2094726.7264 -41.2343 -1.6804 92.559 run17.mat -1 -1 401 2569800 2580138 +5188357 5209049 20693 2094742.2033 2095775.3461 -39.5834 -1.6808 92.554 run17.mat -1 -1 401 2580292 2590638 +5209358 5229455 20098 2095790.927 2096794.9183 -37.9373 -1.6805 92.801 run17.mat -1 -1 401 2590792 2600842 +5313578 5334147 20570 2101002.9498 2102030.6553 -36.2886 -1.6804 92.8442 run17.mat -1 -1 402 2642905 2653190 +5334454 5355148 20695 2102046.0083 2103082.2801 -34.6348 -1.681 92.5502 run17.mat -1 -1 402 2653343 2663691 +5355456 5376131 20676 2103097.7453 2104128.9056 -32.9858 -1.6816 92.5746 run17.mat -1 -1 402 2663845 2674183 +5376440 5397130 20691 2104144.4211 2105179.3634 -31.3371 -1.6804 92.6119 run17.mat -1 -1 402 2674337 2684682 +5397439 5409314 11876 2105194.8798 2105787.5572 -29.6882 -1.6805 92.788 run17.mat -1 -1 402 2684837 2690775 +5493446 5501396 7951 2109997.661 2110391.9684 -29.6873 -1.6804 93.4704 run17.mat -1 -1 403 2732842 2736818 +5501716 5522390 20675 2110408.0351 2111440.8768 -28.0352 -1.6809 92.4798 run17.mat -1 -1 403 2736978 2747315 +5522697 5543391 20695 2111456.108 2112491.8349 -26.3848 -1.6806 92.6054 run17.mat -1 -1 403 2747469 2757816 +5543697 5564389 20693 2112507.0508 2113541.8577 -24.7385 -1.681 92.5031 run17.mat -1 -1 403 2757969 2768316 +5564696 5585369 20674 2113557.2108 2114591.1837 -23.0876 -1.6809 92.6338 run17.mat -1 -1 403 2768469 2778806 +5585676 5589333 3658 2114606.7225 2114791.3652 -21.447 -1.6821 92.6971 run17.mat -1 -1 403 2778960 2780788 +5673470 5689665 16196 2118999.2805 2119804.743 -21.4383 -1.6808 93.1072 run17.mat -1 -1 404 2822858 2830956 +5689982 5710670 20689 2119820.7273 2120857.8908 -19.7866 -1.6801 92.6201 run17.mat -1 -1 404 2831115 2841460 +5710977 5731651 20675 2120873.2469 2121905.8343 -18.1412 -1.6806 92.6282 run17.mat -1 -1 404 2841613 2851950 +5731956 5752634 20679 2121921.1478 2122955.2403 -16.492 -1.6808 92.6632 run17.mat -1 -1 404 2852103 2862442 +5752950 5769233 16284 2122971.1689 2123784.1912 -14.8471 -1.6811 92.6807 run17.mat -1 -1 404 2862600 2870742 +5853544 5856944 3401 2127999.4772 2128170.1223 -14.8412 -1.6799 94.6347 run17.mat -1 -1 405 2912900 2914600 +5857257 5877951 20695 2128185.8355 2129221.7726 -13.1973 -1.6814 92.4776 run17.mat -1 -1 405 2914756 2925103 +5878258 5898932 20675 2129237.2444 2130270.4639 -11.5444 -1.6806 92.6373 run17.mat -1 -1 405 2925257 2935594 +5899240 5919930 20691 2130285.9322 2131319.613 -9.8964 -1.6811 92.5564 run17.mat -1 -1 405 2935748 2946094 +5920236 5940913 20678 2131334.9161 2132368.5716 -8.2524 -1.6807 92.6552 run17.mat -1 -1 405 2946247 2956586 +5941222 5949313 8092 2132383.9615 2132788.4824 -6.5922 -1.6799 92.8135 run17.mat -1 -1 405 2956741 2960786 +6033607 6045376 11770 2137004.8853 2137592.8089 -6.5936 -1.6803 93.5193 run17.mat -1 -1 406 3002935 3008820 +6045690 6066390 20701 2137608.5712 2138642.7688 -4.9458 -1.6814 92.5025 run17.mat -1 -1 406 3008977 3019327 +6066700 6087373 20674 2138658.0903 2139693.0472 -3.2969 -1.681 92.6337 run17.mat -1 -1 406 3019482 3029819 +6087682 6108372 20691 2139708.6872 2140742.0415 -1.648 -1.6807 92.5961 run17.mat -1 -1 406 3029974 3040319 +6108680 6127673 18994 2140757.4018 2141706.8753 -0.00065466 -1.6799 92.7237 run17.mat -1 -1 406 3040473 3049970 +6128000 6129334 1335 2141723.102 2141789.4026 0.023081 -1.6801 93.312 run17.mat -1 -1 406 3050133 3050801 +6213520 6233599 20080 2145999.935 2147003.1831 1.6475 -1.6811 92.9943 run17.mat -1 -1 407 3092896 3102935 +6233916 6244828 10913 2147019.0392 2147564.7568 3.3019 -1.6796 92.4425 run17.mat -1 -1 407 3103094 3108550 +6245078 6254597 9520 2147577.2616 2148051.3937 3.2962 -1.6811 92.5803 run17.mat -1 -1 407 3108675 3113435 +6254901 6275576 20676 2148066.629 2149103.0597 4.9469 -1.6804 92.611 run17.mat -1 -1 407 3113587 3123925 +6275882 6296575 20694 2149118.4862 2150152.783 6.5922 -1.6807 92.5725 run17.mat -1 -1 407 3124078 3134425 +6296881 6309272 12392 2150168.0889 2150787.5263 8.2469 -1.6804 92.8009 run17.mat -1 -1 407 3134578 3140774 +6393484 6400805 7322 2154996.994 2155363.768 8.2463 -1.6801 93.4858 run17.mat -1 -1 408 3182881 3186542 +6401125 6421795 20671 2155379.7741 2156413.8524 9.8916 -1.6807 92.5678 run17.mat -1 -1 408 3186702 3197038 +6422100 6442799 20700 2156428.9843 2157464.1666 11.5417 -1.681 92.5627 run17.mat -1 -1 408 3197190 3207540 +6443107 6463795 20689 2157479.6939 2158513.5745 13.1864 -1.6809 92.6451 run17.mat -1 -1 408 3207694 3218038 +6464101 6484777 20677 2158528.7561 2159560.7834 14.8414 -1.6806 92.7082 run17.mat -1 -1 408 3218191 3228530 +6485082 6489313 4232 2159575.7864 2159788.9013 16.4909 -1.6814 92.9141 run17.mat -1 -1 408 3228683 3230798 +6573606 6589085 15480 2164002.1294 2164777.4771 16.4882 -1.6815 93.0492 run17.mat -1 -1 409 3272946 3280686 +6589399 6610075 20677 2164792.9229 2165828.044 18.136 -1.6809 92.5411 run17.mat -1 -1 409 3280843 3291182 +6610383 6631076 20694 2165843.447 2166876.3531 19.7851 -1.6804 92.6308 run17.mat -1 -1 409 3291336 3301683 +6631386 6652058 20673 2166891.8595 2167925.322 21.4357 -1.6813 92.5987 run17.mat -1 -1 409 3301838 3312174 +6652364 6669372 17009 2167940.5066 2168793.9948 23.0885 -1.6811 92.7657 run17.mat -1 -1 409 3312327 3320831 +6753517 6756305 2789 2172998.2834 2173136.6045 23.094 -1.6795 96.2224 run17.mat -1 -1 410 3362906 3364300 +6756620 6777313 20694 2173152.2777 2174188.4647 24.7377 -1.6813 92.5853 run17.mat -1 -1 410 3364457 3374804 +6777621 6798296 20676 2174203.9952 2175238.9917 26.3867 -1.6801 92.6584 run17.mat -1 -1 410 3374958 3385296 +6798603 6819297 20695 2175254.2229 2176288.8399 28.0374 -1.6803 92.6122 run17.mat -1 -1 410 3385450 3395797 +6819602 6840276 20675 2176304.219 2177336.5244 29.6887 -1.6802 92.594 run17.mat -1 -1 410 3395949 3406287 +6840585 6849251 8667 2177352.1053 2177787.9744 31.3336 -1.6811 92.7603 run17.mat -1 -1 410 3406441 3410775 +6933364 6944526 11163 2181993.1729 2182550.972 31.3406 -1.6804 93.3747 run17.mat -1 -1 411 3452833 3458415 +6944841 6965520 20680 2182566.6001 2183599.8684 32.9835 -1.6806 92.6126 run17.mat -1 -1 411 3458572 3468911 +6965830 6986518 20689 2183615.3744 2184649.7858 34.635 -1.6806 92.6226 run17.mat -1 -1 411 3469066 3479411 +6986822 7007515 20694 2184665.1115 2185700.0095 36.2861 -1.6809 92.5521 run17.mat -1 -1 411 3479563 3489911 +7007821 7028495 20675 2185715.1911 2186748.8189 37.9336 -1.6806 92.7291 run17.mat -1 -1 411 3490064 3500401 +7028803 7029151 349 2186764.3493 2186781.8967 39.5681 -1.6831 92.8687 run17.mat -1 -1 411 3500555 3500729 +7113457 7132837 19381 2190997.7048 2191964.9465 39.581 -1.6808 92.8324 run17.mat -1 -1 412 3542884 3552574 +7133146 7153834 20689 2191980.3995 2193016.3719 41.23 -1.6803 92.5975 run17.mat -1 -1 412 3552729 3563073 +7154143 7174836 20694 2193031.9528 2194067.0366 42.8772 -1.6806 92.6574 run17.mat -1 -1 412 3563227 3573574 +7175143 7195816 20674 2194082.1568 2195115.7274 44.527 -1.6807 92.6536 run17.mat -1 -1 412 3573728 3584065 +7196123 7209232 13110 2195131.0806 2195786.1775 46.179 -1.6803 92.8333 run17.mat -1 -1 412 3584219 3590773 +7293307 7299894 6588 2199990.2974 2200317.911 46.1781 -1.6805 93.4138 run17.mat -1 -1 413 3632813 3636106 +7300205 7320895 20691 2200333.4643 2201370.2222 47.8256 -1.6805 92.6328 run17.mat -1 -1 413 3636262 3646607 +7321200 7341896 20697 2201385.4751 2202418.564 49.4728 -1.6802 92.6341 run17.mat -1 -1 413 3646760 3657108 +7342204 7362889 20686 2202433.9704 2203468.4391 51.1251 -1.6813 92.6159 run17.mat -1 -1 413 3657262 3667605 +7363200 7383856 20657 2203483.9921 2204516.9843 52.7732 -1.6809 92.6955 run17.mat -1 -1 413 3667761 3678089 +7384163 7389091 4929 2204532.3736 2204777.9157 54.4269 -1.6802 92.7589 run17.mat -1 -1 413 3678242 3680707 +7473118 7487977 14860 2208980.3884 2209722.0488 54.4271 -1.6815 93.0805 run17.mat -1 -1 414 3722722 3730152 +7488290 7508975 20686 2209737.5777 2210773.058 56.0738 -1.6812 92.6122 run17.mat -1 -1 414 3730309 3740651 +7509283 7529978 20696 2210788.3418 2211823.2294 57.727 -1.6807 92.6458 run17.mat -1 -1 414 3740805 3751153 +7530285 7550958 20674 2211838.6478 2212874.055 59.3749 -1.6808 92.5934 run17.mat -1 -1 414 3751307 3761644 +7551265 7568950 17686 2212889.2862 2213771.8982 61.0257 -1.6803 92.7227 run17.mat -1 -1 414 3761797 3770640 +7653244 7655281 2038 2217986.4915 2218087.1571 61.0269 -1.6803 95.8059 run17.mat -1 -1 415 3812789 3813808 +7655601 7676279 20679 2218103.2894 2219138.6767 62.6748 -1.6802 92.5244 run17.mat -1 -1 415 3813968 3824307 +7676587 7697264 20678 2219153.9575 2220188.6674 64.3197 -1.6809 92.5819 run17.mat -1 -1 415 3824461 3834800 +7697577 7718277 20701 2220204.3204 2221238.4545 65.9742 -1.6807 92.5711 run17.mat -1 -1 415 3834957 3845307 +7718585 7739258 20674 2221253.7353 2222286.9619 67.6221 -1.6799 92.6192 run17.mat -1 -1 415 3845461 3855798 +7739564 7749031 9468 2222302.2714 2222777.0081 69.2699 -1.68 92.7759 run17.mat -1 -1 415 3855951 3860685 +7833070 7843431 10362 2226979.7251 2227496.0199 69.2671 -1.6806 93.5986 run17.mat -1 -1 416 3902706 3907928 +7843745 7864442 20698 2227511.9928 2228546.2031 70.9128 -1.6811 92.467 run17.mat -1 -1 416 3908044 3918393 +7864749 7885421 20673 2228561.68 2229596.0412 72.5669 -1.6807 92.6558 run17.mat -1 -1 416 3918546 3928883 +7885729 7906420 20692 2229611.4471 2230647.0887 74.215 -1.6806 92.617 run17.mat -1 -1 416 3929037 3939383 +7906728 7927382 20655 2230662.3695 2231695.6646 75.8636 -1.6807 92.8048 run17.mat -1 -1 416 3939537 3949864 +7927687 7928950 1264 2231710.9175 2231774.0796 77.5237 -1.677 92.8612 run17.mat -1 -1 416 3950017 3950648 +8012975 8031522 18548 2235974.0818 2236900.95 77.5131 -1.6816 92.9124 run17.mat -1 -1 417 3992663 4001936 +8031837 8052520 20684 2236916.833 2237950.7122 79.1654 -1.6809 92.5442 run17.mat -1 -1 417 4002094 4012436 +8052827 8073503 20677 2237965.9434 2238999.8847 80.8161 -1.6803 92.5419 run17.mat -1 -1 417 4012589 4022928 +8073811 8094157 20347 2239015.1655 2240031.4732 82.4651 -1.6807 92.631 run17.mat -1 -1 417 4023082 4033255 +289287 309718 20432 -112661.9677 -111648.3241 82.4623 -0.0015348 92.8991 run18.mat -1 -1 419 1 1 +310026 330699 20674 -111633.0433 -110607.3933 80.8147 -0.0011341 92.5808 run18.mat -1 -1 419 1 1 +331005 351709 20705 -110592.2117 -109565.0238 79.1647 -0.0010107 92.6061 run18.mat -1 -1 419 1 1 +352025 372701 20677 -109549.3461 -108523.5473 77.5135 -9.4109e-05 92.5699 run18.mat -1 -1 419 1 1 +373007 385089 12083 -108508.3657 -107908.9413 75.8675 -0.0013673 92.7563 run18.mat -1 -1 419 1 1 +469271 477002 7732 -103732.4181 -103348.8599 75.8659 -0.00022891 94.0095 run18.mat -1 -1 420 1 1 +477311 498023 20713 -103333.5295 -102305.9446 74.2182 -5.1353e-05 92.5104 run18.mat -1 -1 420 1 1 +498331 519022 20692 -102290.6638 -101264.1209 72.5745 -0.00085104 92.6477 run18.mat -1 -1 420 1 1 +519329 540008 20680 -101248.8897 -100222.9421 70.9178 -0.00076281 92.568 run18.mat -1 -1 420 1 1 +540320 560982 20663 -100207.4628 -99182.3586 69.2713 -0.001095 92.6641 run18.mat -1 -1 420 1 1 +561292 565169 3878 -99166.9786 -98974.6289 67.6233 -0.0013367 93.0447 run18.mat -1 -1 420 1 1 +649433 665341 15909 -94794.0375 -94004.7936 67.6214 -0.00082621 93.1297 run18.mat -1 -1 421 1 1 +665673 686338 20666 -93988.3221 -92963.0691 65.9725 -0.0011874 92.5572 run18.mat -1 -1 421 1 1 +686649 707323 20675 -92947.6394 -91921.9399 64.3189 -0.0008411 92.6552 run18.mat -1 -1 421 1 1 +707631 728330 20700 -91906.6591 -90879.7192 62.6735 -0.0014367 92.589 run18.mat -1 -1 421 1 1 +728640 745268 16629 -90864.3392 -90039.3739 61.0212 -0.0010403 92.7498 run18.mat -1 -1 421 1 1 +829459 832543 3085 -85862.4042 -85709.3977 61.0157 -0.0017374 95.388 run18.mat -1 -1 422 1 1 +832850 853562 20713 -85694.1665 -84666.5817 59.3707 -0.00052073 92.5067 run18.mat -1 -1 422 1 1 +853870 874542 20673 -84651.3009 -83625.7005 57.7233 -0.001169 92.6505 run18.mat -1 -1 422 1 1 +874849 895543 20695 -83610.4693 -82583.7775 56.0688 -0.00082002 92.5456 run18.mat -1 -1 422 1 1 +895851 916523 20673 -82568.4967 -81542.8964 54.4217 -0.0012898 92.6445 run18.mat -1 -1 422 1 1 +916830 925267 8438 -81527.6652 -81109.0802 52.7749 -0.0016808 92.7624 run18.mat -1 -1 422 1 1 +1009506 1020781 11276 -76929.7291 -76370.3423 52.772 -0.0014184 93.3139 run18.mat -1 -1 423 1 1 +1021106 1041803 20698 -76354.2181 -75327.3775 51.1248 -0.00058121 92.5976 run18.mat -1 -1 423 1 1 +1042111 1062782 20672 -75312.0966 -74286.5459 49.4768 -0.00066842 92.5889 run18.mat -1 -1 423 1 1 +1063092 1083803 20712 -74271.1659 -73243.6307 47.8261 -0.00081205 92.6175 run18.mat -1 -1 423 1 1 +1084110 1104764 20655 -73228.3995 -72203.6922 46.181 0.00013892 92.7903 run18.mat -1 -1 423 1 1 +1105071 1105268 198 -72188.461 -72178.6872 44.521 -0.0037997 91.9094 run18.mat -1 -1 423 1 1 +1189267 1208901 19635 -68011.2433 -67037.1413 44.5306 -0.0008101 93.0701 run18.mat -1 -1 424 1 1 +1209209 1229904 20696 -67021.8605 -65995.1191 42.8796 -0.00079688 92.5817 run18.mat -1 -1 424 1 1 +1230211 1250904 20694 -65979.8879 -64953.2457 41.2332 -0.00033462 92.5675 run18.mat -1 -1 424 1 1 +1251210 1271884 20675 -64938.0641 -63912.3646 39.5826 -0.0011728 92.6809 run18.mat -1 -1 424 1 1 +1272192 1285148 12957 -63897.0837 -63254.2975 37.9367 -0.00057263 92.7443 run18.mat -1 -1 424 1 1 +1369433 1376180 6748 -59072.6642 -58737.9252 37.9295 -0.002266 93.6519 run18.mat -1 -1 425 1 1 +1376508 1397201 20694 -58721.6521 -57695.0099 36.2867 -0.001582 92.5853 run18.mat -1 -1 425 1 1 +1397511 1418184 20674 -57679.6299 -56653.98 34.6326 -0.0011072 92.5947 run18.mat -1 -1 425 1 1 +1418488 1439204 20717 -56638.8976 -55611.1143 32.9828 -0.00075633 92.6286 run18.mat -1 -1 425 1 1 +1439509 1460164 20656 -55595.9823 -54571.2254 31.336 -0.0011685 92.6321 run18.mat -1 -1 425 1 1 +1460472 1465208 4737 -54555.9446 -54320.9774 29.6913 -0.00084528 92.7827 run18.mat -1 -1 425 1 1 +1549263 1564259 14997 -50150.7551 -49406.7583 29.6892 -0.00060931 92.9843 run18.mat -1 -1 426 1 1 +1564566 1585245 20680 -49391.5271 -48365.5795 28.0309 -0.0014913 92.5811 run18.mat -1 -1 426 1 1 +1585552 1606241 20690 -48350.3483 -47323.9045 26.3847 -0.00092285 92.5914 run18.mat -1 -1 426 1 1 +1606549 1627243 20695 -47308.6237 -46281.9319 24.7354 -0.00065895 92.6071 run18.mat -1 -1 426 1 1 +1627551 1645027 17477 -46266.6511 -45399.614 23.085 -0.0011506 92.6323 run18.mat -1 -1 426 1 1 +1729182 1731461 2280 -41224.4304 -41111.3624 23.0885 -0.001192 95.8782 run18.mat -1 -1 427 1 1 +1731790 1752465 20676 -41095.0397 -40069.2905 21.4343 -0.0017025 92.5053 run18.mat -1 -1 427 1 1 +1752771 1773463 20693 -40054.109 -39027.5164 19.7868 -0.00093474 92.6345 run18.mat -1 -1 427 1 1 +1773771 1794463 20693 -39012.2356 -37985.643 18.1393 -0.0013565 92.6098 run18.mat -1 -1 427 1 1 +1794770 1815444 20675 -37970.4118 -36944.7122 16.4902 -0.0012017 92.6493 run18.mat -1 -1 427 1 1 +1815751 1825026 9276 -36929.481 -36469.3203 14.84 0.00012259 92.7711 run18.mat -1 -1 427 1 1 +1909315 1919742 10428 -32287.4886 -31770.1736 14.8454 -0.0017654 93.2971 run18.mat -1 -1 428 1 1 +1920065 1940765 20701 -31754.1486 -30727.1592 13.1906 -0.00042602 92.5276 run18.mat -1 -1 428 1 1 +1941072 1961746 20675 -30711.928 -29686.2284 11.5443 -0.0011752 92.5675 run18.mat -1 -1 428 1 1 +1962052 1982745 20694 -29671.0468 -28644.4046 9.8953 -0.0010766 92.5713 run18.mat -1 -1 428 1 1 +1983052 2003726 20675 -28629.1734 -27603.4739 8.2458 -0.0011225 92.6708 run18.mat -1 -1 428 1 1 +2004031 2005086 1056 -27588.3419 -27536.0002 6.5962 -0.0025024 92.7945 run18.mat -1 -1 428 1 1 +2089239 2107923 18685 -23360.9159 -22433.9462 6.597 -0.0013092 92.7834 run18.mat -1 -1 429 1 1 +2108246 2128926 20681 -22417.9212 -21391.924 4.9456 -0.0006706 92.61 run18.mat -1 -1 429 1 1 +2129233 2149927 20695 -21376.6928 -20350.001 3.2982 -0.001076 92.5534 run18.mat -1 -1 429 1 1 +2150237 2170907 20671 -20334.621 -19309.1199 1.65 -0.00099199 92.6146 run18.mat -1 -1 429 1 1 +2171213 2185065 13853 -19293.9383 -18606.6987 0.0035851 -0.0012103 92.6838 run18.mat -1 -1 429 1 1 +2269299 2275142 5844 -14427.5958 -14137.7069 -0.0061988 -0.00086945 93.8787 run18.mat -1 -1 430 1 1 +2275465 2296163 20699 -14121.6819 -13094.7916 -1.6483 -0.00083481 92.4626 run18.mat -1 -1 430 1 1 +2296469 2317164 20696 -13079.61 -12052.8686 -3.3022 -0.0014921 92.5972 run18.mat -1 -1 430 1 1 +2317471 2338152 20682 -12037.6374 -11011.5906 -4.9472 -0.0012132 92.5771 run18.mat -1 -1 430 1 1 +2338465 2359144 20680 -10996.0617 -9970.1141 -6.5971 -0.001364 92.6094 run18.mat -1 -1 430 1 1 +2359452 2365065 5614 -9954.8333 -9676.3554 -8.2456 -0.00047649 92.8221 run18.mat -1 -1 430 1 1 +2449381 2463467 14087 -5493.1842 -4794.3352 -8.2509 -0.0011293 92.9182 run18.mat -1 -1 431 1 1 +2463782 2484485 20704 -4778.7071 -3751.5688 -9.8974 -0.00066183 92.5474 run18.mat -1 -1 431 1 1 +2484789 2505484 20696 -3736.4864 -2709.745 -11.5459 -0.001371 92.6309 run18.mat -1 -1 431 1 1 +2505790 2526484 20695 -2694.5634 -1667.8716 -13.1938 -0.00086045 92.6172 run18.mat -1 -1 431 1 1 +2526790 2545166 18377 -1652.69 -741.0012 -14.8489 -0.0013963 92.8065 run18.mat -1 -1 431 1 1 +2629380 2630945 1566 3462.9181 3541.1844 -14.8459 -0.0017097 97.5857 run18.mat -1 -1 432 1 1 +2631263 2651944 20682 3557.0877 4589.6833 -16.4925 -0.0007682 92.5535 run18.mat -1 -1 432 1 1 +2652251 2672928 20678 4604.9145 5640.9096 -18.1406 -0.0011121 92.5693 run18.mat -1 -1 432 1 1 +2673238 2693926 20689 5656.4155 6690.4839 -19.7871 -0.0013518 92.644 run18.mat -1 -1 432 1 1 +2694230 2714907 20678 6705.5693 7739.3293 -21.4353 -0.0011777 92.6541 run18.mat -1 -1 432 1 1 +2715214 2725265 10052 7754.8062 8257.5285 -23.0891 -0.0023126 92.7675 run18.mat -1 -1 432 1 1 +2809504 2819204 9701 12468.6138 12952.0696 -23.087 -0.0010602 93.4107 run18.mat -1 -1 433 1 1 +2819532 2840208 20677 12968.6052 14004.3207 -24.7378 -0.00094498 92.5413 run18.mat -1 -1 433 1 1 +2840514 2861207 20694 14019.5023 15053.3803 -26.3881 -0.0011766 92.5956 run18.mat -1 -1 433 1 1 +2861514 2882209 20696 15068.7335 16105.7799 -28.0331 -0.00047178 92.5108 run18.mat -1 -1 433 1 1 +2882517 2903170 20654 16121.1858 17152.147 -29.6926 -0.001507 92.6675 run18.mat -1 -1 433 1 1 +2903475 2905324 1850 17167.3999 17259.8677 -31.3335 0.00018476 92.7338 run18.mat -1 -1 433 1 1 +2989649 3007506 17858 21476.6084 22367.8646 -31.3417 -0.0011632 92.9827 run18.mat -1 -1 434 1 1 +3007828 3028529 20702 22383.8432 23420.6495 -32.9855 -0.0011757 92.5674 run18.mat -1 -1 434 1 1 +3028837 3049510 20674 23436.1769 24468.3122 -34.6358 -0.0013376 92.6381 run18.mat -1 -1 434 1 1 +3049815 3070489 20675 24483.6914 25517.9655 -36.2878 -0.0010644 92.5888 run18.mat -1 -1 434 1 1 +3070796 3085404 14609 25533.4424 26264.8365 -37.9343 -0.00044571 92.7249 run18.mat -1 -1 434 1 1 +3169872 3175106 5235 30487.0216 30750.2362 -37.9297 -0.00068798 94.2079 run18.mat -1 -1 435 1 1 +3175437 3196129 20693 30766.6581 31799.9808 -39.5852 -0.00060876 92.5741 run18.mat -1 -1 435 1 1 +3196435 3217128 20694 31815.2866 32851.2046 -41.233 -0.00097854 92.6584 run18.mat -1 -1 435 1 1 +3217434 3238091 20658 32866.3862 33898.5687 -42.8791 -0.00073853 92.5455 run18.mat -1 -1 435 1 1 +3238406 3259089 20684 33914.3247 34947.7417 -44.5295 -0.0010094 92.7448 run18.mat -1 -1 435 1 1 +3259397 3265684 6288 34963.1446 35277.5555 -46.1807 -0.00076696 92.7248 run18.mat -1 -1 435 1 1 +3349934 3363366 13433 39489.3251 40162.222 -46.1782 0.00021173 93.0606 run18.mat -1 -1 436 1 1 +3363673 3384369 20697 40177.6989 41212.5116 -47.8264 -0.00081107 92.5986 run18.mat -1 -1 436 1 1 +3384676 3405351 20676 41227.8037 42263.7045 -49.4749 -0.0006494 92.6326 run18.mat -1 -1 436 1 1 +3405666 3426363 20698 42279.4606 43312.2084 -51.1263 -0.00097977 92.6211 run18.mat -1 -1 436 1 1 +3426672 3445743 19072 43327.5388 44281.6964 -52.7775 -0.00081568 92.7438 run18.mat -1 -1 436 1 1 +3530088 3530768 681 48498.2435 48532.2531 -52.7814 0.000413 99.8037 run18.mat -1 -1 437 1 1 +3531073 3551749 20677 48547.6938 49580.6111 -54.4276 -0.0014543 92.7381 run18.mat -1 -1 437 1 1 +3552055 3572726 20672 49595.914 50630.4168 -56.0717 -4.3008e-05 92.6118 run18.mat -1 -1 437 1 1 +3573034 3593726 20693 50645.9441 51681.1605 -57.7265 -0.0010035 92.6745 run18.mat -1 -1 437 1 1 +3594033 3614710 20678 51696.6406 52729.5777 -59.3763 -0.00067715 92.6673 run18.mat -1 -1 437 1 1 +3615017 3625883 10867 52744.9341 53286.4015 -61.0227 -0.0017458 92.812 run18.mat -1 -1 437 1 1 +3710255 3719227 8973 57507.041 57956.56 -61.0244 -0.0012726 93.8404 run18.mat -1 -1 438 1 1 +3719551 3740249 20699 57972.6346 59007.1371 -62.6746 -0.001894 92.5227 run18.mat -1 -1 438 1 1 +3740554 3761230 20677 59022.3901 60054.4443 -64.3234 -0.0011919 92.6486 run18.mat -1 -1 438 1 1 +3761538 3782231 20694 60069.8473 61106.7505 -65.9778 -0.0015122 92.5318 run18.mat -1 -1 438 1 1 +3782539 3803189 20651 61122.0314 62155.0127 -67.6272 -0.0013586 92.682 run18.mat -1 -1 438 1 1 +3803497 3806143 2647 62170.4159 62302.7435 -69.2729 -0.00070481 92.863 run18.mat -1 -1 438 1 1 +3890321 3907449 17129 66511.0294 67369.4545 -69.2732 -0.00074458 92.9587 run18.mat -1 -1 439 1 1 +3907767 3928451 20685 67385.3576 68416.2117 -70.919 -0.0005597 92.5153 run18.mat -1 -1 439 1 1 +3928756 3949454 20699 68431.5878 69468.2192 -72.5729 -0.00095926 92.6372 run18.mat -1 -1 439 1 1 +3949765 3970430 20666 69483.7725 70515.2787 -74.2192 -0.00079075 92.5861 run18.mat -1 -1 439 1 1 +3970745 3986163 15419 70531.0317 71303.5413 -75.8651 -0.0011395 92.6332 run18.mat -1 -1 439 1 1 +4070495 4074788 4294 75518.9046 75734.3987 -75.8585 -0.00068177 94.428 run18.mat -1 -1 440 1 1 +4075119 4095810 20692 75751.0855 76786.1732 -77.5154 -0.0011192 92.481 run18.mat -1 -1 440 1 1 +4096118 4116789 20672 76801.7005 77835.6146 -79.1649 -0.0013011 92.634 run18.mat -1 -1 440 1 1 +4117094 4137790 20697 77850.9907 78884.4975 -80.8165 -0.00075469 92.579 run18.mat -1 -1 440 1 1 +4138097 4158770 20674 78899.9506 79933.6217 -82.4651 -0.00081544 92.6496 run18.mat -1 -1 440 1 1 +4159079 4166282 7204 79948.9551 80309.5755 -82.4685 1.6795 92.6266 run18.mat -1 -1 440 1 1 +4250536 4263110 12575 84520.4697 85151.2929 -82.4615 1.6795 93.267 run18.mat -1 -1 441 1 1 +4263421 4284109 20689 85166.8459 86202.4478 -80.8164 1.678 92.5134 run18.mat -1 -1 441 1 1 +4284416 4305105 20690 86217.682 87251.2424 -79.1664 1.6794 92.6016 run18.mat -1 -1 441 1 1 +4305414 4326110 20697 87266.8201 88299.1959 -77.5137 1.6784 92.6096 run18.mat -1 -1 441 1 1 +4326414 4346362 19949 88314.4023 89314.0519 -75.8691 1.6789 92.749 run18.mat -1 -1 441 1 1 +4430775 4451349 20575 93533.4167 94561.7696 -74.223 1.6782 92.7982 run18.mat -1 -1 442 1 1 +4451660 4472351 20692 94577.3226 95613.3885 -72.5723 1.6786 92.4913 run18.mat -1 -1 442 1 1 +4472659 4493349 20691 95628.9189 96662.8345 -70.921 1.6784 92.5536 run18.mat -1 -1 442 1 1 +4493659 4514334 20676 96678.2175 97709.9008 -69.2724 1.6777 92.5768 run18.mat -1 -1 442 1 1 +4514638 4526401 11764 97725.1029 98317.4182 -67.6257 1.6782 92.8684 run18.mat -1 -1 442 1 1 +4610827 4618780 7954 102538.2038 102932.7761 -67.6188 1.6793 93.5707 run18.mat -1 -1 443 1 1 +4619100 4639787 20688 102948.6523 103987.0032 -65.9748 1.6786 92.5195 run18.mat -1 -1 443 1 1 +4640096 4660771 20676 104002.3336 105032.9258 -64.321 1.6788 92.6126 run18.mat -1 -1 443 1 1 +4661079 4681752 20674 105048.4531 106082.6334 -62.675 1.6785 92.5528 run18.mat -1 -1 443 1 1 +4682061 4702742 20682 106098.2111 107132.3239 -61.0262 1.6797 92.6507 run18.mat -1 -1 443 1 1 +4703054 4706622 3569 107147.8063 107326.0727 -59.3682 1.6755 92.9172 run18.mat -1 -1 443 1 1 +4790815 4806999 16185 111536.9216 112345.7845 -59.3729 1.6791 92.9218 run18.mat -1 -1 444 1 1 +4807321 4827997 20677 112361.7599 113393.6713 -57.7289 1.6776 92.5359 run18.mat -1 -1 444 1 1 +4828310 4848991 20682 113409.2033 114443.8925 -56.0721 1.6782 92.6659 run18.mat -1 -1 444 1 1 +4849298 4869993 20696 114459.2454 115494.3453 -54.4259 1.6782 92.6215 run18.mat -1 -1 444 1 1 +4870299 4886622 16324 115509.7749 116325.9396 -52.7743 1.6786 92.7392 run18.mat -1 -1 444 1 1 +4970932 4974315 3384 120543.4371 120712.6929 -52.7748 1.6792 95.0475 run18.mat -1 -1 445 1 1 +4974626 4995332 20707 120728.2508 121762.0242 -51.1277 1.679 92.4549 run18.mat -1 -1 445 1 1 +4995639 5016293 20655 121777.498 122811.3859 -49.476 1.6785 92.5983 run18.mat -1 -1 445 1 1 +5016600 5037318 20719 122826.6201 123862.655 -47.8268 1.6794 92.5729 run18.mat -1 -1 445 1 1 +5037630 5058292 20663 123878.3839 124911.2951 -46.1799 1.6784 92.5897 run18.mat -1 -1 445 1 1 +5058599 5066721 8123 124926.5263 125330.8623 -44.5392 1.6781 92.506 run18.mat -1 -1 445 1 1 +5151192 5162777 11586 129557.7044 130134.3708 -44.535 1.6785 93.206 run18.mat -1 -1 446 1 1 +5163091 5183794 20704 130149.9524 131186.1794 -42.8825 1.6782 92.5272 run18.mat -1 -1 446 1 1 +5184100 5204795 20696 131201.4826 132234.4845 -41.2326 1.6786 92.6405 run18.mat -1 -1 446 1 1 +5205102 5225775 20674 132249.8375 133283.7803 -39.5854 1.679 92.6532 run18.mat -1 -1 446 1 1 +5226081 5246756 20676 133299.0862 134335.0181 -37.9367 1.6792 92.7782 run18.mat -1 -1 446 1 1 +5331286 5351072 19787 138561.2511 139551.273 -36.2848 1.6795 92.8683 run18.mat -1 -1 447 1 1 +5351384 5372075 20692 139566.8795 140599.745 -34.6334 1.6785 92.6217 run18.mat -1 -1 447 1 1 +5372380 5393060 20681 140614.9979 141647.5084 -32.9864 1.6792 92.6309 run18.mat -1 -1 447 1 1 +5393377 5414075 20699 141663.4894 142700.69 -31.3383 1.6787 92.6246 run18.mat -1 -1 447 1 1 +5414381 5427061 12681 142715.8746 143350.4503 -29.6881 1.6789 92.7508 run18.mat -1 -1 447 1 1 +5511451 5518485 7035 147569.4332 147919.2025 -29.6871 1.6779 93.6775 run18.mat -1 -1 448 1 1 +5518800 5539476 20677 147934.9558 148971.3132 -28.035 1.6787 92.4796 run18.mat -1 -1 448 1 1 +5539785 5560493 20709 148986.8286 150022.1814 -26.3884 1.6786 92.5356 run18.mat -1 -1 448 1 1 +5560804 5581477 20674 150037.611 151070.7049 -24.7382 1.6792 92.6035 run18.mat -1 -1 448 1 1 +5581782 5602435 20654 151085.9608 152117.3233 -23.089 1.6788 92.6141 run18.mat -1 -1 448 1 1 +5602745 5607260 4516 152132.7033 152358.1346 -21.4385 1.6767 92.9403 run18.mat -1 -1 448 1 1 +5691546 5706779 15234 156574.6283 157335.2314 -21.4371 1.6783 93.1242 run18.mat -1 -1 449 1 1 +5707087 5727759 20673 157350.5122 158385.3097 -19.7928 1.678 92.5866 run18.mat -1 -1 449 1 1 +5728063 5748758 20696 158400.6354 159435.9988 -18.1413 1.6787 92.6065 run18.mat -1 -1 449 1 1 +5749067 5769758 20692 159451.3536 160484.2606 -16.4968 1.6789 92.5937 run18.mat -1 -1 449 1 1 +5770065 5787320 17256 160499.6136 161360.6122 -14.8475 1.6785 92.7664 run18.mat -1 -1 449 1 1 +5871726 5874190 2465 165581.9488 165704.1953 -14.8505 1.6809 94.855 run18.mat -1 -1 450 1 1 +5874510 5895189 20680 165720.236 166756.357 -13.1954 1.6788 92.5143 run18.mat -1 -1 450 1 1 +5895500 5916177 20678 166771.91 167804.6773 -11.546 1.6794 92.6582 run18.mat -1 -1 450 1 1 +5916484 5937177 20694 167820.1573 168856.4495 -9.8982 1.6798 92.6092 run18.mat -1 -1 450 1 1 +5937485 5958157 20673 168871.7303 169905.9012 -8.2478 1.6789 92.7131 run18.mat -1 -1 450 1 1 +5958466 5967520 9055 169921.482 170372.9754 -6.5974 1.6798 92.736 run18.mat -1 -1 450 1 1 +6052035 6062720 10686 174599.2703 175131.3249 -6.5956 1.6789 93.1527 run18.mat -1 -1 451 1 1 +6063029 6083702 20674 175146.7781 176182.0444 -4.9445 1.6793 92.4395 run18.mat -1 -1 451 1 1 +6084010 6104717 20708 176197.5717 177233.6946 -3.2961 1.6784 92.5732 run18.mat -1 -1 451 1 1 +6105023 6105922 900 177248.9975 177293.709 -1.6537 1.6814 92.9204 run18.mat -1 -1 451 1 1 +6106172 6125701 19530 177306.1147 178281.1518 -1.6483 1.6786 92.5417 run18.mat -1 -1 451 1 1 +6126007 6146657 20651 178296.4547 179328.8182 0.00035069 1.6783 92.7441 run18.mat -1 -1 451 1 1 +6146968 6147819 852 179344.2509 179386.48 1.6533 1.6827 90.7759 run18.mat -1 -1 451 1 1 +6232057 6251061 19005 183599.5618 184549.9954 1.652 1.6786 93.0111 run18.mat -1 -1 452 1 1 +6251382 6272058 20677 184565.9212 185599.5645 3.2955 1.6789 92.5875 run18.mat -1 -1 452 1 1 +6272366 6293041 20676 185615.0887 186649.8801 4.9468 1.6787 92.6635 run18.mat -1 -1 452 1 1 +6293349 6314038 20690 186665.1609 187699.8459 6.5946 1.6789 92.6571 run18.mat -1 -1 452 1 1 +6314347 6327839 13493 187715.4237 188388.3203 8.2502 1.6795 92.7715 run18.mat -1 -1 452 1 1 +6412279 6418532 6254 192612.0062 192924.6874 8.2427 1.677 93.9621 run18.mat -1 -1 453 1 1 +6418846 6439542 20697 192940.5204 193974.7124 9.8933 1.6789 92.4999 run18.mat -1 -1 453 1 1 +6439847 6460538 20692 193989.9687 195023.1544 11.5374 1.678 92.5615 run18.mat -1 -1 453 1 1 +6460846 6481518 20673 195038.4352 196072.0494 13.1904 1.679 92.5383 run18.mat -1 -1 453 1 1 +6481825 6502500 20676 196087.505 197121.7836 14.8388 1.6783 92.6998 run18.mat -1 -1 453 1 1 +6502808 6508099 5292 197137.3109 197403.4327 16.4888 1.6781 92.7478 run18.mat -1 -1 453 1 1 +6592521 6606965 14445 201624.3727 202345.2618 16.4909 1.6784 92.9583 run18.mat -1 -1 454 1 1 +6607276 6627957 20682 202360.9435 203397.0156 18.1351 1.6782 92.4868 run18.mat -1 -1 454 1 1 +6628265 6648960 20696 203412.4185 204444.4792 19.7865 1.6786 92.666 run18.mat -1 -1 454 1 1 +6649267 6669957 20691 204459.9593 205494.2711 21.4375 1.6796 92.546 run18.mat -1 -1 454 1 1 +6670266 6688319 18054 205509.6046 206413.0185 23.0881 1.6784 92.7401 run18.mat -1 -1 454 1 1 +6772781 6774544 1764 210636.8333 210724.3011 23.0901 1.6811 96.7656 run18.mat -1 -1 455 1 1 +6774864 6795535 20672 210740.1772 211774.2897 24.7387 1.6793 92.5981 run18.mat -1 -1 455 1 1 +6795843 6816521 20679 211789.6926 212823.8157 26.3877 1.6791 92.5925 run18.mat -1 -1 455 1 1 +6816830 6837522 20693 212839.3047 213873.8019 28.0344 1.6782 92.6107 run18.mat -1 -1 455 1 1 +6837837 6858516 20680 213889.4331 214924.17 29.6873 1.6791 92.5584 run18.mat -1 -1 455 1 1 +6858823 6868558 9736 214939.5232 215425.5888 31.3447 1.678 92.8112 run18.mat -1 -1 455 1 1 +6952815 6962786 9972 219639.7985 220136.5035 31.3367 1.6796 93.2534 run18.mat -1 -1 456 1 1 +6963112 6983778 20667 220152.9383 221187.8454 32.9873 1.6785 92.5185 run18.mat -1 -1 456 1 1 +6984085 7004781 20697 221203.2018 222236.2643 34.6323 1.6797 92.6304 run18.mat -1 -1 456 1 1 +7005089 7025782 20694 222251.6703 223284.8662 36.2849 1.6792 92.6334 run18.mat -1 -1 456 1 1 +7026091 7046763 20673 223300.1967 224334.898 37.933 1.6787 92.7323 run18.mat -1 -1 456 1 1 +7047068 7048578 1511 224350.1521 224425.6678 39.5805 1.6775 92.5706 run18.mat -1 -1 456 1 1 +7133013 7151284 18272 228648.1246 229560.635 39.5802 1.6788 92.9088 run18.mat -1 -1 457 1 1 +7151594 7172270 20677 229576.0151 230612.8045 41.2274 1.6786 92.4926 run18.mat -1 -1 457 1 1 +7172579 7193263 20685 230628.2605 231662.2346 42.8765 1.6785 92.5963 run18.mat -1 -1 457 1 1 +7193572 7214261 20690 231677.5681 232711.726 44.5253 1.6781 92.5451 run18.mat -1 -1 457 1 1 +7214567 7228817 14251 232727.1525 233438.8641 46.1755 1.6786 92.7339 run18.mat -1 -1 457 1 1 +7313078 7318529 5452 237652.2037 237926.1774 46.1737 1.6799 93.7597 run18.mat -1 -1 458 1 1 +7318842 7339526 20685 237941.7063 238973.583 47.8272 1.6788 92.4661 run18.mat -1 -1 458 1 1 +7339836 7360527 20692 238989.2111 240023.0752 49.4757 1.6784 92.5637 run18.mat -1 -1 458 1 1 +7360835 7381504 20670 240038.4782 241072.8672 51.1263 1.6792 92.6258 run18.mat -1 -1 458 1 1 +7381820 7402507 20688 241088.5449 242123.8772 52.7769 1.6785 92.7458 run18.mat -1 -1 458 1 1 +7402813 7408857 6045 242139.0587 242442.8968 54.4218 1.6784 92.6097 run18.mat -1 -1 458 1 1 +7493228 7506884 13657 246660.8977 247340.4658 54.4226 1.6782 93.103 run18.mat -1 -1 459 1 1 +7507196 7527885 20690 247355.945 248393.1936 56.078 1.6792 92.6059 run18.mat -1 -1 459 1 1 +7528192 7548885 20694 248408.5468 249441.6202 57.7249 1.6793 92.652 run18.mat -1 -1 459 1 1 +7549193 7569884 20692 249457.2669 250493.7596 59.3772 1.6776 92.5864 run18.mat -1 -1 459 1 1 +7570191 7588997 18807 250509.1125 251447.6991 61.0209 1.6789 92.7049 run18.mat -1 -1 459 1 1 +7673318 7674247 930 255662.3005 255708.4002 61.0166 1.6822 97.3887 run18.mat -1 -1 460 1 1 +7674565 7695224 20660 255724.3265 256761.0996 62.6742 1.6783 92.6743 run18.mat -1 -1 460 1 1 +7695532 7716226 20695 256776.3835 257809.9163 64.3193 1.6789 92.5642 run18.mat -1 -1 460 1 1 +7716534 7737207 20674 257825.3193 258860.2864 65.9717 1.6784 92.547 run18.mat -1 -1 460 1 1 +7737518 7758204 20687 258875.9681 259908.7092 67.6168 1.6786 92.6428 run18.mat -1 -1 460 1 1 +7758515 7769117 10603 259924.3909 260453.0954 69.2683 1.6778 92.8199 run18.mat -1 -1 460 1 1 +7853641 7862779 9139 264679.4667 265137.5023 69.2666 1.6777 93.3405 run18.mat -1 -1 461 1 1 +7863096 7883766 20671 265153.2296 266188.3015 70.9146 1.6783 92.4853 run18.mat -1 -1 461 1 1 +7884074 7904766 20693 266203.8941 267239.0979 72.5657 1.678 92.5755 run18.mat -1 -1 461 1 1 +7905075 7925770 20696 267254.8131 268287.6886 74.2158 1.6789 92.5393 run18.mat -1 -1 461 1 1 +7926078 7946747 20670 268302.9694 269335.6103 75.8643 1.6785 92.6956 run18.mat -1 -1 461 1 1 +7947054 7949437 2384 269351.0904 269471.2497 77.5081 1.6798 92.0317 run18.mat -1 -1 461 1 1 +8033756 8051208 17453 273686.7152 274560.231 77.5124 1.6784 93.1185 run18.mat -1 -1 462 1 1 +8051520 8072208 20689 274575.7134 275609.2019 79.1677 1.6787 92.5519 run18.mat -1 -1 462 1 1 +8072515 8093208 20694 275624.6788 276658.8322 80.8172 1.6783 92.5401 run18.mat -1 -1 462 1 1 +8093517 8113849 20333 276674.5267 277690.5005 82.4674 1.6801 92.5436 run18.mat -1 -1 462 1 1 +279775 300296 20522 424764.0092 425790.3293 82.4616 3.3623 93.0379 run19.mat -1 -1 464 195503 205764 +300602 321300 20699 425805.6357 426838.8248 80.8141 3.3611 92.5525 run19.mat -1 -1 464 205917 216267 +321609 342299 20691 426854.2777 427890.4799 79.1677 3.3615 92.5238 run19.mat -1 -1 464 216421 226767 +342611 363316 20706 427906.2089 428939.1881 77.5139 3.3619 92.4737 run19.mat -1 -1 464 226923 237276 +363626 375682 12057 428954.6911 429559.6632 75.8676 3.364 92.4839 run19.mat -1 -1 464 237431 243459 +459996 467659 7664 433772.5813 434157.6826 75.8638 3.3605 93.4646 run19.mat -1 -1 465 285617 289449 +467991 488677 20687 434174.2861 435208.5842 74.2195 3.3619 92.5059 run19.mat -1 -1 465 289615 299959 +488984 509678 20695 435224.0611 436258.2024 72.5704 3.3609 92.5852 run19.mat -1 -1 465 300112 310460 +509983 530676 20694 436273.4583 437310.4093 70.9208 3.3629 92.5524 run19.mat -1 -1 465 310612 320959 +530984 551658 20675 437325.8123 438358.4764 69.2702 3.3614 92.6965 run19.mat -1 -1 465 321113 331451 +551970 555782 3813 438374.2086 438565.3908 67.6234 3.3601 92.4908 run19.mat -1 -1 465 331607 333513 +640092 655997 15906 442779.7255 443573.8392 67.6223 3.3639 93.0351 run19.mat -1 -1 466 375670 383622 +656302 676999 20698 443589.3509 444623.5189 65.9738 3.362 92.4921 run19.mat -1 -1 466 383775 394124 +677304 697999 20696 444638.772 445675.8294 64.3217 3.3629 92.6343 run19.mat -1 -1 466 394277 404625 +698308 718978 20671 445691.2824 446723.641 62.6708 3.3621 92.5418 run19.mat -1 -1 466 404779 415114 +719285 735841 16557 446738.8722 447568.2034 61.0233 3.362 92.7198 run19.mat -1 -1 466 415268 423546 +820335 823597 3263 451791.2965 451955.5121 61.0233 3.3597 95.3911 run19.mat -1 -1 467 465795 467426 +823927 844620 20694 451972.1452 453006.2008 59.3733 3.3623 92.5839 run19.mat -1 -1 467 467591 477938 +844926 865603 20678 453021.3824 454057.1029 57.7206 3.3618 92.6436 run19.mat -1 -1 467 478091 488430 +865911 886599 20689 454072.2724 455106.9927 56.0717 3.3623 92.5608 run19.mat -1 -1 467 488584 498929 +886906 907587 20682 455122.2239 456153.5684 54.422 3.362 92.529 run19.mat -1 -1 467 499082 509423 +907902 916101 8200 456169.4518 456580.8177 52.7729 3.3609 92.7236 run19.mat -1 -1 467 509580 513680 +1000267 1011857 11591 460788.7205 461366.9758 52.775 3.3609 93.1596 run19.mat -1 -1 468 555765 561560 +1012182 1032858 20677 461383.3569 462417.115 51.1266 3.3629 92.5324 run19.mat -1 -1 468 561723 572062 +1033165 1053860 20696 462432.4682 463467.4736 49.4752 3.3617 92.5245 run19.mat -1 -1 468 572215 582563 +1054167 1074839 20673 463482.8265 464518.0329 47.8273 3.3617 92.5039 run19.mat -1 -1 468 582716 593053 +1075145 1095825 20681 464533.2753 465567.7047 46.1779 3.3636 92.7066 run19.mat -1 -1 468 593206 603546 +1180386 1200122 19737 469794.4686 470781.5318 44.5335 3.3613 92.8737 run19.mat -1 -1 469 645828 655697 +1200426 1221122 20697 470796.7348 471831.485 42.8792 3.3628 92.5529 run19.mat -1 -1 469 655849 666198 +1221432 1242141 20710 471847.1131 472882.1058 41.2303 3.3615 92.5748 run19.mat -1 -1 469 666353 676707 +1242446 1263102 20657 472897.3617 473930.7676 39.5839 3.3633 92.6323 run19.mat -1 -1 469 676860 687188 +1263408 1276160 12753 473946.1973 474585.0742 37.9354 3.3617 92.7604 run19.mat -1 -1 469 687341 693717 +1360600 1367580 6981 478805.8849 479153.7877 37.9359 3.3624 93.4138 run19.mat -1 -1 470 735939 739430 +1367912 1388603 20692 479170.5249 480206.6126 36.2847 3.363 92.4978 run19.mat -1 -1 470 739596 749942 +1388909 1409581 20673 480222.0391 481254.3425 34.6314 3.3619 92.5664 run19.mat -1 -1 470 750095 760431 +1409890 1430587 20698 481269.673 482305.7784 32.9857 3.3623 92.649 run19.mat -1 -1 470 760586 770935 +1430901 1451560 20660 482321.4814 483354.2271 31.3335 3.3615 92.599 run19.mat -1 -1 470 771092 781422 +1451868 1456400 4533 483369.7544 483595.3665 29.6843 3.364 92.7094 run19.mat -1 -1 470 781576 783842 +1540628 1555801 15174 487807.4029 488565.1763 29.6812 3.3615 92.9176 run19.mat -1 -1 471 825958 833544 +1556135 1576823 20689 488581.8798 489617.0333 28.0347 3.3624 92.4562 run19.mat -1 -1 471 833711 844056 +1577131 1597823 20693 489632.3141 490668.6834 26.3809 3.3614 92.5698 run19.mat -1 -1 471 844210 854556 +1598128 1618804 20677 490684.0595 491716.0173 24.7358 3.3613 92.4718 run19.mat -1 -1 471 854709 865047 +1619113 1636420 17308 491731.3477 492597.6199 23.0863 3.3609 92.6666 run19.mat -1 -1 471 865202 873855 +1720827 1723342 2516 496817.7207 496943.4949 23.0772 3.3595 96.9757 run19.mat -1 -1 472 916061 917319 +1723645 1744341 20697 496958.6478 497991.9117 21.4362 3.3624 92.5988 run19.mat -1 -1 472 917470 927818 +1744647 1765322 20676 498007.3382 499041.2669 19.7878 3.363 92.6069 run19.mat -1 -1 472 927971 938309 +1765627 1786342 20716 499056.5837 500095.2901 18.1375 3.3628 92.6022 run19.mat -1 -1 472 938462 948820 +1786649 1807324 20676 500110.646 501141.8873 16.4902 3.3635 92.5994 run19.mat -1 -1 472 948973 959311 +1807629 1816699 9071 501157.2634 501610.5301 14.8436 3.3633 92.7679 run19.mat -1 -1 472 959464 963999 +1900931 1911678 10748 505823.2774 506359.5499 14.8434 3.3642 93.4868 run19.mat -1 -1 473 1006117 1011491 +1911985 1932676 20692 506375.0268 507410.1145 13.1931 3.3615 92.5006 run19.mat -1 -1 473 1011644 1021990 +1932990 1953683 20694 507425.9443 508459.5412 11.5423 3.3621 92.636 run19.mat -1 -1 473 1022147 1032494 +1953991 1974665 20675 508474.9444 509509.0089 9.8959 3.3619 92.6274 run19.mat -1 -1 473 1032648 1042985 +1974969 1992946 17978 509524.3376 510425.2589 8.246 3.3626 92.6971 run19.mat -1 -1 473 1043137 1052126 +1993196 1995643 2448 510437.7638 510559.9321 8.2519 3.3578 93.0875 run19.mat -1 -1 473 1052251 1053475 +1995952 1996699 748 510575.2626 510612.3235 6.591 3.3636 93.5459 run19.mat -1 -1 473 1053630 1054003 +2080899 2099964 19066 514821.3323 515774.4441 6.5952 3.3611 92.9225 run19.mat -1 -1 474 1096105 1105637 +2100270 2120970 20701 515789.8737 516825.1525 4.9445 3.362 92.5042 run19.mat -1 -1 474 1105790 1116141 +2121283 2141964 20682 516840.8058 517875.213 3.2948 3.3617 92.5478 run19.mat -1 -1 474 1116298 1126639 +2142268 2162965 20698 517890.4161 518924.4963 1.6495 3.3623 92.6359 run19.mat -1 -1 474 1126791 1137139 +2163273 2176780 13508 518939.9023 519615.5215 -0.0077506 3.3622 92.8211 run19.mat -1 -1 474 1137294 1144047 +2261260 2267465 6206 523836.7042 524149.5193 -0.0034045 3.3629 93.5464 run19.mat -1 -1 475 1186289 1189392 +2267772 2288470 20699 524164.9962 525201.4368 -1.6518 3.3614 92.4902 run19.mat -1 -1 475 1189545 1199895 +2288776 2309466 20691 525216.8633 526249.0921 -3.3002 3.3622 92.6171 run19.mat -1 -1 475 1200048 1210393 +2309774 2330465 20692 526264.3729 527298.9532 -4.9496 3.3622 92.5367 run19.mat -1 -1 475 1210547 1220893 +2330772 2351454 20683 527314.1844 528350.38 -6.5971 3.3625 92.7385 run19.mat -1 -1 475 1221047 1231388 +2351767 2357038 5272 528365.9089 528627.7582 -8.2483 3.3625 92.7281 run19.mat -1 -1 475 1231545 1234180 +2443195 2457763 14569 532936.0928 533664.1685 -8.2484 3.3618 93.0828 run19.mat -1 -1 476 1277261 1284545 +2458090 2478764 20675 533680.5248 534715.867 -9.8956 3.3645 92.5707 run19.mat -1 -1 476 1284708 1295046 +2479069 2499751 20683 534731.002 535766.2292 -11.5441 3.3623 92.5678 run19.mat -1 -1 476 1295198 1305540 +2500061 2520743 20683 535781.7324 536813.5882 -13.1913 3.3618 92.6431 run19.mat -1 -1 476 1305695 1316037 +2521050 2538958 17909 536829.0651 537725.0419 -14.8412 3.3622 92.7769 run19.mat -1 -1 476 1316190 1325144 +2623223 2625043 1821 541936.6833 542028.4542 -14.8302 3.3562 95.7061 run19.mat -1 -1 477 1367279 1368189 +2625369 2646044 20676 542044.8923 543079.3974 -16.4934 3.3615 92.5666 run19.mat -1 -1 477 1368352 1378689 +2646351 2667043 20693 543094.6316 544131.0429 -18.1374 3.3615 92.6365 run19.mat -1 -1 477 1378843 1389190 +2667351 2688044 20694 544146.4494 545179.1848 -19.7897 3.3633 92.5999 run19.mat -1 -1 477 1389344 1399691 +2688353 2709025 20673 545194.5152 546227.1349 -21.4346 3.3619 92.5952 run19.mat -1 -1 477 1399845 1410182 +2709331 2719018 9688 546242.5614 546728.0198 -23.0914 3.3645 92.753 run19.mat -1 -1 477 1410335 1415178 +2803407 2813462 10056 550947.9026 551448.9538 -23.0891 3.3638 93.275 run19.mat -1 -1 478 1457375 1462403 +2813785 2834469 20685 551465.11 552501.1929 -24.7398 3.3627 92.6055 run19.mat -1 -1 478 1462564 1472906 +2834783 2855467 20685 552516.7714 553550.5507 -26.3845 3.3638 92.5859 run19.mat -1 -1 478 1473063 1483406 +2855773 2876464 20692 553565.9772 554600.4963 -28.0363 3.3617 92.6111 run19.mat -1 -1 478 1483559 1493905 +2876772 2897433 20662 554615.9615 555648.1822 -29.6846 3.3617 92.5453 run19.mat -1 -1 478 1494059 1504390 +2897749 2899237 1489 555663.8599 555738.1307 -31.3355 3.3624 92.5177 run19.mat -1 -1 478 1504548 1505292 +2983539 3001882 18344 559956.1678 560871.4327 -31.3387 3.3622 93.0379 run19.mat -1 -1 479 1547444 1556616 +3002210 3022884 20675 560887.709 561921.4148 -32.9877 3.3613 92.6926 run19.mat -1 -1 479 1556780 1567118 +3023191 3043886 20696 561936.646 562973.1537 -34.6354 3.3613 92.568 run19.mat -1 -1 479 1567272 1577620 +3044194 3064868 20675 562988.681 564022.405 -36.2883 3.3618 92.6641 run19.mat -1 -1 479 1577774 1588111 +3065174 3079317 14144 564037.5866 564743.3009 -37.9362 3.3618 92.7632 run19.mat -1 -1 479 1588264 1595335 +3163589 3169223 5635 568955.6674 569238.6263 -37.9361 3.3609 94.0874 run19.mat -1 -1 480 1637474 1640291 +3169560 3190242 20683 569255.6156 570288.2008 -39.5854 3.3626 92.612 run19.mat -1 -1 480 1640459 1650801 +3190551 3211240 20690 570303.7786 571340.7848 -41.2326 3.3641 92.5412 run19.mat -1 -1 480 1650955 1661300 +3211548 3232231 20684 571356.0687 572389.1408 -42.8791 3.3616 92.6431 run19.mat -1 -1 480 1661454 1671796 +3232549 3253203 20655 572405.0469 573437.161 -44.5333 3.3628 92.5867 run19.mat -1 -1 480 1671955 1682283 +3253510 3259357 5848 573452.641 573744.1808 -46.1747 3.3598 92.6958 run19.mat -1 -1 480 1682436 1685360 +3343624 3357523 13900 577958.5675 578652.4869 -46.1779 3.3631 93.1957 run19.mat -1 -1 481 1727495 1734445 +3357847 3378526 20680 578668.6936 579703.863 -47.8281 3.3621 92.5266 run19.mat -1 -1 481 1734607 1744947 +3378843 3399526 20684 579719.5935 580753.734 -49.4756 3.3622 92.5002 run19.mat -1 -1 481 1745105 1755447 +3399833 3420528 20696 580768.9682 581803.4272 -51.1294 3.3624 92.5954 run19.mat -1 -1 481 1755601 1765948 +3420835 3439437 18603 581818.9072 582748.9539 -52.7768 3.3638 92.7126 run19.mat -1 -1 481 1766102 1775403 +3523655 3524846 1192 586960.2982 587019.8711 -52.7785 3.3613 96.1892 run19.mat -1 -1 482 1817514 1818110 +3525163 3545849 20687 587035.7272 588068.3796 -54.4273 3.3623 92.566 run19.mat -1 -1 482 1818269 1828612 +3546158 3566833 20676 588083.7101 589117.8554 -56.0736 3.362 92.6616 run19.mat -1 -1 482 1828766 1839104 +3567140 3587830 20691 589133.3323 590168.6231 -57.7306 3.3628 92.6562 run19.mat -1 -1 482 1839258 1849603 +3588137 3608812 20676 590184.1619 591219.4842 -59.3789 3.3614 92.56 run19.mat -1 -1 482 1849757 1860095 +3609123 3619536 10414 591234.92 591754.6268 -61.0268 3.3623 92.6136 run19.mat -1 -1 482 1860251 1865457 +3703770 3713089 9320 595966.2077 596432.5714 -61.0279 3.3612 93.3466 run19.mat -1 -1 483 1907576 1912236 +3713415 3734110 20696 596448.8776 597484.2494 -62.6758 3.3616 92.5416 run19.mat -1 -1 483 1912399 1922746 +3734415 3755093 20679 597499.2525 598532.3922 -64.3244 3.3621 92.6028 run19.mat -1 -1 483 1922899 1933238 +3755410 3776091 20682 598548.3733 599581.4363 -65.9761 3.3627 92.5437 run19.mat -1 -1 483 1933397 1943738 +3776397 3797068 20672 599596.7395 600632.6406 -67.6223 3.3628 92.7231 run19.mat -1 -1 483 1943891 1954227 +3797376 3799556 2181 600648.0466 600756.2756 -69.2849 3.3625 93.228 run19.mat -1 -1 483 1954381 1955471 +3883786 3901429 17644 604966.9613 605849.5204 -69.2709 3.3635 92.9473 run19.mat -1 -1 484 1997588 2006409 +3901735 3922429 20695 605864.705 606899.3951 -70.9186 3.3625 92.6112 run19.mat -1 -1 484 2006562 2016910 +3922736 3943411 20676 606914.6263 607949.4684 -72.569 3.3627 92.6259 run19.mat -1 -1 484 2017064 2027402 +3943722 3964409 20688 607964.9012 608997.8765 -74.2177 3.3614 92.591 run19.mat -1 -1 484 2027557 2037901 +3964717 3979556 14840 609013.2824 609755.5139 -75.8655 3.3627 92.7614 run19.mat -1 -1 484 2038055 2045475 +4063828 4068709 4882 613969.3036 614213.4475 -75.8753 3.3621 93.9847 run19.mat -1 -1 485 2087612 2090053 +4069033 4089729 20697 614229.7298 615263.5847 -77.5134 3.3623 92.4775 run19.mat -1 -1 485 2090215 2100564 +4090037 4110710 20674 615279.2284 616312.0392 -79.1675 3.3633 92.5496 run19.mat -1 -1 485 2100718 2111055 +4111017 4131713 20697 616327.3952 617363.5451 -80.8148 3.3622 92.5859 run19.mat -1 -1 485 2111208 2121557 +4132019 4152690 20672 617378.9716 618413.052 -82.4663 3.3618 92.6215 run19.mat -1 -1 485 2121710 2132046 +4152998 4159655 6658 618428.3328 618761.1976 -82.4624 5.0453 92.8 run19.mat -1 -1 485 2132200 2135529 +4243911 4256981 13071 622972.9131 623625.4025 -82.4629 5.0476 93.1327 run19.mat -1 -1 486 2177658 2184193 +4257291 4277953 20663 623640.7856 624677.831 -80.8188 5.0462 92.5477 run19.mat -1 -1 486 2184348 2194680 +4278259 4298971 20713 624693.3223 625725.6495 -79.169 5.0463 92.5548 run19.mat -1 -1 486 2194833 2205189 +4299278 4319971 20694 625741.0258 626777.6292 -77.5178 5.0445 92.6094 run19.mat -1 -1 486 2205343 2215690 +4320278 4339676 19399 626792.8634 627763.4041 -75.8686 5.0452 92.5992 run19.mat -1 -1 486 2215843 2225543 +4423915 4424296 382 631973.4897 631992.5437 -75.8785 5.0418 100.4746 run19.mat -1 -1 487 2267664 2267855 +4424616 4445270 20655 632008.547 633043.552 -74.2239 5.047 92.6537 run19.mat -1 -1 487 2268015 2278342 +4445577 4466270 20694 633058.905 634092.2035 -72.5745 5.0459 92.5294 run19.mat -1 -1 487 2278496 2288843 +4466577 4487272 20696 634107.6804 635142.2207 -70.9195 5.0457 92.5416 run19.mat -1 -1 487 2288996 2299344 +4487578 4508252 20675 635157.5239 636189.5525 -69.2727 5.0463 92.6925 run19.mat -1 -1 487 2299497 2309834 +4508558 4519735 11178 636204.8584 636764.2703 -67.6244 5.0433 92.7014 run19.mat -1 -1 487 2309987 2315576 +4603936 4612497 8562 640974.1578 641402.8324 -67.6236 5.0473 93.4514 run19.mat -1 -1 488 2357678 2361965 +4612810 4633507 20698 641418.6118 642454.137 -65.9724 5.0451 92.5611 run19.mat -1 -1 488 2362116 2372465 +4633816 4654493 20678 642469.4704 643503.9617 -64.3214 5.0453 92.6539 run19.mat -1 -1 488 2372619 2382958 +4654804 4675491 20688 643519.6403 644553.8435 -62.67 5.0445 92.5965 run19.mat -1 -1 488 2383114 2393458 +4675796 4696470 20675 644569.0967 645603.2533 -61.0241 5.0466 92.6843 run19.mat -1 -1 488 2393610 2403947 +4696777 4699754 2978 645618.7334 645768.8443 -59.3751 5.0473 92.9493 run19.mat -1 -1 488 2404101 2405589 +4784021 4800798 16778 649979.7778 650819.704 -59.3735 5.0465 92.9903 run19.mat -1 -1 489 2447725 2456114 +4801111 4821794 20684 650835.4172 651869.842 -57.7255 5.0456 92.541 run19.mat -1 -1 489 2456270 2466612 +4822099 4842790 20692 651884.974 652919.9767 -56.0741 5.0446 92.6765 run19.mat -1 -1 489 2466765 2477111 +4843098 4863771 20674 652935.3831 653967.1761 -54.4229 5.0453 92.5977 run19.mat -1 -1 489 2477265 2487602 +4864081 4879814 15734 653982.9421 654768.366 -52.7773 5.0453 92.6306 run19.mat -1 -1 489 2487757 2495623 +4964136 4968219 4084 658986.5018 659191.6606 -52.7894 5.0433 95.3786 run19.mat -1 -1 490 2537786 2539828 +4968537 4989232 20696 659207.4407 660240.3003 -51.1264 5.0473 92.4453 run19.mat -1 -1 490 2539987 2550335 +4989538 5010212 20675 660255.4818 661290.2555 -49.478 5.0463 92.5806 run19.mat -1 -1 490 2550488 2560825 +5010520 5031213 20694 661305.6619 662339.0798 -47.8272 5.0463 92.5501 run19.mat -1 -1 490 2560979 2571326 +5031518 5052186 20669 662354.2117 663390.4984 -46.1825 5.0446 92.6398 run19.mat -1 -1 490 2571479 2581814 +5052498 5060033 7536 663406.1016 663781.9579 -44.5319 5.0455 92.6282 run19.mat -1 -1 490 2581969 2585737 +5144143 5156338 12196 667987.5615 668598.0842 -44.5358 5.047 93.3371 run19.mat -1 -1 491 2627794 2633892 +5156662 5177352 20691 668614.3497 669647.1827 -42.8816 5.0463 92.579 run19.mat -1 -1 491 2634054 2644399 +5177658 5198332 20675 669662.6123 670698.6249 -41.2329 5.0469 92.6319 run19.mat -1 -1 491 2644552 2654890 +5198638 5219334 20697 670713.8065 671746.5863 -39.5854 5.0473 92.5885 run19.mat -1 -1 491 2655043 2665391 +5219641 5239953 20313 671761.8206 672776.363 -37.9361 5.0471 92.8252 run19.mat -1 -1 491 2665545 2675701 +5324254 5344655 20402 676991.6061 678013.5602 -36.2869 5.0452 92.9828 run19.mat -1 -1 492 2717854 2728054 +5344961 5365674 20714 678028.7418 679064.364 -34.6331 5.0449 92.6142 run19.mat -1 -1 492 2728207 2738564 +5365982 5386656 20675 679079.6448 680111.2701 -32.9846 5.0463 92.5703 run19.mat -1 -1 492 2738718 2749056 +5386961 5407653 20693 680126.4021 681162.588 -31.3348 5.0462 92.5914 run19.mat -1 -1 492 2749208 2759555 +5407959 5420034 12076 681177.8912 681780.2117 -29.6869 5.0471 92.783 run19.mat -1 -1 492 2759708 2765746 +5504350 5511981 7632 685995.741 686378.3566 -29.6864 5.0462 93.6148 run19.mat -1 -1 493 2807905 2811721 +5512300 5532995 20696 686394.1832 687430.7172 -28.0308 5.0446 92.5934 run19.mat -1 -1 493 2811881 2822228 +5533303 5553993 20691 687446.2477 688477.8166 -26.3855 5.0465 92.5406 run19.mat -1 -1 493 2822382 2832728 +5554301 5574985 20685 688493.0974 689527.4482 -24.7385 5.0447 92.5055 run19.mat -1 -1 493 2832882 2843225 +5575299 5595959 20661 689543.1523 690578.4108 -23.087 5.0468 92.6706 run19.mat -1 -1 493 2843382 2853712 +5596267 5600153 3887 690593.8138 690788.1036 -21.4364 5.0414 93.003 run19.mat -1 -1 493 2853866 2855809 +5684197 5700078 15882 694988.4895 695784.6818 -21.4388 5.0461 93.0614 run19.mat -1 -1 494 2897833 2905773 +5700386 5721096 20711 695800.0961 696833.9598 -19.79 5.0458 92.5679 run19.mat -1 -1 494 2905927 2916283 +5721404 5742078 20675 696849.3628 697884.2857 -18.1467 5.0464 92.6805 run19.mat -1 -1 494 2916437 2926774 +5742384 5763075 20692 697899.4176 698933.4404 -16.4959 5.047 92.5562 run19.mat -1 -1 494 2926927 2937274 +5763382 5780013 16632 698948.6716 699779.9159 -14.8486 5.0442 92.6523 run19.mat -1 -1 494 2937427 2945743 +5864264 5867491 3228 703992.6328 704154.0258 -14.8408 5.048 95.6899 run19.mat -1 -1 495 2987870 2989484 +5867805 5888475 20671 704169.6043 705205.2046 -13.1941 5.046 92.5598 run19.mat -1 -1 495 2989641 2999976 +5888785 5909494 20710 705220.5846 706254.133 -11.5491 5.0459 92.5147 run19.mat -1 -1 495 3000131 3010487 +5909803 5930476 20674 706269.4665 707305.5586 -9.8969 5.0468 92.5758 run19.mat -1 -1 495 3010641 3020978 +5930785 5951476 20692 707321.1363 708353.9817 -8.2475 5.0447 92.6013 run19.mat -1 -1 495 3021132 3031478 +5951782 5960072 8291 708369.1663 708781.989 -6.5949 5.045 92.7379 run19.mat -1 -1 495 3031631 3035776 +6044367 6055779 11413 712997.7229 713569.5945 -6.5967 5.0432 93.1272 run19.mat -1 -1 496 3077925 3083632 +6056086 6076779 20694 713584.9477 714619.8007 -4.9477 5.045 92.5044 run19.mat -1 -1 496 3083786 3094132 +6077089 6097775 20687 714635.3037 715669.4828 -3.2943 5.0467 92.5384 run19.mat -1 -1 496 3094287 3104631 +6098084 6118774 20691 715684.8133 716718.8111 -1.6466 5.0467 92.5499 run19.mat -1 -1 496 3104786 3115131 +6119082 6139737 20656 716734.3384 717767.2701 0.00034948 5.0463 92.7449 run19.mat -1 -1 496 3115285 3125613 +6140042 6140132 91 717782.4021 717786.8672 1.6813 5.05 92.816 run19.mat -1 -1 496 3125765 3125810 +6224297 6244179 19883 721994.5188 722988.8853 1.6466 5.046 92.9271 run19.mat -1 -1 497 3167895 3177836 +6244498 6265176 20679 723004.8415 724037.0271 3.2993 5.0457 92.5344 run19.mat -1 -1 497 3177995 3188335 +6265481 6286174 20694 724052.2803 725088.7265 4.9453 5.0458 92.6281 run19.mat -1 -1 497 3188487 3198834 +6286480 6307159 20680 725104.1561 726136.8789 6.5908 5.0447 92.6546 run19.mat -1 -1 497 3198987 3209328 +6307466 6320191 12726 726152.2133 726790.5164 8.246 5.0481 92.7203 run19.mat -1 -1 497 3209481 3215844 +6404603 6411592 6990 731010.0548 731359.3078 8.2478 5.0414 93.7848 run19.mat -1 -1 498 3258052 3261546 +6411906 6432595 20690 731374.8863 732409.316 9.8926 5.046 92.5638 run19.mat -1 -1 498 3261703 3272048 +6432903 6453597 20695 732424.7318 733460.2862 11.539 5.045 92.6436 run19.mat -1 -1 498 3272202 3282549 +6453903 6474587 20685 733475.4708 734509.0565 13.186 5.0469 92.6093 run19.mat -1 -1 498 3282702 3293045 +6474898 6495561 20664 734524.735 735560.345 14.8429 5.0466 92.6035 run19.mat -1 -1 498 3293201 3303533 +6495870 6500391 4522 735575.9228 735801.0787 16.4852 5.0451 92.8402 run19.mat -1 -1 498 3303687 3305947 +6584494 6599702 15209 740005.8146 740764.9271 16.489 5.0456 92.9623 run19.mat -1 -1 499 3348001 3355605 +6600008 6620681 20674 740780.2334 741815.1442 18.1373 5.0458 92.62 run19.mat -1 -1 499 3355758 3366095 +6620995 6641685 20691 741830.974 742866.684 19.7832 5.0466 92.6652 run19.mat -1 -1 499 3366252 3376598 +6641995 6662678 20684 742882.187 743912.9391 21.4353 5.0456 92.6532 run19.mat -1 -1 499 3376753 3387095 +6662983 6680250 17268 743928.071 744793.7267 23.0889 5.0461 92.761 run19.mat -1 -1 499 3387247 3395881 +6764518 6766979 2462 749006.5666 749128.6642 23.0933 5.0451 95.0662 run19.mat -1 -1 500 3438007 3439218 +6767292 6787979 20688 749144.1931 750180.0904 24.7373 5.0459 92.5627 run19.mat -1 -1 500 3439404 3449748 +6788287 6808960 20674 750195.6208 751227.6526 26.3906 5.0468 92.6424 run19.mat -1 -1 500 3449902 3460239 +6809266 6829959 20694 751242.9584 752280.5215 28.0354 5.0445 92.5872 run19.mat -1 -1 500 3460392 3470739 +6830267 6850941 20675 752295.8023 753327.0292 29.6897 5.0473 92.6414 run19.mat -1 -1 500 3470893 3481230 +6851249 6860311 9063 753342.5566 753795.3696 31.3315 5.0444 92.8343 run19.mat -1 -1 500 3481384 3485916 +6944626 6955310 10685 758011.6001 758545.5756 31.3396 5.0471 93.4167 run19.mat -1 -1 501 3528075 3533417 +6955626 6976299 20674 758561.5095 759595.6739 32.9856 5.0458 92.5647 run19.mat -1 -1 501 3533575 3543912 +6976608 6997321 20714 759611.2517 760647.4485 34.634 5.0458 92.5326 run19.mat -1 -1 501 3544067 3554424 +6997628 7018301 20674 760662.9254 761695.564 36.2844 5.0457 92.5482 run19.mat -1 -1 501 3554577 3564914 +7018609 7039281 20673 761710.8448 762746.594 37.9314 5.0464 92.7391 run19.mat -1 -1 501 3565068 3575405 +7039588 7040410 823 762761.8252 762802.6071 39.5999 5.0456 93.3013 run19.mat -1 -1 501 3575558 3575969 +7124655 7143581 18927 767013.5576 767958.3005 39.5788 5.0459 93.0491 run19.mat -1 -1 502 3618093 3627557 +7143892 7164561 20670 767973.7301 769007.5431 41.227 5.0455 92.6082 run19.mat -1 -1 502 3627712 3638047 +7164870 7185581 20712 769023.1208 770059.9297 42.8764 5.0471 92.6197 run19.mat -1 -1 502 3638202 3648558 +7185887 7206562 20676 770075.1113 771108.9244 44.5288 5.0457 92.6649 run19.mat -1 -1 502 3648711 3659049 +7206871 7220451 13581 771124.5021 771802.5651 46.1727 5.0468 92.6659 run19.mat -1 -1 502 3659203 3665994 +7304494 7310613 6120 776006.7348 776311.5779 46.179 5.0439 93.6208 run19.mat -1 -1 503 3708017 3711077 +7310926 7331621 20696 776327.3573 777362.5273 47.8268 5.047 92.5037 run19.mat -1 -1 503 3711233 3721581 +7331928 7352601 20674 777377.7585 778410.9233 49.4773 5.0449 92.5625 run19.mat -1 -1 503 3721734 3732072 +7352908 7373606 20699 778426.2797 779460.4451 51.128 5.0466 92.606 run19.mat -1 -1 503 3732225 3742574 +7373919 7394584 20666 779476.0981 780511.6569 52.7806 5.0465 92.5891 run19.mat -1 -1 503 3742731 3753064 +7394892 7400249 5358 780527.0598 780794.9623 54.4236 5.0481 92.6657 run19.mat -1 -1 503 3753218 3755896 +7484521 7498871 14351 785007.6372 785723.5963 54.4296 5.0444 93.181 run19.mat -1 -1 504 3798034 3805210 +7499190 7519879 20690 785739.426 786775.9246 56.0756 5.047 92.5167 run19.mat -1 -1 504 3805369 3815714 +7520189 7540861 20673 786791.3077 787824.4259 57.7291 5.0457 92.6218 run19.mat -1 -1 504 3815869 3826205 +7541169 7561863 20695 787839.8319 788873.9115 59.3757 5.0452 92.615 run19.mat -1 -1 504 3826359 3836707 +7562170 7580289 18120 788889.1457 789794.5817 61.0251 5.0452 92.7825 run19.mat -1 -1 504 3836861 3845920 +7664551 7666150 1600 794008.5465 794088.024 61.0287 5.0516 96.3473 run19.mat -1 -1 505 3888053 3888853 +7666469 7687142 20674 794103.8506 795138.4882 62.6713 5.0456 92.6505 run19.mat -1 -1 505 3889012 3899349 +7687451 7708142 20692 795153.8186 796188.3493 64.3211 5.0465 92.5254 run19.mat -1 -1 505 3899504 3909850 +7708449 7729146 20698 796203.5805 797239.6536 65.9692 5.0473 92.4901 run19.mat -1 -1 505 3910003 3920352 +7729449 7750124 20676 797254.9288 798287.1958 67.6197 5.0461 92.6253 run19.mat -1 -1 505 3920504 3930841 +7750431 7760329 9899 798302.5876 798797.5535 69.2651 5.045 92.877 run19.mat -1 -1 505 3930995 3935944 +7844535 7854434 9900 803009.4941 803504.5535 69.2671 5.0494 93.4918 run19.mat -1 -1 506 3978049 3982999 +7854750 7875444 20695 803520.4842 804553.6239 70.9154 5.0478 92.5071 run19.mat -1 -1 506 3983157 3993504 +7875754 7896446 20693 804569.2521 805602.291 72.567 5.046 92.5399 run19.mat -1 -1 506 3993659 4004006 +7896752 7917427 20676 805617.7175 806654.4162 74.2142 5.0467 92.6146 run19.mat -1 -1 506 4004159 4014497 +7917736 7938402 20667 806669.8692 807702.2086 75.8649 5.0447 92.6643 run19.mat -1 -1 506 4014651 4024984 +7938710 7940409 1700 807717.739 807803.4086 77.5168 5.0481 91.9759 run19.mat -1 -1 506 4025138 4025988 +8024853 8042902 18050 812023.7726 812926.3917 77.5157 5.0445 92.8964 run19.mat -1 -1 507 4068212 4077237 +8043216 8063902 20687 812942.2247 813978.0867 79.1675 5.0468 92.57 run19.mat -1 -1 507 4077394 4087737 +8064209 8084902 20694 813993.3179 815028.743 80.8163 5.045 92.5679 run19.mat -1 -1 507 4087891 4098238 +8085210 8105544 20335 815044.2735 816058.1278 82.4648 5.0465 92.6402 run19.mat -1 -1 507 4098392 4108560 +293086 313598 20513 9709771.4551 9710795.3224 82.4622 -43.7509 92.8237 run2.mat -1 -1 509 164763 175020 +313904 334599 20696 9710810.6283 9711847.6694 80.8118 -43.7507 92.5895 run2.mat -1 -1 509 175173 185521 +334904 355582 20679 9711862.9223 9712895.9756 79.1663 -43.7506 92.6294 run2.mat -1 -1 509 185673 196013 +355896 376562 20667 9712911.8054 9713943.0052 77.5118 -43.7507 92.6497 run2.mat -1 -1 509 196170 206503 +376873 388838 11966 9713958.4348 9714556.2561 75.8618 -43.7509 92.7031 run2.mat -1 -1 509 206659 212641 +472996 480834 7839 9718766.1996 9719157.2179 75.8623 -43.7514 93.6273 run2.mat -1 -1 510 254722 258641 +481166 501839 20674 9719173.6927 9720206.7726 74.218 -43.7513 92.6183 run2.mat -1 -1 510 258807 269144 +502150 522842 20693 9720222.3286 9721257.2414 72.5703 -43.7507 92.5291 run2.mat -1 -1 510 269300 279647 +523148 543839 20692 9721272.5477 9722309.3947 70.9162 -43.7509 92.6359 run2.mat -1 -1 510 279800 290145 +544145 564798 20654 9722324.637 9723358.6103 69.2678 -43.7511 92.6771 run2.mat -1 -1 510 290298 300625 +565108 568877 3770 9723374.1136 9723562.4974 67.6237 -43.7505 92.7498 run2.mat -1 -1 510 300780 302665 +653223 669184 15962 9727777.291 9728575.4724 67.6217 -43.7502 93.0532 run2.mat -1 -1 511 344840 352820 +669496 672991 3496 9728591.2045 9728767.4349 65.9741 -43.751 92.7154 run2.mat -1 -1 511 352976 354724 +673241 690198 16958 9728780.0407 9729627.714 65.9735 -43.7507 92.6595 run2.mat -1 -1 511 354849 363328 +690503 711176 20674 9729642.846 9730674.4466 64.3198 -43.751 92.5916 run2.mat -1 -1 511 363481 373817 +711486 732159 20674 9730689.8297 9731723.8815 62.6749 -43.7505 92.5641 run2.mat -1 -1 511 373972 384310 +732467 748998 16532 9731739.2845 9732568.0335 61.0244 -43.7506 92.9154 run2.mat -1 -1 511 384464 392730 +833272 836435 3164 9736781.9898 9736939.2896 61.0248 -43.7522 94.6957 run2.mat -1 -1 512 434868 436450 +836760 857437 20678 9736955.2965 9737989.1445 59.3761 -43.751 92.5772 run2.mat -1 -1 512 436612 446951 +857745 878416 20672 9738004.4253 9739039.5414 57.7282 -43.7513 92.5991 run2.mat -1 -1 512 447105 457441 +878726 899419 20694 9739055.0446 9740087.8098 56.0754 -43.7506 92.5996 run2.mat -1 -1 512 457596 467943 +899724 920398 20675 9740103.1859 9741135.3678 54.4242 -43.7513 92.6179 run2.mat -1 -1 512 468096 478433 +920707 929037 8331 9741150.9456 9741567.7156 52.7815 -43.7509 92.9658 run2.mat -1 -1 512 478588 482753 +1015144 1026618 11475 9745873.8554 9746448.9917 52.7746 -43.7511 93.3907 run2.mat -1 -1 513 525808 531545 +1026925 1047619 20695 9746464.2229 9747500.0544 51.1244 -43.7514 92.6017 run2.mat -1 -1 513 531699 542045 +1047923 1068618 20696 9747515.377 9748548.6841 49.471 -43.751 92.6118 run2.mat -1 -1 513 542197 552546 +1068925 1089598 20674 9748564.1642 9749596.6665 47.8227 -43.7509 92.6076 run2.mat -1 -1 513 552700 563037 +1089908 1110557 20650 9749612.05 9750645.0208 46.1754 -43.7505 92.7815 run2.mat -1 -1 513 563192 573517 +1110866 1110916 51 9750660.5985 9750663.1192 44.5741 -43.7413 84.4436 run2.mat -1 -1 513 573672 573697 +1194984 1214778 19795 9754866.1016 9755858.0061 44.529 -43.7511 93.043 run2.mat -1 -1 514 615732 625629 +1215111 1235779 20669 9755874.7971 9756906.5721 42.878 -43.7508 92.6256 run2.mat -1 -1 514 625796 636130 +1236086 1256768 20683 9756921.8033 9757954.8193 41.2279 -43.7518 92.5624 run2.mat -1 -1 514 636284 646625 +1257082 1277757 20676 9757970.6523 9759006.0698 39.5827 -43.751 92.7097 run2.mat -1 -1 514 646782 657120 +1278065 1290757 12693 9759021.4728 9759654.2464 37.9326 -43.751 92.7969 run2.mat -1 -1 514 657274 663621 +1375047 1382038 6992 9763870.8257 9764218.4644 37.9334 -43.7515 93.6397 run2.mat -1 -1 515 705768 709263 +1382343 1403041 20699 9764233.7207 9765269.6192 36.2857 -43.7509 92.5354 run2.mat -1 -1 515 709415 719765 +1403349 1424020 20672 9765285.1497 9766318.1848 34.6348 -43.7513 92.5611 run2.mat -1 -1 515 719919 730255 +1424329 1445000 20672 9766333.7656 9767367.1675 32.9848 -43.7506 92.6012 run2.mat -1 -1 515 730409 740745 +1445314 1465983 20670 9767382.7491 9768417.8819 31.3377 -43.751 92.6879 run2.mat -1 -1 515 740902 751237 +1466292 1470816 4525 9768433.3378 9768658.0443 29.6914 -43.7499 92.9491 run2.mat -1 -1 515 751392 753654 +1554936 1570118 15183 9772865.7576 9773623.8761 29.6849 -43.7512 93.1024 run2.mat -1 -1 516 795716 803307 +1570440 1591104 20665 9773639.8547 9774671.1558 28.0371 -43.751 92.5343 run2.mat -1 -1 516 803468 813801 +1591425 1612103 20679 9774687.0816 9775722.7043 26.3848 -43.7511 92.625 run2.mat -1 -1 516 813961 824301 +1612410 1633103 20694 9775738.1843 9776772.1568 24.7387 -43.7511 92.6927 run2.mat -1 -1 516 824455 834801 +1633407 1650697 17291 9776787.3597 9777653.3635 23.0881 -43.7504 92.8449 run2.mat -1 -1 516 834953 843599 +1734950 1737380 2431 9781863.9873 9781985.5341 23.0786 -43.7508 96.4228 run2.mat -1 -1 517 885727 886943 +1737686 1758362 20677 9782000.8399 9783035.9016 21.4353 -43.7507 92.549 run2.mat -1 -1 517 887095 897434 +1758670 1779362 20693 9783051.3049 9784085.6999 19.7856 -43.751 92.5369 run2.mat -1 -1 517 897588 907934 +1779670 1800361 20692 9784100.9808 9785136.3451 18.1365 -43.7513 92.5942 run2.mat -1 -1 517 908088 918434 +1800667 1821325 20659 9785151.6515 9786184.8802 16.489 -43.7509 92.6864 run2.mat -1 -1 517 918587 928917 +1821629 1830756 9128 9786200.0831 9786655.4869 14.8408 -43.7508 92.8369 run2.mat -1 -1 517 929069 933632 +1914799 1925502 10704 9790857.1952 9791392.1346 14.8432 -43.7516 93.5383 run2.mat -1 -1 518 975655 981007 +1925824 1946502 20679 9791408.2414 9792443.5029 13.1915 -43.7514 92.4613 run2.mat -1 -1 518 981168 991508 +1946813 1967503 20691 9792459.1815 9793493.1854 11.5425 -43.7511 92.612 run2.mat -1 -1 518 991663 1002009 +1967810 1988502 20693 9793508.4166 9794544.8338 9.8938 -43.7511 92.5768 run2.mat -1 -1 518 1002162 1012508 +1988806 2009462 20657 9794560.1502 9795591.1662 8.2491 -43.7512 92.7837 run2.mat -1 -1 518 1012660 1022989 +2009769 2010555 787 9795606.5221 9795645.8372 6.5777 -43.7537 91.6494 run2.mat -1 -1 518 1023142 1023535 +2094837 2113920 19084 9799860.0154 9800814.4451 6.592 -43.7516 93.0354 run2.mat -1 -1 519 1065678 1075220 +2114243 2134920 20678 9800830.5982 9801866.2069 4.9453 -43.7509 92.6102 run2.mat -1 -1 519 1075382 1085721 +2135229 2155903 20675 9801881.4286 9802914.91 3.2983 -43.7513 92.6413 run2.mat -1 -1 519 1085875 1096213 +2156213 2176906 20694 9802930.1781 9803965.5697 1.649 -43.7515 92.6825 run2.mat -1 -1 519 1096368 1106714 +2177212 2190655 13444 9803980.7543 9804650.7985 0.0011366 -43.7511 92.8414 run2.mat -1 -1 519 1106867 1113590 +2274781 2281121 6341 9808858.7412 9809174.5175 0.0020089 -43.7502 94.0028 run2.mat -1 -1 520 1155654 1158824 +2281449 2302140 20692 9809191.0565 9810225.0633 -1.6499 -43.7508 92.5559 run2.mat -1 -1 520 1158988 1169334 +2302450 2323124 20675 9810240.3313 9811273.2068 -3.2955 -43.7511 92.5711 run2.mat -1 -1 520 1169489 1179827 +2323430 2344106 20677 9811288.3884 9812322.1748 -4.9484 -43.7514 92.6157 run2.mat -1 -1 520 1179980 1190318 +2344418 2365081 20664 9812337.6541 9813372.0042 -6.5957 -43.7507 92.6107 run2.mat -1 -1 520 1190474 1200806 +2365390 2370534 5145 9813387.4574 9813644.7101 -8.2485 -43.7504 92.8028 run2.mat -1 -1 520 1200961 1203533 +2454617 2469303 14687 9817847.9396 9818582.4376 -8.2512 -43.7511 93.1685 run2.mat -1 -1 521 1245576 1252919 +2469639 2490326 20688 9818599.2411 9819633.197 -9.8988 -43.7505 92.6238 run2.mat -1 -1 521 1253087 1263431 +2490630 2511301 20672 9819648.1724 9820683.9157 -11.5469 -43.7508 92.5787 run2.mat -1 -1 521 1263583 1273919 +2511610 2532285 20676 9820699.3717 9821731.9978 -13.193 -43.7509 92.5669 run2.mat -1 -1 521 1274074 1284412 +2532591 2550374 17784 9821747.4243 9822638.0404 -14.8449 -43.7507 92.8132 run2.mat -1 -1 521 1284565 1293457 +2634476 2636403 1928 9826843.3326 9826939.7012 -14.8419 -43.7546 94.8338 run2.mat -1 -1 522 1335510 1336473 +2636710 2657405 20696 9826955.0544 9827988.0746 -16.4929 -43.7511 92.6572 run2.mat -1 -1 522 1336627 1346975 +2657713 2678389 20677 9828003.4806 9829038.4615 -18.1412 -43.7508 92.6239 run2.mat -1 -1 522 1347129 1357467 +2678699 2699384 20686 9829054.0928 9830086.803 -19.7873 -43.751 92.5977 run2.mat -1 -1 522 1357622 1367965 +2699691 2720365 20675 9830102.2799 9831136.9319 -21.4381 -43.7512 92.6013 run2.mat -1 -1 522 1368119 1378456 +2720678 2730253 9576 9831152.5879 9831632.2377 -23.0906 -43.7509 92.964 run2.mat -1 -1 522 1378612 1383400 +2814491 2824742 10252 9835841.5263 9836355.3831 -23.0883 -43.7502 93.8132 run2.mat -1 -1 523 1425521 1430647 +2825071 2845746 20676 9836371.9691 9837406.2503 -24.739 -43.7507 92.5365 run2.mat -1 -1 523 1430811 1441149 +2846049 2866743 20695 9837421.5255 9838455.748 -26.3845 -43.7507 92.5757 run2.mat -1 -1 523 1441301 1451648 +2867051 2887726 20676 9838471.1936 9839503.4249 -28.0372 -43.7502 92.5776 run2.mat -1 -1 523 1451802 1462140 +2888033 2908685 20653 9839518.9018 9840551.858 -29.6855 -43.7512 92.7132 run2.mat -1 -1 523 1462294 1472620 +2908991 2910273 1283 9840567.2845 9840631.9145 -31.346 -43.7511 91.8956 run2.mat -1 -1 523 1472773 1473414 +2994260 3012823 18564 9844830.35 9845758.7024 -31.337 -43.7516 93.0574 run2.mat -1 -1 524 1515410 1524692 +3013148 3033825 20678 9845774.9558 9846811.0642 -32.9852 -43.7509 92.5029 run2.mat -1 -1 524 1524854 1535193 +3034133 3054825 20693 9846826.4672 9847860.4928 -34.6313 -43.7509 92.5705 run2.mat -1 -1 524 1535347 1545693 +3055134 3075805 20672 9847875.8232 9848909.3918 -36.2884 -43.7515 92.6626 run2.mat -1 -1 524 1545848 1556184 +3076113 3090154 14042 9848924.6757 9849627.1855 -37.9342 -43.7502 92.8323 run2.mat -1 -1 524 1556338 1563359 +3174325 3180084 5760 9853835.4854 9854123.9686 -37.939 -43.7511 94.2519 run2.mat -1 -1 525 1605446 1608326 +3180401 3201105 20705 9854139.6991 9855173.5576 -39.5851 -43.7506 92.5821 run2.mat -1 -1 525 1608484 1618837 +3201414 3222105 20692 9855189.1353 9856222.4947 -41.2332 -43.7508 92.6354 run2.mat -1 -1 525 1618991 1629337 +3222411 3243087 20677 9856237.7979 9857273.8899 -42.8829 -43.7509 92.6483 run2.mat -1 -1 525 1629490 1639829 +3243394 3264065 20672 9857289.182 9858323.5465 -44.5323 -43.7507 92.6691 run2.mat -1 -1 525 1639982 1650318 +3264373 3270231 5859 9858338.8273 9858631.4037 -46.1853 -43.7509 92.8103 run2.mat -1 -1 525 1650472 1653401 +3354372 3368344 13973 9862837.6649 9863536.6364 -46.1796 -43.7505 93.1891 run2.mat -1 -1 526 1695474 1702460 +3368660 3389328 20669 9863552.567 9864585.9596 -47.8292 -43.7505 92.6037 run2.mat -1 -1 526 1702618 1712952 +3389634 3410328 20695 9864601.2628 9865635.5051 -49.4775 -43.7515 92.6127 run2.mat -1 -1 526 1713105 1723453 +3410638 3431325 20688 9865650.8851 9866685.5112 -51.127 -43.7506 92.6747 run2.mat -1 -1 526 1723608 1733952 +3431634 3450273 18640 9866701.0889 9867634.0785 -52.7749 -43.7511 92.736 run2.mat -1 -1 526 1734106 1743426 +3534293 3535544 1252 9871835.147 9871897.3386 -52.7814 -43.7493 98.0672 run2.mat -1 -1 527 1785438 1786063 +3535860 3556528 20669 9871913.0163 9872945.8457 -54.4233 -43.7503 92.6175 run2.mat -1 -1 527 1786221 1796556 +3556835 3577505 20671 9872961.3226 9873994.2513 -56.0746 -43.7507 92.6514 run2.mat -1 -1 527 1796709 1807045 +3577814 3598526 20713 9874009.7072 9875047.0254 -57.724 -43.7506 92.6581 run2.mat -1 -1 527 1807200 1817556 +3598834 3619507 20674 9875062.5527 9876094.6338 -59.3744 -43.7512 92.6386 run2.mat -1 -1 527 1817710 1828047 +3619814 3630111 10298 9876110.1107 9876627.0746 -61.024 -43.7511 92.9481 run2.mat -1 -1 527 1828200 1833349 +3714168 3723565 9398 9880826.5823 9881296.7975 -61.0256 -43.7488 93.2316 run2.mat -1 -1 528 1875379 1880078 +3723871 3744586 20716 9881311.9821 9882349.0982 -62.6728 -43.7514 92.4578 run2.mat -1 -1 528 1880231 1890589 +3744894 3765568 20675 9882364.6255 9883399.8466 -64.323 -43.7516 92.6241 run2.mat -1 -1 528 1890743 1901080 +3765874 3786566 20693 9883415.0282 9884448.4225 -65.9746 -43.751 92.5952 run2.mat -1 -1 528 1901233 1911580 +3786874 3807527 20654 9884463.9498 9885497.5346 -67.6265 -43.7511 92.7565 run2.mat -1 -1 528 1911734 1922061 +3807834 3809931 2098 9885512.7658 9885616.8043 -69.2775 -43.7515 92.778 run2.mat -1 -1 528 1922214 1923263 +3894185 3911825 17641 9889829.0548 9890709.9863 -69.2744 -43.7507 92.9714 run2.mat -1 -1 529 1965392 1974212 +3912148 3932827 20680 9890726.2731 9891759.97 -70.9185 -43.7508 92.5964 run2.mat -1 -1 529 1974374 1984714 +3933138 3953807 20670 9891775.5232 9892812.0949 -72.5745 -43.751 92.6529 run2.mat -1 -1 529 1984869 1995204 +3954114 3974806 20693 9892827.3261 9893861.0659 -74.2232 -43.7508 92.6221 run2.mat -1 -1 529 1995357 2005704 +3975115 3989971 14857 9893876.6437 9894618.3064 -75.8671 -43.7507 92.8117 run2.mat -1 -1 529 2005858 2013287 +4074048 4078926 4879 9898823.0641 9899066.7229 -75.8649 -43.751 94.4157 run2.mat -1 -1 530 2055327 2057766 +4079233 4099934 20702 9899081.9571 9900116.5349 -77.5145 -43.7504 92.5942 run2.mat -1 -1 530 2057920 2068271 +4100243 4120929 20687 9900131.9879 9901164.5422 -79.1679 -43.7509 92.5489 run2.mat -1 -1 530 2068425 2078769 +4121238 4141911 20674 9901179.9952 9902215.0258 -80.8128 -43.7507 92.6948 run2.mat -1 -1 530 2078923 2089260 +4142222 4162891 20670 9902230.7075 9903266.2193 -82.4658 -43.7509 92.6998 run2.mat -1 -1 530 2089416 2099750 +4163199 4169871 6673 9903281.6252 9903614.2493 -82.4648 -42.0718 92.9547 run2.mat -1 -1 530 2099904 2103241 +4253847 4267001 13155 9907812.8722 9908469.973 -82.4673 -42.0713 93.4162 run2.mat -1 -1 531 2145231 2151808 +4267322 4288004 20683 9908486.1589 9909518.9052 -80.816 -42.0711 92.5832 run2.mat -1 -1 531 2151969 2162310 +4288312 4308989 20678 9909534.4294 9910570.0652 -79.1676 -42.0718 92.6833 run2.mat -1 -1 531 2162464 2172803 +4309300 4329972 20673 9910585.6185 9911618.5285 -77.5148 -42.0713 92.6504 run2.mat -1 -1 531 2172958 2183295 +4330282 4349750 19469 9911634.1567 9912607.4739 -75.8676 -42.0716 92.759 run2.mat -1 -1 531 2183450 2193184 +4433996 4434414 419 9916819.4398 9916840.5126 -75.8847 -42.0783 105.8624 run2.mat -1 -1 532 2235309 2235518 +4434727 4455368 20642 9916856.292 9917889.9234 -74.2191 -42.071 92.735 run2.mat -1 -1 532 2235675 2245996 +4455676 4476350 20675 9917905.3264 9918938.6171 -72.5749 -42.0716 92.5692 run2.mat -1 -1 532 2246150 2256487 +4476657 4497350 20694 9918954.094 9919987.5937 -70.9179 -42.0712 92.6431 run2.mat -1 -1 532 2256641 2266988 +4497657 4518333 20677 9920002.9469 9921036.9998 -69.2753 -42.0715 92.6234 run2.mat -1 -1 532 2267141 2277479 +4518639 4529791 11153 9921052.1893 9921609.4924 -67.6255 -42.0718 92.7169 run2.mat -1 -1 532 2277633 2283209 +4613851 4622433 8583 9925813.1179 9926241.799 -67.624 -42.0721 93.3788 run2.mat -1 -1 533 2325241 2329532 +4622742 4643411 20670 9926257.3767 9927289.498 -65.9762 -42.0714 92.6046 run2.mat -1 -1 533 2329686 2340021 +4643718 4664408 20691 9927304.8511 9928342.6563 -64.3236 -42.0713 92.64 run2.mat -1 -1 533 2340175 2350520 +4664715 4685392 20678 9928358.0092 9929390.6938 -62.6721 -42.0715 92.6492 run2.mat -1 -1 533 2350674 2361012 +4685699 4706370 20672 9929406.1739 9930438.3767 -61.0265 -42.0711 92.6964 run2.mat -1 -1 533 2361166 2371502 +4706676 4709631 2956 9930453.5582 9930600.6513 -59.3783 -42.0703 92.6307 run2.mat -1 -1 533 2371655 2373133 +4793910 4810796 16887 9934816.3246 9935661.0269 -59.3717 -42.0718 93.0659 run2.mat -1 -1 534 2415274 2423717 +4811112 4831791 20680 9935676.833 9936709.0683 -57.7249 -42.0712 92.5925 run2.mat -1 -1 534 2423875 2434216 +4832097 4852791 20695 9936724.3715 9937760.0871 -56.074 -42.0713 92.6045 run2.mat -1 -1 534 2434369 2444716 +4853096 4873773 20678 9937775.2191 9938810.6768 -54.4246 -42.0711 92.5342 run2.mat -1 -1 534 2444868 2455207 +4874086 4889689 15604 9938826.3328 9939606.6991 -52.7778 -42.0712 92.6812 run2.mat -1 -1 534 2455364 2463166 +4973777 4977859 4083 9943810.5642 9944014.2187 -52.7749 -42.0704 94.4952 run2.mat -1 -1 535 2505211 2507252 +4978179 4998869 20691 9944030.0949 9945064.5759 -51.1286 -42.0702 92.6021 run2.mat -1 -1 535 2507412 2517758 +4999178 5019851 20674 9945079.9063 9946114.2966 -49.4737 -42.0714 92.6425 run2.mat -1 -1 535 2517913 2528250 +5020156 5040830 20675 9946129.6727 9947163.4128 -47.8287 -42.0712 92.5175 run2.mat -1 -1 535 2528402 2538739 +5041139 5061810 20672 9947178.7432 9948211.4614 -46.1789 -42.0715 92.6595 run2.mat -1 -1 535 2538894 2549230 +5062118 5069549 7432 9948226.9887 9948598.2987 -44.5303 -42.0704 92.8976 run2.mat -1 -1 535 2549384 2553100 +5153602 5165956 12355 9952801.1048 9953418.5372 -44.5366 -42.0718 93.2458 run2.mat -1 -1 536 2595128 2601306 +5166280 5186932 20653 9953434.8711 9954467.5706 -42.8781 -42.071 92.5267 run2.mat -1 -1 536 2601468 2611794 +5187237 5207932 20696 9954482.8265 9955516.5907 -41.2333 -42.0716 92.675 run2.mat -1 -1 536 2611946 2622294 +5208240 5228909 20670 9955532.1149 9956566.9777 -39.5834 -42.0712 92.6387 run2.mat -1 -1 536 2622448 2632783 +5229216 5249448 20233 9956582.3309 9957592.2147 -37.9367 -42.0719 92.7533 run2.mat -1 -1 536 2632936 2643053 +5333633 5354151 20519 9961802.5829 9962828.7737 -36.2901 -42.0725 92.9234 run2.mat -1 -1 537 2685147 2695407 +5354458 5375135 20678 9962844.2537 9963878.656 -34.6368 -42.0717 92.6552 run2.mat -1 -1 537 2695560 2705899 +5375443 5396131 20689 9963894.1833 9964925.4029 -32.9874 -42.071 92.5983 run2.mat -1 -1 537 2706053 2716398 +5396438 5417114 20677 9964940.6341 9965975.0653 -31.3363 -42.0715 92.6444 run2.mat -1 -1 537 2716551 2726890 +5417421 5429469 12049 9965990.6042 9966593.6068 -29.6904 -42.0714 92.7832 run2.mat -1 -1 537 2727043 2733068 +5513391 5521183 7793 9970789.287 9971180.5374 -29.6832 -42.0715 93.8101 run2.mat -1 -1 538 2775030 2778926 +5521498 5542172 20675 9971196.2904 9972228.3581 -28.0365 -42.072 92.5622 run2.mat -1 -1 538 2779084 2789421 +5542481 5563154 20674 9972243.8141 9973280.3466 -26.3868 -42.0711 92.6337 run2.mat -1 -1 538 2789576 2799912 +5563463 5584168 20706 9973295.68 9974330.416 -24.7375 -42.072 92.6409 run2.mat -1 -1 538 2800067 2810420 +5584480 5605134 20655 9974346.145 9975376.2769 -23.0879 -42.0711 92.7938 run2.mat -1 -1 538 2810576 2820904 +5605440 5609288 3849 9975391.5801 9975584.8217 -21.429 -42.0699 92.674 run2.mat -1 -1 538 2821057 2822980 +5693431 5709399 15969 9979794.8473 9980590.0639 -21.4379 -42.0716 93.1662 run2.mat -1 -1 539 2865054 2873039 +5709720 5730373 20654 9980606.1169 9981640.1254 -19.7884 -42.0711 92.5743 run2.mat -1 -1 539 2873199 2883526 +5730682 5751374 20693 9981655.4558 9982689.4159 -18.1405 -42.0707 92.6542 run2.mat -1 -1 539 2883681 2894027 +5751678 5772346 20669 9982704.6218 9983738.6491 -16.4902 -42.0714 92.589 run2.mat -1 -1 539 2894179 2904514 +5772659 5789327 16669 9983754.181 9984587.9697 -14.8457 -42.071 92.8493 run2.mat -1 -1 539 2904670 2913004 +5873449 5876576 3128 9988793.9176 9988950.1794 -14.846 -42.072 95.2724 run2.mat -1 -1 540 2955067 2956631 +5876887 5897572 20686 9988965.7327 9989999.197 -13.1938 -42.0715 92.4614 run2.mat -1 -1 540 2956786 2967129 +5897878 5918557 20680 9990014.2709 9991049.8002 -11.5421 -42.0716 92.6464 run2.mat -1 -1 540 2967282 2977622 +5918865 5939554 20690 9991065.2031 9992098.2295 -9.9011 -42.0718 92.6864 run2.mat -1 -1 540 2977776 2988121 +5939861 5960533 20673 9992113.7096 9993145.9645 -8.2498 -42.0707 92.6423 run2.mat -1 -1 540 2988275 2998611 +5960842 5969208 8367 9993161.5454 9993581.2187 -6.5973 -42.0712 92.8042 run2.mat -1 -1 540 2998765 3002949 +6055319 6066788 11470 9997886.6718 9998460.3001 -6.5952 -42.0718 93.5131 run2.mat -1 -1 541 3046006 3051741 +6067107 6087778 20672 9998476.2563 9999511.589 -4.9502 -42.0708 92.564 run2.mat -1 -1 541 3051900 3062236 +6088082 6108774 20693 9999526.9147 10000560.004 -3.2965 -42.0718 92.5779 run2.mat -1 -1 541 3062388 3072735 +6109082 6129756 20675 10000575.5314 10001610.6038 -1.6513 -42.0716 92.6056 run2.mat -1 -1 541 3072889 3083226 +6130066 6150737 20672 10001626.1068 10002658.2555 0.00064507 -42.0706 92.68 run2.mat -1 -1 541 3083381 3093717 +6151041 6151107 67 10002673.5812 10002676.9084 1.6547 -42.0755 102.6985 run2.mat -1 -1 541 3093869 3093902 +6235389 6255035 19647 10006891.7559 10007875.1469 1.6487 -42.0714 92.8151 run2.mat -1 -1 542 3136045 3145868 +6255346 6276017 20672 10007890.5179 10008923.1696 3.2985 -42.0713 92.586 run2.mat -1 -1 542 3146024 3156360 +6276324 6297016 20693 10008938.6465 10009973.2597 4.9424 -42.0713 92.4982 run2.mat -1 -1 542 3156514 3166860 +6297323 6317998 20676 10009988.38 10011021.1367 6.5957 -42.071 92.6302 run2.mat -1 -1 542 3167014 3177352 +6318303 6331147 12845 10011036.2687 10011679.9631 8.247 -42.0711 92.799 run2.mat -1 -1 542 3177504 3183926 +6415149 6422144 6996 10015880.0115 10016229.3438 8.2479 -42.0708 93.9857 run2.mat -1 -1 543 3225929 3229426 +6422462 6443157 20696 10016245.1239 10017280.9765 9.8964 -42.0709 92.5235 run2.mat -1 -1 543 3229585 3239923 +6443462 6464137 20676 10017296.2295 10018328.7511 11.544 -42.0716 92.6451 run2.mat -1 -1 543 3240087 3250424 +6464447 6485137 20691 10018344.1312 10019378.4867 13.189 -42.0709 92.6039 run2.mat -1 -1 543 3250579 3260924 +6485442 6506098 20657 10019393.7426 10020424.8796 14.8455 -42.0714 92.649 run2.mat -1 -1 543 3261077 3271406 +6506405 6510947 4543 10020440.4756 10020671.2141 16.4864 -42.0716 92.9475 run2.mat -1 -1 543 3271559 3273830 +6595229 6610428 15200 10024883.9623 10025641.9996 16.4882 -42.0706 92.9085 run2.mat -1 -1 544 3315973 3323573 +6610748 6631416 20669 10025657.8758 10026691.4033 18.1362 -42.0716 92.5869 run2.mat -1 -1 544 3323733 3334068 +6631726 6652415 20690 10026706.9063 10027744.6576 19.7862 -42.0709 92.5791 run2.mat -1 -1 544 3334223 3344567 +6652723 6673397 20675 10027760.0606 10028792.016 21.4333 -42.0716 92.6647 run2.mat -1 -1 544 3344721 3355059 +6673706 6691006 17301 10028807.4693 10029673.0191 23.0879 -42.0715 92.6878 run2.mat -1 -1 544 3355213 3363863 +6775153 6777656 2504 10033881.1692 10034006.1564 23.0842 -42.0703 95.3533 run2.mat -1 -1 545 3405939 3407191 +6777964 6798646 20683 10034021.4983 10035055.8371 24.7351 -42.0707 92.5425 run2.mat -1 -1 545 3407345 3417686 +6798964 6819637 20674 10035071.4991 10036103.7334 26.3845 -42.071 92.6054 run2.mat -1 -1 545 3417845 3428182 +6819945 6840615 20671 10036119.2607 10037152.7328 28.0344 -42.0711 92.5838 run2.mat -1 -1 545 3428336 3438671 +6840922 6861615 20694 10037167.9671 10038204.0561 29.6878 -42.0712 92.6262 run2.mat -1 -1 545 3438825 3449172 +6861923 6870906 8984 10038219.5834 10038669.0352 31.3379 -42.0715 92.8777 run2.mat -1 -1 545 3449326 3453818 +6954954 6965830 10877 10042870.6634 10043412.3661 31.3341 -42.0714 93.5629 run2.mat -1 -1 546 3495844 3501282 +6966146 6986837 20692 10043428.0439 10044464.1379 32.9856 -42.0713 92.5217 run2.mat -1 -1 546 3501440 3511785 +6987142 7007820 20679 10044479.3908 10045511.5922 34.6342 -42.0714 92.6582 run2.mat -1 -1 546 3511938 3522278 +7008127 7028797 20671 10045526.9839 10046563.4237 36.2856 -42.0714 92.6526 run2.mat -1 -1 546 3522431 3532767 +7029106 7049776 20671 10046578.7541 10047612.9354 37.9377 -42.0715 92.7401 run2.mat -1 -1 546 3532921 3543256 +7050084 7050766 683 10047628.3418 10047662.456 39.5748 -42.0728 92.0395 run2.mat -1 -1 546 3543410 3543751 +7134855 7153902 19048 10051863.9316 10052818.554 39.5835 -42.0711 92.9344 run2.mat -1 -1 547 3585798 3595322 +7154216 7174897 20682 10052834.257 10053867.5622 41.2305 -42.0715 92.5953 run2.mat -1 -1 547 3595479 3605820 +7175203 7195896 20694 10053882.8654 10054916.8587 42.8789 -42.0707 92.6566 run2.mat -1 -1 547 3605973 3616320 +7196202 7216858 20657 10054932.0403 10055965.465 44.5319 -42.0711 92.7016 run2.mat -1 -1 547 3616473 3626801 +7217168 7230645 13478 10055981.0932 10056654.4518 46.1804 -42.0712 92.8671 run2.mat -1 -1 547 3626956 3633695 +7314681 7320901 6221 10060855.6088 10061167.4491 46.1728 -42.0715 93.8201 run2.mat -1 -1 548 3675715 3678833 +7321208 7341916 20709 10061182.926 10062218.5967 47.8259 -42.0716 92.5304 run2.mat -1 -1 548 3678978 3689333 +7342223 7362897 20675 10062233.8309 10063268.9863 49.4734 -42.0719 92.6116 run2.mat -1 -1 548 3689486 3699824 +7363202 7383896 20695 10063284.2393 10064317.3487 51.1274 -42.0716 92.6346 run2.mat -1 -1 548 3699976 3710324 +7384203 7404856 20654 10064332.6215 10065367.2926 52.7738 -42.0712 92.6931 run2.mat -1 -1 548 3710478 3720804 +7405166 7410464 5299 10065382.6757 10065646 54.4188 -42.0712 93.0834 run2.mat -1 -1 548 3720959 3723608 +7494787 7509201 14415 10069863.9927 10070583.0966 54.422 -42.0706 93.0933 run2.mat -1 -1 549 3765772 3772979 +7509509 7530198 20690 10070598.4995 10071635.0175 56.0725 -42.0714 92.5908 run2.mat -1 -1 549 3773133 3783478 +7530507 7551177 20671 10071650.3509 10072683.3645 57.7238 -42.0711 92.5948 run2.mat -1 -1 549 3783632 3793968 +7551485 7572181 20697 10072698.5369 10073732.0835 59.3739 -42.0705 92.582 run2.mat -1 -1 549 3794122 3804470 +7572487 7590564 18078 10073747.2651 10074650.6753 61.0229 -42.071 92.7828 run2.mat -1 -1 549 3804623 3813662 +7674613 7676244 1632 10078854.9467 10078936.0008 61.02 -42.0697 96.3724 run2.mat -1 -1 550 3855689 3856504 +7676559 7697239 20681 10078951.6289 10079985.3179 62.6724 -42.0714 92.6619 run2.mat -1 -1 550 3856662 3867002 +7697546 7718220 20675 10080000.7979 10081034.687 64.3214 -42.0705 92.6182 run2.mat -1 -1 550 3867155 3877493 +7718526 7739221 20696 10081049.8686 10082085.095 65.9767 -42.0706 92.702 run2.mat -1 -1 550 3877646 3887994 +7739526 7760179 20654 10082100.5893 10083132.2198 67.62 -42.0711 92.6135 run2.mat -1 -1 550 3888146 3898474 +7760490 7770384 9895 10083147.8279 10083643.6503 69.2695 -42.071 92.8073 run2.mat -1 -1 550 3898629 3903576 +7856550 7866361 9812 10087949.1692 10088441.4719 69.271 -42.0715 93.4532 run2.mat -1 -1 551 3946661 3951567 +7866682 7887361 20680 10088457.3977 10089492.4461 70.9167 -42.0713 92.5431 run2.mat -1 -1 551 3951728 3962067 +7887684 7908361 20678 10089508.6668 10090541.3726 72.5705 -42.0716 92.634 run2.mat -1 -1 551 3962229 3972568 +7908668 7929354 20687 10090556.7255 10091590.7206 74.2173 -42.0717 92.553 run2.mat -1 -1 551 3972721 3983065 +7929662 7950319 20658 10091605.8713 10092639.476 75.8657 -42.0712 92.7343 run2.mat -1 -1 551 3983219 3993548 +7950626 7952324 1699 10092654.956 10092739.6769 77.5022 -42.0713 93.0869 run2.mat -1 -1 551 3993701 3994550 +8036413 8054427 18015 10096942.7178 10097844.484 77.5127 -42.0715 93.0513 run2.mat -1 -1 552 4036597 4045604 +8054748 8075420 20673 10097860.4098 10098894.0373 79.1647 -42.0715 92.564 run2.mat -1 -1 552 4045765 4056101 +8075727 8096420 20694 10098909.2715 10099945.8156 80.813 -42.0717 92.5623 run2.mat -1 -1 552 4056254 4066602 +8096731 8117404 20674 10099961.2453 10100992.9853 82.4605 -42.071 92.6282 run2.mat -1 -1 552 4066757 4077094 +8117719 8132183 14465 10101008.6165 10101732.5683 82.4604 -40.3881 92.8653 run2.mat -1 -1 552 4077251 4084484 +8216415 8221639 5225 10105944.3439 10106203.7734 82.4637 -40.389 93.9295 run2.mat -1 -1 553 4126602 4129214 +8221962 8242644 20683 10106219.7984 10107254.3827 80.8161 -40.3872 92.4783 run2.mat -1 -1 553 4129375 4139717 +8242952 8263641 20690 10107269.9101 10108304.9129 79.1667 -40.388 92.5847 run2.mat -1 -1 553 4139871 4150215 +8263947 8284617 20671 10108320.3425 10109355.4029 77.5144 -40.3869 92.6107 run2.mat -1 -1 553 4150368 4160704 +8284927 8305601 20675 10109371.0311 10110405.8363 75.8659 -40.387 92.6637 run2.mat -1 -1 553 4160859 4171197 +8305907 8312182 6276 10110421.1393 10110732.9536 74.2239 -40.3885 92.8923 run2.mat -1 -1 553 4171350 4174487 +8396267 8409723 13457 10114939.0486 10115611.4617 74.2186 -40.3884 93.1053 run2.mat -1 -1 554 4216531 4223260 +8410033 8430721 20689 10115626.8448 10116659.8955 72.5709 -40.3873 92.6094 run2.mat -1 -1 554 4223415 4233759 +8431026 8451720 20695 10116675.2716 10117707.3451 70.9174 -40.387 92.555 run2.mat -1 -1 554 4233912 4244259 +8452031 8472699 20669 10117722.7748 10118760.1834 69.2739 -40.3878 92.5925 run2.mat -1 -1 554 4244415 4254749 +8473007 8492063 19057 10118775.4672 10119725.819 67.6196 -40.3877 92.7885 run2.mat -1 -1 554 4254903 4264431 +8576313 8577041 729 10123938.4112 10123975.1121 67.6039 -40.3879 101.6517 run2.mat -1 -1 555 4306559 4306923 +8577347 8598024 20678 10123990.5386 10125023.1912 65.9755 -40.3877 92.6107 run2.mat -1 -1 555 4307076 4317415 +8598330 8619005 20676 10125038.4941 10126073.5289 64.3171 -40.3877 92.5846 run2.mat -1 -1 555 4317568 4327906 +8619315 8640003 20689 10126089.1571 10127125.6588 62.6717 -40.3882 92.6093 run2.mat -1 -1 555 4328061 4338405 +8640309 8660985 20677 10127140.9617 10128173.7366 61.0199 -40.3874 92.6452 run2.mat -1 -1 555 4338558 4348897 +8661292 8672142 10851 10128189.2136 10128729.9365 59.3757 -40.388 92.8126 run2.mat -1 -1 555 4349050 4354475 +8756186 8765041 8856 10132934.6125 10133376.5919 59.3716 -40.3891 93.4332 run2.mat -1 -1 556 4396499 4400927 +8765347 8786044 20698 10133392.0184 10134427.2566 57.7254 -40.3868 92.6198 run2.mat -1 -1 556 4401080 4411428 +8786352 8807045 20694 10134442.787 10135476.836 56.0708 -40.3881 92.6696 run2.mat -1 -1 556 4411582 4421930 +8807351 8828024 20674 10135492.3986 10136526.2636 54.4209 -40.3875 92.7534 run2.mat -1 -1 556 4422083 4432419 +8828333 8849003 20671 10136541.7195 10137573.4922 52.7746 -40.3878 92.7367 run2.mat -1 -1 556 4432574 4442910 +8849310 8851982 2673 10137588.8454 10137723.3941 51.1283 -40.3884 93.3356 run2.mat -1 -1 556 4443063 4444399 +8936033 8953082 17050 10141925.5572 10142779.8784 51.1243 -40.3867 92.8747 run2.mat -1 -1 557 4486427 4494951 +8953404 8974064 20661 10142795.9815 10143827.8138 49.4773 -40.3878 92.5725 run2.mat -1 -1 557 4495112 4505443 +8974371 8995063 20693 10143843.048 10144877.4906 47.8254 -40.3878 92.6532 run2.mat -1 -1 557 4505596 4515942 +8995369 9016049 20681 10144892.7965 10145925.1835 46.1815 -40.3878 92.6368 run2.mat -1 -1 557 4516095 4526436 +9016364 9031822 15459 10145940.9971 10146716.8642 44.5306 -40.3883 92.8588 run2.mat -1 -1 557 4526594 4534323 +9117808 9122283 4476 10151014.0466 10151238.8769 44.5307 -40.3876 94.2743 run2.mat -1 -1 558 4577318 4579556 +9122588 9143272 20685 10151254.0754 10152287.9217 42.8802 -40.3874 92.5459 run2.mat -1 -1 558 4579708 4590051 +9143584 9164261 20678 10152303.5249 10153338.3183 41.2302 -40.3885 92.6148 run2.mat -1 -1 558 4590207 4600545 +9164570 9185264 20695 10153353.6487 10154388.085 39.5819 -40.3876 92.5502 run2.mat -1 -1 558 4600700 4611047 +9185573 9206244 20672 10154403.5415 10155435.3612 37.935 -40.3878 92.6516 run2.mat -1 -1 558 4611202 4621538 +9206550 9213682 7133 10155450.7877 10155809.3522 36.2859 -40.3885 92.6213 run2.mat -1 -1 558 4621691 4625257 +9297753 9310363 12611 10160011.6095 10160643.3263 36.2823 -40.3879 93.0687 run2.mat -1 -1 559 4667294 4673599 +9310684 9331363 20680 10160659.509 10161694.0496 34.6346 -40.388 92.5951 run2.mat -1 -1 559 4673760 4684100 +9331670 9352351 20682 10161709.2885 10162743.0034 32.9825 -40.388 92.6003 run2.mat -1 -1 559 4684254 4694595 +9352661 9373324 20664 10162758.6316 10163791.6329 31.3352 -40.3884 92.6736 run2.mat -1 -1 559 4694750 4705081 +9373636 9393562 19927 10163807.2389 10164803.1636 29.685 -40.3876 92.7191 run2.mat -1 -1 559 4705237 4715201 +9477831 9498423 20593 10169014.3609 10170045.2612 28.0295 -40.388 92.7776 run2.mat -1 -1 560 4757337 4767634 +9498731 9519420 20690 10170060.6642 10171097.3709 26.3832 -40.3878 92.5881 run2.mat -1 -1 560 4767788 4778133 +9519731 9540403 20673 10171112.9242 10172146.1047 24.7344 -40.3876 92.6137 run2.mat -1 -1 560 4778288 4788625 +9540712 9561398 20687 10172161.6824 10173194.8361 23.087 -40.3886 92.6727 run2.mat -1 -1 560 4788779 4799123 +9561707 9573420 11714 10173210.2891 10173796.1056 21.4316 -40.3878 92.7958 run2.mat -1 -1 560 4799277 4805134 +9657513 9665481 7969 10178002.5917 10178400.2187 21.4339 -40.3896 93.5125 run2.mat -1 -1 561 4847182 4851166 +9665811 9686504 20694 10178416.591 10179449.3478 19.788 -40.3862 92.4899 run2.mat -1 -1 561 4851331 4861679 +9686813 9707485 20673 10179464.6812 10180499.9016 18.1418 -40.3873 92.5651 run2.mat -1 -1 561 4861833 4872169 +9707792 9728486 20695 10180515.3785 10181548.3578 16.4885 -40.3874 92.6143 run2.mat -1 -1 561 4872323 4882670 +9728796 9749464 20669 10181563.8638 10182599.0736 14.8432 -40.3877 92.6807 run2.mat -1 -1 561 4882825 4893160 +9749771 9753301 3531 10182614.3048 10182789.462 13.2012 -40.3884 92.99 run2.mat -1 -1 561 4893313 4895078 +9837352 9853579 16228 10186992.1243 10187801.76 13.1885 -40.3878 93.01 run2.mat -1 -1 562 4937106 4945219 +9853886 9874563 20678 10187817.0661 10188851.1162 11.5447 -40.3875 92.5875 run2.mat -1 -1 562 4945373 4955712 +9874870 9895562 20693 10188866.4721 10189902.0631 9.8959 -40.387 92.6811 run2.mat -1 -1 562 4955865 4966212 +9895870 9916541 20672 10189917.5904 10190952.4931 8.2479 -40.3876 92.619 run2.mat -1 -1 562 4966366 4976702 +9916850 9933140 16291 10190967.8265 10191783.7284 6.5956 -40.3868 92.7912 run2.mat -1 -1 562 4976857 4985002 +10017193 10020681 3489 10195984.5098 10196158.965 6.5923 -40.3877 94.636 run2.mat -1 -1 563 5027030 5028774 +10020986 10041682 20697 10196174.2179 10197210.167 4.9465 -40.3881 92.577 run2.mat -1 -1 563 5028927 5039275 +10041988 10062664 20677 10197225.5966 10198257.4113 3.2961 -40.3869 92.687 run2.mat -1 -1 563 5039428 5049766 +10062973 10083664 20692 10198272.7447 10199308.5091 1.6493 -40.3879 92.6087 run2.mat -1 -1 563 5049921 5060267 +10083972 10104646 20675 10199324.0395 10200358.2494 0.0018695 -40.3875 92.6451 run2.mat -1 -1 563 5060421 5070758 +10104954 10112940 7987 10200373.5546 10200772.4058 -1.6504 -40.3878 92.8242 run2.mat -1 -1 563 5070912 5074906 +10196964 10208761 11798 10204973.7067 10205564.5401 -1.6495 -40.3876 93.2588 run2.mat -1 -1 564 5116919 5122818 +10209083 10229759 20677 10205580.6435 10206612.6964 -3.3011 -40.3877 92.5315 run2.mat -1 -1 564 5122979 5133317 +10230067 10250742 20676 10206628.1517 10207663.8579 -4.9461 -40.3876 92.5383 run2.mat -1 -1 564 5133472 5143810 +10251052 10271723 20672 10207679.241 10208710.7452 -6.5977 -40.389 92.6306 run2.mat -1 -1 564 5143965 5154301 +10272035 10292684 20650 10208726.6164 10209758.7648 -8.2518 -40.3878 92.7572 run2.mat -1 -1 564 5154457 5164781 +10376900 10396924 20025 10213969.2432 10214972.2152 -9.8979 -40.3885 92.9975 run2.mat -1 -1 565 5206892 5216904 +10397249 10417926 20678 10214988.4684 10216021.7021 -11.5428 -40.3868 92.607 run2.mat -1 -1 565 5217067 5227405 +10418233 10438906 20674 10216036.9333 10217070.5709 -13.1916 -40.3885 92.5871 run2.mat -1 -1 565 5227559 5237896 +10439213 10459889 20677 10217085.8021 10218120.58 -14.8442 -40.3881 92.6558 run2.mat -1 -1 565 5238049 5248388 +10460212 10472660 12449 10218136.6082 10218759.735 -16.4907 -40.3871 92.847 run2.mat -1 -1 565 5248549 5254774 +10556747 10564086 7340 10222964.0873 10223330.7164 -16.4887 -40.3876 93.6458 run2.mat -1 -1 566 5296819 5300488 +10564396 10585106 20711 10223346.3477 10224382.0928 -18.1417 -40.3876 92.5851 run2.mat -1 -1 566 5300643 5310999 +10585411 10606087 20677 10224397.6046 10225430.0992 -19.7867 -40.3878 92.5407 run2.mat -1 -1 566 5311152 5321490 +10606394 10627107 20714 10225445.4522 10226480.6423 -21.439 -40.3871 92.5802 run2.mat -1 -1 566 5321644 5332001 +10627411 10648047 20637 10226495.9679 10227527.6172 -23.0884 -40.387 92.6955 run2.mat -1 -1 566 5332153 5342471 +10648357 10652520 4164 10227543.1204 10227751.3128 -24.7404 -40.3871 93.3769 run2.mat -1 -1 566 5342626 5344708 +10736823 10752504 15682 10231965.6041 10232749.9073 -24.7367 -40.3865 93.3031 run2.mat -1 -1 567 5386861 5394702 +10752824 10773505 20682 10232765.9106 10233802.5926 -26.3865 -40.3884 92.625 run2.mat -1 -1 567 5394862 5405203 +10773814 10794505 20692 10233818.105 10234851.2927 -28.0344 -40.3882 92.6823 run2.mat -1 -1 567 5405357 5415703 +10794813 10815485 20673 10234866.4622 10235900.1783 -29.6873 -40.3885 92.5402 run2.mat -1 -1 567 5415857 5426194 +10815793 10832579 16787 10235915.7056 10236753.8786 -31.3344 -40.3871 92.758 run2.mat -1 -1 567 5426348 5434741 +10916560 10919504 2945 10240953.1361 10241101.1682 -31.3362 -40.3869 94.759 run2.mat -1 -1 568 5476733 5478205 +10919826 10940505 20680 10241117.4013 10242151.9345 -32.9871 -40.3887 92.5728 run2.mat -1 -1 568 5478366 5488706 +10940812 10961494 20683 10242167.4114 10243202.0454 -34.636 -40.3876 92.5422 run2.mat -1 -1 568 5488860 5499202 +10961812 10982487 20676 10243218.0768 10244252.005 -36.2873 -40.3881 92.6374 run2.mat -1 -1 568 5499361 5509699 +10982791 11003466 20676 10244267.0873 10245298.0325 -37.9397 -40.3876 92.5601 run2.mat -1 -1 568 5509851 5520188 +11003771 11012379 8609 10245313.4086 10245743.3339 -39.5852 -40.3877 92.8272 run2.mat -1 -1 568 5520341 5524645 +11096474 11107764 11291 10249950.0463 10250512.9435 -39.5813 -40.3871 93.5107 run2.mat -1 -1 569 5566694 5572339 +11108069 11128766 20698 10250528.3227 10251564.0677 -41.2326 -40.388 92.5077 run2.mat -1 -1 569 5572492 5582841 +11129075 11149767 20693 10251579.5209 10252615.5195 -42.8804 -40.3865 92.6053 run2.mat -1 -1 569 5582995 5593342 +11150073 11170745 20673 10252630.946 10253663.6269 -44.5334 -40.3881 92.7127 run2.mat -1 -1 569 5593495 5603832 +11171054 11191708 20655 10253679.0834 10254710.1967 -46.1825 -40.3874 92.6414 run2.mat -1 -1 569 5603986 5614313 +11192014 11192298 285 10254725.3782 10254739.5522 -47.8259 -40.384 91.056 run2.mat -1 -1 569 5614466 5614608 +11276399 11295843 19445 10258945.6951 10259919.613 -47.8281 -40.3868 92.8844 run2.mat -1 -1 570 5656661 5666383 +11296169 11316846 20678 10259936.0478 10260967.4976 -49.4749 -40.388 92.5501 run2.mat -1 -1 570 5666546 5676885 +11317155 11337844 20690 10260982.975 10262019.2755 -51.1261 -40.3883 92.6256 run2.mat -1 -1 570 5677039 5687385 +11338153 11358808 20656 10262034.609 10263066.8119 -52.7745 -40.3875 92.6579 run2.mat -1 -1 570 5687539 5697867 +11359123 11372178 13056 10263082.6921 10263736.8028 -54.4217 -40.3875 92.7847 run2.mat -1 -1 570 5698024 5704552 +11456256 11462865 6610 10267940.7923 10268269.6671 -54.4228 -40.3879 93.8314 run2.mat -1 -1 571 5746593 5749898 +11463186 11483866 20681 10268285.8498 10269320.871 -56.0713 -40.3875 92.5763 run2.mat -1 -1 571 5750058 5760399 +11484175 11504867 20693 10269336.2014 10270370.0079 -57.7274 -40.3879 92.6577 run2.mat -1 -1 571 5760553 5770900 +11505173 11525845 20673 10270385.3143 10271417.1755 -59.3734 -40.3868 92.6094 run2.mat -1 -1 571 5771053 5781389 +11526152 11546846 20695 10271432.5314 10272469.4873 -61.0245 -40.3879 92.6625 run2.mat -1 -1 571 5781543 5791890 +11547155 11552018 4864 10272485.0653 10272730.081 -62.6785 -40.3879 93.0242 run2.mat -1 -1 571 5792045 5794476 +11635977 11650946 14970 10276924.1831 10277673.4626 -62.6752 -40.3877 93.2951 run2.mat -1 -1 572 5836457 5843942 +11651252 11671927 20676 10277688.6442 10278723.8875 -64.3241 -40.388 92.5678 run2.mat -1 -1 572 5844095 5854434 +11672237 11692929 20693 10278739.5156 10279772.604 -65.9747 -40.3881 92.6258 run2.mat -1 -1 572 5854589 5864935 +11693235 11713908 20674 10279787.9069 10280821.2735 -67.6253 -40.3886 92.6178 run2.mat -1 -1 572 5865088 5875425 +11714214 11731897 17684 10280836.4581 10281722.8909 -69.2723 -40.3871 92.8563 run2.mat -1 -1 572 5875578 5884420 +11816160 11818167 2008 10285933.6747 10286033.2521 -69.279 -40.3844 96.1692 run2.mat -1 -1 573 5926553 5927556 +11818476 11839168 20693 10286048.833 10287085.3896 -70.9182 -40.3876 92.4894 run2.mat -1 -1 573 5927711 5938058 +11839475 11860167 20693 10287100.6817 10288135.5326 -72.5707 -40.3876 92.5853 run2.mat -1 -1 573 5938211 5948557 +11860476 11881146 20671 10288151.1103 10289184.8514 -74.2172 -40.3869 92.6431 run2.mat -1 -1 573 5948712 5959048 +11881456 11902147 20692 10289200.2314 10290234.2885 -75.8687 -40.3871 92.6169 run2.mat -1 -1 573 5959203 5969548 +11902456 11911936 9481 10290249.7415 10290725.2039 -77.5137 -40.3871 92.6785 run2.mat -1 -1 573 5969703 5974443 +11996007 11999852 3846 10294927.6138 10295118.3759 -77.5204 -40.3871 94.147 run2.mat -1 -1 574 6016480 6018398 +289601 310040 20440 913023.8534 914048.8516 82.4673 6.7298 92.6666 run20.mat -1 -1 575 158638 168857 +310346 331038 20693 914064.0331 915096.6011 80.8147 6.7289 92.6001 run20.mat -1 -1 575 169010 179357 +331346 352043 20698 915111.8819 916146.8649 79.1649 6.7298 92.51 run20.mat -1 -1 575 179511 189860 +352356 373037 20682 916162.6443 917196.3609 77.5176 6.7294 92.6179 run20.mat -1 -1 575 190016 200357 +373348 385403 12056 917211.7936 917815.9281 75.8619 6.7293 92.6309 run20.mat -1 -1 575 200513 206540 +469723 477498 7776 922032.4041 922419.3253 75.8635 6.7292 93.5529 run20.mat -1 -1 576 248702 252590 +477804 498504 20701 922434.6282 923469.035 74.2147 6.7298 92.5458 run20.mat -1 -1 576 252743 263093 +498811 519503 20693 923484.1365 924519.8693 72.5659 6.7292 92.6163 run20.mat -1 -1 576 263247 273593 +519812 540502 20691 924535.4471 925569.4356 70.9141 6.7289 92.5793 run20.mat -1 -1 576 273748 284094 +540808 561480 20673 925584.8621 926618.9919 69.2656 6.7296 92.6776 run20.mat -1 -1 576 284247 294583 +561787 565503 3717 926634.4688 926821.6017 67.615 6.7292 92.6296 run20.mat -1 -1 576 294736 296595 +649649 665778 16130 931028.7642 931835.6777 67.6185 6.7304 93.2101 run20.mat -1 -1 577 338670 346734 +666107 686779 20673 931852.0004 932884.1104 65.9712 6.7284 92.6213 run20.mat -1 -1 577 346899 357235 +687087 707761 20675 932899.5134 933932.2061 64.3212 6.7294 92.6338 run20.mat -1 -1 577 357389 367727 +708066 728784 20719 933947.5822 934983.8063 62.6713 6.7291 92.5936 run20.mat -1 -1 577 367879 378238 +729089 745543 16455 934998.9383 935822.8272 61.0244 6.7285 92.7556 run20.mat -1 -1 577 378391 386618 +829754 833119 3366 940032.3478 940200.0185 61.0328 6.7295 95.1537 run20.mat -1 -1 578 428726 430409 +833447 854125 20679 940216.422 941252.5291 59.3741 6.7291 92.6058 run20.mat -1 -1 578 430573 440912 +854434 875120 20687 941267.9821 942301.0814 57.7296 6.7301 92.5648 run20.mat -1 -1 578 441066 451410 +875427 896119 20693 942316.3156 943351.1111 56.074 6.7295 92.5915 run20.mat -1 -1 578 451563 461910 +896427 917102 20676 943366.3919 944402.2041 54.4282 6.7304 92.5993 run20.mat -1 -1 578 462064 472402 +917408 925643 8236 944417.507 944827.8426 52.7773 6.729 92.7375 run20.mat -1 -1 578 472555 476672 +1009772 1021319 11548 949035.0355 949613.192 52.7763 6.7284 93.2443 run20.mat -1 -1 579 518739 524513 +1021649 1042321 20673 949629.8318 950663.4113 51.1299 6.7298 92.5545 run20.mat -1 -1 579 524678 535014 +1042629 1063323 20695 950678.6951 951711.5477 49.4741 6.729 92.6121 run20.mat -1 -1 579 535168 545515 +1063630 1084321 20692 951726.7876 952761.7922 47.8262 6.7297 92.6307 run20.mat -1 -1 579 545669 556015 +1084628 1105280 20653 952777.0873 953809.4569 46.1797 6.7286 92.7205 run20.mat -1 -1 579 556168 566495 +1105588 1105602 15 953824.8633 953825.5636 44.5117 6.7367 100.0464 run20.mat -1 -1 579 566649 566656 +1189937 1209762 19826 958042.3908 959033.3651 44.5272 6.7292 93.0534 run20.mat -1 -1 580 608825 618737 +1210072 1230766 20695 959048.9307 960083.6269 42.8766 6.7288 92.6231 run20.mat -1 -1 580 618892 629240 +1231072 1251743 20672 960099.0534 961133.1329 41.2267 6.7295 92.5597 run20.mat -1 -1 580 629393 639730 +1252050 1272763 20714 961148.6098 962182.7978 39.5783 6.73 92.4986 run20.mat -1 -1 580 639883 650240 +1273070 1285681 12612 962198.1843 962831.7754 37.932 6.7298 92.7038 run20.mat -1 -1 580 650393 656699 +1369997 1377200 7204 967046.7176 967405.4148 37.9329 6.7284 93.9665 run20.mat -1 -1 581 698859 702461 +1377531 1398216 20686 967421.8367 968457.9064 36.2812 6.7292 92.5429 run20.mat -1 -1 581 702626 712969 +1398528 1419211 20684 968473.6386 969504.5605 34.6306 6.7279 92.5863 run20.mat -1 -1 581 713125 723467 +1419525 1440202 20678 969520.5089 970555.3513 32.9833 6.7303 92.5941 run20.mat -1 -1 581 723624 733963 +1440513 1461191 20679 970570.7809 971605.6632 31.3343 6.7289 92.5867 run20.mat -1 -1 581 734119 744458 +1461501 1465761 4261 971621.2914 971835.171 29.69 6.7295 92.8758 run20.mat -1 -1 581 744613 746743 +1550008 1565479 15472 976046.3572 976819.0994 29.6878 6.7297 92.9389 run20.mat -1 -1 582 788868 796604 +1565802 1586482 20681 976835.3829 977870.8942 28.0359 6.7305 92.5747 run20.mat -1 -1 582 796766 807106 +1586789 1607477 20689 977886.2501 978921.1641 26.3894 6.7296 92.587 run20.mat -1 -1 582 807260 817604 +1607788 1628466 20679 978936.8427 979969.8895 24.7375 6.7287 92.5828 run20.mat -1 -1 582 817760 828099 +1628781 1645821 17041 979985.5176 980837.004 23.0901 6.7304 92.7329 run20.mat -1 -1 582 828257 836777 +1730117 1732760 2644 985049.6402 985182.9096 23.0956 6.7297 94.2786 run20.mat -1 -1 583 878927 880248 +1733091 1753762 20672 985199.5998 986233.0927 21.4368 6.7299 92.5449 run20.mat -1 -1 583 880414 890750 +1754070 1774762 20693 986248.4959 987285.3427 19.7894 6.7297 92.633 run20.mat -1 -1 583 890904 901250 +1775071 1795746 20676 987300.6731 988333.2712 18.1416 6.7289 92.6271 run20.mat -1 -1 583 901405 911743 +1796052 1816735 20684 988348.6977 989382.6364 16.4911 6.7306 92.6782 run20.mat -1 -1 583 911896 922238 +1817046 1825862 8817 989398.1924 989840.4108 14.8397 6.7287 92.6881 run20.mat -1 -1 583 922393 926801 +1910297 1921202 10906 994060.9965 994606.3614 14.8413 6.7292 93.1889 run20.mat -1 -1 584 969021 974473 +1921529 1942204 20676 994622.7182 995654.7665 13.1883 6.7292 92.595 run20.mat -1 -1 584 974637 984975 +1942510 1963186 20677 995670.0694 996706.1265 11.5411 6.7299 92.5904 run20.mat -1 -1 584 985128 995467 +1963494 1984204 20711 996721.5297 997755.8704 9.8912 6.729 92.5644 run20.mat -1 -1 584 995621 1005976 +1984511 2005165 20655 997771.1016 998806.4858 8.2443 6.73 92.7101 run20.mat -1 -1 584 1006129 1016457 +2005470 2006060 591 998821.8853 998851.157 6.5905 6.7392 92.2233 run20.mat -1 -1 584 1016609 1016904 +2090342 2109483 19142 1003064.2246 1004020.5042 6.5919 6.7297 92.8412 run20.mat -1 -1 585 1059047 1068618 +2109807 2130483 20677 1004036.582 1005071.1876 4.9452 6.7291 92.554 run20.mat -1 -1 585 1068780 1079118 +2130789 2151486 20698 1005086.494 1006121.6079 3.2976 6.728 92.5881 run20.mat -1 -1 585 1079271 1089621 +2151791 2172464 20674 1006136.8638 1007170.3748 1.6483 6.7288 92.6666 run20.mat -1 -1 585 1089773 1100110 +2172773 2186119 13347 1007185.7082 1007851.8494 0.0025805 6.7283 92.8041 run20.mat -1 -1 585 1100264 1106938 +2270201 2276582 6382 1012057.2369 1012375.0046 -0.0036394 6.7303 93.7442 run20.mat -1 -1 586 1148981 1152171 +2276902 2297588 20687 1012391.0258 1013427.55 -1.6478 6.7296 92.5083 run20.mat -1 -1 586 1152331 1162675 +2297906 2318585 20680 1013443.45 1014475.718 -3.2971 6.7292 92.5158 run20.mat -1 -1 586 1162834 1173174 +2318893 2339585 20693 1014491.121 1015527.1401 -4.9438 6.73 92.565 run20.mat -1 -1 586 1173328 1183674 +2339891 2360565 20675 1015542.5666 1016574.6477 -6.5946 6.7294 92.6726 run20.mat -1 -1 586 1183827 1194165 +2360871 2365980 5110 1016590.0742 1016844.3715 -8.2381 6.7286 92.6339 run20.mat -1 -1 586 1194318 1196872 +2450159 2464901 14743 1021056.9279 1021791.2513 -8.2443 6.7303 93.2495 run20.mat -1 -1 587 1238964 1246335 +2465225 2485887 20663 1021807.3291 1022841.2113 -9.8968 6.7297 92.5721 run20.mat -1 -1 587 1246497 1256829 +2486195 2506885 20691 1022856.7387 1023891.776 -11.5437 6.7298 92.5509 run20.mat -1 -1 587 1256983 1267328 +2507192 2527884 20693 1023907.2529 1024940.3457 -13.1941 6.7293 92.5898 run20.mat -1 -1 587 1267481 1277827 +2528191 2546060 17870 1024955.8257 1025850.7773 -14.844 6.7305 92.7417 run20.mat -1 -1 587 1277981 1286916 +2630366 2632304 1939 1030065.5369 1030163.2578 -14.8489 6.7305 96.684 run20.mat -1 -1 588 1329071 1330040 +2632623 2653307 20685 1030179.3429 1031211.8146 -16.4948 6.7302 92.5131 run20.mat -1 -1 588 1330200 1340542 +2653613 2674308 20696 1031226.9992 1032260.2617 -18.143 6.7295 92.5952 run20.mat -1 -1 588 1340695 1351043 +2674613 2695307 20695 1032275.5149 1033312.9284 -19.7912 6.7294 92.5896 run20.mat -1 -1 588 1351196 1361543 +2695616 2716308 20693 1033328.4409 1034362.4439 -21.4381 6.7291 92.7142 run20.mat -1 -1 588 1361698 1372044 +2716614 2726140 9527 1034377.6255 1034854.2082 -23.0914 6.7298 92.7788 run20.mat -1 -1 588 1372197 1376960 +2810354 2820545 10192 1039065.3667 1039575.0375 -23.0892 6.7283 93.2482 run20.mat -1 -1 589 1419069 1424164 +2820852 2841549 20698 1039590.3939 1040624.2534 -24.7367 6.7287 92.5503 run20.mat -1 -1 589 1424318 1434667 +2841868 2862548 20681 1040639.9483 1041676.3932 -26.3871 6.7293 92.5131 run20.mat -1 -1 589 1434827 1445167 +2862854 2883549 20696 1041691.8197 1042723.0994 -28.0331 6.7295 92.5734 run20.mat -1 -1 589 1445320 1455668 +2883856 2904529 20674 1042738.5529 1043772.5679 -29.6886 6.7291 92.6392 run20.mat -1 -1 589 1455822 1466159 +2904836 2906138 1303 1043788.0448 1043853.683 -31.3354 6.7294 93.3935 run20.mat -1 -1 589 1466312 1466963 +2990420 3008847 18428 1048068.5698 1048988.919 -31.3357 6.7305 92.9159 run20.mat -1 -1 590 1509106 1518320 +3009168 3029836 20669 1049004.8448 1050040.1415 -32.9841 6.7292 92.5502 run20.mat -1 -1 590 1518481 1528815 +3030152 3050848 20697 1050055.8192 1051089.2601 -34.6303 6.7285 92.5299 run20.mat -1 -1 590 1528973 1539321 +3051156 3071830 20675 1051104.663 1052137.3408 -36.2876 6.7287 92.6462 run20.mat -1 -1 590 1539475 1549813 +3072137 3086198 14062 1052152.8177 1052856.7639 -37.9329 6.7293 92.7621 run20.mat -1 -1 590 1549966 1556997 +3170416 3176111 5696 1057066.2609 1057351.539 -37.9436 6.7296 93.9332 run20.mat -1 -1 591 1599108 1601956 +3176416 3197111 20696 1057366.9151 1058402.48 -39.5864 6.7287 92.5385 run20.mat -1 -1 591 1602108 1612456 +3197419 3218112 20694 1058417.7638 1059452.9708 -41.2355 6.7295 92.5262 run20.mat -1 -1 591 1612610 1622957 +3218418 3239092 20675 1059468.3973 1060502.2262 -42.8823 6.7288 92.5792 run20.mat -1 -1 591 1623110 1633447 +3239399 3260074 20676 1060517.5153 1061553.3342 -44.532 6.7297 92.5789 run20.mat -1 -1 591 1633601 1643939 +3260384 3266239 5856 1061568.6022 1061858.1125 -46.1806 6.7291 92.9172 run20.mat -1 -1 591 1644094 1647021 +3350342 3364311 13970 1066066.8425 1066762.1512 -46.1808 6.7296 93.1388 run20.mat -1 -1 592 1689075 1696060 +3364617 3385310 20694 1066777.3328 1067812.1616 -47.8297 6.7299 92.6188 run20.mat -1 -1 592 1696213 1706560 +3385618 3406315 20698 1067827.4454 1068864.4556 -49.4768 6.7295 92.5712 run20.mat -1 -1 592 1706714 1717063 +3406620 3427313 20694 1068879.7114 1069914.1127 -51.1292 6.7304 92.5337 run20.mat -1 -1 592 1717215 1727562 +3427619 3446099 18481 1069929.2973 1070852.2485 -52.7758 6.73 92.6637 run20.mat -1 -1 592 1727715 1736956 +3530269 3531610 1342 1075062.792 1075129.6324 -52.7782 6.7243 97.1475 run20.mat -1 -1 593 1779042 1779713 +3531916 3552610 20695 1075144.817 1076178.1629 -54.4242 6.7293 92.6199 run20.mat -1 -1 593 1779866 1790214 +3552917 3573589 20673 1076193.5159 1077226.2127 -56.0738 6.7289 92.6061 run20.mat -1 -1 593 1790367 1800703 +3573897 3594592 20696 1077241.7401 1078277.0609 -57.7249 6.7297 92.6458 run20.mat -1 -1 593 1800857 1811206 +3594900 3615570 20671 1078292.5914 1079326.6362 -59.3742 6.729 92.6359 run20.mat -1 -1 593 1811360 1821695 +3615877 3626158 10282 1079342.1131 1079857.3801 -61.0245 6.7288 92.6809 run20.mat -1 -1 593 1821848 1826989 +3710102 3719630 9529 1084052.4703 1084530.3285 -61.0226 6.7297 93.4056 run20.mat -1 -1 594 1868963 1873727 +3719945 3740655 20711 1084546.0816 1085578.532 -62.672 6.7299 92.5069 run20.mat -1 -1 594 1873885 1884240 +3740964 3761632 20669 1085594.0496 1086629.6862 -64.322 6.7292 92.6021 run20.mat -1 -1 594 1884394 1894729 +3761938 3782654 20717 1086645.1158 1087679.4063 -65.9727 6.7289 92.5672 run20.mat -1 -1 594 1894882 1905240 +3782959 3803612 20654 1087694.6622 1088728.0837 -67.6239 6.73 92.7365 run20.mat -1 -1 594 1905393 1915720 +3803919 3805997 2079 1088743.5606 1088848.3196 -69.2691 6.7253 92.8683 run20.mat -1 -1 594 1915873 1916912 +3890260 3907931 17672 1093061.2434 1093947.8916 -69.2737 6.7302 92.9949 run20.mat -1 -1 595 1959046 1967882 +3908237 3928912 20676 1093963.0732 1094993.7903 -70.9206 6.7297 92.6164 run20.mat -1 -1 595 1968035 1978373 +3929216 3949913 20698 1095009.116 1096042.4268 -72.5738 6.7299 92.5717 run20.mat -1 -1 595 1978525 1988873 +3950220 3970914 20695 1096057.9068 1097093.9792 -74.2258 6.7297 92.5681 run20.mat -1 -1 595 1989027 1999375 +3971227 3986057 14831 1097109.6324 1097850.7069 -75.8655 6.729 92.7522 run20.mat -1 -1 595 1999531 2006946 +4070329 4075291 4963 1102065.1209 1102312.4122 -75.8636 6.7291 94.2268 run20.mat -1 -1 596 2049084 2051565 +4075622 4096315 20694 1102328.8341 1103362.8116 -77.5182 6.7291 92.4391 run20.mat -1 -1 596 2051731 2062078 +4096621 4117311 20691 1103378.118 1104414.5362 -79.1697 6.7303 92.6006 run20.mat -1 -1 596 2062231 2072576 +4117619 4138292 20674 1104430.0635 1105460.2868 -80.8189 6.7277 92.5801 run20.mat -1 -1 596 2072730 2083067 +4138601 4159292 20692 1105475.7906 1106511.8854 -82.4624 6.7288 92.6827 run20.mat -1 -1 596 2083221 2093567 +4159599 4166096 6498 1106527.3655 1106852.7335 -82.4661 8.4127 92.8599 run20.mat -1 -1 596 2093721 2096970 +4250239 4263457 13219 1111060.1285 1111720.995 -82.4635 8.4132 92.9428 run20.mat -1 -1 597 2139043 2145652 +4263773 4284472 20700 1111736.9256 1112773.052 -80.8137 8.4129 92.5916 run20.mat -1 -1 597 2145810 2156158 +4284778 4305450 20673 1112788.2366 1113819.5806 -79.1669 8.4136 92.618 run20.mat -1 -1 597 2156313 2166650 +4305760 4326455 20696 1113835.3258 1114870.5124 -77.5133 8.4128 92.5795 run20.mat -1 -1 597 2166805 2177153 +4326761 4345997 19237 1114886.0545 1115846.7903 -75.8686 8.4125 92.6751 run20.mat -1 -1 597 2177306 2186924 +4430297 4430903 607 1120061.3545 1120091.6603 -75.8515 8.4135 101.6212 run20.mat -1 -1 598 2229076 2229379 +4431220 4451873 20654 1120107.5134 1121140.4172 -74.2183 8.413 92.6367 run20.mat -1 -1 598 2229538 2239865 +4452181 4472872 20692 1121155.8204 1122191.6255 -72.5697 8.4123 92.5392 run20.mat -1 -1 598 2240019 2250364 +4473180 4493873 20694 1122207.0285 1123242.5463 -70.9187 8.4118 92.5271 run20.mat -1 -1 598 2250518 2260866 +4494179 4514855 20677 1123257.7279 1124293.0048 -69.2696 8.4122 92.6042 run20.mat -1 -1 598 2261019 2271357 +4515164 4526076 10913 1124308.5826 1124850.5045 -67.6234 8.4134 92.7481 run20.mat -1 -1 598 2271511 2276968 +4610302 4619222 8921 1129063.7293 1129510.0346 -67.6223 8.4135 93.5641 run20.mat -1 -1 599 2319083 2323543 +4619546 4640214 20669 1129526.2377 1130559.496 -65.9762 8.4135 92.508 run20.mat -1 -1 599 2323705 2334039 +4640523 4661221 20699 1130575.0706 1131608.6207 -64.3251 8.4133 92.6826 run20.mat -1 -1 599 2334194 2344543 +4661533 4682214 20682 1131624.3497 1132660.6708 -62.6767 8.4129 92.6105 run20.mat -1 -1 599 2344699 2355040 +4682521 4703194 20674 1132676.0879 1133708.7207 -61.0274 8.4135 92.6842 run20.mat -1 -1 599 2355194 2365530 +4703501 4706076 2576 1133724.0737 1133852.8484 -59.3738 8.413 92.907 run20.mat -1 -1 599 2365684 2366971 +4790149 4807298 17150 1138055.6343 1138914.1274 -59.377 8.4123 92.9051 run20.mat -1 -1 600 2409010 2417585 +4807618 4828295 20678 1138930.0036 1139963.0647 -57.7282 8.4128 92.5882 run20.mat -1 -1 600 2417745 2428084 +4828603 4849294 20692 1139978.5921 1141013.6753 -56.0763 8.4127 92.5642 run20.mat -1 -1 600 2428238 2438583 +4849602 4870296 20695 1141028.9591 1142065.0861 -54.4249 8.413 92.4938 run20.mat -1 -1 600 2438737 2449085 +4870603 4885936 15334 1142080.4393 1142846.5327 -52.7765 8.4124 92.6494 run20.mat -1 -1 600 2449239 2456905 +4970121 4974593 4473 1147055.7995 1147280.3451 -52.7747 8.4124 94.3537 run20.mat -1 -1 601 2498999 2501236 +4974907 4995614 20708 1147296.0512 1148330.3447 -51.1269 8.4133 92.5254 run20.mat -1 -1 601 2501393 2511747 +4995922 5016597 20676 1148345.6255 1149377.5049 -49.4726 8.4137 92.6496 run20.mat -1 -1 601 2511901 2522239 +5016902 5037594 20693 1149392.6368 1150429.0746 -47.8295 8.4136 92.5548 run20.mat -1 -1 601 2522392 2532738 +5037902 5058576 20675 1150444.3554 1151476.6112 -46.1773 8.4124 92.6279 run20.mat -1 -1 601 2532892 2543229 +5058884 5065996 7113 1151492.0144 1151847.6855 -44.5348 8.4129 92.7195 run20.mat -1 -1 601 2543383 2546939 +5150080 5162802 12723 1156052.8102 1156692.2708 -44.5297 8.4127 93.4168 run20.mat -1 -1 602 2588983 2595345 +5163116 5183794 20679 1156707.8916 1157739.8773 -42.8793 8.4131 92.6163 run20.mat -1 -1 602 2595502 2605841 +5184103 5204797 20695 1157755.2108 1158789.3821 -41.2306 8.4126 92.5117 run20.mat -1 -1 602 2605995 2616343 +5205104 5225778 20675 1158804.859 1159837.5225 -39.5831 8.4133 92.5637 run20.mat -1 -1 602 2616497 2626834 +5226092 5245855 19764 1159853.4156 1160841.8341 -37.9329 8.4127 92.7151 run20.mat -1 -1 602 2626991 2636873 +5330388 5351034 20647 1165068.7174 1166099.2739 -36.2893 8.4128 92.6572 run20.mat -1 -1 603 2679141 2689465 +5351342 5372014 20673 1166114.6769 1167150.9697 -34.6342 8.413 92.5977 run20.mat -1 -1 603 2689619 2699955 +5372320 5393015 20696 1167166.3994 1168200.1794 -32.9885 8.4128 92.6249 run20.mat -1 -1 603 2700108 2710456 +5393323 5413995 20673 1168215.4602 1169250.9553 -31.3384 8.4128 92.6383 run20.mat -1 -1 603 2710610 2720947 +5414300 5425895 11596 1169266.0873 1169844.2917 -29.6917 8.4139 92.7956 run20.mat -1 -1 603 2721099 2726897 +5509821 5518206 8386 1174039.0532 1174458.4011 -29.6926 8.4132 93.8022 run20.mat -1 -1 604 2768861 2773054 +5518523 5539214 20692 1174474.1284 1175510.7546 -28.0401 8.413 92.5467 run20.mat -1 -1 604 2773213 2783559 +5539522 5560210 20689 1175526.1575 1176559.2605 -26.3862 8.4136 92.573 run20.mat -1 -1 604 2783713 2794057 +5560520 5581213 20694 1176574.8887 1177612.1739 -24.7402 8.4129 92.5511 run20.mat -1 -1 604 2794212 2804559 +5581521 5602172 20652 1177627.5768 1178659.6757 -23.0929 8.4133 92.6864 run20.mat -1 -1 604 2804713 2815039 +5602481 5605714 3234 1178675.2535 1178836.8249 -21.4486 8.4117 92.8751 run20.mat -1 -1 604 2815194 2816810 +5689996 5706501 16506 1183051.2425 1183874.124 -21.4382 8.412 92.8987 run20.mat -1 -1 605 2858953 2867206 +5706810 5727495 20686 1183889.4545 1184923.7221 -19.7898 8.4133 92.5674 run20.mat -1 -1 605 2867361 2877704 +5727801 5748478 20678 1184938.9067 1185974.478 -18.1391 8.413 92.5841 run20.mat -1 -1 605 2877857 2888195 +5748787 5769477 20691 1185990.0502 1187022.9512 -16.4923 8.4133 92.6169 run20.mat -1 -1 605 2888350 2898695 +5769784 5785774 15991 1187038.4312 1187838.838 -14.8434 8.4125 92.7505 run20.mat -1 -1 605 2898849 2906844 +5870055 5873788 3734 1192053.4828 1192238.6882 -14.8533 8.4117 94.6645 run20.mat -1 -1 606 2948987 2950853 +5874102 5894776 20675 1192254.3018 1193288.574 -13.1876 8.4136 92.4804 run20.mat -1 -1 606 2951010 2961348 +5895085 5915777 20693 1193304.1549 1194337.3987 -11.5418 8.4131 92.6039 run20.mat -1 -1 606 2961502 2971849 +5916085 5936777 20693 1194352.926 1195388.8027 -9.894 8.4131 92.643 run20.mat -1 -1 606 2972003 2982349 +5937083 5957755 20673 1195403.9873 1196438.6709 -8.2454 8.4132 92.6035 run20.mat -1 -1 606 2982502 2992839 +5958061 5965854 7794 1196454.0974 1196843.3978 -6.5982 8.4134 92.9068 run20.mat -1 -1 606 2992992 2996888 +6049930 6061971 12042 1201045.4969 1201649.5418 -6.5927 8.4135 93.1428 run20.mat -1 -1 607 3038928 3044949 +6062280 6082957 20678 1201665.1196 1202696.8892 -4.9504 8.4133 92.5883 run20.mat -1 -1 607 3045103 3055442 +6083263 6103959 20697 1202711.9602 1203746.3719 -3.2988 8.4132 92.6057 run20.mat -1 -1 607 3055595 3065944 +6104267 6124958 20692 1203761.6527 1204796.7348 -1.6516 8.4129 92.6213 run20.mat -1 -1 607 3066098 3076444 +6125264 6145693 20430 1204812.1613 1205834.9589 -0.00431 8.4134 92.702 run20.mat -1 -1 607 3076597 3086812 +6229932 6250340 20409 1210045.5566 1211068.1511 1.6485 8.4131 93.0449 run20.mat -1 -1 608 3128933 3139138 +6250658 6271341 20684 1211084.0544 1212117.9821 3.2937 8.4135 92.5809 run20.mat -1 -1 608 3139297 3149638 +6271647 6292340 20694 1212133.1667 1213165.82 4.944 8.4132 92.5945 run20.mat -1 -1 608 3149791 3160139 +6292645 6313336 20692 1213180.952 1214217.0355 6.5929 8.4127 92.6015 run20.mat -1 -1 608 3160291 3170637 +6313645 6325753 12109 1214232.6164 1214837.1216 8.2491 8.413 92.812 run20.mat -1 -1 608 3170791 3176846 +6409956 6417567 7612 1219046.2663 1219428.6718 8.2489 8.414 93.6749 run20.mat -1 -1 609 3218949 3222754 +6417886 6438579 20694 1219444.6251 1220479.3767 9.896 8.4128 92.5587 run20.mat -1 -1 609 3222914 3233261 +6438887 6459578 20692 1220494.6606 1221530.4023 11.5434 8.4131 92.5903 run20.mat -1 -1 609 3233415 3243761 +6459887 6480558 20672 1221545.98 1222578.2771 13.1912 8.4128 92.6308 run20.mat -1 -1 609 3243916 3254252 +6480866 6501540 20675 1222593.5609 1223625.8348 14.8431 8.4133 92.6847 run20.mat -1 -1 609 3254406 3264743 +6501847 6505773 3927 1223641.3118 1223839.2016 16.4951 8.413 92.8561 run20.mat -1 -1 609 3264896 3266859 +6589770 6605595 15826 1228039.8222 1228830.874 16.4935 8.4131 93.0537 run20.mat -1 -1 610 3308860 3316773 +6605913 6626600 20688 1228846.6509 1229880.9831 18.1362 8.4127 92.591 run20.mat -1 -1 610 3316932 3327276 +6626909 6647580 20672 1229896.3136 1230928.8332 19.7893 8.4133 92.5654 run20.mat -1 -1 610 3327430 3337766 +6647886 6668600 20715 1230944.2597 1231981.7053 21.4327 8.4128 92.6182 run20.mat -1 -1 610 3337919 3348277 +6668908 6685593 16686 1231996.9861 1232828.4775 23.089 8.4127 92.7876 run20.mat -1 -1 610 3348431 3356773 +6769810 6772837 3028 1237040.677 1237193.3216 23.0889 8.4124 94.8914 run20.mat -1 -1 611 3398884 3400398 +6773151 6793822 20672 1237209.1514 1238241.8388 24.7345 8.413 92.5937 run20.mat -1 -1 611 3400555 3410890 +6794132 6814833 20702 1238257.2219 1239292.2806 26.3834 8.413 92.6366 run20.mat -1 -1 611 3411045 3421396 +6815147 6822052 6906 1239307.8591 1239654.1867 28.0298 8.4125 92.6255 run20.mat -1 -1 611 3421553 3425006 +6822305 6835819 13515 1239666.9413 1240341.4319 28.0289 8.4133 92.5433 run20.mat -1 -1 611 3425132 3431890 +6836126 6856801 20676 1240356.6661 1241390.1816 29.6856 8.4133 92.5997 run20.mat -1 -1 611 3432043 3442381 +6857105 6865632 8528 1241405.3875 1241833.0716 31.3377 8.4133 92.7236 run20.mat -1 -1 611 3442533 3446797 +6949668 6960905 11238 1246033.6201 1246596.3725 31.3348 8.4131 93.14 run20.mat -1 -1 612 3488817 3494436 +6961213 6981882 20670 1246611.6533 1247646.4834 32.986 8.4132 92.5836 run20.mat -1 -1 612 3494590 3504925 +6982188 7002900 20713 1247661.9099 1248693.899 34.6315 8.4131 92.5858 run20.mat -1 -1 612 3505078 3515434 +7003208 7023884 20677 1248709.302 1249745.364 36.2846 8.4131 92.5997 run20.mat -1 -1 612 3515588 3525927 +7024188 7044861 20674 1249760.5698 1250794.8383 37.9355 8.4138 92.7655 run20.mat -1 -1 612 3526079 3536416 +7045168 7045472 305 1250810.0695 1250825.1518 39.5677 8.4084 93.3594 run20.mat -1 -1 612 3536569 3536721 +7131831 7151343 19513 1255142.5146 1256117.0244 39.5842 8.4137 93.0173 run20.mat -1 -1 613 3579902 3589659 +7151653 7172343 20691 1256132.5274 1257166.8782 41.2293 8.4127 92.5837 run20.mat -1 -1 613 3589814 3600159 +7172652 7193329 20678 1257182.2086 1258218.1497 42.8798 8.4128 92.5773 run20.mat -1 -1 613 3600314 3610652 +7193645 7214343 20699 1258233.8305 1259267.069 44.5304 8.4132 92.6588 run20.mat -1 -1 613 3610810 3621160 +7214648 7227591 12944 1259282.4482 1259932.8915 46.1824 8.4129 92.7524 run20.mat -1 -1 613 3621312 3627784 +7311624 7318388 6765 1264132.0847 1264469.7297 46.1742 8.4132 93.5323 run20.mat -1 -1 614 3669803 3673152 +7318713 7339390 20678 1264485.8539 1265521.7499 47.8284 8.4129 92.4972 run20.mat -1 -1 614 3673347 3683686 +7339705 7360382 20678 1265537.503 1266569.6578 49.4751 8.4138 92.6336 run20.mat -1 -1 614 3683844 3694183 +7360689 7381386 20698 1266585.011 1267621.3253 51.13 8.4129 92.4748 run20.mat -1 -1 614 3694336 3704685 +7381702 7402360 20659 1267637.003 1268668.0389 52.7721 8.4124 92.6288 run20.mat -1 -1 614 3704843 3715173 +7402667 7407412 4746 1268683.2701 1268920.8889 54.4247 8.413 92.8678 run20.mat -1 -1 614 3715326 3717699 +7491693 7506818 15126 1273136.6946 1273890.4661 54.4222 8.4135 93.0758 run20.mat -1 -1 615 3759841 3767404 +7507132 7527822 20691 1273906.1694 1274942.9769 56.0692 8.413 92.5462 run20.mat -1 -1 615 3767561 3777907 +7528130 7548802 20673 1274958.3799 1275992.2728 57.7229 8.4128 92.6659 run20.mat -1 -1 615 3778061 3788397 +7549110 7569801 20692 1276007.6787 1277040.5471 59.3702 8.4132 92.5737 run20.mat -1 -1 615 3788551 3798897 +7570109 7587452 17344 1277055.8511 1277922.2455 61.0225 8.4132 92.7191 run20.mat -1 -1 615 3799051 3807723 +7671549 7674032 2484 1282131.0191 1282254.2082 61.0188 8.4135 95.6861 run20.mat -1 -1 616 3849773 3851015 +7674348 7695043 20696 1282269.8859 1283302.3432 62.6702 8.4128 92.5405 run20.mat -1 -1 616 3851173 3861521 +7695350 7716023 20674 1283317.6964 1284351.791 64.3204 8.413 92.6363 run20.mat -1 -1 616 3861674 3872011 +7716331 7737025 20695 1284367.3215 1285404.0614 65.9739 8.414 92.4762 run20.mat -1 -1 616 3872165 3882513 +7737333 7758011 20679 1285419.4643 1286452.9639 67.6222 8.4133 92.6591 run20.mat -1 -1 616 3882667 3893006 +7758319 7767311 8993 1286468.2447 1286916.5926 69.2735 8.412 92.7909 run20.mat -1 -1 616 3893160 3897656 +7851593 7862332 10740 1291132.8684 1291666.4638 69.2673 8.4127 93.1666 run20.mat -1 -1 617 3939799 3945169 +7862647 7883327 20681 1291682.344 1292717.3376 70.9201 8.4135 92.4942 run20.mat -1 -1 617 3945326 3955667 +7883632 7904325 20694 1292732.4695 1293766.2289 72.5719 8.4133 92.56 run20.mat -1 -1 617 3955819 3966166 +7904634 7925323 20690 1293781.6819 1294818.3901 74.2217 8.413 92.623 run20.mat -1 -1 617 3966321 3976666 +7925631 7946285 20655 1294833.7933 1295867.7463 75.8677 8.4129 92.7153 run20.mat -1 -1 617 3976820 3987147 +7946593 7947390 798 1295883.1493 1295922.7285 77.4978 8.4099 93.2662 run20.mat -1 -1 617 3987301 3987700 +8031434 8050403 18970 1300122.5408 1301070.4314 77.5151 8.4135 92.8985 run20.mat -1 -1 618 4029723 4039208 +8050714 8071389 20676 1301085.9228 1302121.9036 79.1624 8.4133 92.5619 run20.mat -1 -1 618 4039364 4049702 +8071704 8092387 20684 1302137.5317 1303171.8202 80.8142 8.4135 92.5616 run20.mat -1 -1 618 4049859 4060201 +8092697 8113047 20351 1303187.2002 1304204.8698 82.4626 8.413 92.6185 run20.mat -1 -1 618 4060356 4070532 +282364 302793 20430 1418406.2225 1419428.1328 82.462 10.0926 92.7188 run21.mat -1 -1 620 168640 178855 +303100 323797 20698 1419443.7257 1420477.9577 80.8123 10.093 92.5616 run21.mat -1 -1 620 179008 189358 +324104 344797 20694 1420493.4346 1421528.6944 79.1663 10.0926 92.5381 run21.mat -1 -1 620 189511 199858 +345103 365799 20697 1421543.9973 1422578.0517 77.5157 10.0931 92.5448 run21.mat -1 -1 620 200011 210359 +366103 378153 12051 1422593.2547 1423195.8744 75.8619 10.0926 92.5195 run21.mat -1 -1 620 210511 216536 +462396 470095 7700 1427408.7455 1427793.3525 75.868 10.0925 93.1483 run21.mat -1 -1 621 258659 262510 +470425 491116 20692 1427809.7281 1428844.4509 74.2185 10.0925 92.5576 run21.mat -1 -1 621 262675 273020 +491422 512095 20674 1428859.7538 1429893.3896 72.5694 10.0925 92.6349 run21.mat -1 -1 621 273173 283510 +512404 533096 20693 1429908.72 1430942.7102 70.9176 10.0927 92.532 run21.mat -1 -1 621 283665 294011 +533404 554078 20675 1430958.2375 1431993.2778 69.2723 10.093 92.6598 run21.mat -1 -1 621 294165 304503 +554386 558213 3828 1432008.681 1432199.2756 67.6174 10.0924 92.7156 run21.mat -1 -1 621 304657 306570 +642244 658157 15914 1436401.6597 1437197.518 67.6226 10.0924 92.9895 run21.mat -1 -1 622 348588 356545 +658483 679159 20677 1437213.8214 1438245.9279 65.9737 10.0924 92.561 run21.mat -1 -1 622 356708 367046 +679466 700161 20696 1438261.2808 1439297.7346 64.3195 10.0926 92.6054 run21.mat -1 -1 622 367200 377548 +700466 721158 20693 1439313.1138 1440344.6503 62.6721 10.0928 92.5865 run21.mat -1 -1 622 377700 388047 +721466 738053 16588 1440359.9341 1441190.8551 61.0211 10.0921 92.7938 run21.mat -1 -1 622 388201 396494 +822138 825276 3139 1445395.721 1445551.4066 61.0248 10.0934 95.0841 run21.mat -1 -1 623 438539 440108 +825607 846277 20671 1445567.8285 1446602.9906 59.3704 10.0925 92.5144 run21.mat -1 -1 623 440273 450609 +846584 867282 20699 1446618.3435 1447653.538 57.724 10.093 92.6 run21.mat -1 -1 623 450762 461112 +867586 888278 20693 1447668.6204 1448703.4871 56.0713 10.0931 92.5374 run21.mat -1 -1 623 461264 471610 +888585 909265 20681 1448718.7823 1449752.9375 54.4216 10.0926 92.6435 run21.mat -1 -1 623 471764 482104 +909583 917933 8351 1449768.9689 1450183.8389 52.7758 10.0929 92.5856 run21.mat -1 -1 623 482263 486438 +1002134 1013524 11391 1454394.9962 1454965.0371 52.7732 10.0929 93.3446 run21.mat -1 -1 624 528541 534236 +1013858 1034538 20681 1454981.8786 1456016.1843 51.1282 10.0928 92.4961 run21.mat -1 -1 624 534403 544743 +1034848 1055518 20671 1456031.4524 1457064.8791 49.4757 10.093 92.6118 run21.mat -1 -1 624 544898 555234 +1055826 1076521 20696 1457080.16 1458114.8891 47.8252 10.0926 92.5796 run21.mat -1 -1 624 555388 565736 +1076829 1097481 20653 1458130.1699 1459164.5939 46.178 10.0925 92.7011 run21.mat -1 -1 624 565890 576216 +1097792 1097952 161 1459180.1471 1459188.1488 44.5521 10.0997 94.7947 run21.mat -1 -1 624 576372 576452 +1182067 1201743 19677 1463393.5783 1464376.0335 44.5333 10.0927 92.9521 run21.mat -1 -1 625 618511 628349 +1202055 1222756 20702 1464391.6368 1465427.3219 42.8796 10.0933 92.5978 run21.mat -1 -1 625 628505 638856 +1223064 1243740 20677 1465442.6027 1466476.4003 41.2316 10.0928 92.6462 run21.mat -1 -1 625 639010 649349 +1244046 1264740 20695 1466491.7032 1467524.9778 39.5797 10.0927 92.6205 run21.mat -1 -1 625 649502 659849 +1265048 1277832 12785 1467540.5051 1468180.8025 37.9356 10.093 92.7419 run21.mat -1 -1 625 660003 666396 +1362063 1369007 6945 1472392.1163 1472740.1883 37.934 10.0929 93.5846 run21.mat -1 -1 626 708513 711985 +1369318 1390018 20701 1472755.8669 1473790.2564 36.2869 10.0921 92.5224 run21.mat -1 -1 626 712141 722491 +1390327 1411019 20693 1473805.7094 1474839.9034 34.6324 10.093 92.6761 run21.mat -1 -1 626 722646 732992 +1411327 1432021 20695 1474855.1842 1475888.9508 32.9843 10.0926 92.5102 run21.mat -1 -1 626 733146 743493 +1432328 1453002 20675 1475904.3072 1476938.8182 31.3364 10.0926 92.604 run21.mat -1 -1 626 743647 753984 +1453306 1457892 4587 1476953.9035 1477184.2535 29.6795 10.0919 92.4537 run21.mat -1 -1 626 754136 756430 +1541874 1557077 15204 1481383.0111 1482143.4144 29.687 10.0929 93.1336 run21.mat -1 -1 627 798422 806024 +1557407 1578080 20674 1482160.0508 1483194.9806 28.0294 10.0927 92.5722 run21.mat -1 -1 627 806189 816526 +1578386 1599080 20695 1483210.2838 1484243.1895 26.3854 10.0925 92.633 run21.mat -1 -1 627 816679 827026 +1599387 1620082 20696 1484258.5424 1485295.5412 24.7325 10.0924 92.6315 run21.mat -1 -1 627 827180 837528 +1620387 1637732 17346 1485310.6731 1486175.2986 23.0875 10.092 92.7394 run21.mat -1 -1 627 837681 846353 +1723881 1726356 2476 1490484.3761 1490609.6128 23.0886 10.0926 95.877 run21.mat -1 -1 628 889430 890667 +1726685 1747358 20674 1490626.0696 1491657.2874 21.4307 10.0928 92.5695 run21.mat -1 -1 628 890832 901169 +1747666 1768359 20694 1491672.9551 1492708.3036 19.7849 10.0918 92.6157 run21.mat -1 -1 628 901323 911670 +1768665 1789360 20696 1492723.6095 1493758.1203 18.1378 10.0922 92.5547 run21.mat -1 -1 628 911823 922171 +1789666 1810341 20676 1493773.3049 1494806.8873 16.4908 10.0922 92.5615 run21.mat -1 -1 628 922324 932661 +1810646 1819651 9006 1494822.1431 1495272.537 14.8429 10.093 92.695 run21.mat -1 -1 628 932814 937317 +1903717 1914437 10721 1499475.8901 1500012.7107 14.8392 10.0925 93.3895 run21.mat -1 -1 629 979352 984712 +1914761 1935446 20686 1500028.7853 1501063.0623 13.1931 10.0931 92.4765 run21.mat -1 -1 629 984874 995217 +1935761 1956439 20679 1501078.6935 1502112.5859 11.5412 10.0923 92.5466 run21.mat -1 -1 629 995374 1005714 +1956747 1977438 20692 1502127.8698 1503162.4073 9.8949 10.0929 92.6015 run21.mat -1 -1 629 1005868 1016214 +1977744 1998419 20676 1503177.5919 1504211.3355 8.2459 10.0926 92.6908 run21.mat -1 -1 629 1016367 1026705 +1998726 1999491 766 1504226.5697 1504264.5312 6.5933 10.093 92.6877 run21.mat -1 -1 629 1026858 1027241 +2083593 2102558 18966 1508472.1674 1509418.9994 6.5973 10.0935 92.8972 run21.mat -1 -1 630 1069294 1078770 +2102864 2123580 20717 1509434.181 1510469.9774 4.9449 10.0933 92.6288 run21.mat -1 -1 630 1078930 1089288 +2123889 2144561 20673 1510485.3108 1511517.7411 3.2963 10.0924 92.6103 run21.mat -1 -1 630 1089442 1099779 +2144869 2165561 20693 1511533.2684 1512566.7192 1.6486 10.0923 92.6186 run21.mat -1 -1 630 1099933 1110280 +2165866 2179390 13525 1512581.8512 1513259.9313 0.0016919 10.0925 92.8143 run21.mat -1 -1 630 1110432 1117194 +2263551 2269699 6149 1517468.3761 1517774.3078 -0.0041856 10.0918 93.5607 run21.mat -1 -1 631 1159277 1162351 +2270025 2290720 20696 1517790.4816 1518827.0694 -1.6513 10.0927 92.4858 run21.mat -1 -1 631 1162514 1172862 +2291027 2311701 20675 1518842.5463 1519876.2407 -3.3016 10.0926 92.6233 run21.mat -1 -1 631 1173016 1183353 +2312009 2332716 20708 1519891.5215 1520925.7841 -4.9469 10.0928 92.621 run21.mat -1 -1 631 1183507 1193861 +2333022 2353681 20660 1520940.9657 1521973.0538 -6.5991 10.0926 92.6655 run21.mat -1 -1 631 1194014 1204343 +2353990 2359311 5322 1521988.5102 1522254.6328 -8.2513 10.092 92.6632 run21.mat -1 -1 631 1204498 1207159 +2443457 2457978 14522 1526462.5116 1527188.9895 -8.2476 10.0924 93.0742 run21.mat -1 -1 632 1249234 1256494 +2458303 2478980 20678 1527205.3772 1528239.3957 -9.9007 10.0924 92.61 run21.mat -1 -1 632 1256657 1266996 +2479288 2499975 20688 1528254.6765 1529288.6904 -11.5463 10.0924 92.6331 run21.mat -1 -1 632 1267150 1277494 +2500287 2520969 20683 1529304.2936 1530340.7484 -13.1932 10.0932 92.5342 run21.mat -1 -1 632 1277650 1287992 +2521281 2539210 17930 1530356.2622 1531250.3559 -14.8467 10.0931 92.7101 run21.mat -1 -1 632 1288148 1297112 +2623344 2625105 1762 1535456.595 1535545.3909 -14.8471 10.0907 96.7304 run21.mat -1 -1 633 1339181 1340061 +2625416 2646121 20706 1535561.0726 1536596.8752 -16.4929 10.0925 92.5465 run21.mat -1 -1 633 1340217 1350570 +2646428 2667101 20674 1536612.2512 1537645.8889 -18.1399 10.093 92.6462 run21.mat -1 -1 633 1350724 1361061 +2667411 2688122 20712 1537661.2689 1538696.1735 -19.7914 10.0925 92.6233 run21.mat -1 -1 633 1361216 1371571 +2688428 2709103 20676 1538711.6031 1539746.7217 -21.4384 10.093 92.5245 run21.mat -1 -1 633 1371724 1382062 +2709412 2719129 9718 1539762.3025 1540247.7198 -23.0804 10.0928 92.7012 run21.mat -1 -1 633 1382217 1387076 +2803322 2813359 10038 1544456.6534 1544960.5124 -23.0912 10.0929 93.3776 run21.mat -1 -1 634 1429174 1434193 +2813684 2834380 20697 1544976.6366 1546009.5284 -24.7358 10.0923 92.573 run21.mat -1 -1 634 1434355 1444704 +2834689 2855382 20694 1546024.8618 1547059.8633 -26.3873 10.093 92.5378 run21.mat -1 -1 634 1444858 1455205 +2855689 2876381 20693 1547075.3402 1548110.5287 -28.033 10.093 92.5479 run21.mat -1 -1 634 1455359 1465705 +2876689 2897343 20655 1548126.0561 1549159.2785 -29.6875 10.0927 92.6761 run21.mat -1 -1 634 1465859 1476187 +2897650 2899149 1500 1549174.6481 1549249.0181 -31.332 10.0928 92.8632 run21.mat -1 -1 634 1476340 1477090 +2983222 3001480 18259 1553453.341 1554363.2912 -31.3336 10.0935 93.0118 run21.mat -1 -1 635 1519128 1528258 +3001802 3022483 20682 1554379.2758 1555413.3966 -32.9855 10.0932 92.4973 run21.mat -1 -1 635 1528419 1538760 +3022790 3043466 20677 1555428.6308 1556463.4281 -34.6366 10.0928 92.6077 run21.mat -1 -1 635 1538913 1549251 +3043783 3064460 20678 1556479.4092 1557515.0079 -36.2854 10.0932 92.6658 run21.mat -1 -1 635 1549410 1559749 +3064768 3079009 14242 1557530.2918 1558242.7511 -37.9393 10.0924 92.7525 run21.mat -1 -1 635 1559903 1567023 +3163060 3168519 5460 1562444.52 1562717.6991 -37.9412 10.0919 94.1616 run21.mat -1 -1 636 1609051 1611780 +3168826 3189547 20722 1562733.0525 1563768.6588 -39.5854 10.0923 92.5794 run21.mat -1 -1 636 1611934 1622295 +3189851 3210547 20697 1563783.9845 1564817.2404 -41.2335 10.0921 92.5185 run21.mat -1 -1 636 1622447 1632795 +3210859 3231541 20683 1564832.9726 1565866.6242 -42.8805 10.0924 92.6083 run21.mat -1 -1 636 1632951 1643293 +3231849 3252542 20694 1565882.0271 1566918.3543 -44.5361 10.0926 92.6403 run21.mat -1 -1 636 1643447 1653794 +3252849 3258848 6000 1566933.8312 1567232.3673 -46.1813 10.0931 92.6973 run21.mat -1 -1 636 1653948 1656947 +3343138 3356865 13728 1571446.925 1572134.4037 -46.1824 10.0923 93.0821 run21.mat -1 -1 637 1699094 1705958 +3357181 3377862 20682 1572150.3343 1573185.5629 -47.8288 10.0929 92.5261 run21.mat -1 -1 637 1706116 1716456 +3378170 3398864 20695 1573200.9688 1574233.9421 -49.4769 10.0929 92.5961 run21.mat -1 -1 637 1716610 1726958 +3399168 3419862 20695 1574249.1452 1575284.108 -51.1268 10.093 92.5473 run21.mat -1 -1 637 1727110 1737457 +3420167 3438908 18742 1575299.243 1576235.5556 -52.7743 10.0925 92.7161 run21.mat -1 -1 637 1737610 1746981 +3522994 3523980 987 1580442.3897 1580492.0761 -52.7815 10.0935 99.0235 run21.mat -1 -1 638 1789026 1789519 +3524306 3544981 20676 1580508.5039 1581540.7173 -54.4262 10.0932 92.5669 run21.mat -1 -1 638 1789682 1800020 +3545289 3565982 20694 1581556.2446 1582589.4489 -56.0715 10.0928 92.5529 run21.mat -1 -1 638 1800174 1810521 +3566291 3586981 20691 1582605.0266 1583641.3827 -57.7273 10.0925 92.5684 run21.mat -1 -1 638 1810675 1821021 +3587288 3607962 20675 1583656.7391 1584689.7022 -59.3722 10.0929 92.5894 run21.mat -1 -1 638 1821174 1831512 +3608268 3618787 10520 1584705.0081 1585231.7416 -61.0254 10.0926 92.741 run21.mat -1 -1 638 1831665 1836925 +3702891 3712201 9311 1589435.3881 1589901.4713 -61.0248 10.0926 93.7846 run21.mat -1 -1 639 1878978 1883634 +3712526 3733204 20679 1589917.8556 1590950.8195 -62.6712 10.0925 92.502 run21.mat -1 -1 639 1883796 1894135 +3733513 3754224 20712 1590966.4596 1592002.4534 -64.3237 10.0927 92.4904 run21.mat -1 -1 639 1894290 1904646 +3754532 3775203 20672 1592017.7372 1593052.9366 -65.9756 10.0923 92.5679 run21.mat -1 -1 639 1904800 1915136 +3775511 3796182 20672 1593068.3431 1594101.971 -67.6242 10.0926 92.6728 run21.mat -1 -1 639 1915290 1925626 +3796491 3798787 2297 1594117.3045 1594231.2386 -69.2715 10.0932 92.4321 run21.mat -1 -1 639 1925780 1926929 +3882857 3900301 17445 1598436.5768 1599308.35 -69.2735 10.0919 93.0517 run21.mat -1 -1 640 1968965 1977687 +3900629 3921292 20664 1599324.75 1600358.1671 -70.9208 10.0929 92.5599 run21.mat -1 -1 640 1977851 1988184 +3921608 3942304 20697 1600373.7306 1601406.7819 -72.5727 10.0923 92.5896 run21.mat -1 -1 640 1988342 1998690 +3942610 3963305 20696 1601421.9635 1602456.4153 -74.2224 10.0931 92.6458 run21.mat -1 -1 640 1998843 2009191 +3963612 3978627 15016 1602471.7682 1603223.3095 -75.8704 10.093 92.6436 run21.mat -1 -1 640 2009345 2016852 +4062910 4067602 4693 1607437.6331 1607670.7951 -75.873 10.093 94.1266 run21.mat -1 -1 641 2058996 2061342 +4067909 4088624 20716 1607686.272 1608724.3954 -77.5174 10.093 92.5913 run21.mat -1 -1 641 2061495 2071853 +4088929 4109623 20695 1608739.5304 1609774.1343 -79.1675 10.0923 92.537 run21.mat -1 -1 641 2072006 2082353 +4109931 4130606 20676 1609789.6616 1610821.8766 -80.8172 10.0929 92.5935 run21.mat -1 -1 641 2082507 2092845 +4130915 4151585 20671 1610837.4574 1611873.4346 -82.463 10.0928 92.5734 run21.mat -1 -1 641 2093000 2103335 +4151894 4158707 6814 1611889.0123 1612226.5256 -82.4709 11.7748 92.6726 run21.mat -1 -1 641 2103490 2106896 +4242705 4255714 13010 1616427.9958 1617076.6068 -82.4638 11.7757 93.2123 run21.mat -1 -1 642 2148897 2155414 +4256029 4276719 20691 1617092.3628 1618127.1742 -80.815 11.7766 92.5344 run21.mat -1 -1 642 2155559 2165904 +4277028 4297703 20676 1618142.6307 1619178.528 -79.1662 11.7762 92.6411 run21.mat -1 -1 642 2166059 2176397 +4298009 4318707 20699 1619193.9576 1620227.3001 -77.5171 11.7762 92.6401 run21.mat -1 -1 642 2176550 2186900 +4319014 4338587 19574 1620242.777 1621220.4033 -75.8659 11.7767 92.6579 run21.mat -1 -1 642 2187053 2196841 +4422865 4423172 308 1625435.4912 1625450.7224 -75.8456 11.7781 114.8488 run21.mat -1 -1 643 2238981 2239135 +4423491 4444165 20675 1625466.6013 1626500.4725 -74.2231 11.776 92.6459 run21.mat -1 -1 643 2239294 2249631 +4444474 4465149 20676 1626515.8643 1627549.015 -72.5717 11.776 92.5587 run21.mat -1 -1 643 2249786 2260124 +4465456 4486127 20672 1627564.368 1628599.0359 -70.9224 11.7764 92.615 run21.mat -1 -1 643 2260277 2270614 +4486439 4507149 20711 1628614.7649 1629651.5127 -69.2728 11.7762 92.6223 run21.mat -1 -1 643 2270770 2281125 +4507454 4518646 11193 1629666.7691 1630224.5398 -67.6256 11.7755 92.885 run21.mat -1 -1 643 2281277 2286874 +4602700 4611330 8631 1634426.8276 1634859.4877 -67.6281 11.7762 93.7717 run21.mat -1 -1 644 2328903 2333217 +4611638 4632324 20687 1634874.6601 1635907.9615 -65.9754 11.7759 92.5553 run21.mat -1 -1 644 2333371 2343715 +4632634 4653326 20693 1635923.3415 1636959.021 -64.3224 11.7763 92.6265 run21.mat -1 -1 644 2343870 2354217 +4653634 4674327 20694 1636974.5514 1638009.0322 -62.6737 11.7762 92.5886 run21.mat -1 -1 644 2354371 2364718 +4674633 4695289 20657 1638024.2168 1639058.6583 -61.0246 11.777 92.7405 run21.mat -1 -1 644 2364871 2375199 +4695599 4698466 2868 1639073.9263 1639215.1311 -59.3792 11.7773 92.9487 run21.mat -1 -1 644 2375354 2376788 +4782750 4799715 16966 1643430.4708 1644276.9429 -59.3746 11.776 93.0773 run21.mat -1 -1 645 2418931 2427414 +4800035 4820727 20693 1644292.946 1645329.8099 -57.7261 11.7764 92.5644 run21.mat -1 -1 645 2427574 2437920 +4821035 4841707 20673 1645345.2159 1646377.6217 -56.0732 11.7762 92.5925 run21.mat -1 -1 645 2438074 2448411 +4842012 4862709 20698 1646392.9978 1647428.605 -54.4251 11.776 92.6133 run21.mat -1 -1 645 2448564 2458912 +4863016 4878505 15490 1647443.8392 1648218.4453 -52.773 11.7755 92.7101 run21.mat -1 -1 645 2459066 2466811 +4962674 4966997 4324 1652427.2489 1652642.211 -52.7754 11.7756 95.0988 run21.mat -1 -1 646 2508897 2511059 +4967315 4988007 20693 1652658.1141 1653693.8425 -51.1276 11.7769 92.4965 run21.mat -1 -1 646 2511218 2521565 +4988312 5009007 20696 1653709.2186 1654742.4088 -49.4767 11.7772 92.588 run21.mat -1 -1 646 2521717 2532065 +5009313 5029986 20674 1654757.8352 1655790.7948 -47.8265 11.776 92.4941 run21.mat -1 -1 646 2532218 2542555 +5030293 5050966 20674 1655806.026 1656841.7493 -46.1795 11.7763 92.6624 run21.mat -1 -1 646 2542708 2553045 +5051272 5058565 7294 1656857.0523 1657220.8694 -44.5299 11.7756 92.5316 run21.mat -1 -1 646 2553198 2556845 +5142538 5155084 12547 1661420.1624 1662048.14 -44.5293 11.7766 93.1585 run21.mat -1 -1 647 2598833 2605107 +5155399 5176066 20668 1662063.8933 1663096.4132 -42.8811 11.7763 92.518 run21.mat -1 -1 647 2605264 2615598 +5176372 5197069 20698 1663111.7628 1664148.6531 -41.2305 11.7769 92.649 run21.mat -1 -1 647 2615751 2626100 +5197377 5218087 20711 1664163.9339 1665196.0623 -39.5863 11.7765 92.6044 run21.mat -1 -1 647 2626254 2636610 +5218393 5238425 20033 1665211.3655 1666215.2262 -37.9361 11.7763 92.6805 run21.mat -1 -1 647 2636763 2646778 +5322786 5343366 20581 1670430.6028 1671462.8125 -36.2905 11.7766 92.861 run21.mat -1 -1 648 2688961 2699252 +5343674 5364350 20677 1671478.2154 1672511.3657 -34.6342 11.7767 92.5871 run21.mat -1 -1 648 2699406 2709744 +5364674 5385356 20683 1672527.4404 1673559.9641 -32.9868 11.7767 92.5803 run21.mat -1 -1 648 2709906 2720248 +5385671 5406348 20678 1673575.8443 1674610.2263 -31.3382 11.7764 92.654 run21.mat -1 -1 648 2720405 2730744 +5406656 5418504 11849 1674625.7536 1675218.2183 -29.6866 11.7772 92.8944 run21.mat -1 -1 648 2730898 2736822 +5502536 5510406 7871 1679422.2446 1679812.8063 -29.69 11.7763 93.5449 run21.mat -1 -1 649 2778840 2782775 +5510720 5531409 20690 1679828.3848 1680864.8782 -28.0363 11.7762 92.6304 run21.mat -1 -1 649 2782932 2793278 +5531714 5552411 20698 1680880.0101 1681914.6453 -26.3864 11.7766 92.5949 run21.mat -1 -1 649 2793430 2803779 +5552718 5573410 20693 1681929.9983 1682964.8047 -24.738 11.7769 92.5648 run21.mat -1 -1 649 2803933 2814279 +5573716 5594373 20658 1682979.9863 1684011.3088 -23.0897 11.7766 92.6268 run21.mat -1 -1 649 2814432 2824761 +5594688 5598325 3638 1684027.0621 1684208.95 -21.4306 11.7779 92.7533 run21.mat -1 -1 649 2824919 2826737 +5682642 5698718 16077 1688424.9427 1689228.9519 -21.4369 11.7776 93.0766 run21.mat -1 -1 650 2868897 2876936 +5699038 5719730 20693 1689244.9552 1690277.8684 -19.7881 11.7769 92.5877 run21.mat -1 -1 650 2877096 2887442 +5720039 5740728 20690 1690293.3244 1691330.3212 -18.1392 11.7772 92.5481 run21.mat -1 -1 650 2887596 2897941 +5741037 5761711 20675 1691345.6546 1692379.4533 -16.4927 11.7759 92.5966 run21.mat -1 -1 650 2898096 2908433 +5762015 5778405 16391 1692394.779 1693213.3855 -14.8437 11.7763 92.7487 run21.mat -1 -1 650 2908585 2916780 +5862527 5865860 3334 1697421.6653 1697588.3659 -14.8443 11.7767 94.472 run21.mat -1 -1 651 2958843 2960510 +5866181 5886870 20690 1697604.4193 1698638.0667 -13.1929 11.776 92.6035 run21.mat -1 -1 651 2960671 2971016 +5887177 5907848 20672 1698653.2979 1699686.2709 -11.5485 11.7761 92.565 run21.mat -1 -1 651 2971169 2981505 +5908155 5918063 9909 1699701.6268 1700196.6511 -9.8958 11.7772 92.4954 run21.mat -1 -1 651 2981659 2986613 +5918313 5928852 10540 1700209.257 1700736.5412 -9.8943 11.776 92.6644 run21.mat -1 -1 651 2986738 2992008 +5929159 5949831 20673 1700752.0181 1701785.819 -8.2538 11.7757 92.6161 run21.mat -1 -1 651 2992161 3002497 +5950136 5958283 8148 1701800.9539 1702208.3097 -6.5957 11.7757 92.6857 run21.mat -1 -1 651 3002650 3006724 +6042366 6053977 11612 1706410.9746 1706992.0869 -6.5917 11.7767 92.9309 run21.mat -1 -1 652 3048767 3054572 +6054290 6074976 20687 1707007.6189 1708043.8156 -4.9479 11.7767 92.4893 run21.mat -1 -1 652 3054729 3065073 +6075287 6095971 20685 1708059.2453 1709092.3547 -3.2995 11.7773 92.548 run21.mat -1 -1 652 3065228 3075571 +6096277 6116969 20693 1709107.7812 1710141.8378 -1.6472 11.7759 92.6193 run21.mat -1 -1 652 3075724 3086070 +6117278 6137932 20655 1710157.4187 1711190.5628 -0.002102 11.7759 92.7201 run21.mat -1 -1 652 3086225 3096552 +6222236 6242154 19919 1715405.3435 1716400.5134 1.65 11.7764 92.8999 run21.mat -1 -1 653 3138706 3148666 +6242477 6263150 20674 1716416.7969 1717453.1727 3.2961 11.7766 92.5775 run21.mat -1 -1 653 3148827 3159164 +6263457 6284152 20696 1717468.5257 1718500.8935 4.9484 11.7754 92.5962 run21.mat -1 -1 653 3159317 3169665 +6284459 6305133 20675 1718516.3735 1719549.2477 6.5931 11.7771 92.5138 run21.mat -1 -1 653 3169819 3180156 +6305442 6318024 12583 1719564.5812 1720194.3648 8.2493 11.7764 92.7995 run21.mat -1 -1 653 3180311 3186602 +6402264 6409397 7134 1724407.4547 1724763.5555 8.2466 11.7765 93.7653 run21.mat -1 -1 654 3228724 3232313 +6409720 6430393 20674 1724779.8423 1725812.5389 9.895 11.7763 92.5189 run21.mat -1 -1 654 3232452 3242789 +6430700 6451394 20695 1725827.8921 1726862.8994 11.5433 11.7759 92.6065 run21.mat -1 -1 654 3242943 3253290 +6451700 6472393 20694 1726878.3009 1727915.5149 13.19 11.7759 92.5769 run21.mat -1 -1 654 3253443 3263790 +6472697 6493371 20675 1727930.4874 1728962.6599 14.842 11.7758 92.6956 run21.mat -1 -1 654 3263942 3274279 +6493678 6498043 4366 1728977.891 1729195.3905 16.4897 11.7755 92.745 run21.mat -1 -1 654 3274433 3276615 +6582172 6597650 15479 1733401.5488 1734175.6628 16.4885 11.7761 93.1519 run21.mat -1 -1 655 3318682 3326421 +6597964 6618634 20671 1734191.4926 1735226.5156 18.1365 11.7761 92.5846 run21.mat -1 -1 655 3326578 3336914 +6618945 6639651 20707 1735241.9452 1736277.0442 19.7841 11.776 92.5928 run21.mat -1 -1 655 3337069 3347423 +6639960 6660633 20674 1736292.6219 1737325.5287 21.4328 11.7764 92.613 run21.mat -1 -1 655 3347577 3357914 +6660937 6677943 17007 1737340.7318 1738192.2248 23.0867 11.7755 92.7349 run21.mat -1 -1 655 3358066 3366570 +6762029 6764751 2723 1742394.0784 1742530.434 23.0862 11.7764 94.1296 run21.mat -1 -1 656 3408614 3409975 +6765059 6785735 20677 1742545.9645 1743581.1615 24.7361 11.7761 92.566 run21.mat -1 -1 656 3410129 3420468 +6786042 6806752 20711 1743596.6384 1744633.3833 26.3854 11.776 92.5417 run21.mat -1 -1 656 3420621 3430977 +6807058 6827726 20669 1744648.6863 1745680.5795 28.0347 11.7769 92.6417 run21.mat -1 -1 656 3431130 3441464 +6828035 6848714 20680 1745695.9099 1746732.0087 29.6868 11.7766 92.6651 run21.mat -1 -1 656 3441619 3451959 +6849021 6857822 8802 1746747.243 1747185.6449 31.3335 11.7766 92.7473 run21.mat -1 -1 656 3452112 3456513 +6941904 6952842 10939 1751389.9073 1751937.4457 31.3339 11.7774 93.2403 run21.mat -1 -1 657 3498556 3504025 +6953162 6973853 20692 1751953.3219 1752985.8392 32.9865 11.7766 92.6173 run21.mat -1 -1 657 3504185 3514531 +6974160 6994833 20674 1753001.2339 1754035.3638 34.6321 11.7763 92.5893 run21.mat -1 -1 657 3514685 3525021 +6995139 7015836 20698 1754050.7903 1755086.7809 36.2878 11.776 92.6228 run21.mat -1 -1 657 3525174 3535524 +7016141 7036798 20658 1755101.9129 1756135.8153 37.9338 11.7757 92.7406 run21.mat -1 -1 657 3535676 3546005 +7037109 7037702 594 1756151.4938 1756181.389 39.5796 11.7697 94.1252 run21.mat -1 -1 657 3546161 3546457 +7121747 7140921 19175 1760382.2016 1761342.0488 39.5844 11.7762 92.9842 run21.mat -1 -1 658 3588481 3598068 +7141239 7161913 20675 1761357.892 1762390.2348 41.2294 11.7769 92.5232 run21.mat -1 -1 658 3598227 3608565 +7162219 7182893 20675 1762405.6644 1763439.7534 42.8799 11.7762 92.6128 run21.mat -1 -1 658 3608718 3619056 +7183201 7203896 20696 1763455.2807 1764490.5701 44.5324 11.7767 92.5827 run21.mat -1 -1 658 3619210 3629557 +7204202 7217542 13341 1764505.9966 1765172.6169 46.1789 11.7751 92.8064 run21.mat -1 -1 658 3629710 3636381 +7301761 7308164 6404 1769382.1465 1769701.8484 46.1737 11.776 93.8788 run21.mat -1 -1 659 3678492 3681694 +7308475 7329174 20700 1769717.5269 1770751.637 47.8269 11.7768 92.5725 run21.mat -1 -1 659 3681849 3692199 +7329481 7350155 20675 1770766.9902 1771803.7255 49.4707 11.7759 92.6009 run21.mat -1 -1 659 3692353 3702690 +7350471 7371173 20703 1771819.6562 1772853.1992 51.1245 11.7761 92.5901 run21.mat -1 -1 659 3702848 3713200 +7371482 7392153 20672 1772868.777 1773900.7685 52.7754 11.7756 92.6118 run21.mat -1 -1 659 3713354 3723690 +7392462 7397561 5100 1773916.3493 1774172.8162 54.4174 11.7761 92.9164 run21.mat -1 -1 659 3723845 3726395 +7481667 7496406 14740 1778378.3024 1779115.3628 54.4211 11.7761 93.1632 run21.mat -1 -1 660 3768449 3775819 +7496720 7517396 20677 1779131.1511 1780163.2091 56.0735 11.7767 92.4774 run21.mat -1 -1 660 3775976 3786314 +7517702 7538393 20692 1780178.512 1781214.5674 57.7245 11.7772 92.5739 run21.mat -1 -1 660 3786467 3796813 +7538703 7559377 20675 1781230.2612 1782264.748 59.3769 11.7768 92.5721 run21.mat -1 -1 660 3796968 3807306 +7559682 7577462 17781 1782279.877 1783168.1074 61.023 11.777 92.5999 run21.mat -1 -1 660 3807458 3816349 +7661524 7663499 1976 1787371.8321 1787470.8151 61.0207 11.7762 95.6499 run21.mat -1 -1 661 3858382 3859369 +7663821 7684495 20675 1787487.0482 1788520.3716 62.673 11.7756 92.5144 run21.mat -1 -1 661 3859530 3869868 +7684801 7705496 20696 1788535.6746 1789570.6626 64.322 11.7763 92.5175 run21.mat -1 -1 661 3870021 3880368 +7705803 7726495 20693 1789586.0185 1790620.3452 65.972 11.7763 92.5367 run21.mat -1 -1 661 3880522 3890869 +7726802 7747476 20675 1790635.8221 1791669.2758 67.6253 11.7766 92.6358 run21.mat -1 -1 661 3891022 3901359 +7747782 7757321 9540 1791684.5455 1792160.0345 69.2673 11.7765 92.7717 run21.mat -1 -1 661 3901513 3906282 +7841572 7851774 10203 1796373.2209 1796883.994 69.2674 11.7756 93.2613 run21.mat -1 -1 662 3948410 3953510 +7852085 7872776 20692 1796899.4268 1797932.7312 70.9166 11.7768 92.4717 run21.mat -1 -1 662 3953666 3964012 +7873087 7893774 20688 1797948.3492 1798984.8372 72.571 11.7766 92.5945 run21.mat -1 -1 662 3964168 3974511 +7894082 7914775 20694 1799000.1211 1800035.3136 74.2197 11.7764 92.5981 run21.mat -1 -1 662 3974665 3985013 +7915082 7935754 20673 1800050.6668 1801083.6138 75.8655 11.7758 92.6517 run21.mat -1 -1 662 3985166 3995503 +7936062 7937381 1320 1801098.8946 1801164.3342 77.5249 11.7771 93.0025 run21.mat -1 -1 662 3995657 3996316 +8021373 8039890 18518 1805364.6224 1806289.6622 77.5094 11.7766 93.0558 run21.mat -1 -1 663 4038314 4047573 +8040197 8060877 20681 1806305.0154 1807338.3839 79.1645 11.7764 92.6165 run21.mat -1 -1 663 4047726 4058067 +8061181 8081861 20681 1807353.4692 1808389.1604 80.8104 11.7761 92.5268 run21.mat -1 -1 663 4058219 4068559 +8082171 8102507 20337 1808404.4285 1809420.7775 82.4617 11.7761 92.6502 run21.mat -1 -1 663 4068714 4078883 +288539 308937 20399 1921286.5908 1922306.8116 82.4675 13.4591 92.7066 run22.mat -1 -1 665 157300 167499 +309240 329957 20718 1922321.9679 1923358.7036 80.816 13.46 92.6732 run22.mat -1 -1 665 167651 178010 +330266 350921 20656 1923374.2813 1924406.5132 79.1692 13.4604 92.5807 run22.mat -1 -1 665 178164 188492 +351236 371935 20700 1924422.1413 1925457.0689 77.517 13.4611 92.5427 run22.mat -1 -1 665 188650 199000 +372244 384307 12064 1925472.3993 1926077.261 75.8681 13.4595 92.6061 run22.mat -1 -1 665 199154 205186 +468599 476273 7675 1930290.0762 1930675.8302 75.871 13.4598 93.8078 run22.mat -1 -1 666 247334 251171 +476603 497295 20693 1930692.3336 1931725.2285 74.2211 13.4611 92.593 run22.mat -1 -1 666 251336 261683 +497603 518285 20683 1931740.6345 1932773.0165 72.5714 13.4602 92.6272 run22.mat -1 -1 666 261837 272178 +518598 539297 20700 1932788.7959 1933825.5029 70.9197 13.4603 92.6675 run22.mat -1 -1 666 272334 282684 +539603 558810 19208 1933840.6845 1934799.7555 69.2662 13.4597 92.6285 run22.mat -1 -1 666 282837 292441 +559061 560256 1196 1934812.3079 1934872.0694 69.2727 13.4594 92.1066 run22.mat -1 -1 666 292567 293164 +560563 564387 3825 1934887.4224 1935079.0537 67.6177 13.4633 93.079 run22.mat -1 -1 666 293318 295230 +648463 664375 15913 1939284.4033 1940078.3108 67.6158 13.4593 92.8876 run22.mat -1 -1 667 337270 345226 +664691 685362 20672 1940094.1139 1941128.7756 65.9717 13.4601 92.5452 run22.mat -1 -1 667 345384 355720 +685676 706358 20683 1941144.6054 1942177.1401 64.3149 13.4592 92.6344 run22.mat -1 -1 667 355877 366218 +706673 727355 20683 1942193.0204 1943229.1396 62.6689 13.4598 92.5549 run22.mat -1 -1 667 366376 376717 +727664 744266 16603 1943244.5926 1944074.9066 61.0224 13.4586 92.7852 run22.mat -1 -1 667 376872 385173 +828522 831636 3115 1948284.9905 1948441.6872 61.0097 13.4605 94.8894 run22.mat -1 -1 668 427303 428860 +831949 852656 20708 1948457.4666 1949494.8877 59.3714 13.4595 92.564 run22.mat -1 -1 668 429017 439370 +852966 873656 20691 1949510.3909 1950543.146 57.7257 13.4602 92.5708 run22.mat -1 -1 668 439525 449871 +873962 894657 20696 1950558.4489 1951595.1374 56.0716 13.4603 92.5892 run22.mat -1 -1 668 450024 460372 +894965 915638 20674 1951610.4212 1952642.2056 54.424 13.4605 92.6798 run22.mat -1 -1 668 460526 470863 +915943 924326 8384 1952657.3406 1953075.5265 52.7775 13.4625 92.8826 run22.mat -1 -1 668 471016 475207 +1008357 1019757 11401 1957280.6866 1957847.5302 52.7756 13.4605 93.455 run22.mat -1 -1 669 517225 522925 +1020072 1040758 20687 1957863.5505 1958898.049 51.1307 13.46 92.4423 run22.mat -1 -1 669 523082 533426 +1041066 1061761 20696 1958913.5763 1959949.8759 49.4764 13.4603 92.7041 run22.mat -1 -1 669 533580 543928 +1062069 1082757 20689 1959965.2789 1960999.2791 47.8293 13.4587 92.5873 run22.mat -1 -1 669 544082 554426 +1083068 1103721 20654 1961014.9577 1962048.1747 46.1796 13.4603 92.7656 run22.mat -1 -1 669 554582 564908 +1104026 1104126 101 1962063.5539 1962068.5962 44.518 13.4592 96.1163 run22.mat -1 -1 669 565061 565111 +1188335 1208056 19722 1966278.7627 1967261.9865 44.5306 13.46 93.0118 run22.mat -1 -1 670 607217 617078 +1208363 1229079 20717 1967277.2207 1968315.8998 42.8789 13.461 92.6068 run22.mat -1 -1 670 617232 627590 +1229386 1250058 20673 1968331.1425 1969363.3985 41.2282 13.4596 92.6335 run22.mat -1 -1 670 627744 638080 +1250365 1271058 20694 1969378.8754 1970415.4189 39.5847 13.46 92.6122 run22.mat -1 -1 670 638234 648581 +1271369 1284206 12838 1970430.9719 1971072.9661 37.9304 13.4593 92.8594 run22.mat -1 -1 670 648736 655155 +1368148 1375117 6970 1975268.496 1975617.8522 37.933 13.4605 93.6981 run22.mat -1 -1 671 697128 700612 +1375456 1396138 20683 1975634.5517 1976667.9687 36.2824 13.4594 92.541 run22.mat -1 -1 671 700782 711124 +1396447 1417120 20674 1976683.422 1977716.2219 34.6312 13.4593 92.5286 run22.mat -1 -1 671 711278 721615 +1417425 1438138 20714 1977731.3538 1978769.4897 32.9806 13.4594 92.5948 run22.mat -1 -1 671 721768 732125 +1438447 1459101 20655 1978784.9429 1979815.9518 31.3322 13.4595 92.653 run22.mat -1 -1 671 732279 742606 +1459417 1464045 4629 1979831.6511 1980063.1476 29.6852 13.4596 92.8866 run22.mat -1 -1 671 742764 745079 +1548145 1563237 15093 1984268.7557 1985023.596 29.6853 13.4598 92.8276 run22.mat -1 -1 672 787131 794677 +1563565 1584239 20675 1985039.869 1986075.3433 28.0334 13.4613 92.4841 run22.mat -1 -1 672 794841 805178 +1584546 1605240 20695 1986090.6963 1987123.5166 26.3852 13.4593 92.5877 run22.mat -1 -1 672 805332 815679 +1605547 1626238 20692 1987138.7478 1988172.3109 24.7367 13.4611 92.5234 run22.mat -1 -1 672 815833 826179 +1626545 1643905 17361 1988187.7879 1989058.0478 23.091 13.4594 92.687 run22.mat -1 -1 672 826332 835013 +1728203 1730542 2340 1993271.6656 1993389.4538 23.0883 13.4617 95.1741 run22.mat -1 -1 673 877163 878333 +1730851 1751544 20694 1993404.9071 1994439.2675 21.4362 13.4596 92.5168 run22.mat -1 -1 673 878488 888834 +1751851 1772540 20690 1994454.4987 1995489.7551 19.7943 13.4609 92.6869 run22.mat -1 -1 673 888988 899333 +1772847 1793544 20698 1995505.2352 1996538.5517 18.1411 13.4597 92.5554 run22.mat -1 -1 673 899486 909835 +1793850 1814527 20678 1996553.9782 1997587.1994 16.4927 13.4618 92.5244 run22.mat -1 -1 673 909988 920327 +1814840 1823985 9146 1997602.7283 1998061.8846 14.8455 13.4602 92.6711 run22.mat -1 -1 673 920484 925057 +1908030 1918583 10554 2002262.2191 2002791.0254 14.8405 13.4616 93.2734 run22.mat -1 -1 674 967081 972358 +1918889 1939622 20734 2002806.455 2003841.4771 13.1909 13.4603 92.584 run22.mat -1 -1 674 972511 982878 +1939931 1960604 20674 2003856.677 2004891.738 11.5391 13.4604 92.6622 run22.mat -1 -1 674 983032 993369 +1960911 1981601 20691 2004907.0939 2005941.8536 9.8918 13.4603 92.6341 run22.mat -1 -1 674 993522 1003868 +1981911 2002583 20673 2005957.3566 2006990.2075 8.2428 13.4592 92.7148 run22.mat -1 -1 674 1004023 1014359 +2002891 2003825 935 2007005.6108 2007052.3205 6.5953 13.456 92.0738 run22.mat -1 -1 674 1014513 1014980 +2088116 2106913 18798 2011267.3777 2012207.0674 6.5922 13.4594 92.9058 run22.mat -1 -1 675 1057128 1066527 +2107225 2127923 20699 2012222.7995 2013258.8424 4.9424 13.4592 92.6056 run22.mat -1 -1 675 1066683 1077032 +2128231 2148902 20672 2013274.0148 2014308.2725 3.2943 13.4599 92.6001 run22.mat -1 -1 675 1077186 1087522 +2149210 2169905 20696 2014323.5533 2015357.4509 1.6484 13.4616 92.5693 run22.mat -1 -1 675 1087676 1098024 +2170212 2183904 13693 2015372.8068 2016055.5655 0.00050981 13.4589 92.7642 run22.mat -1 -1 675 1098178 1105024 +2268103 2274182 6080 2020267.6122 2020571.0645 -0.0031479 13.459 94.1266 run22.mat -1 -1 676 1147125 1150165 +2274501 2295191 20691 2020586.891 2021621.397 -1.6462 13.4593 92.6238 run22.mat -1 -1 676 1150324 1160670 +2295509 2316186 20678 2021637.1771 2022671.9851 -3.2971 13.4611 92.6226 run22.mat -1 -1 676 1160829 1171168 +2316493 2337187 20695 2022687.2163 2023719.6928 -4.9463 13.4601 92.5765 run22.mat -1 -1 676 1171321 1181668 +2337493 2358167 20675 2023734.9958 2024769.0992 -6.5912 13.4602 92.6448 run22.mat -1 -1 676 1181821 1192159 +2358474 2363944 5471 2024784.5761 2025059.9102 -8.2435 13.4597 92.8145 run22.mat -1 -1 676 1192313 1195048 +2448010 2462285 14276 2029261.2972 2029976.7477 -8.2483 13.4602 93.0518 run22.mat -1 -1 677 1237082 1244221 +2462605 2483266 20662 2029992.88 2031026.5952 -9.8915 13.4606 92.5289 run22.mat -1 -1 677 1244381 1254711 +2483577 2504284 20708 2031042.1179 2032075.9794 -11.5463 13.4601 92.6176 run22.mat -1 -1 677 1254867 1265221 +2504593 2525269 20677 2032091.5572 2033124.8399 -13.1927 13.4604 92.5691 run22.mat -1 -1 677 1265376 1275714 +2525575 2543824 18250 2033140.2664 2034052.3346 -14.8493 13.4606 92.6967 run22.mat -1 -1 677 1275867 1284992 +2629854 2631567 1714 2038355.7214 2038440.7085 -14.8513 13.4587 97.3882 run22.mat -1 -1 678 1328009 1328865 +2631897 2652551 20655 2038457.0808 2039489.1112 -16.4956 13.459 92.6089 run22.mat -1 -1 678 1329030 1339358 +2652866 2673570 20705 2039504.8673 2040540.7839 -18.1464 13.4586 92.5927 run22.mat -1 -1 678 1339515 1349868 +2673874 2694570 20697 2040555.8662 2041588.6533 -19.7913 13.4597 92.6258 run22.mat -1 -1 678 1350020 1360368 +2694876 2715549 20674 2041603.9592 2042638.2638 -21.4399 13.4603 92.6232 run22.mat -1 -1 678 1360521 1370858 +2715858 2725744 9887 2042653.8415 2043148.1952 -23.0924 13.4604 92.7224 run22.mat -1 -1 678 1371013 1375956 +2809932 2819786 9855 2047359.2997 2047852.0264 -23.0936 13.4615 93.249 run22.mat -1 -1 679 1418052 1422979 +2820106 2840788 20683 2047868.1014 2048900.7439 -24.7412 13.4613 92.5461 run22.mat -1 -1 679 1423139 1433481 +2841096 2861789 20694 2048916.2712 2049953.2088 -26.3876 13.4609 92.6075 run22.mat -1 -1 679 1433635 1443981 +2862097 2882790 20694 2049968.4927 2051002.1229 -28.0349 13.4607 92.5385 run22.mat -1 -1 679 1444135 1454482 +2883096 2903770 20675 2051017.4261 2052050.7676 -29.6846 13.4607 92.7128 run22.mat -1 -1 679 1454635 1464973 +2904076 2905743 1668 2052066.1973 2052150.1035 -31.3296 13.4642 92.0393 run22.mat -1 -1 679 1465126 1465959 +2989832 3007907 18076 2056354.071 2057258.6368 -31.336 13.461 92.8813 run22.mat -1 -1 680 1508006 1517044 +3008230 3028911 20682 2057274.793 2058307.9196 -32.9826 13.4597 92.6118 run22.mat -1 -1 680 1517205 1527546 +3029217 3049899 20683 2058323.1012 2059358.2562 -34.6312 13.4591 92.572 run22.mat -1 -1 680 1527699 1538040 +3050215 3070910 20696 2059374.19 2060409.5474 -36.2835 13.4604 92.552 run22.mat -1 -1 680 1538198 1548546 +3071217 3085624 14408 2060424.9008 2061141.442 -37.9342 13.4597 92.7416 run22.mat -1 -1 680 1548700 1555904 +3169755 3175149 5395 2065350.926 2065621.3901 -37.9353 13.4574 93.7412 run22.mat -1 -1 681 1597971 1600668 +3175477 3196152 20676 2065637.929 2066672.0801 -39.5856 13.4599 92.5014 run22.mat -1 -1 681 1600832 1611170 +3196459 3217154 20696 2066687.6936 2067721.7292 -41.2304 13.4601 92.5548 run22.mat -1 -1 681 1611324 1621672 +3217460 3238153 20694 2067736.9195 2068771.6859 -42.8845 13.4601 92.6371 run22.mat -1 -1 681 1621825 1632171 +3238470 3259133 20664 2068787.4132 2069819.4176 -44.5354 13.4589 92.5684 run22.mat -1 -1 681 1632330 1642662 +3259438 3265642 6205 2069834.6708 2070143.585 -46.1837 13.4593 92.7963 run22.mat -1 -1 681 1642815 1645916 +3349884 3363429 13546 2074357.2252 2075035.0018 -46.1832 13.4592 93.0964 run22.mat -1 -1 682 1688040 1694812 +3363748 3384428 20681 2075051.0837 2076082.8205 -47.831 13.461 92.6609 run22.mat -1 -1 682 1694972 1705312 +3384738 3405411 20674 2076098.3235 2077133.3538 -49.4782 13.4599 92.6513 run22.mat -1 -1 682 1705467 1715804 +3405717 3426413 20697 2077148.7834 2078184.1807 -51.1321 13.4598 92.6036 run22.mat -1 -1 682 1715957 1726305 +3426719 3445682 18964 2078199.6103 2079148.5931 -52.7776 13.4606 92.6947 run22.mat -1 -1 682 1726458 1735941 +3529643 3530531 889 2083345.9125 2083389.9688 -52.7634 13.4551 105.1565 run22.mat -1 -1 683 1777923 1778367 +3530852 3551514 20663 2083405.8946 2084438.8609 -54.4265 13.4599 92.5593 run22.mat -1 -1 683 1778527 1788859 +3551819 3572515 20697 2084454.1725 2085487.9901 -56.0746 13.4596 92.5957 run22.mat -1 -1 683 1789011 1799360 +3572821 3593517 20697 2085503.1717 2086539.9322 -57.7272 13.4606 92.5424 run22.mat -1 -1 683 1799513 1809861 +3593832 3614513 20682 2086555.69 2087588.4134 -59.3741 13.4596 92.6505 run22.mat -1 -1 683 1810019 1820360 +3614821 3625541 10721 2087603.9407 2088140.7948 -61.025 13.4602 92.7869 run22.mat -1 -1 683 1820514 1825873 +3709780 3718750 8971 2092351.7047 2092802.1619 -61.0212 13.4589 93.4644 run22.mat -1 -1 684 1867995 1872480 +3719080 3739774 20695 2092818.7983 2093853.481 -62.6712 13.4595 92.543 run22.mat -1 -1 684 1872645 1882993 +3740079 3760774 20696 2093868.613 2094901.4494 -64.3171 13.461 92.5241 run22.mat -1 -1 684 1883145 1893493 +3761081 3781754 20674 2094916.6836 2095951.351 -65.9737 13.4602 92.6132 run22.mat -1 -1 684 1893647 1903984 +3782059 3802731 20673 2095966.6073 2097000.1568 -67.617 13.4611 92.7213 run22.mat -1 -1 684 1904137 1914473 +3803040 3805542 2503 2097015.4903 2097140.1125 -69.2714 13.4613 92.8973 run22.mat -1 -1 684 1914627 1915879 +3889651 3906892 17242 2101344.6418 2102208.0786 -69.2733 13.4607 93.0338 run22.mat -1 -1 685 1957935 1966555 +3907211 3927874 20664 2102223.9083 2103258.2804 -70.9195 13.4592 92.5647 run22.mat -1 -1 685 1966715 1977047 +3928181 3948884 20704 2103273.6334 2104307.7366 -72.5717 13.4596 92.555 run22.mat -1 -1 685 1977200 1987552 +3949195 3969876 20682 2104323.4183 2105355.9891 -74.2235 13.459 92.6307 run22.mat -1 -1 685 1987708 1998049 +3970185 3985421 15237 2105371.486 2106133.6175 -75.8697 13.4582 92.706 run22.mat -1 -1 685 1998204 2005822 +4069768 4074211 4444 2110351.1189 2110574.4461 -75.8707 13.4597 93.9376 run22.mat -1 -1 686 2047997 2050219 +4074541 4095233 20693 2110591.0825 2111624.4092 -77.5178 13.4598 92.5026 run22.mat -1 -1 686 2050384 2060730 +4095539 4116217 20679 2111639.6515 2112674.1037 -79.1696 13.4602 92.6464 run22.mat -1 -1 686 2060883 2071223 +4116525 4137234 20710 2112689.6341 2113723.6197 -80.8192 13.4597 92.6328 run22.mat -1 -1 686 2071377 2081732 +4137540 4158196 20657 2113739.0368 2114773.3711 -82.4665 13.46 92.6188 run22.mat -1 -1 686 2081885 2092213 +4158505 4165541 7037 2114788.8243 2115140.694 -82.4625 15.1432 92.8181 run22.mat -1 -1 686 2092368 2095886 +4251649 4264360 12712 2119447.9345 2120081.9331 -82.4647 15.1437 93.052 run22.mat -1 -1 687 2138941 2145297 +4264667 4285355 20689 2120097.2863 2121130.2832 -80.8183 15.1439 92.5202 run22.mat -1 -1 687 2145451 2155795 +4285661 4306356 20696 2121145.4648 2122183.2942 -79.1648 15.144 92.5784 run22.mat -1 -1 687 2155948 2166296 +4306662 4327338 20677 2122198.6028 2123230.91 -77.515 15.1446 92.5846 run22.mat -1 -1 687 2166449 2176787 +4327656 4347440 19785 2123246.9447 2124234.0563 -75.8654 15.143 92.796 run22.mat -1 -1 687 2176946 2186839 +4432019 4452655 20637 2128465.2703 2129499.2085 -74.2158 15.1437 92.741 run22.mat -1 -1 688 2229130 2239449 +4452963 4473634 20672 2129514.6115 2130546.467 -72.5713 15.1443 92.5717 run22.mat -1 -1 688 2239603 2249939 +4473941 4494634 20694 2130561.8202 2131595.657 -70.9189 15.1426 92.6223 run22.mat -1 -1 688 2250093 2260440 +4494941 4515615 20675 2131610.8912 2132645.4111 -69.2713 15.1445 92.6349 run22.mat -1 -1 688 2260593 2270930 +4515923 4527501 11579 2132660.5806 2133236.6843 -67.6199 15.142 92.6899 run22.mat -1 -1 688 2271084 2276873 +4611546 4619677 8132 2137440.9413 2137847.6234 -67.625 15.1435 93.3454 run22.mat -1 -1 689 2318898 2322964 +4619993 4640694 20702 2137863.4264 2138900.6778 -65.9767 15.1446 92.5469 run22.mat -1 -1 689 2323122 2333473 +4641001 4661678 20678 2138916.0308 2139948.1379 -64.3224 15.1432 92.5464 run22.mat -1 -1 689 2333626 2343965 +4661986 4682699 20714 2139963.5412 2140998.5163 -62.6728 15.1432 92.5192 run22.mat -1 -1 689 2344119 2354476 +4683004 4703674 20671 2141013.7118 2142049.0718 -61.0264 15.144 92.5932 run22.mat -1 -1 689 2354628 2364964 +4703982 4707341 3360 2142064.3526 2142231.0028 -59.3746 15.1421 93.0709 run22.mat -1 -1 689 2365118 2366798 +4791495 4807997 16503 2146440.6297 2147263.895 -59.3806 15.1441 93.0929 run22.mat -1 -1 690 2408877 2417128 +4808308 4828995 20688 2147279.4482 2148313.8535 -57.7285 15.1437 92.5574 run22.mat -1 -1 690 2417283 2427627 +4829302 4849978 20677 2148329.0877 2149361.9746 -56.0759 15.1427 92.6573 run22.mat -1 -1 690 2427781 2438119 +4850296 4870974 20679 2149378.006 2150411.5737 -54.4269 15.1437 92.6132 run22.mat -1 -1 690 2438278 2448618 +4871282 4887400 16119 2150426.9769 2151233.5895 -52.7791 15.1403 92.7025 run22.mat -1 -1 690 2448772 2456831 +4971414 4975082 3669 2155435.8449 2155619.3 -52.7786 15.1454 95.3193 run22.mat -1 -1 691 2498840 2500674 +4975401 4996096 20696 2155635.25 2156670.25 -51.1272 15.1433 92.4769 run22.mat -1 -1 691 2500834 2511182 +4996400 5017097 20698 2156685.45 2157718.5288 -49.4747 15.1446 92.5945 run22.mat -1 -1 691 2511334 2521683 +5017403 5038077 20675 2157733.8317 2158768.8647 -47.8261 15.1441 92.5895 run22.mat -1 -1 691 2521836 2532173 +5038384 5059077 20694 2158784.2236 2159819.0099 -46.1799 15.144 92.696 run22.mat -1 -1 691 2532327 2542673 +5059385 5067260 7876 2159834.4661 2160228.6658 -44.5318 15.1425 92.9478 run22.mat -1 -1 691 2542827 2546765 +5151562 5163418 11857 2164441.5674 2165035.9667 -44.5316 15.1437 92.8937 run22.mat -1 -1 692 2588918 2594846 +5163728 5184396 20669 2165051.5949 2166085.5231 -42.8777 15.1438 92.4987 run22.mat -1 -1 692 2595001 2605336 +5184703 5205396 20694 2166101 2167135.7876 -41.2313 15.1437 92.6163 run22.mat -1 -1 692 2605489 2615836 +5205703 5226396 20694 2167151.0218 2168182.706 -39.5809 15.1437 92.5618 run22.mat -1 -1 692 2615990 2626337 +5226702 5247360 20659 2168198.1325 2169231.8633 -37.9317 15.1438 92.7801 run22.mat -1 -1 692 2626490 2636819 +5331605 5351663 20059 2173446.4363 2174446.4969 -36.2853 15.1439 92.8791 run22.mat -1 -1 693 2678943 2688973 +5351982 5372657 20676 2174462.5787 2175496.02 -34.6355 15.1438 92.648 run22.mat -1 -1 693 2689132 2699470 +5372963 5393657 20695 2175511.3229 2176547.1469 -32.9871 15.1445 92.5947 run22.mat -1 -1 693 2699623 2709971 +5393964 5414657 20694 2176562.3811 2177599.6368 -31.3381 15.1445 92.6103 run22.mat -1 -1 693 2710124 2720471 +5414962 5427398 12437 2177614.89 2178234.3217 -29.6907 15.1449 92.6638 run22.mat -1 -1 693 2720624 2726842 +5511407 5518720 7314 2182436.2685 2182801.2839 -29.6896 15.1419 93.6603 run22.mat -1 -1 694 2768848 2772505 +5519042 5539738 20697 2182817.517 2183851.7576 -28.0394 15.1435 92.5117 run22.mat -1 -1 694 2772666 2783014 +5540045 5560736 20692 2183867.2345 2184900.7593 -26.3896 15.1448 92.605 run22.mat -1 -1 694 2783168 2793514 +5561043 5581721 20679 2184915.9905 2185950.1355 -24.7409 15.1428 92.6173 run22.mat -1 -1 694 2793667 2804007 +5582031 5602696 20666 2185965.7668 2186999.5374 -23.0946 15.143 92.6858 run22.mat -1 -1 694 2804162 2814495 +5603003 5607239 4237 2187015.0143 2187228.2092 -21.4369 15.1385 93.0151 run22.mat -1 -1 694 2814648 2816766 +5691524 5707136 15613 2191442.5908 2192221.4576 -21.44 15.1437 93.1333 run22.mat -1 -1 695 2858911 2866717 +5707449 5728137 20689 2192237.1109 2193272.4672 -19.787 15.1432 92.643 run22.mat -1 -1 695 2866873 2877218 +5728445 5749132 20688 2193287.9946 2194321.7785 -18.1418 15.1438 92.5607 run22.mat -1 -1 695 2877372 2887716 +5749442 5770121 20680 2194337.2817 2195370.0566 -16.4889 15.1439 92.6546 run22.mat -1 -1 695 2887871 2898211 +5770428 5787279 16852 2195385.2878 2196227.6703 -14.8468 15.143 92.7321 run22.mat -1 -1 695 2898364 2906790 +5871519 5874424 2906 2200441.7055 2200585.8313 -14.8494 15.1451 95.6409 run22.mat -1 -1 696 2948912 2950365 +5874743 5895419 20677 2200601.6579 2201635.0402 -13.193 15.1412 92.4774 run22.mat -1 -1 696 2950524 2960863 +5895725 5916419 20695 2201650.3431 2202685.3054 -11.5399 15.1443 92.5924 run22.mat -1 -1 696 2961016 2971363 +5916726 5937415 20690 2202700.6531 2203736.0177 -9.8934 15.144 92.6068 run22.mat -1 -1 696 2971516 2981862 +5937724 5958401 20678 2203751.3481 2204784.8847 -8.2488 15.144 92.6194 run22.mat -1 -1 696 2982016 2992355 +5958705 5967359 8655 2204800.2103 2205233.6362 -6.5914 15.1452 92.8753 run22.mat -1 -1 696 2992507 2996834 +6051430 6062511 11082 2209436.5967 2209990.8224 -6.5994 15.146 93.1779 run22.mat -1 -1 697 3038871 3044412 +6062822 6083507 20686 2210006.3789 2211039.9215 -4.9468 15.144 92.5123 run22.mat -1 -1 697 3044568 3054911 +6083816 6104501 20686 2211055.3745 2212091.1881 -3.2983 15.1435 92.5829 run22.mat -1 -1 697 3055065 3065408 +6104809 6125504 20696 2212106.7155 2213142.3852 -1.6517 15.1431 92.6199 run22.mat -1 -1 697 3065562 3075910 +6125811 6146468 20658 2213157.7416 2214188.8434 -0.0029735 15.1448 92.7056 run22.mat -1 -1 697 3076064 3086393 +6146775 6147218 444 2214204.0746 2214226.0532 1.6531 15.1364 92.3056 run22.mat -1 -1 697 3086546 3086768 +6231359 6250772 19414 2218435.4497 2219404.1069 1.6472 15.1431 93.0876 run22.mat -1 -1 698 3128840 3138547 +6251088 6271763 20676 2219420.0407 2220455.9895 3.2959 15.1438 92.6183 run22.mat -1 -1 698 3138705 3149043 +6272070 6292744 20675 2220471.2207 2221503.5134 4.948 15.1448 92.6016 run22.mat -1 -1 698 3149197 3159534 +6293057 6313743 20687 2221519.1667 2222551.7472 6.595 15.1437 92.5983 run22.mat -1 -1 698 3159691 3170034 +6314052 6327258 13207 2222567.2032 2223227.8546 8.2473 15.1444 92.7813 run22.mat -1 -1 698 3170189 3176792 +6411385 6417984 6600 2227434.3946 2227764.5654 8.2452 15.144 93.9605 run22.mat -1 -1 699 3218857 3222157 +6418295 6438985 20691 2227780.244 2228814.9261 9.8983 15.1424 92.522 run22.mat -1 -1 699 3222312 3232657 +6439292 6459985 20694 2228830.0493 2229863.3811 11.5425 15.1438 92.662 run22.mat -1 -1 699 3232811 3243158 +6460290 6481006 20717 2229878.6979 2230916.5717 13.1913 15.1424 92.609 run22.mat -1 -1 699 3243311 3253669 +6481312 6501985 20674 2230931.9982 2231964.3519 14.8421 15.144 92.6807 run22.mat -1 -1 699 3253822 3264159 +6502291 6507277 4987 2231979.6033 2232228.9992 16.4909 15.1423 92.7833 run22.mat -1 -1 699 3264312 3266805 +6591303 6606066 14764 2236431.0401 2237170.7289 16.4885 15.1441 93.0371 run22.mat -1 -1 700 3308820 3316202 +6606393 6627085 20693 2237187.0823 2238219.437 18.1386 15.1435 92.5855 run22.mat -1 -1 700 3316365 3326712 +6627391 6648066 20676 2238234.8635 2239267.2858 19.784 15.1444 92.625 run22.mat -1 -1 700 3326865 3337203 +6648374 6669068 20695 2239282.7381 2240317.977 21.4334 15.144 92.5825 run22.mat -1 -1 700 3337357 3347704 +6669379 6687138 17760 2240333.6556 2241224.3274 23.0842 15.1434 92.6598 run22.mat -1 -1 700 3347860 3356740 +6771407 6773506 2100 2245434.9792 2245539.9494 23.0873 15.1458 96.7306 run22.mat -1 -1 701 3398876 3399926 +6773832 6794494 20663 2245556.3595 2246589.9443 24.7368 15.1435 92.6377 run22.mat -1 -1 701 3400089 3410420 +6794805 6815485 20681 2246605.6261 2247640.5352 26.3836 15.1441 92.5503 run22.mat -1 -1 701 3410575 3420916 +6815795 6836486 20692 2247656.2259 2248691.5769 28.0329 15.1428 92.5524 run22.mat -1 -1 701 3421071 3431417 +6836793 6857482 20690 2248706.8081 2249738.7355 29.6867 15.1418 92.5979 run22.mat -1 -1 701 3431570 3441915 +6857792 6867197 9406 2249754.2385 2250225.3415 31.3343 15.1419 92.8204 run22.mat -1 -1 701 3442070 3446773 +6951504 6961780 10277 2254443.1024 2254953.9769 31.3372 15.1425 93.135 run22.mat -1 -1 702 3488928 3494067 +6962097 6982785 20689 2254969.8302 2256005.1727 32.9849 15.1437 92.4731 run22.mat -1 -1 702 3494225 3504570 +6983095 7003784 20690 2256020.5527 2257056.4338 34.6357 15.1432 92.5562 run22.mat -1 -1 702 3504725 3515069 +7004091 7024786 20696 2257071.9107 2258105.1039 36.2856 15.1434 92.5117 run22.mat -1 -1 702 3515223 3525571 +7025092 7045763 20672 2258120.4068 2259154.7721 37.9327 15.1438 92.6743 run22.mat -1 -1 702 3525724 3536060 +7046071 7047257 1187 2259170.2995 2259230.0897 39.598 15.1437 92.8644 run22.mat -1 -1 702 3536214 3536807 +7131572 7150215 18644 2263445.3184 2264375.2257 39.5815 15.143 92.9274 run22.mat -1 -1 703 3578966 3588288 +7150537 7171207 20671 2264391.4588 2265426.6053 41.2314 15.1427 92.5238 run22.mat -1 -1 703 3588449 3598785 +7171511 7192207 20697 2265441.6876 2266476.1533 42.8792 15.1435 92.6333 run22.mat -1 -1 703 3598937 3609285 +7192511 7213186 20676 2266491.4789 2267527.4789 44.5303 15.1434 92.5559 run22.mat -1 -1 703 3609437 3619775 +7213496 7227357 13862 2267542.9819 2268235.4518 46.1806 15.1447 92.6954 run22.mat -1 -1 703 3619930 3626861 +7311384 7317357 5974 2272437.7124 2272735.7829 46.1786 15.1422 94.0402 run22.mat -1 -1 704 3668876 3671856 +7317672 7338369 20698 2272751.4141 2273784.4391 47.825 15.1439 92.4945 run22.mat -1 -1 704 3672020 3682369 +7338674 7359366 20693 2273799.574 2274834.9187 49.4746 15.1423 92.6106 run22.mat -1 -1 704 3682522 3692868 +7359674 7380347 20674 2274850.4461 2275884.6196 51.1254 15.1439 92.5989 run22.mat -1 -1 704 3693022 3703359 +7380655 7401328 20674 2275900.1501 2276934.1242 52.7738 15.1437 92.5981 run22.mat -1 -1 704 3703513 3713850 +7401638 7407157 5520 2276949.5043 2277223.3185 54.4246 15.1453 92.6201 run22.mat -1 -1 704 3714005 3716765 +7491423 7505653 14231 2281437.1525 2282150.5954 54.4214 15.1434 93.0281 run22.mat -1 -1 705 3758899 3766015 +7505962 7526629 20668 2282166.1763 2283195.9766 56.0727 15.1431 92.6276 run22.mat -1 -1 705 3766169 3776503 +7526939 7547630 20692 2283211.6079 2284247.7374 57.7247 15.1442 92.5387 run22.mat -1 -1 705 3776658 3787005 +7547939 7568629 20691 2284263.3152 2285300.3096 59.3752 15.1419 92.6292 run22.mat -1 -1 705 3787159 3797504 +7568937 7587216 18280 2285315.5935 2286228.4164 61.0232 15.1435 92.6937 run22.mat -1 -1 705 3797658 3806798 +7671190 7672728 1539 2290425.8397 2290503.3755 61.0196 15.1448 97.093 run22.mat -1 -1 706 3848787 3849556 +7673039 7693710 20672 2290519.054 2291553.048 62.6711 15.1427 92.5446 run22.mat -1 -1 706 3849712 3860048 +7694016 7714709 20694 2291568.2296 2292604.2666 64.3238 15.1437 92.6228 run22.mat -1 -1 706 3860201 3870547 +7715015 7735691 20677 2292619.5725 2293650.1248 65.9722 15.144 92.5792 run22.mat -1 -1 706 3870700 3881039 +7735998 7756692 20695 2293665.356 2294701.946 67.6231 15.1434 92.5816 run22.mat -1 -1 706 3881193 3891540 +7757001 7767076 10076 2294717.3992 2295219.3906 69.2676 15.1424 92.8383 run22.mat -1 -1 706 3891694 3896732 +7851370 7861011 9642 2299434.4707 2299918.2388 69.2658 15.1433 93.3456 run22.mat -1 -1 707 3938881 3943702 +7861323 7882009 20687 2299933.8421 2300966.5207 70.9186 15.1443 92.573 run22.mat -1 -1 707 3943858 3954201 +7882315 7903011 20697 2300981.7023 2302016.5307 72.5682 15.1438 92.5657 run22.mat -1 -1 707 3954354 3964703 +7903318 7924012 20695 2302031.7619 2303067.4581 74.2179 15.1439 92.5613 run22.mat -1 -1 707 3964856 3975203 +7924319 7944989 20671 2303082.6923 2304116.1613 75.8652 15.1429 92.6986 run22.mat -1 -1 707 3975357 3985693 +7945298 7947156 1859 2304131.4918 2304223.6728 77.5141 15.1405 92.6311 run22.mat -1 -1 707 3985847 3986776 +8031240 8049215 17976 2308429.707 2309328.1346 77.5121 15.1439 93.024 run22.mat -1 -1 708 4028820 4037808 +8049524 8070191 20668 2309343.468 2310377.1868 79.163 15.1433 92.5679 run22.mat -1 -1 708 4037962 4048296 +8070498 8091209 20712 2310392.6668 2311427.5788 80.8134 15.1433 92.5644 run22.mat -1 -1 708 4048450 4058806 +8091519 8111842 20324 2311442.9619 2312460.9933 82.4626 15.1443 92.6004 run22.mat -1 -1 708 4058961 4069123 +283038 303447 20410 2409819.7671 2410841.6648 82.4601 16.8274 92.7901 run23.mat -1 -1 710 156900 167104 +303759 324438 20680 2410857.1441 2411890.279 80.8127 16.8279 92.6225 run23.mat -1 -1 710 167260 177600 +324753 345460 20708 2411906.0323 2412943.0816 79.1692 16.8266 92.5257 run23.mat -1 -1 710 177758 188112 +345765 366457 20693 2412958.2135 2413992.9486 77.5142 16.8273 92.4488 run23.mat -1 -1 710 188264 198611 +366764 378809 12046 2414008.1798 2414609.7376 75.8678 16.8267 92.6429 run23.mat -1 -1 710 198765 204787 +462935 470638 7704 2418815.2968 2419200.7987 75.8724 16.8248 93.4462 run23.mat -1 -1 711 246852 250704 +470943 491651 20709 2419215.9337 2420252.9476 74.2193 16.8277 92.5461 run23.mat -1 -1 711 250856 261210 +491963 512638 20676 2420268.6797 2421300.9165 72.5717 16.8263 92.5992 run23.mat -1 -1 711 261366 271704 +512950 533646 20697 2421316.6486 2422351.1084 70.9167 16.827 92.5214 run23.mat -1 -1 711 271860 282209 +533963 554620 20658 2422366.8388 2423398.5222 69.2706 16.8289 92.6487 run23.mat -1 -1 711 282367 292697 +554924 558729 3806 2423413.7251 2423604 67.6205 16.8268 92.6061 run23.mat -1 -1 711 292849 294751 +643063 658961 15899 2427822.7898 2428616.2968 67.6191 16.8271 93.0193 run23.mat -1 -1 712 336919 344869 +659268 679963 20696 2428631.7737 2429669.2824 65.9726 16.8266 92.672 run23.mat -1 -1 712 345023 355371 +680271 700962 20692 2429684.6883 2430717.565 64.3197 16.8276 92.6318 run23.mat -1 -1 712 355525 365871 +701271 721962 20692 2430733.2594 2431766.447 62.6694 16.8271 92.5738 run23.mat -1 -1 712 366025 376371 +722268 738828 16561 2431781.6316 2432609.5513 61.0245 16.8271 92.8277 run23.mat -1 -1 712 376524 384805 +822825 826099 3275 2436812.9887 2436975.2385 61.0243 16.8238 95.4124 run23.mat -1 -1 713 426805 428442 +826425 847103 20679 2436991.2946 2438024.3648 59.3706 16.8273 92.4881 run23.mat -1 -1 713 428605 438945 +847411 859236 11826 2438039.6456 2438632.3505 57.7219 16.8271 92.6807 run23.mat -1 -1 713 439099 445011 +859486 868103 8618 2438644.7537 2439073.8412 57.7241 16.8288 92.5949 run23.mat -1 -1 713 445136 449445 +868409 889104 20696 2439089.1444 2440126.1985 56.0711 16.827 92.5785 run23.mat -1 -1 713 449598 459946 +889410 910081 20672 2440141.38 2441173.5314 54.4239 16.8272 92.591 run23.mat -1 -1 713 460099 470435 +910390 918729 8340 2441189.0439 2441606.7942 52.7748 16.8267 92.7444 run23.mat -1 -1 713 470589 474759 +1002933 1014301 11369 2445814.7416 2446386.514 52.7751 16.8254 93.2064 run23.mat -1 -1 714 516863 522547 +1014632 1035322 20691 2446403.1024 2447435.906 51.1291 16.8283 92.5376 run23.mat -1 -1 714 522712 533058 +1035633 1056310 20678 2447451.4593 2448484.5666 49.4759 16.8275 92.6252 run23.mat -1 -1 714 533213 543553 +1056625 1077303 20679 2448500.3197 2449534.5025 47.8274 16.8279 92.6131 run23.mat -1 -1 714 543710 554050 +1077610 1098285 20676 2449549.8584 2450583.1801 46.1799 16.8263 92.7512 run23.mat -1 -1 714 554203 564541 +1098590 1098727 138 2450598.5467 2450605.4492 44.545 16.8286 93.6955 run23.mat -1 -1 714 564694 564762 +1182970 1202641 19672 2454818.2342 2455800.7234 44.5335 16.8266 92.9031 run23.mat -1 -1 715 606885 616721 +1202947 1223632 20686 2455815.9657 2456852.034 42.8782 16.8275 92.5256 run23.mat -1 -1 715 616874 627217 +1223943 1244637 20695 2456867.5872 2457902.5445 41.232 16.8278 92.4673 run23.mat -1 -1 715 627373 637720 +1244947 1265622 20676 2457918.0477 2458950.194 39.5823 16.8271 92.6356 run23.mat -1 -1 715 637875 648213 +1265930 1278807 12878 2458965.7245 2459609.5355 37.938 16.8268 92.7127 run23.mat -1 -1 715 648367 654806 +1362902 1369740 6839 2463814.3701 2464157.8403 37.9379 16.8258 93.9852 run23.mat -1 -1 716 696855 700274 +1370066 1390721 20656 2464174.2751 2465207.6953 36.2827 16.8272 92.4812 run23.mat -1 -1 716 700437 710765 +1391031 1411723 20693 2465223.2007 2466257.3847 34.6337 16.8279 92.6312 run23.mat -1 -1 716 710920 721267 +1412034 1432726 20693 2466272.6829 2467306.4371 32.9829 16.8269 92.6007 run23.mat -1 -1 716 721422 731768 +1433043 1453707 20665 2467322.2932 2468354.7219 31.3327 16.8268 92.6348 run23.mat -1 -1 716 731927 742260 +1454015 1458687 4673 2468370.1248 2468603.7714 29.6831 16.8285 92.6007 run23.mat -1 -1 716 742414 744750 +1542994 1558164 15171 2472818.806 2473578.9662 29.6829 16.8273 93.1658 run23.mat -1 -1 717 786905 794490 +1558497 1579187 20691 2473595.6197 2474629.3489 28.0318 16.8271 92.5329 run23.mat -1 -1 717 794657 805002 +1579493 1600183 20691 2474644.5305 2475681.4345 26.3833 16.8273 92.5 run23.mat -1 -1 717 805155 815501 +1600489 1621165 20677 2475696.7374 2476728.7917 24.7354 16.8269 92.5785 run23.mat -1 -1 717 815654 825992 +1621473 1638786 17314 2476744.1947 2477609.4613 23.0885 16.8268 92.6502 run23.mat -1 -1 717 826146 834803 +1722896 1725282 2387 2481815.6568 2481934.9817 23.0904 16.8217 95.2599 run23.mat -1 -1 718 876860 878053 +1725598 1746282 20685 2481950.785 2482985.3278 21.4376 16.8274 92.5297 run23.mat -1 -1 718 878211 888554 +1746592 1767266 20675 2483000.8338 2484032.9067 19.7883 16.8275 92.5889 run23.mat -1 -1 718 888709 899046 +1767577 1788283 20707 2484048.3364 2485085.9048 18.1425 16.8266 92.5836 run23.mat -1 -1 718 899201 909555 +1788593 1809264 20672 2485101.408 2486133.2154 16.4928 16.8269 92.5994 run23.mat -1 -1 718 909710 920046 +1809569 1818666 9098 2486148.4684 2486601.568 14.851 16.826 92.5876 run23.mat -1 -1 718 920198 924747 +1902909 1913542 10634 2490815.5984 2491347.2189 14.8409 16.827 93.2134 run23.mat -1 -1 719 966870 972187 +1913876 1934566 20691 2491363.7896 2492399.2707 13.1927 16.826 92.4748 run23.mat -1 -1 719 972354 982700 +1934871 1955544 20674 2492414.4027 2493449.0434 11.5427 16.827 92.6273 run23.mat -1 -1 719 982852 993189 +1955852 1976545 20694 2493464.4498 2494497.3812 9.8961 16.8279 92.6336 run23.mat -1 -1 719 993343 1003690 +1976851 1997504 20654 2494512.6842 2495544.3112 8.2459 16.8276 92.6949 run23.mat -1 -1 719 1003843 1014170 +1997812 1998726 915 2495559.4649 2495604.9133 6.6048 16.8282 92.1569 run23.mat -1 -1 719 1014324 1014781 +2083040 2101884 18845 2499824.29 2500764.441 6.5943 16.8262 92.8638 run23.mat -1 -1 720 1056940 1066362 +2102207 2122886 20680 2500780.3493 2501813.7709 4.9405 16.8274 92.589 run23.mat -1 -1 720 1066524 1076864 +2123195 2143886 20692 2501829.1044 2502863.7637 3.2949 16.8273 92.5204 run23.mat -1 -1 720 1077018 1087364 +2144190 2164886 20697 2502879.0893 2503915.4582 1.6445 16.8261 92.6223 run23.mat -1 -1 720 1087516 1097865 +2165190 2178826 13637 2503930.5406 2504613.1443 -0.0030861 16.8272 92.7417 run23.mat -1 -1 720 1098017 1104835 +2262929 2269106 6178 2508816.996 2509127.2702 -0.0044189 16.8277 94.4296 run23.mat -1 -1 721 1146888 1149977 +2269444 2290126 20683 2509144.1953 2510178.2862 -1.6507 16.827 92.4061 run23.mat -1 -1 721 1150146 1160487 +2290435 2311109 20675 2510193.6197 2511225.8201 -3.2997 16.8269 92.5782 run23.mat -1 -1 721 1160642 1170980 +2311416 2332110 20695 2511241.297 2512276.5864 -4.947 16.8276 92.5227 run23.mat -1 -1 721 1171133 1181480 +2332418 2353089 20672 2512292.1137 2513326.1932 -6.5939 16.8275 92.7304 run23.mat -1 -1 721 1181634 1191970 +2353403 2358705 5303 2513342.023 2513605.8444 -8.2432 16.8263 92.6995 run23.mat -1 -1 721 1192127 1194778 +2443007 2457525 14519 2517820.7869 2518548.2055 -8.2461 16.8263 93.1242 run23.mat -1 -1 722 1236931 1244191 +2457832 2478526 20695 2518563.6824 2519599.1923 -9.8947 16.8266 92.531 run23.mat -1 -1 722 1244344 1254691 +2478832 2499528 20697 2519614.4953 2520645.6013 -11.5404 16.8266 92.6236 run23.mat -1 -1 722 1254844 1265193 +2499834 2520525 20692 2520660.9042 2521697.3231 -13.1906 16.8264 92.5437 run23.mat -1 -1 722 1265346 1275692 +2520835 2538785 17951 2521712.7031 2522610.5552 -14.8437 16.8273 92.7382 run23.mat -1 -1 722 1275847 1284822 +2622869 2624626 1758 2526814.3839 2526902.9603 -14.8453 16.8306 95.0564 run23.mat -1 -1 723 1326866 1327744 +2624940 2645630 20691 2526918.7901 2527955.8768 -16.4888 16.8273 92.6113 run23.mat -1 -1 723 1327901 1338247 +2645945 2666627 20683 2527971.3941 2529004.0026 -18.1415 16.8273 92.6046 run23.mat -1 -1 723 1338405 1348746 +2666935 2687627 20693 2529019.2834 2530051.974 -19.7877 16.8274 92.6083 run23.mat -1 -1 723 1348900 1359247 +2687932 2708629 20698 2530067.3501 2531101.3376 -21.4378 16.8272 92.5433 run23.mat -1 -1 723 1359399 1369748 +2708935 2718645 9711 2531116.6408 2531604.2743 -23.0919 16.8275 92.8204 run23.mat -1 -1 723 1369901 1374756 +2802748 2812886 10139 2535808.6707 2536314.6094 -23.0929 16.827 93.427 run23.mat -1 -1 724 1416810 1421879 +2813205 2833888 20684 2536330.5661 2537366.5341 -24.7388 16.8268 92.5272 run23.mat -1 -1 724 1422038 1432380 +2834193 2854889 20697 2537381.9133 2538415.2513 -26.3913 16.8276 92.5919 run23.mat -1 -1 724 1432533 1442881 +2855195 2875867 20673 2538430.5571 2539465.0441 -28.0387 16.8271 92.5611 run23.mat -1 -1 724 1443034 1453371 +2876176 2896847 20672 2539480.3745 2540513.4416 -29.691 16.8269 92.7061 run23.mat -1 -1 724 1453525 1463861 +2897158 2898665 1508 2540529.1202 2540605.0932 -31.3482 16.8251 92.3344 run23.mat -1 -1 724 1464017 1464770 +2982989 3001307 18319 2544820.9804 2545735.6261 -31.3374 16.8268 92.9258 run23.mat -1 -1 725 1506934 1516108 +3001631 3022307 20677 2545751.9633 2546786.9309 -32.9884 16.8275 92.5191 run23.mat -1 -1 725 1516255 1526594 +3022617 3043295 20679 2546802.3725 2547838.1642 -34.6345 16.827 92.5877 run23.mat -1 -1 725 1526749 1537088 +3043612 3064289 20678 2547854.0208 2548886.5109 -36.2841 16.8269 92.5912 run23.mat -1 -1 725 1537247 1547586 +3064595 3078744 14150 2548901.6955 2549609.0865 -37.9334 16.8285 92.7505 run23.mat -1 -1 725 1547739 1554814 +3164896 3170590 5695 2553916.919 2554201.4987 -37.9291 16.8251 94.2764 run23.mat -1 -1 726 1597891 1600738 +3170921 3191610 20690 2554217.9516 2555254.5416 -39.5787 16.8264 92.531 run23.mat -1 -1 726 1600904 1611249 +3191920 3212611 20692 2555269.9216 2556301.1179 -41.2322 16.8271 92.5078 run23.mat -1 -1 726 1611404 1621750 +3212919 3233611 20693 2556316.5212 2557352.4773 -42.8764 16.8273 92.5143 run23.mat -1 -1 726 1621904 1632251 +3233919 3254592 20674 2557368.0046 2558401.2254 -44.5324 16.8268 92.6665 run23.mat -1 -1 726 1632405 1642741 +3254898 3260704 5807 2558416.407 2558706.2945 -46.1731 16.8269 92.9478 run23.mat -1 -1 726 1642894 1645797 +3344773 3358712 13940 2562911.9177 2563608.1254 -46.1802 16.8265 93.213 run23.mat -1 -1 727 1687834 1694804 +3359019 3379733 20715 2563623.3566 2564657.6579 -47.8313 16.8286 92.5656 run23.mat -1 -1 727 1694957 1705315 +3380040 3400714 20675 2564673.138 2565707.3833 -49.4783 16.8267 92.6121 run23.mat -1 -1 727 1705469 1715806 +3401020 3421710 20691 2565722.8098 2566756.7519 -51.1295 16.8268 92.6913 run23.mat -1 -1 727 1715959 1726304 +3422018 3440584 18567 2566772.2783 2567702.7629 -52.7822 16.8267 92.7067 run23.mat -1 -1 727 1726458 1735741 +3524643 3525811 1169 2571903.8761 2571962.2874 -52.7787 16.8255 97.7115 run23.mat -1 -1 728 1777773 1778357 +3526129 3546812 20684 2571978.1904 2573014.641 -54.4312 16.8274 92.6659 run23.mat -1 -1 728 1778516 1788858 +3547123 3567815 20693 2573030.197 2574061.2406 -56.0789 16.8266 92.5326 run23.mat -1 -1 728 1789013 1799360 +3568122 3588815 20694 2574076.7175 2575113.3408 -57.7294 16.827 92.6243 run23.mat -1 -1 728 1799513 1809860 +3589119 3609797 20679 2575128.5503 2576161.3197 -59.3764 16.8275 92.6056 run23.mat -1 -1 728 1810012 1820352 +3610109 3620444 10336 2576176.9858 2576695.16 -61.0257 16.827 92.7591 run23.mat -1 -1 728 1820508 1825676 +3704492 3713973 9482 2580897.1901 2581370.3894 -61.0233 16.8263 93.3314 run23.mat -1 -1 729 1867701 1872442 +3714278 3734970 20693 2581385.7655 2582420.8717 -62.671 16.8267 92.6055 run23.mat -1 -1 729 1872595 1882941 +3735278 3755954 20677 2582436.4022 2583468.6072 -64.321 16.827 92.6365 run23.mat -1 -1 729 1883095 1893434 +3756260 3776953 20694 2583483.913 2584520.3287 -65.9724 16.828 92.5813 run23.mat -1 -1 729 1893587 1903934 +3777261 3797934 20674 2584535.856 2585570.0323 -67.6195 16.8279 92.6149 run23.mat -1 -1 729 1904088 1914424 +3798241 3800264 2024 2585585.5123 2585685.9516 -69.2701 16.829 92.5489 run23.mat -1 -1 729 1914578 1915590 +3884514 3902273 17760 2589899.4574 2590786.3106 -69.2693 16.8281 93.0536 run23.mat -1 -1 730 1957717 1966596 +3902599 3923295 20697 2590802.4844 2591836.593 -70.9166 16.8272 92.5074 run23.mat -1 -1 730 1966759 1977108 +3923602 3944278 20677 2591852.073 2592884.4513 -72.5699 16.8268 92.5481 run23.mat -1 -1 730 1977261 1987600 +3944586 3965275 20690 2592899.8573 2593934.5603 -74.2151 16.8267 92.5885 run23.mat -1 -1 730 1987754 1998099 +3965582 3980364 14783 2593949.9133 2594691.4432 -75.8706 16.8271 92.685 run23.mat -1 -1 730 1998252 2005644 +4064465 4069394 4930 2598894.4505 2599140.9534 -75.8657 16.8286 93.8144 run23.mat -1 -1 731 2047696 2050160 +4069702 4090417 20716 2599156.3594 2600194.4101 -77.5165 16.8272 92.5575 run23.mat -1 -1 731 2050314 2060673 +4090724 4111416 20693 2600209.763 2601243.3675 -79.1718 16.8281 92.6069 run23.mat -1 -1 731 2060826 2071172 +4111723 4132417 20695 2601258.8475 2602293.0161 -80.8189 16.8269 92.6088 run23.mat -1 -1 731 2071326 2081673 +4132724 4153388 20665 2602308.493 2603342.0301 -82.4684 16.8274 92.6453 run23.mat -1 -1 731 2081827 2092159 +4153696 4160262 6567 2603357.1997 2603686.4947 -82.4698 18.5083 92.6054 run23.mat -1 -1 731 2092313 2095596 +4244559 4257833 13275 2607901.8289 2608564.2259 -82.4677 18.5066 93.3816 run23.mat -1 -1 732 2137747 2144384 +4258144 4278823 20680 2608579.9076 2609613.7598 -80.8166 18.5078 92.5351 run23.mat -1 -1 732 2144540 2154880 +4279128 4299820 20693 2609628.8948 2610664.8792 -79.169 18.5065 92.6314 run23.mat -1 -1 732 2155032 2165379 +4300125 4320819 20695 2610680.2553 2611713.4037 -77.5137 18.5075 92.6323 run23.mat -1 -1 732 2165531 2175878 +4321127 4340321 19195 2611728.8067 2612688.7489 -75.8675 18.5077 92.7013 run23.mat -1 -1 732 2176032 2185630 +4424363 4424934 572 2616891.4735 2616919.8025 -75.8638 18.5036 98.9514 run23.mat -1 -1 733 2227652 2227938 +4425254 4445905 20652 2616935.6787 2617966.3177 -74.218 18.5071 92.6034 run23.mat -1 -1 733 2228098 2238424 +4446224 4466900 20677 2617982.2028 2619018.0423 -72.5687 18.507 92.5132 run23.mat -1 -1 733 2238583 2248922 +4467205 4487900 20696 2619033.1742 2620067.3255 -70.9189 18.5069 92.6177 run23.mat -1 -1 733 2249075 2259423 +4488210 4508880 20671 2620082.9568 2621118.8777 -69.2671 18.5067 92.5825 run23.mat -1 -1 733 2259578 2269913 +4509187 4520183 10997 2621134.2309 2621684.1826 -67.6227 18.5067 92.685 run23.mat -1 -1 733 2270067 2275565 +4604416 4613143 8728 2625894.9267 2626331.7817 -67.6217 18.5065 93.3958 run23.mat -1 -1 734 2317683 2322047 +4613462 4634139 20678 2626347.6114 2627379.5943 -65.9705 18.5063 92.401 run23.mat -1 -1 734 2322206 2332545 +4634446 4655139 20694 2627394.8285 2628430.17 -64.3228 18.5071 92.5813 run23.mat -1 -1 734 2332698 2343046 +4655448 4676139 20692 2628445.7477 2629479.4355 -62.6724 18.5073 92.5469 run23.mat -1 -1 734 2343200 2353546 +4676446 4697115 20670 2629494.6697 2630530.2045 -61.0252 18.5073 92.7372 run23.mat -1 -1 734 2353699 2364035 +4697428 4700203 2776 2630545.8575 2630684.6342 -59.3787 18.5078 93.0274 run23.mat -1 -1 734 2364191 2365579 +4784327 4801286 16960 2634889.8556 2635737.6328 -59.3802 18.5072 92.858 run23.mat -1 -1 735 2407642 2416123 +4801597 4822280 20684 2635753.0655 2636787.143 -57.7308 18.5069 92.5288 run23.mat -1 -1 735 2416278 2426620 +4822589 4843278 20690 2636802.7237 2637838.3561 -56.078 18.5065 92.504 run23.mat -1 -1 735 2426774 2437119 +4843586 4864279 20694 2637853.7593 2638887.9996 -54.43 18.5069 92.5539 run23.mat -1 -1 735 2437273 2447620 +4864587 4880101 15515 2638903.2834 2639678.8869 -52.7789 18.5071 92.7135 run23.mat -1 -1 735 2447774 2455532 +4964359 4968573 4215 2643891.6193 2644103.3618 -52.7797 18.5054 94.9366 run23.mat -1 -1 736 2497663 2499770 +4968888 4989601 20714 2644118.9899 2645154.6804 -51.1313 18.5064 92.4269 run23.mat -1 -1 736 2499927 2510284 +4989907 5010582 20676 2645169.865 2646200.7464 -49.477 18.5073 92.5678 run23.mat -1 -1 736 2510437 2520775 +5010888 5031581 20694 2646216.0523 2647251.6392 -47.8296 18.5063 92.6083 run23.mat -1 -1 736 2520928 2531275 +5031889 5052565 20677 2647266.92 2648300.8992 -46.1769 18.5068 92.6204 run23.mat -1 -1 736 2531429 2541768 +5052876 5060181 7306 2648316.3319 2648681.9722 -44.5277 18.5074 92.694 run23.mat -1 -1 736 2541923 2545576 +5144483 5156885 12403 2652898.2668 2653518.8607 -44.5303 18.5068 92.9861 run23.mat -1 -1 737 2587728 2593917 +5157191 5177881 20691 2653534.1666 2654566.9817 -42.8784 18.5069 92.5644 run23.mat -1 -1 737 2594082 2604428 +5178188 5198880 20693 2654582.3381 2655615.2868 -41.2295 18.5069 92.6384 run23.mat -1 -1 737 2604582 2614928 +5199186 5219864 20679 2655630.5785 2656666.3741 -39.5816 18.5063 92.693 run23.mat -1 -1 737 2615081 2625421 +5220171 5240281 20111 2656681.6053 2657688.8109 -37.9328 18.5068 92.6712 run23.mat -1 -1 737 2625574 2635630 +5324394 5344982 20589 2661893.5288 2662924.0359 -36.2873 18.5069 92.8967 run23.mat -1 -1 738 2677688 2687982 +5345289 5365984 20696 2662939.2671 2663973.0423 -34.6314 18.5069 92.5232 run23.mat -1 -1 738 2688136 2698484 +5366290 5386982 20693 2663988.4688 2665021.5276 -32.9865 18.5064 92.5844 run23.mat -1 -1 738 2698637 2708983 +5387288 5407962 20675 2665036.9572 2666069.9806 -31.3356 18.5069 92.5947 run23.mat -1 -1 738 2709136 2719474 +5408271 5420121 11851 2666085.4338 2666678.1029 -29.6953 18.5071 92.6989 run23.mat -1 -1 738 2719628 2725553 +5504364 5512251 7888 2670891.3399 2671284.8175 -29.6885 18.5064 93.3916 run23.mat -1 -1 739 2767677 2771621 +5512564 5533242 20679 2671300.4705 2672335.7625 -28.0399 18.5069 92.4669 run23.mat -1 -1 739 2771777 2782117 +5533548 5554221 20674 2672351.1889 2673383.8365 -26.3921 18.5069 92.6753 run23.mat -1 -1 739 2782270 2792606 +5554531 5575221 20691 2673399.3395 2674434.0923 -24.7408 18.5068 92.5507 run23.mat -1 -1 739 2792761 2803107 +5575531 5596201 20671 2674449.5983 2675483.4343 -23.0927 18.5074 92.6657 run23.mat -1 -1 739 2803262 2813597 +5596507 5600161 3655 2675498.8045 2675682.3422 -21.4395 18.507 93.202 run23.mat -1 -1 739 2813750 2815577 +5684376 5700587 16212 2679893.5824 2680702.9954 -21.4387 18.5067 93.1474 run23.mat -1 -1 740 2857687 2865793 +5700903 5721581 20679 2680718.7987 2681754.7956 -19.7905 18.5071 92.5831 run23.mat -1 -1 740 2865951 2876290 +5721890 5742582 20693 2681770.126 2682803.2651 -18.1399 18.507 92.5656 run23.mat -1 -1 740 2876445 2886791 +5742888 5763583 20696 2682818.568 2683853.5373 -16.4935 18.5065 92.5692 run23.mat -1 -1 740 2886944 2897292 +5763889 5780201 16313 2683868.9669 2684685.409 -14.8424 18.5077 92.7103 run23.mat -1 -1 740 2897445 2905602 +5864157 5867659 3503 2688881.4971 2689057.7087 -14.8405 18.5076 95.5955 run23.mat -1 -1 741 2947581 2949332 +5867973 5888662 20690 2689073.412 2690106.1193 -13.1929 18.5066 92.5022 run23.mat -1 -1 741 2949489 2959834 +5888970 5909665 20696 2690121.5222 2691157.5579 -11.5393 18.5067 92.5594 run23.mat -1 -1 741 2959988 2970336 +5909972 5930664 20693 2691172.9138 2692208.2465 -9.8937 18.5065 92.6031 run23.mat -1 -1 741 2970490 2980836 +5930970 5951629 20660 2692223.4311 2693254.37 -8.245 18.5068 92.6556 run23.mat -1 -1 741 2980989 2991319 +5951945 5960061 8117 2693270.2587 2693678.0658 -6.5929 18.506 92.7103 run23.mat -1 -1 741 2991477 2995535 +6044354 6055971 11618 2697891.6708 2698473.3196 -6.5956 18.5075 93.2319 run23.mat -1 -1 742 3037684 3043492 +6056285 6076986 20702 2698489.1494 2699524.8473 -4.9467 18.5068 92.6283 run23.mat -1 -1 742 3043649 3054000 +6077293 6097967 20675 2699540.1834 2700571.9631 -3.3011 18.5075 92.5979 run23.mat -1 -1 742 3054154 3064491 +6098273 6118966 20694 2700587.1447 2701621.9159 -1.6527 18.5067 92.5889 run23.mat -1 -1 742 3064644 3074991 +6119275 6139944 20670 2701637.4936 2702671.495 -0.0071139 18.5065 92.7254 run23.mat -1 -1 742 3075146 3085481 +6224226 6244191 19966 2706885.3326 2707883.7911 1.6467 18.5064 92.9686 run23.mat -1 -1 743 3127624 3137607 +6244502 6265186 20685 2707899.4697 2708935.35 3.2968 18.5066 92.5378 run23.mat -1 -1 743 3137762 3148105 +6265495 6286187 20693 2708950.8 2709984.4731 4.9427 18.507 92.5381 run23.mat -1 -1 743 3148259 3158605 +6286492 6307166 20675 2709999.6051 2711033.2923 6.5948 18.5067 92.6008 run23.mat -1 -1 743 3158758 3169095 +6307473 6320000 12528 2711048.5235 2711674.1108 8.2468 18.5065 92.7452 run23.mat -1 -1 743 3169249 3175513 +6404254 6411457 7204 2715887.4437 2716246.9923 8.2482 18.5061 93.6835 run23.mat -1 -1 744 3217642 3221244 +6411771 6432469 20699 2716262.8253 2717297.2584 9.8964 18.5061 92.5158 run23.mat -1 -1 744 3221401 3231750 +6432776 6453449 20674 2717312.4927 2718346.0952 11.547 18.5071 92.6403 run23.mat -1 -1 744 3231903 3242240 +6453756 6474450 20695 2718361.4482 2719396.6604 13.1898 18.5075 92.5776 run23.mat -1 -1 744 3242394 3252741 +6474766 6495430 20665 2719412.591 2720446.3328 14.8444 18.5065 92.6183 run23.mat -1 -1 744 3252899 3263231 +6495739 6500040 4302 2720461.9137 2720677.8565 16.4912 18.5068 92.8524 run23.mat -1 -1 744 3263386 3265537 +6584351 6599794 15444 2724892.0827 2725666.0841 16.491 18.5071 93.0163 run23.mat -1 -1 745 3307694 3315416 +6600104 6620790 20687 2725681.4642 2726715.0133 18.1434 18.5063 92.5102 run23.mat -1 -1 745 3315571 3325914 +6621096 6641791 20696 2726730.4429 2727764.4683 19.7864 18.5063 92.7177 run23.mat -1 -1 745 3326067 3336415 +6642100 6662788 20689 2727780.0492 2728814.6475 21.4361 18.5066 92.5346 run23.mat -1 -1 745 3336570 3346914 +6663098 6680139 17042 2728830.0306 2729681.5848 23.0866 18.5067 92.6933 run23.mat -1 -1 745 3347069 3355590 +6764268 6766911 2644 2733889.7875 2734021.634 23.0852 18.5088 94.9974 run23.mat -1 -1 746 3397656 3398978 +6767220 6787909 20690 2734036.9674 2735070.5063 24.7334 18.5072 92.4794 run23.mat -1 -1 746 3399132 3409477 +6788215 6808911 20697 2735085.8122 2736120.4287 26.3826 18.5065 92.5922 run23.mat -1 -1 746 3409630 3419979 +6809220 6829890 20671 2736136.0065 2737170.1973 28.032 18.5064 92.6741 run23.mat -1 -1 746 3420134 3430469 +6830197 6850892 20696 2737185.538 2738221.2743 29.6843 18.5072 92.6596 run23.mat -1 -1 746 3430622 3440970 +6851197 6860019 8823 2738236.4093 2738676.0502 31.3315 18.5061 92.8937 run23.mat -1 -1 746 3441123 3445534 +6944266 6955181 10916 2742889.0641 2743435.2977 31.335 18.5073 93.1629 run23.mat -1 -1 747 3487660 3493117 +6955497 6976173 20677 2743450.9754 2744484.7619 32.9832 18.5061 92.4976 run23.mat -1 -1 747 3493275 3503614 +6976480 6997175 20696 2744499.9931 2745534.784 34.6309 18.5069 92.5788 run23.mat -1 -1 747 3503767 3514115 +6997480 7018166 20687 2745550.2216 2746583.4592 36.2854 18.5069 92.6855 run23.mat -1 -1 747 3514268 3524611 +7018475 7039153 20679 2746599.0369 2747633.89 37.9362 18.5073 92.6242 run23.mat -1 -1 747 3524766 3535105 +7039459 7040058 600 2747649.1929 2747679.1487 39.5879 18.5014 93.7148 run23.mat -1 -1 747 3535258 3535557 +7124234 7143484 19251 2751887.6957 2752850.8669 39.5844 18.5068 93.0729 run23.mat -1 -1 748 3577647 3587273 +7143794 7164471 20678 2752866.3728 2753896.8551 41.2323 18.5071 92.5751 run23.mat -1 -1 748 3587428 3597767 +7164778 7185473 20696 2753912.0893 2754947.0323 42.8826 18.507 92.5455 run23.mat -1 -1 748 3597920 3608268 +7185780 7206453 20674 2754962.5092 2755997.663 44.5308 18.5068 92.6461 run23.mat -1 -1 748 3608422 3618759 +7206758 7220119 13362 2756012.7979 2756681.6562 46.1797 18.506 92.7383 run23.mat -1 -1 748 3618911 3625592 +7304302 7310725 6424 2760888.8418 2761211.7865 46.183 18.5052 93.4978 run23.mat -1 -1 749 3667685 3670892 +7311040 7331734 20695 2761227.4146 2762260.8152 47.8252 18.5064 92.4951 run23.mat -1 -1 749 3671054 3681402 +7332039 7352732 20694 2762276.0683 2763311.9055 49.4774 18.5068 92.6695 run23.mat -1 -1 749 3681555 3691902 +7353040 7373714 20675 2763327.1863 2764361.8736 51.1263 18.5064 92.5695 run23.mat -1 -1 749 3692056 3702393 +7374026 7394714 20689 2764377.3528 2765409.8772 52.7765 18.5063 92.6824 run23.mat -1 -1 749 3702549 3712893 +7395022 7400138 5117 2765425.158 2765684.8555 54.4174 18.5054 92.7447 run23.mat -1 -1 749 3713047 3715605 +7484171 7498917 14747 2769882.2076 2770622.4435 54.4218 18.5071 93.2822 run23.mat -1 -1 750 3757624 3764997 +7499240 7519921 20682 2770638.5326 2771672.3735 56.0699 18.5063 92.5324 run23.mat -1 -1 750 3765159 3775499 +7520237 7540919 20683 2771688.3041 2772720.7521 57.7214 18.507 92.6047 run23.mat -1 -1 750 3775657 3785999 +7541234 7561914 20681 2772736.5051 2773772.3913 59.3716 18.5069 92.5813 run23.mat -1 -1 750 3786156 3796497 +7562221 7580077 17857 2773787.6225 2774679.4384 61.0213 18.5062 92.6724 run23.mat -1 -1 750 3796651 3805579 +7664178 7666047 1870 2778885.3024 2778978.0292 61.0165 18.5068 94.7295 run23.mat -1 -1 751 3847631 3848566 +7666357 7687054 20698 2778993.4092 2780028.4557 62.6736 18.5067 92.5503 run23.mat -1 -1 751 3848721 3859070 +7687362 7708034 20673 2780043.8589 2781077.716 64.3195 18.5068 92.5791 run23.mat -1 -1 751 3859224 3869560 +7708339 7729036 20698 2781092.9692 2782126.102 65.9728 18.5067 92.5802 run23.mat -1 -1 751 3869713 3880062 +7729339 7750014 20676 2782141.2578 2783177.5164 67.6205 18.5066 92.644 run23.mat -1 -1 751 3880213 3890551 +7750320 7759958 9639 2783193.0046 2783675.6668 69.2726 18.5071 92.7497 run23.mat -1 -1 751 3890704 3895523 +7844275 7854338 10064 2787888.5722 2788394.292 69.2701 18.5065 93.2601 run23.mat -1 -1 752 3937684 3942715 +7854655 7875337 20683 2788410.206 2789444.3228 70.9175 18.5066 92.5505 run23.mat -1 -1 752 3942874 3953215 +7875643 7896335 20693 2789459.7493 2790492.9536 72.5703 18.506 92.529 run23.mat -1 -1 752 3953368 3963715 +7896643 7917335 20693 2790508.4809 2791543.2884 74.2202 18.5067 92.6467 run23.mat -1 -1 752 3963869 3974215 +7917642 7938300 20659 2791558.7653 2792591.7756 75.8697 18.5069 92.7392 run23.mat -1 -1 752 3974369 3984698 +7938605 7940038 1434 2792606.9075 2792678.003 77.5155 18.5074 92.189 run23.mat -1 -1 752 3984851 3985567 +8024310 8042619 18310 2796890.3664 2797808.3526 77.5132 18.5066 92.9282 run23.mat -1 -1 753 4027705 4036860 +8042925 8063594 20670 2797823.6268 2798857.4591 79.1641 18.5073 92.5884 run23.mat -1 -1 753 4037013 4047348 +8063905 8084597 20693 2798873.0123 2799907.8696 80.8156 18.5067 92.5448 run23.mat -1 -1 753 4047504 4057850 +8084902 8105243 20342 2799923.1227 2800938.4259 82.4587 18.506 92.6038 run23.mat -1 -1 753 4058002 4068174 +275794 296205 20412 2900079.9341 2901099.8572 82.4669 20.1906 92.8223 run24.mat -1 -1 755 160415 170620 +296524 317218 20695 2901115.9391 2902151.4928 80.8145 20.19 92.5821 run24.mat -1 -1 755 170780 181127 +317527 338221 20695 2902166.8232 2903202.0278 79.1642 20.19 92.5865 run24.mat -1 -1 755 181282 191629 +338527 359239 20713 2903217.4574 2904252.2568 77.5132 20.1901 92.473 run24.mat -1 -1 755 191782 202139 +359546 371590 12045 2904267.488 2904868.2581 75.8615 20.1903 92.4963 run24.mat -1 -1 755 202292 208315 +455666 463355 7690 2909075.3259 2909459.2622 75.8629 20.1899 93.5393 run24.mat -1 -1 756 250354 254199 +463686 484379 20694 2909475.9524 2910507.9381 74.214 20.1896 92.5535 run24.mat -1 -1 756 254365 264711 +484685 505381 20697 2910523.1227 2911557.8498 72.5671 20.19 92.5311 run24.mat -1 -1 756 264864 275213 +505685 526380 20696 2911573.169 2912608.1205 70.9157 20.1906 92.5965 run24.mat -1 -1 756 275365 285712 +526688 547342 20655 2912623.5269 2913658.3061 69.2635 20.1901 92.6789 run24.mat -1 -1 756 285866 296194 +547659 551450 3792 2913674.2872 2913864.5247 67.6288 20.1911 93.2645 run24.mat -1 -1 756 296353 298248 +635717 651636 15920 2918075.4098 2918872.1093 67.6181 20.1897 92.8679 run24.mat -1 -1 757 340383 348344 +651963 672660 20698 2918888.5945 2919925.024 65.9719 20.1903 92.5446 run24.mat -1 -1 757 348507 358856 +672966 693660 20695 2919940.327 2920972.969 64.3187 20.1907 92.5247 run24.mat -1 -1 757 359009 369356 +693967 714661 20695 2920988.2033 2922022.8476 62.6756 20.1905 92.6211 run24.mat -1 -1 757 369510 379857 +714966 731510 16545 2922037.9796 2922866.7265 61.0205 20.1906 92.6123 run24.mat -1 -1 757 380010 388282 +815528 818719 3192 2927067.152 2927225.4672 61.025 20.1906 95.0917 run24.mat -1 -1 758 430293 431889 +819045 839741 20697 2927241.641 2928279.0952 59.375 20.1901 92.4647 run24.mat -1 -1 758 432052 442400 +840047 860726 20680 2928294.3984 2929326.8215 57.73 20.1905 92.6513 run24.mat -1 -1 758 442553 452893 +861044 881722 20679 2929342.853 2930377.6014 56.0751 20.1905 92.6729 run24.mat -1 -1 758 453052 463392 +882027 902701 20675 2930392.6232 2931425.0905 54.4268 20.1906 92.6357 run24.mat -1 -1 758 463544 473882 +903010 911329 8320 2931440.424 2931855.9423 52.7767 20.1907 92.8518 run24.mat -1 -1 758 474036 478196 +995463 1007018 11556 2936064.3892 2936640.3336 52.7731 20.1904 93.5074 run24.mat -1 -1 759 520265 526042 +1007350 1028020 20671 2936656.94 2937691.6962 51.1289 20.1903 92.4963 run24.mat -1 -1 759 526208 536544 +1028328 1049019 20692 2937706.977 2938740.4457 49.4719 20.1905 92.5911 run24.mat -1 -1 759 536698 547044 +1049327 1070007 20681 2938755.7265 2939791.4148 47.8275 20.1905 92.6207 run24.mat -1 -1 759 547198 557538 +1070320 1090981 20662 2939807.1942 2940842.3013 46.1757 20.1902 92.7141 run24.mat -1 -1 759 557695 568026 +1091288 1091369 82 2940857.5324 2940861.5511 44.4529 20.1873 87.7454 run24.mat -1 -1 759 568179 568220 +1175454 1195119 19666 2945063.3457 2946045.8405 44.5296 20.1901 92.8587 run24.mat -1 -1 760 610264 620097 +1195465 1216139 20675 2946063.1439 2947099.1027 42.8761 20.1903 92.6041 run24.mat -1 -1 760 620270 630608 +1216446 1237122 20677 2947114.4557 2948146.9258 41.2279 20.1903 92.5439 run24.mat -1 -1 760 630761 641099 +1237429 1258120 20692 2948162.4027 2949197.7704 39.5795 20.1904 92.6362 run24.mat -1 -1 760 641253 651599 +1258426 1271249 12824 2949212.952 2949855.2223 37.9304 20.1902 92.7001 run24.mat -1 -1 760 651752 658163 +1355370 1362360 6991 2954061.0383 2954409.0666 37.9362 20.1909 93.7039 run24.mat -1 -1 761 700226 703721 +1362699 1383382 20684 2954426.0231 2955460.0627 36.2839 20.1903 92.533 run24.mat -1 -1 761 703890 714232 +1383689 1404380 20692 2955475.3579 2956509.6255 34.6317 20.1897 92.5025 run24.mat -1 -1 761 714386 724732 +1404686 1425380 20695 2956524.9284 2957561.9173 32.9835 20.1911 92.5217 run24.mat -1 -1 761 724885 735233 +1425688 1446361 20674 2957577.3232 2958607.2417 31.3386 20.191 92.6657 run24.mat -1 -1 761 735387 745724 +1446666 1451149 4484 2958622.4949 2958848.3007 29.6831 20.1896 92.7738 run24.mat -1 -1 761 745876 748118 +1535496 1550720 15225 2963068.0154 2963828.8328 29.6919 20.1908 92.9287 run24.mat -1 -1 762 790293 797905 +1551047 1571741 20695 2963845.318 2964877.0115 28.0368 20.1903 92.5427 run24.mat -1 -1 762 798069 808416 +1572050 1592742 20693 2964892.345 2965927.1267 26.3882 20.1905 92.6421 run24.mat -1 -1 762 808571 818917 +1593049 1613720 20672 2965942.6067 2966977.8214 24.7373 20.1904 92.5728 run24.mat -1 -1 762 819071 829406 +1614028 1631269 17242 2966993.1052 2967855.3039 23.0898 20.1904 92.6051 run24.mat -1 -1 762 829560 838182 +1715524 1718001 2478 2972067.649 2972191.5503 23.0929 20.189 94.7437 run24.mat -1 -1 763 880311 881550 +1718307 1739019 20713 2972206.8532 2973244.0311 21.4334 20.1896 92.5164 run24.mat -1 -1 763 881703 892059 +1739329 1760007 20679 2973259.2991 2974291.7126 19.7891 20.1904 92.5541 run24.mat -1 -1 763 892214 902554 +1760314 1781023 20710 2974306.9438 2975341.4753 18.136 20.1899 92.5991 run24.mat -1 -1 763 902707 913062 +1781329 1802004 20676 2975356.7785 2976391.3852 16.4883 20.1904 92.6459 run24.mat -1 -1 763 913215 923553 +1802308 1811309 9002 2976406.4676 2976857.1762 14.8404 20.1902 92.8703 run24.mat -1 -1 763 923705 928206 +1895541 1906242 10702 2981067.9873 2981604.2136 14.8388 20.1908 93.2827 run24.mat -1 -1 764 970323 975674 +1906573 1927262 20690 2981620.6387 2982655.1071 13.1891 20.19 92.4807 run24.mat -1 -1 764 975839 986184 +1927570 1948244 20675 2982670.3849 2983704.6255 11.5433 20.1909 92.6159 run24.mat -1 -1 764 986338 996676 +1948554 1969264 20711 2983720.2537 2984755.9631 9.8897 20.1899 92.5694 run24.mat -1 -1 764 996831 1007187 +1969571 1990245 20675 2984771.1943 2985805.4806 8.2468 20.1906 92.6708 run24.mat -1 -1 764 1007340 1017678 +1990552 1991328 777 2985820.837 2985859.6532 6.6026 20.1902 92.1876 run24.mat -1 -1 764 1017831 1018219 +2075359 2094324 18966 2990058.9296 2991009.7967 6.5937 20.19 92.9406 run24.mat -1 -1 765 1060236 1069719 +2094651 2115345 20695 2991025.9021 2992058.8424 4.9464 20.1907 92.5788 run24.mat -1 -1 765 1069883 1080230 +2115653 2136327 20675 2992074.1232 2993107.2408 3.2957 20.1907 92.5925 run24.mat -1 -1 765 1080384 1090722 +2136634 2157327 20694 2993122.7177 2994156.7974 1.649 20.191 92.6286 run24.mat -1 -1 765 1090875 1101222 +2157634 2171188 13555 2994172.1538 2994851.593 -0.00016805 20.1909 92.7689 run24.mat -1 -1 765 1101375 1108153 +2255326 2259394 4069 2999058.1379 2999260.7908 0.0078821 20.1908 94.8683 run24.mat -1 -1 766 1150224 1152258 +2259704 2261605 1902 2999276.2354 2999371.1619 0.0052211 20.1923 93.2024 run24.mat -1 -1 766 1152413 1153364 +2261938 2282624 20687 2999387.8154 3000424.3463 -1.6459 20.1907 92.5588 run24.mat -1 -1 766 1153530 1163873 +2282933 2303627 20695 3000439.8022 3001473.3788 -3.2987 20.1907 92.6482 run24.mat -1 -1 766 1164028 1174376 +2303933 2324626 20694 3001488.5604 3002524.6776 -4.9474 20.1907 92.6131 run24.mat -1 -1 766 1174529 1184875 +2324931 2345608 20678 3002540.0536 3003572.3864 -6.5924 20.1913 92.5863 run24.mat -1 -1 766 1185028 1195366 +2345915 2351228 5314 3003587.6436 3003851.677 -8.2593 20.1903 93.0863 run24.mat -1 -1 766 1195520 1198177 +2435491 2449905 14415 3008066.7003 3008787.2404 -8.2492 20.1904 92.9635 run24.mat -1 -1 767 1240310 1247517 +2450235 2470908 20674 3008803.8768 3009836.0346 -9.8986 20.1904 92.5731 run24.mat -1 -1 767 1247682 1258019 +2471215 2491908 20694 3009851.4466 3010888.7233 -11.5489 20.1899 92.5216 run24.mat -1 -1 767 1258173 1268520 +2492217 2512907 20691 3010904.0568 3011938.5719 -13.1939 20.1902 92.6952 run24.mat -1 -1 767 1268674 1279020 +2513218 2531287 18070 3011954.0016 3012854.706 -14.8471 20.19 92.6902 run24.mat -1 -1 767 1279176 1288210 +2615269 2617007 1739 3017057.8426 3017144.2256 -14.8453 20.1914 97.7348 run24.mat -1 -1 768 1330203 1331072 +2617342 2638028 20687 3017160.846 3018195.1286 -16.4951 20.1904 92.4986 run24.mat -1 -1 768 1331240 1341583 +2638336 2659011 20676 3018210.4094 3019242.8096 -18.1402 20.1907 92.6571 run24.mat -1 -1 768 1341737 1352075 +2659317 2680007 20691 3019258.2361 3020291.747 -19.787 20.1905 92.6396 run24.mat -1 -1 768 1352228 1362574 +2680314 2701011 20698 3020306.9782 3021344.0035 -21.438 20.1901 92.6006 run24.mat -1 -1 768 1362727 1373076 +2701317 2711167 9851 3021359.3067 3021850.1787 -23.0922 20.1908 92.748 run24.mat -1 -1 768 1373229 1378154 +2795427 2805406 9980 3026063.3394 3026562.4056 -23.083 20.1906 93.7884 run24.mat -1 -1 769 1420286 1425276 +2805722 2826404 20683 3026578.0833 3027612.2339 -24.7403 20.1906 92.5612 run24.mat -1 -1 769 1425434 1435775 +2826711 2847408 20698 3027627.7077 3028662.6614 -26.3829 20.1911 92.567 run24.mat -1 -1 769 1435929 1446278 +2847716 2868387 20672 3028678.0646 3029713.8446 -28.0352 20.19 92.6138 run24.mat -1 -1 769 1446432 1456767 +2868695 2889369 20675 3029729.2505 3030759.231 -29.6844 20.1908 92.7365 run24.mat -1 -1 769 1456921 1467259 +2889676 2891186 1511 3030774.584 3030850.0985 -31.3447 20.1909 93.1445 run24.mat -1 -1 769 1467413 1468168 +2975517 2993827 18311 3035067.0687 3035982.5757 -31.3371 20.1909 93.0766 run24.mat -1 -1 770 1510335 1519491 +2994161 3014831 20671 3035999.2789 3037033.6229 -32.9825 20.1904 92.5687 run24.mat -1 -1 770 1519658 1529993 +3015137 3035831 20695 3037048.8075 3038084.5435 -34.6379 20.19 92.5461 run24.mat -1 -1 770 1530146 1540494 +3036138 3056811 20674 3038099.7777 3039133.6049 -36.2878 20.1903 92.6344 run24.mat -1 -1 770 1540647 1550984 +3057123 3071266 14144 3039149.2082 3039854.5922 -37.9372 20.1902 92.7506 run24.mat -1 -1 770 1551140 1558212 +3155290 3160908 5619 3044058.0351 3044340.5644 -37.9349 20.191 93.8638 run24.mat -1 -1 771 1600225 1603034 +3161233 3181912 20680 3044356.8555 3045388.9762 -39.5857 20.1902 92.6178 run24.mat -1 -1 771 1603197 1613537 +3182217 3202911 20695 3045404.1052 3046437.949 -41.2353 20.1907 92.6364 run24.mat -1 -1 771 1613690 1624037 +3203218 3223909 20692 3046453.4259 3047488.564 -42.8805 20.1904 92.5887 run24.mat -1 -1 771 1624191 1634537 +3224216 3244891 20676 3047504.0409 3048536.5863 -44.5313 20.1901 92.6724 run24.mat -1 -1 771 1634690 1645028 +3245202 3251126 5925 3048551.9036 3048850.326 -46.1877 20.1893 92.7644 run24.mat -1 -1 771 1645183 1648146 +3335215 3349031 13817 3053054.5817 3053744.097 -46.1777 20.1904 93.3224 run24.mat -1 -1 772 1690192 1697100 +3349337 3370052 20716 3053759.5235 3054795.8211 -47.8301 20.1897 92.5641 run24.mat -1 -1 772 1697253 1707611 +3370357 3391052 20696 3054811.1972 3055845.362 -49.4767 20.1904 92.6484 run24.mat -1 -1 772 1707764 1718111 +3391357 3412042 20686 3055860.497 3056896.6983 -51.1291 20.1902 92.6865 run24.mat -1 -1 772 1718264 1728607 +3412352 3431006 18655 3056912.1802 3057842.4828 -52.7718 20.1909 92.7147 run24.mat -1 -1 772 1728762 1738089 +3515298 3516373 1076 3062056.7585 3062110.0925 -52.7729 20.1902 97.6683 run24.mat -1 -1 773 1780237 1780775 +3516716 3537374 20659 3062127.1097 3063163.0535 -54.4252 20.1905 92.5766 run24.mat -1 -1 773 1780946 1791276 +3537681 3558375 20695 3063178.4064 3064211.4118 -56.0723 20.19 92.5568 run24.mat -1 -1 773 1791429 1801777 +3558681 3579372 20692 3064226.7149 3065262.3805 -57.727 20.1899 92.5408 run24.mat -1 -1 773 1801930 1812276 +3579681 3600355 20675 3065277.9583 3066311.7553 -59.3756 20.1902 92.5839 run24.mat -1 -1 773 1812430 1822768 +3600669 3611086 10418 3066327.3338 3066848.1217 -61.0258 20.1903 92.706 run24.mat -1 -1 773 1822925 1828133 +3695153 3704431 9279 3071052.1847 3071513.8035 -61.023 20.19 93.1775 run24.mat -1 -1 774 1870169 1874808 +3704759 3725435 20677 3071530.3425 3072564.7054 -62.6767 20.1903 92.5259 run24.mat -1 -1 774 1874972 1885311 +3725744 3746435 20692 3072580.2831 3073613.9342 -64.3229 20.1902 92.5854 run24.mat -1 -1 774 1885465 1895811 +3746739 3767436 20698 3073629.1371 3074665.4451 -65.9762 20.1904 92.5703 run24.mat -1 -1 774 1895963 1906312 +3767742 3788412 20671 3074680.6874 3075714.2777 -67.625 20.1902 92.6825 run24.mat -1 -1 774 1906465 1916800 +3788721 3790905 2185 3075729.7527 3075838.9754 -69.2708 20.188 93.2823 run24.mat -1 -1 774 1916955 1918047 +3875178 3892732 17555 3080051.0115 3080930.3412 -69.2744 20.1902 92.9875 run24.mat -1 -1 775 1960185 1968963 +3893059 3913741 20683 3080946.8264 3081979.4116 -70.9204 20.1903 92.5733 run24.mat -1 -1 775 1969126 1979468 +3914053 3934734 20682 3081995.1406 3083031.3083 -72.5728 20.1902 92.5736 run24.mat -1 -1 775 1979624 1989965 +3935040 3955749 20710 3083046.6113 3084080.312 -74.22 20.1901 92.5979 run24.mat -1 -1 775 1990118 2000473 +3956059 3970965 14907 3084095.815 3084841.024 -75.8674 20.1898 92.6481 run24.mat -1 -1 775 2000628 2008081 +4055024 4059832 4809 3089046.195 3089284.9825 -75.8708 20.19 94.0657 run24.mat -1 -1 776 2050112 2052516 +4060158 4080874 20717 3089301.1596 3090337.9377 -77.5149 20.1903 92.4823 run24.mat -1 -1 776 2052679 2063038 +4081181 4101872 20692 3090353.1719 3091386.3666 -79.1673 20.1905 92.5451 run24.mat -1 -1 776 2063191 2073537 +4102181 4122856 20676 3091401.8196 3092437.0767 -80.816 20.1906 92.6117 run24.mat -1 -1 776 2073692 2084030 +4123162 4143835 20674 3092452.267 3093485.9893 -82.4654 20.1908 92.5639 run24.mat -1 -1 776 2084183 2094520 +4144144 4150845 6702 3093501.3197 3093833.7765 -82.4639 21.8727 92.7153 run24.mat -1 -1 776 2094674 2098025 +4234916 4248002 13087 3098041.2876 3098692.5003 -82.4626 21.8747 93.2409 run24.mat -1 -1 777 2140062 2146606 +4248314 4268996 20683 3098708.2293 3099743.7755 -80.8173 21.8738 92.5215 run24.mat -1 -1 777 2146762 2157103 +4269302 4289996 20695 3099759.0785 3100793.4138 -79.1657 21.8742 92.5623 run24.mat -1 -1 777 2157256 2167603 +4290312 4310977 20666 3100809.3444 3101844.3947 -77.5155 21.8744 92.606 run24.mat -1 -1 777 2167761 2178094 +4311299 4330745 19447 3101860.4978 3102829.3413 -75.8655 21.8746 92.7417 run24.mat -1 -1 777 2178255 2187978 +4414822 4415154 333 3107034.8637 3107051.3352 -75.8754 21.8716 97.6288 run24.mat -1 -1 778 2230019 2230185 +4415466 4436118 20653 3107066.8144 3108101.7704 -74.2202 21.8742 92.5965 run24.mat -1 -1 778 2230341 2240668 +4436428 4457115 20688 3108117.3382 3109150.1219 -72.5749 21.8739 92.6468 run24.mat -1 -1 778 2240823 2251166 +4457420 4478095 20676 3109165.3524 3110197.641 -70.9221 21.8739 92.5661 run24.mat -1 -1 778 2251319 2261657 +4478401 4499097 20697 3110213.0706 3111249.1409 -69.2715 21.8731 92.6055 run24.mat -1 -1 778 2261810 2272159 +4499403 4510624 11222 3111264.3194 3111825.5151 -67.6281 21.8736 92.8816 run24.mat -1 -1 778 2272312 2277922 +4594659 4603164 8506 3116026.7465 3116451.5685 -67.6236 21.875 93.4516 run24.mat -1 -1 779 2319941 2324194 +4603481 4624155 20675 3116467.4056 3117503.4114 -65.972 21.8735 92.606 run24.mat -1 -1 779 2324352 2334690 +4624465 4645160 20696 3117518.9144 3118550.7467 -64.3214 21.8744 92.5708 run24.mat -1 -1 779 2334845 2345193 +4645465 4666159 20695 3118566.1259 3119600.9538 -62.6698 21.8747 92.673 run24.mat -1 -1 779 2345345 2355693 +4666468 4687138 20671 3119616.2842 3120650.8118 -61.0218 21.8734 92.7217 run24.mat -1 -1 779 2355847 2366183 +4687446 4690424 2979 3120666.0957 3120814.7229 -59.382 21.8727 93.0962 run24.mat -1 -1 779 2366337 2367826 +4774681 4791439 16759 3125028.6591 3125865.3178 -59.3738 21.8744 92.8698 run24.mat -1 -1 780 2409956 2418336 +4791747 4812418 20672 3125880.7852 3126915.0373 -57.7261 21.8741 92.5412 run24.mat -1 -1 780 2418490 2428826 +4812724 4833419 20696 3126930.3405 3127963.689 -56.0715 21.874 92.6221 run24.mat -1 -1 780 2428979 2439327 +4833726 4854418 20693 3127978.8092 3129015.5076 -54.4246 21.8744 92.6522 run24.mat -1 -1 780 2439480 2449827 +4854727 4870444 15718 3129030.9606 3129815.5705 -52.7784 21.8744 92.724 run24.mat -1 -1 780 2449981 2457840 +4954397 4958515 4119 3134012.7492 3134218.7341 -52.7823 21.8742 94.5914 run24.mat -1 -1 781 2499818 2501878 +4958828 4979519 20692 3134234.3906 3135271.1187 -51.1329 21.8745 92.4985 run24.mat -1 -1 781 2502034 2512380 +4979828 5000500 20673 3135286.4522 3136319.8011 -49.4792 21.8746 92.6033 run24.mat -1 -1 781 2512534 2522871 +5000810 5021499 20690 3136335.4324 3137368.9587 -47.8298 21.8738 92.5575 run24.mat -1 -1 781 2523026 2533371 +5021808 5042498 20691 3137384.2922 3138418.9805 -46.1844 21.8737 92.7162 run24.mat -1 -1 781 2533525 2543871 +5042806 5050304 7499 3138434.2644 3138808.3539 -44.5374 21.8734 92.7636 run24.mat -1 -1 781 2544025 2547774 +5134391 5146604 12214 3143013.1576 3143623.6135 -44.5343 21.8729 93.0308 run24.mat -1 -1 782 2589819 2595932 +5146912 5167580 20669 3143639.0167 3144674.7407 -42.8803 21.8742 92.5973 run24.mat -1 -1 782 2596080 2606414 +5167888 5188600 20713 3144690.1466 3145724.754 -41.2332 21.8747 92.5818 run24.mat -1 -1 782 2606568 2616925 +5188909 5209600 20692 3145740.0813 3146775.8643 -39.5871 21.8741 92.5645 run24.mat -1 -1 782 2617079 2627426 +5209906 5230183 20278 3146791.2908 3147801.6947 -37.9352 21.874 92.6841 run24.mat -1 -1 782 2627579 2637717 +5314256 5334657 20402 3152008.0393 3153028.6753 -36.2846 21.8743 92.8006 run24.mat -1 -1 783 2679756 2689956 +5334966 5355662 20697 3153044.3728 3154076.3451 -34.6341 21.8743 92.5813 run24.mat -1 -1 783 2690111 2700460 +5355969 5376659 20691 3154091.6983 3155128.3108 -32.9841 21.8744 92.5267 run24.mat -1 -1 783 2700613 2710958 +5376966 5397645 20680 3155143.5451 3156177.6788 -31.3344 21.8738 92.5791 run24.mat -1 -1 783 2711112 2721452 +5397960 5410044 12085 3156193.559 3156797.1755 -29.6862 21.8736 92.625 run24.mat -1 -1 783 2721609 2727652 +5493962 5501694 7733 3160993.175 3161380.7479 -29.6917 21.8751 93.9969 run24.mat -1 -1 784 2769613 2773479 +5502009 5522682 20674 3161396.3831 3162428.6641 -28.0308 21.8743 92.479 run24.mat -1 -1 784 2773636 2783974 +5522989 5543682 20694 3162444.0813 3163477.7368 -26.3859 21.8744 92.6276 run24.mat -1 -1 784 2784127 2794474 +5543993 5564686 20694 3163493.2928 3164529.3583 -24.7365 21.8742 92.6215 run24.mat -1 -1 784 2794629 2804976 +5564992 5585662 20671 3164544.7848 3165577.2876 -23.0891 21.8739 92.7127 run24.mat -1 -1 784 2805129 2815465 +5585971 5589863 3893 3165592.7405 3165788.5517 -21.4473 21.8738 92.8331 run24.mat -1 -1 784 2815619 2817565 +5673979 5689916 15938 3169994.6534 3170791.4856 -21.4362 21.8736 93.1148 run24.mat -1 -1 785 2859625 2867594 +5690235 5710901 20667 3170807.5675 3171841.3948 -19.7908 21.8739 92.5377 run24.mat -1 -1 785 2867754 2878087 +5711208 5731900 20693 3171856.8717 3172890.1494 -18.1427 21.8737 92.5477 run24.mat -1 -1 785 2878240 2888587 +5732210 5752901 20692 3172905.5616 3173938.5777 -16.4965 21.8732 92.5436 run24.mat -1 -1 785 2888742 2899088 +5753209 5769761 16553 3173954.1051 3174782.8836 -14.8473 21.8739 92.7929 run24.mat -1 -1 785 2899242 2907518 +5854024 5857188 3165 3178995.1877 3179154.6957 -14.8439 21.8722 94.7878 run24.mat -1 -1 786 2949652 2951234 +5857497 5878185 20689 3179170.2734 3180204.3265 -13.1928 21.8737 92.4832 run24.mat -1 -1 786 2951388 2961733 +5878493 5899167 20675 3180219.8538 3181255.6195 -11.5444 21.8745 92.5593 run24.mat -1 -1 786 2961887 2972224 +5899476 5920186 20711 3181271.0754 3182304.1227 -9.8936 21.8749 92.6595 run24.mat -1 -1 786 2972379 2982734 +5920491 5941164 20674 3182319.2576 3183352.9242 -8.2486 21.8746 92.5672 run24.mat -1 -1 786 2982886 2993224 +5941472 5949802 8331 3183368.205 3183785.5141 -6.5927 21.8751 92.7999 run24.mat -1 -1 786 2993378 2997543 +6033866 6045268 11403 3187986.4438 3188558.5807 -6.5927 21.8737 93.2358 run24.mat -1 -1 787 3039577 3045278 +6045581 6066265 20685 3188574.2372 3189608.7426 -4.9444 21.8741 92.5681 run24.mat -1 -1 787 3045434 3055777 +6066573 6087266 20694 3189624.0234 3190659.5047 -3.2975 21.874 92.6661 run24.mat -1 -1 787 3055931 3066278 +6087571 6100868 13298 3190674.8808 3191339.1458 -1.6465 21.8734 92.5535 run24.mat -1 -1 787 3066430 3073079 +6101118 6108264 7147 3191351.7491 3191710.1931 -1.6433 21.8748 92.7222 run24.mat -1 -1 787 3073204 3076777 +6108570 6129224 20655 3191725.4961 3192756.4466 -0.00060234 21.8738 92.7228 run24.mat -1 -1 787 3076930 3087258 +6129530 6129643 114 3192771.6312 3192777.2386 1.6567 21.8705 92.9667 run24.mat -1 -1 787 3087411 3087467 +6213727 6233407 19681 3196983.0146 3197967.6957 1.6516 21.8747 92.8308 run24.mat -1 -1 788 3129511 3139351 +6233728 6254404 20677 3197983.8784 3199014.2489 3.2979 21.8736 92.5695 run24.mat -1 -1 788 3139512 3149851 +6254710 6275405 20696 3199029.7654 3200066.0512 4.9461 21.8741 92.6084 run24.mat -1 -1 788 3150004 3160351 +6275711 6296388 20678 3200081.2358 3201115.3112 6.5922 21.8742 92.5571 run24.mat -1 -1 788 3160504 3170843 +6296694 6309562 12869 3201130.4928 3201774.7016 8.2498 21.8736 92.7902 run24.mat -1 -1 788 3170996 3177430 +6393618 6400455 6838 3205977.7249 3206319.7877 8.2415 21.8741 93.363 run24.mat -1 -1 789 3219461 3222879 +6400771 6421447 20677 3206335.6515 3207369.0423 9.894 21.8736 92.4684 run24.mat -1 -1 789 3223037 3233376 +6421750 6442446 20697 3207384.3176 3208418.7957 11.5382 21.8734 92.6229 run24.mat -1 -1 789 3233527 3243875 +6442754 6463444 20691 3208434.2022 3209467.712 13.1881 21.8743 92.5629 run24.mat -1 -1 789 3244030 3254375 +6463753 6484426 20674 3209483.0425 3210517.9312 14.8396 21.8728 92.6417 run24.mat -1 -1 789 3254530 3264867 +6484731 6489382 4652 3210533.3073 3210766.1879 16.492 21.8736 92.5733 run24.mat -1 -1 789 3265019 3267345 +6573576 6588720 15145 3214975.003 3215732.2187 16.4891 21.8742 92.9403 run24.mat -1 -1 790 3309444 3317016 +6589031 6609705 20675 3215747.6483 3216780.7856 18.1378 21.8744 92.5053 run24.mat -1 -1 790 3317171 3327509 +6610009 6630707 20699 3216795.9887 3217832.0407 19.785 21.8737 92.5184 run24.mat -1 -1 790 3327661 3338010 +6631015 6651685 20671 3217847.5712 3218881.0655 21.4378 21.8739 92.5682 run24.mat -1 -1 790 3338164 3348500 +6651991 6669402 17412 3218896.2471 3219765.3816 23.0893 21.8748 92.6615 run24.mat -1 -1 790 3348653 3357359 +6753427 6755776 2350 3223965.7812 3224083.2801 23.0927 21.8754 95.7236 run24.mat -1 -1 791 3399373 3400547 +6756092 6776767 20676 3224099.0867 3225135.1016 24.7401 21.8734 92.5474 run24.mat -1 -1 791 3400705 3411043 +6777075 6797770 20696 3225150.478 3226186.6093 26.386 21.875 92.6315 run24.mat -1 -1 791 3411197 3421546 +6798076 6818766 20691 3226201.9125 3227235.4987 28.0357 21.8734 92.6092 run24.mat -1 -1 791 3421699 3432044 +6819072 6839766 20695 3227250.9252 3228284.9588 29.6913 21.8742 92.5918 run24.mat -1 -1 791 3432197 3442544 +6840074 6849241 9168 3228300.3648 3228757.7491 31.3361 21.873 92.8101 run24.mat -1 -1 791 3442698 3447282 +6933311 6943861 10551 3232962.4614 3233489.5939 31.3356 21.8738 93.2963 run24.mat -1 -1 792 3489319 3494594 +6944174 6964867 20694 3233505.1258 3234538.7242 32.9832 21.8745 92.5639 run24.mat -1 -1 792 3494750 3505097 +6965173 6985867 20695 3234554.0271 3235589.7494 34.6334 21.8733 92.5368 run24.mat -1 -1 792 3505250 3515598 +6986174 7006867 20694 3235604.9806 3236637.5981 36.2866 21.8741 92.6202 run24.mat -1 -1 792 3515751 3526098 +7007174 7027829 20656 3236652.8293 3237685.9885 37.9289 21.8736 92.6411 run24.mat -1 -1 792 3526252 3536580 +7028136 7029101 966 3237701.4654 3237750.1143 39.5823 21.8741 92.7701 run24.mat -1 -1 792 3536734 3537216 +7113406 7132188 18783 3241964.8893 3242906.3933 39.5781 21.8735 92.8952 run24.mat -1 -1 793 3579370 3588761 +7132500 7153176 20677 3242921.8726 3243953.7519 41.2245 21.874 92.5442 run24.mat -1 -1 793 3588917 3599256 +7153488 7174169 20682 3243969.48 3245004.6603 42.8749 21.8738 92.5763 run24.mat -1 -1 793 3599412 3609753 +7174477 7195170 20694 3245020.0636 3246055.0192 44.5268 21.8735 92.6477 run24.mat -1 -1 793 3609907 3620254 +7195478 7209181 13704 3246070.4222 3246755.4923 46.1777 21.875 92.6299 run24.mat -1 -1 793 3620408 3627260 +7293202 7299214 6013 3250956.8939 3251259.2468 46.1837 21.8754 93.8181 run24.mat -1 -1 794 3669272 3672273 +7299534 7320211 20678 3251275.0074 3252307.2225 47.8265 21.8746 92.5446 run24.mat -1 -1 794 3672438 3682777 +7320518 7341208 20691 3252322.4537 3253357.5747 49.478 21.8738 92.6255 run24.mat -1 -1 794 3682931 3693276 +7341516 7362228 20713 3253373.102 3254410.0298 51.1283 21.8741 92.599 run24.mat -1 -1 794 3693430 3703787 +7362535 7383208 20674 3254425.383 3255457.277 52.7763 21.8741 92.5803 run24.mat -1 -1 794 3703940 3714277 +7383516 7388981 5466 3255472.683 3255744.178 54.4272 21.8735 92.8428 run24.mat -1 -1 794 3714431 3717164 +7472981 7487332 14352 3259945.7674 3260663.9732 54.4256 21.8745 93.2778 run24.mat -1 -1 795 3759166 3766342 +7487646 7508329 20684 3260679.803 3261715.4874 56.0784 21.8739 92.4963 run24.mat -1 -1 795 3766499 3776840 +7508637 7529330 20694 3261731.0147 3262762.468 57.7258 21.8741 92.584 run24.mat -1 -1 795 3776994 3787341 +7529637 7550329 20693 3262777.7023 3263812.9365 59.3774 21.8743 92.5883 run24.mat -1 -1 795 3787494 3797842 +7550636 7568861 18226 3263828.4134 3264739.7904 61.0232 21.8741 92.8004 run24.mat -1 -1 795 3797995 3807107 +7652838 7654440 1603 3268939.4194 3269020.1817 61.0115 21.8733 97.1548 run24.mat -1 -1 796 3849098 3849899 +7654757 7675430 20674 3269036.1627 3270070.2125 62.6724 21.8744 92.5459 run24.mat -1 -1 796 3850058 3860395 +7675737 7696429 20693 3270085.4437 3271118.5595 64.3194 21.8738 92.5409 run24.mat -1 -1 796 3860548 3870895 +7696739 7717431 20693 3271134.0625 3272166.8866 65.9689 21.8729 92.5764 run24.mat -1 -1 796 3871050 3881396 +7717738 7738410 20673 3272182.243 3273216.1571 67.6216 21.8744 92.5939 run24.mat -1 -1 796 3881549 3891886 +7738721 7748740 10020 3273231.7136 3273733.5168 69.2646 21.8732 92.5331 run24.mat -1 -1 796 3892042 3897051 +7832852 7842522 9671 3277939.8273 3278422.6603 69.2668 21.8744 93.2078 run24.mat -1 -1 797 3939109 3943944 +7842839 7863529 20691 3278438.6446 3279472.7472 70.9156 21.8735 92.5277 run24.mat -1 -1 797 3944103 3954448 +7863838 7884530 20693 3279488.2032 3280524.0333 72.5673 21.8731 92.5491 run24.mat -1 -1 797 3954603 3964949 +7884840 7905531 20692 3280539.5363 3281574.0974 74.2158 21.8736 92.604 run24.mat -1 -1 797 3965104 3975450 +7905842 7926510 20669 3281589.776 3282621.604 75.8615 21.8736 92.6184 run24.mat -1 -1 797 3975606 3985940 +7926817 7928599 1783 3282636.9569 3282726.0741 77.5192 21.8736 92.849 run24.mat -1 -1 797 3986094 3986985 +8012856 8030829 17974 3286941.2114 3287838.0896 77.5134 21.8734 92.7934 run24.mat -1 -1 798 4029115 4038102 +8031145 8051829 20685 3287853.8927 3288890.2854 79.1661 21.8747 92.6865 run24.mat -1 -1 798 4038260 4048603 +8052138 8072810 20673 3288905.6158 3289938.0274 80.8145 21.874 92.5529 run24.mat -1 -1 798 4048757 4059094 +8073116 8093469 20354 3289953.4539 3290969.5857 82.4627 21.8744 92.6059 run24.mat -1 -1 798 4059247 4069423 +288971 309376 20406 3496364.6753 3497386.095 82.4675 23.5583 92.7299 run25.mat -1 -1 800 161383 171587 +309683 330377 20695 3497401.4514 3498435.56 80.8141 23.5573 92.5964 run25.mat -1 -1 800 171740 182088 +330684 351376 20693 3498451.0369 3499487.0456 79.1678 23.5569 92.5289 run25.mat -1 -1 800 182241 192588 +351685 372360 20676 3499502.6265 3500533.5813 77.5103 23.5587 92.5863 run25.mat -1 -1 800 192742 203080 +372675 384757 12083 3500549.0985 3501153.9476 75.8652 23.5583 92.7645 run25.mat -1 -1 800 203238 209279 +468755 476455 7701 3505356.0391 3505740.6253 75.8586 23.5573 93.522 run25.mat -1 -1 801 251280 255130 +476784 497476 20693 3505757.2113 3506790.6441 74.2132 23.5576 92.5422 run25.mat -1 -1 801 255294 265641 +497783 518475 20693 3506805.9973 3507841.8857 72.5655 23.5579 92.5949 run25.mat -1 -1 801 265794 276140 +518784 539457 20674 3507857.2191 3508891.0577 70.9147 23.5573 92.5629 run25.mat -1 -1 801 276295 286632 +539765 560439 20675 3508906.3386 3509937.9657 69.2648 23.5563 92.7351 run25.mat -1 -1 801 286786 297124 +560745 564636 3892 3509953.5283 3510149.7935 67.6133 23.5567 92.8365 run25.mat -1 -1 801 297277 299222 +648897 664734 15838 3514361.7562 3515153.5526 67.6191 23.557 93.0133 run25.mat -1 -1 802 341355 349273 +665072 685739 20668 3515170.3251 3516202.9399 65.9713 23.5578 92.5238 run25.mat -1 -1 802 349442 359777 +686045 706738 20694 3516218.3664 3517254.1218 64.3191 23.5586 92.5662 run25.mat -1 -1 802 359930 370276 +707045 727738 20694 3517269.414 3518303.833 62.6728 23.5589 92.4506 run25.mat -1 -1 802 370430 380777 +728044 744676 16633 3518319.136 3519149.0075 61.0222 23.5577 92.6892 run25.mat -1 -1 802 380930 389246 +828933 832106 3174 3523363.7886 3523522.4915 61.0285 23.5559 94.9162 run25.mat -1 -1 803 431377 432963 +832416 853138 20723 3523537.9979 3524574.3631 59.3752 23.5577 92.502 run25.mat -1 -1 803 433118 443479 +853445 874117 20673 3524589.7195 3525621.5401 57.73 23.5586 92.5932 run25.mat -1 -1 803 443633 453970 +874426 895117 20692 3525636.9931 3526673.8521 56.0749 23.5577 92.6049 run25.mat -1 -1 803 454124 464470 +895424 916120 20697 3526689.205 3527724.8811 54.4268 23.5579 92.6756 run25.mat -1 -1 803 464624 474972 +916424 924715 8292 3527739.9635 3528154.8552 52.7776 23.5574 92.7774 run25.mat -1 -1 803 475124 479269 +1010852 1022297 11446 3532461.0961 3533033.5666 52.7774 23.558 93.2961 run25.mat -1 -1 804 522340 528063 +1022624 1043298 20675 3533049.92 3534082.9531 51.1308 23.5576 92.4828 run25.mat -1 -1 804 528226 538563 +1043607 1064301 20695 3534098.409 3535132.0966 49.4727 23.5589 92.5892 run25.mat -1 -1 804 538718 549066 +1064607 1085320 20714 3535147.2782 3536182.9004 47.8272 23.5563 92.5637 run25.mat -1 -1 804 549219 559576 +1085624 1106280 20657 3536197.9827 3537231.0347 46.1762 23.557 92.6934 run25.mat -1 -1 804 559728 570056 +1106589 1106675 87 3537246.6156 3537250.952 44.5107 23.5516 91.8609 run25.mat -1 -1 804 570211 570254 +1192650 1212316 19667 3541549.6133 3542535.2114 44.5273 23.5564 92.8506 run25.mat -1 -1 805 613243 623077 +1212640 1233305 20666 3542551.4145 3543584.0572 42.8751 23.5573 92.547 run25.mat -1 -1 805 623239 633571 +1233616 1254319 20704 3543599.4868 3544632.7057 41.2269 23.5574 92.582 run25.mat -1 -1 805 633727 644079 +1254626 1275297 20672 3544647.9369 3545682.5295 39.5797 23.5574 92.5932 run25.mat -1 -1 805 644232 654568 +1275605 1288436 12832 3545698.0569 3546340.1392 37.929 23.5578 92.7761 run25.mat -1 -1 805 654722 661138 +1372696 1379557 6862 3550551.6158 3550895.2715 37.935 23.5567 93.2544 run25.mat -1 -1 806 703270 706701 +1379892 1400579 20688 3550911.8918 3551945.7872 36.283 23.5574 92.5106 run25.mat -1 -1 806 706868 717212 +1400888 1421568 20681 3551961.2405 3552997.5463 34.6322 23.5583 92.5668 run25.mat -1 -1 806 717366 727707 +1421885 1442568 20684 3553013.3993 3554046.0058 32.9841 23.5573 92.5466 run25.mat -1 -1 806 727866 738208 +1442884 1463553 20670 3554061.9365 3555095.7714 31.3401 23.5589 92.5805 run25.mat -1 -1 806 738366 748700 +1463864 1468495 4632 3555111.201 3555341.9875 29.6874 23.5567 92.9186 run25.mat -1 -1 806 748856 751171 +1552785 1567896 15112 3559557.0573 3560312.8531 29.6897 23.557 92.9309 run25.mat -1 -1 807 793318 800875 +1568221 1588899 20679 3560329.1065 3561361.2641 28.0362 23.5583 92.5438 run25.mat -1 -1 807 801037 811376 +1589206 1609900 20695 3561376.617 3562413.4061 26.3906 23.557 92.5671 run25.mat -1 -1 807 811530 821877 +1610209 1630896 20688 3562428.9839 3563464.628 24.7362 23.5575 92.5573 run25.mat -1 -1 807 822032 832376 +1631205 1648595 17391 3563480.081 3564349.5677 23.0934 23.5581 92.7044 run25.mat -1 -1 807 832530 841225 +1732628 1734957 2330 3568551.2321 3568667.3963 23.0903 23.5534 95.4547 run25.mat -1 -1 808 883244 884408 +1735285 1755981 20697 3568683.6694 3569716.4872 21.4369 23.5573 92.526 run25.mat -1 -1 808 884572 894921 +1756286 1776980 20695 3569731.8633 3570766.2473 19.7898 23.5575 92.5951 run25.mat -1 -1 808 895074 905421 +1777284 1797978 20695 3570781.3296 3571815.8434 18.1406 23.5583 92.5252 run25.mat -1 -1 808 905573 915920 +1798286 1818961 20676 3571831.2464 3572868.2515 16.4945 23.5567 92.6439 run25.mat -1 -1 808 916074 926412 +1819271 1828434 9164 3572883.7547 3573341.9963 14.838 23.5572 92.7717 run25.mat -1 -1 808 926567 931149 +1912690 1923337 10648 3577553.3477 3578086.0817 14.8426 23.5573 93.6074 run25.mat -1 -1 809 973279 978603 +1923662 1944342 20681 3578102.466 3579137.9063 13.187 23.5571 92.4361 run25.mat -1 -1 809 978765 989105 +1944651 1965340 20690 3579153.2428 3580185.8579 11.539 23.5564 92.6351 run25.mat -1 -1 809 989260 999605 +1965647 1986338 20692 3580201.0891 3581235.1666 9.8905 23.5564 92.5787 run25.mat -1 -1 809 999759 1010104 +1986645 2007319 20675 3581250.6466 3582284.4886 8.242 23.5574 92.6733 run25.mat -1 -1 809 1010258 1020595 +2007626 2008454 829 3582299.7198 3582340.7994 6.5978 23.5525 91.9273 run25.mat -1 -1 809 1020749 1021163 +2094482 2113486 19005 3586643.8248 3587592.3895 6.5931 23.557 92.9946 run25.mat -1 -1 810 1064179 1073681 +2113799 2134482 20684 3587608.0427 3588640.5471 4.9461 23.5573 92.52 run25.mat -1 -1 810 1073838 1084180 +2134790 2155481 20692 3588655.8736 3589690.9613 3.2972 23.5575 92.5916 run25.mat -1 -1 810 1084334 1094680 +2155792 2176483 20692 3589706.6398 3590742.0183 1.6489 23.5573 92.5073 run25.mat -1 -1 810 1094835 1105181 +2176789 2190374 13586 3590757.3215 3591435.0546 0.0032878 23.5574 92.8002 run25.mat -1 -1 810 1105334 1112127 +2274691 2280799 6109 3595653.7519 3595957.6507 -0.0012454 23.5572 93.6584 run25.mat -1 -1 811 1154287 1157341 +2281135 2301821 20687 3595974.593 3597010.4357 -1.6481 23.5572 92.5723 run25.mat -1 -1 811 1157509 1167853 +2302128 2322805 20678 3597025.9157 3598059.1142 -3.2963 23.5576 92.509 run25.mat -1 -1 811 1168006 1178346 +2323116 2343824 20709 3598074.6707 3599108.7515 -4.9441 23.5584 92.5472 run25.mat -1 -1 811 1178501 1188855 +2344131 2364786 20656 3599123.9857 3600156.7645 -6.5917 23.5573 92.624 run25.mat -1 -1 811 1189009 1199337 +2365093 2370454 5362 3600172.2414 3600441.9121 -8.2467 23.5566 92.5214 run25.mat -1 -1 811 1199490 1202171 +2454837 2469331 14495 3604659.4552 3605384.3958 -8.2459 23.5585 93.1847 run25.mat -1 -1 812 1244364 1251612 +2469661 2490326 20666 3605400.899 3606436.0457 -9.9023 23.5563 92.5609 run25.mat -1 -1 812 1251777 1262109 +2490633 2511326 20694 3606451.2799 3607484.3534 -11.545 23.5575 92.5452 run25.mat -1 -1 812 1262263 1272610 +2511631 2532325 20695 3607499.5459 3608535.8268 -13.193 23.557 92.568 run25.mat -1 -1 812 1272763 1283110 +2532630 2550734 18105 3608551.08 3609456.5103 -14.8476 23.5569 92.767 run25.mat -1 -1 812 1283262 1292315 +2634995 2636622 1628 3613666.8125 3613748.835 -14.8526 23.5584 94.5693 run25.mat -1 -1 813 1334447 1335261 +2636957 2657623 20667 3613765.7235 3614799.1909 -16.4932 23.5576 92.5395 run25.mat -1 -1 813 1335428 1345762 +2657931 2678623 20693 3614814.4717 3615849.403 -18.1418 23.5565 92.6234 run25.mat -1 -1 813 1345916 1356262 +2678934 2699607 20674 3615865.0189 3616901.027 -19.79 23.5587 92.5983 run25.mat -1 -1 813 1356417 1366754 +2699914 2720606 20693 3616916.2612 3617949.6919 -21.437 23.5582 92.5762 run25.mat -1 -1 813 1366908 1377255 +2720913 2730793 9881 3617965.1688 3618458.8098 -23.0893 23.5593 92.841 run25.mat -1 -1 813 1377408 1382348 +2815122 2825045 9924 3622677.3955 3623169.7998 -23.0877 23.5553 93.3136 run25.mat -1 -1 814 1424514 1429476 +2825350 2846067 20718 3623184.9317 3624223.0169 -24.7395 23.5582 92.5175 run25.mat -1 -1 814 1429629 1439987 +2846374 2867061 20688 3624238.3728 3625272.4418 -26.3846 23.557 92.5913 run25.mat -1 -1 814 1440141 1450485 +2867368 2888067 20700 3625287.6761 3626322.6853 -28.0345 23.5572 92.5794 run25.mat -1 -1 814 1450639 1460989 +2888373 2909025 20653 3626337.8668 3627369.8925 -29.6857 23.5578 92.7042 run25.mat -1 -1 814 1461142 1471468 +2909332 2911013 1682 3627385.4282 3627470.0973 -31.3315 23.5621 92.5438 run25.mat -1 -1 814 1471621 1472462 +2995507 3013583 18077 3631694.2508 3632598.1363 -31.3363 23.558 92.821 run25.mat -1 -1 815 1514711 1523750 +3013913 3034587 20675 3632614.5086 3633647.5602 -32.9831 23.5579 92.5993 run25.mat -1 -1 815 1523915 1534252 +3034893 3055584 20692 3633662.8661 3634698.1125 -34.6327 23.5584 92.6094 run25.mat -1 -1 815 1534405 1544751 +3055891 3076565 20675 3634713.3437 3635748.9893 -36.2865 23.5573 92.5226 run25.mat -1 -1 815 1544905 1555242 +3076870 3091273 14404 3635764.1243 3636480.8531 -37.9318 23.5581 92.6589 run25.mat -1 -1 815 1555394 1562596 +3175824 3181123 5300 3640710.7396 3640973.6491 -37.9417 23.5565 93.8467 run25.mat -1 -1 816 1604874 1607523 +3181454 3202148 20695 3640990.071 3642026.9048 -39.5836 23.557 92.5308 run25.mat -1 -1 816 1607689 1618036 +3202452 3223145 20694 3642042.1077 3643075.4705 -41.2353 23.5574 92.5507 run25.mat -1 -1 816 1618188 1628535 +3223454 3244127 20674 3643091.0482 3644125.2285 -42.8797 23.5582 92.5859 run25.mat -1 -1 816 1628690 1639026 +3244437 3265107 20671 3644140.8566 3645175.5878 -44.5338 23.5566 92.5645 run25.mat -1 -1 816 1639181 1649517 +3265417 3271592 6176 3645191.2785 3645500.9992 -46.186 23.5592 92.5984 run25.mat -1 -1 816 1649672 1652759 +3355906 3369564 13659 3649714.2207 3650398.0071 -46.1812 23.5586 93.0388 run25.mat -1 -1 817 1694919 1701748 +3369900 3390568 20669 3650414.946 3651448.8742 -47.8308 23.558 92.5449 run25.mat -1 -1 817 1701916 1712250 +3390875 3411567 20693 3651464.3511 3652498.5989 -49.4777 23.5578 92.6268 run25.mat -1 -1 817 1712404 1722750 +3411874 3432548 20675 3652513.9538 3653546.2142 -51.13 23.5578 92.586 run25.mat -1 -1 817 1722904 1733241 +3432854 3451672 18819 3653561.6407 3654502.3978 -52.7793 23.5568 92.6523 run25.mat -1 -1 817 1733394 1742804 +3536116 3537104 989 3658725.7661 3658775.1851 -52.7759 23.5553 97.9082 run25.mat -1 -1 818 1785027 1785521 +3537437 3558112 20676 3658791.8415 3659824.9 -54.4273 23.5578 92.6533 run25.mat -1 -1 818 1785688 1796025 +3558425 3579110 20686 3659840.6786 3660875.4236 -56.0741 23.5577 92.5901 run25.mat -1 -1 818 1796182 1806525 +3579415 3600107 20693 3660890.8027 3661925.9984 -57.7233 23.558 92.6026 run25.mat -1 -1 818 1806678 1817024 +3600412 3621086 20675 3661941.3776 3662972.3803 -59.3747 23.5585 92.5961 run25.mat -1 -1 818 1817177 1827514 +3621395 3631991 10597 3662987.8332 3663518.1931 -61.0235 23.5582 92.5703 run25.mat -1 -1 818 1827669 1832967 +3716428 3725567 9140 3667741.7242 3668198.1095 -61.0252 23.5562 93.2003 run25.mat -1 -1 819 1875188 1879757 +3725888 3746571 20684 3668214.0353 3669247.2753 -62.671 23.5578 92.4713 run25.mat -1 -1 819 1879918 1890260 +3746877 3767569 20693 3669262.5785 3670299.4353 -64.3213 23.5571 92.6522 run25.mat -1 -1 819 1890413 1900759 +3767875 3788571 20697 3670314.7382 3671347.7962 -65.9732 23.5574 92.5772 run25.mat -1 -1 819 1900912 1911261 +3788877 3809549 20673 3671363.0994 3672398.7273 -67.6258 23.5564 92.7209 run25.mat -1 -1 819 1911414 1921750 +3809856 3812231 2376 3672413.9615 3672531.8158 -69.267 23.5565 93.1622 run25.mat -1 -1 819 1921903 1923091 +3896730 3914088 17359 3676757.0847 3677626.242 -69.2733 23.5571 92.857 run25.mat -1 -1 820 1965343 1974022 +3914394 3935092 20699 3677641.5479 3678672.7049 -70.9204 23.5578 92.5405 run25.mat -1 -1 820 1974175 1984524 +3935412 3956074 20663 3678688.708 3679722.0644 -72.5741 23.5569 92.6282 run25.mat -1 -1 820 1984684 1995016 +3956388 3977070 20683 3679737.7675 3680773.2433 -74.2265 23.5568 92.6402 run25.mat -1 -1 820 1995173 2005514 +3977377 3992511 15135 3680788.4745 3681546.2235 -75.8669 23.5572 92.7837 run25.mat -1 -1 820 2005668 2013235 +4077014 4081569 4556 3685770.7982 3685998.0726 -75.8631 23.559 94.0718 run25.mat -1 -1 821 2055488 2057766 +4081876 4102592 20717 3686013.5526 3687049.9346 -77.5143 23.5577 92.5647 run25.mat -1 -1 821 2057919 2068278 +4102898 4123591 20694 3687065.3674 3688099.1377 -79.1674 23.5585 92.4745 run25.mat -1 -1 821 2068431 2078778 +4123898 4144591 20694 3688114.4909 3689152.3098 -80.8153 23.5576 92.6434 run25.mat -1 -1 821 2078931 2089279 +4144899 4165572 20674 3689167.8403 3690197.9877 -82.4637 23.5576 92.6717 run25.mat -1 -1 821 2089433 2099769 +4165880 4172791 6912 3690213.515 3690559.6529 -82.4592 25.2441 92.9157 run25.mat -1 -1 821 2099923 2103379 +4257274 4270103 12830 3694784.1099 3695428.5848 -82.4637 25.2425 93.0054 run25.mat -1 -1 822 2145622 2152036 +4270416 4291093 20678 3695444.1167 3696474.4113 -80.8138 25.2418 92.5949 run25.mat -1 -1 822 2152193 2162532 +4291398 4312091 20694 3696489.6645 3697525.4144 -79.1679 25.2409 92.6043 run25.mat -1 -1 822 2162685 2173032 +4312398 4333093 20696 3697540.8913 3698574.9323 -77.5127 25.2426 92.4898 run25.mat -1 -1 822 2173185 2183533 +4333400 4353071 19672 3698590.2855 3699572.8577 -75.8655 25.2409 92.7363 run25.mat -1 -1 822 2183687 2193523 +4437562 4437650 89 3703799.7676 3703804.1336 -75.9101 25.2706 110.862 run25.mat -1 -1 823 2235770 2235814 +4437964 4458591 20628 3703819.712 3704849.1461 -74.2192 25.2401 92.6648 run25.mat -1 -1 823 2235971 2246285 +4458899 4479591 20693 3704864.4299 3705898.8415 -72.5727 25.2395 92.5066 run25.mat -1 -1 823 2246439 2256786 +4479898 4500590 20693 3705914.1974 3706950.6983 -70.9189 25.2394 92.5856 run25.mat -1 -1 823 2256939 2267285 +4500899 4521591 20693 3706966.0318 3707999.9474 -69.2727 25.2424 92.593 run25.mat -1 -1 823 2267440 2277786 +4521900 4533350 11451 3708015.5251 3708589.4469 -67.6275 25.2399 92.7476 run25.mat -1 -1 823 2277941 2283666 +4617700 4626177 8478 3712806.9558 3713229.3704 -67.6243 25.2425 93.8738 run25.mat -1 -1 824 2325843 2330082 +4626485 4647173 20689 3713244.8978 3714279.9723 -65.9768 25.2413 92.5357 run25.mat -1 -1 824 2330236 2340580 +4647480 4668173 20694 3714295.3255 3715330.2328 -64.3232 25.24 92.6796 run25.mat -1 -1 824 2340734 2351081 +4668479 4689173 20695 3715345.5359 3716378.4914 -62.6741 25.2416 92.6323 run25.mat -1 -1 824 2351234 2361581 +4689478 4710151 20674 3716393.7444 3717427.7389 -61.0261 25.241 92.671 run25.mat -1 -1 824 2361734 2372071 +4710460 4713589 3130 3717443.3166 3717601.0601 -59.3749 25.2486 92.5492 run25.mat -1 -1 824 2372225 2373790 +4798050 4814761 16712 3721823.7421 3722660.4416 -59.3763 25.241 93.0635 run25.mat -1 -1 825 2416022 2424378 +4815076 4835754 20679 3722676.1947 3723710.4513 -57.7254 25.2422 92.5593 run25.mat -1 -1 825 2424535 2434875 +4836059 4856755 20697 3723725.7045 3724758.8125 -56.0757 25.2419 92.6385 run25.mat -1 -1 825 2435028 2445376 +4857072 4877752 20681 3724774.6655 3725808.9221 -54.4243 25.2422 92.588 run25.mat -1 -1 825 2445534 2455875 +4878059 4893811 15753 3725824.2751 3726610.0319 -52.7769 25.2401 92.7169 run25.mat -1 -1 825 2456029 2463905 +4978280 4982254 3975 3730835.7003 3731033.9125 -52.7749 25.2401 94.2344 run25.mat -1 -1 826 2506141 2508128 +4982570 5003252 20683 3731049.5902 3732083.6247 -51.1298 25.2412 92.5645 run25.mat -1 -1 826 2508286 2518627 +5003557 5024254 20698 3732098.7567 3733133.6346 -49.4726 25.242 92.6129 run25.mat -1 -1 826 2518780 2529129 +5024558 5045234 20677 3733148.717 3734184.2914 -47.8272 25.24 92.5654 run25.mat -1 -1 826 2529281 2539619 +5045542 5066232 20691 3734199.6978 3735232.6647 -46.1775 25.2417 92.6434 run25.mat -1 -1 826 2539773 2550119 +5066540 5074089 7550 3735248.2541 3735627.0935 -44.5321 25.2404 92.8102 run25.mat -1 -1 826 2550273 2554048 +5158474 5170875 12402 3739843.7475 3740464.9581 -44.5339 25.2408 93.3209 run25.mat -1 -1 827 2596242 2602443 +5171183 5191872 20690 3740480.2418 3741515.72 -42.8777 25.2399 92.5266 run25.mat -1 -1 827 2602597 2612942 +5192179 5212874 20696 3741530.9512 3742566.5207 -41.2324 25.2425 92.5698 run25.mat -1 -1 827 2613095 2623443 +5213178 5233873 20696 3742581.7239 3743613.9046 -39.5818 25.2403 92.5993 run25.mat -1 -1 827 2623595 2633943 +5234180 5254369 20190 3743629.3815 3744640.7177 -37.9362 25.2404 92.6515 run25.mat -1 -1 827 2634097 2644192 +5338676 5359194 20519 3748856.2715 3749880.1417 -36.2897 25.2398 92.9049 run25.mat -1 -1 828 2686347 2696606 +5359500 5380195 20696 3749895.3263 3750931.5942 -34.6374 25.2414 92.5261 run25.mat -1 -1 828 2696759 2707107 +5380500 5401194 20695 3750946.9734 3751981.9909 -32.9863 25.2412 92.5975 run25.mat -1 -1 828 2707260 2717608 +5401499 5422173 20675 3751997.1228 3753031.3132 -31.3393 25.2416 92.5937 run25.mat -1 -1 828 2717760 2728097 +5422482 5434469 11988 3753046.7664 3753644.2716 -29.6929 25.2402 92.7591 run25.mat -1 -1 828 2728252 2734245 +5519101 5526850 7750 3757877.9831 3758263.9506 -29.687 25.2402 93.5922 run25.mat -1 -1 829 2776563 2780438 +5527173 5547855 20683 3758280.2341 3759312.7689 -28.0358 25.2419 92.511 run25.mat -1 -1 829 2780599 2790949 +5548161 5568854 20694 3759328.1954 3760363.9988 -26.3863 25.2414 92.5962 run25.mat -1 -1 829 2791094 2801441 +5569161 5589836 20676 3760379.23 3761412.5901 -24.7379 25.2405 92.5422 run25.mat -1 -1 829 2801594 2811932 +5590145 5610819 20675 3761428.0433 3762463.9988 -23.0874 25.2414 92.6559 run25.mat -1 -1 829 2812087 2822424 +5611132 5614889 3758 3762479.5772 3762666.0103 -21.4415 25.2375 92.4596 run25.mat -1 -1 829 2822581 2824459 +5699095 5715316 16222 3766878.0302 3767687.6382 -21.4358 25.2409 93.1798 run25.mat -1 -1 830 2866564 2874675 +5715628 5736316 20689 3767703.1175 3768739.5377 -19.7868 25.2415 92.5253 run25.mat -1 -1 830 2874831 2885176 +5736622 5757314 20693 3768754.7428 3769787.6653 -18.1386 25.2422 92.6222 run25.mat -1 -1 830 2885329 2895675 +5757624 5778315 20692 3769803.1717 3770836.0183 -16.4909 25.2411 92.5942 run25.mat -1 -1 830 2895830 2906176 +5778621 5794968 16348 3770851.3212 3771668.835 -14.8434 25.2407 92.6628 run25.mat -1 -1 830 2906329 2914503 +5879435 5882830 3396 3775892.2231 3776062.248 -14.8371 25.2391 94.8365 run25.mat -1 -1 831 2956738 2958436 +5883144 5903819 20676 3776078.0778 3777112.9903 -13.1925 25.2406 92.5668 run25.mat -1 -1 831 2958593 2968931 +5904131 5924817 20687 3777128.4695 3778162.95 -11.5416 25.2409 92.6282 run25.mat -1 -1 831 2969087 2979431 +5925120 5945838 20719 3778178.2283 3779213.2255 -9.899 25.2411 92.6588 run25.mat -1 -1 831 2979582 2989942 +5946142 5966817 20676 3779228.4318 3780263.446 -8.2482 25.2409 92.5911 run25.mat -1 -1 831 2990094 3000431 +5967123 5975249 8127 3780278.7055 3780684.4562 -6.5965 25.2398 92.7284 run25.mat -1 -1 831 3000584 3004647 +6059691 6071308 11618 3784906.0044 3785486.2718 -6.5984 25.2385 93.1791 run25.mat -1 -1 832 3046870 3052679 +6071625 6092294 20670 3785502.1284 3786537.6338 -4.949 25.2406 92.4845 run25.mat -1 -1 832 3052838 3063172 +6092603 6113298 20696 3786553.2115 3787586.567 -3.2994 25.241 92.5152 run25.mat -1 -1 832 3063327 3073675 +6113602 6134296 20695 3787601.8927 3788637.0167 -1.6504 25.2414 92.5613 run25.mat -1 -1 832 3073827 3084174 +6134606 6155276 20671 3788652.6449 3789684.9567 0.0015274 25.2432 92.7225 run25.mat -1 -1 832 3084329 3094664 +6239776 6259589 19814 3793912.3467 3794901.41 1.6495 25.2427 92.8385 run25.mat -1 -1 833 3136917 3146824 +6259903 6280598 20696 3794916.9885 3795951.5053 3.2976 25.2413 92.6344 run25.mat -1 -1 833 3146981 3157329 +6280903 6301578 20676 3795966.8814 3797001.3112 4.9455 25.2425 92.6147 run25.mat -1 -1 833 3157481 3167819 +6301889 6322598 20710 3797016.8057 3798054.0862 6.5911 25.241 92.5572 run25.mat -1 -1 833 3167975 3178329 +6322903 6335548 12646 3798069.3391 3798699.0324 8.2474 25.2401 92.8487 run25.mat -1 -1 833 3178482 3184805 +6419879 6427051 7173 3802916.3709 3803274.3765 8.2451 25.2409 94.0443 run25.mat -1 -1 834 3226972 3230580 +6427363 6448036 20674 3803290.1055 3804324.2353 9.895 25.2414 92.5683 run25.mat -1 -1 834 3230714 3241051 +6448343 6469033 20691 3804339.7122 3805374.7975 11.5434 25.2422 92.6745 run25.mat -1 -1 834 3241205 3251550 +6469342 6490036 20695 3805390.3507 3806423.5174 13.193 25.2404 92.5562 run25.mat -1 -1 834 3251705 3262052 +6490343 6511014 20672 3806438.9944 3807472.4645 14.8439 25.2414 92.7172 run25.mat -1 -1 834 3262206 3272542 +6511324 6515787 4464 3807487.9675 3807711.1613 16.4885 25.2405 92.7493 run25.mat -1 -1 834 3272697 3274928 +6600104 6615408 15305 3811929.0659 3812692.4096 16.4942 25.2416 93.0402 run25.mat -1 -1 835 3317089 3324741 +6615725 6636378 20654 3812708.1369 3813739.3736 18.1368 25.24 92.5961 run25.mat -1 -1 835 3324899 3335226 +6636690 6657377 20688 3813754.9796 3814790.95 19.7891 25.2405 92.598 run25.mat -1 -1 835 3335382 3345726 +6657684 6678397 20714 3814806.4857 3815843.8323 21.4336 25.2418 92.6042 run25.mat -1 -1 835 3345880 3356237 +6678704 6695907 17204 3815859.1855 3816717.5148 23.0896 25.2413 92.7586 run25.mat -1 -1 835 3356390 3364992 +6780200 6782699 2500 3820934.3447 3821059.3382 23.0859 25.2401 95.3445 run25.mat -1 -1 836 3407140 3408390 +6783008 6803697 20690 3821074.7942 3822108.6368 24.7345 25.2412 92.5516 run25.mat -1 -1 836 3408544 3418890 +6804005 6824696 20692 3822124.1641 3823157.2676 26.3848 25.2403 92.6588 run25.mat -1 -1 836 3419044 3429389 +6825002 6845680 20679 3823172.6941 3824205.3116 28.0301 25.2424 92.629 run25.mat -1 -1 836 3429542 3439882 +6845984 6866676 20693 3824220.4068 3825257.2105 29.6833 25.2403 92.6513 run25.mat -1 -1 836 3440034 3450380 +6866982 6875967 8986 3825272.5164 3825721.8946 31.3313 25.242 92.7761 run25.mat -1 -1 836 3450533 3455026 +6960424 6971174 10751 3829944.3353 3830482.3964 31.3353 25.2431 93.1662 run25.mat -1 -1 837 3497257 3502631 +6971487 6992161 20675 3830498.0494 3831530.3224 32.9845 25.242 92.5297 run25.mat -1 -1 837 3502788 3513126 +6992475 7013157 20683 3831546.1522 3832578.687 34.6316 25.2412 92.5608 run25.mat -1 -1 837 3513283 3523624 +7013465 7034157 20693 3832594.2144 3833629.3245 36.2849 25.2427 92.5513 run25.mat -1 -1 837 3523778 3534125 +7034464 7055137 20674 3833644.6774 3834680.5619 37.9334 25.2405 92.6584 run25.mat -1 -1 837 3534278 3544615 +7055444 7056226 783 3834695.9183 3834735.0346 39.583 25.2472 94.8333 run25.mat -1 -1 837 3544769 3545160 +7140490 7159489 19000 3838945.3167 3839897.5211 39.585 25.2408 92.9673 run25.mat -1 -1 838 3587294 3596793 +7159809 7180476 20668 3839913.6534 3840946.8547 41.2304 25.2423 92.6615 run25.mat -1 -1 838 3596953 3607287 +7180782 7201476 20695 3840962.0393 3841996.393 42.8776 25.2409 92.6251 run25.mat -1 -1 838 3607440 3617788 +7201783 7222475 20693 3842011.7459 3843048.478 44.5336 25.2412 92.6225 run25.mat -1 -1 838 3617941 3628287 +7222782 7236307 13526 3843063.9426 3843739.832 46.1802 25.2416 92.7466 run25.mat -1 -1 838 3628441 3635204 +7320606 7326921 6316 3847954.256 3848269.1927 46.1811 25.2395 94.2975 run25.mat -1 -1 839 3677356 3680513 +7327239 7347929 20691 3848285.0961 3849321.8389 47.8298 25.2392 92.4785 run25.mat -1 -1 839 3680672 3691018 +7348237 7368919 20683 3849337.1197 3850369.6626 49.4744 25.2408 92.5957 run25.mat -1 -1 839 3691172 3701513 +7369226 7389918 20693 3850385.0156 3851419.127 51.1282 25.2405 92.5482 run25.mat -1 -1 839 3701667 3712013 +7390226 7410898 20673 3851434.4109 3852468.0762 52.7738 25.2407 92.5798 run25.mat -1 -1 839 3712167 3722504 +7411204 7416506 5303 3852483.2578 3852747.6834 54.4219 25.2433 92.739 run25.mat -1 -1 839 3722657 3725308 +7500778 7515256 14479 3856962.2574 3857685.3386 54.4212 25.2414 92.9924 run25.mat -1 -1 840 3767445 3774684 +7515570 7536238 20669 3857701.0446 3858733.7217 56.0692 25.2415 92.5037 run25.mat -1 -1 840 3774841 3785176 +7536544 7557236 20693 3858748.9063 3859783.4934 57.7241 25.2397 92.5881 run25.mat -1 -1 840 3785329 3795676 +7557544 7578237 20694 3859798.7773 3860834.4141 59.3714 25.2429 92.4969 run25.mat -1 -1 840 3795830 3806177 +7578546 7596586 18041 3860849.7475 3861752.9732 61.022 25.2398 92.6692 run25.mat -1 -1 840 3806331 3815351 +7680874 7682728 1855 3865967.1412 3866060.6265 61.0204 25.2405 97.5082 run25.mat -1 -1 841 3857497 3858424 +7683046 7703718 20673 3866076.6612 3867110.845 62.6696 25.2432 92.5352 run25.mat -1 -1 841 3858583 3868920 +7704026 7724719 20694 3867126.2479 3868161.1675 64.3221 25.2408 92.5665 run25.mat -1 -1 841 3869074 3879421 +7725026 7745717 20692 3868176.3987 3869208.2142 65.9708 25.2413 92.5817 run25.mat -1 -1 841 3879574 3889920 +7746025 7766719 20695 3869223.8786 3870259.4285 67.6211 25.2409 92.6699 run25.mat -1 -1 841 3890074 3900422 +7767027 7776686 9660 3870275.0928 3870756.2414 69.2776 25.2422 92.6791 run25.mat -1 -1 841 3900576 3905405 +7861169 7871230 10062 3874980.5139 3875483.6791 69.271 25.2421 93.2295 run25.mat -1 -1 842 3947649 3952679 +7871551 7892239 20689 3875499.7353 3876535.6384 70.9208 25.2402 92.5849 run25.mat -1 -1 842 3952840 3963184 +7892552 7913237 20686 3876551.1673 3877585.8762 72.5692 25.2419 92.5036 run25.mat -1 -1 842 3963341 3973684 +7913545 7934242 20698 3877601.4066 3878636.559 74.2186 25.2423 92.5963 run25.mat -1 -1 842 3973838 3984187 +7934548 7955198 20651 3878651.7406 3879686.1457 75.8679 25.2405 92.6218 run25.mat -1 -1 842 3984340 3994665 +7955508 7956945 1438 3879701.5288 3879772.8368 77.5237 25.241 93.0793 run25.mat -1 -1 842 3994820 3995539 +8041114 8059548 18435 3883978.9444 3884900.0365 77.5137 25.2384 93.0912 run25.mat -1 -1 843 4037625 4046843 +8059867 8080541 20675 3884915.9896 3885951.8834 79.1654 25.2414 92.5348 run25.mat -1 -1 843 4047002 4057339 +8080847 8101540 20694 3885967.1939 3887000.3993 80.8133 25.2413 92.6435 run25.mat -1 -1 843 4057492 4067840 +8101846 8122186 20341 3887015.8258 3888032.7631 82.4647 25.2411 92.577 run25.mat -1 -1 843 4067993 4078163 +281502 302019 20518 3981939.484 3982968.2594 82.4625 26.9209 92.9103 run26.mat -1 -1 845 81817 92076 +302324 323013 20690 3982983.5126 3984016.2198 80.8153 26.9206 92.5585 run26.mat -1 -1 845 92229 102574 +323321 344015 20695 3984031.6228 3985068.6107 79.169 26.921 92.5121 run26.mat -1 -1 845 102728 113075 +344321 365017 20697 3985083.917 3986117.3838 77.5181 26.9206 92.5747 run26.mat -1 -1 845 113228 123576 +365325 377260 11936 3986132.6646 3986731.8861 75.8683 26.922 92.6218 run26.mat -1 -1 845 123730 129698 +461599 469396 7798 3990948.4 3991335.3517 75.8718 26.9211 93.2675 run26.mat -1 -1 846 171869 175769 +469702 490401 20700 3991350.5363 3992386.4279 74.2215 26.9209 92.4729 run26.mat -1 -1 846 175922 186271 +490705 511398 20694 3992401.7536 3993436.1433 72.5706 26.9206 92.6296 run26.mat -1 -1 846 186423 196770 +511707 532400 20694 3993451.4768 3994486.356 70.9176 26.9205 92.6289 run26.mat -1 -1 846 196925 207272 +532707 553377 20671 3994501.709 3995536.8893 69.2701 26.9212 92.6392 run26.mat -1 -1 846 207425 217761 +553684 557400 3717 3995552.1205 3995736.829 67.6156 26.9166 92.8749 run26.mat -1 -1 846 217914 219772 +641701 657717 16017 3999951.0091 4000754.6066 67.618 26.9209 92.9488 run26.mat -1 -1 847 261924 269933 +658047 678720 20674 4000770.9821 4001802.0557 65.9748 26.9209 92.5417 run26.mat -1 -1 847 270098 280435 +679026 699699 20674 4001817.4822 4002851.6624 64.3154 26.9214 92.5459 run26.mat -1 -1 847 280588 290925 +700006 720721 20716 4002867.1393 4003903.4748 62.6691 26.9217 92.5866 run26.mat -1 -1 847 291078 301436 +721027 737500 16474 4003918.9044 4004741.363 61.0198 26.9215 92.6877 run26.mat -1 -1 847 301589 309826 +821636 824877 3242 4008950.1486 4009112.2299 61.0199 26.9253 94.3338 run26.mat -1 -1 848 351896 353517 +825201 845880 20680 4009128.433 4010162.24 59.3724 26.9216 92.593 run26.mat -1 -1 848 353679 364018 +846187 866878 20692 4010177.72 4011210.7636 57.7221 26.9198 92.6647 run26.mat -1 -1 848 364172 374518 +867186 887879 20694 4011226.2941 4012260.2182 56.0713 26.9212 92.5422 run26.mat -1 -1 848 374672 385019 +888187 908859 20673 4012275.7455 4013311.4083 54.4227 26.9201 92.5826 run26.mat -1 -1 848 385173 395509 +909166 917420 8255 4013326.7613 4013737.8631 52.7773 26.9218 92.6221 run26.mat -1 -1 848 395663 399790 +1001895 1013477 11583 4017962.6096 4018540.6445 52.7774 26.9208 93.4094 run26.mat -1 -1 849 442029 447821 +1013801 1034499 20699 4018556.8477 4019592.0544 51.1288 26.9213 92.5873 run26.mat -1 -1 849 447983 458332 +1034806 1055498 20693 4019607.4074 4020642.2282 49.4773 26.9211 92.5792 run26.mat -1 -1 849 458486 468832 +1055805 1076500 20696 4020657.5841 4021691.495 47.8271 26.9206 92.5035 run26.mat -1 -1 849 468985 479334 +1076806 1097462 20657 4021706.9246 4022740.9831 46.1804 26.9205 92.7009 run26.mat -1 -1 849 479487 489815 +1181991 1201840 19850 4026965.5722 4027960.2709 44.532 26.9191 92.8441 run26.mat -1 -1 850 532081 542006 +1202145 1222820 20676 4027975.5241 4029009.5812 42.8805 26.9214 92.6043 run26.mat -1 -1 850 542159 552497 +1223128 1243819 20692 4029024.9844 4030058.7799 41.2316 26.9211 92.6364 run26.mat -1 -1 850 552651 562996 +1244126 1264820 20695 4030074.1358 4031107.1524 39.5835 26.9199 92.5167 run26.mat -1 -1 850 563150 573498 +1265128 1277759 12632 4031122.5583 4031755.4021 37.9361 26.9217 92.675 run26.mat -1 -1 850 573652 579968 +1362070 1369181 7112 4035971.3034 4036325.6372 37.9318 26.9199 93.6362 run26.mat -1 -1 851 622125 625680 +1369508 1390182 20675 4036341.9904 4037375.9938 36.2827 26.9213 92.4978 run26.mat -1 -1 851 625844 636181 +1390491 1411202 20712 4037391.4498 4038429.2682 34.6318 26.9212 92.6004 run26.mat -1 -1 851 636336 646692 +1411510 1432186 20677 4038444.6741 4039478.0202 32.98 26.921 92.6038 run26.mat -1 -1 851 646846 657184 +1432499 1453164 20666 4039493.5522 4040526.0015 31.3337 26.9214 92.6433 run26.mat -1 -1 851 657340 667674 +1453481 1457819 4339 4040541.8576 4040757.9734 29.6892 26.9207 92.578 run26.mat -1 -1 851 667832 670002 +1542053 1557520 15468 4044970.6599 4045742.7358 29.6847 26.9205 93.1636 run26.mat -1 -1 852 712120 719854 +1557848 1578523 20676 4045759.2747 4046793.6074 28.0333 26.9196 92.5943 run26.mat -1 -1 852 720018 730356 +1578830 1599524 20695 4046808.8416 4047843.9327 26.3835 26.9202 92.6571 run26.mat -1 -1 852 730510 740857 +1599830 1620523 20694 4047859.2356 4048894.5002 24.7385 26.9217 92.529 run26.mat -1 -1 852 741010 751357 +1620834 1637959 17126 4048909.9329 4049764.829 23.0921 26.921 92.7362 run26.mat -1 -1 852 751513 760075 +1722321 1725001 2681 4053985.6308 4054117.6255 23.0862 26.9185 95.9822 run26.mat -1 -1 853 802258 803598 +1725333 1746001 20669 4054133.9771 4055167.1636 21.4366 26.9205 92.6148 run26.mat -1 -1 853 803764 814098 +1746310 1767004 20695 4055182.497 4056219.2055 19.7896 26.9218 92.5616 run26.mat -1 -1 853 814253 824600 +1767309 1788002 20694 4056234.4613 4057269.4585 18.1401 26.9209 92.5757 run26.mat -1 -1 853 824753 835100 +1788309 1808984 20676 4057284.8115 4058318.8361 16.496 26.9214 92.7228 run26.mat -1 -1 853 835254 845591 +1809289 1818079 8791 4058334.092 4058772.9712 14.8389 26.9192 92.7493 run26.mat -1 -1 853 845744 850140 +1902360 1913280 10921 4062987.7606 4063532.0088 14.8425 26.9198 92.9776 run26.mat -1 -1 854 892282 897742 +1913605 1934288 20684 4063548.262 4064583.2146 13.1915 26.9217 92.6216 run26.mat -1 -1 854 897904 908246 +1934604 1955283 20680 4064598.7588 4065632.6744 11.5456 26.9209 92.5574 run26.mat -1 -1 854 908404 918744 +1955590 1976286 20697 4065648.0273 4066682.7146 9.8942 26.9218 92.5705 run26.mat -1 -1 854 918898 929247 +1976590 1997264 20675 4066697.7999 4067733.0649 8.2469 26.9219 92.6618 run26.mat -1 -1 854 929399 939736 +1997572 1998138 567 4067748.5954 4067776.9722 6.6256 26.9332 93.5765 run26.mat -1 -1 854 939890 940173 +2082426 2101621 19196 4071991.384 4072950.1913 6.5905 26.9202 92.9226 run26.mat -1 -1 855 982319 991916 +2101933 2122625 20693 4072965.6737 4073998.0423 4.9421 26.9214 92.6257 run26.mat -1 -1 855 992072 1002419 +2122933 2143624 20692 4074013.4453 4075048.3347 3.2926 26.9211 92.616 run26.mat -1 -1 855 1002573 1012919 +2143933 2164624 20692 4075063.9125 4076100.104 1.644 26.9213 92.6498 run26.mat -1 -1 855 1013074 1023419 +2164932 2178218 13287 4076115.3879 4076780.4469 -0.0038077 26.9221 92.674 run26.mat -1 -1 855 1023573 1030217 +2262436 2268942 6507 4080991.3832 4081314.9071 -0.00051879 26.9216 94.0277 run26.mat -1 -1 856 1072327 1075580 +2269270 2289966 20697 4081331.2182 4082368.0643 -1.6503 26.921 92.4484 run26.mat -1 -1 856 1075745 1086087 +2290271 2310944 20674 4082383.2568 4083416.4833 -3.2997 26.92 92.5277 run26.mat -1 -1 856 1086246 1096582 +2311251 2331956 20706 4083431.8392 4084466.4119 -4.9493 26.9204 92.5129 run26.mat -1 -1 856 1096736 1107089 +2332270 2352948 20679 4084482.2449 4085515.2337 -6.5956 26.9204 92.6587 run26.mat -1 -1 856 1107246 1117585 +2353254 2358317 5064 4085530.5366 4085785.2562 -8.2462 26.9222 92.8126 run26.mat -1 -1 856 1117738 1120270 +2442480 2457244 14765 4089993.0464 4090731.4585 -8.2438 26.9215 93.1917 run26.mat -1 -1 857 1162354 1169736 +2457567 2478248 20682 4090747.4867 4091781.7285 -9.8931 26.9213 92.5717 run26.mat -1 -1 857 1169897 1180239 +2478555 2499244 20690 4091796.9627 4092830.7701 -11.5397 26.9218 92.59 run26.mat -1 -1 857 1180392 1190737 +2499551 2520232 20682 4092846.247 4093878.817 -13.1935 26.9211 92.5562 run26.mat -1 -1 857 1190890 1201231 +2520544 2538377 17834 4093894.5135 4094787.4509 -14.8437 26.9201 92.7481 run26.mat -1 -1 857 1201387 1210304 +2622433 2624385 1953 4098990.46 4099087.3046 -14.8495 26.9227 97.1971 run26.mat -1 -1 858 1252334 1253310 +2624705 2645386 20682 4099103.1808 4100137.1657 -16.4933 26.9201 92.5677 run26.mat -1 -1 858 1253470 1263811 +2645693 2666386 20694 4100152.4034 4101187.0268 -18.143 26.9205 92.5953 run26.mat -1 -1 858 1263964 1274311 +2666696 2687389 20694 4101202.4068 4102239.9438 -19.7873 26.9207 92.565 run26.mat -1 -1 858 1274466 1284813 +2687694 2708381 20688 4102255.0758 4103287.5009 -21.4377 26.922 92.5702 run26.mat -1 -1 858 1284966 1295310 +2708689 2718277 9589 4103302.7817 4103783.5044 -23.096 26.9186 92.6795 run26.mat -1 -1 858 1295464 1300258 +2802515 2812666 10152 4107995.7877 4108503.1152 -23.0951 26.9198 93.4483 run26.mat -1 -1 859 1342379 1347455 +2812987 2833686 20700 4108519.1683 4109553.3285 -24.743 26.921 92.5092 run26.mat -1 -1 859 1347615 1357965 +2833995 2854670 20676 4109568.9062 4110602.6128 -26.3923 26.9216 92.5593 run26.mat -1 -1 859 1358119 1368458 +2854983 2875682 20700 4110618.1417 4111651.5862 -28.0382 26.9214 92.521 run26.mat -1 -1 859 1368614 1378963 +2875992 2896666 20675 4111666.8571 4112702.2358 -29.6906 26.9206 92.7232 run26.mat -1 -1 859 1379118 1389456 +2896975 2898317 1343 4112717.5662 4112784.1469 -31.3387 26.9176 93.1088 run26.mat -1 -1 859 1389611 1390282 +2982670 3001187 18518 4117004.3436 4117928.7892 -31.3358 26.92 93.0091 run26.mat -1 -1 860 1432461 1441719 +3001510 3022192 20683 4117944.9423 4118979.2529 -32.9859 26.9194 92.6011 run26.mat -1 -1 860 1441881 1452222 +3022508 3043190 20683 4118995.1042 4120027.5202 -34.632 26.9209 92.6103 run26.mat -1 -1 860 1452380 1462722 +3043497 3064175 20679 4120042.8761 4121079.0392 -36.2863 26.9211 92.5673 run26.mat -1 -1 860 1462875 1473214 +3064487 3078497 14011 4121094.6457 4121795.5975 -37.9321 26.9207 92.8415 run26.mat -1 -1 860 1473370 1480376 +3162810 3168510 5701 4126011.0991 4126296.2155 -37.9331 26.9201 93.5199 run26.mat -1 -1 861 1522534 1525384 +3168815 3189516 20702 4126311.4713 4127345.4675 -39.5803 26.9213 92.5159 run26.mat -1 -1 861 1525537 1535887 +3189828 3210510 20683 4127361.1997 4128395.8268 -41.2298 26.9218 92.5266 run26.mat -1 -1 861 1536043 1546385 +3210818 3231512 20695 4128411.23 4129444.186 -42.8774 26.9208 92.6306 run26.mat -1 -1 861 1546539 1556887 +3231817 3252492 20676 4129459.4389 4130493.491 -44.5312 26.9208 92.6292 run26.mat -1 -1 861 1557039 1567377 +3252803 3258595 5793 4130509.0469 4130800.4888 -46.1756 26.9209 92.6205 run26.mat -1 -1 861 1567533 1570429 +3342913 3356970 14058 4135014.6936 4135719.0526 -46.1775 26.9204 93.2354 run26.mat -1 -1 862 1612590 1619618 +3357296 3377972 20677 4135735.4874 4136768.0458 -47.8339 26.9209 92.5354 run26.mat -1 -1 862 1619781 1630120 +3378279 3398979 20701 4136783.399 4137816.8042 -49.482 26.9212 92.5507 run26.mat -1 -1 862 1630273 1640624 +3399293 3419976 20684 4137832.634 4138868.7655 -51.1327 26.9207 92.6799 run26.mat -1 -1 862 1640781 1651123 +3420287 3438715 18429 4138884.3185 4139805.765 -52.7804 26.9216 92.6812 run26.mat -1 -1 862 1651279 1660493 +3523009 3524294 1286 4144020.7776 4144085.0032 -52.7894 26.9195 96.7713 run26.mat -1 -1 863 1702641 1703284 +3524636 3545291 20656 4144101.9708 4145135.1617 -54.4277 26.9215 92.6246 run26.mat -1 -1 863 1703455 1713783 +3545599 3566294 20696 4145150.5649 4146184.775 -56.0761 26.9194 92.661 run26.mat -1 -1 863 1713937 1724285 +3566600 3587294 20695 4146199.9565 4147232.5245 -57.728 26.9203 92.507 run26.mat -1 -1 863 1724438 1734786 +3587599 3608276 20678 4147247.6565 4148285.6198 -59.3763 26.9206 92.6208 run26.mat -1 -1 863 1734938 1745277 +3608581 3618795 10215 4148301.1316 4148808.3409 -61.0202 26.921 92.7434 run26.mat -1 -1 863 1745430 1750537 +3703227 3712753 9527 4153030.2122 4153505.4598 -61.0189 26.9237 93.4795 run26.mat -1 -1 864 1792755 1797518 +3713078 3733756 20679 4153521.716 4154556.2691 -62.6729 26.9214 92.5251 run26.mat -1 -1 864 1797681 1808020 +3734061 3754755 20695 4154571.4011 4155606.0985 -64.317 26.9209 92.6603 run26.mat -1 -1 864 1808172 1818520 +3755062 3775752 20691 4155621.5001 4156657.2096 -65.9717 26.9204 92.5981 run26.mat -1 -1 864 1818674 1829019 +3776061 3796737 20677 4156672.6628 4157708.6707 -67.6199 26.9208 92.645 run26.mat -1 -1 864 1829173 1839512 +3797050 3799036 1987 4157724.3237 4157823.6428 -69.2611 26.9215 92.9623 run26.mat -1 -1 864 1839668 1840661 +3883401 3901134 17734 4162040.3428 4162925.3374 -69.271 26.9195 92.8744 run26.mat -1 -1 865 1882846 1891713 +3901438 3922118 20681 4162940.663 4163975.1666 -70.9186 26.921 92.5946 run26.mat -1 -1 865 1891865 1902204 +3922440 3943115 20676 4163991.403 4165025.7608 -72.5685 26.9208 92.6009 run26.mat -1 -1 865 1902365 1912704 +3943420 3964135 20716 4165041.1369 4166077.4346 -74.223 26.9214 92.5556 run26.mat -1 -1 865 1912856 1923214 +3964441 3979156 14716 4166092.8611 4166827.389 -75.8656 26.9199 92.6475 run26.mat -1 -1 865 1923367 1930725 +4063298 4068293 4996 4171036.184 4171286.0165 -75.8776 26.9211 94.2113 run26.mat -1 -1 866 1972798 1975296 +4068616 4089314 20699 4171302.1728 4172335.3442 -77.5189 26.921 92.4626 run26.mat -1 -1 866 1975457 1985807 +4089622 4110315 20694 4172350.7474 4173383.7407 -79.1719 26.9212 92.5726 run26.mat -1 -1 866 1985961 1996307 +4110619 4131304 20686 4173398.8455 4174435.3524 -80.8195 26.921 92.5958 run26.mat -1 -1 866 1996459 2006803 +4131616 4152295 20680 4174450.9554 4175484.5646 -82.4684 26.9209 92.5859 run26.mat -1 -1 866 2006959 2017299 +4152603 4159075 6473 4175500.092 4175824.1072 -82.4731 28.6036 92.7528 run26.mat -1 -1 866 2017453 2020689 +4243277 4256631 13355 4180033.4701 4180701.3047 -82.4645 28.6048 93.2574 run26.mat -1 -1 867 2062792 2069469 +4256946 4277636 20691 4180717.0577 4181753.8278 -80.8206 28.605 92.547 run26.mat -1 -1 867 2069626 2079972 +4277943 4298634 20692 4181769.1842 4182800.8838 -79.1697 28.6048 92.5888 run26.mat -1 -1 867 2080125 2090471 +4298941 4319636 20696 4182816.3608 4183850.4181 -77.516 28.6042 92.5752 run26.mat -1 -1 867 2090625 2100973 +4319941 4339175 19235 4183865.6744 4184829.7406 -75.8696 28.6041 92.6997 run26.mat -1 -1 867 2101125 2110743 +4425530 4426041 512 4189147.4422 4189172.9971 -75.8458 28.6092 97.9206 run26.mat -1 -1 868 2153922 2154178 +4426358 4447015 20658 4189188.8502 4190221.9571 -74.2191 28.6042 92.6896 run26.mat -1 -1 868 2154336 2164662 +4447320 4468017 20698 4190237.2103 4191271.3678 -72.5709 28.6046 92.6288 run26.mat -1 -1 868 2164817 2175166 +4468323 4489014 20692 4191286.6707 4192320.3971 -70.9168 28.6051 92.5816 run26.mat -1 -1 868 2175319 2185666 +4489322 4509997 20676 4192335.6779 4193370.424 -69.2696 28.6041 92.6146 run26.mat -1 -1 868 2185820 2196157 +4510301 4521315 11015 4193385.7527 4193935.1013 -67.6202 28.6043 92.7616 run26.mat -1 -1 868 2196309 2201817 +4605297 4614203 8907 4198134.7093 4198580.5815 -67.6213 28.6044 93.6854 run26.mat -1 -1 869 2243809 2248263 +4614520 4635217 20698 4198596.3088 4199631.1731 -65.9703 28.6051 92.5166 run26.mat -1 -1 869 2248421 2258770 +4635527 4656214 20688 4199646.5562 4200682.5247 -64.3196 28.6046 92.6002 run26.mat -1 -1 869 2258925 2269269 +4656523 4677201 20679 4200698.1024 4201730.402 -62.6694 28.6043 92.6284 run26.mat -1 -1 869 2269424 2279763 +4677519 4698175 20657 4201746.3051 4202777.7511 -61.0235 28.604 92.6408 run26.mat -1 -1 869 2279922 2290250 +4698486 4701154 2669 4202793.4328 4202927.9629 -59.3731 28.6054 92.6934 run26.mat -1 -1 869 2290406 2291740 +4785483 4802579 17097 4207144.0012 4207999.7815 -59.3809 28.6042 92.9772 run26.mat -1 -1 870 2333906 2342455 +4802888 4823580 20693 4208015.1119 4209049.2091 -57.7286 28.6043 92.5974 run26.mat -1 -1 870 2342609 2352956 +4823884 4844557 20674 4209064.412 4210099.567 -56.0797 28.6046 92.5785 run26.mat -1 -1 870 2353108 2363445 +4844865 4865556 20692 4210114.8478 4211149.3784 -54.4291 28.6052 92.6743 run26.mat -1 -1 870 2363599 2373945 +4865863 4881294 15432 4211164.6096 4211934.1572 -52.7841 28.6047 92.7392 run26.mat -1 -1 870 2374098 2381814 +4965636 4969920 4285 4216152.775 4216366.291 -52.783 28.603 94.4788 run26.mat -1 -1 871 2423987 2426129 +4970230 4990898 20669 4216381.6741 4217416.2013 -51.1328 28.6041 92.47 run26.mat -1 -1 871 2426284 2436619 +4991204 5011914 20711 4217431.5077 4218465.9357 -49.4818 28.6039 92.6393 run26.mat -1 -1 871 2436772 2447127 +5012221 5032916 20696 4218481.1699 4219518.5231 -47.8279 28.6046 92.5963 run26.mat -1 -1 871 2447280 2457628 +5033223 5053897 20675 4219534 4220566.0042 -46.1825 28.6032 92.6868 run26.mat -1 -1 871 2457781 2468119 +5054204 5061434 7231 4220581.3572 4220941.8523 -44.5318 28.6047 92.7801 run26.mat -1 -1 871 2468273 2471888 +5145751 5158252 12502 4225160.8646 4225782.5744 -44.5309 28.6048 93.2512 run26.mat -1 -1 872 2514048 2520299 +5158562 5179258 20697 4225797.9575 4226834.6471 -42.8785 28.6041 92.569 run26.mat -1 -1 872 2520454 2530802 +5179563 5200259 20697 4226849.9029 4227884.9596 -41.2306 28.604 92.6002 run26.mat -1 -1 872 2530955 2541304 +5200566 5221252 20687 4227900.3126 4228933.5942 -39.5804 28.6047 92.6213 run26.mat -1 -1 872 2541457 2551800 +5221563 5241534 19972 4228949.2759 4229947.2926 -37.9346 28.6035 92.7268 run26.mat -1 -1 872 2551956 2561942 +5325820 5346417 20598 4234161.7088 4235192.4267 -36.2854 28.6051 92.8249 run26.mat -1 -1 873 2604087 2614386 +5346726 5367400 20675 4235208.0044 4236243.2244 -34.6324 28.6052 92.5301 run26.mat -1 -1 873 2614540 2624878 +5367715 5388403 20689 4236258.9777 4237289.6682 -32.9839 28.6046 92.5877 run26.mat -1 -1 873 2625035 2635379 +5388715 5409402 20688 4237305.2747 4238341.8934 -31.3378 28.6037 92.6028 run26.mat -1 -1 873 2635535 2645880 +5409706 5421472 11767 4238357.0964 4238945.5645 -29.6903 28.6048 92.7562 run26.mat -1 -1 873 2646032 2651915 +5505713 5513704 7992 4243157.7041 4243556.1863 -29.6904 28.6036 93.2519 run26.mat -1 -1 874 2694037 2698033 +5514019 5534702 20684 4243571.8144 4244608.2158 -28.0384 28.6039 92.4826 run26.mat -1 -1 874 2698190 2708533 +5535010 5555688 20679 4244623.7463 4245656.1147 -26.3903 28.6045 92.6214 run26.mat -1 -1 874 2708687 2719026 +5556000 5576688 20689 4245671.7029 4246704.6001 -24.739 28.604 92.5356 run26.mat -1 -1 874 2719182 2729526 +5577002 5597662 20661 4246720.4299 4247756.5096 -23.0946 28.6039 92.6684 run26.mat -1 -1 874 2729683 2740014 +5597968 5601513 3546 4247771.6912 4247947.5694 -21.4321 28.6066 92.8742 run26.mat -1 -1 874 2740167 2741939 +5687867 5704196 16330 4252264.8218 4253081.5328 -21.4349 28.605 93.1627 run26.mat -1 -1 875 2785118 2793283 +5704511 5725180 20670 4253097.413 4254131.678 -19.7893 28.6039 92.6006 run26.mat -1 -1 875 2793441 2803775 +5725489 5746179 20691 4254147.1339 4255179.9463 -18.1415 28.6043 92.6713 run26.mat -1 -1 875 2803930 2814275 +5746488 5767178 20691 4255195.3993 4256232.0204 -16.4904 28.6043 92.573 run26.mat -1 -1 875 2814430 2824776 +5767488 5783672 16185 4256247.4005 4257053.7449 -14.8426 28.6052 92.7745 run26.mat -1 -1 875 2824931 2833023 +5868005 5871510 3506 4261271.3713 4261445.2649 -14.8402 28.6052 93.7723 run26.mat -1 -1 876 2875191 2876944 +5871825 5892521 20697 4261460.9002 4262497.7833 -13.1933 28.6042 92.4875 run26.mat -1 -1 876 2877101 2887450 +5892830 5913504 20675 4262513.1137 4263547.4149 -11.5403 28.6042 92.6394 run26.mat -1 -1 876 2887604 2897942 +5913816 5934503 20688 4263563.0179 4264596.7672 -9.8937 28.6051 92.6359 run26.mat -1 -1 876 2898098 2908441 +5934809 5955493 20685 4264611.9488 4265647.5813 -8.2425 28.6043 92.6084 run26.mat -1 -1 876 2908594 2918937 +5955805 5963772 7968 4265663.3134 4266060.4624 -6.5939 28.6042 92.6597 run26.mat -1 -1 876 2919093 2923077 +6047985 6059771 11787 4270271.9089 4270860.4979 -6.5955 28.6041 93.1473 run26.mat -1 -1 877 2965185 2971078 +6060090 6080783 20694 4270876.5798 4271912.2282 -4.9445 28.6049 92.5893 run26.mat -1 -1 877 2971238 2981585 +6081088 6101759 20672 4271927.3602 4272958.5319 -3.2986 28.6041 92.6071 run26.mat -1 -1 877 2981737 2992074 +6102068 6122762 20695 4272973.9883 4274010.9411 -1.6499 28.6042 92.5885 run26.mat -1 -1 877 2992228 3002575 +6123069 6143735 20667 4274026.1893 4275057.8715 -0.0015163 28.6046 92.6603 run26.mat -1 -1 877 3002729 3013062 +6227865 6247927 20063 4279264.715 4280267.995 1.6434 28.6047 93.0447 run26.mat -1 -1 878 3055129 3065160 +6248234 6268928 20695 4280283.2262 4281318.1552 3.2948 28.6048 92.5193 run26.mat -1 -1 878 3065314 3075661 +6269241 6289924 20684 4281333.8085 4282368.8217 4.9424 28.6042 92.6799 run26.mat -1 -1 878 3075818 3086160 +6290230 6310923 20694 4282384.2482 4283418.3376 6.5915 28.604 92.5794 run26.mat -1 -1 878 3086313 3096660 +6311230 6323753 12524 4283433.8145 4284061.1014 8.2435 28.6039 92.6418 run26.mat -1 -1 878 3096813 3103075 +6408035 6415220 7186 4288273.3413 4288634.6634 8.248 28.6047 93.4663 run26.mat -1 -1 879 3145218 3148811 +6415534 6436221 20688 4288650.3664 4289683.8425 9.893 28.6042 92.4643 run26.mat -1 -1 879 3148968 3159312 +6436530 6457221 20692 4289699.4202 4290731.9756 11.5439 28.6044 92.595 run26.mat -1 -1 879 3159466 3169812 +6457529 6478223 20695 4290747.2564 4291783.6369 13.1902 28.6041 92.5383 run26.mat -1 -1 879 3169966 3180314 +6478528 6499203 20676 4291798.8933 4292834.873 14.8461 28.6044 92.6219 run26.mat -1 -1 879 3180466 3190804 +6499509 6503812 4304 4292850.0546 4293063.5394 16.4962 28.6051 92.9856 run26.mat -1 -1 879 3190957 3193109 +6588046 6603508 15463 4297273.7729 4298046.631 16.4938 28.6042 92.9529 run26.mat -1 -1 880 3235227 3242959 +6603828 6624523 20696 4298062.6372 4299099.5975 18.1429 28.6047 92.4904 run26.mat -1 -1 880 3243119 3253467 +6624831 6645509 20679 4299114.9817 4300149.3 19.7933 28.6044 92.641 run26.mat -1 -1 880 3253621 3263960 +6645821 6666503 20683 4300164.9 4301195.9375 21.4372 28.6043 92.5453 run26.mat -1 -1 880 3264116 3274458 +6666813 6683912 17100 4301211.5656 4302067.8883 23.0891 28.6038 92.6781 run26.mat -1 -1 880 3274613 3283162 +6768011 6770623 2613 4306272.8984 4306403.5487 23.09 28.605 94.8395 run26.mat -1 -1 881 3325214 3326520 +6770942 6791640 20699 4306419.4033 4307454.6599 24.7369 28.6042 92.5594 run26.mat -1 -1 881 3326680 3337029 +6791950 6812622 20673 4307470.1632 4308504.2493 26.3855 28.6049 92.5565 run26.mat -1 -1 881 3337184 3347520 +6812929 6833623 20695 4308519.4805 4309555.3307 28.0336 28.6045 92.641 run26.mat -1 -1 881 3347674 3358021 +6833932 6854622 20691 4309570.7839 4310605.5412 29.6879 28.6054 92.6164 run26.mat -1 -1 881 3358176 3368521 +6854931 6863791 8861 4310620.9944 4311062.1631 31.3326 28.604 92.822 run26.mat -1 -1 881 3368676 3373106 +6947993 6958962 10970 4315272.3247 4315821.7863 31.331 28.6047 93.38 run26.mat -1 -1 882 3415209 3420693 +6959271 6979942 20672 4315837.1167 4316868.748 32.9815 28.6045 92.5911 run26.mat -1 -1 882 3420848 3431184 +6980249 7000943 20695 4316883.9792 4317920.6137 34.6295 28.6047 92.5514 run26.mat -1 -1 882 3431338 3441685 +7001250 7021940 20691 4317935.8466 4318968.7057 36.2809 28.6042 92.529 run26.mat -1 -1 882 3441839 3452184 +7022251 7042905 20655 4318984.2587 4320019.4971 37.9316 28.6047 92.6994 run26.mat -1 -1 882 3452340 3462667 +7043215 7043891 677 4320035.0627 4320069.0058 39.569 28.6024 93.6904 run26.mat -1 -1 882 3462822 3463160 +7128203 7147266 19064 4324282.7969 4325238.2906 39.5827 28.6046 92.8941 run26.mat -1 -1 883 3505318 3514849 +7147591 7168263 20673 4325254.3005 4326286.2689 41.231 28.6046 92.5689 run26.mat -1 -1 883 3515012 3525349 +7168569 7189265 20697 4326301.4505 4327336.2292 42.8793 28.6042 92.6081 run26.mat -1 -1 883 3525502 3535850 +7189572 7210246 20675 4327351.4604 4328385.1973 44.5308 28.605 92.5618 run26.mat -1 -1 883 3536004 3546341 +7210553 7223991 13439 4328400.4285 4329072.5507 46.1805 28.6041 92.7832 run26.mat -1 -1 883 3546495 3553214 +7308226 7314514 6289 4333282.7066 4333597.1704 46.18 28.6051 93.7309 run26.mat -1 -1 884 3595333 3598477 +7314829 7335504 20676 4333612.9234 4334649.9284 47.8292 28.6043 92.4894 run26.mat -1 -1 884 3598635 3608973 +7335811 7356506 20696 4334665.2814 4335699.7899 49.477 28.6036 92.6056 run26.mat -1 -1 884 3609126 3619474 +7356813 7377505 20693 4335715.2668 4336746.62 51.1288 28.6044 92.6315 run26.mat -1 -1 884 3619628 3629974 +7377812 7398486 20675 4336761.8512 4337797.8588 52.7782 28.6046 92.6225 run26.mat -1 -1 884 3630128 3640465 +7398791 7404031 5241 4337813.1118 4338074.6612 54.4255 28.6048 92.5569 run26.mat -1 -1 884 3640618 3643238 +7488264 7502759 14496 4342287.0179 4343011.9454 54.4278 28.6046 92.9325 run26.mat -1 -1 885 3685357 3692604 +7503074 7523766 20693 4343027.6636 4344062.3987 56.0702 28.6041 92.4688 run26.mat -1 -1 885 3692762 3703108 +7524072 7544765 20694 4344077.5803 4345111.1771 57.7267 28.6055 92.692 run26.mat -1 -1 885 3703261 3713608 +7545072 7565765 20694 4345126.654 4346161.3518 59.3694 28.6037 92.5766 run26.mat -1 -1 885 3713761 3724108 +7566071 7584030 17960 4346176.4071 4347074.5041 61.0214 28.6041 92.7558 run26.mat -1 -1 885 3724261 3733241 +7668075 7669888 1814 4351277.3141 4351367.9605 61.0254 28.607 97.0581 run26.mat -1 -1 886 3775266 3776172 +7670205 7690886 20682 4351383.9415 4352417.0244 62.67 28.6043 92.5691 run26.mat -1 -1 886 3776331 3786672 +7691195 7711886 20692 4352432.3548 4353468.6095 64.318 28.6047 92.5964 run26.mat -1 -1 886 3786826 3797172 +7712195 7732869 20675 4353484.1249 4354517.0921 65.9678 28.6044 92.5987 run26.mat -1 -1 886 3797327 3807663 +7733184 7753869 20686 4354532.7233 4355568.6628 67.6191 28.6049 92.5746 run26.mat -1 -1 886 3807821 3818164 +7754174 7763929 9756 4355584.042 4356070.0943 69.2693 28.604 92.755 run26.mat -1 -1 886 3818317 3823195 +7848181 7858231 10051 4360282.1463 4360785.4389 69.2641 28.6023 93.1401 run26.mat -1 -1 887 3865322 3870348 +7858545 7879226 20682 4360801.0828 4361835.1436 70.9176 28.6042 92.5286 run26.mat -1 -1 887 3870505 3880846 +7879531 7900227 20697 4361850.3967 4362883.5635 72.5698 28.605 92.5412 run26.mat -1 -1 887 3880998 3891346 +7900535 7921226 20692 4362899.094 4363935.1605 74.2193 28.6042 92.5767 run26.mat -1 -1 887 3891500 3901847 +7921531 7942207 20677 4363950.2925 4364983.0223 75.8674 28.6056 92.6161 run26.mat -1 -1 887 3901999 3912337 +7942515 7944029 1515 4364998.4255 4365074.1413 77.5104 28.6016 91.8637 run26.mat -1 -1 887 3912491 3913248 +8028210 8046547 18338 4369284.1814 4370201.9067 77.5178 28.6047 93.0469 run26.mat -1 -1 888 3955341 3964510 +8046857 8067528 20672 4370217.2898 4371250.8349 79.1659 28.6049 92.5291 run26.mat -1 -1 888 3964665 3975001 +8067839 8088546 20708 4371266.2676 4372300.8834 80.8158 28.6041 92.6043 run26.mat -1 -1 888 3975157 3985510 +8088852 8109183 20332 4372316.1864 4373331.9873 82.4662 28.6046 92.5377 run26.mat -1 -1 888 3985663 3995829 +261264 281797 20534 4465191.2044 4466219.4735 82.4643 30.288 92.8311 run27.mat -1 -1 890 166563 176829 +282103 302798 20696 4466234.9 4467267.9571 80.8194 30.2888 92.5506 run27.mat -1 -1 890 176982 187330 +303105 323798 20694 4467283.3135 4468319.917 79.1676 30.2881 92.5696 run27.mat -1 -1 890 187484 197831 +324119 344817 20699 4468335.9097 4469368.4444 77.5183 30.2879 92.4846 run27.mat -1 -1 890 197991 208340 +345122 357066 11945 4469383.7007 4469982.8611 75.8649 30.2877 92.2729 run27.mat -1 -1 890 208493 214466 +441379 449194 7816 4474198.6469 4474588.7128 75.8695 30.2882 93.4226 run27.mat -1 -1 891 256624 260532 +449532 470216 20685 4474605.6161 4475639.9484 74.2196 30.2881 92.4802 run27.mat -1 -1 891 260701 271043 +470523 491218 20696 4475655.4284 4476689.5102 72.5698 30.2881 92.5812 run27.mat -1 -1 891 271196 281545 +491525 512198 20674 4476704.8661 4477738.3015 70.9158 30.2877 92.5166 run27.mat -1 -1 891 281698 292035 +512506 533197 20692 4477753.8288 4478788.8016 69.2701 30.2876 92.7283 run27.mat -1 -1 891 292189 302535 +533503 537145 3643 4478804.2281 4478985.0579 67.6188 30.2886 92.5594 run27.mat -1 -1 891 302688 304509 +621200 637316 16117 4483188.3517 4483994.0477 67.6174 30.287 92.8197 run27.mat -1 -1 892 346538 354597 +637642 658318 20677 4484010.4202 4485042.8502 65.9697 30.2886 92.5206 run27.mat -1 -1 892 354760 365098 +658628 679338 20711 4485058.2366 4486095.4694 64.3188 30.288 92.4511 run27.mat -1 -1 892 365253 375609 +679646 700319 20674 4486111.0474 4487143.8112 62.6695 30.2883 92.63 run27.mat -1 -1 892 375763 386099 +700626 717005 16380 4487159.2912 4487977.8309 61.0207 30.2876 92.784 run27.mat -1 -1 892 386253 394443 +801236 804776 3541 4492190.6439 4492366.9191 61.0235 30.2882 95.4022 run27.mat -1 -1 893 436560 438331 +805083 825783 20701 4492382.396 4493417.9879 59.3747 30.2881 92.5267 run27.mat -1 -1 893 438484 448842 +826095 846785 20691 4493433.7169 4494469.6583 57.7265 30.2877 92.6279 run27.mat -1 -1 893 448991 459336 +847103 867781 20679 4494485.5644 4495516.2195 56.074 30.288 92.6602 run27.mat -1 -1 893 459495 469835 +868088 888781 20694 4495531.4538 4496568.1 54.4286 30.288 92.5779 run27.mat -1 -1 893 469988 480335 +889087 897105 8019 4496583.4 4496983.7416 52.7743 30.2879 92.764 run27.mat -1 -1 893 480488 484497 +981143 992819 11677 4501185.2767 4501769.8974 52.7775 30.2884 92.8926 run27.mat -1 -1 894 526518 532356 +993148 1013823 20676 4501786.4834 4502820.7365 51.1318 30.2884 92.5527 run27.mat -1 -1 894 532521 542858 +1014130 1034807 20678 4502835.9677 4503869.5825 49.4763 30.288 92.5524 run27.mat -1 -1 894 543012 553351 +1035125 1055803 20679 4503885.6172 4504920.5359 47.8288 30.2885 92.5364 run27.mat -1 -1 894 553510 563849 +1056110 1076784 20675 4504935.7701 4505968.5609 46.1795 30.2877 92.6311 run27.mat -1 -1 894 564003 574341 +1161172 1181321 20150 4510185.956 4511195.6342 44.528 30.2875 92.9599 run27.mat -1 -1 895 616536 626611 +1181647 1202323 20677 4511212.069 4512245.2779 42.8746 30.2877 92.601 run27.mat -1 -1 895 626774 637113 +1202629 1223323 20695 4512260.5809 4513296.0171 41.2276 30.2878 92.5548 run27.mat -1 -1 895 637266 647613 +1223630 1244324 20695 4513311.4941 4514346.7834 39.5763 30.2881 92.6081 run27.mat -1 -1 895 647767 658114 +1244629 1257065 12437 4514362.1411 4514983.1335 37.9302 30.2875 92.696 run27.mat -1 -1 895 658267 664485 +1341154 1348519 7366 4519186.0282 4519554.723 37.9322 30.288 93.7974 run27.mat -1 -1 896 706531 710214 +1348849 1369556 20708 4519571.0953 4520609.1452 36.2839 30.2888 92.497 run27.mat -1 -1 896 710379 720733 +1369867 1390543 20677 4520624.6985 4521655.0436 34.6328 30.2882 92.5944 run27.mat -1 -1 896 720888 731227 +1390848 1411543 20696 4521670.4228 4522706.6954 32.9814 30.2876 92.4922 run27.mat -1 -1 896 731379 741727 +1411849 1432524 20676 4522721.877 4523755.5881 31.3381 30.2882 92.7095 run27.mat -1 -1 896 741880 752218 +1432830 1436944 4115 4523771.0177 4523976.9097 29.6866 30.2894 92.713 run27.mat -1 -1 896 752371 754428 +1521031 1536642 15612 4528182.1561 4528960.4023 29.6892 30.2878 93.1025 run27.mat -1 -1 897 796474 804279 +1536968 1557661 20694 4528976.5761 4530012.1227 28.0358 30.2882 92.5886 run27.mat -1 -1 897 804442 814790 +1557967 1578643 20677 4530027.4259 4531061.2237 26.3879 30.2879 92.5404 run27.mat -1 -1 897 814943 825281 +1578952 1599642 20691 4531076.5541 4532110.65 24.7385 30.2882 92.6138 run27.mat -1 -1 897 825435 835781 +1599951 1616824 16874 4532126.1 4532971.4241 23.0905 30.2878 92.7828 run27.mat -1 -1 897 835935 844372 +1702866 1705761 2896 4537273.6426 4537417.2723 23.0898 30.2882 95.311 run27.mat -1 -1 898 887386 888811 +1706083 1726782 20700 4537433.2477 4538468.2436 21.4373 30.288 92.5114 run27.mat -1 -1 898 889004 899354 +1727090 1747783 20694 4538483.6495 4539518.8778 19.7911 30.288 92.6201 run27.mat -1 -1 898 899508 909855 +1748090 1768764 20675 4539534.3547 4540569.1655 18.1374 30.288 92.6388 run27.mat -1 -1 898 910008 920346 +1769072 1789764 20693 4540584.4463 4541617.1691 16.4916 30.2882 92.629 run27.mat -1 -1 898 920500 930846 +1790072 1798744 8673 4541632.4499 4542066.6792 14.8401 30.2878 92.7098 run27.mat -1 -1 898 931000 935336 +1883007 1894165 11159 4546278.6136 4546837.4499 14.843 30.2886 93.3715 run27.mat -1 -1 899 977469 983049 +1894470 1915163 20694 4546852.826 4547888.0432 13.1871 30.2881 92.5928 run27.mat -1 -1 899 983201 993549 +1915472 1936154 20683 4547903.624 4548938.728 11.5383 30.2885 92.5023 run27.mat -1 -1 899 993703 1004044 +1936467 1957144 20678 4548954.384 4549985.4439 9.8914 30.2889 92.5412 run27.mat -1 -1 899 1004200 1014540 +1957453 1978144 20692 4550000.8969 4551035.7039 8.2423 30.2879 92.7448 run27.mat -1 -1 899 1014694 1025041 +1978451 1978784 334 4551051.0571 4551067.7106 6.6104 30.2898 93.3872 run27.mat -1 -1 899 1025194 1025361 +2062895 2082384 19490 4555274.349 4556249.7685 6.5961 30.2887 93.0792 run27.mat -1 -1 900 1067418 1077162 +2082713 2103386 20674 4556266.3545 4557300.2266 4.9439 30.2881 92.5537 run27.mat -1 -1 900 1077327 1087664 +2103692 2124386 20695 4557315.4082 4558350.2425 3.2955 30.2884 92.5224 run27.mat -1 -1 900 1087817 1098164 +2124692 2145384 20693 4558365.4241 4559399.7665 1.6487 30.2882 92.5372 run27.mat -1 -1 900 1098317 1108664 +2145695 2158644 12950 4559415.445 4560062.1662 0.0020713 30.2885 92.7146 run27.mat -1 -1 900 1108819 1115294 +2242849 2249703 6855 4564272.4389 4564614.7761 -0.0015481 30.2879 94.2906 run27.mat -1 -1 901 1157399 1160825 +2250033 2270725 20693 4564631.1516 4565665.3904 -1.6487 30.2878 92.5191 run27.mat -1 -1 901 1160990 1171337 +2271032 2291725 20694 4565680.8673 4566714.9061 -3.2958 30.2875 92.5749 run27.mat -1 -1 901 1171491 1181838 +2292033 2312726 20694 4566730.312 4567767.2392 -4.9447 30.2878 92.6488 run27.mat -1 -1 901 1181992 1192338 +2313034 2333709 20676 4567782.6424 4568815.8107 -6.5951 30.2874 92.5988 run27.mat -1 -1 901 1192492 1202831 +2334015 2338743 4729 4568831.0083 4569069.3628 -8.254 30.2875 92.9248 run27.mat -1 -1 901 1202983 1205347 +2422824 2437966 15143 4573271.9601 4574028.885 -8.245 30.2883 93.1066 run27.mat -1 -1 902 1247390 1254961 +2438270 2458965 20696 4574044.0881 4575079.1409 -9.897 30.288 92.5403 run27.mat -1 -1 902 1255113 1265462 +2459273 2479966 20694 4575094.5473 4576129.1802 -11.5418 30.2883 92.5658 run27.mat -1 -1 902 1265616 1275962 +2480271 2500948 20678 4576144.3122 4577178.3144 -13.1964 30.2879 92.5333 run27.mat -1 -1 902 1276115 1286454 +2501260 2518623 17364 4577193.7967 4578062.2684 -14.8462 30.288 92.7224 run27.mat -1 -1 902 1286610 1295291 +2602780 2605224 2445 4582271.6149 4582392.893 -14.8447 30.2899 95.9175 run27.mat -1 -1 903 1337372 1338594 +2605553 2626246 20694 4582409.2157 4583443.8456 -16.4958 30.2882 92.4842 run27.mat -1 -1 903 1338759 1349105 +2626553 2647226 20674 4583459.0768 4584493.5423 -18.1467 30.2875 92.5899 run27.mat -1 -1 903 1349259 1359595 +2647532 2668226 20695 4584508.8487 4585541.7807 -19.7938 30.2877 92.5437 run27.mat -1 -1 903 1359748 1370096 +2668533 2689211 20679 4585557.1337 4586589.6305 -21.4392 30.2877 92.557 run27.mat -1 -1 903 1370250 1380589 +2689521 2698682 9162 4586605.0105 4587063.4844 -23.0934 30.2879 92.7096 run27.mat -1 -1 903 1380744 1385325 +2782744 2793284 10541 4591268.1698 4591795.2755 -23.093 30.2876 93.1359 run27.mat -1 -1 904 1427358 1432628 +2793610 2814286 20677 4591811.5789 4592844.2641 -24.7368 30.2881 92.5927 run27.mat -1 -1 904 1432791 1443130 +2814595 2835288 20694 4592859.5946 4593895.8594 -26.3882 30.2877 92.5509 run27.mat -1 -1 904 1443284 1453631 +2835595 2856285 20691 4593911.3364 4594945.8438 -28.0347 30.2883 92.6279 run27.mat -1 -1 904 1453784 1464130 +2856596 2877269 20674 4594961.2735 4595994.5271 -29.6861 30.288 92.6271 run27.mat -1 -1 904 1464285 1474622 +2877573 2878502 930 4596009.733 4596056.2008 -31.3292 30.2888 93.6385 run27.mat -1 -1 904 1474774 1475239 +2962835 2981739 18905 4600272.0689 4601219.2322 -31.3329 30.2882 92.96 run27.mat -1 -1 905 1517407 1526854 +2982048 3002728 20681 4601234.5657 4602266.9218 -32.985 30.2886 92.5876 run27.mat -1 -1 905 1527014 1537355 +3003033 3023731 20699 4602282.2978 4603316.6774 -34.6312 30.2879 92.56 run27.mat -1 -1 905 1537507 1547857 +3024045 3044724 20680 4603332.3807 4604368.1014 -36.2842 30.2886 92.6266 run27.mat -1 -1 905 1548014 1558354 +3045030 3058602 13573 4604383.5279 4605062.6766 -37.9309 30.2891 92.6872 run27.mat -1 -1 905 1558507 1565293 +3142624 3148865 6242 4609263.2475 4609575.1186 -37.9355 30.2886 94.1235 run27.mat -1 -1 906 1607306 1610427 +3149189 3169868 20680 4609591.4558 4610623.401 -39.5804 30.2879 92.5194 run27.mat -1 -1 906 1610589 1620928 +3170175 3190869 20695 4610638.5213 4611672.8996 -41.2313 30.2882 92.4992 run27.mat -1 -1 906 1621082 1631429 +3191173 3211886 20714 4611688.0004 4612724.3662 -42.8773 30.2887 92.5547 run27.mat -1 -1 906 1631582 1641938 +3212196 3232848 20653 4612740.0569 4613774.4896 -44.5363 30.2872 92.6326 run27.mat -1 -1 906 1642093 1652420 +3233155 3238521 5367 4613789.7208 4614056.975 -46.1786 30.2873 92.835 run27.mat -1 -1 906 1652573 1655256 +3322676 3337167 14492 4618265.1901 4618991.0581 -46.186 30.2882 93.1531 run27.mat -1 -1 907 1697336 1704582 +3337472 3358187 20716 4619006.1901 4620039.9548 -47.8299 30.2881 92.4993 run27.mat -1 -1 907 1704734 1715092 +3358494 3379187 20694 4620055.1859 4621090.5308 -49.4799 30.2884 92.6697 run27.mat -1 -1 907 1715245 1725592 +3379495 3400177 20683 4621105.7003 4622140.5353 -51.1334 30.2873 92.5856 run27.mat -1 -1 907 1725746 1736088 +3400489 3418581 18093 4622156.2674 4623059.2752 -52.7803 30.2882 92.7388 run27.mat -1 -1 907 1736244 1745290 +3502704 3504325 1622 4627266.2152 4627347.9353 -52.7714 30.289 96.805 run27.mat -1 -1 908 1787354 1788164 +3504652 3525328 20677 4627364.4204 4628397.3251 -54.4268 30.2879 92.5474 run27.mat -1 -1 908 1788328 1798666 +3525633 3546329 20697 4628412.457 4629449.1925 -56.0754 30.2882 92.5303 run27.mat -1 -1 908 1798819 1809167 +3546636 3567328 20693 4629464.4237 4630499.6105 -57.7279 30.2884 92.5161 run27.mat -1 -1 908 1809321 1819667 +3567636 3588329 20694 4630515.0138 4631547.1426 -59.3731 30.2883 92.6554 run27.mat -1 -1 908 1819821 1830168 +3588638 3598481 9844 4631562.7826 4632055.921 -61.0209 30.288 92.664 run27.mat -1 -1 908 1830323 1835244 +3682941 3692788 9848 4636278.245 4636769.7076 -61.0267 30.2876 93.1446 run27.mat -1 -1 909 1877476 1882400 +3693115 3713806 20692 4636786.1928 4637822.4716 -62.6688 30.2884 92.532 run27.mat -1 -1 909 1882563 1892909 +3714114 3734790 20677 4637837.8746 4638871.9591 -64.3193 30.2883 92.5701 run27.mat -1 -1 909 1893063 1903402 +3735095 3755810 20716 4638887.2155 4639922.7543 -65.9691 30.2888 92.5545 run27.mat -1 -1 909 1903555 1913912 +3756117 3776773 20657 4639937.9855 4640970.7461 -67.6193 30.2878 92.6251 run27.mat -1 -1 909 1914066 1924394 +3777087 3778721 1635 4640986.4078 4641067.4755 -69.2822 30.2873 92.6901 run27.mat -1 -1 909 1924551 1925368 +3862766 3880871 18106 4645269.2516 4646175.8132 -69.2703 30.2884 92.9563 run27.mat -1 -1 910 1967393 1976446 +3881177 3901889 20713 4646191.178 4647227.1603 -70.9205 30.2882 92.5993 run27.mat -1 -1 910 1976599 1986955 +3902195 3922889 20695 4647242.4208 4648277.0982 -72.5738 30.2878 92.561 run27.mat -1 -1 910 1987108 1997455 +3923196 3943890 20695 4648292.3294 4649327.77 -74.2211 30.2875 92.5285 run27.mat -1 -1 910 1997609 2007956 +3944195 3958561 14367 4649343.0231 4650060.1408 -75.871 30.288 92.8278 run27.mat -1 -1 910 2008109 2015292 +4042869 4048292 5424 4654274.3558 4654547.5492 -75.8706 30.2869 94.1765 run27.mat -1 -1 911 2057447 2060159 +4048600 4069309 20710 4654563.0198 4655598.522 -77.5186 30.2874 92.4395 run27.mat -1 -1 911 2060313 2070668 +4069619 4090329 20711 4655613.9051 4656648.6838 -79.1701 30.288 92.6093 run27.mat -1 -1 911 2070823 2081179 +4090636 4111312 20677 4656664.0367 4657697.8115 -80.8194 30.2884 92.5714 run27.mat -1 -1 911 2081332 2091671 +4111618 4132310 20693 4657713.238 4658748.1846 -82.4682 30.2877 92.5893 run27.mat -1 -1 911 2091824 2102170 +4132618 4138640 6023 4658763.4684 4659063.5606 -82.4596 31.9723 92.9444 run27.mat -1 -1 911 2102324 2105336 +4222939 4236649 13711 4663280.4126 4663965.4983 -82.4667 31.9721 92.8438 run27.mat -1 -1 912 2147487 2154342 +4236962 4257650 20689 4663981.2777 4665014.3307 -80.8155 31.972 92.6113 run27.mat -1 -1 912 2154499 2164850 +4257958 4278630 20673 4665029.858 4666061.8887 -79.1701 31.9718 92.557 run27.mat -1 -1 912 2164997 2175334 +4278942 4299633 20692 4666077.6177 4667114.6769 -77.514 31.9715 92.6524 run27.mat -1 -1 912 2175490 2185835 +4299953 4318700 18748 4667130.6799 4668066.2669 -75.8658 31.971 92.6126 run27.mat -1 -1 912 2185995 2195370 +4402895 4403991 1097 4672277.3707 4672332.4027 -75.8828 31.9713 97.926 run27.mat -1 -1 913 2237469 2238017 +4404311 4424971 20661 4672348.4704 4673381.0407 -74.2173 31.972 92.5999 run27.mat -1 -1 913 2238177 2248507 +4425287 4445971 20685 4673396.7184 4674432.1981 -72.566 31.972 92.5039 run27.mat -1 -1 913 2248665 2259008 +4446278 4466974 20697 4674447.6781 4675483.0489 -70.918 31.9715 92.6069 run27.mat -1 -1 913 2259161 2269510 +4467281 4487954 20674 4675498.2144 4676530.0345 -69.2691 31.9726 92.5609 run27.mat -1 -1 913 2269663 2280001 +4488262 4498780 10519 4676545.3153 4677071.1141 -67.6186 31.971 92.718 run27.mat -1 -1 913 2280155 2285414 +4582853 4592046 9194 4681275.2298 4681733.1992 -67.6269 31.971 93.3907 run27.mat -1 -1 914 2327452 2332049 +4592368 4613057 20690 4681749.3024 4682785.7478 -65.976 31.9707 92.5174 run27.mat -1 -1 914 2332209 2342555 +4613366 4634055 20690 4682801.0782 4683835.5272 -64.3244 31.9712 92.6301 run27.mat -1 -1 914 2342709 2353054 +4634361 4655054 20694 4683850.7118 4684885.3211 -62.6749 31.9716 92.5129 run27.mat -1 -1 914 2353207 2363554 +4655365 4676033 20669 4684900.7507 4685933.8707 -61.0266 31.971 92.6762 run27.mat -1 -1 914 2363709 2374044 +4676341 4678620 2280 4685949.4602 4686063.5022 -59.3751 31.9724 93.0396 run27.mat -1 -1 914 2374198 2375337 +4762900 4780356 17457 4690277.3406 4691150.9073 -59.3773 31.9718 92.9576 run27.mat -1 -1 915 2417479 2426208 +4780681 4801354 20674 4691167.0316 4692198.5994 -57.7277 31.9717 92.5936 run27.mat -1 -1 915 2426370 2436707 +4801662 4822355 20694 4692213.8833 4693250.5799 -56.0759 31.9714 92.5129 run27.mat -1 -1 915 2436861 2447208 +4822662 4843355 20694 4693265.8111 4694300.7005 -54.4245 31.9724 92.625 run27.mat -1 -1 915 2447361 2457709 +4843661 4858680 15020 4694315.9428 4695066.9205 -52.7765 31.9734 92.6554 run27.mat -1 -1 915 2457862 2465371 +4942993 4947705 4713 4699283.0669 4699518.5971 -52.7771 31.9705 94.0153 run27.mat -1 -1 916 2507530 2509886 +4948024 4968698 20675 4699534.4237 4700567.6799 -51.1252 31.9719 92.5295 run27.mat -1 -1 916 2510046 2520383 +4969004 4989701 20698 4700582.9858 4701617.0599 -49.4762 31.9718 92.5942 run27.mat -1 -1 916 2520536 2530885 +4990008 5010700 20693 4701632.5368 4702666.9055 -47.8294 31.9718 92.5257 run27.mat -1 -1 916 2531038 2541385 +5011006 5031684 20679 4702682.0901 4703717.5777 -46.1782 31.9718 92.6204 run27.mat -1 -1 916 2541538 2551877 +5031996 5038779 6784 4703733.3098 4704072.6659 -44.5285 31.9727 92.8822 run27.mat -1 -1 916 2552033 2555425 +5122933 5135987 13055 4708278.6825 4708931.3376 -44.5378 31.971 93.2258 run27.mat -1 -1 917 2597504 2604031 +5136303 5156980 20678 4708947.1409 4709983.3466 -42.8796 31.9724 92.5128 run27.mat -1 -1 917 2604189 2614528 +5157291 5177998 20708 4709998.8996 4711032.8431 -41.2337 31.9714 92.5517 run27.mat -1 -1 917 2614683 2625037 +5178306 5198988 20683 4711048.3704 4712080.8709 -39.5819 31.9719 92.6368 run27.mat -1 -1 917 2625191 2635532 +5199303 5218818 19516 4712096.7543 4713072.0148 -37.9396 31.971 92.6675 run27.mat -1 -1 917 2635690 2645448 +5303062 5303320 259 4717286.2509 4717299.1536 -37.9386 31.9705 107.5221 run27.mat -1 -1 918 2687572 2687701 +5303643 5324278 20636 4717315.3069 4718345.3141 -36.2893 31.9709 92.6969 run27.mat -1 -1 918 2687862 2698180 +5324586 5345278 20693 4718360.7171 4719396.5715 -34.6363 31.9716 92.6525 run27.mat -1 -1 918 2698334 2708681 +5345583 5366279 20697 4719411.9476 4720447.5494 -32.9863 31.9718 92.6046 run27.mat -1 -1 918 2708834 2719182 +5366584 5387280 20697 4720462.6844 4721496.9472 -31.3396 31.972 92.6208 run27.mat -1 -1 918 2719335 2729683 +5387587 5398859 11273 4721512.4272 4722075.9649 -29.6906 31.9716 92.7354 run27.mat -1 -1 918 2729836 2735473 +5483088 5491520 8433 4726286.8938 4726709.4113 -29.6883 31.9725 93.3463 run27.mat -1 -1 919 2777589 2781805 +5491830 5512541 20712 4726724.7944 4727759.991 -28.0363 31.9717 92.542 run27.mat -1 -1 919 2781960 2792316 +5512846 5533538 20693 4727775.2442 4728809.0802 -26.3869 31.9714 92.5139 run27.mat -1 -1 919 2792469 2802815 +5533846 5554521 20676 4728824.5889 4729860.5718 -24.7399 31.9715 92.616 run27.mat -1 -1 919 2802969 2813307 +5554830 5575496 20667 4729876.0277 4730908.3425 -23.09 31.9718 92.6114 run27.mat -1 -1 919 2813461 2823795 +5575806 5578878 3073 4730923.9738 4731078.7531 -21.4346 31.972 92.7458 run27.mat -1 -1 919 2823950 2825486 +5663131 5679805 16675 4735291.1404 4736124.9508 -21.4358 31.9715 92.9815 run27.mat -1 -1 920 2867614 2875952 +5680129 5700817 20689 4736140.8852 4737174.3344 -19.7863 31.9716 92.4358 run27.mat -1 -1 920 2876114 2886458 +5701124 5721801 20678 4737189.6903 4738221.8028 -18.1389 31.9719 92.6026 run27.mat -1 -1 920 2886612 2896951 +5722113 5742798 20686 4738237.4093 4739273.3122 -16.4908 31.9714 92.6198 run27.mat -1 -1 920 2897107 2907449 +5743105 5758937 15833 4739288.7891 4740080.9182 -14.8438 31.9715 92.6755 run27.mat -1 -1 920 2907603 2915519 +5842996 5846892 3897 4744283.556 4744478.9756 -14.8447 31.974 94.884 run27.mat -1 -1 921 2957551 2959499 +5847205 5867899 20695 4744494.6289 4745528.2068 -13.1901 31.9716 92.5121 run27.mat -1 -1 921 2959655 2970003 +5868206 5888899 20694 4745543.438 4746579.8466 -11.5437 31.9715 92.5761 run27.mat -1 -1 921 2970156 2980503 +5889208 5909902 20695 4746595.2999 4747628.434 -9.8977 31.9709 92.5953 run27.mat -1 -1 921 2980658 2991006 +5910208 5930882 20675 4747643.8605 4748678.9589 -8.2485 31.9715 92.5827 run27.mat -1 -1 921 2991159 3001496 +5931187 5938818 7632 4748694.0909 4749072.7289 -6.5994 31.9715 92.7825 run27.mat -1 -1 921 3001648 3005464 +6023096 6035328 12233 4753287.5809 4753900.2248 -6.5977 31.971 93.3197 run27.mat -1 -1 922 3047604 3053721 +6035645 6056323 20679 4753915.9522 4754948.2586 -4.947 31.9719 92.5302 run27.mat -1 -1 922 3053880 3064219 +6056628 6077320 20693 4754963.5118 4756001.3898 -3.3015 31.9716 92.5564 run27.mat -1 -1 922 3064372 3074718 +6077628 6098323 20696 4756016.7957 4757050.6096 -1.6508 31.9718 92.6315 run27.mat -1 -1 922 3074872 3085220 +6098630 6118878 20249 4757065.8408 4758077.8327 0.0014322 31.9721 92.7248 run27.mat -1 -1 922 3085374 3095498 +6203236 6223702 20467 4762294.8225 4763320.3257 1.6468 31.9721 92.8921 run27.mat -1 -1 923 3137679 3147912 +6224009 6244703 20695 4763335.5569 4764368.212 3.2993 31.9715 92.6839 run27.mat -1 -1 923 3148066 3158413 +6245008 6265681 20674 4764383.347 4765416.8975 4.9448 31.9715 92.5257 run27.mat -1 -1 923 3158565 3168903 +6265989 6286701 20713 4765432.3273 4766469.9089 6.5957 31.9714 92.5877 run27.mat -1 -1 923 3169057 3179413 +6287008 6299017 12010 4766485.1401 4767086.1283 8.2459 31.9723 92.8341 run27.mat -1 -1 923 3179567 3185572 +6383240 6390950 7711 4771294.7742 4771678.346 8.2474 31.9712 93.526 run27.mat -1 -1 924 3227684 3231540 +6391266 6411960 20695 4771694.4078 4772731.6755 9.8935 31.9716 92.548 run27.mat -1 -1 924 3231698 3242046 +6412273 6432960 20688 4772747.2665 4773781.6008 11.5453 31.9719 92.5682 run27.mat -1 -1 924 3242202 3252546 +6433267 6453962 20696 4773797.0746 4774833.4979 13.1909 31.971 92.5477 run27.mat -1 -1 924 3252700 3263047 +6454270 6474942 20673 4774848.9038 4775882.3898 14.8421 31.9719 92.6146 run27.mat -1 -1 924 3263202 3273537 +6475248 6479037 3790 4775897.5744 4776085.5705 16.502 31.9714 93.0931 run27.mat -1 -1 924 3273690 3275585 +6563051 6579081 16031 4780285.3174 4781086.826 16.4893 31.9725 92.963 run27.mat -1 -1 925 3317594 3325609 +6579397 6600083 20687 4781102.7566 4782138.624 18.1407 31.9718 92.5412 run27.mat -1 -1 925 3325767 3336111 +6600387 6621080 20694 4782153.9528 4783189.1065 19.7868 31.9718 92.586 run27.mat -1 -1 925 3336263 3346610 +6621389 6642070 20682 4783204.6842 4784237.3339 21.4336 31.9719 92.6225 run27.mat -1 -1 925 3346764 3357106 +6642386 6658878 16493 4784253.2646 4785078.6003 23.0862 31.9717 92.6908 run27.mat -1 -1 925 3357264 3365510 +6743140 6746369 3230 4789291.0246 4789452.5419 23.0887 31.9729 94.9474 run27.mat -1 -1 926 3407642 3409257 +6746689 6767384 20696 4789468.5486 4790505.3724 24.7358 31.9717 92.5268 run27.mat -1 -1 926 3409417 3419765 +6767690 6788381 20692 4790520.557 4791552.3267 26.3827 31.9713 92.6069 run27.mat -1 -1 926 3419918 3430264 +6788688 6809361 20674 4791567.8036 4792602.9839 28.0306 31.9709 92.6064 run27.mat -1 -1 926 3430418 3440755 +6809669 6830362 20694 4792618.5112 4793653.6997 29.6855 31.9717 92.7002 run27.mat -1 -1 926 3440909 3451255 +6830670 6838937 8268 4793669.2271 4794082.0119 31.3358 31.9709 92.8232 run27.mat -1 -1 926 3451409 3455543 +6925289 6936858 11570 4798399.8059 4798974.6941 31.3353 31.9722 93.3927 run27.mat -1 -1 927 3498721 3504506 +6937174 6957864 20691 4798990.4974 4800029.1363 32.9823 31.972 92.5608 run27.mat -1 -1 927 3504664 3515009 +6958171 6978844 20674 4800044.5761 4801074.5048 34.6357 31.9716 92.5551 run27.mat -1 -1 927 3515163 3525500 +6979152 6999843 20692 4801089.9112 4802126.7784 36.2847 31.9712 92.5886 run27.mat -1 -1 927 3525654 3536000 +7000149 7020823 20675 4802142.0843 4803174.5359 37.9353 31.9718 92.6678 run27.mat -1 -1 927 3536153 3546490 +7105120 7124971 19852 4807391.0779 4808383.4364 39.5854 31.9717 93.029 run27.mat -1 -1 928 3588641 3598567 +7125288 7145963 20676 4808399.1637 4809433.9006 41.2313 31.9714 92.6364 run27.mat -1 -1 928 3598725 3609063 +7146273 7166963 20691 4809449.2806 4810483.6939 42.8791 31.9717 92.618 run27.mat -1 -1 928 3609218 3619563 +7167271 7187963 20693 4810498.9778 4811532.8963 44.5314 31.9715 92.5192 run27.mat -1 -1 928 3619717 3630064 +7188270 7200936 12667 4811548.3764 4812182.0412 46.1789 31.9725 92.7325 run27.mat -1 -1 928 3630217 3636550 +7285118 7292306 7189 4816391.9121 4816749.7057 46.1802 31.9725 93.8356 run27.mat -1 -1 929 3678643 3682238 +7292617 7313305 20689 4816765.2616 4817798.5312 47.8253 31.9717 92.443 run27.mat -1 -1 929 3682393 3692738 +7313613 7334304 20692 4817813.815 4818849.1897 49.4747 31.9718 92.6308 run27.mat -1 -1 929 3692892 3703237 +7334613 7355303 20691 4818864.6456 4819899.4549 51.1254 31.9714 92.6001 run27.mat -1 -1 929 3703392 3713737 +7355610 7376282 20673 4819914.8081 4820950.6826 52.7748 31.9714 92.6742 run27.mat -1 -1 929 3713891 3724228 +7376593 7380935 4343 4820966.2386 4821182.9557 54.417 31.9708 92.9511 run27.mat -1 -1 929 3724383 3726554 +7465200 7480575 15376 4825393.929 4826164.8465 54.4194 31.9703 93.0551 run27.mat -1 -1 930 3768688 3776376 +7480896 7501585 20690 4826180.9613 4827214.9572 56.0725 31.9719 92.609 run27.mat -1 -1 930 3776537 3786882 +7501893 7522583 20691 4827230.4846 4828263.4441 57.725 31.9718 92.6385 run27.mat -1 -1 930 3787036 3797381 +7522891 7543588 20698 4828278.9746 4829313.115 59.373 31.9716 92.4825 run27.mat -1 -1 930 3797535 3807884 +7543896 7560976 17081 4829328.5215 4830182.7107 61.0214 31.9723 92.7312 run27.mat -1 -1 930 3808038 3816578 +7645103 7647953 2851 4834391.3578 4834532.7777 61.0263 31.9711 95.0318 run27.mat -1 -1 931 3858644 3860069 +7648267 7668944 20678 4834548.3593 4835582.9345 62.6722 31.9716 92.4951 run27.mat -1 -1 931 3860226 3870565 +7669253 7689944 20692 4835598.5122 4836632.0873 64.32 31.9719 92.6421 run27.mat -1 -1 931 3870719 3881065 +7690250 7710946 20697 4836647.2659 4837681.2182 65.9755 31.9719 92.5097 run27.mat -1 -1 931 3881218 3891567 +7711251 7731925 20675 4837696.5943 4838732.409 67.6195 31.9713 92.6829 run27.mat -1 -1 931 3891720 3902057 +7732234 7740995 8762 4838747.8623 4839185.9994 69.2734 31.9722 92.857 run27.mat -1 -1 931 3902211 3906592 +7825169 7836248 11080 4843392.1931 4843948.8034 69.2701 31.9716 93.492 run27.mat -1 -1 932 3948681 3954220 +7836557 7857267 20711 4843964.2593 4844998.0185 70.9174 31.9713 92.5357 run27.mat -1 -1 932 3954375 3964730 +7857573 7878247 20675 4845013.3244 4846049.3172 72.5704 31.9716 92.6308 run27.mat -1 -1 932 3964883 3975221 +7878554 7899249 20696 4846064.6701 4847098.7054 74.2174 31.9717 92.4895 run27.mat -1 -1 932 3975375 3985723 +7899555 7920226 20672 4847114.1319 4848146.8368 75.8672 31.9716 92.6762 run27.mat -1 -1 932 3985876 3996211 +7920532 7921075 544 4848162.14 4848189.2957 77.5208 31.9703 91.5171 run27.mat -1 -1 932 3996364 3996636 +8005338 8024569 19232 4852403.2068 4853364.3737 77.5122 31.9714 92.8697 run27.mat -1 -1 933 4038769 4048385 +8024877 8045566 20690 4853379.7767 4854412.4836 79.1642 31.9712 92.5794 run27.mat -1 -1 933 4048539 4058884 +8045872 8066546 20675 4854427.7868 4855463.4924 80.8122 31.9711 92.6127 run27.mat -1 -1 933 4059037 4069374 +8066854 8087210 20357 4855479.0198 4856495.3356 82.461 31.9713 92.4744 run27.mat -1 -1 933 4069528 4079707 +275014 295519 20506 4950491.624 4951518.1756 82.4612 33.6554 92.995 run28.mat -1 -1 935 155726 165979 +295830 316519 20690 4951533.8542 4952568.8915 80.813 33.6557 92.579 run28.mat -1 -1 935 166135 176480 +316825 337530 20706 4952584.318 4953620.1619 79.1666 33.6557 92.5238 run28.mat -1 -1 935 176633 186986 +337841 358518 20678 4953635.8405 4954667.954 77.5143 33.6547 92.5564 run28.mat -1 -1 935 187141 197480 +358824 370929 12106 4954683.257 4955287.5041 75.8669 33.6554 92.6929 run28.mat -1 -1 935 197633 203686 +455026 462657 7632 4959494.8056 4959875.1753 75.8714 33.6567 93.516 run28.mat -1 -1 936 245736 249569 +462988 483677 20690 4959891.7348 4960928.1478 74.2188 33.6555 92.5374 run28.mat -1 -1 936 249717 260062 +483987 504669 20683 4960943.4187 4961975.8488 72.5694 33.6558 92.533 run28.mat -1 -1 936 260217 270559 +504986 525661 20676 4961991.5761 4963026.1725 70.9201 33.6546 92.5456 run28.mat -1 -1 936 270717 281055 +525971 546644 20674 4963041.6758 4964075.783 69.271 33.6555 92.6407 run28.mat -1 -1 936 281210 291547 +546958 550831 3874 4964091.616 4964286.0206 67.6333 33.655 92.9147 run28.mat -1 -1 936 291704 293641 +636969 652959 15991 4968590.9214 4969391.3271 67.623 33.6557 93.0148 run28.mat -1 -1 937 336711 344707 +653265 673940 20676 4969406.7536 4970438.1921 65.9746 33.656 92.587 run28.mat -1 -1 937 344860 355198 +674247 694959 20713 4970453.4792 4971489.983 64.3204 33.655 92.6403 run28.mat -1 -1 937 355351 365708 +695265 715956 20692 4971505.549 4972541.547 62.6741 33.6555 92.555 run28.mat -1 -1 937 365861 376207 +716265 732749 16485 4972557.006 4973381.4336 61.0207 33.6547 92.7286 run28.mat -1 -1 937 376361 384604 +817038 820358 3321 4977594.8838 4977761.7662 61.0262 33.6555 94.5565 run28.mat -1 -1 938 426750 428410 +820678 841361 20684 4977777.6455 4978810.4672 59.3722 33.6547 92.5297 run28.mat -1 -1 938 428570 438912 +841667 862381 20715 4978825.7701 4979862.673 57.7246 33.6548 92.5858 run28.mat -1 -1 938 439065 449423 +862690 883362 20673 4979878.0034 4980911.6769 56.0685 33.6546 92.6561 run28.mat -1 -1 938 449577 459914 +883668 904341 20674 4980926.8615 4981958.3 54.4231 33.6543 92.6678 run28.mat -1 -1 938 460067 470403 +904650 912809 8160 4981973.7511 4982383.0468 52.7764 33.6546 92.6222 run28.mat -1 -1 938 470558 474638 +996809 1008539 11731 4986582.7764 4987169.0629 52.7702 33.6562 93.3007 run28.mat -1 -1 939 516639 522505 +1008866 1029541 20676 4987185.2864 4988220.9091 51.1266 33.6554 92.603 run28.mat -1 -1 939 522668 533006 +1029848 1050545 20698 4988236.3163 4989271.1447 49.4743 33.6552 92.5878 run28.mat -1 -1 939 533160 543509 +1050857 1071543 20687 4989286.6239 4990320.9065 47.826 33.6556 92.5804 run28.mat -1 -1 939 543665 554008 +1071850 1092520 20671 4990336.1377 4991368.8411 46.1814 33.6558 92.6179 run28.mat -1 -1 939 554162 564497 +1176682 1196616 19935 4995578.1767 4996572.6531 44.5331 33.6548 92.9187 run28.mat -1 -1 940 606580 616547 +1196952 1217621 20670 4996589.5954 4997623.8789 42.881 33.6547 92.5254 run28.mat -1 -1 940 616715 627050 +1217926 1238623 20698 4997639.0714 4998675.4196 41.2319 33.655 92.5412 run28.mat -1 -1 940 627203 637552 +1238930 1259601 20672 4998690.8966 4999725.1466 39.5835 33.6548 92.5719 run28.mat -1 -1 940 637705 648042 +1259911 1272469 12559 4999740.5972 5000367.6079 37.9347 33.6562 92.6997 run28.mat -1 -1 940 648197 654476 +1356739 1363900 7162 5004581.2203 5004939.3414 37.9364 33.6576 93.4431 run28.mat -1 -1 941 696612 700193 +1364206 1384924 20719 5004954.6444 5005990.6909 36.2858 33.6546 92.5403 run28.mat -1 -1 941 700346 710705 +1385240 1405923 20684 5006006.5804 5007039.8561 34.6339 33.6557 92.6077 run28.mat -1 -1 941 710863 721206 +1406230 1426924 20695 5007055.0873 5008088.366 32.9839 33.6549 92.5547 run28.mat -1 -1 941 721359 731707 +1427232 1447922 20691 5008103.769 5009139.5038 31.3388 33.6549 92.6308 run28.mat -1 -1 941 731861 742206 +1448229 1452528 4300 5009154.738 5009368.8716 29.6845 33.6545 93.1196 run28.mat -1 -1 941 742359 744509 +1536492 1552000 15509 5013567.5833 5014344.7664 29.685 33.655 93.1052 run28.mat -1 -1 942 786493 794247 +1552306 1573009 20704 5014360.0696 5015394.424 28.0316 33.6547 92.5216 run28.mat -1 -1 942 794400 804752 +1573326 1593999 20674 5015410.1544 5016441.788 26.3863 33.6552 92.5982 run28.mat -1 -1 942 804911 815247 +1594309 1615002 20694 5016457.1711 5017493.9674 24.7328 33.6548 92.567 run28.mat -1 -1 942 815402 825749 +1615308 1632367 17060 5017509.152 5018361.399 23.0883 33.6555 92.6158 run28.mat -1 -1 942 825902 834432 +1716648 1719307 2660 5022574.8746 5022708.9238 23.0873 33.6534 94.9369 run28.mat -1 -1 943 876575 877905 +1719640 1740322 20683 5022725.7114 5023758.4003 21.4345 33.6549 92.5241 run28.mat -1 -1 943 878071 888413 +1740629 1761319 20691 5023773.7532 5024808.8433 19.7858 33.6557 92.6059 run28.mat -1 -1 943 888566 898911 +1761631 1782303 20673 5024824.6384 5025859.6193 18.1391 33.6544 92.5881 run28.mat -1 -1 943 899067 909404 +1782609 1803306 20698 5025875.0458 5026908.3593 16.4903 33.6556 92.6506 run28.mat -1 -1 943 909557 919906 +1803620 1812428 8809 5026923.9408 5027364.922 14.8429 33.6569 92.8386 run28.mat -1 -1 943 920063 924467 +1896447 1907360 10914 5031565.6534 5032110.8754 14.8407 33.6558 93.3233 run28.mat -1 -1 944 966478 971935 +1907667 1928384 20718 5032126.3523 5033163.9721 13.1912 33.6553 92.5981 run28.mat -1 -1 944 972089 982448 +1928690 1949368 20679 5033179.2751 5034212.691 11.5444 33.656 92.5256 run28.mat -1 -1 944 982601 992940 +1949683 1970383 20701 5034228.5744 5035264.4914 9.8951 33.6557 92.581 run28.mat -1 -1 944 993098 1003448 +1970690 1991342 20653 5035279.8444 5036310.8469 8.2476 33.6552 92.686 run28.mat -1 -1 944 1003601 1013928 +1991652 1992247 596 5036326.4108 5036356.4067 6.5847 33.6512 93.5721 run28.mat -1 -1 944 1014083 1014381 +2076302 2095442 19141 5040558.9881 5041518.2243 6.5967 33.6558 92.7521 run28.mat -1 -1 945 1056409 1065980 +2095757 2116445 20689 5041533.9808 5042566.4569 4.9445 33.6557 92.4801 run28.mat -1 -1 945 1066137 1076482 +2116751 2137458 20708 5042581.8834 5043615.729 3.2988 33.6558 92.6166 run28.mat -1 -1 945 1076635 1086989 +2137770 2158444 20675 5043631.458 5044666.7573 1.6485 33.6545 92.6305 run28.mat -1 -1 945 1087145 1097482 +2158750 2172107 13358 5044681.9389 5045351.5457 4.3864e-07 33.6566 92.7781 run28.mat -1 -1 945 1097635 1104314 +2256364 2262702 6339 5049563.075 5049880.5498 -0.0083112 33.6541 93.5517 run28.mat -1 -1 946 1146445 1149614 +2263030 2283727 20698 5049896.9531 5050932.0598 -1.653 33.6548 92.5481 run28.mat -1 -1 946 1149778 1160127 +2284032 2304704 20673 5050947.3128 5051980.4245 -3.2999 33.6538 92.6397 run28.mat -1 -1 946 1160279 1170616 +2305012 2325722 20711 5051995.7053 5053029.8246 -4.9471 33.6546 92.5809 run28.mat -1 -1 946 1170770 1181125 +2326031 2346689 20659 5053045.2163 5054079.5701 -6.5985 33.6547 92.6682 run28.mat -1 -1 946 1181280 1191609 +2346999 2352147 5149 5054095.1982 5054351.2338 -8.2534 33.6529 92.6351 run28.mat -1 -1 946 1191764 1194338 +2436236 2450822 14587 5058555.3042 5059284.0262 -8.2472 33.6562 92.9886 run28.mat -1 -1 947 1236385 1243678 +2451143 2471826 20684 5059300.0854 5060335.5339 -9.8968 33.6544 92.5428 run28.mat -1 -1 947 1243839 1254181 +2472133 2492823 20691 5060350.8871 5061384.2389 -11.5442 33.655 92.5264 run28.mat -1 -1 947 1254334 1264679 +2493131 2513823 20693 5061399.4084 5062435.7228 -13.1937 33.655 92.5689 run28.mat -1 -1 947 1264833 1275180 +2514130 2532007 17878 5062450.954 5063343.9665 -14.845 33.6568 92.6327 run28.mat -1 -1 947 1275333 1284272 +2616027 2617943 1917 5067547.5371 5067642.6145 -14.8496 33.6528 96.9836 run28.mat -1 -1 948 1326284 1327242 +2618273 2638968 20696 5067658.9901 5068693.752 -16.4912 33.6558 92.6473 run28.mat -1 -1 948 1327407 1337755 +2639272 2659966 20695 5068708.9552 5069743.4482 -18.1405 33.6549 92.5473 run28.mat -1 -1 948 1337907 1348254 +2660275 2680966 20692 5069758.7817 5070793.3967 -19.7844 33.6558 92.613 run28.mat -1 -1 948 1348409 1358755 +2681273 2686009 4737 5070808.6279 5071043.5952 -21.4432 33.6546 92.4077 run28.mat -1 -1 948 1358909 1361277 +2686259 2701945 15687 5071055.9984 5071842.8744 -21.4392 33.6556 92.6223 run28.mat -1 -1 948 1361402 1369245 +2702252 2711906 9655 5071858.1665 5072338.5778 -23.09 33.6565 92.7631 run28.mat -1 -1 948 1369399 1374226 +2796164 2806244 10081 5076554.4653 5077056.0458 -23.0911 33.655 93.237 run28.mat -1 -1 949 1416357 1421397 +2806566 2827266 20701 5077072.0212 5078108.0327 -24.7366 33.6553 92.6065 run28.mat -1 -1 949 1421558 1431908 +2827572 2848245 20674 5078123.4592 5079158.2218 -26.3859 33.6544 92.5771 run28.mat -1 -1 949 1432061 1442398 +2848551 2869246 20696 5079173.5281 5080206.4943 -28.0332 33.6562 92.5988 run28.mat -1 -1 949 1442551 1452899 +2869552 2890237 20686 5080221.7973 5081254.3686 -29.6888 33.6543 92.6195 run28.mat -1 -1 949 1453052 1463395 +2890550 2891966 1417 5081270.148 5081341.5334 -31.3203 33.6569 93.1271 run28.mat -1 -1 949 1463552 1464260 +2976221 2994543 18323 5085557.3354 5086471.7106 -31.3361 33.6551 92.87 run28.mat -1 -1 950 1506389 1515550 +2994866 3015548 20683 5086487.9942 5087522.5627 -32.9888 33.6556 92.5 run28.mat -1 -1 950 1515712 1526053 +3015855 3036547 20693 5087538.0428 5088572.8176 -34.635 33.6538 92.5331 run28.mat -1 -1 950 1526207 1536553 +3036855 3057548 20694 5088588.2235 5089622.2 -36.2893 33.655 92.6194 run28.mat -1 -1 950 1536707 1547054 +3057855 3072005 14151 5089637.55 5090344.844 -37.9387 33.6552 92.7491 run28.mat -1 -1 950 1547208 1554283 +3156078 3161643 5566 5094549.1052 5094827.2497 -37.9339 33.655 94.199 run28.mat -1 -1 951 1596322 1599104 +3161975 3182667 20693 5094843.8531 5095878.365 -39.5856 33.6558 92.4968 run28.mat -1 -1 951 1599270 1609617 +3182974 3203668 20695 5095893.5962 5096927.0708 -41.2328 33.6554 92.5421 run28.mat -1 -1 951 1609770 1620118 +3203974 3224666 20693 5096942.3737 5097979.2313 -42.8799 33.6554 92.5913 run28.mat -1 -1 951 1620271 1630617 +3224971 3245627 20657 5097994.4845 5099026.7908 -44.5323 33.6559 92.6113 run28.mat -1 -1 951 1630770 1641097 +3245937 3251866 5930 5099042.2354 5099340.4284 -46.1713 33.6574 92.5419 run28.mat -1 -1 951 1641252 1644218 +3336121 3349944 13824 5103552.1073 5104240.7563 -46.1809 33.6552 93.1653 run28.mat -1 -1 952 1686347 1693259 +3350270 3370948 20679 5104256.9333 5105291.8734 -47.8269 33.6558 92.5398 run28.mat -1 -1 952 1693422 1703761 +3371262 3391966 20705 5105307.7032 5106344.4973 -49.4758 33.6553 92.5732 run28.mat -1 -1 952 1703918 1714270 +3392272 3412965 20694 5106359.7319 5107394.7084 -51.1276 33.6554 92.5439 run28.mat -1 -1 952 1714424 1724771 +3413272 3431925 18654 5107410.0614 5108342.7124 -52.778 33.6554 92.6577 run28.mat -1 -1 952 1724924 1734251 +3515993 3517064 1072 5112545.66 5112599.6528 -52.78 33.6562 97.7602 run28.mat -1 -1 953 1776287 1776822 +3517399 3538068 20670 5112616.5412 5113648.586 -54.4258 33.6552 92.531 run28.mat -1 -1 953 1776990 1787325 +3538374 3559069 20696 5113664.0125 5114696.7728 -56.0738 33.6553 92.6214 run28.mat -1 -1 953 1787478 1797826 +3559376 3580047 20672 5114712.1292 5115747.9223 -57.7262 33.6545 92.5476 run28.mat -1 -1 953 1797979 1808315 +3580356 3601047 20692 5115763.3753 5116798.182 -59.3773 33.6544 92.5211 run28.mat -1 -1 953 1808470 1818816 +3601354 3611806 10453 5116813.5349 5117334.2901 -61.0212 33.655 92.7668 run28.mat -1 -1 953 1818969 1824196 +3696060 3705426 9367 5121549.1109 5122015.5236 -61.0289 33.6547 93.5071 run28.mat -1 -1 954 1866325 1871008 +3705748 3726429 20682 5122031.6267 5123067.9317 -62.674 33.655 92.4944 run28.mat -1 -1 954 1871169 1881509 +3726735 3747446 20712 5123083.2347 5124118.6866 -64.3259 33.6539 92.619 run28.mat -1 -1 954 1881662 1892018 +3747755 3768446 20692 5124134.2644 5125168.2529 -65.976 33.6556 92.5012 run28.mat -1 -1 954 1892173 1902519 +3768753 3789405 20653 5125183.5753 5126214.5559 -67.6241 33.6545 92.6498 run28.mat -1 -1 954 1902672 1912999 +3789716 3791845 2130 5126230.1089 5126336.5793 -69.2727 33.6546 92.6965 run28.mat -1 -1 954 1913154 1914219 +3876139 3893808 17670 5130553.3466 5131434.3036 -69.273 33.6548 92.9798 run28.mat -1 -1 955 1956368 1965203 +3894135 3914809 20675 5131450.5271 5132487.8096 -70.9208 33.6552 92.6231 run28.mat -1 -1 955 1965366 1975703 +3915115 3935810 20696 5132503.2392 5133535.8311 -72.5723 33.6556 92.5636 run28.mat -1 -1 955 1975856 1986204 +3936115 3956809 20695 5133551.087 5134585.0343 -74.2156 33.6565 92.608 run28.mat -1 -1 955 1986357 1996705 +3957116 3971904 14789 5134600.5112 5135341.1203 -75.868 33.6557 92.7959 run28.mat -1 -1 955 1996858 2004252 +4056036 4061088 5053 5139549.7284 5139801.4063 -75.864 33.6532 94.0774 run28.mat -1 -1 956 2046320 2048846 +4061393 4082070 20678 5139816.4281 5140848.947 -77.5151 33.655 92.4632 run28.mat -1 -1 956 2048999 2059338 +4082380 4103088 20709 5140864.327 5141900.9145 -79.1681 33.6555 92.615 run28.mat -1 -1 956 2059493 2069847 +4103395 4124071 20677 5141916.2709 5142948.7094 -80.8145 33.6541 92.6188 run28.mat -1 -1 956 2070000 2080339 +4124386 4145069 20684 5142964.3406 5144001.4545 -82.4609 33.6556 92.681 run28.mat -1 -1 956 2080496 2090839 +4145376 4151785 6410 5144016.8519 5144336.2109 -82.4624 35.3347 92.8569 run28.mat -1 -1 956 2090992 2094197 +4238136 4251451 13316 5148652.0761 5149319.6672 -82.4657 35.334 93.0918 run28.mat -1 -1 957 2137374 2144032 +4251760 4272449 20690 5149334.9976 5150367.1686 -80.8159 35.3355 92.4968 run28.mat -1 -1 957 2144187 2154532 +4272755 4293449 20695 5150382.4718 5151418.5525 -79.1684 35.3346 92.6635 run28.mat -1 -1 957 2154685 2165032 +4293753 4314443 20691 5151433.8782 5152469.3849 -77.5141 35.335 92.5756 run28.mat -1 -1 957 2165184 2175529 +4314753 4333925 19173 5152484.8879 5153442.8881 -75.8692 35.3341 92.7294 run28.mat -1 -1 957 2175684 2185271 +4418033 4418600 568 5157647.9633 5157676.5534 -75.8912 35.3337 98.6994 run28.mat -1 -1 958 2227326 2227610 +4418918 4439566 20649 5157692.5881 5158723.3839 -74.2237 35.3334 92.6846 run28.mat -1 -1 958 2227769 2238094 +4439878 4460568 20691 5158739.1129 5159772.9996 -72.5714 35.3344 92.6028 run28.mat -1 -1 958 2238250 2248595 +4460876 4481569 20694 5159788.2834 5160822.966 -70.9209 35.3354 92.6539 run28.mat -1 -1 958 2248749 2259096 +4481875 4502552 20678 5160838.3278 5161875.0079 -69.2718 35.3341 92.5869 run28.mat -1 -1 958 2259249 2269588 +4502860 4513824 10965 5161890.2918 5162439.121 -67.6231 35.3331 92.8018 run28.mat -1 -1 958 2269742 2275224 +4598068 4606940 8873 5166650.4194 5167092.2882 -67.624 35.3329 93.6911 run28.mat -1 -1 959 2317348 2321784 +4607255 4627930 20676 5167107.9163 5168141.9567 -65.9749 35.3371 92.573 run28.mat -1 -1 959 2321942 2332280 +4628238 4648931 20694 5168157.3599 5169194.5391 -64.3204 35.3357 92.6337 run28.mat -1 -1 959 2332434 2342781 +4649240 4669931 20692 5169209.8726 5170243.3868 -62.671 35.3349 92.64 run28.mat -1 -1 959 2342935 2353281 +4670240 4690911 20672 5170258.6056 5171292.8379 -61.0236 35.3358 92.6503 run28.mat -1 -1 959 2353436 2363772 +4691218 4693843 2626 5171308.1911 5171438.7829 -59.3765 35.3381 92.9611 run28.mat -1 -1 959 2363925 2365238 +4778126 4795265 17140 5175653.6094 5176509.8781 -59.3744 35.3351 92.8482 run28.mat -1 -1 960 2407381 2415951 +4795582 4816251 20670 5176525.6086 5177559.7758 -57.7243 35.3349 92.5595 run28.mat -1 -1 960 2416109 2426444 +4816558 4837271 20714 5177575.2527 5178609.9178 -56.0752 35.3355 92.6191 run28.mat -1 -1 960 2426598 2436955 +4837576 4858250 20675 5178625.0528 5179658.9529 -54.4259 35.3347 92.6232 run28.mat -1 -1 960 2437107 2447445 +4858558 4873923 15366 5179674.3593 5180441.1287 -52.7774 35.3361 92.6533 run28.mat -1 -1 960 2447599 2455281 +4958023 4962465 4443 5184648.0438 5184868.5467 -52.7774 35.3355 94.3918 run28.mat -1 -1 961 2497334 2499555 +4962776 4983470 20695 5184883.9764 5185920.681 -51.1271 35.3339 92.5 run28.mat -1 -1 961 2499710 2510058 +4983775 5004469 20695 5185935.9527 5186970.91 -49.4761 35.3356 92.6721 run28.mat -1 -1 961 2510210 2520558 +5004775 5025470 20696 5186986.2132 5188020.6969 -47.8288 35.3338 92.6017 run28.mat -1 -1 961 2520711 2531058 +5025778 5046452 20675 5188036.2242 5189068.6557 -46.1767 35.3351 92.5827 run28.mat -1 -1 961 2531212 2541550 +5046757 5053803 7047 5189083.7877 5189437.0611 -44.5361 35.3313 92.9082 run28.mat -1 -1 961 2541703 2545226 +5137995 5150784 12790 5193647.0579 5194287.1234 -44.5317 35.3354 93.3328 run28.mat -1 -1 962 2587323 2593718 +5151097 5171791 20695 5194302.9028 5195337.1275 -42.8821 35.3342 92.5159 run28.mat -1 -1 962 2593875 2604212 +5172098 5192775 20678 5195352.4807 5196384.5353 -41.2315 35.3355 92.5539 run28.mat -1 -1 962 2604376 2614714 +5193083 5213769 20687 5196399.9385 5197436.3148 -39.587 35.3351 92.58 run28.mat -1 -1 962 2614868 2625212 +5214077 5233883 19807 5197451.8421 5198440.4928 -37.939 35.3344 92.7104 run28.mat -1 -1 962 2625366 2635269 +5317930 5317938 9 5202644.8825 5202645.2826 -37.9809 35.2938 88.3592 run28.mat -1 -1 963 2677295 2677299 +5318251 5338888 20638 5202660.9356 5203691.5141 -36.2904 35.3336 92.7666 run28.mat -1 -1 963 2677455 2687774 +5339199 5359876 20678 5203706.9468 5204740.4908 -34.6356 35.3358 92.5532 run28.mat -1 -1 963 2687930 2698269 +5360191 5380888 20698 5204756.371 5205789.5565 -32.9865 35.3351 92.6021 run28.mat -1 -1 963 2698426 2708775 +5381198 5401873 20676 5205805.0594 5206839.7366 -31.3372 35.3352 92.5633 run28.mat -1 -1 963 2708930 2719268 +5402180 5413743 11564 5206855.2136 5207435.1105 -29.6897 35.3357 92.752 run28.mat -1 -1 963 2719422 2725203 +5497977 5506222 8246 5211644.5245 5212057.1029 -29.6882 35.3374 93.61 run28.mat -1 -1 964 2767322 2771445 +5506539 5527222 20684 5212073.0871 5213107.9022 -28.0342 35.3358 92.5654 run28.mat -1 -1 964 2771603 2781945 +5527535 5548230 20696 5213123.7479 5214157.7822 -26.3857 35.3352 92.5448 run28.mat -1 -1 964 2782102 2792450 +5548537 5569230 20694 5214173.2591 5215209.1336 -24.7387 35.335 92.5782 run28.mat -1 -1 964 2792603 2802951 +5569536 5590211 20676 5215224.4368 5216256.484 -23.0894 35.3352 92.7279 run28.mat -1 -1 964 2803104 2813441 +5590519 5593742 3224 5216271.89 5216434.1666 -21.442 35.3357 92.7682 run28.mat -1 -1 964 2813595 2815207 +5677808 5694301 16494 5220637.0077 5221462.4207 -21.4347 35.3358 92.9507 run28.mat -1 -1 965 2857242 2865488 +5694620 5715291 20672 5221478.5058 5222511.1259 -19.7891 35.3352 92.5531 run28.mat -1 -1 965 2865648 2875984 +5715602 5736293 20692 5222526.6824 5223559.7463 -18.1363 35.3354 92.6104 run28.mat -1 -1 965 2876139 2886485 +5736599 5757291 20693 5223574.9309 5224611.7664 -16.4929 35.3342 92.6471 run28.mat -1 -1 965 2886638 2896985 +5757595 5773583 15989 5224626.9723 5225427.6203 -14.8415 35.3361 92.6128 run28.mat -1 -1 965 2897137 2905131 +5857906 5861710 3805 5229642.9083 5229833.1448 -14.8439 35.3342 94.1518 run28.mat -1 -1 966 2947295 2949197 +5862018 5882711 20694 5229848.5478 5230881.6333 -13.1947 35.3356 92.4748 run28.mat -1 -1 966 2949351 2959698 +5883019 5903710 20692 5230897.0985 5231934.1937 -11.5472 35.3361 92.6 run28.mat -1 -1 966 2959852 2970198 +5904020 5924693 20674 5231949.5768 5232983.2343 -9.8979 35.3339 92.5666 run28.mat -1 -1 966 2970353 2980690 +5925000 5945691 20692 5232998.7112 5234031.4448 -8.2513 35.3344 92.5696 run28.mat -1 -1 966 2980843 2991189 +5945998 5953662 7665 5234046.5462 5234430.3312 -6.5964 35.3346 92.7716 run28.mat -1 -1 966 2991342 2995175 +6037751 6049940 12190 5238635.4463 5239244.2727 -6.5939 35.3349 93.2007 run28.mat -1 -1 967 3037221 3043300 +6050254 6070951 20698 5239259.8543 5240294.7089 -4.9473 35.3349 92.5309 run28.mat -1 -1 967 3043473 3053822 +6071260 6091955 20696 5240310.0393 5241346.1057 -3.299 35.3365 92.6305 run28.mat -1 -1 967 3053976 3064324 +6092260 6112952 20693 5241361.4818 5242394.5005 -1.6517 35.335 92.631 run28.mat -1 -1 967 3064477 3074823 +6113260 6133502 20243 5242409.9034 5243425.0282 -0.00089479 35.336 92.6814 run28.mat -1 -1 967 3074977 3085099 +6217796 6238293 20498 5247636.9987 5248660.2091 1.6492 35.3348 92.8168 run28.mat -1 -1 968 3127248 3137497 +6238600 6259273 20674 5248675.686 5249712.4186 3.2968 35.3349 92.6379 run28.mat -1 -1 968 3137650 3147987 +6259580 6280277 20698 5249727.7745 5250762.2553 4.9477 35.335 92.5967 run28.mat -1 -1 968 3148141 3158489 +6280590 6301272 20683 5250777.7872 5251813.0907 6.5941 35.3349 92.5798 run28.mat -1 -1 968 3158646 3168988 +6301581 6313601 12021 5251828.3095 5252427.7051 8.2508 35.3359 92.7185 run28.mat -1 -1 968 3169142 3175152 +6397812 6405517 7706 5256638.6965 5257026.5159 8.2467 35.3338 93.5707 run28.mat -1 -1 969 3217259 3221112 +6405828 6426514 20687 5257042.0689 5258074.6404 9.8961 35.336 92.5846 run28.mat -1 -1 969 3221268 3231611 +6426822 6447514 20693 5258089.8128 5259123.5773 11.5436 35.3337 92.5896 run28.mat -1 -1 969 3231765 3242112 +6447821 6468497 20677 5259138.8085 5260174.1875 13.1901 35.3365 92.6573 run28.mat -1 -1 969 3242265 3252603 +6468815 6489473 20659 5260190.219 5261222.4036 14.8442 35.3346 92.6559 run28.mat -1 -1 969 3252762 3263092 +6489777 6493602 3826 5261237.6068 5261428.8966 16.4824 35.3333 92.357 run28.mat -1 -1 969 3263244 3265157 +6577911 6593958 16048 5265643.4324 5266445.994 16.4928 35.3331 93.1612 run28.mat -1 -1 970 3307313 3315337 +6594279 6614967 20689 5266462.0473 5267494.8306 18.138 35.3346 92.6198 run28.mat -1 -1 970 3315497 3325842 +6615277 6635953 20677 5267510.4588 5268546.7126 19.7857 35.3349 92.5951 run28.mat -1 -1 970 3325997 3336335 +6636262 6656955 20694 5268562.0461 5269596.5566 21.4336 35.3346 92.6545 run28.mat -1 -1 970 3336489 3346837 +6657259 6673681 16423 5269611.8822 5270434.2239 23.0862 35.3352 92.7432 run28.mat -1 -1 970 3346989 3355200 +6757742 6761065 3324 5274633.434 5274798.8191 23.0806 35.337 94.9328 run28.mat -1 -1 971 3397233 3398894 +6761381 6782055 20675 5274814.7497 5275851.3363 24.735 35.3359 92.5396 run28.mat -1 -1 971 3399052 3409389 +6782371 6803052 20682 5275867.1424 5276900.3108 26.3824 35.3342 92.5366 run28.mat -1 -1 971 3409547 3419888 +6803359 6824056 20698 5276915.5451 5277951.8875 28.0328 35.3361 92.6169 run28.mat -1 -1 971 3420042 3430391 +6824362 6845040 20679 5277967.1904 5278999.4077 29.6831 35.3346 92.5957 run28.mat -1 -1 971 3430544 3440883 +6845351 6853561 8211 5279014.9653 5279427.5156 31.3388 35.3366 92.5863 run28.mat -1 -1 971 3441039 3445144 +6937856 6949364 11509 5283641.217 5284217.3708 31.3346 35.3352 93.0046 run28.mat -1 -1 972 3487293 3493047 +6949681 6970371 20691 5284233.3519 5285266.29 32.9835 35.3362 92.5239 run28.mat -1 -1 972 3493206 3503551 +6970680 6991374 20695 5285281.8677 5286316.8071 34.6312 35.3359 92.6323 run28.mat -1 -1 972 3503706 3514053 +6991679 7012353 20675 5286331.942 5287365.6647 36.2872 35.3346 92.5721 run28.mat -1 -1 972 3514206 3524543 +7012659 7033329 20671 5287381.0911 5288414.2939 37.933 35.3336 92.6808 run28.mat -1 -1 972 3524696 3535032 +7117905 7137671 19767 5292642.9887 5293631.3936 39.5823 35.3361 92.8455 run28.mat -1 -1 973 3577322 3587205 +7137988 7158673 20686 5293647.3747 5294682.2103 41.2326 35.3347 92.6184 run28.mat -1 -1 973 3587364 3597707 +7158980 7179673 20694 5294697.6872 5295733.0224 42.8784 35.3348 92.5514 run28.mat -1 -1 973 3597860 3608207 +7179979 7200652 20674 5295748.204 5296779.9345 44.5335 35.3362 92.5563 run28.mat -1 -1 973 3608360 3618697 +7200962 7213679 12718 5296795.3145 5297433.1756 46.1798 35.3356 92.6299 run28.mat -1 -1 973 3618852 3625211 +7297763 7304726 6964 5301636.0655 5301984.2983 46.1777 35.3346 93.3133 run28.mat -1 -1 974 3667255 3670736 +7305039 7325736 20698 5301999.8271 5303034.4898 47.8274 35.3344 92.5767 run28.mat -1 -1 974 3670893 3681242 +7326041 7346734 20694 5303049.7457 5304084.6549 49.4719 35.3352 92.6225 run28.mat -1 -1 974 3681395 3691741 +7347043 7367732 20690 5304100.1081 5305136.8165 51.127 35.3346 92.597 run28.mat -1 -1 974 3691896 3702241 +7368041 7388713 20673 5305152.2695 5306186.126 52.7731 35.3352 92.6177 run28.mat -1 -1 974 3702395 3712732 +7389017 7393520 4504 5306201.3289 5306425.6061 54.4286 35.3341 92.4112 run28.mat -1 -1 974 3712884 3715135 +7477834 7493174 15341 5310642.4335 5311407.2901 54.4215 35.3334 92.9797 run28.mat -1 -1 975 3757294 3764965 +7493495 7514175 20681 5311423.5941 5312458.0304 56.0704 35.3342 92.5912 run28.mat -1 -1 975 3765125 3775466 +7514480 7535161 20682 5312473.2836 5313506.0365 57.7254 35.3348 92.6117 run28.mat -1 -1 975 3775618 3785959 +7535476 7556155 20680 5313521.6646 5314555.6476 59.3725 35.3358 92.6144 run28.mat -1 -1 975 3786116 3796457 +7556463 7573620 17158 5314571.0896 5315431.152 61.0208 35.3349 92.7458 run28.mat -1 -1 975 3796611 3805189 +7657894 7660558 2665 5319643.6616 5319777.9899 61.0216 35.3339 95.6643 run28.mat -1 -1 976 3847328 3848660 +7660883 7681554 20672 5319794.3776 5320827.3028 62.6698 35.3349 92.5787 run28.mat -1 -1 976 3848823 3859159 +7681862 7702573 20712 5320842.706 5321876.564 64.3205 35.3347 92.6416 run28.mat -1 -1 976 3859313 3869669 +7702879 7723576 20698 5321891.8669 5322927.9665 65.9715 35.3357 92.6525 run28.mat -1 -1 976 3869822 3880171 +7723880 7744555 20676 5322943.2922 5323978.2132 67.6232 35.3353 92.7173 run28.mat -1 -1 976 3880323 3890661 +7744861 7753659 8799 5323993.519 5324433.546 69.2688 35.3342 92.835 run28.mat -1 -1 976 3890814 3895212 +7837858 7848895 11038 5328643.6113 5329194.3848 69.2727 35.3336 93.2283 run28.mat -1 -1 977 3937314 3942833 +7849206 7869896 20691 5329210.0666 5330244.6547 70.9191 35.3351 92.5517 run28.mat -1 -1 977 3942988 3953334 +7870206 7890902 20697 5330260.0347 5331292.9063 72.5736 35.3355 92.579 run28.mat -1 -1 977 3953489 3963837 +7891214 7911897 20684 5331308.3856 5332342.5491 74.2181 35.3352 92.6519 run28.mat -1 -1 977 3963993 3974335 +7912205 7932875 20671 5332358.0571 5333393.4501 75.8692 35.3358 92.6748 run28.mat -1 -1 977 3974489 3984825 +7933180 7933759 580 5333408.5821 5333437.308 77.5094 35.3285 93.2951 run28.mat -1 -1 977 3984977 3985267 +8017913 8037180 19268 5337645.5514 5338607.4152 77.5134 35.335 93.0607 run28.mat -1 -1 978 4027345 4036980 +8037493 8058155 20663 5338623.0579 5339658.3567 79.1681 35.335 92.5108 run28.mat -1 -1 978 4037136 4047467 +8058463 8079172 20710 5339673.7599 5340708.4676 80.8136 35.3339 92.6109 run28.mat -1 -1 978 4047621 4057976 +8079481 8099819 20339 5340723.9206 5341740.2447 82.4637 35.3349 92.6637 run28.mat -1 -1 978 4058131 4068300 +276007 296437 20431 5468987.8387 5470008.3592 82.4615 37.0183 92.8507 run29.mat -1 -1 980 165795 176010 +296744 317437 20694 5470023.5904 5471057.3132 80.8147 37.0185 92.494 run29.mat -1 -1 980 176164 186510 +317743 338456 20714 5471072.6052 5472110.2284 79.1672 37.0169 92.5479 run29.mat -1 -1 980 186663 197021 +338764 359457 20694 5472125.5092 5473158.9667 77.5168 37.0187 92.5964 run29.mat -1 -1 980 197175 207522 +359763 371796 12034 5473174.2698 5473774.9113 75.8719 37.0171 92.5405 run29.mat -1 -1 980 207675 213691 +456256 463973 7718 5477999.1651 5478385.1212 75.868 37.022 93.4751 run29.mat -1 -1 981 255923 259782 +464314 485017 20704 5478402.1778 5479436.3594 74.2185 37.0178 92.4846 run29.mat -1 -1 981 259952 270304 +485322 505999 20678 5479451.7386 5480486.9527 72.5717 37.0187 92.6006 run29.mat -1 -1 981 270456 280795 +506305 526999 20695 5480502.2586 5481537.6841 70.9185 37.0186 92.6472 run29.mat -1 -1 981 280948 291296 +527307 547980 20674 5481553.2146 5482585.7192 69.271 37.0187 92.604 run29.mat -1 -1 981 291450 301787 +548293 552076 3784 5482601.2501 5482790.4729 67.6198 37.0174 92.6994 run29.mat -1 -1 981 301944 303835 +636345 652298 15954 5487005.0151 5487801.8327 67.6219 37.0189 92.9565 run29.mat -1 -1 982 345971 353948 +652635 673299 20665 5487818.6859 5488850.3965 65.9705 37.0189 92.5332 run29.mat -1 -1 982 354117 364449 +673607 694300 20694 5488865.6773 5489902.3712 64.3227 37.0187 92.5658 run29.mat -1 -1 982 364603 374950 +694608 715300 20693 5489917.655 5490951.3184 62.6674 37.0198 92.6599 run29.mat -1 -1 982 375104 385451 +715608 732136 16529 5490966.8457 5491794.7797 61.0224 37.0175 92.7431 run29.mat -1 -1 982 385605 393869 +816415 819559 3145 5496007.9811 5496164.1414 61.0248 37.0232 94.7695 run29.mat -1 -1 983 436011 437583 +819867 840560 20694 5496179.6687 5497216.3282 59.369 37.0189 92.4757 run29.mat -1 -1 983 437737 448084 +840866 861580 20715 5497231.6341 5498264.7285 57.7214 37.0195 92.558 run29.mat -1 -1 983 448236 458594 +861888 882559 20672 5498280.0093 5499314.5477 56.0708 37.0186 92.6766 run29.mat -1 -1 983 458748 469084 +882866 903558 20693 5499329.7789 5500364.4088 54.4247 37.0191 92.5546 run29.mat -1 -1 983 469237 479584 +903870 912176 8307 5500379.8881 5500795.0791 52.7748 37.0175 92.8803 run29.mat -1 -1 983 479740 483893 +996469 1007897 11429 5505009.9238 5505583.4186 52.7762 37.0176 93.3035 run29.mat -1 -1 984 526041 531756 +1008227 1028914 20688 5505599.925 5506634.2036 51.1281 37.0189 92.4948 run29.mat -1 -1 984 531921 542264 +1029225 1049901 20677 5506649.879 5507684.0998 49.4762 37.0184 92.4889 run29.mat -1 -1 984 542420 552758 +1050211 1070901 20691 5507699.487 5508733.968 47.8282 37.0173 92.5845 run29.mat -1 -1 984 552914 563259 +1071206 1091879 20674 5508749.1 5509780.3005 46.1798 37.0182 92.7581 run29.mat -1 -1 984 563411 573748 +1092188 1092276 89 5509795.8814 5509800.3187 44.5412 36.9919 97.5292 run29.mat -1 -1 984 573903 573947 +1176358 1196018 19661 5514007.4113 5514986.9521 44.5346 37.0193 92.8766 run29.mat -1 -1 985 615990 625820 +1196344 1217019 20676 5515003.2552 5516037.5994 42.8791 37.0194 92.6026 run29.mat -1 -1 985 625983 636321 +1217325 1238019 20695 5516053.029 5517086.7918 41.2347 37.0189 92.6349 run29.mat -1 -1 985 636474 646822 +1238327 1259005 20679 5517102.0726 5518136.9583 39.584 37.0181 92.5684 run29.mat -1 -1 985 646976 657315 +1259311 1272155 12845 5518152.1399 5518795.7575 37.9365 37.0184 92.7781 run29.mat -1 -1 985 657468 663891 +1356434 1363338 6905 5523008.8427 5523354.1629 37.9332 37.0188 93.3731 run29.mat -1 -1 986 706032 709484 +1363645 1384338 20694 5523369.5159 5524404.4914 36.286 37.0177 92.5266 run29.mat -1 -1 986 709637 719984 +1384646 1405337 20692 5524419.7722 5525456.3648 34.6325 37.0191 92.6271 run29.mat -1 -1 986 720138 730484 +1405646 1426340 20695 5525471.6952 5526506.0419 32.9847 37.0194 92.5814 run29.mat -1 -1 986 730639 740986 +1426648 1447318 20671 5526521.4449 5527555.2015 31.3299 37.0191 92.6849 run29.mat -1 -1 986 741140 751476 +1447624 1452275 4652 5527570.5047 5527802.9861 29.689 37.0169 92.7446 run29.mat -1 -1 986 751629 753954 +1536593 1551661 15069 5532018.7701 5532770.9964 29.6829 37.0197 92.9921 run29.mat -1 -1 987 796115 803650 +1551967 1572660 20694 5532786.178 5533820.8984 28.0314 37.0186 92.5396 run29.mat -1 -1 987 803803 814149 +1572966 1593679 20714 5533836.1457 5534870.5225 26.3823 37.0194 92.52 run29.mat -1 -1 987 814302 824660 +1593985 1614680 20696 5534885.949 5535921.7267 24.7336 37.0197 92.6062 run29.mat -1 -1 987 824813 835161 +1614986 1632355 17370 5535936.9083 5536804.5626 23.087 37.0196 92.6676 run29.mat -1 -1 987 835314 843998 +1716851 1719278 2428 5541029.9742 5541151.0448 23.0946 37.0203 95.5704 run29.mat -1 -1 988 886248 887468 +1719610 1740301 20692 5541167.7854 5542204.1401 21.4354 37.0173 92.5009 run29.mat -1 -1 988 887627 897973 +1740608 1761282 20675 5542219.496 5543252.8216 19.7839 37.018 92.573 run29.mat -1 -1 988 898127 908465 +1761588 1782279 20692 5543268.0639 5544301.0556 18.1402 37.0167 92.621 run29.mat -1 -1 988 908618 918963 +1782589 1803279 20691 5544316.4387 5545352.8357 16.4931 37.0178 92.5674 run29.mat -1 -1 988 919118 929464 +1803589 1812614 9026 5545368.2157 5545819.4853 14.8419 37.0167 92.6471 run29.mat -1 -1 988 929619 934132 +1896855 1907538 10684 5550030.6406 5550564.1359 14.8426 37.0191 93.1365 run29.mat -1 -1 989 976254 981596 +1907863 1928542 20680 5550580.3892 5551616.3848 13.1945 37.019 92.5114 run29.mat -1 -1 989 981759 992098 +1928850 1949560 20711 5551631.9153 5552665.8665 11.5423 37.0184 92.6343 run29.mat -1 -1 989 992252 1002608 +1949868 1970560 20693 5552681.3969 5553715.4803 9.8976 37.0187 92.5902 run29.mat -1 -1 989 1002762 1013108 +1970868 1991522 20655 5553731.0077 5554765.4193 8.2468 37.0173 92.7012 run29.mat -1 -1 989 1013262 1023590 +1991829 1992653 825 5554780.7725 5554821.981 6.5955 37.0203 94.0322 run29.mat -1 -1 989 1023743 1024155 +2076919 2095878 18960 5559034.1916 5559983.2517 6.5938 37.0191 92.9232 run29.mat -1 -1 990 1066290 1075770 +2096206 2116880 20675 5559999.528 5561032.5945 4.9442 37.0172 92.5943 run29.mat -1 -1 990 1075934 1086272 +2117184 2137882 20699 5561047.9201 5562081.4269 3.2974 37.0195 92.5247 run29.mat -1 -1 990 1086424 1096773 +2138187 2158879 20693 5562096.803 5563131.0689 1.6475 37.0184 92.5907 run29.mat -1 -1 990 1096925 1107272 +2159188 2172733 13546 5563146.3993 5563825.4253 0.00037835 37.0196 92.8109 run29.mat -1 -1 990 1107426 1114199 +2257026 2263178 6153 5568039.6824 5568345.9773 -0.0030651 37.0157 93.8554 run29.mat -1 -1 991 1156347 1159424 +2263514 2284221 20708 5568362.7808 5569399.8659 -1.652 37.0177 92.4803 run29.mat -1 -1 991 1159592 1169945 +2284528 2305200 20673 5569415.3428 5570447.7054 -3.2979 37.0198 92.6203 run29.mat -1 -1 991 1170099 1180436 +2305507 2326212 20706 5570463.0015 5571497.5561 -4.9481 37.0195 92.6137 run29.mat -1 -1 991 1180589 1190942 +2326523 2347183 20661 5571513.1091 5572547.7193 -6.5991 37.019 92.6298 run29.mat -1 -1 991 1191098 1201427 +2347495 2352834 5340 5572563.2047 5572829.0094 -8.2441 37.0162 92.9149 run29.mat -1 -1 991 1201584 1204254 +2437061 2451479 14419 5577042.5107 5577763.5211 -8.2512 37.018 93.0773 run29.mat -1 -1 992 1246369 1253578 +2451805 2472470 20666 5577779.695 5578811.5143 -9.8937 37.017 92.5433 run29.mat -1 -1 992 1253741 1264074 +2472783 2493484 20702 5578827.1673 5579863.5145 -11.5442 37.0176 92.5861 run29.mat -1 -1 992 1264231 1274582 +2493791 2514472 20682 5579878.7487 5580911.4485 -13.1898 37.0184 92.5979 run29.mat -1 -1 992 1274736 1285076 +2514789 2532853 18065 5580927.4295 5581830.098 -14.8446 37.0193 92.7 run29.mat -1 -1 992 1285235 1294267 +2617092 2618761 1670 5586041.8092 5586125.9492 -14.8529 37.0182 95.949 run29.mat -1 -1 993 1336389 1337223 +2619105 2639785 20681 5586143.2914 5587177.7883 -16.492 37.0188 92.515 run29.mat -1 -1 993 1337395 1347735 +2640092 2660765 20674 5587193.2621 5588227.528 -18.1383 37.0197 92.5697 run29.mat -1 -1 993 1347888 1358226 +2661071 2681762 20692 5588242.9576 5589276.8073 -19.7879 37.019 92.5432 run29.mat -1 -1 993 1358379 1368725 +2682073 2702763 20691 5589292.3603 5590325.7796 -21.4373 37.0179 92.5654 run29.mat -1 -1 993 1368880 1379226 +2703072 2712893 9822 5590341.3573 5590834.3629 -23.0871 37.02 92.5695 run29.mat -1 -1 993 1379380 1384291 +2797215 2807244 10030 5595048.3464 5595549.9093 -23.0927 37.0182 93.4245 run29.mat -1 -1 994 1426454 1431469 +2807571 2828245 20675 5595566.3944 5596600.6251 -24.7382 37.0193 92.5504 run29.mat -1 -1 994 1431632 1441970 +2828553 2849246 20694 5596616.1525 5597650.8454 -26.3908 37.0179 92.5716 run29.mat -1 -1 994 1442124 1452470 +2849553 2870254 20702 5597666.0766 5598702.4602 -28.0361 37.0187 92.5956 run29.mat -1 -1 994 1452624 1462975 +2870565 2891226 20662 5598718.1387 5599749.7538 -29.6925 37.0183 92.6574 run29.mat -1 -1 994 1463131 1473461 +2891540 2892972 1433 5599765.4598 5599837.0873 -31.3228 37.0256 92.884 run29.mat -1 -1 994 1473618 1474334 +2977300 2995605 18306 5604055.6114 5604969.2652 -31.3374 37.019 92.9605 run29.mat -1 -1 995 1516501 1525653 +2995935 3016607 20673 5604985.6407 5606019.2794 -32.986 37.0178 92.6175 run29.mat -1 -1 995 1525818 1536155 +3016913 3037606 20694 5606034.461 5607068.7628 -34.6339 37.0196 92.5933 run29.mat -1 -1 995 1536308 1546655 +3037916 3058605 20690 5607084.2658 5608120.0786 -36.2851 37.0182 92.6033 run29.mat -1 -1 995 1546810 1557154 +3058913 3073073 14161 5608135.3624 5608843.216 -37.9369 37.0184 92.6579 run29.mat -1 -1 995 1557308 1564389 +3157355 3162906 5552 5613057.5156 5613334.7689 -37.9321 37.0192 93.655 run29.mat -1 -1 996 1606532 1609307 +3163213 3183916 20704 5613350.2489 5614383.0417 -39.5797 37.0192 92.4681 run29.mat -1 -1 996 1609461 1619813 +3184230 3204929 20700 5614398.7482 5615435.9627 -41.2303 37.0188 92.5705 run29.mat -1 -1 996 1619970 1630320 +3205233 3225911 20679 5615451.1685 5616483.7999 -42.8794 37.0186 92.5786 run29.mat -1 -1 996 1630472 1640811 +3226218 3246893 20676 5616499.0341 5617532.7797 -44.5289 37.0185 92.6082 run29.mat -1 -1 996 1640964 1651303 +3247208 3253153 5946 5617548.4511 5617845.7741 -46.1796 37.0184 92.767 run29.mat -1 -1 996 1651460 1654433 +3337465 3351226 13762 5622061.5014 5622750.2346 -46.1776 37.0183 92.9503 run29.mat -1 -1 997 1696591 1703472 +3351552 3372247 20696 5622766.4117 5623799.2431 -47.8273 37.0179 92.5545 run29.mat -1 -1 997 1703635 1713982 +3372557 3393229 20673 5623814.6231 5624850.3259 -49.4762 37.0181 92.5446 run29.mat -1 -1 997 1714137 1724474 +3393537 3414243 20707 5624865.6098 5625900.1434 -51.1274 37.0181 92.5441 run29.mat -1 -1 997 1724628 1734981 +3414556 3433231 18676 5625915.9891 5626850.1511 -52.7806 37.0191 92.6866 run29.mat -1 -1 997 1735137 1744476 +3517692 3518748 1057 5631072.4757 5631125.3489 -52.7831 37.019 96.8823 run29.mat -1 -1 998 1786708 1787236 +3519070 3539729 20660 5631141.582 5632175.7422 -54.431 37.0194 92.5604 run29.mat -1 -1 998 1787397 1797727 +3540036 3560733 20698 5632190.9734 5633225.4749 -56.0789 37.0199 92.6309 run29.mat -1 -1 998 1797881 1808230 +3561041 3581731 20691 5633240.9371 5634276.7184 -57.7282 37.0194 92.5414 run29.mat -1 -1 998 1808384 1818729 +3582037 3602711 20675 5634291.9 5635325.5872 -59.3791 37.0185 92.6222 run29.mat -1 -1 998 1818882 1829219 +3603017 3613492 10476 5635340.7688 5635864.5334 -61.0247 37.0203 92.5629 run29.mat -1 -1 998 1829372 1834611 +3697798 3707027 9230 5640081.7393 5640541.5374 -61.0259 37.0179 93.2595 run29.mat -1 -1 999 1876765 1881380 +3707362 3728052 20691 5640558.2906 5641592.9347 -62.6724 37.018 92.5366 run29.mat -1 -1 999 1881547 1891893 +3728356 3749051 20696 5641608.2406 5642641.3085 -64.3194 37.0187 92.5707 run29.mat -1 -1 999 1892045 1902393 +3749357 3770032 20676 5642656.6115 5643690.618 -65.9747 37.0183 92.6131 run29.mat -1 -1 999 1902546 1912884 +3770354 3791013 20660 5643706.7211 5644740.8559 -67.6192 37.0186 92.6181 run29.mat -1 -1 999 1913045 1923375 +3791321 3793572 2252 5644756.1367 5644867.9023 -69.2635 37.0201 92.9702 run29.mat -1 -1 999 1923529 1924654 +3877840 3895328 17489 5649081.4449 5649954.8637 -69.269 37.0188 92.89 run29.mat -1 -1 1000 1966790 1975534 +3895656 3916333 20678 5649971.4026 5651006.6305 -70.9157 37.0192 92.5411 run29.mat -1 -1 1000 1975698 1986037 +3916642 3937334 20693 5651022.0835 5652054.991 -72.5701 37.0177 92.6403 run29.mat -1 -1 1000 1986192 1996539 +3937639 3958332 20694 5652070.2442 5653108.19 -74.2184 37.0184 92.6356 run29.mat -1 -1 1000 1996691 2007038 +3958639 3973631 14993 5653123.4374 5653873.1615 -75.8647 37.0184 92.7652 run29.mat -1 -1 1000 2007192 2014688 +4057924 4062610 4687 5658085.0408 5658321.0891 -75.8635 37.0183 93.7464 run29.mat -1 -1 1001 2056836 2059179 +4062936 4083609 20674 5658337.5239 5659370.604 -77.5147 37.02 92.5414 run29.mat -1 -1 1001 2059342 2069679 +4083920 4104615 20696 5659386.157 5660420.5993 -79.1688 37.0189 92.5957 run29.mat -1 -1 1001 2069835 2080183 +4104921 4125612 20692 5660435.7809 5661471.2233 -80.8191 37.0195 92.5642 run29.mat -1 -1 1001 2080336 2090682 +4125919 4146597 20679 5661486.5763 5662520.7657 -82.4642 37.017 92.7053 run29.mat -1 -1 1001 2090835 2101174 +4146912 4153710 6799 5662536.5217 5662876.5051 -82.4734 38.7034 92.7055 run29.mat -1 -1 1001 2101332 2104731 +4238022 4250928 12907 5667091.9619 5667736.6976 -82.4678 38.7021 93.0445 run29.mat -1 -1 1002 2146889 2153342 +4251244 4271934 20691 5667752.3753 5668787.638 -80.82 38.7022 92.5527 run29.mat -1 -1 1002 2153500 2163846 +4272239 4292932 20694 5668803.153 5669837.4395 -79.1725 38.7009 92.5269 run29.mat -1 -1 1002 2163998 2174345 +4293239 4313932 20694 5669852.7925 5670885.7306 -77.5196 38.703 92.5721 run29.mat -1 -1 1002 2174499 2184846 +4314239 4333770 19532 5670901.2075 5671879.8477 -75.8705 38.7022 92.6475 run29.mat -1 -1 1002 2184999 2194765 +4419897 4420138 242 5676186.1693 5676198.126 -75.892 38.7021 99.8443 run29.mat -1 -1 1003 2237831 2237951 +4420462 4441112 20651 5676214.2006 5677245.3651 -74.2209 38.7024 92.7301 run29.mat -1 -1 1003 2238113 2248439 +4441418 4462112 20695 5677260.6683 5678296.0957 -72.5702 38.7018 92.5218 run29.mat -1 -1 1003 2248592 2258939 +4462417 4483090 20674 5678311.1752 5679346.5149 -70.9169 38.7019 92.6052 run29.mat -1 -1 1003 2259092 2269429 +4483397 4504093 20697 5679361.7491 5680395.8875 -69.2721 38.7017 92.5177 run29.mat -1 -1 1003 2269582 2279930 +4504400 4515691 11292 5680411.3644 5680975.923 -67.6172 38.7025 92.761 run29.mat -1 -1 1003 2280084 2285730 +4599802 4608234 8433 5685181.8744 5685602.9609 -67.6203 38.7026 93.4041 run29.mat -1 -1 1004 2327787 2332003 +4608549 4629232 20684 5685618.8443 5686653.4916 -65.9717 38.7016 92.4507 run29.mat -1 -1 1004 2332160 2342502 +4629539 4650230 20692 5686668.9685 5687700.1866 -64.3186 38.7027 92.5932 run29.mat -1 -1 1004 2342656 2353002 +4650538 4671234 20697 5687715.8302 5688750.4175 -62.6721 38.7016 92.5729 run29.mat -1 -1 1004 2353156 2363504 +4671544 4692211 20668 5688765.9234 5689800.8801 -61.0243 38.7015 92.6825 run29.mat -1 -1 1004 2363659 2373994 +4692518 4695591 3074 5689816.1113 5689968.6298 -59.3735 38.7003 92.5922 run29.mat -1 -1 1004 2374147 2375684 +4779873 4796531 16659 5694183.2509 5695016.1149 -59.3733 38.7014 92.946 run29.mat -1 -1 1005 2417827 2426156 +4796841 4817531 20691 5695031.7431 5696068.2158 -57.7243 38.7025 92.5532 run29.mat -1 -1 1005 2426311 2436656 +4817838 4838528 20691 5696083.5688 5697117.1293 -56.0752 38.7022 92.6302 run29.mat -1 -1 1005 2436810 2447155 +4838839 4859533 20695 5697132.8078 5698168.5896 -54.4279 38.7022 92.5068 run29.mat -1 -1 1005 2447311 2457658 +4859839 4875650 15812 5698183.7712 5698973.5853 -52.7746 38.7021 92.8125 run29.mat -1 -1 1005 2457811 2465717 +4959932 4963855 3924 5703186.4253 5703382.6539 -52.78 38.703 94.293 run29.mat -1 -1 1006 2507860 2509821 +4964163 4984853 20691 5703397.9347 5704432.1669 -51.1314 38.7029 92.4693 run29.mat -1 -1 1006 2509975 2520321 +4985160 5005852 20693 5704447.5873 5705484.8879 -49.4806 38.7017 92.5778 run29.mat -1 -1 1006 2520474 2530821 +5006159 5026850 20692 5705500.2408 5706535.1451 -47.8328 38.7021 92.5421 run29.mat -1 -1 1006 2530974 2541320 +5027158 5047833 20676 5706550.5308 5707582.5671 -46.1837 38.7023 92.6008 run29.mat -1 -1 1006 2541474 2551812 +5048142 5055730 7589 5707598.0231 5707977.5 -44.5327 38.7013 92.5828 run29.mat -1 -1 1006 2551967 2555761 +5139994 5152159 12166 5712191.8404 5712799.3386 -44.5315 38.7014 92.9972 run29.mat -1 -1 1007 2597895 2603977 +5152478 5173152 20675 5712815.2947 5713850.7734 -42.8809 38.7022 92.5492 run29.mat -1 -1 1007 2604137 2614474 +5173458 5194138 20681 5713865.8473 5714897.4591 -41.2328 38.7014 92.6339 run29.mat -1 -1 1007 2614627 2624968 +5194450 5215138 20689 5714913.1912 5715948.1705 -39.5812 38.7025 92.6125 run29.mat -1 -1 1007 2625124 2635469 +5215453 5235789 20337 5715963.7986 5716979.3751 -37.9363 38.7021 92.6253 run29.mat -1 -1 1007 2635626 2645794 +5319848 5340241 20394 5721183.5531 5722202.8693 -36.283 38.7033 92.8364 run29.mat -1 -1 1008 2687826 2698023 +5340560 5361234 20675 5722218.8227 5723253.3747 -34.6328 38.7025 92.6192 run29.mat -1 -1 1008 2698182 2708520 +5361540 5382234 20695 5723268.7416 5724302.0387 -32.9822 38.7027 92.6509 run29.mat -1 -1 1008 2708673 2719020 +5382539 5403232 20694 5724317.2916 5725352.1966 -31.3374 38.7015 92.5543 run29.mat -1 -1 1008 2719173 2729519 +5403539 5415630 12092 5725367.5513 5725973.4013 -29.6832 38.703 92.7347 run29.mat -1 -1 1008 2729673 2735719 +5499888 5507544 7657 5730185.7407 5730570.1862 -29.6857 38.7035 93.5883 run29.mat -1 -1 1009 2777850 2781678 +5507857 5528550 20694 5730585.8392 5731616.9901 -28.0319 38.7017 92.5225 run29.mat -1 -1 1009 2781834 2792181 +5528860 5549539 20680 5731632.3732 5732668.457 -26.3866 38.7027 92.5523 run29.mat -1 -1 1009 2792336 2802679 +5549856 5570532 20677 5732684.3101 5733717.8365 -24.7381 38.7022 92.619 run29.mat -1 -1 1009 2802835 2813173 +5570839 5591513 20675 5733733.0677 5734767.7281 -23.0913 38.7016 92.6752 run29.mat -1 -1 1009 2813327 2823664 +5591819 5595708 3890 5734782.9127 5734976.4653 -21.438 38.7025 92.9823 run29.mat -1 -1 1009 2823817 2825762 +5679993 5695876 15884 5739191.791 5739983.7903 -21.4392 38.7023 93.1261 run29.mat -1 -1 1010 2867906 2875848 +5696184 5716871 20688 5739999.3176 5741034.5656 -19.7945 38.7024 92.5975 run29.mat -1 -1 1010 2876002 2886346 +5717179 5737856 20678 5741049.8464 5742085.3635 -18.1444 38.7032 92.5561 run29.mat -1 -1 1010 2886500 2896839 +5738165 5758876 20712 5742101.058 5743134.5854 -16.4964 38.7018 92.5726 run29.mat -1 -1 1010 2896993 2907349 +5759182 5775810 16629 5743149.767 5743981.122 -14.8444 38.7015 92.7185 run29.mat -1 -1 1010 2907502 2915816 +5860116 5863204 3089 5748198.4451 5748351.6501 -14.8459 38.7006 95.3713 run29.mat -1 -1 1011 2957971 2959515 +5863524 5884194 20671 5748367.5263 5749401.0647 -13.192 38.7025 92.5782 run29.mat -1 -1 1011 2959675 2970011 +5884506 5905195 20690 5749416.544 5750451.1567 -11.5466 38.7016 92.5807 run29.mat -1 -1 1011 2970167 2980512 +5905504 5926194 20691 5750466.6132 5751500.8495 -9.8925 38.7021 92.591 run29.mat -1 -1 1011 2980666 2991012 +5926501 5947173 20673 5751516.0838 5752548.5975 -8.2449 38.7025 92.6509 run29.mat -1 -1 1011 2991165 3001502 +5947485 5955909 8425 5752564.2035 5752987.104 -6.5938 38.7022 92.7327 run29.mat -1 -1 1011 3001658 3005870 +6039967 6051303 11337 5757188.5947 5757755.6076 -6.5957 38.7034 93.2885 run29.mat -1 -1 1012 3047901 3053569 +6051619 6072296 20678 5757771.4107 5758806.1392 -4.9432 38.7025 92.5573 run29.mat -1 -1 1012 3053727 3064066 +6072606 6093296 20691 5758821.7705 5759856.2726 -3.2971 38.702 92.6629 run29.mat -1 -1 1012 3064221 3074567 +6093603 6114296 20694 5759871.6876 5760908.341 -1.647 38.7025 92.5598 run29.mat -1 -1 1012 3074720 3085067 +6114603 6135277 20675 5760923.8179 5761954.439 4.4589e-06 38.7019 92.6532 run29.mat -1 -1 1012 3085221 3095558 +6135581 6135768 188 5761969.6422 5761978.9942 1.6434 38.6974 94.7314 run29.mat -1 -1 1012 3095710 3095804 +6219935 6239580 19646 5766187.2004 5767170.4855 1.6492 38.7023 93.0143 run29.mat -1 -1 1013 3137889 3147711 +6239887 6260576 20690 5767185.7807 5768220.5977 3.2931 38.7021 92.552 run29.mat -1 -1 1013 3147865 3158210 +6260885 6281558 20674 5768235.9282 5769271.5225 4.9443 38.7025 92.5802 run29.mat -1 -1 1013 3158365 3168702 +6281868 6302557 20690 5769286.9026 5770319.4765 6.5892 38.7011 92.5749 run29.mat -1 -1 1013 3168857 3179202 +6302863 6315828 12966 5770334.6581 5770983.0998 8.2439 38.7022 92.6914 run29.mat -1 -1 1013 3179355 3185838 +6400198 6406943 6746 5775201.317 5775541.3553 8.2405 38.7012 93.4993 run29.mat -1 -1 1014 3228025 3231397 +6407266 6427941 20676 5775557.6388 5776587.9373 9.8883 38.7031 92.4355 run29.mat -1 -1 1014 3231558 3241901 +6428249 6448936 20688 5776603.4646 5777637.7122 11.5381 38.7026 92.5815 run29.mat -1 -1 1014 3242051 3252395 +6449246 6469921 20676 5777653.2155 5778689.2963 13.1879 38.7022 92.6006 run29.mat -1 -1 1014 3252550 3262887 +6470229 6490923 20695 5778704.7022 5779738.9905 14.841 38.7018 92.5886 run29.mat -1 -1 1014 3263042 3273389 +6491232 6495947 4716 5779754.3853 5779989.9327 16.4827 38.7011 92.8493 run29.mat -1 -1 1014 3273544 3275901 +6580065 6595114 15050 5784195.6019 5784947.944 16.4905 38.7026 92.9205 run29.mat -1 -1 1015 3317962 3325487 +6595431 6616099 20669 5784963.858 5785996.1282 18.1408 38.7019 92.4491 run29.mat -1 -1 1015 3325645 3335980 +6616405 6637083 20679 5786011.4313 5787046.0288 19.7887 38.7036 92.6116 run29.mat -1 -1 1015 3336133 3346472 +6637389 6658099 20711 5787061.2104 5788096.7407 21.4393 38.7027 92.5018 run29.mat -1 -1 1015 3346625 3356981 +6658405 6675868 17464 5788112.0466 5788986.522 23.0918 38.702 92.7241 run29.mat -1 -1 1015 3357134 3365865 +6760100 6762413 2314 5793197.6382 5793314.2444 23.1002 38.7031 95.9143 run29.mat -1 -1 1016 3407984 3409140 +6762730 6783419 20690 5793330.2254 5794361.3422 24.7401 38.7021 92.5745 run29.mat -1 -1 1016 3409299 3419643 +6783727 6804419 20693 5794376.7451 5795411.629 26.3895 38.7027 92.58 run29.mat -1 -1 1016 3419797 3430144 +6804727 6825421 20695 5795427.1563 5796463.4457 28.0371 38.7016 92.4696 run29.mat -1 -1 1016 3430298 3440645 +6825726 6846401 20676 5796478.8217 5797512.221 29.6886 38.7016 92.6495 run29.mat -1 -1 1016 3440798 3451136 +6846708 6855947 9240 5797527.574 5797989.6139 31.3368 38.7023 92.6767 run29.mat -1 -1 1016 3451289 3455909 +6940223 6950715 10493 5802205.3336 5802729.8515 31.3323 38.7026 93.2006 run29.mat -1 -1 1017 3498049 3503295 +6951029 6971719 20691 5802745.4331 5803777.4853 32.9863 38.7025 92.4804 run29.mat -1 -1 1017 3503452 3513797 +6972027 6992720 20694 5803793.0157 5804828.0048 34.6282 38.7025 92.6757 run29.mat -1 -1 1017 3513951 3524298 +6993023 7013700 20678 5804843.0375 5805878.3855 36.2822 38.7016 92.6211 run29.mat -1 -1 1017 3524450 3534789 +7014007 7034680 20674 5805893.7384 5806926.6462 37.9279 38.7017 92.7304 run29.mat -1 -1 1017 3534942 3545279 +7034987 7036026 1040 5806941.9994 5806993.5808 39.5736 38.699 92.727 run29.mat -1 -1 1017 3545433 3545952 +7120293 7139086 18794 5811206.6214 5812148.3059 39.5799 38.7019 93.0658 run29.mat -1 -1 1018 3588088 3597484 +7139398 7160080 20683 5812164.0978 5813197.5919 41.226 38.7022 92.5993 run29.mat -1 -1 1018 3597640 3607982 +7160387 7181081 20695 5813212.8261 5814245.6075 42.8763 38.7022 92.583 run29.mat -1 -1 1018 3608136 3618483 +7181385 7202061 20677 5814260.8134 5815295.3043 44.5304 38.703 92.6019 run29.mat -1 -1 1018 3618635 3628974 +7202376 7216046 13671 5815311.1845 5815996.3001 46.1796 38.702 92.6936 run29.mat -1 -1 1018 3629131 3635966 +7300164 7306205 6042 5820200.2382 5820504.3281 46.18 38.7011 94.107 run29.mat -1 -1 1019 3678027 3681048 +7306524 7327239 20716 5820520.3051 5821554.616 47.8273 38.7022 92.5182 run29.mat -1 -1 1019 3681207 3691565 +7327546 7348220 20675 5821570.096 5822604.8865 49.4758 38.7017 92.6057 run29.mat -1 -1 1019 3691719 3702056 +7348526 7369219 20694 5822620.0681 5823651.874 51.129 38.7027 92.5521 run29.mat -1 -1 1019 3702209 3712556 +7369526 7390198 20673 5823667.227 5824702.9258 52.7786 38.7022 92.672 run29.mat -1 -1 1019 3712710 3723046 +7390505 7395965 5461 5824718.4677 5824990.945 54.431 38.705 92.6969 run29.mat -1 -1 1019 3723200 3725930 +7480291 7494579 14289 5829207.3386 5829921.5128 54.4259 38.702 93.0091 run29.mat -1 -1 1020 3768095 3775239 +7494889 7515581 20693 5829937.141 5830971.6562 56.0775 38.7022 92.5307 run29.mat -1 -1 1020 3775394 3785740 +7515887 7536578 20692 5830986.8408 5832024.1396 57.727 38.7029 92.5474 run29.mat -1 -1 1020 3785893 3796240 +7536887 7557580 20694 5832039.5961 5833072.5026 59.3767 38.7015 92.5286 run29.mat -1 -1 1020 3796394 3806741 +7557887 7576086 18200 5833087.8555 5833996.6146 61.0235 38.7029 92.7229 run29.mat -1 -1 1020 3806894 3815994 +7660171 7661732 1562 5838201.4255 5838279.4905 61.0261 38.7009 96.3308 run29.mat -1 -1 1021 3858039 3858819 +7662048 7682726 20679 5838295.2935 5839328.5216 62.6701 38.7023 92.6327 run29.mat -1 -1 1021 3858977 3869316 +7683034 7703725 20692 5839344.052 5840378.7081 64.3218 38.7019 92.6125 run29.mat -1 -1 1021 3869470 3879817 +7704030 7724723 20694 5840393.9612 5841429.5703 65.9662 38.7017 92.5892 run29.mat -1 -1 1021 3879969 3890316 +7725028 7745721 20694 5841444.9526 5842480.0119 67.6174 38.7019 92.6467 run29.mat -1 -1 1021 3890468 3900815 +7746027 7755986 9960 5842495.1965 5842993.3108 69.2689 38.7026 92.6972 run29.mat -1 -1 1021 3900968 3905948 +7840263 7850008 9746 5847207.1383 5847695.1218 69.2644 38.7011 93.295 run29.mat -1 -1 1022 3948088 3952961 +7850329 7871022 20694 5847711.0476 5848743.6805 70.9141 38.7019 92.5035 run29.mat -1 -1 1022 3953122 3963469 +7871327 7892002 20676 5848759.0597 5849793.313 72.5652 38.7013 92.6051 run29.mat -1 -1 1022 3963621 3973959 +7892310 7913022 20713 5849808.8403 5850844.0719 74.2165 38.7024 92.467 run29.mat -1 -1 1022 3974113 3984470 +7913327 7933980 20654 5850859.3886 5851894.231 75.8659 38.7017 92.6501 run29.mat -1 -1 1022 3984622 3994949 +7934290 7936046 1757 5851909.6141 5851996.7519 77.5166 38.7073 92.9283 run29.mat -1 -1 1022 3995104 3995982 +8020296 8038291 17996 5856208.3231 5857108.646 77.5144 38.7023 92.808 run29.mat -1 -1 1023 4038109 4047107 +8038611 8059304 20694 5857124.5221 5858161.2497 79.1689 38.7027 92.557 run29.mat -1 -1 1023 4047267 4057614 +8059612 8080283 20672 5858176.5444 5859208.4148 80.8148 38.7021 92.592 run29.mat -1 -1 1023 4057768 4068104 +8080592 8100931 20340 5859223.8712 5860239.0793 82.4696 38.7032 92.5957 run29.mat -1 -1 1023 4068258 4078428 +275451 295880 20430 10641634.4664 10642654.9927 82.46 -37.0191 92.9941 run3.mat -1 -1 1025 157794 168009 +296186 316879 20694 10642670.2986 10643703.2074 80.815 -37.0202 92.6061 run3.mat -1 -1 1025 168162 178509 +317184 337879 20696 10643718.4633 10644755.4868 79.1644 -37.0216 92.6037 run3.mat -1 -1 1025 178661 189009 +338186 358857 20672 10644770.8398 10645804.49 77.5138 -37.0206 92.6556 run3.mat -1 -1 1025 189162 199498 +359164 371278 12115 10645819.9669 10646425.8712 75.8665 -37.0218 92.7302 run3.mat -1 -1 1025 199652 205709 +455575 463179 7605 10650640.2907 10651020.6544 75.8635 -37.0192 93.6107 run3.mat -1 -1 1026 247860 251662 +463501 484180 20680 10651036.8875 10652069.447 74.2202 -37.0203 92.5478 run3.mat -1 -1 1026 251823 262163 +484487 505168 20682 10652084.8 10653119.1066 72.5706 -37.0208 92.5946 run3.mat -1 -1 1026 262316 272657 +505484 526161 20678 10653134.9096 10654168.5543 70.9179 -37.0211 92.6334 run3.mat -1 -1 1026 272815 283154 +526466 547144 20679 10654183.6862 10655217.5045 69.2699 -37.0205 92.6555 run3.mat -1 -1 1026 283307 293646 +547448 551359 3912 10655232.8302 10655429.3324 67.6181 -37.0255 92.7486 run3.mat -1 -1 1026 293798 295753 +635678 651480 15803 10659643.7092 10660435.7166 67.6216 -37.0214 92.9725 run3.mat -1 -1 1027 337915 345817 +651787 672461 20675 10660451.0698 10661483.9673 65.9737 -37.0205 92.6291 run3.mat -1 -1 1027 345970 356307 +672769 693452 20684 10661499.4947 10662532.8321 64.3202 -37.0212 92.7214 run3.mat -1 -1 1027 356461 366803 +693764 714445 20682 10662548.4351 10663583.691 62.6678 -37.0202 92.5522 run3.mat -1 -1 1027 366959 377300 +714753 731458 16706 10663599.0942 10664434.1913 61.022 -37.0216 92.6948 run3.mat -1 -1 1027 377454 385807 +815728 818743 3016 10668648.9829 10668798.5959 61.0172 -37.0217 94.9057 run3.mat -1 -1 1028 427944 429451 +819063 839745 20683 10668814.4752 10669846.615 59.3739 -37.0194 92.5751 run3.mat -1 -1 1028 429611 439953 +840051 860746 20696 10669861.7966 10670899.6042 57.7231 -37.0202 92.6355 run3.mat -1 -1 1028 440106 450454 +861053 881724 20672 10670914.9571 10671948.3672 56.0711 -37.0205 92.5146 run3.mat -1 -1 1028 450607 460943 +882033 902706 20674 10671963.7007 10672998.1417 54.4243 -37.0206 92.7272 run3.mat -1 -1 1028 461098 471435 +903012 911517 8506 10673013.4481 10673437.2035 52.7809 -37.0206 92.7744 run3.mat -1 -1 1028 471588 475841 +995723 1006923 11201 10677649.2977 10678209.4116 52.7762 -37.0209 93.4404 run3.mat -1 -1 1029 517946 523546 +1007248 1027924 20677 10678225.6647 10679256.9857 51.1262 -37.021 92.5336 run3.mat -1 -1 1029 523708 534047 +1028232 1048922 20691 10679272.2665 10680305.9263 49.4762 -37.0205 92.6448 run3.mat -1 -1 1029 534201 544546 +1049229 1069905 20677 10680321.2793 10681355.9696 47.8298 -37.0204 92.5642 run3.mat -1 -1 1029 544700 555038 +1070213 1090882 20670 10681371.2504 10682407.2313 46.1785 -37.021 92.7506 run3.mat -1 -1 1029 555192 565527 +1091191 1091497 307 10682422.809 10682438.2355 44.535 -37.0255 93.9116 run3.mat -1 -1 1029 565681 565834 +1175791 1195225 19435 10686652.0777 10687623.3723 44.533 -37.02 92.817 run3.mat -1 -1 1030 607983 617700 +1195549 1216227 20679 10687639.7096 10688672.4901 42.8769 -37.0212 92.5522 run3.mat -1 -1 1030 617862 628202 +1216535 1237215 20681 10688687.8933 10689721.1462 41.2314 -37.0217 92.6374 run3.mat -1 -1 1030 628356 638697 +1237528 1258206 20679 10689736.848 10690772.5975 39.5829 -37.0212 92.6749 run3.mat -1 -1 1030 638853 649193 +1258514 1271577 13064 10690787.8783 10691441.7349 37.9333 -37.0207 92.7786 run3.mat -1 -1 1030 649347 655878 +1355861 1362605 6745 10695654.4812 10695993.3894 37.9319 -37.0193 94.0273 run3.mat -1 -1 1031 698022 701394 +1362912 1383609 20698 10696008.6237 10697041.9154 36.2815 -37.0204 92.469 run3.mat -1 -1 1031 701548 711896 +1383917 1404608 20692 10697057.3213 10698092.2173 34.6302 -37.0213 92.5811 run3.mat -1 -1 1031 712050 722397 +1404916 1425589 20674 10698107.6203 10699140.4203 32.9819 -37.0197 92.6174 run3.mat -1 -1 1031 722551 732888 +1425902 1446582 20681 10699155.9492 10700190.9028 31.3319 -37.0201 92.7764 run3.mat -1 -1 1031 733044 743385 +1446891 1451656 4766 10700206.4837 10700443.7821 29.6793 -37.0175 93.1117 run3.mat -1 -1 1031 743540 745922 +1535941 1550988 15048 10704658.6898 10705412.1535 29.6845 -37.0211 93.132 run3.mat -1 -1 1032 788067 795590 +1551294 1571977 20684 10705427.4594 10706461.8852 28.0321 -37.0212 92.5597 run3.mat -1 -1 1032 795743 806085 +1572292 1592971 20680 10706477.6385 10707511.8912 26.3855 -37.0212 92.7085 run3.mat -1 -1 1032 806242 816582 +1593277 1613949 20673 10707527.1976 10708559.9754 24.7364 -37.0199 92.5878 run3.mat -1 -1 1032 816735 827072 +1614257 1631697 17441 10708575.2562 10709446.3834 23.0899 -37.0217 92.7802 run3.mat -1 -1 1032 827226 835946 +1715808 1718047 2240 10713651.7436 10713762.8271 23.0878 -37.0199 94.8606 run3.mat -1 -1 1033 878004 879123 +1718369 1739034 20666 10713778.8025 10714814 21.4388 -37.0212 92.589 run3.mat -1 -1 1033 879284 889617 +1739350 1760030 20681 10714829.6777 10715863.0579 19.7898 -37.0199 92.6106 run3.mat -1 -1 1033 889775 900116 +1760336 1781029 20694 10715878.3611 10716915.2386 18.1439 -37.0201 92.6904 run3.mat -1 -1 1033 900269 910615 +1781336 1802009 20674 10716930.5945 10717961.6526 16.4895 -37.0217 92.6956 run3.mat -1 -1 1033 910769 921106 +1802318 1811556 9239 10717977.2303 10718439.9479 14.8489 -37.0185 92.8245 run3.mat -1 -1 1033 921261 925879 +1895995 1906447 10453 10722662.6007 10723184.1587 14.8456 -37.0205 93.3292 run3.mat -1 -1 1034 968101 973328 +1906772 1927480 20709 10723200.4743 10724237.6991 13.189 -37.0218 92.5591 run3.mat -1 -1 1034 973490 983844 +1927795 1948451 20657 10724253.3303 10725284.083 11.5438 -37.0205 92.5795 run3.mat -1 -1 1034 984002 994330 +1948758 1969450 20693 10725299.3141 10726333.7975 9.8918 -37.0203 92.5709 run3.mat -1 -1 1034 994484 1004830 +1969758 1990409 20652 10726349.2271 10727384.2372 8.2464 -37.0206 92.7181 run3.mat -1 -1 1034 1004984 1015310 +1990716 1991776 1061 10727399.7172 10727453.1662 6.5851 -37.0127 91.8802 run3.mat -1 -1 1034 1015464 1015994 +2076033 2094730 18698 10731665.3147 10732598.6987 6.5906 -37.0203 92.9922 run3.mat -1 -1 1035 1058124 1067473 +2095052 2115719 20668 10732614.6741 10733646.3083 4.9423 -37.0192 92.5592 run3.mat -1 -1 1035 1067634 1077968 +2116034 2136712 20679 10733662.1885 10734699.0735 3.293 -37.0209 92.6206 run3.mat -1 -1 1035 1078126 1088465 +2137020 2157697 20678 10734714.4794 10735747.4353 1.6459 -37.02 92.6285 run3.mat -1 -1 1035 1088619 1098958 +2158011 2171836 13826 10735763.2683 10736453.7753 -0.0036546 -37.022 92.936 run3.mat -1 -1 1035 1099115 1106028 +2256063 2261991 5929 10740664.2765 10740962.1034 -0.0029137 -37.0235 93.9125 run3.mat -1 -1 1036 1148143 1151107 +2262296 2282993 20698 10740977.4795 10742014.1202 -1.6471 -37.0205 92.5169 run3.mat -1 -1 1036 1151260 1161609 +2283298 2303972 20675 10742029.3731 10743059.3272 -3.2976 -37.0193 92.5792 run3.mat -1 -1 1036 1161761 1172099 +2304279 2324974 20696 10743074.6804 10744111.1436 -4.9449 -37.0217 92.6007 run3.mat -1 -1 1036 1172252 1182600 +2325280 2345935 20656 10744126.5701 10745160.0427 -6.5941 -37.0197 92.6607 run3.mat -1 -1 1036 1182753 1193081 +2346246 2351875 5630 10745175.5987 10745455.3158 -8.2447 -37.0195 92.9818 run3.mat -1 -1 1036 1193236 1196051 +2436144 2450230 14087 10749668.8926 10750373.6542 -8.2432 -37.0201 93.2046 run3.mat -1 -1 1037 1238188 1245231 +2450551 2471233 20683 10750389.5832 10751423.536 -9.8956 -37.0217 92.6689 run3.mat -1 -1 1037 1245391 1255733 +2471539 2492231 20693 10751438.8419 10752475.6559 -11.5441 -37.021 92.553 run3.mat -1 -1 1037 1255886 1266232 +2492543 2513231 20689 10752491.1351 10753523.3795 -13.1902 -37.0208 92.6331 run3.mat -1 -1 1037 1266388 1276733 +2513539 2531935 18397 10753538.9068 10754460.396 -14.8456 -37.0216 92.7694 run3.mat -1 -1 1037 1276887 1286085 +2616199 2617510 1312 10758670.6895 10758736.3761 -14.8408 -37.0238 96.7774 run3.mat -1 -1 1038 1328219 1328875 +2617816 2638472 20657 10758751.8026 10759787.6607 -16.4912 -37.0214 92.6645 run3.mat -1 -1 1038 1329028 1339356 +2638783 2659475 20693 10759803.2137 10760836.8276 -18.1395 -37.0202 92.5106 run3.mat -1 -1 1038 1339511 1349858 +2659788 2680471 20684 10760852.607 10761886.13 -19.7842 -37.0212 92.6593 run3.mat -1 -1 1038 1350015 1360356 +2680779 2701454 20676 10761901.5332 10762934.0024 -21.4402 -37.0206 92.6865 run3.mat -1 -1 1038 1360510 1370848 +2701760 2711975 10216 10762949.184 10763459.9996 -23.0899 -37.0214 92.8837 run3.mat -1 -1 1038 1371001 1376109 +2796134 2805813 9680 10767671.8786 10768155.9471 -23.0956 -37.0218 93.721 run3.mat -1 -1 1039 1418191 1423030 +2806121 2826831 20711 10768171.3535 10769203.768 -24.7404 -37.0201 92.5062 run3.mat -1 -1 1039 1423184 1433540 +2827139 2847813 20675 10769219.0488 10770254.1739 -26.393 -37.0187 92.5706 run3.mat -1 -1 1039 1433694 1444031 +2848120 2868792 20673 10770269.6539 10771301.8546 -28.039 -37.0198 92.6462 run3.mat -1 -1 1039 1444185 1454521 +2869098 2889773 20676 10771317.2811 10772350.4375 -29.692 -37.0205 92.6846 run3.mat -1 -1 1039 1454674 1465012 +2890078 2891974 1897 10772365.5724 10772459.6574 -31.3326 -37.0207 93.0251 run3.mat -1 -1 1039 1465164 1466112 +2976254 2994112 17859 10776676.2525 10777568.5191 -31.339 -37.0221 92.8993 run3.mat -1 -1 1040 1508254 1517185 +2994427 3015114 20688 10777584.3993 10778618.2489 -32.9836 -37.0207 92.5677 run3.mat -1 -1 1040 1517341 1527685 +3015420 3036101 20682 10778633.4304 10779669.372 -34.6351 -37.021 92.6298 run3.mat -1 -1 1040 1527838 1538179 +3036412 3057088 20677 10779684.925 10780719.03 -36.2834 -37.0207 92.6259 run3.mat -1 -1 1040 1538335 1548673 +3057396 3072054 14659 10780734.4332 10781466.3001 -37.936 -37.0201 92.8064 run3.mat -1 -1 1040 1548827 1556157 +3156183 3161313 5131 10785672.3685 10785928.3656 -37.9307 -37.0181 94.4948 run3.mat -1 -1 1041 1598223 1600788 +3161620 3182333 20714 10785943.8425 10786980.0393 -39.5807 -37.0194 92.5464 run3.mat -1 -1 1041 1600942 1611298 +3182641 3203336 20696 10786995.5666 10788031.8955 -41.232 -37.0219 92.6123 run3.mat -1 -1 1041 1611452 1621800 +3203642 3224314 20673 10788047.3251 10789077.5658 -42.8766 -37.0203 92.547 run3.mat -1 -1 1041 1621953 1632290 +3224620 3245296 20677 10789092.8014 10790127.196 -44.5287 -37.0203 92.7612 run3.mat -1 -1 1041 1632443 1642781 +3245602 3252094 6493 10790142.6257 10790467.848 -46.174 -37.0232 92.8952 run3.mat -1 -1 1041 1642934 1646180 +3336368 3349573 13206 10794681.9593 10795341.1331 -46.1795 -37.0194 93.1478 run3.mat -1 -1 1042 1688319 1694922 +3349894 3370575 20682 10795357.3125 10796393.4628 -47.8297 -37.021 92.4976 run3.mat -1 -1 1042 1695083 1705424 +3370882 3391556 20675 10796408.8157 10797441.5574 -49.4792 -37.0211 92.5706 run3.mat -1 -1 1042 1705577 1715914 +3391862 3412575 20714 10797456.9839 10798491.9823 -51.127 -37.0194 92.5521 run3.mat -1 -1 1042 1716067 1726424 +3412882 3432133 19252 10798507.3355 10799469.1195 -52.7822 -37.0194 92.7437 run3.mat -1 -1 1042 1726578 1736204 +3516430 3516993 564 10803684.3485 10803712.2806 -52.7721 -37.0215 103.8979 run3.mat -1 -1 1043 1778354 1778636 +3517311 3537956 20646 10803728.0576 10804761.1518 -54.4286 -37.0205 92.7148 run3.mat -1 -1 1043 1778795 1789118 +3538262 3558936 20675 10804776.5783 10805810.9464 -56.0784 -37.0205 92.5835 run3.mat -1 -1 1043 1789271 1799608 +3559243 3579935 20693 10805826.2996 10806862.2064 -57.7299 -37.0208 92.6128 run3.mat -1 -1 1043 1799762 1810108 +3580241 3600898 20658 10806877.5093 10807909.1754 -59.3764 -37.0204 92.5947 run3.mat -1 -1 1043 1810261 1820590 +3601207 3612213 11007 10807924.7532 10808474.4782 -61.0244 -37.0223 92.8017 run3.mat -1 -1 1043 1820745 1826248 +3698331 3707155 8825 10812781.0633 10813222.2862 -61.0266 -37.0228 93.7753 run3.mat -1 -1 1044 1869309 1873721 +3707462 3728157 20696 10813237.5814 10814270.7898 -62.6746 -37.0216 92.5233 run3.mat -1 -1 1044 1873875 1884222 +3728463 3749137 20675 10814285.9714 10815321.4982 -64.3199 -37.0207 92.5921 run3.mat -1 -1 1044 1884375 1894713 +3749445 3770147 20703 10815336.8466 10816370.3126 -65.9718 -37.0194 92.6502 run3.mat -1 -1 1044 1894867 1905218 +3770457 3791119 20663 10816385.8191 10817421.2175 -67.6198 -37.021 92.8355 run3.mat -1 -1 1044 1905373 1915705 +3791425 3794233 2809 10817436.5205 10817576.9475 -69.2589 -37.0252 92.5858 run3.mat -1 -1 1044 1915858 1917262 +3878251 3895159 16909 10821779.0737 10822623.3799 -69.2726 -37.0202 92.9197 run3.mat -1 -1 1045 1959272 1967727 +3895470 3916177 20708 10822638.8126 10823674.1441 -70.9164 -37.0207 92.5767 run3.mat -1 -1 1045 1967882 1978236 +3916486 3937158 20673 10823689.4776 10824723.0976 -72.5705 -37.0206 92.63 run3.mat -1 -1 1045 1978391 1988728 +3937465 3958159 20695 10824738.3288 10825770.4326 -74.2181 -37.0215 92.6413 run3.mat -1 -1 1045 1988881 1999229 +3958468 3974051 15584 10825785.8856 10826565.6705 -75.8674 -37.0187 92.8942 run3.mat -1 -1 1045 1999383 2007175 +4058302 4062397 4096 10830780.5354 10830983.7249 -75.8701 -37.0242 94.0835 run3.mat -1 -1 1046 2049302 2051350 +4062717 4083419 20703 10830999.6042 10832036.7975 -77.5168 -37.0208 92.4945 run3.mat -1 -1 1046 2051510 2061861 +4083728 4104400 20673 10832052.131 10833083.8258 -79.1717 -37.0209 92.6114 run3.mat -1 -1 1046 2062015 2072352 +4104710 4125398 20689 10833099.2058 10834135.5975 -80.8187 -37.0203 92.6242 run3.mat -1 -1 1046 2072507 2082851 +4125705 4146379 20675 10834150.9321 10835182.7662 -82.4672 -37.0203 92.7098 run3.mat -1 -1 1046 2083004 2093342 +4146686 4154072 7387 10835198.0004 10835565.7841 -82.4701 -35.3371 92.7595 run3.mat -1 -1 1046 2093496 2097189 +4238389 4250804 12416 10839784.8129 10840404.5503 -82.4692 -35.3376 93.3968 run3.mat -1 -1 1047 2139350 2145557 +4251124 4271805 20682 10840420.5537 10841452.8615 -80.8197 -35.3367 92.5856 run3.mat -1 -1 1047 2145717 2156058 +4272121 4292799 20679 10841468.6646 10842503.5424 -79.1709 -35.3369 92.5669 run3.mat -1 -1 1047 2156216 2166556 +4293107 4313784 20678 10842519.0698 10843555.3505 -77.5178 -35.3383 92.5579 run3.mat -1 -1 1047 2166710 2177048 +4314102 4334151 20050 10843571.2566 10844572.0288 -75.8678 -35.3371 92.7951 run3.mat -1 -1 1047 2177207 2187233 +4418492 4439082 20591 10848788.9607 10849819.4253 -74.2202 -35.3365 92.8173 run3.mat -1 -1 1048 2229405 2239700 +4439388 4460061 20674 10849834.6676 10850869.6511 -72.569 -35.337 92.6054 run3.mat -1 -1 1048 2239853 2250190 +4460368 4481064 20697 10850885.1311 10851918.3817 -70.9174 -35.3362 92.6923 run3.mat -1 -1 1048 2250344 2260692 +4481379 4502060 20682 10851934.2619 10852966.7487 -69.2681 -35.3367 92.6527 run3.mat -1 -1 1048 2260850 2271191 +4502366 4514231 11866 10852982.1783 10853576.4308 -67.6234 -35.337 92.7489 run3.mat -1 -1 1048 2271344 2277276 +4598269 4606229 7961 10857777.825 10858175.9305 -67.6188 -35.3361 93.7203 run3.mat -1 -1 1049 2319297 2323278 +4606552 4627223 20672 10858191.9587 10859227.4965 -65.9724 -35.337 92.5843 run3.mat -1 -1 1049 2323439 2333775 +4627527 4648220 20694 10859242.6481 10860275.8507 -64.3185 -35.3378 92.6185 run3.mat -1 -1 1049 2333927 2344273 +4648526 4669199 20674 10860291.2804 10861324.9164 -62.6719 -35.3368 92.6401 run3.mat -1 -1 1049 2344426 2354764 +4669509 4690166 20658 10861340.4197 10862372.5132 -61.0239 -35.3375 92.6925 run3.mat -1 -1 1049 2354919 2365248 +4690476 4694052 3577 10862387.8932 10862565.8646 -59.3701 -35.3349 92.7507 run3.mat -1 -1 1049 2365403 2367191 +4778284 4794588 16305 10866779.4251 10867593.5087 -59.3776 -35.3365 93.1002 run3.mat -1 -1 1050 2409309 2417461 +4794905 4815544 20640 10867609.4929 10868643.0742 -57.7257 -35.3364 92.6478 run3.mat -1 -1 1050 2417619 2427940 +4815855 4836541 20687 10868658.6272 10869691.8363 -56.0793 -35.3372 92.6645 run3.mat -1 -1 1050 2428095 2438439 +4836847 4857539 20693 10869707.0179 10870740.5343 -54.431 -35.3366 92.7179 run3.mat -1 -1 1050 2438592 2448938 +4857847 4874051 16205 10870755.8793 10871568.2084 -52.7807 -35.3363 92.8277 run3.mat -1 -1 1050 2449092 2457194 +4958097 4961627 3531 10875767.6031 10875946.9215 -52.7804 -35.3391 95.0986 run3.mat -1 -1 1051 2499219 2500984 +4961947 4982622 20676 10875963.1778 10876996.192 -51.1323 -35.3373 92.5551 run3.mat -1 -1 1051 2501144 2511482 +4982928 5003610 20683 10877011.4949 10878046.8389 -49.4784 -35.3365 92.6463 run3.mat -1 -1 1051 2511635 2521977 +5003921 5024621 20701 10878062.2685 10879097.4005 -47.8307 -35.3366 92.5842 run3.mat -1 -1 1051 2522132 2532483 +5024926 5045586 20661 10879112.5324 10880144.2183 -46.1807 -35.3367 92.7081 run3.mat -1 -1 1051 2532635 2542966 +5045893 5053910 8018 10880159.5713 10880560.5044 -44.5326 -35.3379 92.8753 run3.mat -1 -1 1051 2543119 2547128 +5137931 5149629 11699 10884761.8202 10885346.8253 -44.5303 -35.3356 93.0204 run3.mat -1 -1 1052 2589140 2594994 +5149942 5170624 20683 10885362.6079 10886397.2993 -42.8803 -35.3369 92.5344 run3.mat -1 -1 1052 2595146 2605487 +5170929 5191620 20692 10886412.6785 10887445.7443 -41.2287 -35.3368 92.5723 run3.mat -1 -1 1052 2605640 2615985 +5191929 5212603 20675 10887461.0778 10888495.5072 -39.5823 -35.3363 92.6501 run3.mat -1 -1 1052 2616140 2626478 +5212908 5233564 20657 10888510.8832 10889542.8676 -37.9323 -35.3362 92.8093 run3.mat -1 -1 1052 2626630 2636959 +5317912 5337903 19992 10893760.05 10894759.8305 -36.2843 -35.3363 93.017 run3.mat -1 -1 1053 2679135 2689131 +5338217 5358902 20686 10894775.5336 10895810.4939 -34.6323 -35.3366 92.6243 run3.mat -1 -1 1053 2689288 2699631 +5359207 5379900 20694 10895825.6259 10896858.4877 -32.983 -35.3366 92.6998 run3.mat -1 -1 1053 2699783 2710130 +5380209 5400881 20673 10896873.7506 10897911.3354 -31.3351 -35.3366 92.6735 run3.mat -1 -1 1053 2710285 2720621 +5401188 5413790 12603 10897926.5666 10898554.4678 -29.688 -35.3374 92.7798 run3.mat -1 -1 1053 2720775 2727076 +5497847 5505046 7200 10902757.2481 10903118.1867 -29.6878 -35.3365 93.9023 run3.mat -1 -1 1054 2769106 2772706 +5505366 5526043 20678 10903134.2822 10904168.0687 -28.0399 -35.3362 92.5841 run3.mat -1 -1 1054 2772866 2783205 +5526348 5547041 20694 10904183.2006 10905218.518 -26.3898 -35.3369 92.679 run3.mat -1 -1 1054 2783357 2793704 +5547349 5568022 20674 10905233.9212 10906266.8238 -24.7413 -35.3368 92.5589 run3.mat -1 -1 1054 2793858 2804195 +5568329 5588992 20664 10906282.1768 10907317.027 -23.0923 -35.3371 92.6606 run3.mat -1 -1 1054 2804348 2814681 +5589302 5593610 4309 10907332.6552 10907547.3461 -21.4363 -35.3345 92.8061 run3.mat -1 -1 1054 2814836 2816990 +5677898 5693326 15429 10911758.1366 10912531.5822 -21.4405 -35.3371 93.1263 run3.mat -1 -1 1055 2859135 2866850 +5693636 5714306 20671 10912547.2103 10913580.8545 -19.792 -35.3367 92.5892 run3.mat -1 -1 1055 2867005 2877341 +5714614 5735304 20691 10913596.1353 10914631.9048 -18.1418 -35.3359 92.6664 run3.mat -1 -1 1055 2877495 2887840 +5735611 5756303 20693 10914647.3817 10915682.4516 -16.4923 -35.3375 92.6262 run3.mat -1 -1 1055 2887994 2898340 +5756609 5773689 17081 10915697.7546 10916550.9913 -14.8453 -35.3375 92.8048 run3.mat -1 -1 1055 2898493 2907033 +5857712 5860330 2619 10920751.0623 10920880.9492 -14.836 -35.3353 95.1991 run3.mat -1 -1 1056 2949047 2950356 +5860651 5881323 20673 10920896.875 10921930.9608 -13.1934 -35.3375 92.5118 run3.mat -1 -1 1056 2950516 2960852 +5881630 5902327 20698 10921946.3728 10922981.6809 -11.5436 -35.3368 92.6295 run3.mat -1 -1 1056 2961006 2971355 +5902633 5923305 20673 10922997.1105 10924032.8253 -9.8945 -35.3377 92.632 run3.mat -1 -1 1056 2971508 2981844 +5923612 5944286 20675 10924048.1813 10925079.3192 -8.2443 -35.337 92.6199 run3.mat -1 -1 1056 2981998 2992335 +5944592 5953489 8898 10925094.5038 10925539.9544 -6.594 -35.3354 92.7133 run3.mat -1 -1 1056 2992488 2996937 +6037750 6048587 10838 10929751.7199 10930294.9234 -6.5907 -35.3376 93.4022 run3.mat -1 -1 1057 3039070 3044488 +6048898 6069589 20692 10930310.353 10931343.8717 -4.9458 -35.3363 92.5507 run3.mat -1 -1 1057 3044644 3054990 +6069895 6090583 20689 10931359.1746 10932395.6515 -3.2923 -35.3366 92.6553 run3.mat -1 -1 1057 3055143 3065487 +6090890 6111565 20676 10932410.8827 10933446.2351 -1.6504 -35.3368 92.6277 run3.mat -1 -1 1057 3065641 3075979 +6111871 6132528 20658 10933461.5415 10934492.6946 7.1287e-05 -35.3369 92.7468 run3.mat -1 -1 1057 3076132 3086461 +6132835 6133569 735 10934507.9258 10934544.3417 1.6485 -35.3384 92.5062 run3.mat -1 -1 1057 3086614 3086981 +6217684 6236790 19107 10938748.556 10939705.8378 1.6449 -35.3369 93.0112 run3.mat -1 -1 1058 3129040 3138594 +6237102 6257777 20676 10939721.57 10940755.6042 3.2938 -35.336 92.4912 run3.mat -1 -1 1058 3138750 3149088 +6258090 6278766 20677 10940771.1362 10941804.917 4.9417 -35.3378 92.627 run3.mat -1 -1 1058 3149244 3159583 +6279072 6299746 20675 10941820.0986 10942851.54 6.5903 -35.3368 92.612 run3.mat -1 -1 1058 3159736 3170073 +6300052 6313448 13397 10942866.9665 10943538.0094 8.2397 -35.3371 92.6849 run3.mat -1 -1 1058 3170226 3176925 +6397693 6403987 6295 10947750.4038 10948066.5838 8.2444 -35.3383 93.7778 run3.mat -1 -1 1059 3219049 3222196 +6404307 6424986 20680 10948082.46 10949115.3729 9.8911 -35.3367 92.4829 run3.mat -1 -1 1059 3222356 3232696 +6425293 6445991 20699 10949130.9831 10950165.2384 11.5415 -35.3366 92.6703 run3.mat -1 -1 1059 3232849 3243199 +6446303 6466966 20664 10950180.9706 10951215.8944 13.1912 -35.3372 92.5715 run3.mat -1 -1 1059 3243355 3253687 +6467273 6487929 20657 10951231.2474 10952262.3105 14.843 -35.3368 92.7589 run3.mat -1 -1 1059 3253840 3264169 +6488232 6493468 5237 10952277.4663 10952539.3592 16.4877 -35.3369 92.807 run3.mat -1 -1 1059 3264320 3266939 +6579632 6594113 14482 10956847.5408 10957571.2636 16.4952 -35.3365 93.0077 run3.mat -1 -1 1060 3310022 3317263 +6594430 6615109 20680 10957587.1806 10958623.0093 18.1398 -35.3367 92.6331 run3.mat -1 -1 1060 3317421 3327762 +6615416 6636088 20673 10958638.2405 10959671.2356 19.7924 -35.3371 92.6357 run3.mat -1 -1 1060 3327915 3338252 +6636394 6657085 20692 10959686.5386 10960719.3465 21.437 -35.337 92.5675 run3.mat -1 -1 1060 3338405 3348750 +6657394 6675388 17995 10960734.7997 10961636.779 23.0903 -35.3377 92.7832 run3.mat -1 -1 1060 3348905 3357903 +6759468 6761215 1748 10965840.4266 10965929.2759 23.093 -35.3355 95.7991 run3.mat -1 -1 1061 3399944 3400818 +6761528 6782207 20680 10965945.1945 10966978.1427 24.7383 -35.3372 92.6418 run3.mat -1 -1 1061 3400974 3411314 +6782515 6803186 20672 10966993.5487 10968025.455 26.3857 -35.3375 92.6357 run3.mat -1 -1 1061 3411468 3421804 +6803493 6824169 20677 10968040.9351 10969076.2615 28.037 -35.3369 92.6417 run3.mat -1 -1 1061 3421958 3432296 +6824474 6845170 20697 10969091.3994 10970125.4524 29.6837 -35.3364 92.6557 run3.mat -1 -1 1061 3432448 3442797 +6845476 6855268 9793 10970140.5234 10970629.3517 31.3326 -35.3379 92.8202 run3.mat -1 -1 1061 3442950 3447847 +6939516 6949449 9934 10974842.212 10975340.9456 31.3312 -35.3374 93.3334 run3.mat -1 -1 1062 3489972 3494939 +6949756 6970447 20692 10975356.1798 10976388.6392 32.9815 -35.3373 92.4247 run3.mat -1 -1 1062 3495092 3505438 +6970756 6991456 20701 10976404.217 10977440.4312 34.6315 -35.3366 92.5932 run3.mat -1 -1 1062 3505593 3515944 +6991769 7012428 20660 10977456.0842 10978488.8974 36.282 -35.3372 92.5215 run3.mat -1 -1 1062 3516100 3526430 +7012737 7033389 20653 10978504.4751 10979536.6529 37.9316 -35.3365 92.6558 run3.mat -1 -1 1062 3526584 3536911 +7033696 7035327 1632 10979552.0088 10979633.5902 39.5714 -35.3369 92.2787 run3.mat -1 -1 1062 3537064 3537880 +7119434 7137678 18245 10983836.3382 10984751.344 39.5824 -35.3381 92.9341 run3.mat -1 -1 1063 3579935 3589057 +7137991 7158669 20679 10984766.9973 10985799.2761 41.2296 -35.3366 92.5903 run3.mat -1 -1 1063 3589214 3599554 +7158975 7179668 20694 10985814.7026 10986849.9032 42.879 -35.3377 92.6843 run3.mat -1 -1 1063 3599707 3610053 +7179974 7200648 20675 10986865.3328 10987899.5987 44.5328 -35.3367 92.6098 run3.mat -1 -1 1063 3610206 3620544 +7200958 7215207 14250 10987915.2269 10988628.1302 46.1783 -35.3366 92.868 run3.mat -1 -1 1063 3620699 3627824 +7299450 7304892 5443 10992840.7122 10993111.2646 46.1817 -35.3399 93.7917 run3.mat -1 -1 1064 3669947 3672673 +7305203 7325890 20688 10993126.8179 10994162.3954 47.8299 -35.3371 92.4736 run3.mat -1 -1 1064 3672824 3683168 +7326197 7346889 20693 10994177.8724 10995211.6711 49.476 -35.337 92.5878 run3.mat -1 -1 1064 3683321 3693667 +7347196 7367887 20692 10995227.0275 10996260.0911 51.1325 -35.3365 92.5722 run3.mat -1 -1 1064 3693821 3704167 +7368195 7388829 20635 10996275.3719 10997307.3372 52.7754 -35.3376 92.6969 run3.mat -1 -1 1064 3704321 3714638 +7389151 7395206 6056 10997323.5736 10997627.4927 54.4288 -35.337 92.6273 run3.mat -1 -1 1064 3714799 3717827 +7479271 7492979 13709 11001831.6083 11002515.1948 54.4259 -35.3362 93.2799 run3.mat -1 -1 1065 3759862 3766716 +7493296 7501712 8417 11002531.0479 11002952.6966 56.0697 -35.3366 92.4574 run3.mat -1 -1 1065 3766874 3771083 +7501964 7513975 12012 11002965.199 11003565.2597 56.0751 -35.3365 92.6335 run3.mat -1 -1 1065 3771209 3777214 +7514282 7534970 20689 11003580.6161 11004614.7327 57.7244 -35.3361 92.585 run3.mat -1 -1 1065 3777367 3787712 +7535275 7555951 20677 11004629.8647 11005665.5582 59.3747 -35.3371 92.6129 run3.mat -1 -1 1065 3787865 3798203 +7556257 7575086 18830 11005680.7398 11006620.9343 61.0184 -35.3375 92.75 run3.mat -1 -1 1065 3798356 3807771 +7659135 7660062 928 11010822.4312 11010869.1739 60.9975 -35.3434 100.3274 run3.mat -1 -1 1066 3849797 3850261 +7660376 7681052 20677 11010885.0069 11011919.2651 62.6664 -35.3366 92.6103 run3.mat -1 -1 1066 3850418 3860756 +7681359 7702031 20673 11011934.4963 11012967.521 64.3197 -35.3365 92.6137 run3.mat -1 -1 1066 3860910 3871247 +7702338 7723031 20694 11012982.8769 11014019.7386 65.9715 -35.3366 92.6254 run3.mat -1 -1 1066 3871400 3881747 +7723338 7744013 20676 11014035.183 11015068.3546 67.6176 -35.3369 92.68 run3.mat -1 -1 1066 3881901 3892238 +7744320 7754946 10627 11015083.8346 11015613.6027 69.2709 -35.3376 92.9056 run3.mat -1 -1 1066 3892392 3897705 +7839223 7848337 9115 11019830.8543 11020286.3833 69.2714 -35.335 93.3965 run3.mat -1 -1 1067 3939845 3944402 +7848651 7869331 20681 11020302.2131 11021334.7038 70.9183 -35.3366 92.571 run3.mat -1 -1 1067 3944559 3954900 +7869636 7890317 20682 11021349.9567 11022383.714 72.5702 -35.3372 92.6494 run3.mat -1 -1 1067 3955053 3965394 +7890632 7911311 20680 11022399.3421 11023432.2706 74.2214 -35.3364 92.6207 run3.mat -1 -1 1067 3965551 3975891 +7911617 7932273 20657 11023447.5736 11024481.4576 75.8675 -35.3378 92.7972 run3.mat -1 -1 1067 3976044 3986373 +7932579 7935026 2448 11024496.6392 11024618.5821 77.5171 -35.3376 93.1105 run3.mat -1 -1 1067 3986526 3987749 +8019082 8036500 17419 11028821.4693 11029693.0962 77.5153 -35.3376 93.1395 run3.mat -1 -1 1068 4029779 4038488 +8036820 8057471 20652 11029709.2285 11030743.1764 79.1682 -35.3374 92.6322 run3.mat -1 -1 1068 4038648 4048974 +8057779 8078471 20693 11030758.5793 11031791.4675 80.818 -35.3367 92.6722 run3.mat -1 -1 1068 4049128 4059474 +8078782 8099462 20681 11031807.0235 11032840.3321 82.4642 -35.3368 92.7043 run3.mat -1 -1 1068 4059630 4069971 +8099776 8114865 15090 11032856.0381 11033612.6453 82.4647 -33.657 92.6964 run3.mat -1 -1 1068 4070128 4077673 +8199081 8203696 4616 11037821.0861 11038052.8774 82.4585 -33.6571 94.3056 run3.mat -1 -1 1069 4119782 4122090 +8204022 8224717 20696 11038069.3154 11039103.7857 80.8136 -33.6568 92.5367 run3.mat -1 -1 1069 4122253 4132601 +8225023 8245696 20674 11039119.0921 11040154.9475 79.1662 -33.657 92.6055 run3.mat -1 -1 1069 4132754 4143091 +8246004 8266697 20694 11040170.3323 11041203.2674 77.5123 -33.6566 92.6529 run3.mat -1 -1 1069 4143245 4153592 +8267002 8287656 20655 11041218.5233 11042250.1738 75.8638 -33.6565 92.6783 run3.mat -1 -1 1069 4153744 4164072 +8287965 8294865 6901 11042265.7516 11042612.0809 74.2122 -33.6569 92.8721 run3.mat -1 -1 1069 4164226 4167676 +8379167 8391976 12810 11046826.4592 11047465.9104 74.2182 -33.6572 93.0894 run3.mat -1 -1 1070 4209829 4216234 +8392280 8412978 20699 11047481.1162 11048516.3149 72.5705 -33.6572 92.6175 run3.mat -1 -1 1070 4216386 4226736 +8413285 8433977 20693 11048531.6678 11049567.5541 70.9169 -33.6571 92.536 run3.mat -1 -1 1070 4226889 4237235 +8434284 8454958 20675 11049583.0311 11050616.5268 69.2714 -33.6574 92.6265 run3.mat -1 -1 1070 4237389 4247726 +8455267 8474945 19679 11050631.8603 11051615.7592 67.6195 -33.657 92.7635 run3.mat -1 -1 1070 4247881 4257720 +8559235 8559397 163 11055830.125 11055838.2267 67.6282 -33.6547 110.1083 run3.mat -1 -1 1071 4299867 4299948 +8559717 8580339 20623 11055854.23 11056886.5838 65.9753 -33.6565 92.6786 run3.mat -1 -1 1071 4300108 4310420 +8580648 8601348 20701 11056902.0367 11057937.243 64.321 -33.6568 92.5103 run3.mat -1 -1 1071 4310574 4320925 +8601661 8622339 20679 11057952.8962 11058985.0835 62.6713 -33.6581 92.6133 run3.mat -1 -1 1071 4321081 4331420 +8622646 8643317 20672 11059000.5604 11060035.7578 61.0237 -33.6571 92.6133 run3.mat -1 -1 1071 4331574 4341910 +8643626 8655003 11378 11060051.0913 11060616.778 59.3755 -33.6579 92.8491 run3.mat -1 -1 1071 4342064 4347754 +8739095 8747397 8303 11064822.2077 11065236.7906 59.3703 -33.6574 93.5661 run3.mat -1 -1 1072 4389801 4393952 +8747728 8768401 20674 11065253.3957 11066287.6333 57.7248 -33.6571 92.5019 run3.mat -1 -1 1072 4394118 4404455 +8768711 8789400 20690 11066303.2646 11067338.2392 56.0694 -33.6572 92.6417 run3.mat -1 -1 1072 4404610 4414955 +8789708 8810381 20674 11067353.7665 11068386.4042 54.4237 -33.6573 92.4878 run3.mat -1 -1 1072 4415109 4425446 +8810689 8831364 20676 11068401.5738 11069437.7443 52.7736 -33.6569 92.6873 run3.mat -1 -1 1072 4425600 4435937 +8831672 8834864 3193 11069453.2747 11069612.2858 51.1269 -33.6585 92.9274 run3.mat -1 -1 1072 4436091 4437688 +8919149 8935697 16549 11073825.5601 11074654.282 51.1274 -33.6576 92.9609 run3.mat -1 -1 1073 4479832 4488107 +8936021 8956698 20678 11074670.3566 11075702.1644 49.4722 -33.6578 92.6385 run3.mat -1 -1 1073 4488269 4498608 +8957005 8977688 20684 11075717.3986 11076752.1613 47.8244 -33.6572 92.5317 run3.mat -1 -1 1073 4498761 4509103 +8978005 8998682 20678 11076768.0806 11077804.2203 46.1776 -33.657 92.6446 run3.mat -1 -1 1073 4509261 4519601 +8998988 9014944 15957 11077819.4019 11078616.953 44.5305 -33.657 92.8408 run3.mat -1 -1 1073 4519754 4527732 +9099165 9102879 3715 11082828.7706 11083013.0333 44.5338 -33.6578 94.3418 run3.mat -1 -1 1074 4569844 4571701 +9103203 9123900 20698 11083029.108 11084065.8434 42.8799 -33.6566 92.5856 run3.mat -1 -1 1074 4571863 4582212 +9124206 9144880 20675 11084081.025 11085113.1079 41.2311 -33.6573 92.6129 run3.mat -1 -1 1074 4582365 4592703 +9145190 9165859 20670 11085128.6112 11086160.3867 39.5826 -33.6569 92.6538 run3.mat -1 -1 1074 4592858 4603193 +9166166 9186841 20676 11086175.7426 11087210.7814 37.9342 -33.6571 92.6193 run3.mat -1 -1 1074 4603346 4613684 +9187148 9194943 7796 11087226.2583 11087615.1976 36.2896 -33.6571 92.914 run3.mat -1 -1 1074 4613838 4617735 +9279241 9291299 12059 11091830.1516 11092434.2791 36.2879 -33.6575 93.3889 run3.mat -1 -1 1075 4659886 4665915 +9291622 9312322 20701 11092450.3073 11093486.4251 34.6354 -33.6573 92.5694 run3.mat -1 -1 1075 4666077 4676427 +9312628 9333304 20677 11093501.7283 11094534.7607 32.9844 -33.6572 92.489 run3.mat -1 -1 1075 4676580 4686918 +9333615 9354281 20667 11094550.3167 11095583.9296 31.336 -33.6567 92.6061 run3.mat -1 -1 1075 4687074 4697408 +9354596 9375043 20448 11095599.6856 11096622.1785 29.6856 -33.6569 92.6584 run3.mat -1 -1 1075 4697565 4707789 +9459312 9479575 20264 11100834.3835 11101847.6824 28.0331 -33.6572 93.0347 run3.mat -1 -1 1076 4749925 4760057 +9479882 9500560 20679 11101862.9166 11102896.7101 26.3844 -33.657 92.6595 run3.mat -1 -1 1076 4760211 4770550 +9500867 9521541 20675 11102912.1662 11103944.5638 24.7353 -33.6568 92.6196 run3.mat -1 -1 1076 4770704 4781041 +9521848 9542540 20693 11103960.0407 11104995.5888 23.09 -33.6574 92.6454 run3.mat -1 -1 1076 4781195 4791541 +9542850 9555083 12234 11105010.9688 11105624.2711 21.4318 -33.6576 92.8084 run3.mat -1 -1 1076 4791696 4797813 +9641173 9648679 7507 11109928.3921 11110302.6204 21.4356 -33.6576 93.658 run3.mat -1 -1 1077 4840860 4844613 +9648986 9669681 20696 11110318.1004 11111352.8547 19.7856 -33.6571 92.5965 run3.mat -1 -1 1077 4844766 4855114 +9669990 9690680 20691 11111368.1882 11112403.3 18.1352 -33.6576 92.6424 run3.mat -1 -1 1077 4855269 4865613 +9690988 9711660 20673 11112418.7 11113452.6048 16.4903 -33.6572 92.5756 run3.mat -1 -1 1077 4865767 4876105 +9711965 9732642 20678 11113467.8607 11114502.0119 14.8416 -33.657 92.7308 run3.mat -1 -1 1077 4876257 4886596 +9732946 9737002 4057 11114517.2148 11114720.0539 13.1874 -33.656 92.7641 run3.mat -1 -1 1077 4886748 4888776 +9821089 9836800 15712 11118922.9032 11119708.1973 13.1922 -33.6572 93.0815 run3.mat -1 -1 1078 4930822 4938678 +9837108 9857802 20695 11119723.622 11120760.3271 11.5409 -33.657 92.6489 run3.mat -1 -1 1078 4938832 4949179 +9858108 9878800 20693 11120775.5117 11121809.3101 9.8945 -33.6574 92.5858 run3.mat -1 -1 1078 4949332 4959679 +9879107 9899802 20696 11121824.7871 11122859.2356 8.2462 -33.6577 92.6501 run3.mat -1 -1 1078 4959832 4970180 +9900108 9916862 16755 11122874.4171 11123711.3344 6.5951 -33.6572 92.8359 run3.mat -1 -1 1078 4970333 4978711 +10001107 10004119 3013 11127924.6832 11128075.3264 6.5955 -33.6591 95.32 run3.mat -1 -1 1079 5020835 5022341 +10004439 10025120 20682 11128091.3331 11129125.894 4.9445 -33.6575 92.5485 run3.mat -1 -1 1079 5022501 5032842 +10025428 10046121 20694 11129141.1778 11130176.9777 3.2992 -33.6573 92.6021 run3.mat -1 -1 1079 5032996 5043343 +10046430 10067122 20693 11130192.4307 11131225.288 1.6502 -33.6574 92.6738 run3.mat -1 -1 1079 5043497 5053844 +10067429 10088099 20671 11131240.6412 11132272.605 0.0008432 -33.657 92.6905 run3.mat -1 -1 1079 5053997 5064333 +10088406 10096862 8457 11132287.8392 11132714.7199 -1.6466 -33.6577 92.808 run3.mat -1 -1 1079 5064486 5068715 +10181140 10192519 11380 11136925.9423 11137497.5599 -1.6465 -33.6576 93.4989 run3.mat -1 -1 1080 5110855 5116545 +10192844 10213502 20659 11137513.9476 11138543.346 -3.2966 -33.6573 92.5101 run3.mat -1 -1 1080 5116707 5127037 +10213810 10234510 20701 11138558.749 11139594.355 -4.9468 -33.6575 92.5466 run3.mat -1 -1 1080 5127191 5137541 +10234822 10255501 20680 11139610.0871 11140645.3435 -6.5971 -33.657 92.6213 run3.mat -1 -1 1080 5137697 5148037 +10255806 10276459 20654 11140660.4755 11141693.1347 -8.2454 -33.6575 92.7079 run3.mat -1 -1 1080 5148190 5158517 +10276768 10276921 154 11141708.7156 11141716.4304 -9.9414 -33.6583 94.9629 run3.mat -1 -1 1080 5158671 5158748 +10361003 10380561 19559 11145920.7035 11146898.1303 -9.8973 -33.6569 92.9058 run3.mat -1 -1 1081 5200791 5210570 +10380881 10401562 20682 11146914.2658 11147947.9735 -11.5464 -33.6573 92.665 run3.mat -1 -1 1081 5210730 5221071 +10401868 10422543 20676 11147963.2767 11148995.9766 -13.1956 -33.6568 92.669 run3.mat -1 -1 1081 5221224 5231562 +10422850 10443527 20678 11149011.2108 11150047.9686 -14.8457 -33.6569 92.6555 run3.mat -1 -1 1081 5231716 5242055 +10443839 10456782 12944 11150063.4479 11150710.6721 -16.4934 -33.6572 92.6884 run3.mat -1 -1 1081 5242211 5248682 +10541033 10547780 6748 11154920.4268 11155259.1881 -16.4907 -33.6589 93.6618 run3.mat -1 -1 1082 5290809 5294183 +10548088 10568801 20714 11155274.7155 11156311.2289 -18.143 -33.6572 92.4744 run3.mat -1 -1 1082 5294337 5304694 +10569109 10589783 20675 11156326.6349 11157361.5554 -19.7895 -33.6582 92.7108 run3.mat -1 -1 1082 5304848 5315186 +10590100 10610784 20685 11157377.3691 11158409.9102 -21.4372 -33.6573 92.6264 run3.mat -1 -1 1082 5315344 5325687 +10611090 10631762 20673 11158425.2131 11159457.8449 -23.0902 -33.6571 92.6587 run3.mat -1 -1 1082 5325840 5336176 +10632069 10636820 4752 11159473.3218 11159711.3331 -24.7402 -33.6575 92.8745 run3.mat -1 -1 1082 5336330 5338705 +10722948 10738000 15053 11164017.4344 11164770.6825 -24.7348 -33.6567 93.1666 run3.mat -1 -1 1083 5381771 5389323 +10738321 10759003 20683 11164786.8685 11165822.3329 -26.3852 -33.6573 92.573 run3.mat -1 -1 1083 5389458 5399800 +10759309 10779984 20676 11165837.8211 11166868.206 -28.0323 -33.6573 92.5439 run3.mat -1 -1 1083 5399953 5410290 +10780292 10800983 20692 11166883.603 11167921.9972 -29.6861 -33.6566 92.6696 run3.mat -1 -1 1083 5410445 5420790 +10801291 10818721 17431 11167937.2811 11168807.175 -31.3371 -33.6575 92.7917 run3.mat -1 -1 1083 5420944 5429660 +10902843 10905234 2392 11173012.687 11173131.4943 -31.3436 -33.6583 96.2362 run3.mat -1 -1 1084 5471723 5472918 +10905544 10926223 20680 11173147.1224 11174182.0197 -32.9858 -33.6577 92.5121 run3.mat -1 -1 1084 5473073 5483413 +10926530 10947224 20695 11174197.1429 11175231.4732 -34.6337 -33.6566 92.5821 run3.mat -1 -1 1084 5483566 5493914 +10947530 10968221 20692 11175246.7764 11176280.3315 -36.2876 -33.6572 92.6281 run3.mat -1 -1 1084 5494067 5504413 +10968529 10989203 20675 11176295.6153 11177331.9439 -37.938 -33.6575 92.6748 run3.mat -1 -1 1084 5504567 5514904 +10989512 10998741 9230 11177347.3972 11177810.0506 -39.5807 -33.6577 92.9619 run3.mat -1 -1 1084 5515059 5519674 +11083052 11093621 10570 11182023.5818 11182552.1377 -39.5866 -33.6584 93.4115 run3.mat -1 -1 1085 5561831 5567116 +11093926 11114618 20693 11182567.3909 11183602.3464 -41.2333 -33.6573 92.5772 run3.mat -1 -1 1085 5567268 5577615 +11114929 11135625 20697 11183617.874 11184654.0081 -42.8798 -33.6575 92.6495 run3.mat -1 -1 1085 5577770 5588119 +11135931 11156602 20672 11184669.311 11185702.3632 -44.5352 -33.6571 92.6006 run3.mat -1 -1 1085 5588272 5598608 +11156911 11177565 20655 11185717.6967 11186749.499 -46.1802 -33.6578 92.7827 run3.mat -1 -1 1085 5598762 5609089 +11177870 11178801 932 11186764.7549 11186811.3228 -47.8388 -33.6566 92.9424 run3.mat -1 -1 1085 5609242 5609708 +11262776 11266063 3288 11191011.092 11191176.2903 -47.828 -33.6581 96.2222 run3.mat -1 -1 1086 5651697 5653341 +11267281 11267683 403 11191236.719 11191256.6634 127.9375 127.9375 0.23634 run3.mat -1 -1 1086 5653950 5654151 +11268361 11268963 603 11191290.3011 11191320.1681 127.9375 127.9375 0.18702 run3.mat -1 -1 1086 5654490 5654791 +11269361 11269363 3 11191339.9141 11191340.0133 127.9375 127.9375 0 run3.mat -1 -1 1086 5654990 5654991 +11269701 11270163 463 11191356.7825 11191379.7037 127.9375 127.9375 0.2987 run3.mat -1 -1 1086 5655160 5655391 +265070 285477 20408 5980028.5033 5981050.7415 82.4614 40.3856 92.8854 run30.mat -1 -1 1088 154866 165070 +285783 306476 20694 5981065.7938 5982100.2649 80.8142 40.386 92.5938 run30.mat -1 -1 1088 165223 175570 +306784 327478 20695 5982115.6678 5983149.5628 79.1653 40.3858 92.5765 run30.mat -1 -1 1088 175724 186071 +327784 348496 20713 5983164.7444 5984199.7641 77.5121 40.3853 92.5258 run30.mat -1 -1 1088 186224 196580 +348802 360846 12045 5984215.07 5984817.6472 75.8672 40.3854 92.4459 run30.mat -1 -1 1088 196733 202756 +446957 454774 7818 5989123.754 5989514.2818 75.866 40.3854 93.8629 run30.mat -1 -1 1089 245813 249686 +455081 475794 20714 5989529.513 5990565.4761 74.219 40.3852 92.5098 run30.mat -1 -1 1089 249875 260232 +476104 496776 20673 5990581.1043 5991612.6302 72.5685 40.3853 92.5832 run30.mat -1 -1 1089 260387 270724 +497084 517776 20693 5991628.0362 5992663.9385 70.9179 40.3863 92.5474 run30.mat -1 -1 1089 270878 281224 +518084 538762 20679 5992679.2223 5993712.4343 69.2725 40.3859 92.5846 run30.mat -1 -1 1089 281378 291718 +539070 542766 3697 5993727.8373 5993912.6728 67.6127 40.3861 92.7363 run30.mat -1 -1 1089 291872 293720 +627042 643058 16017 5998126.8516 5998928.7686 67.6242 40.3857 92.9211 run30.mat -1 -1 1090 335859 343868 +643386 664077 20692 5998945.0417 5999979.9062 65.9727 40.3859 92.5686 run30.mat -1 -1 1090 344032 354378 +664384 685066 20683 5999995.3831 6001030.5252 64.3247 40.3856 92.5316 run30.mat -1 -1 1090 354532 364873 +685386 706075 20690 6001046.5314 6002079.4989 62.6727 40.3854 92.6597 run30.mat -1 -1 1090 365033 375378 +706384 722826 16443 6002094.8293 6002916.4961 61.0252 40.3858 92.7035 run30.mat -1 -1 1090 375533 383754 +806902 810156 3255 6007122.8509 6007283.048 61.029 40.3857 93.9143 run30.mat -1 -1 1091 425794 427420 +810490 831179 20690 6007299.4809 6008334.7618 59.3718 40.3859 92.5721 run30.mat -1 -1 1091 427587 437933 +831486 852161 20676 6008350.2388 6009383.4063 57.7255 40.3849 92.5794 run30.mat -1 -1 1091 438086 448424 +852468 873178 20711 6009398.7622 6010434.8927 56.0695 40.3855 92.5299 run30.mat -1 -1 1091 448578 458933 +873486 894158 20673 6010450.42 6011484.4995 54.422 40.3856 92.6136 run30.mat -1 -1 1091 459087 469423 +894466 902667 8202 6011500.0268 6011910.9917 52.7731 40.3856 92.6074 run30.mat -1 -1 1091 469577 473678 +986978 998499 11522 6016126.8768 6016703.2147 52.7733 40.3854 92.9872 run30.mat -1 -1 1092 515836 521596 +998806 1019499 20694 6016718.5711 6017750.1738 51.1268 40.386 92.5391 run30.mat -1 -1 1092 521750 532097 +1019806 1040503 20698 6017765.6507 6018802.0239 49.4748 40.3853 92.5311 run30.mat -1 -1 1092 532250 542599 +1040809 1061501 20693 6018817.3268 6019852.4906 47.824 40.3859 92.581 run30.mat -1 -1 1092 542752 553099 +1061810 1082462 20653 6019868.0684 6020899.4438 46.1793 40.3855 92.6245 run30.mat -1 -1 1092 553253 563580 +1167036 1186800 19765 6025127.8549 6026116.0282 44.5308 40.3856 92.8479 run30.mat -1 -1 1093 605868 615750 +1187107 1207806 20700 6026131.502 6027167.2899 42.8775 40.3855 92.4481 run30.mat -1 -1 1093 615904 626254 +1208125 1228819 20695 6027183.2429 6028218.2497 41.2289 40.3859 92.5749 run30.mat -1 -1 1093 626414 636762 +1229129 1249804 20676 6028233.6436 6029266.1718 39.5821 40.3857 92.5521 run30.mat -1 -1 1093 636917 647254 +1250107 1262805 12699 6029281.4502 6029915.9396 37.936 40.3861 92.6681 run30.mat -1 -1 1093 647406 653755 +1346886 1353899 7014 6034120.0396 6034472.4837 37.9319 40.3862 93.7898 run30.mat -1 -1 1094 695797 699304 +1354207 1374923 20717 6034488.1513 6035522.4257 36.2846 40.3859 92.5815 run30.mat -1 -1 1094 699458 709816 +1375229 1395919 20691 6035537.8522 6036573.1182 34.6338 40.386 92.6168 run30.mat -1 -1 1094 709969 720315 +1396232 1416921 20690 6036588.5369 6037622.8227 32.9844 40.3859 92.5145 run30.mat -1 -1 1094 720471 730817 +1417229 1437898 20670 6037638.3501 6038672.1956 31.3363 40.3853 92.6422 run30.mat -1 -1 1094 730971 741306 +1438207 1442665 4459 6038687.7765 6038911.3311 29.6766 40.3844 92.7464 run30.mat -1 -1 1094 741460 743689 +1526807 1542045 15239 6043117.4856 6043879.34 29.6894 40.3858 92.9307 run30.mat -1 -1 1095 785762 793381 +1542362 1563060 20699 6043895.321 6044929.6111 28.0332 40.386 92.5815 run30.mat -1 -1 1095 793540 803889 +1563367 1584043 20677 6044944.9675 6045979.582 26.3873 40.386 92.6815 run30.mat -1 -1 1095 804042 814381 +1584348 1605043 20696 6045994.717 6047027.3451 24.7334 40.3857 92.5607 run30.mat -1 -1 1095 814534 824882 +1605354 1622586 17233 6047042.8981 6047906.7399 23.0869 40.3853 92.8186 run30.mat -1 -1 1095 825037 833653 +1706807 1709308 2502 6052117.5193 6052241.626 23.0953 40.3862 95.3283 run30.mat -1 -1 1096 875766 877016 +1709620 1730327 20708 6052257.1084 6053292.4461 21.4322 40.3858 92.5099 run30.mat -1 -1 1096 877172 887526 +1730634 1751322 20689 6053307.6773 6054342.1993 19.7842 40.3854 92.5852 run30.mat -1 -1 1096 887680 898024 +1751628 1772323 20696 6054357.5619 6055393.1246 18.1359 40.3851 92.568 run30.mat -1 -1 1096 898177 908525 +1772629 1793302 20674 6055408.3062 6056441.5739 16.4894 40.3857 92.5476 run30.mat -1 -1 1096 908678 919015 +1793608 1802625 9018 6056457.0004 6056906.9638 14.8439 40.3859 92.8351 run30.mat -1 -1 1096 919168 923677 +1886703 1897442 10740 6061112.9533 6061648.3977 14.8461 40.3849 93.2918 run30.mat -1 -1 1097 965718 971087 +1897747 1918445 20699 6061663.7737 6062698.4651 13.1918 40.386 92.5092 run30.mat -1 -1 1097 971240 981589 +1918751 1939442 20692 6062713.7683 6063750.5259 11.5431 40.3855 92.6268 run30.mat -1 -1 1097 981742 992088 +1939752 1960443 20692 6063766.0289 6064799.4061 9.8939 40.3859 92.5055 run30.mat -1 -1 1097 992243 1002589 +1960751 1981417 20667 6064814.69 6065846.127 8.2471 40.3856 92.732 run30.mat -1 -1 1097 1002743 1013076 +1981725 1982485 761 6065861.4109 6065899.4974 6.5835 40.3868 92.4483 run30.mat -1 -1 1097 1013230 1013611 +2066772 2085745 18974 6070114.0073 6071063.8865 6.5941 40.386 92.8264 run30.mat -1 -1 1098 1055756 1065243 +2086054 2106785 20732 6071079.4642 6072115.1484 4.9454 40.3856 92.5942 run30.mat -1 -1 1098 1065398 1075764 +2107092 2127763 20672 6072130.3796 6073164.2597 3.2968 40.3862 92.6018 run30.mat -1 -1 1098 1075917 1086253 +2128067 2148766 20700 6073179.6467 6074216.952 1.6468 40.3857 92.5403 run30.mat -1 -1 1098 1086405 1096755 +2149073 2162564 13492 6074232.1862 6074907.4761 -0.00026454 40.3852 92.7302 run30.mat -1 -1 1098 1096908 1103655 +2246836 2253081 6246 6079120.8552 6079431.5524 -0.0035 40.386 93.9002 run30.mat -1 -1 1099 1145792 1148915 +2253413 2274105 20693 6079448.1556 6080481.4405 -1.6534 40.3858 92.4687 run30.mat -1 -1 1099 1149081 1159427 +2274411 2295103 20693 6080496.8701 6081533.2696 -3.3004 40.3854 92.5436 run30.mat -1 -1 1099 1159580 1169927 +2295410 2316085 20676 6081548.6228 6082582.948 -4.9468 40.3854 92.4898 run30.mat -1 -1 1099 1170081 1180418 +2316390 2337085 20696 6082598.4393 6083631.5045 -6.5991 40.3852 92.6125 run30.mat -1 -1 1099 1180571 1190919 +2337391 2342664 5274 6083646.686 6083911.5106 -8.2478 40.3853 92.6097 run30.mat -1 -1 1099 1191072 1193708 +2426741 2441183 14443 6088114.6716 6088837.0589 -8.2478 40.386 93.1728 run30.mat -1 -1 1100 1235749 1242970 +2441489 2462186 20698 6088852.2405 6089887.8262 -9.8999 40.3855 92.5201 run30.mat -1 -1 1100 1243123 1253472 +2462494 2483180 20687 6089903.3535 6090937.4756 -11.5448 40.3862 92.6221 run30.mat -1 -1 1100 1253626 1263969 +2483492 2504186 20695 6090953.0816 6091986.0883 -13.1924 40.3857 92.5461 run30.mat -1 -1 1100 1264125 1274473 +2504493 2522524 18032 6092001.4881 6092904.4389 -14.8461 40.3852 92.7733 run30.mat -1 -1 1100 1274626 1283642 +2606759 2608482 1724 6097115.0575 6097200.5238 -14.8473 40.385 95.6022 run30.mat -1 -1 1101 1325762 1326623 +2608814 2629485 20672 6097216.9921 6098251.648 -16.4932 40.3856 92.6395 run30.mat -1 -1 1101 1326789 1337125 +2629792 2650464 20673 6098267.0424 6099301.2216 -18.1396 40.3858 92.5341 run30.mat -1 -1 1101 1337278 1347615 +2650773 2671478 20706 6099316.7994 6100353.2165 -19.7876 40.3856 92.5161 run30.mat -1 -1 1101 1347770 1358123 +2671791 2692465 20675 6100368.7454 6101400.5255 -21.4376 40.3857 92.667 run30.mat -1 -1 1101 1358279 1368617 +2692771 2702563 9793 6101415.7071 6101906.4759 -23.0862 40.3863 92.8194 run30.mat -1 -1 1101 1368770 1373666 +2786850 2796782 9933 6106119.5275 6106616.2002 -23.0925 40.385 93.2726 run30.mat -1 -1 1102 1415811 1420777 +2797109 2817805 20697 6106632.6854 6107668.0756 -24.7336 40.3856 92.4687 run30.mat -1 -1 1102 1420941 1431289 +2818111 2838805 20695 6107683.5021 6108717.2863 -26.3865 40.3858 92.6362 run30.mat -1 -1 1102 1431442 1441790 +2839113 2859806 20694 6108732.6895 6109770.4569 -28.0326 40.3855 92.5911 run30.mat -1 -1 1102 1441944 1452291 +2860114 2880769 20656 6109785.9843 6110815.224 -29.6884 40.3857 92.6464 run30.mat -1 -1 1102 1452445 1462773 +2881085 2882663 1579 6110831.1547 6110910.707 -31.3502 40.3837 92.6126 run30.mat -1 -1 1102 1462931 1463720 +2966857 2985023 18167 6115120.6597 6116029.6995 -31.34 40.3853 93.0104 run30.mat -1 -1 1103 1505819 1514902 +2985331 3006029 20699 6116045.289 6117078.7987 -32.9875 40.386 92.4875 run30.mat -1 -1 1103 1515056 1525405 +3006338 3027028 20691 6117094.3284 6118129.0169 -34.6338 40.3854 92.5141 run30.mat -1 -1 1103 1525560 1535905 +3027335 3048028 20694 6118144.3728 6119178.5391 -36.2887 40.3859 92.6104 run30.mat -1 -1 1103 1536059 1546406 +3048334 3062642 14309 6119193.7237 6119909.322 -37.9392 40.386 92.6132 run30.mat -1 -1 1103 1546559 1553713 +3146942 3152330 5389 6124125.2813 6124393.1224 -37.9366 40.3857 93.9802 run30.mat -1 -1 1104 1595865 1598559 +3152639 3173331 20693 6124408.7001 6125445.7721 -39.5825 40.3859 92.481 run30.mat -1 -1 1104 1598714 1609060 +3173641 3194348 20708 6125461.4003 6126495.3608 -41.2301 40.3861 92.6298 run30.mat -1 -1 1104 1609215 1619569 +3194654 3215329 20676 6126510.7873 6127544.337 -42.8772 40.3858 92.4867 run30.mat -1 -1 1104 1619722 1630060 +3215636 3236330 20695 6127559.5682 6128594.9938 -44.5325 40.3869 92.6313 run30.mat -1 -1 1104 1630213 1640561 +3236636 3242722 6087 6128610.2968 6128914.4856 -46.1781 40.3849 92.6284 run30.mat -1 -1 1104 1640714 1643757 +3326811 3340467 13657 6133118.4907 6133800.9788 -46.1803 40.3858 93.1047 run30.mat -1 -1 1105 1685804 1692632 +3340787 3361464 20678 6133816.8549 6134850.4428 -47.8272 40.3861 92.5207 run30.mat -1 -1 1105 1692792 1703131 +3361775 3382469 20695 6134865.9958 6135900.9985 -49.476 40.3859 92.6177 run30.mat -1 -1 1105 1703286 1713634 +3382774 3403449 20676 6135916.2516 6136952.1425 -51.1263 40.3862 92.6028 run30.mat -1 -1 1105 1713786 1724124 +3403757 3422602 18846 6136967.4264 6137910.2393 -52.7781 40.3859 92.7141 run30.mat -1 -1 1105 1724278 1733701 +3506844 3507712 869 6142119.5419 6142162.3005 -52.7736 40.3857 97.7019 run30.mat -1 -1 1106 1775824 1776258 +3508053 3528712 20660 6142179.0985 6143214.1563 -54.4248 40.3863 92.5818 run30.mat -1 -1 1106 1776429 1786758 +3529020 3549714 20695 6143229.5627 6144263.9931 -56.077 40.3855 92.5729 run30.mat -1 -1 1106 1786912 1797260 +3550022 3570708 20687 6144279.2739 6145314.6061 -57.7265 40.386 92.5804 run30.mat -1 -1 1106 1797414 1807757 +3571016 3591705 20690 6145329.8869 6146364.9104 -59.3765 40.3858 92.6478 run30.mat -1 -1 1106 1807911 1818256 +3592013 3602622 10610 6146380.4311 6146911.1998 -61.0227 40.3857 92.8395 run30.mat -1 -1 1106 1818410 1823715 +3686892 3696108 9217 6151123.2093 6151584.9734 -61.0258 40.3856 93.2195 run30.mat -1 -1 1107 1865852 1870460 +3696415 3717108 20694 6151600.4534 6152633.8755 -62.6748 40.386 92.5253 run30.mat -1 -1 1107 1870613 1880960 +3717415 3738117 20703 6152648.9958 6153683.8168 -64.3251 40.3856 92.6377 run30.mat -1 -1 1107 1881114 1891465 +3738432 3759130 20699 6153699.3311 6154736.0029 -65.9776 40.3856 92.6216 run30.mat -1 -1 1107 1891623 1901972 +3759436 3780088 20653 6154751.3058 6155782.5833 -67.624 40.3856 92.6266 run30.mat -1 -1 1107 1902125 1912452 +3780399 3782682 2284 6155798.265 6155913.382 -69.2757 40.3869 92.1544 run30.mat -1 -1 1107 1912607 1913749 +3866978 3884469 17492 6160127.5368 6161001.6652 -69.2717 40.3851 92.9096 run30.mat -1 -1 1108 1955899 1964648 +3884775 3905489 20715 6161017.0948 6162053.3349 -70.9165 40.3855 92.5252 run30.mat -1 -1 1108 1964797 1975155 +3905796 3926470 20675 6162068.8119 6163102.075 -72.5729 40.3849 92.6033 run30.mat -1 -1 1108 1975308 1985646 +3926778 3947468 20691 6163117.4782 6164151.6081 -74.2181 40.3856 92.6285 run30.mat -1 -1 1108 1985800 1996146 +3947776 3962802 15027 6164166.95 6164918.1886 -75.866 40.3859 92.6588 run30.mat -1 -1 1108 1996300 2003813 +4047086 4051867 4782 6169132.6269 6169372.5268 -75.8742 40.3861 94.9255 run30.mat -1 -1 1109 2045957 2048347 +4052193 4072871 20679 6169388.83 6170423.0327 -77.5122 40.3863 92.531 run30.mat -1 -1 1109 2048510 2058850 +4073178 4093868 20691 6170438.3857 6171472.8205 -79.1665 40.3854 92.643 run30.mat -1 -1 1109 2059003 2069349 +4094177 4114886 20710 6171488.3983 6172525.2125 -80.8173 40.3853 92.6067 run30.mat -1 -1 1109 2069503 2079858 +4115197 4135854 20658 6172540.6422 6173571.5789 -82.461 40.3854 92.6755 run30.mat -1 -1 1109 2080014 2090343 +4136169 4142841 6673 6173587.207 6173920.5813 -82.4698 42.07 92.8466 run30.mat -1 -1 1109 2090500 2093837 +4226959 4240013 13055 6178126.0811 6178778.3519 -82.4657 42.0685 93.2492 run30.mat -1 -1 1110 2135897 2142424 +4240327 4261010 20684 6178794.0017 6179830.126 -80.8167 42.0688 92.55 run30.mat -1 -1 1110 2142581 2152923 +4261317 4282011 20695 6179845.3572 6180880.0367 -79.1685 42.0692 92.6056 run30.mat -1 -1 1110 2153077 2163425 +4282316 4303010 20695 6180895.1687 6181930.9066 -77.5132 42.0691 92.5934 run30.mat -1 -1 1110 2163577 2173924 +4303317 4322742 19426 6181946.263 6182916.8 -75.8686 42.0696 92.626 run30.mat -1 -1 1110 2174077 2183791 +4406989 4407353 365 6187128.9623 6187147.3128 -75.8705 42.0678 99.8223 run30.mat -1 -1 1111 2225916 2226098 +4407665 4428330 20666 6187163.0417 6188196.2778 -74.2226 42.0686 92.6439 run30.mat -1 -1 1111 2226254 2236587 +4428637 4449330 20694 6188211.509 6189244.077 -72.5721 42.0696 92.6507 run30.mat -1 -1 1111 2236740 2247087 +4449637 4470329 20693 6189259.3082 6190297 -70.9227 42.0689 92.5151 run30.mat -1 -1 1111 2247241 2257587 +4470636 4491312 20677 6190312.3532 6191346.0274 -69.2739 42.069 92.6347 run30.mat -1 -1 1111 2257741 2268079 +4491621 4502781 11161 6191361.3609 6191919.0226 -67.6285 42.0686 92.8283 run30.mat -1 -1 1111 2268234 2273814 +4586819 4595427 8609 6196121.9154 6196552.3677 -67.624 42.0698 93.2876 run30.mat -1 -1 1112 2315835 2320139 +4595741 4616428 20688 6196567.9524 6197600.3263 -65.9744 42.0695 92.5359 run30.mat -1 -1 1112 2320296 2330640 +4616739 4637429 20691 6197615.759 6198649.9863 -64.3204 42.0694 92.5767 run30.mat -1 -1 1112 2330796 2341141 +4637736 4658430 20695 6198665.4632 6199699.4816 -62.6728 42.0693 92.5784 run30.mat -1 -1 1112 2341295 2351642 +4658737 4679409 20673 6199714.8348 6200748.6886 -61.0229 42.0694 92.6659 run30.mat -1 -1 1112 2351796 2362132 +4679716 4682640 2925 6200764.0415 6200911.5286 -59.3725 42.0705 92.5771 run30.mat -1 -1 1112 2362286 2363748 +4766926 4783848 16923 6205125.1283 6205972.3071 -59.3767 42.07 92.8809 run30.mat -1 -1 1113 2405892 2414354 +4784161 4804839 20679 6205988.0865 6207021.3879 -57.7253 42.069 92.5573 run30.mat -1 -1 1113 2414510 2424850 +4805154 4825828 20675 6207037.0191 6208069.6031 -56.0736 42.0693 92.5822 run30.mat -1 -1 1113 2425007 2435344 +4826138 4846839 20702 6208085.2248 6209122.1711 -54.4239 42.0688 92.5761 run30.mat -1 -1 1113 2435500 2445851 +4847152 4862701 15550 6209137.6999 6209915.2133 -52.7751 42.0693 92.7769 run30.mat -1 -1 1113 2446007 2453782 +4946989 4951144 4156 6214128.5257 6214337.9933 -52.7753 42.0693 94.1426 run30.mat -1 -1 1114 2495928 2498005 +4951460 4972150 20691 6214353.9006 6215386.8673 -51.1278 42.0691 92.4927 run30.mat -1 -1 1114 2498164 2508509 +4972458 4993132 20675 6215402.3977 6216437.3267 -49.4784 42.07 92.5475 run30.mat -1 -1 1114 2508663 2519000 +4993439 5014151 20713 6216452.5578 6217488.1285 -47.8282 42.0693 92.5604 run30.mat -1 -1 1114 2519154 2529510 +5014459 5035112 20654 6217503.6558 6218535.5797 -46.1779 42.0697 92.6526 run30.mat -1 -1 1114 2529664 2539992 +5035421 5042760 7340 6218551.0327 6218916.2571 -44.5333 42.0696 92.8874 run30.mat -1 -1 1114 2540146 2543815 +5126977 5139460 12484 6223128.9736 6223752.3116 -44.5315 42.0705 93.3376 run30.mat -1 -1 1115 2585926 2592168 +5139779 5160449 20671 6223768.1381 6224801.6606 -42.8826 42.069 92.5355 run30.mat -1 -1 1115 2592327 2602663 +5160757 5181451 20695 6224816.9444 6225851.3403 -41.2328 42.0689 92.5961 run30.mat -1 -1 1115 2602817 2613164 +5181755 5202451 20697 6225866.5432 6226902.6513 -39.5862 42.0689 92.629 run30.mat -1 -1 1115 2613316 2623665 +5202758 5222859 20102 6226918.124 6227925.2544 -37.9376 42.0688 92.6136 run30.mat -1 -1 1115 2623818 2633869 +5306962 5327539 20578 6232130.2734 6233155.6445 -36.2902 42.0688 92.8552 run30.mat -1 -1 1116 2675922 2686211 +5327853 5348530 20678 6233171.3476 6234205.6734 -34.6356 42.0694 92.5747 run30.mat -1 -1 1116 2686368 2696707 +5348837 5369513 20677 6234221.1472 6235255.4502 -32.985 42.0697 92.5814 run30.mat -1 -1 1116 2696861 2707199 +5369820 5390511 20692 6235270.9302 6236305.9706 -31.3389 42.0694 92.5333 run30.mat -1 -1 1116 2707352 2717699 +5390818 5402700 11883 6236321.2018 6236916.5066 -29.6877 42.0697 92.6841 run30.mat -1 -1 1116 2717852 2723793 +5486947 5494785 7839 6241128.6378 6241519.0175 -29.6878 42.0704 93.6602 run30.mat -1 -1 1117 2765919 2769838 +5495098 5515791 20694 6241534.6708 6242570.7128 -28.0346 42.0691 92.5118 run30.mat -1 -1 1117 2769994 2780341 +5516098 5536792 20695 6242586.1898 6243617.9371 -26.3872 42.0691 92.6528 run30.mat -1 -1 1117 2780495 2790842 +5537102 5557791 20690 6243633.4401 6244668.2804 -24.7388 42.0696 92.5745 run30.mat -1 -1 1117 2790997 2801342 +5558097 5578773 20677 6244683.462 6245718.8257 -23.0875 42.0694 92.668 run30.mat -1 -1 1117 2801495 2811834 +5579078 5582741 3664 6245734.2049 6245918.9064 -21.4427 42.0697 93.0121 run30.mat -1 -1 1117 2811986 2813818 +5666869 5682949 16081 6250122.4889 6250927.7351 -21.4361 42.0698 92.9613 run30.mat -1 -1 1118 2855884 2863924 +5683263 5703972 20710 6250943.4529 6251980.6706 -19.7884 42.0691 92.4952 run30.mat -1 -1 1118 2864081 2874436 +5704279 5724952 20674 6251995.8988 6253029.0867 -18.1396 42.0697 92.5944 run30.mat -1 -1 1118 2874590 2884926 +5725259 5745952 20694 6253044.5605 6254076.7288 -16.4913 42.0691 92.6673 run30.mat -1 -1 1118 2885079 2895427 +5746258 5762640 16383 6254092.0317 6254913.1497 -14.842 42.0702 92.6155 run30.mat -1 -1 1118 2895580 2903771 +5846922 5850285 3364 6259125.1107 6259293.4912 -14.8466 42.0694 94.7121 run30.mat -1 -1 1119 2945914 2947596 +5850603 5871277 20675 6259309.5227 6260344.664 -13.1938 42.0689 92.5948 run30.mat -1 -1 1119 2947755 2958092 +5871588 5892273 20686 6260360.3457 6261394.4021 -11.5448 42.07 92.5823 run30.mat -1 -1 1119 2958248 2968591 +5892580 5913273 20694 6261409.6333 6262445.6528 -9.9 42.0688 92.4861 run30.mat -1 -1 1119 2968744 2979091 +5913591 5934272 20682 6262461.6842 6263494.1686 -8.2506 42.0694 92.6082 run30.mat -1 -1 1119 2979250 2989591 +5934580 5942719 8140 6263509.6024 6263918.0766 -6.5983 42.0681 92.791 run30.mat -1 -1 1119 2989745 2993815 +6026797 6038409 11613 6268121.7922 6268701.9079 -6.5946 42.07 93.2414 run30.mat -1 -1 1120 3035856 3041662 +6038724 6059395 20672 6268717.5391 6269751.1004 -4.9462 42.0693 92.5868 run30.mat -1 -1 1120 3041819 3052155 +6059700 6080416 20717 6269766.3536 6270802.4111 -3.2969 42.0699 92.5805 run30.mat -1 -1 1120 3052308 3062666 +6080721 6101394 20674 6270817.6643 6271850.7563 -1.6488 42.0698 92.6035 run30.mat -1 -1 1120 3062819 3073156 +6101702 6122374 20673 6271866.0371 6272898.8307 0.00076821 42.0692 92.6516 run30.mat -1 -1 1120 3073310 3083646 +6206841 6226803 19963 6277123.2632 6278120.5751 1.6501 42.069 93.1302 run30.mat -1 -1 1121 3125881 3135863 +6227119 6247774 20656 6278136.3781 6279168.0115 3.2956 42.0688 92.6117 run30.mat -1 -1 1121 3136021 3146349 +6248087 6268796 20710 6279183.5404 6280221.5526 4.9463 42.0692 92.4946 run30.mat -1 -1 1121 3146505 3156860 +6269102 6289794 20693 6280236.9823 6281271.9587 6.5936 42.0694 92.6835 run30.mat -1 -1 1121 3157013 3167360 +6290100 6302639 12540 6281287.2651 6281913.1179 8.251 42.0703 92.7316 run30.mat -1 -1 1121 3167513 3173783 +6386789 6393951 7163 6286120.1347 6286477.406 8.249 42.0684 93.522 run30.mat -1 -1 1122 3215860 3219441 +6394264 6414955 20692 6286492.9661 6287530.711 9.8961 42.0701 92.5598 run30.mat -1 -1 1122 3219597 3229943 +6415263 6435957 20695 6287546.117 6288577.9719 11.5446 42.0691 92.6043 run30.mat -1 -1 1122 3230097 3240445 +6436263 6456954 20692 6288593.514 6289627.2702 13.1905 42.0693 92.556 run30.mat -1 -1 1122 3240598 3250943 +6457262 6477931 20670 6289642.6732 6290677.2173 14.8439 42.0691 92.6438 run30.mat -1 -1 1122 3251097 3261432 +6478239 6482559 4321 6290692.4981 6290907.8524 16.4846 42.0683 92.8012 run30.mat -1 -1 1122 3261586 3263746 +6566853 6582264 15412 6295122.9129 6295895.4734 16.4896 42.0685 92.9328 run30.mat -1 -1 1123 3305895 3313601 +6582582 6603252 20671 6295911.3767 6296945.1338 18.1365 42.0693 92.5974 run30.mat -1 -1 1123 3313760 3324096 +6603559 6624253 20695 6296960.487 6297988.6313 19.7851 42.0689 92.64 run30.mat -1 -1 1123 3324249 3334596 +6624561 6645256 20696 6298003.5405 6299045.8088 21.4359 42.069 92.5966 run30.mat -1 -1 1123 3334750 3345098 +6645562 6662639 17078 6299061.1147 6299912.2697 23.0881 42.0699 92.756 run30.mat -1 -1 1123 3345251 3353791 +6746711 6749370 2660 6304117.8625 6304250.838 23.0823 42.0686 94.7379 run30.mat -1 -1 1124 3395828 3397158 +6749685 6770357 20673 6304266.5911 6305299.4852 24.7374 42.07 92.5127 run30.mat -1 -1 1124 3397315 3407652 +6770674 6791342 20669 6305315.3957 6306350.3592 26.3839 42.0701 92.5783 run30.mat -1 -1 1124 3407810 3418145 +6791655 6812354 20700 6306365.7589 6307399.8184 28.0352 42.0702 92.6021 run30.mat -1 -1 1124 3418301 3428651 +6812658 6833336 20679 6307415.0214 6308448.1814 29.687 42.0696 92.6183 run30.mat -1 -1 1124 3428803 3439143 +6833644 6842518 8875 6308463.4622 6308907.7468 31.3374 42.0693 92.7854 run30.mat -1 -1 1124 3439297 3443734 +6926817 6937656 10840 6313123.4101 6313664.7678 31.3343 42.0693 93.0843 run30.mat -1 -1 1125 3485885 3491305 +6937978 6958673 20696 6313680.7463 6314714.5074 32.9843 42.0695 92.5464 run30.mat -1 -1 1125 3491466 3501813 +6958982 6979655 20674 6314729.7291 6315765.4295 34.6327 42.0696 92.5409 run30.mat -1 -1 1125 3501968 3512305 +6979963 7000672 20710 6315780.9568 6316813.0954 36.2891 42.0693 92.6404 run30.mat -1 -1 1125 3512459 3522814 +7000981 7021637 20657 6316828.5487 6317863.6572 37.9331 42.0695 92.5769 run30.mat -1 -1 1125 3522969 3533297 +7021946 7022597 652 6317879.1131 6317911.6756 39.5787 42.0688 91.3597 run30.mat -1 -1 1125 3533452 3533777 +7106855 7125941 19087 6322124.5351 6323077.5777 39.5833 42.0687 92.9063 run30.mat -1 -1 1126 3575908 3585452 +7126254 7146936 20683 6323093.1066 6324130.1424 41.2297 42.0693 92.5852 run30.mat -1 -1 1126 3585608 3595949 +7147244 7167935 20692 6324145.5334 6325178.7932 42.8774 42.069 92.5583 run30.mat -1 -1 1126 3596104 3606450 +7168246 7188916 20671 6325194.4622 6326226.2176 44.5319 42.0694 92.6027 run30.mat -1 -1 1126 3606605 3616940 +7189225 7202636 13412 6326241.7953 6326913.8529 46.179 42.0695 92.7016 run30.mat -1 -1 1126 3617095 3623801 +7286896 7293230 6335 6331125.4662 6331443.8588 46.18 42.0689 93.8845 run30.mat -1 -1 1127 3665932 3669100 +7293546 7314237 20692 6331459.6619 6332494.5147 47.8264 42.0694 92.4414 run30.mat -1 -1 1127 3669258 3679604 +7314541 7335235 20695 6332509.7176 6333542.6721 49.4717 42.0686 92.586 run30.mat -1 -1 1127 3679756 3690103 +7335541 7356234 20694 6333557.975 6334594.2465 51.1268 42.0682 92.5955 run30.mat -1 -1 1127 3690256 3700603 +7356542 7377216 20675 6334609.7769 6335644.8855 52.7745 42.0694 92.6338 run30.mat -1 -1 1127 3700757 3711095 +7377522 7382717 5196 6335660.3737 6335916.6932 54.4212 42.0685 92.6475 run30.mat -1 -1 1127 3711248 3713845 +7467024 7481560 14537 6340132.1202 6340860.5979 54.4226 42.0693 92.9662 run30.mat -1 -1 1128 3756001 3763269 +7481880 7502555 20676 6340876.4772 6341909.3609 56.0706 42.069 92.4953 run30.mat -1 -1 1128 3763429 3773767 +7502863 7523556 20694 6341924.6447 6342961.1504 57.7248 42.0694 92.5782 run30.mat -1 -1 1128 3773921 3784268 +7523863 7544556 20694 6342976.5063 6344009.4582 59.3742 42.0692 92.54 run30.mat -1 -1 1128 3784421 3794768 +7544861 7562797 17937 6344024.7114 6344921.7815 61.0216 42.0696 92.6721 run30.mat -1 -1 1128 3794921 3803889 +7646895 7648699 1805 6349125.5227 6349215.0246 61.0134 42.0695 94.9913 run30.mat -1 -1 1129 3845940 3846842 +7649018 7669696 20679 6349230.8512 6350268.7555 62.6726 42.0689 92.6346 run30.mat -1 -1 1129 3847001 3857341 +7670004 7690676 20673 6350284.0363 6351315.0391 64.3217 42.0701 92.6469 run30.mat -1 -1 1129 3857495 3867832 +7690986 7711696 20711 6351330.6673 6352366.6624 65.971 42.0698 92.5153 run30.mat -1 -1 1129 3867987 3878342 +7712001 7732675 20675 6352382.0385 6353417.4436 67.6245 42.0693 92.556 run30.mat -1 -1 1129 3878495 3888832 +7732983 7742676 9694 6353432.9088 6353917.2551 69.2657 42.0685 92.7281 run30.mat -1 -1 1129 3888986 3893833 +7827036 7837162 10127 6358133.9177 6358640.5533 69.2725 42.0693 93.3929 run30.mat -1 -1 1130 3936015 3941078 +7837482 7858156 20675 6358656.4295 6359691.7676 70.9194 42.0696 92.491 run30.mat -1 -1 1130 3941238 3951575 +7858461 7879156 20696 6359707.1468 6360740.3417 72.5731 42.0699 92.6302 run30.mat -1 -1 1130 3951727 3962075 +7879463 7900155 20693 6360755.8217 6361788.8992 74.2174 42.0692 92.5969 run30.mat -1 -1 1130 3962229 3972576 +7900462 7921132 20671 6361804.2543 6362840.0571 75.8684 42.0694 92.6267 run30.mat -1 -1 1130 3972729 3983065 +7921441 7922795 1355 6362855.5101 6362923.2231 77.52 42.0709 92.6776 run30.mat -1 -1 1130 3983219 3983896 +8006965 8025531 18567 6367133.1605 6368058.2978 77.5114 42.0694 93.149 run30.mat -1 -1 1131 4025983 4035266 +8025848 8046520 20673 6368074.1521 6369108.3727 79.1659 42.0697 92.5093 run30.mat -1 -1 1131 4035425 4045761 +8046828 8067516 20689 6369123.9032 6370159.2788 80.8108 42.0698 92.5813 run30.mat -1 -1 1131 4045915 4056260 +8067824 8088176 20353 6370174.5596 6371191.3745 82.4627 42.0699 92.5551 run30.mat -1 -1 1131 4056414 4066590 +347292 388580 41289 6741344.3672 6743409.0089 41.228 -21.0362 103.6886 run31.mat 1 4 1133 175799 196444 +466178 491945 25768 6747288.4081 6748576.3614 41.2286 -21.0365 140.0593 run31.mat 11 4 1134 235244 248128 +570716 590814 20099 6752513.9894 6753520.7048 41.2287 -21.0367 158.3397 run31.mat 21 4 1135 287516 297565 +671297 691350 20054 6757543.5531 6758546.4803 41.2276 -21.0368 144.8606 run31.mat 31 4 1136 337808 347835 +771877 791960 20084 6762574.5802 6763579.0341 41.23 -21.0363 134.3269 run31.mat 41 4 1137 388100 398143 +872468 892577 20110 6767602.4102 6768608.355 41.23 -21.0345 126.3839 run31.mat 51 4 1138 438398 448455 +972862 992917 20056 6772624.4595 6773625.5109 41.2285 -21.0372 119.8952 run31.mat 61 4 1139 488597 498625 +1073199 1093261 20063 6777640.1432 6778644.4195 41.2294 -21.0366 114.5847 run31.mat 71 4 1140 538768 548799 +1175601 1195641 20041 6782760.3831 6783762.1353 41.2313 -21.0373 110.1419 run31.mat 81 4 1141 589971 599992 +1278039 1298050 20012 6787881.5687 6788882.2541 41.2285 -21.0361 105.9532 run31.mat 91 4 1142 641193 651199 +1380273 1400420 20148 6792992.9406 6794002.137 41.2291 -21.0364 102.8167 run31.mat 101 4 1143 692312 702386 +1482702 1502840 20139 6798116.2431 6799121.4844 41.2282 -21.0351 99.8272 run31.mat 111 4 1144 743528 753598 +1585224 1605286 20063 6803241.411 6804242.9052 41.2334 -21.0364 97.1373 run31.mat 121 4 1145 794792 804823 +1689424 1709583 20160 6808452.9875 6809457.6486 41.2301 -21.0367 94.873 run31.mat 131 4 1146 846894 856974 +1793828 1813888 20061 6813673.8894 6814675.0885 41.2305 -21.0361 92.7426 run31.mat 141 4 1147 899098 909128 +1898144 1918329 20186 6818888.5747 6819896.1727 41.2268 -21.0368 90.7779 run31.mat 151 4 1148 951259 961352 +2004506 2024640 20135 6824207.7404 6825211.7678 41.2279 -21.0356 88.8734 run31.mat 161 4 1149 1004442 1014509 +2110916 2130990 20075 6829526.395 6830530.2123 41.2265 -21.036 87.1736 run31.mat 171 4 1150 1057649 1067687 +2217239 2237449 20211 6834841.2977 6835854.2193 41.2268 -21.0362 85.8514 run31.mat 181 4 1151 1110813 1120919 +2323608 2343857 20250 6840161.6856 6841173.5554 41.2273 -21.0359 84.3114 run31.mat 191 4 1152 1164000 1174125 +2430241 2450398 20158 6845492.6915 6846500.8288 41.2331 -21.0359 82.3488 run31.mat 201 4 1153 1217319 1227398 +2536487 2556728 20242 6850805.9163 6851818.3578 41.2278 -21.0353 80.7786 run31.mat 211 4 1154 1270444 1280596 +2645158 2665464 20307 6856240.3705 6857253.9469 41.2316 -21.0357 79.0495 run31.mat 221 4 1155 1324782 1334935 +321629 323036 1408 7058717.222 7058787.8699 41.2192 0.0097647 146.3845 run32.mat 1 3 1157 169093 169797 +323302 417901 94600 7058801.2263 7063530.6961 41.2256 -0.0054795 145.8771 run32.mat 1 3 1157 169930 217231 +485536 487315 1780 7066913.0506 7067001.494 41.2215 -0.012312 152.7414 run32.mat 1 3 1158 251050 251940 +487619 488492 874 7067016.6397 7067060.1338 41.2255 -0.0018 158.9249 run32.mat 1 3 1158 252092 252528 +488754 488893 140 7067073.187 7067080.1121 41.2426 -0.057924 164.5861 run32.mat 1 3 1158 252659 252729 +489259 489511 253 7067098.3468 7067110.9017 41.2244 -0.022236 155.9149 run32.mat 1 3 1158 252912 253038 +489818 490209 392 7067126.1969 7067145.6771 41.2334 0.036661 153.2927 run32.mat 1 3 1158 253191 253387 +490469 490813 345 7067158.6306 7067175.7692 41.2195 0.030726 147.6315 run32.mat 1 3 1158 253517 253689 +491119 492140 1022 7067191.0145 7067242.0065 41.2315 0.0062202 141.4139 run32.mat 1 3 1158 253842 254353 +492395 493911 1517 7067254.7591 7067330.5741 41.2302 0.0030933 144.9927 run32.mat 1 3 1158 254480 255238 +494167 505929 11763 7067343.3767 7067933.39 41.225 -0.0070732 145 run32.mat 1 3 1158 255366 261247 +573594 575032 1439 7071316.6052 7071387.6358 41.2261 -0.00055173 243.9252 run32.mat 11 3 1159 295081 295800 +575283 580047 4765 7071400.034 7071639.7196 41.2187 0.00068616 233.1212 run32.mat 11 3 1159 295926 298308 +580307 580933 627 7071652.8822 7071684.5736 41.2234 -0.010669 235.0618 run32.mat 11 3 1159 298438 298751 +581183 635692 54510 7071697.2299 7074421.6344 41.2264 -0.0051104 231.8612 run32.mat 11 3 1159 298876 326132 +702065 748482 46418 7077739.1542 7080060.8337 41.2248 -0.0038857 274.3179 run32.mat 21 3 1160 359320 382529 +816400 862851 46452 7083453.3713 7085778.3549 41.2274 -0.0039378 250.133 run32.mat 31 3 1161 416489 439716 +930644 977034 46391 7089168.5614 7091486.3696 41.2271 -0.0036844 232.0078 run32.mat 41 3 1162 473614 496810 +1044925 1091191 46267 7094882.2466 7097195.455 41.2256 -0.0034203 217.6714 run32.mat 50.5224 3 1163 530757 553891 +1158926 1205301 46376 7100584.1597 7102900.9605 41.2264 -0.0028091 206.1898 run32.mat 61 3 1164 587760 610949 +1275191 1293633 18443 7106396.0609 7107318.8804 41.2275 -0.0038601 197.2497 run32.mat 71 3 1165 645895 655117 +1293887 1321487 27601 7107331.4341 7108710.2061 41.2268 -0.003936 196.3077 run32.mat 71 3 1165 655244 669044 +1391372 1437661 46290 7112205.4478 7114520.4616 41.2275 -0.0030111 188.2018 run32.mat 81 3 1166 703988 727133 +1507562 1553852 46291 7118015.8216 7120329.1453 41.2272 -0.0040108 181.2075 run32.mat 91 3 1167 762086 785232 +1623774 1670055 46282 7123826.1798 7126139.2363 41.2283 -0.0030547 175.0112 run32.mat 101 3 1168 820194 843336 +1739941 1786231 46291 7129632.3846 7131950.2846 41.2274 -0.0032091 169.574 run32.mat 111 3 1169 878280 901426 +1855914 1902397 46484 7135434.5898 7137757.4463 41.2275 -0.0026652 164.656 run32.mat 120.737 3 1170 936269 959512 +1972273 2018587 46315 7141251.9104 7143566.1021 41.2283 -0.0024279 160.1809 run32.mat 131 3 1171 994451 1017610 +2088445 2088572 128 7147057.611 7147063.9879 41.1668 0.012061 178.1655 run32.mat 141 3 1172 1052540 1052604 +2088837 2134784 45948 7147077.294 7149376.6638 41.2273 -0.0023533 156.0086 run32.mat 141 3 1172 1052736 1075711 +2204438 2250736 46299 7152858.87 7155172.9301 41.2267 -0.0025781 152.4638 run32.mat 151 3 1173 1110539 1133689 +2320739 2366915 46177 7158674.6453 7160982.4356 41.228 -0.0030797 148.8598 run32.mat 161 3 1174 1168692 1191781 +2436773 2483074 46302 7164477.2004 7166789.8625 41.229 -0.0025197 145.7625 run32.mat 171 3 1175 1226712 1249863 +2553017 2599311 46295 7170289.6938 7172604.3193 41.2257 -0.0025176 142.8413 run32.mat 181 3 1176 1284836 1307984 +2671066 2717333 46268 7176190.272 7178504.0266 41.2287 -0.0028447 140.132 run32.mat 191 3 1177 1343863 1366998 +2789207 2789247 41 7182097.0591 7182099.0367 41.3299 -0.0015244 162.8723 run32.mat 201 3 1178 1402936 1402956 +2789498 2835398 45901 7182111.4465 7184409.587 41.2263 -0.0028035 136.3918 run32.mat 201 3 1178 1403082 1426033 +2905509 2951686 46178 7187914.3765 7190224.6005 41.2291 -0.0025778 133.1298 run32.mat 210.6125 3 1179 1461090 1484180 +3024080 3069902 45823 7193840.1759 7196132.9067 41.2293 -0.0015275 130.0693 run32.mat 221 3 1180 1520378 1543290 +293552 313977 20426 7318112.8248 7319131.1955 82.4624 3.3598 92.9046 run33.mat 140 4 1182 163483 173696 +314284 334978 20695 7319146.4332 7320184.4241 80.8132 3.3633 92.5775 run33.mat 140 4 1182 173849 184197 +335284 355999 20716 7320199.7889 7321232.1151 79.1654 3.3613 92.4721 run33.mat 140 4 1182 184350 194708 +356307 377006 20700 7321247.4011 7322284.2636 77.5145 3.3643 92.5258 run33.mat 140 4 1182 194862 205212 +377322 389364 12043 7322299.9444 7322901.0463 75.8655 3.3634 92.4419 run33.mat 140 4 1182 205370 211391 +473654 481376 7723 7327116.8851 7327504.4078 75.8682 3.3631 93.382 run33.mat 140 4 1183 253538 257399 +481706 502380 20675 7327520.7208 7328553.5713 74.2184 3.3628 92.4746 run33.mat 140 4 1183 257564 267902 +502687 523400 20714 7328569.0482 7329604.2025 72.5697 3.3624 92.5298 run33.mat 140 4 1183 268055 278412 +523706 544380 20675 7329619.63 7330653.533 70.9173 3.3626 92.6156 run33.mat 140 4 1183 278565 288902 +544685 565358 20674 7330668.786 7331700.8556 69.2702 3.3632 92.6507 run33.mat 140 4 1183 289055 299392 +565664 569464 3801 7331716.095 7331906.703 67.6294 3.3596 92.7264 run33.mat 140 4 1183 299545 301445 +654034 670036 16003 7336134.1658 7336936.6682 67.622 3.3622 93.0615 run33.mat 140 4 1184 343732 351733 +670357 691038 20682 7336952.7896 7337986.2426 65.975 3.3628 92.6123 run33.mat 140 4 1184 351894 362235 +691345 712041 20697 7338001.5514 7339034.8481 64.3212 3.3615 92.5748 run33.mat 140 4 1184 362388 372737 +712348 733040 20693 7339050.2662 7340086.9181 62.6754 3.3625 92.6262 run33.mat 140 4 1184 372890 383237 +733345 749784 16440 7340102.1713 7340924.0298 61.0209 3.3617 92.8283 run33.mat 140 4 1184 383389 391609 +834027 837376 3350 7345134.3896 7345302.8871 61.0206 3.3625 95.6133 run33.mat 140 4 1185 433732 435407 +837710 858378 20669 7345319.4578 7346352.3805 59.3716 3.3616 92.52 run33.mat 140 4 1185 435574 445908 +858702 879379 20678 7346368.5868 7347402.6999 57.7266 3.3618 92.5758 run33.mat 140 4 1185 446070 456409 +879684 900390 20707 7347417.9558 7348454.1649 56.067 3.3605 92.6539 run33.mat 140 4 1185 456562 466916 +900703 921360 20658 7348469.6938 7349502.2872 54.4239 3.363 92.6305 run33.mat 140 4 1185 467072 477401 +921667 929903 8237 7349517.6436 7349928.4435 52.7726 3.363 92.6876 run33.mat 140 4 1185 477555 481673 +1014221 1025697 11477 7354143.9188 7354719.5148 52.7756 3.3611 93.099 run33.mat 140 4 1186 523833 529572 +1026025 1046699 20675 7354735.9216 7355769.6181 51.1252 3.361 92.5317 run33.mat 140 4 1186 529736 540073 +1047009 1067701 20693 7355785.2462 7356818.2508 49.4729 3.363 92.6236 run33.mat 140 4 1186 540228 550575 +1068007 1088701 20695 7356833.5538 7357866.9104 47.8264 3.3613 92.4961 run33.mat 140 4 1186 550728 561075 +1089007 1109679 20673 7357882.3401 7358917.484 46.1756 3.3635 92.7021 run33.mat 140 4 1186 561228 571564 +1194412 1214180 19769 7363153.9758 7364141.2089 44.5325 3.3623 92.9095 run33.mat 140 4 1187 613933 623817 +1214484 1235179 20696 7364156.4118 7365194.467 42.8775 3.3624 92.5788 run33.mat 140 4 1187 623969 634317 +1235484 1256159 20676 7365209.7199 7366241.6983 41.2313 3.3623 92.5715 run33.mat 140 4 1187 634470 644807 +1256465 1277163 20699 7366257.0042 7367292.1339 39.5827 3.3612 92.5944 run33.mat 140 4 1187 644961 655310 +1277470 1290183 12714 7367307.4868 7367942.7791 37.9313 3.3626 92.7222 run33.mat 140 4 1187 655464 661820 +1374394 1381620 7227 7372151.899 7372515.2726 37.936 3.364 93.7807 run33.mat 140 4 1188 703928 707541 +1381946 1402622 20677 7372531.576 7373563.632 36.2862 3.3622 92.4742 run33.mat 140 4 1188 707704 718042 +1402930 1423622 20693 7373579.035 7374615.7374 34.6342 3.3641 92.5507 run33.mat 140 4 1188 718196 728543 +1423928 1444604 20677 7374631.167 7375663.4038 32.9841 3.3617 92.5402 run33.mat 140 4 1188 728696 739034 +1444909 1465584 20676 7375678.783 7376712.7116 31.3376 3.3622 92.6378 run33.mat 140 4 1188 739187 749525 +1465890 1470283 4394 7376728.0148 7376947.7098 29.6892 3.3599 93.1772 run33.mat 140 4 1188 749678 751874 +1554609 1569944 15336 7381166.0475 7381931.0012 29.6848 3.3627 93.1454 run33.mat 140 4 1189 794039 801707 +1570249 1590924 20676 7381946.257 7382979.8952 28.0313 3.3604 92.603 run33.mat 140 4 1189 801859 812198 +1591232 1611923 20692 7382995.176 7384030.3491 26.3843 3.3623 92.5931 run33.mat 140 4 1189 812352 822698 +1612230 1632926 20697 7384045.826 7385080.0294 24.7341 3.3616 92.5618 run33.mat 140 4 1189 822851 833200 +1633233 1650383 17151 7385095.3826 7385953.169 23.0872 3.3614 92.7134 run33.mat 140 4 1189 833353 841928 +1734719 1737441 2723 7390169.0333 7390305.9449 23.0926 3.3598 97.0438 run33.mat 140 4 1190 884098 885467 +1737769 1758443 20675 7390322.4805 7391357.4281 21.434 3.3618 92.4276 run33.mat 140 4 1190 885623 895961 +1758750 1779422 20673 7391372.6593 7392405.8253 19.7876 3.3622 92.5896 run33.mat 140 4 1190 896114 906451 +1779730 1800444 20715 7392421.2312 7393455.2362 18.1393 3.3613 92.561 run33.mat 140 4 1190 906605 916962 +1800749 1821434 20686 7393470.452 7394506.664 16.4903 3.3629 92.5965 run33.mat 140 4 1190 917115 927458 +1821747 1830503 8757 7394522.1929 7394958.4997 14.8436 3.3631 92.7081 run33.mat 140 4 1190 927614 931992 +1915015 1925961 10947 7399183.5126 7399731.5179 14.8444 3.3622 93.2506 run33.mat 140 4 1191 974250 979723 +1926291 1946984 20694 7399748.0877 7400785.0085 13.1911 3.3628 92.6193 run33.mat 140 4 1191 979888 990235 +1947290 1967962 20673 7400800.3114 7401833.4291 11.5443 3.3615 92.6288 run33.mat 140 4 1191 990388 1000725 +1968271 1988965 20695 7401848.7595 7402883.6376 9.895 3.3621 92.67 run33.mat 140 4 1191 1000879 1011227 +1989273 2009937 20665 7402899.165 7403931.4876 8.2468 3.3619 92.7348 run33.mat 140 4 1191 1011381 1021713 +2010248 2010781 534 7403947.0408 7403973.6964 6.5876 3.363 92.9065 run33.mat 140 4 1191 1021869 1022135 +2095043 2114243 19201 7408187.905 7409148.1381 6.5949 3.3625 92.8643 run33.mat 140 4 1192 1064268 1073868 +2114549 2135244 20696 7409163.3197 7410195.6265 4.9445 3.3627 92.5266 run33.mat 140 4 1192 1074021 1084370 +2135553 2156235 20683 7410211.083 7411247.3297 3.2968 3.3626 92.6103 run33.mat 140 4 1192 1084524 1094866 +2156549 2177224 20676 7411263.1409 7412296.8849 1.6481 3.3615 92.6211 run33.mat 140 4 1192 1095023 1105360 +2177532 2190861 13330 7412312.1687 7412977.7719 -0.0026656 3.3619 92.734 run33.mat 140 4 1192 1105514 1112179 +2275141 2281502 6362 7417191.8549 7417511.4369 -0.0051793 3.3607 93.4991 run33.mat 140 4 1193 1154321 1157502 +2281834 2302506 20673 7417527.8063 7418558.2712 -1.6514 3.3626 92.5082 run33.mat 140 4 1193 1157668 1168004 +2302817 2323504 20688 7418573.9498 7419609.2192 -3.3001 3.3614 92.5228 run33.mat 140 4 1193 1168160 1178503 +2323815 2344503 20689 7419624.9605 7420660.2373 -4.9476 3.3607 92.5678 run33.mat 140 4 1193 1178659 1189004 +2344810 2365505 20696 7420675.4685 7421710.4021 -6.5985 3.3616 92.6218 run33.mat 140 4 1193 1189157 1199505 +2365812 2370902 5091 7421725.6333 7421981.1345 -8.2531 3.3612 92.6218 run33.mat 140 4 1193 1199658 1202204 +2455453 2470063 14611 7426207.6923 7426938.4533 -8.25 3.3628 92.9697 run33.mat 140 4 1194 1244481 1251786 +2470370 2491067 20698 7426953.7454 7427988.9758 -9.8976 3.3616 92.5143 run33.mat 140 4 1194 1251940 1262289 +2491373 2512066 20694 7428004.1604 7429038.6479 -11.5434 3.3637 92.5371 run33.mat 140 4 1194 1262442 1272789 +2512372 2533064 20693 7429054.0038 7430088.5689 -13.1928 3.3618 92.577 run33.mat 140 4 1194 1272941 1283288 +2533372 2551221 17850 7430103.8527 7430995.3096 -14.841 3.3638 92.786 run33.mat 140 4 1194 1283442 1292367 +2635578 2637585 2008 7435212.8642 7435313.3633 -14.8491 3.3607 96.7872 run33.mat 140 4 1195 1334547 1335551 +2637889 2658567 20679 7435328.8008 7436362.953 -16.492 3.363 92.5998 run33.mat 140 4 1195 1335703 1346042 +2658872 2679582 20711 7436378.3291 7437413.6683 -18.1424 3.3618 92.6036 run33.mat 140 4 1195 1346195 1356550 +2679893 2700565 20673 7437429.2215 7438461.9893 -19.7856 3.362 92.6038 run33.mat 140 4 1195 1356706 1367042 +2700872 2721547 20676 7438477.2205 7439513.2157 -21.4406 3.3621 92.6418 run33.mat 140 4 1195 1367196 1377534 +2721855 2731341 9487 7439528.6831 7440001.8859 -23.0891 3.3624 92.7881 run33.mat 140 4 1195 1377688 1382431 +2815651 2825886 10236 7444217.9794 7444729.1295 -23.087 3.3597 93.0498 run33.mat 140 4 1196 1424588 1429706 +2826192 2846887 20696 7444744.556 7445778.5777 -24.7406 3.3619 92.5361 run33.mat 140 4 1196 1429859 1440207 +2847195 2867887 20693 7445793.8585 7446829.462 -26.3867 3.3604 92.5799 run33.mat 140 4 1196 1440361 1450707 +2868194 2888887 20694 7446844.9389 7447881.207 -28.0358 3.3618 92.6705 run33.mat 140 4 1196 1450860 1461208 +2889190 2909868 20679 7447896.2397 7448928.2183 -29.6889 3.3611 92.6289 run33.mat 140 4 1196 1461359 1471698 +2910175 2911442 1268 7448943.4495 7449006.3092 -31.3299 3.3624 93.0511 run33.mat 140 4 1196 1471852 1472485 +2995901 3014506 18606 7453228.7999 7454159.7261 -31.34 3.3616 93.1526 run33.mat 140 4 1197 1514717 1524028 +3014831 3035488 20658 7454176.1138 7455210.743 -32.9867 3.361 92.4905 run33.mat 140 4 1197 1524182 1534511 +3035797 3056493 20697 7455226.1989 7456259.2813 -34.6376 3.3627 92.5378 run33.mat 140 4 1197 1534665 1545014 +3056805 3077490 20686 7456274.8846 7457307.849 -36.2876 3.3604 92.5732 run33.mat 140 4 1197 1545170 1555513 +3077796 3091680 13885 7457323.0306 7458018.3934 -37.9365 3.3632 92.7175 run33.mat 140 4 1197 1555666 1562608 +3175979 3181827 5849 7462234.1758 7462528.0113 -37.9339 3.3616 93.477 run33.mat 140 4 1198 1604760 1607684 +3182158 3202848 20691 7462544.7015 7463577.7677 -39.5821 3.3613 92.52 run33.mat 140 4 1198 1607850 1618195 +3203158 3223830 20673 7463593.3958 7464625.3032 -41.2306 3.3622 92.6194 run33.mat 140 4 1198 1618350 1628686 +3224137 3244831 20695 7464640.6564 7465677.6299 -42.8782 3.3635 92.6492 run33.mat 140 4 1198 1628840 1639187 +3245137 3265790 20654 7465692.9357 7466725.4253 -44.5318 3.3611 92.5957 run33.mat 140 4 1198 1639340 1649667 +3266097 3271781 5685 7466740.7174 7467025.9697 -46.1775 3.3608 92.713 run33.mat 140 4 1198 1649821 1652663 +3356319 3370348 14030 7471251.6211 7471952.7383 -46.1779 3.3624 93.0313 run33.mat 140 4 1199 1694934 1701948 +3370696 3391368 20673 7471970.2821 7473004.5146 -47.8299 3.3631 92.6086 run33.mat 140 4 1199 1702122 1712459 +3391674 3412371 20698 7473019.6962 7474053.4966 -49.4762 3.3629 92.5327 run33.mat 140 4 1199 1712612 1722961 +3412678 3433369 20692 7474068.7308 7475103.318 -51.1256 3.3619 92.5653 run33.mat 140 4 1199 1723115 1733460 +3433675 3452080 18406 7475118.5026 7476040.8806 -52.779 3.3624 92.7055 run33.mat 140 4 1199 1733613 1742816 +3538468 3539747 1280 7480358.9651 7480423.3072 -52.7799 3.3594 96.4746 run33.mat 140 4 1200 1786012 1786652 +3540077 3560756 20680 7480439.745 7481473.474 -54.4237 3.3633 92.6192 run33.mat 140 4 1200 1786817 1797156 +3561066 3581751 20686 7481489.1053 7482524.2048 -56.0789 3.3617 92.6149 run33.mat 140 4 1200 1797311 1807655 +3582057 3602743 20687 7482539.3894 7483572.9812 -57.7286 3.3623 92.6257 run33.mat 140 4 1200 1807808 1818151 +3603055 3623732 20678 7483588.5845 7484622.3668 -59.3798 3.3615 92.6632 run33.mat 140 4 1200 1818307 1828646 +3624039 3634240 10202 7484637.8437 7485146.4518 -61.0253 3.3597 92.7376 run33.mat 140 4 1200 1828799 1833900 +3718528 3728049 9522 7489363.2874 7489839.636 -61.028 3.3616 93.2387 run33.mat 140 4 1201 1876046 1880807 +3728369 3749070 20702 7489855.5122 7490890.6296 -62.674 3.3635 92.5521 run33.mat 140 4 1201 1880967 1891317 +3749378 3770073 20696 7490905.9135 7491940.7028 -64.3239 3.362 92.5644 run33.mat 140 4 1201 1891471 1901820 +3770381 3791073 20693 7491956.1092 7492990.5701 -65.9719 3.3626 92.4853 run33.mat 140 4 1201 1901974 1912320 +3791380 3812053 20674 7493005.8043 7494038.3363 -67.6221 3.3637 92.6383 run33.mat 140 4 1201 1912474 1922810 +3812359 3814339 1981 7494053.6422 7494152.6803 -69.2666 3.3591 91.9355 run33.mat 140 4 1201 1922963 1923953 +3898607 3916351 17745 7498367.4808 7499255.4624 -69.2671 3.3621 92.9254 run33.mat 140 4 1202 1966089 1974962 +3916685 3937356 20672 7499272.0331 7500303.714 -70.9196 3.3627 92.5426 run33.mat 140 4 1202 1975129 1985465 +3937664 3958354 20691 7500318.9948 7501353.4533 -72.5691 3.3622 92.5958 run33.mat 140 4 1202 1985619 1995964 +3958662 3979354 20693 7501368.9806 7502404.7707 -74.2168 3.3635 92.6382 run33.mat 140 4 1202 1996118 2006465 +3979662 3994399 14738 7502420.1772 7503156.513 -75.8663 3.3635 92.6742 run33.mat 140 4 1202 2006619 2013988 +4078717 4083671 4955 7507373.1223 7507619.9837 -75.8672 3.3619 94.1289 run33.mat 140 4 1203 2056148 2058625 +4083999 4104693 20695 7507636.26 7508671.4749 -77.5158 3.3631 92.5877 run33.mat 140 4 1203 2058790 2069137 +4105001 4125676 20676 7508687.0022 7509719.9313 -79.1694 3.3622 92.5595 run33.mat 140 4 1203 2069291 2079629 +4125985 4146693 20709 7509735.2618 7510769.7511 -80.8164 3.3629 92.6306 run33.mat 140 4 1203 2079784 2090138 +4147001 4167662 20662 7510785.1576 7511820.5122 -82.468 3.3616 92.5731 run33.mat 140 4 1203 2090292 2100623 +4167975 4174500 6526 7511836.1652 7512162.5106 -82.4625 5.0435 92.6149 run33.mat 140 4 1203 2100780 2104042 +4258861 4272201 13341 7516379.8833 7517047.75 -82.4707 5.0477 93.1682 run33.mat 140 4 1204 2146225 2152895 +4272522 4293214 20693 7517063.6808 7518097.1853 -80.8181 5.046 92.4549 run33.mat 140 4 1204 2153055 2163411 +4293521 4314213 20693 7518112.6622 7519148.1191 -79.1725 5.0465 92.5261 run33.mat 140 4 1204 2163555 2173902 +4314520 4335212 20693 7519163.3503 7520195.819 -77.519 5.0462 92.5564 run33.mat 140 4 1204 2174055 2184402 +4335520 4354779 19260 7520211.0998 7521174.7393 -75.8708 5.0466 92.6864 run33.mat 140 4 1204 2184556 2194186 +4439103 4439607 505 7525391.4072 7525416.4122 -75.8942 5.0499 99.2104 run33.mat 140 4 1205 2236350 2236602 +4439931 4460573 20643 7525432.4868 7526465.857 -74.2226 5.0461 92.7124 run33.mat 140 4 1205 2236764 2247085 +4460881 4481553 20673 7526481.2634 7527513.6597 -72.5719 5.0456 92.5313 run33.mat 140 4 1205 2247239 2257576 +4481863 4502558 20696 7527529.0397 7528565.6993 -70.9202 5.0459 92.5765 run33.mat 140 4 1205 2257731 2268078 +4502872 4523554 20683 7528581.3065 7529613.8073 -69.2714 5.0451 92.5461 run33.mat 140 4 1205 2268235 2278577 +4523864 4534878 11015 7529629.3105 7530180.1421 -67.6225 5.0434 92.8037 run33.mat 140 4 1205 2278732 2284239 +4621285 4629976 8692 7534500.6579 7534936.0052 -67.6176 5.0466 93.449 run33.mat 140 4 1206 2327444 2331790 +4630284 4650974 20691 7534951.5326 7535984.4707 -65.9728 5.0458 92.4773 run33.mat 140 4 1206 2331944 2342290 +4651281 4671995 20715 7535999.9476 7537035.3046 -64.3214 5.0454 92.5952 run33.mat 140 4 1206 2342443 2352801 +4672300 4692974 20675 7537050.4366 7538085.8016 -62.6723 5.0456 92.5483 run33.mat 140 4 1206 2352953 2363290 +4693282 4713951 20670 7538101.3289 7539134.1064 -61.0216 5.0449 92.6435 run33.mat 140 4 1206 2363444 2373779 +4714259 4717059 2801 7539149.5093 7539289.5363 -59.3701 5.0484 92.6211 run33.mat 140 4 1206 2373933 2375333 +4801297 4818244 16948 7543502.5044 7544348.0917 -59.3734 5.0473 92.8887 run33.mat 140 4 1207 2417455 2425928 +4818564 4839256 20693 7544364.0948 7545400.8748 -57.7258 5.0443 92.5801 run33.mat 140 4 1207 2426088 2436435 +4839563 4860255 20693 7545416.1669 7546450.6308 -56.0758 5.0464 92.6689 run33.mat 140 4 1207 2436588 2446935 +4860562 4881235 20674 7546466.1077 7547498.3776 -54.4239 5.0459 92.5847 run33.mat 140 4 1207 2447088 2457425 +4881542 4897097 15556 7547513.8576 7548291.9294 -52.7824 5.0456 92.7361 run33.mat 140 4 1207 2457579 2465356 +4981611 4985790 4180 7552517.4565 7552727.6124 -52.7793 5.0449 93.8242 run33.mat 140 4 1208 2507616 2509705 +4986106 5006780 20675 7552743.4155 7553775.3213 -51.1292 5.047 92.5098 run33.mat 140 4 1208 2509863 2520200 +5007087 5027798 20712 7553790.6745 7554827.7691 -49.4814 5.0468 92.6042 run33.mat 140 4 1208 2520354 2530710 +5028106 5048796 20691 7554843.2964 7555878.6915 -47.8298 5.0454 92.6092 run33.mat 140 4 1208 2530864 2541209 +5049105 5069760 20656 7555894.1445 7556923.2 -46.1818 5.0458 92.61 run33.mat 140 4 1208 2541364 2551692 +5070071 5077398 7328 7556938.7533 7557306.3253 -44.5318 5.0467 92.8775 run33.mat 140 4 1208 2551847 2555511 +5161629 5174142 12514 7561520.0786 7562144.5771 -44.5317 5.0453 93.1711 run33.mat 140 4 1209 2597629 2603885 +5174461 5195159 20699 7562160.5333 7563195.6984 -42.8778 5.0452 92.5763 run33.mat 140 4 1209 2604045 2614394 +5195466 5216140 20675 7563211.0515 7564245.0085 -41.2311 5.046 92.5791 run33.mat 140 4 1209 2614548 2624885 +5216445 5237144 20700 7564260.2617 7565294.7602 -39.5807 5.0456 92.5761 run33.mat 140 4 1209 2625037 2635387 +5237458 5257517 20060 7565310.3418 7566314.3526 -37.9344 5.0467 92.6732 run33.mat 140 4 1209 2635544 2645574 +5341892 5362472 20581 7570531.2193 7571562.5168 -36.2862 5.0464 92.8685 run33.mat 140 4 1210 2687763 2698054 +5362784 5383466 20683 7571578.1198 7572612.3366 -34.6314 5.0437 92.5392 run33.mat 140 4 1210 2698210 2708552 +5383776 5404482 20707 7572627.7166 7573661.134 -32.9843 5.0473 92.574 run33.mat 140 4 1210 2708707 2719060 +5404789 5425463 20675 7573676.3652 7574711.6826 -31.3363 5.0456 92.6534 run33.mat 140 4 1210 2719214 2729551 +5425771 5437597 11827 7574727.1907 7575317.2822 -29.6879 5.0467 92.7375 run33.mat 140 4 1210 2729705 2735618 +5521878 5529821 7944 7579529.9463 7579928.0836 -29.6904 5.0442 93.4496 run33.mat 140 4 1211 2777761 2781732 +5530133 5550821 20689 7579943.6868 7580978.344 -28.0351 5.0453 92.5144 run33.mat 140 4 1211 2781888 2792233 +5551129 5571822 20694 7580993.7472 7582030.5444 -26.3914 5.0462 92.5311 run33.mat 140 4 1211 2792387 2802734 +5572128 5592820 20693 7582045.7259 7583078.2443 -24.7407 5.047 92.5873 run33.mat 140 4 1211 2802887 2813233 +5593129 5613799 20671 7583093.5747 7584127.2183 -23.0914 5.0471 92.7243 run33.mat 140 4 1211 2813388 2823723 +5614108 5617717 3610 7584142.5487 7584322.3216 -21.4477 5.0474 93.0367 run33.mat 140 4 1211 2823878 2825682 +5701976 5718103 16128 7588536.9917 7589343.5595 -21.4421 5.045 92.8978 run33.mat 140 4 1212 2867814 2875878 +5718413 5739105 20693 7589359.0627 7590391.87 -19.7896 5.0455 92.5802 run33.mat 140 4 1212 2876033 2886379 +5739411 5760105 20695 7590407.1729 7591444.2087 -18.1418 5.0457 92.5592 run33.mat 140 4 1212 2886532 2896879 +5760412 5781104 20693 7591459.6856 7592491.8736 -16.4905 5.045 92.5773 run33.mat 140 4 1212 2897033 2907379 +5781411 5797756 16346 7592507.1048 7593326.0206 -14.8436 5.0458 92.6642 run33.mat 140 4 1212 2907533 2915706 +5882268 5885621 3354 7597551.8004 7597720.8691 -14.841 5.0467 94.5963 run33.mat 140 4 1213 2957963 2959640 +5885933 5906645 20713 7597736.5981 7598769.4085 -13.1918 5.0468 92.5305 run33.mat 140 4 1213 2959796 2970152 +5906951 5927654 20704 7598784.5931 7599821.7584 -11.5423 5.0435 92.6946 run33.mat 140 4 1213 2970305 2980657 +5927974 5948625 20652 7599837.7645 7600869.0845 -9.894 5.046 92.6002 run33.mat 140 4 1213 2980817 2991144 +5948934 5969626 20693 7600884.6622 7601919.8004 -8.2451 5.0446 92.5968 run33.mat 140 4 1213 2991298 3001644 +5969930 5978055 8126 7601935.126 7602342.5087 -6.5949 5.0455 92.7126 run33.mat 140 4 1213 3001796 3005859 +6062360 6073971 11612 7606555.9812 7607136.9952 -6.5941 5.0468 93.1138 run33.mat 140 4 1214 3048013 3053820 +6074282 6094965 20684 7607152.6737 7608188.6649 -4.9455 5.0457 92.4999 run33.mat 140 4 1214 3053975 3064317 +6095272 6115946 20675 7608204.0179 7609236.0442 -3.2986 5.0467 92.5813 run33.mat 140 4 1214 3064470 3074807 +6116257 6136959 20703 7609251.6002 7610286.9804 -1.6505 5.046 92.6024 run33.mat 140 4 1214 3074963 3085315 +6137268 6157928 20661 7610302.4336 7611335.3255 -0.0044989 5.0451 92.655 run33.mat 140 4 1214 3085469 3095800 +6242364 6262328 19965 7615557.0353 7616554.2134 1.6451 5.0467 92.878 run33.mat 140 4 1215 3138019 3148002 +6262643 6283324 20682 7616569.97 7617605.9129 3.2929 5.0462 92.6048 run33.mat 140 4 1215 3148159 3158500 +6283631 6304324 20694 7617621.3929 7618655.5484 4.9431 5.0461 92.5429 run33.mat 140 4 1215 3158654 3169001 +6304631 6325325 20695 7618670.8389 7619704.1051 6.5916 5.046 92.6041 run33.mat 140 4 1215 3169154 3179502 +6325632 6338276 12645 7619719.582 7620351.6116 8.2459 5.0465 92.5843 run33.mat 140 4 1215 3179655 3185978 +6422592 6429676 7085 7624568.4017 7624923.7136 8.248 5.0434 93.3523 run33.mat 140 4 1216 3228137 3231679 +6430004 6450668 20665 7624940.152 7625973.2935 9.891 5.0457 92.5676 run33.mat 140 4 1216 3231844 3242176 +6450980 6471666 20687 7625988.7728 7627021.1636 11.5427 5.0451 92.6095 run33.mat 140 4 1216 3242332 3252675 +6471972 6492665 20694 7627036.3482 7628073.0476 13.1913 5.0459 92.572 run33.mat 140 4 1216 3252828 3263175 +6492971 6513630 20660 7628088.2262 7629119.1191 14.844 5.0449 92.6669 run33.mat 140 4 1216 3263328 3273659 +6513934 6518375 4442 7629134.2044 7629357.1377 16.4944 5.0471 92.8393 run33.mat 140 4 1216 3273811 3276031 +6602837 6618168 15332 7633578.9975 7634345.7771 16.493 5.0448 93.0077 run33.mat 140 4 1217 3318264 3325930 +6618500 6639166 20667 7634362.3803 7635396.4844 18.143 5.0453 92.5734 run33.mat 140 4 1217 3326096 3336429 +6639473 6660166 20694 7635411.7156 7636446.3951 19.7914 5.046 92.5393 run33.mat 140 4 1217 3336583 3346930 +6660474 6681166 20693 7636461.6759 7637498.5084 21.4391 5.0445 92.617 run33.mat 140 4 1217 3347084 3357430 +6681472 6698635 17164 7637513.8113 7638369.4162 23.0879 5.0463 92.6297 run33.mat 140 4 1217 3357583 3366165 +6782916 6785518 2603 7642584.3285 7642714.4827 23.0865 5.0457 96.0695 run33.mat 140 4 1218 3408307 3409608 +6785834 6806526 20693 7642730.2893 7643763.1224 24.7371 5.0469 92.5226 run33.mat 140 4 1218 3409766 3420113 +6806833 6827526 20694 7643778.4526 7644815.4229 26.389 5.0454 92.6061 run33.mat 140 4 1218 3420266 3430613 +6827836 6848509 20674 7644830.9288 7645865.029 28.0307 5.0462 92.585 run33.mat 140 4 1218 3430768 3441105 +6848822 6869507 20686 7645880.5609 7646915.2154 29.6853 5.0456 92.6305 run33.mat 140 4 1218 3441262 3451605 +6869815 6878755 8941 7646930.7427 7647376.5728 31.3289 5.0467 92.7499 run33.mat 140 4 1218 3451759 3456229 +6963089 6973895 10807 7651593.9049 7652134.0861 31.3327 5.0458 93.2246 run33.mat 140 4 1219 3498398 3503801 +6974216 6994888 20673 7652150.0151 7653183.8855 32.9813 5.0468 92.5046 run33.mat 140 4 1219 3503961 3514298 +6995194 7015905 20712 7653199.4874 7654234.5167 34.6289 5.0452 92.5949 run33.mat 140 4 1219 3514451 3524807 +7016214 7036893 20680 7654250.0976 7655284.6949 36.2836 5.0455 92.6138 run33.mat 140 4 1219 3524961 3535301 +7037204 7057868 20665 7655300.2326 7656332.0702 37.9321 5.046 92.7088 run33.mat 140 4 1219 3535457 3545789 +7058175 7058874 700 7656347.5502 7656382.7963 39.5867 5.0402 91.9919 run33.mat 140 4 1219 3545943 3546292 +7143235 7162377 19143 7660600.591 7661557.6602 39.5833 5.0457 93.0533 run33.mat 140 4 1220 3588475 3598046 +7162696 7183368 20673 7661573.7207 7662607.4601 41.2296 5.0456 92.56 run33.mat 140 4 1220 3598206 3608542 +7183674 7204370 20697 7662622.7633 7663657.0353 42.8771 5.0455 92.512 run33.mat 140 4 1220 3608695 3619044 +7204677 7225368 20692 7663672.2665 7664708.1101 44.5321 5.0464 92.5828 run33.mat 140 4 1220 3619197 3629543 +7225673 7238994 13322 7664723.4893 7665390.4636 46.1807 5.0452 92.6934 run33.mat 140 4 1220 3629695 3636356 +7323304 7329714 6411 7669603.0369 7669925.9653 46.1751 5.0474 93.9159 run33.mat 140 4 1221 3678513 3681718 +7330025 7350727 20703 7669941.3949 7670975.5239 47.8305 5.0442 92.537 run33.mat 140 4 1221 3681874 3692225 +7351034 7371715 20682 7670990.8771 7672024.5733 49.4779 5.046 92.5996 run33.mat 140 4 1221 3692379 3702720 +7372026 7392726 20701 7672040.2519 7673076.0327 51.1285 5.0457 92.5549 run33.mat 140 4 1221 3702875 3713226 +7393037 7413692 20656 7673091.5887 7674122.5522 52.7782 5.045 92.6619 run33.mat 140 4 1221 3713381 3723709 +7414010 7419094 5085 7674138.4553 7674392.709 54.4212 5.046 92.9797 run33.mat 140 4 1221 3723868 3726410 +7503352 7518077 14726 7678607.6899 7679343.7544 54.4253 5.0448 93.1331 run33.mat 140 4 1222 3768541 3775904 +7518398 7539073 20676 7679359.9371 7680394.1504 56.0728 5.0457 92.5902 run33.mat 140 4 1222 3776065 3786402 +7539382 7560067 20686 7680409.6037 7681442.5969 57.7281 5.0472 92.5329 run33.mat 140 4 1222 3786557 3796900 +7560375 7581069 20695 7681458.1242 7682492.4925 59.3686 5.0464 92.5743 run33.mat 140 4 1222 3797054 3807401 +7581374 7599114 17741 7682507.7484 7683393.2808 61.0219 5.0463 92.7015 run33.mat 140 4 1222 3807554 3816424 +7683324 7685408 2085 7687605.7241 7687709.6713 61.0305 5.0521 96.9588 run33.mat 140 4 1223 3858531 3859573 +7685717 7706389 20673 7687725.0048 7688758.0988 62.6679 5.0465 92.5978 run33.mat 140 4 1223 3859727 3870079 +7706696 7727386 20691 7688773.5789 7689808.3939 64.3159 5.0468 92.6496 run33.mat 140 4 1223 3870217 3880563 +7727695 7748370 20676 7689823.7244 7690858.9387 65.9666 5.046 92.5796 run33.mat 140 4 1223 3880718 3891056 +7748677 7769370 20694 7690874.2919 7691909.1992 67.6189 5.0465 92.5835 run33.mat 140 4 1223 3891209 3901556 +7769675 7779213 9539 7691924.3614 7692400.4005 69.2649 5.0462 92.8046 run33.mat 140 4 1223 3901708 3906477 +7863585 7873859 10275 7696619.4901 7697132.4799 69.2642 5.0441 93.3458 run33.mat 140 4 1224 3948665 3953803 +7874180 7894870 20691 7697148.4056 7698185.6144 70.9169 5.0453 92.5636 run33.mat 140 4 1224 3953963 3964309 +7895177 7915868 20692 7698201.1533 7699233.6562 72.569 5.0458 92.5672 run33.mat 140 4 1224 3964462 3974808 +7916176 7936868 20693 7699248.9401 7700283.6644 74.2202 5.0454 92.5662 run33.mat 140 4 1224 3974962 3985309 +7937176 7957844 20669 7700298.9452 7701332.3348 75.8671 5.0464 92.7013 run33.mat 140 4 1224 3985463 3995797 +7958152 7959333 1182 7701347.6156 7701406.2086 77.5095 5.0464 93.6559 run33.mat 140 4 1224 3995951 3996542 +8043555 8062239 18685 7705619.8778 7706553.463 77.5185 5.045 93.1531 run33.mat 140 4 1225 4038655 4047997 +8062554 8083230 20677 7706569.216 7707600.4561 79.1677 5.0451 92.661 run33.mat 140 4 1225 4048154 4058493 +8083539 8104229 20691 7707615.7896 7708650.6864 80.8172 5.0449 92.6315 run33.mat 140 4 1225 4058647 4068993 +8104537 8124882 20346 7708666.2138 7709682.4679 82.4645 5.0456 92.6072 run33.mat 140 4 1225 4069147 4079319 +320814 359363 38550 7836957.9954 7838884.9182 41.2288 -21.0365 4.4189 run34.mat 1 4 1227 161907 181182 +437843 462681 24839 7842809.5642 7844050.1481 41.23 -21.0358 5.7822 run34.mat 11 4 1228 220423 232843 +542389 562057 19669 7848034.8637 7849018.6137 41.2302 -21.0367 6.4539 run34.mat 21 4 1229 272699 282533 +641078 660859 19782 7852972.0117 7853958.3035 41.2285 -21.0361 5.8883 run34.mat 31 4 1230 322046 331936 +741886 761662 19777 7858010.7924 7859001.9853 41.2283 -21.0379 5.451 run34.mat 41 4 1231 372452 382340 +842388 862212 19825 7863036.717 7864026.1656 41.2296 -21.037 5.108 run34.mat 51 4 1232 422705 432618 +942898 962656 19759 7868061.1769 7869048.6279 41.2292 -21.0372 4.8552 run34.mat 61 4 1233 472962 482841 +1043214 1063000 19787 7873077.567 7874066.5497 41.2282 -21.0361 4.6571 run34.mat 71 4 1234 523122 533016 +1145806 1165587 19782 7878207.2742 7879196.4858 41.2297 -21.0352 4.4612 run34.mat 81 4 1235 574421 584312 +1248253 1268032 19780 7883328.1834 7884317.9738 41.2257 -21.0362 4.2964 run34.mat 91 4 1236 625646 635536 +1350613 1370433 19821 7888446.9456 7889438.3112 41.2332 -21.0361 4.161 run34.mat 101 4 1237 676829 686739 +1453374 1472928 19555 7893586.9681 7894564.4345 41.2301 -21.0362 4.0074 run34.mat 111 4 1238 728211 737989 +1557898 1577399 19502 7898811.1333 7899788.6067 41.2351 -21.0361 3.9026 run34.mat 121 4 1239 780476 790227 +1662381 1681866 19486 7904035.7347 7905012.652 41.2292 -21.037 3.8172 run34.mat 131 4 1240 832720 842462 +1766678 1786189 19512 7909252.1875 7910227.6209 41.2323 -21.0365 3.734 run34.mat 141 4 1241 884871 894626 +1870916 1890718 19803 7914463.4455 7915451.8668 41.2253 -21.0357 3.6735 run34.mat 151 4 1242 936991 946893 +1975459 1994999 19541 7919692.1531 7920667.416 41.2294 -21.0364 3.5819 run34.mat 161 4 1243 989265 999036 +2080034 2095320 15287 7924920.0474 7925683.8685 41.2295 -21.0361 3.5155 run34.mat 171 4 1244 1041555 1049205 +2095571 2099449 3879 7925696.4211 7925889.9325 41.231 -21.0386 3.4735 run34.mat 171 4 1244 1049324 1051263 +2184598 2203977 19380 7930148.3054 7931118.8079 41.2301 -21.0373 3.4436 run34.mat 181 4 1245 1093839 1103529 +2291118 2310540 19423 7935475.3202 7936447.0754 41.2302 -21.0372 3.3787 run34.mat 191 4 1246 1147102 1156813 +2397543 2417070 19528 7940795.1017 7941771.7614 41.2341 -21.0358 3.3086 run34.mat 201 4 1247 1200317 1210080 +2504146 2513815 9670 7946125.0857 7946610.1357 41.2255 -21.0355 3.2628 run34.mat 211 4 1248 1253620 1258455 +2514153 2523522 9370 7946627.0392 7947094.9439 41.2319 -21.0351 3.2107 run34.mat 211 4 1248 1258624 1263309 +2612705 2632153 19449 7951553.7374 7952527.2152 41.231 -21.0359 3.1721 run34.mat 221 4 1249 1307902 1317627 +357019 359140 2122 8033903.0312 8034008.2604 41.2218 -0.0034661 7.7006 run35.mat 1 3 1251 188700 189760 +359406 360618 1213 8034021.4574 8034081.5884 41.2297 -0.023128 7.4962 run35.mat 1 3 1251 189893 190499 +360888 368482 7595 8034094.9839 8034473.3932 41.2245 -0.0015315 7.9794 run35.mat 1 3 1251 190634 194431 +368734 369533 800 8034485.9958 8034526.119 41.2317 -0.015314 7.9816 run35.mat 1 3 1251 194557 194957 +369871 370681 811 8034543.1622 8034584.0052 41.229 0.014437 7.6472 run35.mat 1 3 1251 195126 195531 +370934 373436 2503 8034596.7624 8034722.9221 41.2269 -0.015835 7.8251 run35.mat 1 3 1251 195657 196908 +373709 374400 692 8034736.6878 8034771.2838 41.2303 0.016631 7.7477 run35.mat 1 3 1251 197045 197390 +374663 377533 2871 8034784.3347 8034926.7523 41.2253 0.0052287 7.3355 run35.mat 1 3 1251 197522 198957 +377871 382761 4891 8034943.5248 8035188.3184 41.2251 -0.0074922 7.364 run35.mat 1 3 1251 199126 201571 +383015 383133 119 8035201.0721 8035206.9971 41.2947 -0.020985 7.5357 run35.mat 1 3 1251 201698 201757 +383471 386733 3263 8035223.9686 8035388.2442 41.2394 -0.0021836 7.2102 run35.mat 1 3 1251 201926 203557 +387071 389133 2063 8035405.2839 8035509.2363 41.2225 0.011019 6.852 run35.mat 1 3 1251 203726 204757 +389471 390081 611 8035526.1288 8035556.3927 41.2432 -0.0016878 7.0629 run35.mat 1 3 1251 204926 205231 +390348 390491 144 8035569.6394 8035576.7341 41.2443 -0.010349 5.6955 run35.mat 1 3 1251 205365 205436 +390793 391133 341 8035591.7172 8035608.5856 41.2309 -0.016587 7.0527 run35.mat 1 3 1251 205587 205757 +391471 391817 347 8035625.3548 8035642.5209 41.2198 0.0034537 6.1503 run35.mat 1 3 1251 205926 206099 +392088 392333 246 8035655.9661 8035668.1213 41.247 -0.011451 7.1904 run35.mat 1 3 1251 206235 206357 +392671 392733 63 8035684.8905 8035687.9665 41.2017 0.045579 6.203 run35.mat 1 3 1251 206526 206557 +393279 393533 255 8035715.0552 8035727.6569 41.2693 -0.010348 7.2285 run35.mat 1 3 1251 206830 206957 +393871 395362 1492 8035744.4261 8035818.8108 41.2231 -0.023744 7.1271 run35.mat 1 3 1251 207126 207872 +395624 399533 3910 8035831.9135 8036027.5728 41.2261 0.02168 6.9334 run35.mat 1 3 1251 208003 209957 +399871 400562 692 8036044.616 8036079.4587 41.2366 0.0012328 6.8691 run35.mat 1 3 1251 210126 210472 +400823 400888 66 8036092.6192 8036095.8967 41.2183 0.16374 6.409 run35.mat 1 3 1251 210602 210635 +401144 402032 889 8036108.8052 8036153.5813 41.2226 -0.0068036 6.4717 run35.mat 1 3 1251 210763 211207 +402341 408333 5993 8036169.1622 8036467.8553 41.2269 -0.0090845 6.8909 run35.mat 1 3 1251 211361 214358 +408738 413133 4396 8036487.9486 8036709.2081 41.2287 -0.012873 7.2748 run35.mat 1 3 1251 214560 216758 +413471 414333 863 8036726.2478 8036769.6024 41.2257 -0.0069321 7.3465 run35.mat 1 3 1251 216927 217358 +414671 417789 3119 8036786.5057 8036942.4357 41.2294 0.0091767 7.3216 run35.mat 1 3 1251 217527 219086 +418108 420473 2366 8036958.3887 8037076.2001 41.235 -0.0074696 7.189 run35.mat 1 3 1251 219245 220428 +420811 422333 1523 8037092.9726 8037168.4986 41.2169 -0.014321 7.2147 run35.mat 1 3 1251 220597 221358 +422671 423549 879 8037185.2711 8037228.84 41.2463 0.0082093 7.2426 run35.mat 1 3 1251 221527 221966 +423870 426333 2464 8037244.769 8037368.583 41.2342 -0.0029343 7.3327 run35.mat 1 3 1251 222126 223358 +426671 428333 1663 8037385.6227 8037469.4098 41.228 0.011438 7.2487 run35.mat 1 3 1251 223527 224358 +428671 428831 161 8037486.4495 8037494.5156 41.2791 0.021694 6.9444 run35.mat 1 3 1251 224527 224607 +429084 430473 1390 8037507.2702 8037576.8249 41.2137 -0.013815 7.2162 run35.mat 1 3 1251 224733 225428 +430811 432540 1730 8037593.732 8037680.218 41.2227 0.024341 7.3153 run35.mat 1 3 1251 225597 226462 +432793 434333 1541 8037692.8733 8037769.8002 41.2331 -0.013142 7.4299 run35.mat 1 3 1251 226588 227358 +434862 435361 500 8037796.0454 8037820.8023 41.2002 -0.074359 7.2714 run35.mat 1 3 1251 227623 227872 +435620 436073 454 8037833.6521 8037856.1268 41.2461 0.018879 7.4503 run35.mat 1 3 1251 228002 228228 +436411 436677 267 8037872.896 8037886.0931 41.2049 -0.038553 7.4329 run35.mat 1 3 1251 228397 228530 +436938 442891 5954 8037899.0421 8038197.4498 41.2248 0.0021431 7.3475 run35.mat 1 3 1251 228661 231638 +443196 453065 9870 8038212.829 8038706.3345 41.2259 -0.0028079 7.3265 run35.mat 1 3 1251 231790 236724 +521031 522361 1331 8042100.5027 8042167.5525 41.239 0.019963 10.3463 run35.mat 1 3 1252 270709 271374 +522614 537107 14494 8042180.3071 8042908.4117 41.2232 -0.0037684 10.8125 run35.mat 1 3 1252 271501 278747 +537425 555814 18390 8042924.379 8043842.9183 41.2271 -0.0065416 9.6316 run35.mat 1 3 1252 278906 288101 +556152 562992 6841 8043859.9581 8044202.3271 41.2298 -0.006085 8.7169 run35.mat 1 3 1252 288270 291690 +563244 564880 1637 8044214.8321 8044296.0151 41.2271 0.0087401 8.6695 run35.mat 1 3 1252 291816 292634 +565134 565374 241 8044308.7885 8044320.8877 41.2232 0.019673 7.615 run35.mat 1 3 1252 292762 292882 +565712 569852 4141 8044337.9274 8044546.6388 41.227 0.0057955 8.3082 run35.mat 1 3 1252 293051 295121 +570103 576614 6512 8044559.1133 8044882.8177 41.2249 -0.0049325 7.8716 run35.mat 1 3 1252 295246 298502 +576952 579374 2423 8044899.7212 8045020.8464 41.2217 -0.011856 7.629 run35.mat 1 3 1252 298671 299882 +579712 580184 473 8045037.7499 8045061.1693 41.2251 -0.022085 7.6098 run35.mat 1 3 1252 300051 300287 +580493 581508 1016 8045076.4997 8045126.8569 41.2198 -0.02541 7.6966 run35.mat 1 3 1252 300441 300949 +581765 582574 810 8045139.6075 8045179.7444 41.22 -0.061453 7.4813 run35.mat 1 3 1252 301077 301482 +582912 586650 3739 8045196.5136 8045383.5022 41.2235 -0.0021353 7.3953 run35.mat 1 3 1252 301651 303520 +587024 588432 1409 8045402.3606 8045473.357 41.2292 0.0045744 7.0417 run35.mat 1 3 1252 303707 304411 +588685 590367 1683 8045486.1142 8045570.6563 41.2264 -0.01679 6.789 run35.mat 1 3 1252 304538 305379 +590630 590982 353 8045583.8088 8045601.4122 41.2179 -0.0048651 7.0015 run35.mat 1 3 1252 305510 305686 +591244 591309 66 8045614.5147 8045617.7653 41.2941 0.11409 6.8888 run35.mat 1 3 1252 305817 305850 +591570 591623 54 8045630.8178 8045633.4684 41.2137 -0.10214 8.5403 run35.mat 1 3 1252 305980 306007 +591873 592711 839 8045645.9708 8045687.8788 41.2288 -0.0071791 7.7899 run35.mat 1 3 1252 306132 306551 +592974 593762 789 8045701.0314 8045740.4389 41.2189 -0.0062493 7.3117 run35.mat 1 3 1252 306682 307076 +594039 595141 1103 8045754.2916 8045809.3095 41.2314 -0.040243 7.1246 run35.mat 1 3 1252 307215 307765 +595405 595890 486 8045822.4048 8045846.4623 41.2255 -0.047924 6.6753 run35.mat 1 3 1252 307897 308140 +596160 596754 595 8045859.8552 8045889.3194 41.2141 -0.01708 6.5575 run35.mat 1 3 1252 308275 308572 +597092 597172 81 8045906.0853 8045910.0536 41.244 -0.10846 4.8628 run35.mat 1 3 1252 308741 308781 +597473 601836 4364 8045924.9841 8046142.1892 41.2179 0.0002761 6.5852 run35.mat 1 3 1252 308931 311113 +602279 603491 1213 8046164.3485 8046224.9737 41.2201 -0.012993 6.8185 run35.mat 1 3 1252 311334 311940 +603757 604238 482 8046238.2793 8046262.3393 41.2133 0.00088823 6.322 run35.mat 1 3 1252 312073 312314 +604499 607134 2636 8046275.3947 8046408.1593 41.2235 -0.011269 6.2392 run35.mat 1 3 1252 312444 313762 +607472 607554 83 8046425.2025 8046429.3372 41.1961 0.08285 7.2437 run35.mat 1 3 1252 313932 313973 +607898 608174 277 8046446.6829 8046460.5998 41.2409 0.033575 5.5739 run35.mat 1 3 1252 314145 314283 +608512 608979 468 8046477.643 8046501.1908 41.2487 0.02679 6.2194 run35.mat 1 3 1252 314452 314685 +609314 609977 664 8046518.0827 8046551.4026 41.223 0.0089861 6.3772 run35.mat 1 3 1252 314853 315184 +610248 610354 107 8046564.9552 8046570.2562 41.2518 0.051431 5.6187 run35.mat 1 3 1252 315320 315373 +610692 610767 76 8046587.1595 8046590.9102 41.2881 0.12577 5.0346 run35.mat 1 3 1252 315542 315579 +611073 611681 609 8046606.2131 8046636.619 41.2277 -6.4463e-05 5.6855 run35.mat 1 3 1252 315732 316036 +611934 612091 158 8046649.2714 8046657.1229 41.2978 0.035497 6.3243 run35.mat 1 3 1252 316163 316241 +612394 612894 501 8046672.2758 8046697.2806 41.2212 0.017783 6.0817 run35.mat 1 3 1252 316393 316643 +613477 614109 633 8046726.4362 8046758.0423 41.224 -0.0021521 6.1826 run35.mat 1 3 1252 316934 317250 +614676 615373 698 8046786.3978 8046821.2548 41.2167 -0.052935 6.2702 run35.mat 1 3 1252 317534 317882 +615634 615829 196 8046834.3076 8046844.0596 41.1699 0.039106 6.6391 run35.mat 1 3 1252 318013 318110 +616144 616174 31 8046859.8129 8046861.3132 41.2492 0.094985 7.224 run35.mat 1 3 1252 318268 318283 +616572 616574 3 8046881.2173 8046881.3174 41.1445 -0.050781 5.9619 run35.mat 1 3 1252 318482 318483 +616912 616993 82 8046898.2209 8046902.2717 41.1863 0.027129 6.2679 run35.mat 1 3 1252 318652 318692 +684911 685001 91 8050298.0415 8050302.5245 41.2807 0.052526 8.4961 run35.mat 1 3 1253 352653 352698 +753044 804894 51851 8053704.52 8056295.058 41.2267 -0.0038609 9.7567 run35.mat 11 3 1254 386721 412646 +805232 826911 21680 8056311.8305 8057397.2893 41.2249 -0.009038 9.7604 run35.mat 11 3 1254 412815 423656 +827169 849266 22098 8057410.0895 8058515.3869 41.2276 -0.0012224 9.7631 run35.mat 11 3 1254 423785 434834 +917310 918202 893 8061916.1146 8061960.7232 41.2151 0.005322 10.2052 run35.mat 11 3 1255 468857 469303 +918534 918711 178 8061977.3264 8061986.1781 41.1975 -0.0046513 10.0333 run35.mat 11 3 1255 469469 469558 +918966 919410 445 8061998.9306 8062021.1348 41.2061 0.0032992 9.4816 run35.mat 11 3 1255 469685 469907 +919666 921480 1815 8062033.9373 8062124.8588 41.2263 -0.0047036 9.7718 run35.mat 11 3 1255 470035 470942 +921735 922052 318 8062137.7168 8062153.7011 41.2409 -0.033995 9.9316 run35.mat 11 3 1255 471070 471228 +922313 936951 14639 8062166.8616 8062898.7175 41.2255 -0.0049698 9.7196 run35.mat 11 3 1255 471359 478678 +937254 948114 10861 8062913.9927 8063457.8587 41.2267 0.0048287 9.782 run35.mat 11 3 1255 478830 484260 +948452 948923 472 8063474.6279 8063497.9956 41.21 -0.011078 10.2029 run35.mat 11 3 1255 484429 484665 +949236 951795 2560 8063513.5245 8063641.1373 41.2206 -0.010567 9.9671 run35.mat 11 3 1255 484821 486100 +1019715 1020549 835 8067038.1849 8067080.2297 41.2273 0.016315 11.359 run35.mat 21 3 1256 520062 520479 +1020805 1031083 10279 8067093.1355 8067607.2024 41.2253 -0.0036769 10.9479 run35.mat 21 3 1256 520607 525746 +1031335 1031401 67 8067619.8072 8067623.1085 41.2261 0.0014051 18.3578 run35.mat 21 3 1256 525872 525905 +1031657 1032528 872 8067635.9134 8067679.4802 41.2238 -0.011539 11.17 run35.mat 21 3 1256 526033 526469 +1032846 1036063 3218 8067695.3863 8067856.2982 41.2296 -0.011032 10.963 run35.mat 21 3 1256 526628 528236 +1036314 1048923 12610 8067868.7951 8068498.5332 41.2256 -0.0067497 10.9517 run35.mat 21 3 1256 528362 534667 +1049173 1054200 5028 8068510.9365 8068762.4277 41.2288 0.002218 11.0453 run35.mat 21 3 1256 534792 537305 +1054456 1056152 1697 8068775.3335 8068860.8346 41.225 -0.0062467 10.9909 run35.mat 21 3 1256 537433 538281 +1056404 1115763 59360 8068873.5388 8071839.3822 41.2282 -0.0029041 10.9595 run35.mat 21 3 1256 538407 568088 +1183604 1190199 6596 8075232.3376 8075563.6394 41.2264 -0.0037321 11.0765 run35.mat 21 3 1257 602010 605308 +1257866 1354004 96139 8078944.5309 8083753.6168 41.2275 -0.0020221 9.9947 run35.mat 30.8577 3 1258 639143 687214 +1421820 1428449 6630 8087143.6403 8087476.8122 41.2287 -0.0044648 9.9939 run35.mat 31 3 1259 721123 724438 +1496203 1585951 89749 8090861.4025 8095349.8838 41.2272 -0.0047316 9.2687 run35.mat 40.6755 3 1260 758317 803192 +1586260 1592203 5944 8095365.4616 8095665.0684 41.2241 0.0010564 9.3032 run35.mat 41 3 1260 803347 806319 +1660070 1666880 6811 8099056.0083 8099395.4622 41.2269 -0.002026 9.3361 run35.mat 41 3 1261 840254 843659 +1734438 1830425 95988 8102776.0112 8107575.8558 41.2262 -0.0035673 8.7062 run35.mat 50.5188 3 1262 877439 925435 +1898317 1905132 6816 8110970.3791 8111311.2468 41.2258 -0.0026334 8.7436 run35.mat 51 3 1263 959382 962790 +1972636 2068642 96007 8114684.4495 8119483.8796 41.2261 -0.0037699 8.2444 run35.mat 61 3 1264 996544 1044549 +2138588 2145337 6750 8122983.0292 8123318.7238 41.2251 -0.0028503 8.2826 run35.mat 61 3 1265 1079523 1082898 +2214740 2239588 24849 8126790.0373 8128032.8317 41.2267 -0.004814 7.8664 run35.mat 71 3 1266 1117601 1130025 +2239839 2310763 70925 8128045.2846 8131591.1129 41.2287 -0.0029062 7.8561 run35.mat 71 3 1266 1130151 1165614 +2378796 2385499 6704 8134991.5145 8135328.0952 41.2274 -0.0094435 7.908 run35.mat 71 3 1267 1199632 1202983 +2454968 2550962 95995 8138801.1226 8143600.8982 41.228 -0.0038405 7.5304 run35.mat 80.5781 3 1268 1237720 1285719 +2621086 2627850 6765 8147107.9432 8147447.4974 41.223 -0.003292 7.5525 run35.mat 81 3 1269 1320783 1324164 +2697244 2768789 71546 8150915.4525 8154491.7695 41.2273 -0.0026014 7.2428 run35.mat 90.749 3 1270 1358863 1394638 +2769039 2793242 24204 8154504.3729 8155717.5003 41.2275 -0.0032036 7.2537 run35.mat 91 3 1270 1394763 1406865 +2861135 2867920 6786 8159111.3476 8159448.474 41.2261 -0.0048521 7.2723 run35.mat 91 3 1271 1440812 1444205 +2937411 2951628 14218 8162924.9823 8163636.0248 41.2295 -0.0031322 6.9958 run35.mat 99.8968 3 1272 1478952 1486061 +2951883 2955416 3534 8163648.7775 8163824.9202 41.2236 0.0046649 7.0237 run35.mat 101 3 1272 1486189 1487955 +2955674 2967207 11534 8163837.7204 8164413.1304 41.2263 -0.0038698 6.9999 run35.mat 101 3 1272 1488084 1493851 +2967534 2980428 12895 8164429.4839 8165075.8907 41.2274 -0.0007705 6.9955 run35.mat 101 3 1272 1494014 1500462 +2980679 3031099 50421 8165088.3435 8167610.0304 41.2282 -0.0034566 6.9972 run35.mat 101 3 1272 1500587 1525798 +3031349 3033108 1760 8167622.4336 8167709.7029 41.222 0.0041138 7.0579 run35.mat 101 3 1272 1525923 1526803 +3033363 3033381 19 8167722.3542 8167723.2473 41.1413 -0.01323 5.4875 run35.mat 101 3 1272 1526930 1526939 +3103316 3110117 6802 8171221.4861 8171561.4974 41.2244 -0.0026332 7.0218 run35.mat 101 3 1273 1561908 1565309 +3179501 3191819 12319 8175028.0985 8175643.87 41.233 -0.0058653 6.7818 run35.mat 111 3 1274 1600002 1606162 +3192069 3199079 7011 8175656.3726 8176006.9842 41.2294 -0.004955 6.7625 run35.mat 111 3 1274 1606287 1609791 +3199333 3206772 7440 8176019.6891 8176392.5574 41.2339 -0.0019512 6.7831 run35.mat 111 3 1274 1609918 1613639 +3207091 3214027 6937 8176408.6392 8176756.542 41.2221 -0.0015329 6.7685 run35.mat 111 3 1274 1613798 1617266 +3214519 3222679 8161 8176781.1468 8177188.3509 41.23 -0.00022628 6.7833 run35.mat 111 3 1274 1617512 1621592 +3222933 3236848 13916 8177201.1559 8177896.1378 41.2268 -0.0039855 6.7772 run35.mat 111 3 1274 1621719 1628677 +3237099 3273599 36501 8177908.5931 8179732.8834 41.2263 -0.0029764 6.7775 run35.mat 111 3 1274 1628802 1647053 +3273849 3275481 1633 8179745.3858 8179827.0031 41.221 -0.00038297 6.7283 run35.mat 111 3 1274 1647178 1647994 +3345434 3352242 6809 8183325.7063 8183668.1881 41.2281 -0.010114 6.7915 run35.mat 111 3 1275 1682972 1686377 +3421621 3453993 32373 8187135.4225 8188752.7307 41.2275 -0.0031003 6.5803 run35.mat 121 3 1276 1721068 1737254 +3454302 3517601 63300 8188768.0611 8191934.9895 41.2261 -0.0047052 6.5815 run35.mat 121 3 1276 1737409 1769060 +3587755 3594569 6815 8195442.0617 8195783.2146 41.2226 -0.0068236 6.6061 run35.mat 121 3 1277 1804139 1807545 +3663946 3677861 13916 8199251.1586 8199948.3948 41.2303 -0.00299 6.404 run35.mat 131 3 1278 1842235 1849193 +3678111 3722495 44385 8199960.8996 8202177.3671 41.2284 -0.0045172 6.4004 run35.mat 131 3 1278 1849318 1871511 +3722806 3749892 27087 8202193.0488 8203549.3606 41.2255 -0.0028005 6.4036 run35.mat 131 3 1278 1871666 1885210 +3750216 3759919 9704 8203565.4352 8204050.4362 41.227 -0.0056314 6.4058 run35.mat 131 3 1278 1885372 1890224 +3829881 3836727 6847 8207549.8858 8207890.9976 41.2288 -0.0012158 6.4031 run35.mat 131 3 1279 1925206 1928630 +3907908 3925897 17990 8211448.8127 8212349.0103 41.2302 -0.0040529 6.2443 run35.mat 141 3 1280 1964222 1973216 +3926218 3938101 11884 8212364.9393 8212959.9215 41.2308 -0.0046006 6.2369 run35.mat 141 3 1280 1973377 1979319 +3938353 3959681 21329 8212972.5264 8214040.1909 41.2306 -0.0016142 6.2371 run35.mat 141 3 1280 1979445 1990110 +3959984 3979242 19259 8214055.2267 8215017.568 41.2245 -0.0027479 6.2416 run35.mat 141 3 1280 1990261 1999891 +3979492 4003860 24369 8215030.0704 8216248.8125 41.225 -0.0031155 6.2497 run35.mat 141 3 1280 2000016 2012200 +4074055 4080957 6903 8219755.8754 8220103.2503 41.2248 -0.0037985 6.2561 run35.mat 141 3 1281 2047299 2050750 +4152077 4152590 514 8223660.4357 8223686.0906 41.2186 -0.0051952 6.1339 run35.mat 151 3 1282 2086312 2086568 +4152842 4229813 76972 8223698.693 8227544.8366 41.2268 -0.0030029 6.0908 run35.mat 151 3 1282 2086694 2125181 +4230063 4248040 17978 8227557.4425 8228457.6255 41.2315 -0.0030622 6.0991 run35.mat 151 3 1282 2125306 2134295 +4318209 4325072 6864 8231966.2459 8232308.14 41.2255 -0.0029596 6.1064 run35.mat 151 3 1283 2169381 2172813 +4396224 4468352 72129 8235865.5214 8239472.5408 41.2278 -0.0022136 5.9545 run35.mat 161 3 1284 2208390 2244456 +4468614 4492179 23566 8239485.5394 8240663.9848 41.2295 -0.0026826 5.9597 run35.mat 161 3 1284 2244587 2256370 +4562178 4569060 6883 8244165.8284 8244508.1548 41.2247 -0.001891 5.9738 run35.mat 161 3 1285 2291371 2294812 +4640391 4684204 43814 8248073.8355 8250265.6861 41.2283 -0.0031997 5.8264 run35.mat 171 3 1286 2330479 2352386 +4684458 4736339 51882 8250278.3914 8252871.6638 41.2264 -0.0026786 5.8287 run35.mat 171 3 1286 2352513 2378456 +4806357 4811462 5106 8256373.7366 8256630.0963 41.2227 -0.0050871 5.8554 run35.mat 171 3 1287 2413466 2416019 +4811719 4813268 1550 8256642.7383 8256718.9342 41.2175 -0.0035175 5.7742 run35.mat 171 3 1287 2416147 2416922 +4884375 4980338 95964 8260272.0957 8265070.3284 41.2271 -0.0026201 5.7099 run35.mat 181 3 1288 2452477 2500460 +5050335 5057241 6907 8268574.842 8268918.3447 41.2233 -0.0024499 5.7222 run35.mat 181 3 1289 2535460 2538913 +5128570 5224497 95928 8272483.2121 8277280.3939 41.2271 -0.0025759 5.6015 run35.mat 190.9588 3 1290 2574580 2622545 +5294487 5301407 6921 8280781.794 8281126.42 41.2241 -0.0030407 5.6153 run35.mat 191 3 1291 2657542 2661002 +5372706 5468637 95932 8284690.7039 8289486.5202 41.228 -0.0025882 5.4583 run35.mat 201 3 1292 2696653 2744621 +5538632 5539767 1136 8292988.284 8293045.0458 41.2062 -0.0020951 5.5743 run35.mat 201 3 1293 2779620 2780187 +5540027 5545551 5525 8293058.0486 8293334.3019 41.2236 -0.0026398 5.4548 run35.mat 201 3 1293 2780317 2783079 +5616628 5712578 95951 8296889.0133 8301684.7151 41.2277 -0.0025779 5.3209 run35.mat 211 3 1294 2818619 2866596 +5784630 5791545 6916 8305286.9446 8305632.1827 41.2281 -0.0017583 5.3413 run35.mat 211 3 1295 2902624 2906082 +5862848 5958783 95936 8309200.2512 8313997.4304 41.2285 -0.0027 5.2007 run35.mat 221 3 1296 2941735 2989704 +6030643 6037558 6916 8317588.1125 8317933.9985 41.2231 -0.0033081 5.2061 run35.mat 221 3 1297 3025636 3029093 +499474 500129 656 8403491.313 8403524.3405 41.225 -0.0069145 582.6811 run36.mat 1 1 1299 258959 259286 +500380 506911 6532 8403536.9968 8403865.0298 41.2275 -0.001355 294.5346 run36.mat 1 1 1299 259412 262677 +507249 511711 4463 8403881.9331 8404105.076 41.2264 -0.0047041 139.8194 run36.mat 1 1 1299 262846 265077 +512049 512338 290 8404121.9792 8404136.432 41.251 -0.010802 112.8453 run36.mat 1 1 1299 265246 265391 +584455 587071 2617 8407744.1419 8407873.0414 41.2252 0.0016936 245.3373 run36.mat 11 1 1300 301451 302759 +587409 596561 9153 8407889.6678 8408347.6705 41.2275 -0.0025029 225.8803 run36.mat 11 1 1300 302928 307504 +668899 678520 9622 8411963.8067 8412445.9316 41.2286 -0.0018449 264.8392 run36.mat 21 1 1301 343674 348485 +751426 761132 9707 8416090.0631 8416577.519 41.2273 -0.0013473 243.4513 run36.mat 31 1 1302 384940 389793 +833978 843646 9669 8420218.2272 8420701.8549 41.2293 -0.0021436 226.8519 run36.mat 41 1 1303 426218 431052 +916505 926203 9699 8424345.0288 8424829.363 41.2267 -0.0021302 214.2662 run36.mat 51 1 1304 467483 472332 +1000877 1010568 9692 8428561.8477 8429048.5432 41.2307 -0.0012942 203.6485 run36.mat 61 1 1305 509671 514517 +1085246 1094916 9671 8432782.1057 8433264.8094 41.2297 -0.0014885 194.0535 run36.mat 71 1 1306 551858 556692 +1169621 1179277 9657 8437002.4186 8437483.3115 41.2288 -0.0018897 186.5694 run36.mat 81 1 1307 594047 598875 +1253973 1263661 9689 8441218.0196 8441702.1664 41.229 -0.00051331 179.9414 run36.mat 91 1 1308 636225 641069 +1340203 1349858 9656 8445530.5351 8446013.541 41.2304 -0.0038808 174.101 run36.mat 101 1 1309 679342 684169 +1424546 1434211 9666 8449748.8888 8450230.2651 41.2311 -0.0023403 169.1173 run36.mat 111 1 1310 721515 726348 +1510775 1520439 9665 8454058.5707 8454541.7326 41.2288 -0.0026884 164.4919 run36.mat 121 1 1311 764632 769464 +1597183 1606852 9670 8458381.0473 8458862.0998 41.2287 -0.0020423 160.2228 run36.mat 131 1 1312 807837 812672 +1683268 1692911 9644 8462683.4711 8463166.3743 41.2291 -0.00056905 156.4619 run36.mat 141 1 1313 850881 855703 +1769707 1779358 9652 8467005.8439 8467488.0627 41.2293 -0.0016182 152.6355 run36.mat 151 1 1314 894103 898928 +1855957 1865557 9601 8471318.7374 8471798.211 41.2268 -0.00034121 149.9406 run36.mat 161 1 1315 937230 942030 +1942135 1951772 9638 8475627.5961 8476111.0419 41.2297 -0.00080243 146.9301 run36.mat 171 1 1316 980321 985139 +2028367 2038002 9636 8479937.8825 8480421.7288 41.2282 -0.0014906 144.0892 run36.mat 181 1 1317 1023439 1028256 +2116617 2126268 9652 8484350.462 8484833.4397 41.2259 0.00047064 141.7884 run36.mat 191 1 1318 1067566 1072391 +2204889 2214552 9664 8488764.5994 8489249.0171 41.2311 -0.0021083 138.2839 run36.mat 201 1 1319 1111703 1116535 +2293152 2302811 9660 8493176.6714 8493660.7717 41.2262 0.00063863 135.0619 run36.mat 211 1 1320 1155837 1160666 +2381628 2391271 9644 8497602.5951 8498084.6511 41.2289 -0.00041574 132.2173 run36.mat 221 1 1321 1200077 1204898 +716726 757995 41270 9044088.2656 9046152.2279 41.2285 -21.0386 103.7725 run37.mat 1 4 1323 369580 390215 +835442 861272 25831 9050026.5884 9051316.5039 41.2284 -21.0366 139.7929 run37.mat 11 4 1324 428940 441856 +938185 958311 20127 9055161.1686 9056169.8851 41.2299 -21.0354 158.0715 run37.mat 21 4 1325 480314 490377 +1037052 1057178 20127 9060106.6563 9061110.8348 41.2308 -21.038 144.3978 run37.mat 31 4 1326 529750 539813 +1137602 1157730 20129 9065130.8119 9066138.81 41.2274 -21.0382 134.2072 run37.mat 41 4 1327 580027 590091 +1238196 1258271 20076 9070162.5261 9071165.1803 41.2308 -21.0345 126.4185 run37.mat 51 4 1328 630326 640364 +1338589 1358668 20080 9075183.3208 9076185.118 41.2288 -21.0357 119.8652 run37.mat 61 4 1329 680525 690564 +1439124 1459152 20029 9080210.593 9081209.6732 41.228 -21.0379 114.4599 run37.mat 71 4 1330 730795 740809 +1541585 1561620 20036 9085333.123 9086333.1826 41.2278 -21.0369 109.8508 run37.mat 81 4 1331 782027 792044 +1644006 1664157 20152 9090454.0323 9091459.8487 41.2261 -21.036 106.1867 run37.mat 91 4 1332 833240 843316 +1746250 1766409 20160 9095565.643 9096573.2738 41.2267 -21.0355 102.7901 run37.mat 101 4 1333 884364 894444 +1850746 1870893 20148 9100789.5612 9101797.1735 41.2301 -21.0351 99.8219 run37.mat 111 4 1334 936615 946688 +1955083 1975165 20083 9106006.7499 9107013.1174 41.2282 -21.0367 97.257 run37.mat 121 4 1335 988785 998827 +2059443 2079600 20158 9111224.8557 9112233.7511 41.2312 -21.0354 94.9978 run37.mat 131 4 1336 1040967 1051046 +2163878 2183928 20051 9116446.2804 9117450.3311 41.2307 -21.036 92.7186 run37.mat 141 4 1337 1093187 1103213 +2268375 2288557 20183 9121672.3797 9122681.807 41.2333 -21.0361 90.8504 run37.mat 151 4 1338 1145438 1155529 +2374767 2394935 20169 9126992.7344 9128002.12 41.2326 -21.0353 88.9464 run37.mat 161 4 1339 1198636 1208721 +2481234 2501424 20191 9132314.6447 9133326.09 41.2262 -21.0365 87.2776 run37.mat 171 4 1340 1251872 1261967 +2587719 2607768 20050 9137639.1117 9138643.5184 41.2291 -21.0367 85.5549 run37.mat 181 4 1341 1305117 1315142 +2694100 2714349 20250 9142959.2333 9143971.3172 41.2296 -21.0363 84.3361 run37.mat 191 4 1342 1358310 1368435 +2800555 2820720 20166 9148283.7232 9149291.1928 41.2313 -21.0369 82.4655 run37.mat 201 4 1343 1411540 1421623 +2909105 2929265 20161 9153709.0871 9154719.0096 41.2291 -21.0352 80.7698 run37.mat 211 4 1344 1465817 1475898 +3017764 3037938 20175 9159144.1385 9160151.4732 41.2294 -21.0367 79.1775 run37.mat 221 4 1345 1520149 1530237 +324375 325233 859 9240792.0766 9240834.6446 41.2178 -0.002598 117.1703 run38.mat 1 3 1347 178080 178509 +325483 325996 514 9240847.0478 9240872.6042 41.1953 -0.0078106 197.862 run38.mat 1 3 1347 178634 178890 +326259 326561 303 9240885.8629 9240901.0877 41.2079 -0.013245 182.0894 run38.mat 1 3 1347 179022 179173 +326816 326853 38 9240913.9431 9240915.8084 41.2144 -0.13136 201.4874 run38.mat 1 3 1347 179300 179319 +327105 327807 703 9240928.5126 9240963.9028 41.225 -0.0049767 160.0082 run38.mat 1 3 1347 179445 179796 +328075 329333 1259 9240977.4136 9241040.8336 41.2328 0.0019252 138.6663 run38.mat 1 3 1347 179930 180559 +329583 420572 90990 9241053.437 9245602.0784 41.2258 -0.0055515 145.6196 run38.mat 1 3 1347 180684 226181 +488201 493981 5781 9248983.9167 9249272.9983 41.2222 -0.012876 150.2274 run38.mat 1 3 1348 259996 262886 +494241 496610 2370 9249286.0038 9249404.442 41.2251 -0.010898 147.3292 run38.mat 1 3 1348 263017 264201 +496916 498052 1137 9249419.6235 9249475.9839 41.2191 -0.014726 145.7583 run38.mat 1 3 1348 264354 264922 +498595 499153 559 9249502.9238 9249530.6079 41.2284 -0.018366 139.0925 run38.mat 1 3 1348 265194 265473 +499714 501422 1709 9249558.4408 9249643.1798 41.2207 0.0058515 144.4845 run38.mat 1 3 1348 265753 266607 +501675 501781 107 9249655.8017 9249661.1027 41.2348 0.0056476 158.2572 run38.mat 1 3 1348 266734 266787 +502035 504655 2621 9249673.8052 9249804.8304 41.2302 -0.002253 144.7557 run38.mat 1 3 1348 266914 268224 +504924 508650 3727 9249818.2829 9250005.4069 41.2218 0.00070484 145.0526 run38.mat 1 3 1348 268358 270221 +574402 578178 3777 9253293.1583 9253482.3351 41.2275 -0.0034747 231.6636 run38.mat 1 3 1349 303099 304986 +578437 578703 267 9253495.1874 9253508.3871 41.2651 -0.0058901 240.5102 run38.mat 1 3 1349 305116 305249 +578957 579634 678 9253520.9913 9253554.5859 41.2406 0.0097795 238.1754 run38.mat 10.7419 3 1349 305376 305714 +579884 581303 1420 9253566.9917 9253637.4065 41.2292 -0.0020604 228.28 run38.mat 11 3 1349 305839 306549 +581555 583195 1641 9253649.9115 9253733.0332 41.2292 0.012575 234.2224 run38.mat 11 3 1349 306675 307495 +583464 583803 340 9253746.6987 9253763.9203 41.2252 0.012155 247.2438 run38.mat 11 3 1349 307630 307799 +584055 636506 52452 9253776.7222 9256398.3036 41.2264 -0.0055673 231.8335 run38.mat 11 3 1349 307925 334152 +702866 749311 46446 9259716.2973 9262039.9069 41.2263 -0.0040171 274.2431 run38.mat 21 3 1350 367333 390557 +816994 863446 46453 9265422.8857 9267746.2055 41.2249 -0.0038252 250.1044 run38.mat 30.5864 3 1351 424400 447627 +931346 977780 46435 9271141.895 9273461.4424 41.2271 -0.0039976 232.0284 run38.mat 41 3 1352 481579 504797 +1045662 1091964 46303 9276856.4944 9279171.875 41.2273 -0.0033799 217.8193 run38.mat 51 3 1353 538739 561891 +1161863 1208138 46276 9282667.0563 9284982.4806 41.2276 -0.0038381 206.2623 run38.mat 61 3 1354 596842 619981 +1276013 1322486 46474 9288374.5066 9290699.3216 41.2268 -0.0037699 196.5949 run38.mat 71 3 1355 653920 677157 +1392184 1438474 46291 9294183.3967 9296498.3722 41.2281 -0.0030898 188.3233 run38.mat 81 3 1356 712008 735154 +1508346 1548504 40159 9299992.0694 9301998.0839 41.2258 -0.0028389 181.341 run38.mat 90.8577 3 1357 770092 790171 +1548834 1554640 5807 9302014.4562 9302305.7362 41.2268 -0.0049086 181.3028 run38.mat 91 3 1357 790336 793240 +1624533 1670814 46282 9305799.8568 9308113.37 41.2273 -0.0033281 175.0152 run38.mat 101 3 1358 828188 851329 +1740710 1758198 17489 9311609.0471 9312484.6449 41.2295 -0.0041123 170.0028 run38.mat 111 3 1359 886279 895022 +1758448 1786996 28549 9312497.1501 9313924.7337 41.226 -0.0033488 169.3529 run38.mat 111 3 1359 895147 909422 +1856712 1903002 46291 9317407.7402 9319724.522 41.2275 -0.0036249 164.6952 run38.mat 121 3 1360 944282 967428 +1972911 2019230 46320 9323220.162 9325534.7244 41.227 -0.0031106 160.1767 run38.mat 131 3 1361 1002384 1025545 +2089105 2089377 273 9329030.3233 9329043.9259 41.2292 0.011325 166.1542 run38.mat 141 3 1362 1060484 1060620 +2089678 2135400 45723 9329058.9788 9331344.2332 41.2278 -0.0028182 156.022 run38.mat 141 3 1362 1060770 1083632 +2205256 2251582 46327 9334837.7088 9337153.1968 41.2276 -0.0025669 152.4275 run38.mat 151 3 1363 1118561 1141726 +2321225 2367549 46325 9340635.1946 9342954.0583 41.2264 -0.0031279 148.9467 run38.mat 161 3 1364 1176549 1199712 +2437633 2483700 46068 9346455.5654 9348760.1684 41.2289 -0.0035527 145.713 run38.mat 170.7251 3 1365 1234755 1257790 +2553803 2599901 46099 9352265.5702 9354572.8307 41.2281 -0.002817 142.8091 run38.mat 181 3 1366 1292843 1315893 +2671659 2707478 35820 9358159.6727 9359947.155 41.2269 -0.0026526 140.1525 run38.mat 191 3 1367 1351774 1369684 +2707733 2717950 10218 9359959.9077 9360472.873 41.2268 -0.002912 139.8456 run38.mat 191 3 1367 1369811 1374920 +2787859 2834116 46258 9363969.927 9366280.9438 41.227 -0.0029516 136.4299 run38.mat 201 3 1368 1409876 1433006 +2904083 2904128 46 9369780.8895 9369783.1585 41.1109 -0.012339 145.631 run38.mat 211 3 1369 1467990 1468013 +2904561 2933408 28848 9369804.9919 9371246.7276 41.2283 -0.0026958 133.0649 run38.mat 211 3 1369 1468229 1482653 +2933662 2950396 16735 9371259.4325 9372094.3326 41.2273 -0.0022899 133.045 run38.mat 211 3 1369 1482780 1491148 +3022073 3068423 46351 9375678.9996 9377998.2139 41.2276 -0.0017715 130.0464 run38.mat 221 3 1370 1526988 1550164 +466627 475615 8989 9464090.997 9464541.9631 41.2274 -0.002784 274.4898 run39.mat 1 1 1372 247175 251669 +475953 476415 463 9464558.9371 9464582.1382 41.2247 0.00027504 139.3667 run39.mat 1 1 1372 251838 252069 +476753 478815 2063 9464599.1121 9464702.6633 41.2307 -0.002751 141.0463 run39.mat 1 1 1372 252238 253269 +479153 480415 1263 9464719.6372 9464782.905 41.2376 -0.0093827 128.8083 run39.mat 1 1 1372 253438 254069 +480753 481314 562 9464799.8082 9464827.8636 41.2329 -0.0087957 113.5283 run39.mat 1 1 1372 254238 254518 +553465 565630 12166 9468433.6502 9469040.805 41.2263 0.0025148 229.6458 run39.mat 11 1 1373 290595 296678 +638042 647661 9620 9472663.2779 9473143.2954 41.2272 0.002146 265.3076 run39.mat 21 1 1374 332886 337695 +720784 730425 9642 9476801.3677 9477279.7141 41.2263 -0.0031285 243.4764 run39.mat 31 1 1375 374259 379079 +803127 812805 9679 9480918.7229 9481402.0244 41.2277 -0.0016485 227.1418 run39.mat 41 1 1376 415432 420271 +887529 897205 9677 9485137.5035 9485622.5506 41.228 -0.0011492 214.2296 run39.mat 51 1 1377 457635 462473 +970028 979715 9688 9489261.0119 9489748.3522 41.2285 -0.0035166 203.1212 run39.mat 61 1 1378 498886 503729 +1054387 1064057 9671 9493479.1591 9493962.6462 41.2292 -0.0014655 194.3819 run39.mat 71 1 1379 541067 545902 +1138752 1148422 9671 9497699.09 9498182.0148 41.2279 -0.0018736 186.8211 run39.mat 81 1 1380 583251 588087 +1223123 1232797 9675 9501917.9098 9502401.4624 41.2286 -0.00048837 180.0744 run39.mat 91 1 1381 625439 630276 +1307394 1316976 9583 9506131.596 9506610.844 41.2275 -0.0024687 174.4892 run39.mat 101 1 1382 667576 672368 +1391646 1401309 9664 9510345.2891 9510825.199 41.2309 -0.0056597 168.6358 run39.mat 111 1 1383 709704 714536 +1478059 1487733 9675 9514662.3124 9515149.8052 41.2293 -0.0023517 164.6835 run39.mat 121 1 1384 752912 757749 +1564274 1573923 9650 9518974.5043 9519456.9189 41.2286 -0.0003298 159.7369 run39.mat 131 1 1385 796022 800847 +1650505 1660151 9647 9523287.7041 9523768.1634 41.2269 -0.0014252 156.5489 run39.mat 141 1 1386 839139 843963 +1736917 1746564 9648 9527607.2688 9528089.876 41.2296 -0.0015612 153.245 run39.mat 151 1 1387 882347 887151 +1823138 1832779 9642 9531920.0171 9532400.7345 41.2306 -0.00097758 149.8174 run39.mat 161 1 1388 925460 930280 +1909374 1918987 9614 9536232.4493 9536711.3642 41.2292 -0.0013107 146.7556 run39.mat 171 1 1389 968579 973386 +1997594 2007234 9641 9540643.6526 9541124.8309 41.2284 -0.00083546 144.1506 run39.mat 181 1 1390 1012691 1017512 +2083820 2093459 9640 9544955.2828 9545436.2493 41.2308 -0.00041808 141.1941 run39.mat 191 1 1391 1055806 1060626 +2172264 2181919 9656 9549374.9744 9549860.151 41.2311 -0.00074591 138.3266 run39.mat 201 1 1392 1100030 1104858 +2260533 2270202 9670 9553788.3844 9554272.4412 41.2303 -0.0015849 135.1722 run39.mat 211 1 1393 1144166 1149002 +2348801 2358436 9636 9558202.0392 9558683.9161 41.2309 0.00023111 131.9663 run39.mat 221 1 1394 1188302 1193121 +277691 298075 20385 11981861.7046 11982878.9972 82.4664 -43.7513 92.8652 run4.mat -1 -1 1396 164898 175090 +298384 319078 20695 11982894.3307 11983928.5777 80.8148 -43.7511 92.5362 run4.mat -1 -1 1396 175245 185592 +319383 340058 20676 11983943.9568 11984978.0699 79.1715 -43.7505 92.6227 run4.mat -1 -1 1396 185745 196083 +340366 361039 20674 11984993.3507 11986027.8088 77.5134 -43.7513 92.6406 run4.mat -1 -1 1396 196237 206573 +361348 373443 12096 11986043.3866 11986647.2808 75.8711 -43.7514 92.6385 run4.mat -1 -1 1396 206728 212776 +457390 465135 7746 11990846.3978 11991232.8464 75.8672 -43.7504 93.7675 run4.mat -1 -1 1397 254751 258624 +465459 486137 20679 11991248.921 11992282.8067 74.2162 -43.751 92.5932 run4.mat -1 -1 1397 258786 269125 +486444 507119 20676 11992298.0379 11993331.5432 72.5718 -43.7506 92.603 run4.mat -1 -1 1397 269279 279617 +507424 528117 20694 11993346.7961 11994383.6746 70.9167 -43.7517 92.6004 run4.mat -1 -1 1397 279769 290116 +528424 549080 20657 11994398.853 11995429.4075 69.2675 -43.7507 92.7352 run4.mat -1 -1 1397 290270 300598 +549389 553283 3895 11995444.9853 11995641.295 67.6089 -43.7506 92.8187 run4.mat -1 -1 1397 300753 302700 +637382 653217 15836 11999843.3865 12000637.1289 67.6153 -43.7506 93.143 run4.mat -1 -1 1398 344751 352669 +653540 674217 20678 12000653.4124 12001687.4444 65.9684 -43.7507 92.5132 run4.mat -1 -1 1398 352830 363169 +674524 695199 20676 12001702.7396 12002735.445 64.3174 -43.7519 92.6436 run4.mat -1 -1 1398 363323 373661 +695508 716199 20692 12002750.7785 12003786.2489 62.6709 -43.751 92.6507 run4.mat -1 -1 1398 373815 384161 +716507 733163 16657 12003801.6553 12004632.6411 61.0219 -43.751 92.7249 run4.mat -1 -1 1398 384315 392644 +817421 820477 3057 12008847.3962 12009000.2442 61.0275 -43.7503 95.0811 run4.mat -1 -1 1399 434774 436303 +820800 841478 20679 12009016.5929 12010048.8206 59.3761 -43.7515 92.5755 run4.mat -1 -1 1399 436464 446804 +841787 862478 20692 12010064.2738 12011101.081 57.7258 -43.7511 92.5952 run4.mat -1 -1 1399 446958 457304 +862788 883480 20693 12011116.584 12012149.7638 56.075 -43.751 92.5724 run4.mat -1 -1 1399 457459 467806 +883786 904457 20672 12012164.9454 12013198.5956 54.4262 -43.7505 92.7008 run4.mat -1 -1 1399 467959 478294 +904765 913222 8458 12013214.0008 12013636.9719 52.7841 -43.7503 92.8878 run4.mat -1 -1 1399 478448 482677 +997196 1008557 11362 12017836.6202 12018403.4279 52.7781 -43.7508 93.605 run4.mat -1 -1 1400 524666 530347 +1008886 1029581 20696 12018420.0139 12019453.4432 51.1288 -43.7507 92.5552 run4.mat -1 -1 1400 530511 540859 +1029888 1050560 20673 12019468.7992 12020502.9117 49.478 -43.7507 92.5613 run4.mat -1 -1 1400 541012 551349 +1050868 1071561 20694 12020518.439 12021552.9815 47.8301 -43.7507 92.5513 run4.mat -1 -1 1400 551503 561850 +1071867 1092500 20634 12021568.2874 12022602.1028 46.1793 -43.7514 92.702 run4.mat -1 -1 1400 562003 572320 +1092807 1093082 276 12022617.5798 12022631.4434 44.541 -43.751 92.5125 run4.mat -1 -1 1400 572474 572611 +1177203 1196797 19595 12026836.1077 12027816.9434 44.5326 -43.7513 92.9067 run4.mat -1 -1 1401 614674 624471 +1197103 1217781 20679 12027832.125 12028865.3718 42.8782 -43.7515 92.6156 run4.mat -1 -1 1401 624624 634963 +1218086 1238782 20697 12028880.6917 12029915.4682 41.2303 -43.751 92.6675 run4.mat -1 -1 1401 635116 645464 +1239088 1259752 20665 12029930.8947 12030964.6213 39.5755 -43.7511 92.6068 run4.mat -1 -1 1401 645617 655950 +1260068 1272981 12914 12030980.5519 12031625.8974 37.9308 -43.7516 92.9305 run4.mat -1 -1 1401 656108 662565 +1357318 1364201 6884 12035842.0879 12036186.6593 37.933 -43.75 94.0316 run4.mat -1 -1 1402 704735 708177 +1364517 1385200 20684 12036202.337 12037237.5075 36.2792 -43.751 92.5249 run4.mat -1 -1 1402 708335 718677 +1385509 1406202 20694 12037253.0883 12038286.4928 34.6301 -43.7512 92.5343 run4.mat -1 -1 1402 718831 729178 +1406511 1427198 20688 12038301.9458 12039334.7199 32.982 -43.7508 92.6117 run4.mat -1 -1 1402 729333 739677 +1427507 1448165 20659 12039350.2976 12040384.6767 31.3327 -43.7501 92.6859 run4.mat -1 -1 1402 739831 750160 +1448476 1453062 4587 12040400.1064 12040628.0613 29.6901 -43.7513 92.6917 run4.mat -1 -1 1402 750316 752609 +1539227 1554479 15253 12044939.4202 12045702.2691 29.6866 -43.751 93.2754 run4.mat -1 -1 1403 795693 803320 +1554802 1575480 20679 12045718.5559 12046751.6179 28.0356 -43.7513 92.571 run4.mat -1 -1 1403 803482 813821 +1575786 1596480 20695 12046766.9238 12047801.6196 26.3862 -43.7516 92.5821 run4.mat -1 -1 1403 813974 824321 +1596791 1617462 20672 12047817.3013 12048851.2531 24.7403 -43.7512 92.6667 run4.mat -1 -1 1403 824477 834813 +1617769 1635001 17233 12048866.6061 12049727.897 23.0897 -43.7504 92.816 run4.mat -1 -1 1403 834966 843583 +1719094 1721560 2467 12053931.7866 12054056.1311 23.0923 -43.7518 94.7923 run4.mat -1 -1 1404 885637 886881 +1721867 1742547 20681 12054071.6111 12055104.0373 21.439 -43.7509 92.6032 run4.mat -1 -1 1404 887017 897358 +1742852 1763544 20693 12055119.1693 12056152.582 19.7896 -43.7514 92.6256 run4.mat -1 -1 1404 897510 907857 +1763852 1784544 20693 12056168.1093 12057204.5685 18.1411 -43.7519 92.5917 run4.mat -1 -1 1404 908011 918357 +1784851 1805525 20675 12057219.9217 12058253.8905 16.4913 -43.7515 92.6548 run4.mat -1 -1 1404 918511 928848 +1805832 1814861 9030 12058269.3674 12058719.7857 14.844 -43.7514 92.7833 run4.mat -1 -1 1404 929002 933516 +1899120 1909802 10683 12062934.6133 12063468.6767 14.8394 -43.7507 93.3118 run4.mat -1 -1 1405 975648 980989 +1910124 1930807 20684 12063484.6521 12064518.4739 13.1904 -43.7503 92.4235 run4.mat -1 -1 1405 981150 991492 +1931116 1951805 20690 12064534.0516 12065567.3596 11.5382 -43.7503 92.6498 run4.mat -1 -1 1405 991647 1001992 +1952113 1972806 20694 12065582.532 12066616.5513 9.8905 -43.7508 92.5345 run4.mat -1 -1 1405 1002146 1012493 +1973113 1993747 20635 12066631.7825 12067663.5348 8.2436 -43.7508 92.6773 run4.mat -1 -1 1405 1012646 1022964 +1994055 1994921 867 12067678.9901 12067722.6481 6.5918 -43.7505 93.5773 run4.mat -1 -1 1405 1023118 1023551 +2078968 2097842 18875 12071926.5665 12072870.6776 6.5926 -43.7514 92.9899 run4.mat -1 -1 1406 1065576 1075013 +2098166 2118846 20681 12072886.8838 12073919.1424 4.9432 -43.751 92.5411 run4.mat -1 -1 1406 1075175 1085516 +2119151 2139846 20696 12073934.3982 12074967.4038 3.2939 -43.7513 92.612 run4.mat -1 -1 1406 1085668 1096016 +2140153 2160825 20673 12074982.757 12076017.1222 1.65 -43.7507 92.6081 run4.mat -1 -1 1406 1096170 1106506 +2161131 2174760 13630 12076032.5518 12076713.7026 8.0246e-05 -43.751 92.713 run4.mat -1 -1 1406 1106659 1113474 +2259068 2265241 6174 12080929.0355 12081241.3276 -0.0015848 -43.7512 94.1116 run4.mat -1 -1 1407 1155630 1158716 +2265548 2286240 20693 12081256.5588 12082289.232 -1.6471 -43.7514 92.5903 run4.mat -1 -1 1407 1158870 1169216 +2286549 2307248 20700 12082304.5624 12083340.5544 -3.2977 -43.7511 92.6319 run4.mat -1 -1 1407 1169371 1179721 +2307554 2328227 20674 12083355.8608 12084389.3092 -4.9433 -43.7508 92.6173 run4.mat -1 -1 1407 1179874 1190211 +2328533 2349205 20673 12084404.4908 12085436.0169 -6.5952 -43.751 92.7112 run4.mat -1 -1 1407 1190364 1200700 +2349511 2354820 5310 12085451.2032 12085720.6745 -8.2431 -43.7508 93.053 run4.mat -1 -1 1407 1200853 1203508 +2440964 2455385 14422 12090025.4688 12090747.2611 -8.2457 -43.7514 93.1168 run4.mat -1 -1 1408 1246582 1253793 +2455706 2476368 20663 12090763.4438 12091795.3121 -9.8922 -43.7506 92.6315 run4.mat -1 -1 1408 1253953 1264284 +2476676 2497367 20692 12091810.9765 12092846.2151 -11.5427 -43.7514 92.6118 run4.mat -1 -1 1408 1264438 1274785 +2497673 2518355 20683 12092861.3967 12093895.4597 -13.1906 -43.7511 92.5526 run4.mat -1 -1 1408 1274938 1285279 +2518673 2536740 18068 12093911.2398 12094813.6968 -14.8468 -43.7506 92.7491 run4.mat -1 -1 1408 1285438 1294472 +2621050 2622766 1717 12099029.6987 12099116.1821 -14.8434 -43.752 96.3958 run4.mat -1 -1 1409 1336628 1337487 +2623091 2643767 20677 12099132.5664 12100164.7729 -16.4955 -43.7505 92.5834 run4.mat -1 -1 1409 1337649 1347988 +2644073 2664765 20693 12100180.2025 12101217.4122 -18.1447 -43.7513 92.5355 run4.mat -1 -1 1409 1348141 1358487 +2665073 2685768 20696 12101232.9395 12102266.1297 -19.792 -43.7513 92.6038 run4.mat -1 -1 1409 1358641 1368989 +2686076 2706746 20671 12102281.657 12103315.3259 -21.4411 -43.7509 92.6947 run4.mat -1 -1 1409 1369143 1379478 +2707054 2716839 9786 12103330.6067 12103821.3057 -23.0926 -43.7507 92.7921 run4.mat -1 -1 1409 1379632 1384526 +2801304 2811207 9904 12108041.6439 12108536.9331 -23.0916 -43.7517 93.2059 run4.mat -1 -1 1410 1426760 1431711 +2811513 2832207 20695 12108552.1147 12109587.3737 -24.7392 -43.7512 92.5927 run4.mat -1 -1 1410 1431864 1442212 +2832514 2853185 20672 12109602.8506 12110637.9468 -26.3882 -43.7508 92.5993 run4.mat -1 -1 1410 1442365 1452701 +2853494 2874188 20695 12110653.5276 12111688.7467 -28.0375 -43.7509 92.5571 run4.mat -1 -1 1410 1452856 1463203 +2874494 2895150 20657 12111704.1732 12112735.1478 -29.6849 -43.7514 92.7278 run4.mat -1 -1 1410 1463356 1473684 +2895455 2897078 1624 12112750.1724 12112830.7108 -31.3406 -43.7501 92.1444 run4.mat -1 -1 1410 1473837 1474649 +2981397 2999624 18228 12117047.4389 12117959.0439 -31.3369 -43.751 93.1069 run4.mat -1 -1 1411 1516810 1525924 +2999931 3020630 20700 12117974.3998 12119009.8617 -32.9834 -43.7508 92.6049 run4.mat -1 -1 1411 1526077 1536427 +3020937 3041608 20672 12119025.3386 12120058.1378 -34.6328 -43.7508 92.6037 run4.mat -1 -1 1411 1536581 1546917 +3041914 3062603 20690 12120073.3224 12121107.948 -36.283 -43.7511 92.6798 run4.mat -1 -1 1411 1547070 1557415 +3062912 3077158 14247 12121123.5257 12121837.6818 -37.9357 -43.7511 92.81 run4.mat -1 -1 1411 1557570 1564693 +3161455 3166888 5434 12126050.6383 12126322.3828 -37.9294 -43.7506 94.1978 run4.mat -1 -1 1412 1606843 1609559 +3167193 3187887 20695 12126337.6387 12127372.6967 -39.5818 -43.7512 92.584 run4.mat -1 -1 1412 1609712 1620060 +3188196 3208891 20696 12127388.2745 12128422.6162 -41.2311 -43.7516 92.5093 run4.mat -1 -1 1412 1620214 1630562 +3209198 3229872 20675 12128437.8474 12129471.1218 -42.8792 -43.7511 92.6329 run4.mat -1 -1 1412 1630716 1641053 +3230183 3250849 20667 12129486.8004 12130519.5274 -44.5348 -43.7511 92.7704 run4.mat -1 -1 1412 1641208 1651542 +3251156 3257238 6083 12130534.8804 12130840.6701 -46.1819 -43.7515 92.977 run4.mat -1 -1 1412 1651696 1654737 +3341520 3355168 13649 12135054.5013 12135737.9154 -46.1825 -43.7505 93.1307 run4.mat -1 -1 1413 1696879 1703704 +3355487 3376170 20684 12135753.8684 12136788.2751 -47.8321 -43.7509 92.4974 run4.mat -1 -1 1413 1703863 1714205 +3376476 3397167 20692 12136803.578 12137835.0802 -49.4791 -43.7514 92.6231 run4.mat -1 -1 1413 1714358 1724704 +3397476 3418151 20676 12137850.4137 12138886.7173 -51.1308 -43.7507 92.6416 run4.mat -1 -1 1413 1724858 1735197 +3418461 3437317 18857 12138902.3454 12139844.0347 -52.7802 -43.7509 92.6634 run4.mat -1 -1 1413 1735352 1744780 +3521836 3522828 993 12144070.5006 12144120.1197 -52.7918 -43.7516 99.0393 run4.mat -1 -1 1414 1787042 1787538 +3523152 3543813 20662 12144136.3259 12145167.6911 -54.4275 -43.7513 92.6103 run4.mat -1 -1 1414 1787700 1798030 +3544116 3564805 20690 12145182.8474 12146220.4406 -56.075 -43.751 92.6158 run4.mat -1 -1 1414 1798182 1808527 +3565116 3585794 20679 12146235.8702 12147268.9474 -57.7283 -43.7513 92.6067 run4.mat -1 -1 1414 1808682 1819022 +3586105 3606770 20666 12147284.6259 12148315.424 -59.371 -43.751 92.6423 run4.mat -1 -1 1414 1819177 1829510 +3607078 3617618 10541 12148330.8273 12148858.6185 -61.0244 -43.7512 92.8329 run4.mat -1 -1 1414 1829664 1834934 +3701899 3711048 9150 12153073.3482 12153530.1349 -61.0218 -43.7505 93.2274 run4.mat -1 -1 1415 1877077 1881652 +3711372 3732073 20702 12153546.4688 12154582.3594 -62.6717 -43.7508 92.5251 run4.mat -1 -1 1415 1881814 1892164 +3732378 3753053 20676 12154597.4914 12155631.7503 -64.3165 -43.7509 92.5927 run4.mat -1 -1 1415 1892317 1902655 +3753360 3774033 20674 12155647.2303 12156680.1467 -65.975 -43.7511 92.6093 run4.mat -1 -1 1415 1902809 1913146 +3774339 3795012 20674 12156695.3282 12157727.1084 -67.6188 -43.7506 92.6583 run4.mat -1 -1 1415 1913299 1923635 +3795318 3797656 2339 12157742.3107 12157860.1773 -69.2755 -43.7509 92.7987 run4.mat -1 -1 1415 1923788 1924957 +3881858 3899351 17494 12162070.9621 12162945.4483 -69.2738 -43.7517 93.1059 run4.mat -1 -1 1416 1967060 1975807 +3899674 3920372 20699 12162961.3596 12163998.6977 -70.9193 -43.7509 92.5851 run4.mat -1 -1 1416 1975968 1986318 +3920680 3941350 20671 12164014.0637 12165046.1787 -72.5745 -43.751 92.5268 run4.mat -1 -1 1416 1986472 1996807 +3941658 3962355 20698 12165061.7092 12166097.866 -74.2196 -43.7507 92.6311 run4.mat -1 -1 1416 1996961 2007311 +3962660 3977756 15097 12166112.998 12166866.6695 -75.8718 -43.7514 92.7199 run4.mat -1 -1 1416 2007463 2015011 +4062016 4066729 4714 12171078.2215 12171315.6061 -75.8717 -43.7516 94.6129 run4.mat -1 -1 1417 2057143 2059500 +4067035 4087734 20700 12171330.909 12172365.6316 -77.5182 -43.7508 92.5574 run4.mat -1 -1 1417 2059653 2070002 +4088040 4108752 20713 12172380.8162 12173416.4727 -79.1706 -43.7512 92.6296 run4.mat -1 -1 1417 2070155 2080512 +4109059 4129732 20674 12173431.7039 12174466.6313 -80.8196 -43.7502 92.5963 run4.mat -1 -1 1417 2080666 2091003 +4130040 4150694 20655 12174482.0342 12175514.9898 -82.4649 -43.7505 92.6537 run4.mat -1 -1 1417 2091157 2101484 +4151003 4157796 6794 12175530.443 12175870.1596 -82.4729 -42.0708 92.818 run4.mat -1 -1 1417 2101639 2105035 +4242114 4255041 12928 12180084.1037 12180731.8038 -82.4646 -42.0707 92.9126 run4.mat -1 -1 1418 2147196 2153660 +4255361 4276032 20672 12180747.9361 12181781.8502 -80.8153 -42.0717 92.5353 run4.mat -1 -1 1418 2153820 2164156 +4276341 4297046 20706 12181797.4279 12182831.3972 -79.1693 -42.0711 92.5717 run4.mat -1 -1 1418 2164311 2174664 +4297358 4318036 20679 12182847.025 12183880.4001 -77.5154 -42.0709 92.6091 run4.mat -1 -1 1418 2174819 2185159 +4318342 4337895 19554 12183895.8266 12184875.4057 -75.8633 -42.0703 92.6803 run4.mat -1 -1 1418 2185312 2195089 +4422381 4422564 184 12189096.8694 12189105.9504 -75.8722 -42.0762 102.2712 run4.mat -1 -1 1419 2237333 2237425 +4422881 4443537 20657 12189121.8033 12190156.8734 -74.2207 -42.0714 92.7104 run4.mat -1 -1 1419 2237584 2247912 +4443845 4464535 20691 12190172.2793 12191207.3632 -72.568 -42.0714 92.6387 run4.mat -1 -1 1419 2248066 2258411 +4464845 4485516 20672 12191222.7463 12192256.4422 -70.919 -42.0705 92.6536 run4.mat -1 -1 1419 2258566 2268902 +4485827 4506498 20672 12192271.875 12193306.1692 -69.2684 -42.071 92.6431 run4.mat -1 -1 1419 2269058 2279394 +4506805 4518155 11351 12193321.6461 12193887.6946 -67.6254 -42.0715 92.9383 run4.mat -1 -1 1419 2279548 2285223 +4602434 4610883 8450 12198102.595 12198522.1965 -67.622 -42.0725 93.8234 run4.mat -1 -1 1420 2327364 2331589 +4611202 4631900 20699 12198538.0262 12199573.4857 -65.9793 -42.0714 92.4992 run4.mat -1 -1 1420 2331749 2342098 +4632217 4652877 20661 12199589.3387 12200622.7966 -64.3236 -42.0717 92.6029 run4.mat -1 -1 1420 2342256 2352587 +4653185 4673876 20692 12200638.0774 12201673.0605 -62.6751 -42.072 92.6142 run4.mat -1 -1 1420 2352741 2363086 +4674184 4694858 20675 12201688.591 12202722.2226 -61.0265 -42.0712 92.7409 run4.mat -1 -1 1420 2363240 2373578 +4695164 4698195 3032 12202737.529 12202889.1421 -59.3696 -42.0704 92.8767 run4.mat -1 -1 1420 2373731 2375247 +4782530 4799198 16669 12207105.9389 12207939.554 -59.3774 -42.0709 93.0694 run4.mat -1 -1 1421 2417416 2425751 +4799519 4820197 20679 12207955.607 12208988.2357 -57.729 -42.0712 92.5624 run4.mat -1 -1 1421 2425911 2436250 +4820503 4841194 20692 12209003.6622 12210039.9198 -56.0746 -42.0711 92.6242 run4.mat -1 -1 1421 2436403 2446749 +4841503 4862179 20677 12210055.3787 12211087.4305 -54.4244 -42.0716 92.6361 run4.mat -1 -1 1421 2446904 2457242 +4862487 4878274 15788 12211102.8334 12211892.3782 -52.7744 -42.0711 92.8 run4.mat -1 -1 1421 2457396 2465290 +4962552 4966499 3948 12216108.4109 12216305.0585 -52.7802 -42.0711 94.4396 run4.mat -1 -1 1422 2507431 2509405 +4966806 4987494 20689 12216320.2897 12217354.7212 -51.1286 -42.0716 92.558 run4.mat -1 -1 1422 2509558 2519902 +4987803 5008478 20676 12217370.0516 12218404.8155 -49.4726 -42.0711 92.6196 run4.mat -1 -1 1422 2520057 2530395 +5008783 5029478 20696 12218420.1916 12219454.5223 -47.8266 -42.0714 92.6451 run4.mat -1 -1 1422 2530547 2540896 +5029784 5050457 20674 12219469.955 12220502.2122 -46.1794 -42.0709 92.6623 run4.mat -1 -1 1422 2541049 2551386 +5050762 5058355 7594 12220517.5914 12220898.9842 -44.5329 -42.071 92.8958 run4.mat -1 -1 1422 2551538 2555335 +5142889 5155127 12239 12225123.8045 12225735.9472 -44.5285 -42.0705 93.3919 run4.mat -1 -1 1423 2597604 2603723 +5155440 5176118 20679 12225751.6309 12226787.8107 -42.8783 -42.072 92.5242 run4.mat -1 -1 1423 2603879 2614219 +5176424 5197118 20695 12226803.1137 12227835.3406 -41.2293 -42.0719 92.5662 run4.mat -1 -1 1423 2614372 2624719 +5197424 5218096 20673 12227850.5252 12228884.8645 -39.5843 -42.0714 92.5911 run4.mat -1 -1 1423 2624872 2635209 +5218405 5238674 20270 12228900.5045 12229913.4293 -37.9317 -42.0713 92.7364 run4.mat -1 -1 1423 2635363 2645498 +5322997 5343575 20579 12234128.7179 12235157.8739 -36.2861 -42.0716 92.9415 run4.mat -1 -1 1424 2687661 2697951 +5343881 5364559 20679 12235173.1771 12236209.3178 -34.6366 -42.0714 92.6239 run4.mat -1 -1 1424 2698104 2708444 +5364865 5385536 20672 12236224.6237 12237257.2251 -32.9879 -42.0716 92.6336 run4.mat -1 -1 1424 2708597 2718932 +5385846 5406536 20691 12237272.8564 12238307.6714 -31.3415 -42.071 92.6479 run4.mat -1 -1 1424 2719087 2729433 +5406845 5418754 11910 12238323.0018 12238917.8845 -29.6918 -42.0715 92.7296 run4.mat -1 -1 1424 2729587 2735542 +5503034 5510924 7891 12243131.4023 12243525.2769 -29.6887 -42.0728 94.1016 run4.mat -1 -1 1425 2777684 2781629 +5511243 5531917 20675 12243541.2967 12244575.404 -28.0367 -42.0716 92.48 run4.mat -1 -1 1425 2781788 2792126 +5532224 5552921 20698 12244590.7599 12245625.9117 -26.3887 -42.071 92.5665 run4.mat -1 -1 1425 2792279 2802628 +5553228 5573918 20691 12245641.2647 12246677.2231 -24.7374 -42.0713 92.5971 run4.mat -1 -1 1425 2802782 2813127 +5574226 5594885 20660 12246692.5069 12247723.547 -23.0916 -42.0717 92.6857 run4.mat -1 -1 1425 2813281 2823611 +5595200 5598794 3595 12247739.1782 12247918.8375 -21.4324 -42.0715 92.6482 run4.mat -1 -1 1425 2823769 2825566 +5683124 5699381 16258 12252134.8869 12252948.5408 -21.4347 -42.0717 93.29 run4.mat -1 -1 1426 2867733 2875862 +5699700 5720378 20679 12252964.6227 12253999.8277 -19.7891 -42.0712 92.6252 run4.mat -1 -1 1426 2876021 2886361 +5720684 5741361 20678 12254015.1306 12255048.2755 -18.1389 -42.0716 92.6328 run4.mat -1 -1 1426 2886514 2896852 +5741669 5762360 20692 12255063.682 12256096.609 -16.4918 -42.0709 92.6589 run4.mat -1 -1 1426 2897006 2907352 +5762666 5778893 16228 12256111.7906 12256924.8603 -14.842 -42.0717 92.7362 run4.mat -1 -1 1426 2907505 2915619 +5863414 5866888 3475 12261150.777 12261325.9131 -14.8484 -42.0708 94.0659 run4.mat -1 -1 1427 2957882 2959619 +5867205 5887881 20677 12261341.8941 12262376.192 -13.1894 -42.0704 92.4825 run4.mat -1 -1 1427 2959777 2970116 +5888191 5908877 20687 12262391.763 12263423.7068 -11.541 -42.0716 92.61 run4.mat -1 -1 1427 2970271 2980614 +5909185 5929856 20672 12263439.2341 12264474.4724 -9.8929 -42.0705 92.5554 run4.mat -1 -1 1427 2980768 2991104 +5930167 5950858 20692 12264490.0254 12265524.1113 -8.2502 -42.0716 92.6128 run4.mat -1 -1 1427 2991260 3001605 +5951162 5959193 8032 12265539.4401 12265939.7149 -6.5927 -42.0719 92.6945 run4.mat -1 -1 1427 3001757 3005773 +6043440 6055123 11684 12270152.4745 12270737.4715 -6.6002 -42.0721 93.4152 run4.mat -1 -1 1428 3047899 3053740 +6055444 6076138 20695 12270753.6542 12271788.8931 -4.9477 -42.0715 92.5637 run4.mat -1 -1 1428 3053901 3064248 +6076444 6097119 20676 12271804.3196 12272836.8408 -3.3017 -42.0711 92.5107 run4.mat -1 -1 1428 3064401 3074740 +6097424 6118117 20694 12272852.0971 12273886.1355 -1.6507 -42.0711 92.5772 run4.mat -1 -1 1428 3074892 3085239 +6118425 6139079 20655 12273901.666 12274935.2074 -0.0057397 -42.0716 92.7466 run4.mat -1 -1 1428 3085393 3095720 +6223518 6243402 19885 12279155.7431 12280148.5505 1.6453 -42.0709 92.8755 run4.mat -1 -1 1429 3137941 3147884 +6243711 6264379 20669 12280164.245 12281199.7534 3.2923 -42.0716 92.5319 run4.mat -1 -1 1429 3148039 3158373 +6264686 6285379 20694 12281215.0459 12282249.3744 4.9425 -42.0703 92.6558 run4.mat -1 -1 1429 3158526 3168874 +6285686 6306356 20671 12282264.6086 12283299.0419 6.5961 -42.0711 92.6189 run4.mat -1 -1 1429 3169027 3179363 +6306665 6319311 12647 12283314.6197 12283946.0655 8.2451 -42.0706 92.7174 run4.mat -1 -1 1429 3179517 3185840 +6403577 6410629 7053 12288159.4223 12288511.716 8.2454 -42.0718 93.5573 run4.mat -1 -1 1430 3227975 3231525 +6410944 6431618 20675 12288527.5994 12289562.2398 9.8966 -42.0712 92.6464 run4.mat -1 -1 1430 3231658 3241996 +6431927 6452618 20692 12289577.6931 12290613.5003 11.5431 -42.0715 92.5584 run4.mat -1 -1 1430 3242151 3252497 +6452924 6473599 20676 12290628.8032 12291660.8162 13.1935 -42.0713 92.595 run4.mat -1 -1 1430 3252650 3262987 +6473910 6494578 20669 12291676.3727 12292708.6438 14.8434 -42.0708 92.6977 run4.mat -1 -1 1430 3263143 3273477 +6494887 6499331 4445 12292724.2247 12292947.2411 16.4964 -42.0709 92.888 run4.mat -1 -1 1430 3273632 3275854 +6583566 6598967 15402 12297159.4934 12297929.9071 16.492 -42.0714 93.0127 run4.mat -1 -1 1431 3317974 3325674 +6599283 6619956 20674 12297945.7101 12298977.6143 18.1455 -42.0713 92.6412 run4.mat -1 -1 1431 3325832 3336169 +6620266 6640960 20695 12298993.1173 12300028.0981 19.7874 -42.0716 92.6312 run4.mat -1 -1 1431 3336324 3346672 +6641267 6661945 20679 12300043.454 12301080.2729 21.4383 -42.0705 92.5777 run4.mat -1 -1 1431 3346825 3357165 +6662260 6679472 17213 12301096.0866 12301954.9647 23.09 -42.0716 92.7634 run4.mat -1 -1 1431 3357322 3365929 +6763670 6766247 2578 12306166.2932 12306294.2897 23.082 -42.0722 95.6147 run4.mat -1 -1 1432 3408029 3409318 +6766571 6787240 20670 12306310.3644 12307341.7912 24.7397 -42.0714 92.522 run4.mat -1 -1 1432 3409480 3419815 +6787547 6808239 20693 12307357.0224 12308392.4221 26.3828 -42.0714 92.5751 run4.mat -1 -1 1432 3419968 3430315 +6808545 6829240 20696 12308407.728 12309443.1281 28.0316 -42.0716 92.5532 run4.mat -1 -1 1432 3430468 3440816 +6829546 6850221 20676 12309458.202 12310493.7478 29.6838 -42.0713 92.6426 run4.mat -1 -1 1432 3440969 3451307 +6850526 6859551 9026 12310508.8797 12310960.6559 31.3313 -42.0714 92.6204 run4.mat -1 -1 1432 3451459 3455972 +6944071 6954771 10701 12315185.1346 12315722.0062 31.3336 -42.0721 93.0397 run4.mat -1 -1 1433 3498234 3503584 +6955083 6975764 20682 12315737.6122 12316768.2464 32.9815 -42.071 92.5381 run4.mat -1 -1 1433 3503740 3514081 +6976078 6996779 20702 12316784.0762 12317820.9827 34.631 -42.071 92.5924 run4.mat -1 -1 1433 3514238 3524589 +6997087 7017745 20659 12317836.3886 12318868.4668 36.2823 -42.0709 92.6311 run4.mat -1 -1 1433 3524743 3535073 +7018050 7038703 20654 12318883.5987 12319917.7368 37.9345 -42.0714 92.7743 run4.mat -1 -1 1433 3535225 3545552 +7039012 7039871 860 12319933.3769 12319976.8552 39.579 -42.0693 94.1509 run4.mat -1 -1 1433 3545707 3546136 +7124194 7143063 18870 12324190.8658 12325136.027 39.579 -42.071 92.9994 run4.mat -1 -1 1434 3588299 3597734 +7143369 7164065 20697 12325151.2116 12326186.0611 41.2336 -42.0717 92.6322 run4.mat -1 -1 1434 3597887 3608236 +7164373 7185048 20676 12326201.3419 12327233.1717 42.879 -42.0718 92.6951 run4.mat -1 -1 1434 3608390 3618728 +7185360 7206042 20683 12327248.6509 12328284.797 44.533 -42.0711 92.6535 run4.mat -1 -1 1434 3618884 3629225 +7206350 7219950 13601 12328300.0778 12328978.7839 46.1789 -42.071 92.7228 run4.mat -1 -1 1434 3629379 3636179 +7304215 7310403 6189 12333193.6778 12333501.5977 46.1843 -42.0702 93.7362 run4.mat -1 -1 1435 3678314 3681408 +7310725 7331415 20691 12333517.5731 12334554.0119 47.8288 -42.0716 92.6878 run4.mat -1 -1 1435 3681569 3691914 +7331724 7352407 20684 12334569.3454 12335601.9179 49.4788 -42.0708 92.5893 run4.mat -1 -1 1435 3692069 3702411 +7352726 7373421 20696 12335617.8745 12336653.3645 51.1281 -42.0716 92.5819 run4.mat -1 -1 1435 3702570 3712918 +7373728 7394380 20653 12336668.4848 12337700.4219 52.7781 -42.071 92.6453 run4.mat -1 -1 1435 3713072 3723399 +7394689 7399970 5282 12337716.0028 12337979.3433 54.4327 -42.0718 93.0231 run4.mat -1 -1 1435 3723553 3726194 +7484476 7499028 14553 12342205.251 12342933.0959 54.4234 -42.0713 93.4202 run4.mat -1 -1 1436 3768449 3775725 +7499350 7520041 20692 12342949.0712 12343984.0311 56.0738 -42.0715 92.5769 run4.mat -1 -1 1436 3775886 3786232 +7520351 7541026 20676 12343999.6592 12345032.4302 57.7228 -42.0718 92.6331 run4.mat -1 -1 1436 3786387 3796724 +7541339 7562022 20684 12345048.0867 12346083.5711 59.3717 -42.0709 92.6616 run4.mat -1 -1 1436 3796880 3807223 +7562328 7580230 17903 12346098.9976 12346996.1818 61.0221 -42.0713 92.7412 run4.mat -1 -1 1436 3807376 3816328 +7664401 7666331 1931 12351203.2251 12351298.9972 61.0276 -42.0699 97.7295 run4.mat -1 -1 1437 3858415 3859380 +7666649 7687321 20673 12351314.7773 12352348.0115 62.6666 -42.0721 92.6428 run4.mat -1 -1 1437 3859539 3869875 +7687629 7708318 20690 12352363.5388 12353398.3114 64.3167 -42.0717 92.5052 run4.mat -1 -1 1437 3870029 3880374 +7708626 7729303 20678 12353413.7178 12354448.866 65.9693 -42.0717 92.5255 run4.mat -1 -1 1437 3880528 3890867 +7729612 7750280 20669 12354464.3192 12355495.9758 67.6211 -42.0708 92.631 run4.mat -1 -1 1437 3891022 3901356 +7750587 7760310 9724 12355511.3287 12355997.6241 69.266 -42.0708 92.8294 run4.mat -1 -1 1437 3901510 3906371 +7844805 7854788 9984 12360223.8196 12360722.282 69.2692 -42.0711 93.287 run4.mat -1 -1 1438 3948621 3953612 +7855104 7875797 20694 12360738.2158 12361772.4581 70.9182 -42.0715 92.5705 run4.mat -1 -1 1438 3953770 3964117 +7876106 7896782 20677 12361787.6798 12362820.6424 72.5683 -42.071 92.6316 run4.mat -1 -1 1438 3964272 3974611 +7897088 7917762 20675 12362835.824 12363870.9048 74.2185 -42.0718 92.6279 run4.mat -1 -1 1438 3974764 3985101 +7918069 7938742 20674 12363886.3817 12364920.442 75.8693 -42.0711 92.7815 run4.mat -1 -1 1438 3985254 3995592 +7939048 7940569 1522 12364935.6235 12365011.0849 77.5174 -42.0721 92.9955 run4.mat -1 -1 1438 3995745 3996505 +8024900 8043194 18295 12369228.0008 12370143.2801 77.5172 -42.0711 92.9467 run4.mat -1 -1 1439 4038672 4047819 +8043513 8064182 20670 12370159.362 12371190.3579 79.1678 -42.0713 92.6102 run4.mat -1 -1 1439 4047979 4058314 +8064488 8085181 20694 12371205.7844 12372241.0234 80.8184 -42.0711 92.5818 run4.mat -1 -1 1439 4058467 4068814 +8085488 8105815 20328 12372256.5003 12373273.209 82.4644 -42.071 92.6603 run4.mat -1 -1 1439 4068968 4079131 +390334 430794 40461 10302703.5051 10304726.5659 41.2281 -21.0369 84.1829 run40.mat 1 2 1441 233098 253329 +511653 537741 26089 10308771.0273 10310075.1174 41.2289 -21.0364 110.4427 run40.mat 11 2 1442 293760 306804 +620693 641143 20451 10314224.4519 10315244.6741 41.2296 -21.0369 124.9277 run40.mat 21 2 1443 348282 358508 +723336 743651 20316 10319356.7372 10320372.2751 41.2285 -21.0373 114.9718 run40.mat 31 2 1444 399606 409764 +828229 848526 20298 10324600.9554 10325615.1268 41.2296 -21.0374 107.1319 run40.mat 41 2 1445 452055 462204 +932704 952902 20199 10329824.8195 10330834.9877 41.2295 -21.036 101.5864 run40.mat 51 2 1446 504295 514394 +1037329 1057608 20280 10335054.8508 10336070.4271 41.2292 -21.0365 96.2783 run40.mat 61 2 1447 556609 566750 +1143855 1164090 20236 10340383.3525 10341395.3384 41.2297 -21.0358 92.0578 run40.mat 71 2 1448 609874 619993 +1250399 1270789 20391 10345709.755 10346729.4267 41.2298 -21.0378 88.6993 run40.mat 81 2 1449 663149 673345 +1357011 1377421 20411 10351039.6235 10352059.682 41.2317 -21.0361 85.6592 run40.mat 91 2 1450 716458 726663 +1465218 1485734 20517 10356450.2388 10357476.4508 41.2297 -21.0362 82.7478 run40.mat 101 2 1451 770563 780822 +1573986 1594494 20509 10361888.6459 10362913.353 41.229 -21.0333 80.8245 run40.mat 111 2 1452 824950 835204 +1682573 1702882 20310 10367316.8597 10368334.515 41.2271 -21.0353 79.0322 run40.mat 121 2 1453 879246 889401 +1791117 1811688 20572 10372746.0391 10373774.8854 41.231 -21.0377 76.3851 run40.mat 131 2 1454 933519 943806 +1901517 1921990 20474 10378264.7239 10379290.1057 41.2278 -21.0366 75.2485 run40.mat 141 2 1455 988723 998960 +2012097 2032591 20495 10383794.7042 10384820.7768 41.2333 -21.0364 73.4982 run40.mat 151 2 1456 1044015 1054262 +2122757 2143534 20778 10389328.0593 10390368.3104 41.2285 -21.0366 71.2253 run40.mat 161 2 1457 1099347 1109736 +2235197 2255921 20725 10394949.9103 10395986.0548 41.2301 -21.0361 70.1969 run40.mat 171 2 1458 1155570 1165932 +2347877 2368633 20757 10400582.7382 10401623.0048 41.2292 -21.0371 68.7391 run40.mat 181 2 1459 1211912 1222290 +2460578 2481272 20695 10406220.8148 10407255.2074 41.23 -21.037 67.9588 run40.mat 191 2 1460 1268265 1278613 +2573838 2595859 22022 10411881.1458 10412984.9143 41.2286 -21.0353 62.6427 run40.mat 201 2 1461 1324898 1335909 +933521 974150 40630 10727693.2599 10729724.2714 41.2268 -21.0364 83.8611 run41.mat 1 2 1463 473525 493840 +1054876 1080808 25933 10733759.5686 10735056.4541 41.2279 -21.0364 110.8229 run41.mat 11 2 1464 534206 547172 +1163910 1184304 20395 10739211.8534 10740231.8073 41.229 -21.0377 125.0408 run41.mat 21 2 1465 588725 598922 +1266766 1287039 20274 10744354.1186 10745368.8815 41.2289 -21.0373 115.4045 run41.mat 31 2 1466 640155 650292 +1371490 1391718 20229 10749591.5945 10750602.2155 41.2297 -21.0371 107.4534 run41.mat 41 2 1467 692519 702634 +1476001 1496262 20262 10754815.9544 10755830.1183 41.2293 -21.0368 101.43 run41.mat 51 2 1468 744777 754908 +1580649 1600882 20234 10760048.8952 10761059.2139 41.23 -21.0371 96.2788 run41.mat 61 2 1469 797103 807220 +1687262 1707420 20159 10765379.3021 10766387.3906 41.2319 -21.0377 92.2657 run41.mat 71 2 1470 850412 860492 +1793711 1814105 20395 10770701.5605 10771721.3655 41.2318 -21.0367 88.5425 run41.mat 81 2 1471 903639 913837 +1900170 1920589 20420 10776024.5102 10777046.1376 41.2298 -21.0368 85.7177 run41.mat 91 2 1472 956871 967081 +2006697 2027036 20340 10781352.4308 10782369.4954 41.2296 -21.0363 83.2506 run41.mat 101 2 1473 1010137 1020307 +2113136 2133492 20357 10786676.2188 10787693.8758 41.2302 -21.0361 80.9025 run41.mat 111 2 1474 1063358 1073537 +2221688 2242034 20347 10792102.8155 10793119.5586 41.2299 -21.0372 78.9934 run41.mat 121 2 1475 1117637 1127810 +2330108 2350582 20475 10797522.4106 10798544.3899 41.2278 -21.0366 76.6176 run41.mat 131 2 1476 1171849 1182087 +2440717 2461025 20309 10803055.1777 10804069.0232 41.23 -21.0358 75.5077 run41.mat 141 2 1477 1227156 1237311 +2551258 2571804 20547 10808579.7829 10809609.2808 41.2308 -21.0357 73.336 run41.mat 151 2 1478 1282429 1292703 +2664098 2684627 20530 10814223.1501 10815248.9592 41.2287 -21.0363 71.9516 run41.mat 161 2 1479 1338852 1349116 +2776538 2797182 20645 10819842.9577 10820877.0659 41.2305 -21.0358 70.6209 run41.mat 171 2 1480 1395074 1405397 +2887140 2907770 20631 10825373.5053 10826405.3001 41.23 -21.0375 69.3467 run41.mat 181 2 1481 1450378 1460693 +2999820 3020701 20882 10831008.8086 10832053.0685 41.2305 -21.0353 67.4498 run41.mat 191 2 1482 1506720 1517161 +3113380 3134468 21089 10836685.5474 10837743.4764 41.2296 -21.0366 65.5266 run41.mat 201 2 1483 1563502 1574047 +123796 162273 38478 11373940.25 11375862.6341 41.2282 -21.0384 4.4125 run42.mat 1 4 1485 34836 44456 +242292 267134 24843 11379863.5863 11381108.0314 41.227 -21.038 5.7778 run42.mat 11 4 1486 64461 70672 +346952 366574 19623 11385096.8673 11386077.3385 41.2294 -21.0358 6.4365 run42.mat 21 4 1487 90627 95533 +447631 467384 19754 11390130.3594 11391119.2103 41.232 -21.0358 5.8809 run42.mat 31 4 1488 115798 120737 +548157 568030 19874 11395157.0577 11396150.9554 41.2316 -21.0369 5.437 run42.mat 41 4 1489 140931 145899 +650755 670601 19847 11400286.2979 11401281.8975 41.2298 -21.0357 5.1106 run42.mat 51 4 1490 166582 171543 +751309 771103 19795 11405314.3601 11406304.5511 41.2261 -21.0366 4.8709 run42.mat 61 4 1491 191721 196670 +853645 873421 19777 11410431.5716 11411422.4607 41.2296 -21.0362 4.6624 run42.mat 71 4 1492 217306 222251 +956227 976040 19814 11415561.2741 11416554.5693 41.2308 -21.037 4.4583 run42.mat 81 4 1493 242953 247906 +1058906 1078442 19537 11420695.8104 11421674.0726 41.2321 -21.0357 4.2788 run42.mat 91 4 1494 268624 273508 +1161028 1180850 19823 11425801.8653 11426792.1072 41.2322 -21.0357 4.1569 run42.mat 101 4 1495 294156 299111 +1265606 1285143 19538 11431032.1591 11432007.4065 41.2319 -21.037 4.0055 run42.mat 111 4 1496 320301 325186 +1367734 1387572 19839 11436137.7669 11437130.0454 41.2268 -21.0351 3.9345 run42.mat 121 4 1497 345834 350794 +1472522 1490625 18104 11441376.2582 11442282.3904 41.2294 -21.0363 3.8207 run42.mat 131 4 1498 372032 376558 +1490942 1492058 1117 11442298.1177 11442353.4858 41.2273 -21.0426 3.7897 run42.mat 131 4 1498 376638 376917 +1578347 1598179 19833 11446666.5936 11447659.5563 41.2279 -21.0374 3.7504 run42.mat 141 4 1499 398490 403448 +1683189 1702677 19489 11451909.209 11452884.0842 41.2323 -21.0381 3.6463 run42.mat 151 4 1500 424701 429574 +1789179 1808087 18909 11457208.9046 11458154.7515 41.2242 -21.0375 3.5861 run42.mat 161 4 1501 451200 455927 +1808348 1809005 658 11458167.7005 11458200.5135 41.2626 -21.0339 3.5343 run42.mat 161 4 1501 455992 456157 +1896010 1912858 16849 11462551.7845 11463393.786 41.2259 -21.0354 3.506 run42.mat 171 4 1502 477909 482122 +1913108 1915287 2180 11463406.1917 11463515.5358 41.2243 -21.036 3.4898 run42.mat 171 4 1502 482184 482729 +2002411 2021691 19281 11467870.7962 11468836.7112 41.2278 -21.0366 3.4374 run42.mat 181 4 1503 504510 509331 +2110717 2130282 19566 11473288.0152 11474266.055 41.2293 -21.0367 3.3837 run42.mat 191 4 1504 531588 536480 +2217267 2236747 19481 11478615.91 11479589.0931 41.2329 -21.0364 3.3031 run42.mat 201 4 1505 558227 563097 +2323742 2343258 19517 11483938.5372 11484915.5159 41.2318 -21.0352 3.2368 run42.mat 211 4 1506 584847 589726 +2432017 2450614 18598 11489353.3009 11490284.4295 41.2264 -21.0386 3.1896 run42.mat 221 4 1507 611917 616566 +2450926 2451694 769 11490299.9119 11490338.0222 41.2124 -21.0378 3.1782 run42.mat 221 4 1507 616644 616836 +294815 294867 53 11561008.7588 11561011.3803 41.2247 0.2117 10.5473 run43.mat 1 3 1509 92971 92984 +295127 296448 1322 11561024.4878 11561091.0839 41.2256 0.0045796 8.2212 run43.mat 1 3 1509 93049 93379 +296713 297956 1244 11561104.4434 11561167.1073 41.2235 -0.016981 7.8642 run43.mat 1 3 1509 93446 93756 +298213 298632 420 11561180.0635 11561201.1867 41.2448 0.0059394 7.7782 run43.mat 1 3 1509 93820 93925 +298970 299530 561 11561218.1746 11561245.9524 41.2187 -0.050218 7.529 run43.mat 1 3 1509 94009 94149 +299781 301105 1325 11561258.4028 11561324.0774 41.2286 0.00019605 7.7774 run43.mat 1 3 1509 94212 94543 +301365 308174 6810 11561336.9742 11561678.1908 41.2283 -0.00037508 7.8359 run43.mat 1 3 1509 94608 96311 +308445 312292 3848 11561691.8556 11561883.1223 41.2262 -0.010985 7.5067 run43.mat 1 3 1509 96379 97341 +312630 315846 3217 11561899.8948 11562060.9871 41.2243 0.0037174 7.4457 run43.mat 1 3 1509 97425 98229 +316161 319319 3159 11562076.8673 11562235.9044 41.2318 -0.0076151 7.233 run43.mat 1 3 1509 98308 99097 +319572 320183 612 11562248.557 11562279.1134 41.2152 -0.033025 6.5846 run43.mat 1 3 1509 99160 99313 +320503 322700 2198 11562295.1167 11562404.9896 41.225 -0.0074055 7.2483 run43.mat 1 3 1509 99393 99942 +322966 323187 222 11562418.2924 11562429.3447 41.1842 -0.025194 7.2615 run43.mat 1 3 1509 100009 100064 +323442 323492 51 11562442.0973 11562444.5978 41.2366 0.037791 5.6352 run43.mat 1 3 1509 100128 100140 +323830 327844 4015 11562461.4497 11562660.5963 41.2231 -0.014306 6.8762 run43.mat 1 3 1509 100225 101229 +328164 330712 2549 11562676.4725 11562803.688 41.235 -0.0090218 6.5734 run43.mat 1 3 1509 101309 101946 +331050 331772 723 11562820.5945 11562856.7083 41.2258 -0.015371 6.5919 run43.mat 1 3 1509 102030 102210 +332110 333126 1017 11562873.6149 11562924.4344 41.2326 -0.038518 5.9318 run43.mat 1 3 1509 102295 102549 +333710 335786 2077 11562953.6456 11563056.7527 41.2331 -0.014447 7.4108 run43.mat 1 3 1509 102695 103214 +336095 337971 1877 11563072.0861 11563165.1786 41.2267 -0.0088 7.3853 run43.mat 1 3 1509 103291 103760 +338221 338860 640 11563177.5844 11563209.2934 41.2113 -0.025977 7.821 run43.mat 1 3 1509 103823 103983 +339113 342721 3609 11563221.957 11563403.8486 41.2296 -0.004487 7.2781 run43.mat 1 3 1509 104046 104948 +342986 346861 3876 11563417.2081 11563610.8271 41.2205 -0.0027896 7.4017 run43.mat 1 3 1509 105014 105983 +347379 348011 633 11563636.6346 11563668.1217 41.2276 -0.009051 7.3124 run43.mat 1 3 1509 106112 106270 +348261 358172 9912 11563680.577 11564177.7544 41.2244 -0.0060619 7.3051 run43.mat 1 3 1509 106333 108811 +358510 374189 15680 11564194.7941 11564977.2002 41.2247 -0.007986 7.3289 run43.mat 1 3 1509 108896 112816 +374445 375649 1205 11564990.0027 11565050.2143 41.2309 0.011886 7.3052 run43.mat 1 3 1509 112880 113181 +375955 385951 9997 11565065.5172 11565566.77 41.2265 -0.0032825 7.3411 run43.mat 1 3 1509 113257 115756 +386202 386209 8 11565579.2229 11565579.5702 41.2492 0.0041016 6.764 run43.mat 1 3 1509 115818 115820 +386461 388726 2266 11565592.0726 11565704.4461 41.2248 -0.0019018 7.2952 run43.mat 1 3 1509 115883 116449 +389036 390841 1806 11565719.8262 11565809.9654 41.2244 0.018418 7.3637 run43.mat 1 3 1509 116527 116978 +456817 457103 287 11569108.5292 11569122.9504 41.2269 0.017428 10.0264 run43.mat 1 3 1510 133473 133545 +457356 458351 996 11569135.7075 11569185.879 41.2146 0.017411 9.2376 run43.mat 1 3 1510 133608 133857 +458608 474630 16023 11569198.8378 11570001.4156 41.2266 -0.0031957 10.1731 run43.mat 1 3 1510 133921 137927 +474892 477462 2571 11570014.4142 11570141.9196 41.221 0.0087641 10.1788 run43.mat 1 3 1510 137992 138635 +477713 485883 8171 11570154.3725 11570562.2145 41.2255 -0.0025065 10.0183 run43.mat 1 3 1510 138698 140740 +486133 494074 7942 11570574.7169 11570971.8468 41.2237 -0.0065682 9.2396 run43.mat 1 3 1510 140803 142788 +494412 503091 8680 11570988.7507 11571422.8733 41.227 0.00020085 8.7909 run43.mat 1 3 1510 142872 145042 +503401 505713 2313 11571438.3797 11571554.0129 41.2344 0.010502 8.7711 run43.mat 1 3 1510 145120 145698 +506014 515573 9560 11571569.0658 11572048.707 41.224 -0.0049244 8.2972 run43.mat 1 3 1510 145773 148163 +515823 516214 392 11572061.1127 11572080.5153 41.227 0.012445 7.6047 run43.mat 1 3 1510 148225 148323 +516552 516834 283 11572097.2878 11572111.2815 41.2357 0.039191 8.2038 run43.mat 1 3 1510 148408 148478 +517172 518282 1111 11572128.054 11572183.1354 41.2308 -0.0029084 8.0029 run43.mat 1 3 1510 148562 148840 +518533 519032 500 11572195.5907 11572220.3525 41.2206 -0.040145 7.6073 run43.mat 1 3 1510 148903 149027 +519334 519634 301 11572235.3386 11572250.2769 41.2572 -0.016617 8.6007 run43.mat 1 3 1510 149103 149178 +519972 520231 260 11572267.3166 11572280.3737 41.1514 0.011255 7.1279 run43.mat 1 3 1510 149262 149327 +520540 520849 310 11572295.9514 11572311.5291 41.2318 -0.075112 7.7595 run43.mat 1 3 1510 149404 149482 +521163 521403 241 11572327.3589 11572339.4582 41.1855 0.06793 7.9969 run43.mat 1 3 1510 149560 149620 +521972 522922 951 11572368.1434 11572416.0361 41.2209 -0.015567 7.534 run43.mat 1 3 1510 149762 150000 +523183 525172 1990 11572429.194 11572529.2134 41.2293 -0.008394 7.7308 run43.mat 1 3 1510 150065 150563 +525426 526902 1477 11572541.9187 11572615.7495 41.2265 0.01144 7.6786 run43.mat 1 3 1510 150626 150995 +527156 528373 1218 11572628.4548 11572689.3301 41.22 0.0060029 7.7925 run43.mat 1 3 1510 151059 151363 +528626 529969 1344 11572701.9854 11572769.1624 41.2285 -0.015309 7.1865 run43.mat 1 3 1510 151426 151762 +530536 531219 684 11572797.5233 11572831.6864 41.2246 -0.043177 7.502 run43.mat 1 3 1510 151904 152075 +531473 532614 1142 11572844.3913 11572901.4633 41.219 0.024621 6.9734 run43.mat 1 3 1510 152138 152423 +532965 535493 2529 11572919.02 11573045.075 41.2283 0.00403 7.2292 run43.mat 1 3 1510 152511 153143 +535795 537163 1369 11573060.0581 11573127.9288 41.2352 -0.014074 7.2714 run43.mat 1 3 1510 153218 153560 +537735 538630 896 11573156.3074 11573200.7111 41.2314 -0.00034223 7.051 run43.mat 1 3 1510 153703 153927 +538886 539565 680 11573213.412 11573247.0992 41.2359 -0.018294 6.6107 run43.mat 1 3 1510 153991 154161 +539877 540372 496 11573262.5785 11573287.1369 41.2063 -0.040977 6.1536 run43.mat 1 3 1510 154239 154363 +540625 541080 456 11573299.689 11573322.2629 41.2437 -0.032249 6.4577 run43.mat 1 3 1510 154426 154540 +541333 541954 622 11573334.815 11573365.6247 41.2296 -0.03798 7.0291 run43.mat 1 3 1510 154603 154758 +542292 543769 1478 11573382.3939 11573455.6724 41.2344 -0.021891 6.3991 run43.mat 1 3 1510 154843 155212 +544026 544421 396 11573468.4229 11573488.02 41.2224 0.035304 6.6129 run43.mat 1 3 1510 155276 155375 +544674 545093 420 11573500.6298 11573521.753 41.2384 -0.0131 7.0448 run43.mat 1 3 1510 155439 155543 +545396 547110 1715 11573537.0282 11573623.4368 41.2337 -0.0014805 6.5044 run43.mat 1 3 1510 155619 156048 +547364 548231 868 11573636.2418 11573679.9502 41.2314 0.0051789 6.4948 run43.mat 1 3 1510 156111 156328 +548487 549025 539 11573692.856 11573719.9784 41.2431 0.0068066 5.9503 run43.mat 1 3 1510 156392 156526 +549426 550421 996 11573740.1942 11573789.6672 41.228 -0.0055656 6.3633 run43.mat 1 3 1510 156627 156876 +550674 551718 1045 11573802.2193 11573854.0153 41.2317 -0.0080358 6.1641 run43.mat 1 3 1510 156939 157200 +619100 635582 16483 11577225.6669 11578050.162 41.2273 -0.00073257 9.7677 run43.mat 11 3 1511 174046 178166 +635849 643248 7400 11578063.5145 11578432.0643 41.2259 -0.0037127 9.742 run43.mat 11 3 1511 178233 180083 +643511 659970 16460 11578445.1125 11579266.048 41.2244 -0.0058416 9.7485 run43.mat 11 3 1511 180149 184264 +660274 665574 5301 11579281.3737 11579548.1605 41.2291 -0.0063389 9.7697 run43.mat 11 3 1511 184340 185665 +665878 676544 10667 11579563.3636 11580096.8206 41.2274 -0.0072695 9.7632 run43.mat 11 3 1511 185741 188408 +676795 709251 32457 11580109.3732 11581730.6433 41.2268 -0.004646 9.7634 run43.mat 11 3 1511 188470 196585 +709509 715160 5652 11581743.5483 11582027.9167 41.2211 0.0052489 9.7769 run43.mat 11 3 1511 196649 198062 +783196 791236 8041 11585427.7825 11585831.4108 41.2227 -0.0051081 9.819 run43.mat 11 3 1512 215071 217082 +791488 796576 5089 11585843.9228 11586097.4291 41.2256 -0.0098272 9.719 run43.mat 11 3 1512 217145 218417 +796876 817728 20853 11586112.5531 11587154.82 41.2258 -0.0046093 9.7495 run43.mat 11 3 1512 218492 223705 +887260 890721 3462 11590630.2736 11590803.3902 41.2282 0.00040659 11.2644 run43.mat 21 3 1513 241089 241954 +890979 907423 16445 11590816.2951 11591635.7396 41.2267 -0.00097127 10.9383 run43.mat 21 3 1513 242019 246130 +907677 983501 75825 11591648.6406 11595443.8865 41.2268 -0.0042108 10.9673 run43.mat 21 3 1513 246194 265150 +1051319 1057945 6627 11598834.6716 11599167.0416 41.2255 -0.0035752 11.0674 run43.mat 21 3 1514 282105 283762 +1127716 1166213 38498 11602656.2106 11604581.3852 41.2243 -0.0025859 9.9955 run43.mat 31 3 1515 301206 310830 +1166522 1223739 57218 11604596.9661 11607455.9871 41.2262 -0.0047697 9.9932 run43.mat 31 3 1515 310907 325212 +1291568 1298240 6673 11610848.2631 11611183.6699 41.2233 0.00023641 10.0782 run43.mat 31 3 1516 342170 343838 +1365957 1461958 96002 11614566.9077 11619368.8316 41.2277 -0.0049709 9.2718 run43.mat 40.9499 3 1517 360768 384770 +1529852 1536621 6770 11622761.5315 11623100.3739 41.2252 0.00047804 9.3335 run43.mat 41 3 1518 401744 403436 +1608085 1664887 56803 11626676.0347 11629513.5201 41.2267 -0.0048095 8.7065 run43.mat 51 3 1519 421303 435504 +1665138 1704058 38921 11629526.1738 11631474.0542 41.2277 -0.0039379 8.7064 run43.mat 51 3 1519 435567 445298 +1774053 1780875 6823 11634971.757 11635312.9727 41.2254 -0.0019753 8.743 run43.mat 51 3 1520 462796 464502 +1848351 1944357 96007 11638687.5909 11643489.9909 41.2258 -0.0044369 8.2443 run43.mat 61 3 1521 481372 505375 +2012266 2019009 6744 11646883.2549 11647221.7149 41.228 -0.0074272 8.2766 run43.mat 61 3 1522 522352 524038 +2088411 2184437 96027 11650690.0044 11655490.4015 41.2272 -0.0030984 7.8588 run43.mat 71 3 1523 541390 565397 +2254570 2261342 6773 11658998.9923 11659336.3747 41.2267 -0.0077282 7.8696 run43.mat 71 3 1524 582932 584624 +2330740 2348237 17498 11662809.5097 11663684.6137 41.2237 -0.0037133 7.5363 run43.mat 81 3 1525 601975 606349 +2348488 2350625 2138 11663697.1685 11663803.8561 41.2225 0.0024889 7.5665 run43.mat 81 3 1525 606412 606946 +2350887 2357627 6741 11663816.8547 11664151.2465 41.2279 -0.0037144 7.5299 run43.mat 81 3 1525 607011 608697 +2357877 2389762 31886 11664163.6497 11665757.6168 41.2282 -0.0044797 7.5211 run43.mat 81 3 1525 608759 616731 +2390020 2426739 36720 11665770.4169 11667607.3374 41.2302 -0.0045165 7.5335 run43.mat 81 3 1525 616795 625975 +2496881 2503666 6786 11671113.8508 11671453.1897 41.2274 -0.003482 7.5437 run43.mat 81 3 1526 643512 645208 +2582890 2678896 96007 11675414.5223 11680216.0656 41.2279 -0.002996 7.2453 run43.mat 91 3 1527 665015 689018 +2747025 2753818 6794 11683620.5218 11683961.682 41.224 -0.0038739 7.2746 run43.mat 91 3 1528 706050 707749 +2823203 2877486 54284 11687431.0865 11690147.1891 41.2277 -0.0042584 6.9957 run43.mat 101 3 1529 725096 738667 +2877737 2908312 30576 11690159.7415 11691684.9944 41.2285 -0.0020466 6.9995 run43.mat 101 3 1529 738730 746374 +2908625 2919196 10572 11691700.5264 11692230.9121 41.2349 -0.0011207 6.9932 run43.mat 101 3 1529 746452 749095 +2989311 2996074 6764 11695737.7843 11696076.2261 41.2238 -0.0082974 7.0417 run43.mat 101 3 1530 766624 768315 +3065469 3091897 26429 11699547.2862 11700866.5244 41.2281 -0.0016465 6.7728 run43.mat 111 3 1531 785665 792272 +3092147 3114486 22340 11700878.9301 11701996.3578 41.2309 -0.0028695 6.7729 run43.mat 111 3 1531 792335 797919 +3114738 3161432 46695 11702008.9627 11704343.2615 41.2289 -0.0036709 6.7795 run43.mat 111 3 1531 797982 809657 +3231582 3238388 6807 11707849.8897 11708190.6461 41.227 -0.0017768 6.8012 run43.mat 111 3 1532 827195 828897 +3307715 3310830 3116 11711657.8162 11711813.3654 41.2183 -0.0025185 6.6861 run43.mat 121 3 1533 846229 847008 +3311081 3378578 67498 11711826.0192 11715200.1865 41.2273 -0.0031994 6.5751 run43.mat 121 3 1533 847071 863946 +3378841 3386446 7606 11715213.2321 11715593.1037 41.2302 -0.0022628 6.5812 run43.mat 121 3 1533 864012 865912 +3386702 3386865 164 11715606.0121 11715614.2311 41.2057 0.014155 6.6973 run43.mat 121 3 1533 865976 866017 +3387121 3393740 6620 11715627.1396 11715959.611 41.2276 -0.002695 6.5718 run43.mat 121 3 1533 866081 867737 +3393990 3403695 9706 11715972.1158 11716456.6737 41.2268 -0.0041615 6.5935 run43.mat 121 3 1533 867799 870225 +3473621 3480431 6811 11719953.6425 11720294.2447 41.2283 -0.0064842 6.5975 run43.mat 121 3 1534 887707 889410 +3549809 3551988 2180 11723760.4025 11723869.4324 41.2151 -0.013926 6.4805 run43.mat 131 3 1535 906755 907300 +3552320 3558231 5912 11723886.1731 11724183.2253 41.2255 0.00093546 6.3909 run43.mat 131 3 1535 907383 908861 +3558483 3618621 60139 11724195.8279 11727203.3831 41.2279 -0.0026785 6.3997 run43.mat 131 3 1535 908924 923959 +3618873 3639719 20847 11727215.8881 11728257.7287 41.2312 -0.0018517 6.405 run43.mat 131 3 1535 924022 929233 +3640026 3645752 5727 11728273.0846 11728557.5415 41.2221 -0.00188 6.408 run43.mat 131 3 1535 929310 930742 +3715924 3716862 939 11732066.9994 11732114.4859 41.2093 -0.0009801 6.5976 run43.mat 131 3 1536 948285 948520 +3717114 3722811 5698 11732127.2434 11732414.4419 41.232 -0.0045331 6.4054 run43.mat 131 3 1536 948583 950008 +3792112 3798002 5891 11735876.612 11736171.973 41.2244 -0.005073 6.2917 run43.mat 141 3 1537 967334 968806 +3798252 3825571 27320 11736184.5789 11737549.0467 41.2275 -0.0043689 6.2384 run43.mat 141 3 1537 968869 975699 +3825896 3874352 48457 11737565.3048 11739990.1039 41.2266 -0.0024171 6.2405 run43.mat 141 3 1537 975780 987894 +3874602 3884221 9620 11740002.7072 11740483.6509 41.2256 -0.0058185 6.2527 run43.mat 141 3 1537 987957 990362 +3884474 3888054 3581 11740496.4055 11740676.0694 41.2254 -0.005492 6.2407 run43.mat 141 3 1537 990425 991320 +3958171 3964960 6790 11744180.3275 11744520.1286 41.2237 -0.0068422 6.2578 run43.mat 141 3 1538 1008850 1010547 +4036293 4132235 95943 11748086.95 11752882.2469 41.2288 -0.0026794 6.0928 run43.mat 151 3 1539 1028381 1052368 +4202248 4209137 6890 11756384.9446 11756727.4806 41.2213 -0.0016556 6.1179 run43.mat 151 3 1540 1069872 1071595 +4280473 4280945 473 11760295.3224 11760318.9273 41.1819 -0.002063 6.2012 run43.mat 161 3 1541 1089429 1089547 +4281195 4318791 37597 11760331.4299 11762209.8844 41.2273 -0.0025392 5.9535 run43.mat 161 3 1541 1089610 1099009 +4319047 4365645 46599 11762222.7386 11764555.0012 41.2246 -0.0026351 5.9568 run43.mat 161 3 1541 1099073 1110723 +4365895 4371155 5261 11764567.6046 11764830.4963 41.2277 -0.00022609 5.97 run43.mat 161 3 1541 1110785 1112101 +4371405 4376413 5009 11764842.8996 11765093.8195 41.227 -0.0023956 5.9582 run43.mat 161 3 1541 1112163 1113415 +4446417 4453308 6892 11768592.6255 11768939.1246 41.2226 -0.0031661 5.9807 run43.mat 161 3 1542 1130917 1132640 +4524412 4620373 95962 11772491.456 11777291.7636 41.2274 -0.0029027 5.8289 run43.mat 171 3 1543 1150417 1174408 +4690548 4697432 6885 11780801.006 11781143.8294 41.2253 -0.0034397 5.8422 run43.mat 171 3 1544 1191953 1193674 +4768567 4790205 21639 11784700.9639 11785782.8207 41.2293 -0.0026868 5.7143 run43.mat 181 3 1545 1211458 1216868 +4790460 4864533 74074 11785795.6761 11789500.0909 41.2282 -0.002795 5.7101 run43.mat 181 3 1545 1216932 1235451 +4934738 4941621 6884 11793012.0603 11793355.8319 41.2269 -0.0031947 5.73 run43.mat 181 3 1546 1253002 1254724 +5012779 5108713 95935 11796911.2247 11801708.8144 41.2279 -0.0027308 5.5995 run43.mat 191 3 1547 1272514 1296498 +5178928 5185840 6913 11805218.8511 11805565.3148 41.2291 -0.0035605 5.6176 run43.mat 191 3 1548 1314053 1315781 +5256948 5352871 95924 11809118.8599 11813916.6562 41.2283 -0.0028199 5.4558 run43.mat 201 3 1549 1333559 1357540 +5422870 5429789 6920 11817417.7245 11817762.1067 41.2251 -0.0026164 5.4669 run43.mat 201 3 1550 1375041 1376771 +5501148 5597092 95945 11821331.9894 11826128.2586 41.2273 -0.0027377 5.323 run43.mat 211 3 1551 1394611 1418599 +5669147 5676066 6920 11829732.7104 11830077.3074 41.2225 -0.0023389 5.3482 run43.mat 211 3 1552 1436613 1438343 +5747341 5843291 95951 11833639.9921 11838437.8457 41.2273 -0.0021313 5.2008 run43.mat 221 3 1553 1456162 1480151 +5915352 5922274 6923 11842040.7888 11842388.4957 41.2239 -0.0027448 5.2186 run43.mat 221 3 1554 1498167 1499897 +245205 265750 20546 12012188.6092 12013214.0163 41.2261 -21.0444 4.5757 run44.mat 1 4 1556 73335 76760 +266002 280428 14427 12013226.5212 12013950.0186 41.2277 -21.0449 4.2038 run44.mat 1 4 1556 76802 79206 +280682 281169 488 12013962.8236 12013987.3749 41.2219 -21.0627 4.604 run44.mat 1 4 1556 79248 79329 +281424 283958 2535 12014000.2303 12014127.6653 41.2264 -21.036 4.2154 run44.mat 1 4 1556 79372 79794 +362085 387029 24945 12018033.2327 12019280.4467 41.2308 -21.0373 5.756 run44.mat 11 4 1557 92816 96974 +466684 486318 19635 12023262.2607 12024245.2224 41.2284 -21.0359 6.4402 run44.mat 21 4 1558 110250 113522 +565331 585081 19751 12028195.9617 12029180.4323 41.2304 -21.0348 5.8813 run44.mat 31 4 1559 126692 129984 +665881 685658 19778 12033222.4176 12034212.1669 41.23 -21.035 5.4495 run44.mat 41 4 1560 143451 146747 +766368 786176 19809 12038246.444 12039237.9689 41.2293 -21.0372 5.1118 run44.mat 51 4 1561 160199 163501 +866711 886511 19801 12043265.0758 12044254.2214 41.2278 -21.0364 4.863 run44.mat 61 4 1562 176924 180224 +967711 987045 19335 12048314.6075 12049281.2765 41.228 -21.0377 4.6326 run44.mat 71 4 1563 193758 196981 +1069844 1089317 19474 12053420.4885 12054394.2198 41.2304 -21.0378 4.4352 run44.mat 81 4 1564 210781 214026 +1172239 1191780 19542 12058541.4368 12059518.4006 41.2275 -21.036 4.2697 run44.mat 91 4 1565 227847 231104 +1274359 1294205 19847 12063648.6443 12064637.8774 41.2285 -21.0363 4.1593 run44.mat 101 4 1566 244868 248176 +1379084 1398630 19547 12068883.6164 12069860.2049 41.2268 -21.0352 4.0163 run44.mat 111 4 1567 262323 265581 +1483122 1497453 14332 12074086.3429 12074802.2476 41.2275 -21.0368 3.9553 run44.mat 121 4 1568 279664 282052 +1497760 1502987 5228 12074817.604 12075077.8313 41.2342 -21.0335 3.8734 run44.mat 121 4 1568 282104 282975 +1587974 1607476 19503 12079328.4048 12080302.9083 41.2331 -21.0357 3.8105 run44.mat 131 4 1569 297139 300390 +1691926 1711781 19856 12084527.434 12085516.4649 41.231 -21.0363 3.7434 run44.mat 141 4 1570 314466 317775 +1796449 1816275 19827 12089751.5479 12090744.1805 41.2311 -21.0353 3.6648 run44.mat 151 4 1571 331887 335192 +1903101 1922551 19451 12095084.0389 12096056.9734 41.2301 -21.0355 3.5713 run44.mat 161 4 1572 349663 352905 +2009436 2028847 19412 12100402.1917 12101371.6269 41.2289 -21.0347 3.5026 run44.mat 171 4 1573 367387 370621 +2116071 2135425 19355 12105732.2518 12106701.9454 41.2323 -21.0353 3.4433 run44.mat 181 4 1574 385159 388386 +2222394 2241807 19414 12111048.7644 12112021.6078 41.227 -21.0373 3.3785 run44.mat 191 4 1575 402881 406117 +2329006 2348454 19449 12116379.4755 12117353.5541 41.2238 -21.0364 3.3035 run44.mat 201 4 1576 420650 423892 +2435450 2454938 19489 12121701.4371 12122676.8507 41.2287 -21.0364 3.237 run44.mat 211 4 1577 438392 441640 +2543938 2563355 19418 12127127.2264 12128098.5501 41.225 -21.0328 3.1774 run44.mat 221 4 1578 456474 459710 +317479 318290 812 12191152.3832 12191193.2767 41.2169 0.00063982 8.7781 run45.mat 1 3 1580 59942 60077 +318572 322021 3450 12191207.4962 12191380.9604 41.2297 -0.011547 8.6801 run45.mat 1 3 1580 60124 60698 +322281 324031 1751 12191393.9629 12191481.4797 41.2284 -0.020971 8.7128 run45.mat 1 3 1580 60742 61034 +324282 332832 8551 12191494.0321 12191921.6143 41.2297 -0.0003264 8.4898 run45.mat 1 3 1580 61075 62500 +333082 333502 421 12191934.1168 12191955.1208 41.2351 -3.7114e-05 8.0908 run45.mat 1 3 1580 62542 62612 +333752 346569 12818 12191967.6232 12192608.6376 41.2236 -0.0049612 7.9958 run45.mat 1 3 1580 62654 64790 +346874 356933 10060 12192623.7725 12193126.8452 41.2267 -0.007209 7.8516 run45.mat 1 3 1580 64841 66517 +357271 357353 83 12193143.6144 12193147.6827 41.2025 -0.16837 7.0514 run45.mat 1 3 1580 66574 66587 +357691 359942 2252 12193164.4519 12193276.1308 41.2239 -0.021639 7.5221 run45.mat 1 3 1580 66644 67019 +360194 362813 2620 12193288.6333 12193419.563 41.2196 -0.0038491 7.4362 run45.mat 1 3 1580 67061 67497 +363151 364013 863 12193436.6027 12193480.0591 41.2298 0.017818 7.3012 run45.mat 1 3 1580 67554 67697 +364351 367229 2879 12193497.0988 12193641.6368 41.2287 -0.011943 7.207 run45.mat 1 3 1580 67753 68233 +367492 367673 182 12193654.6876 12193663.6693 41.2476 -0.084031 6.4864 run45.mat 1 3 1580 68277 68307 +368011 370151 2141 12193680.4418 12193786.6348 41.2277 0.010201 6.8531 run45.mat 1 3 1580 68363 68720 +370473 371273 801 12193802.6133 12193842.3116 41.2223 0.0061849 6.7615 run45.mat 1 3 1580 68774 68907 +371611 372553 943 12193859.1004 12193906.2103 41.2363 0.025336 7.124 run45.mat 1 3 1580 68964 69121 +372891 374561 1671 12193923.1138 12194006.6312 41.2285 0.010245 6.797 run45.mat 1 3 1580 69177 69455 +374825 375071 247 12194019.8339 12194032.1365 41.1587 -0.078525 7.4577 run45.mat 1 3 1580 69499 69540 +375411 376542 1132 12194049.14 12194105.7033 41.2336 0.018706 6.7689 run45.mat 1 3 1580 69597 69785 +376792 378951 2160 12194118.2082 12194226.1997 41.2293 0.0054086 6.8419 run45.mat 1 3 1580 69827 70187 +379202 379733 532 12194238.7545 12194265.3147 41.2269 -0.059457 6.6239 run45.mat 1 3 1580 70229 70317 +380071 380553 483 12194282.2212 12194306.3305 41.2269 -0.024661 6.3715 run45.mat 1 3 1580 70373 70454 +380891 381333 443 12194323.237 12194345.3455 41.2225 -0.084513 6.8201 run45.mat 1 3 1580 70510 70584 +381671 382342 672 12194362.2945 12194396.1287 41.2177 -0.0021775 7.0226 run45.mat 1 3 1580 70640 70752 +382593 382793 201 12194408.785 12194418.8697 41.2282 0.01306 6.6849 run45.mat 1 3 1580 70794 70827 +383131 384311 1181 12194435.9129 12194495.4127 41.2182 0.0073642 6.847 run45.mat 1 3 1580 70884 71080 +384562 385473 912 12194508.069 12194554.0048 41.216 -0.022658 6.6229 run45.mat 1 3 1580 71122 71274 +385811 386750 940 12194571.048 12194618.2125 41.2134 0.0053503 6.6912 run45.mat 1 3 1580 71331 71487 +387052 387073 22 12194633.1957 12194634.2375 41.353 0.039453 5.5366 run45.mat 1 3 1580 71538 71541 +387411 387813 403 12194651.0067 12194670.9512 41.2302 -0.011161 6.6695 run45.mat 1 3 1580 71597 71664 +388405 388692 288 12194700.3221 12194714.561 41.2125 0.0011997 6.6494 run45.mat 1 3 1580 71763 71811 +388943 389213 271 12194727.0139 12194740.4094 41.2148 -0.018651 6.2958 run45.mat 1 3 1580 71853 71898 +389551 390699 1149 12194757.1786 12194814.1344 41.2299 0.0026587 6.5661 run45.mat 1 3 1580 71954 72145 +390977 391962 986 12194827.9268 12194877.119 41.2327 -0.018492 6.8095 run45.mat 1 3 1580 72192 72356 +392212 394533 2322 12194889.7249 12195006.758 41.2268 0.0024286 6.4218 run45.mat 1 3 1580 72398 72784 +394871 395993 1123 12195023.8011 12195080.3764 41.2359 0.0051039 6.3916 run45.mat 1 3 1580 72841 73028 +396331 398673 2343 12195097.4195 12195213.7672 41.2275 0.022002 6.3989 run45.mat 1 3 1580 73084 73474 +399011 400622 1612 12195230.5364 12195310.463 41.2232 -0.025076 6.0988 run45.mat 1 3 1580 73531 73799 +400872 400953 82 12195322.8662 12195326.8849 41.1622 0.058067 7.0839 run45.mat 1 3 1580 73841 73854 +401291 401333 43 12195343.6541 12195345.7378 41.1955 -0.090362 6.0954 run45.mat 1 3 1580 73911 73918 +401854 402622 769 12195371.8245 12195410.5498 41.2148 -0.0058848 6.4721 run45.mat 1 3 1580 74004 74132 +403143 403213 71 12195436.8205 12195440.3501 41.1884 -0.05674 5.7712 run45.mat 1 3 1580 74219 74231 +404343 405136 794 12195497.3288 12195537.3146 41.2314 -0.0078875 6.3904 run45.mat 1 3 1580 74419 74551 +405406 405844 439 12195550.929 12195573.0145 41.2671 0.061783 6.3018 run45.mat 1 3 1580 74596 74669 +406103 406572 470 12195586.0742 12195609.7006 41.234 -0.017653 6.207 run45.mat 1 3 1580 74712 74791 +406889 407993 1105 12195625.5539 12195680.7654 41.2478 0.003642 6.1852 run45.mat 1 3 1580 74843 75027 +408471 408692 222 12195704.6703 12195715.7227 41.2499 -0.00010997 6.288 run45.mat 1 3 1580 75107 75144 +408992 409489 498 12195730.7258 12195755.581 41.2382 -0.0016621 5.6922 run45.mat 1 3 1580 75194 75277 +410011 410421 411 12195781.6864 12195802.1907 41.204 -0.021882 7.3733 run45.mat 1 3 1580 75364 75432 +410811 413524 2714 12195821.6947 12195956.5177 41.2259 -0.014922 7.3514 run45.mat 1 3 1580 75497 75949 +481554 493082 11529 12199356.8034 12199934.7818 41.227 0.0039738 9.5215 run45.mat 1 3 1581 87288 89209 +493333 495546 2214 12199947.2396 12200057.0768 41.2233 -0.035094 8.903 run45.mat 1 3 1581 89251 89620 +496055 504631 8577 12200082.3399 12200511.8004 41.2259 0.0024905 9.4202 run45.mat 1 3 1581 89705 91135 +504884 507531 2648 12200524.3525 12200656.4473 41.2233 -0.0059196 8.7565 run45.mat 1 3 1581 91177 91618 +507784 510602 2819 12200669.2019 12200811.2668 41.2304 -0.011233 9.3217 run45.mat 1 3 1581 91660 92130 +510852 518470 7619 12200823.8701 12201203.4973 41.2252 -0.0033619 8.5653 run45.mat 1 3 1581 92172 93442 +518774 525752 6979 12201218.4698 12201566.9635 41.2258 0.0046366 7.814 run45.mat 1 3 1581 93492 94655 +526002 526690 689 12201579.5668 12201614.2026 41.2294 -0.0068629 7.6943 run45.mat 1 3 1581 94697 94811 +527068 527608 541 12201633.1105 12201660.1217 41.2276 -0.03476 7.1949 run45.mat 1 3 1581 94874 94964 +527864 528002 139 12201672.9271 12201679.8299 41.1724 -0.045748 7.5261 run45.mat 1 3 1581 95007 95030 +528254 528298 45 12201692.4352 12201694.6361 41.2148 -0.085616 4.9604 run45.mat 1 3 1581 95072 95079 +528878 532070 3193 12201723.6482 12201883.3068 41.2242 -0.010836 7.5658 run45.mat 1 3 1581 95176 95708 +532324 536333 4010 12201896.0092 12202096.4978 41.224 0.019793 7.3478 run45.mat 1 3 1581 95750 96418 +536671 537612 942 12202113.401 12202160.4601 41.2315 -0.023278 6.8082 run45.mat 1 3 1581 96475 96631 +537914 538806 893 12202175.563 12202220.1716 41.231 -0.014075 6.6139 run45.mat 1 3 1581 96682 96831 +539066 545883 6818 12202233.1741 12202572.4552 41.2265 -0.011709 6.8021 run45.mat 1 3 1581 96874 98010 +546144 546386 243 12202585.4042 12202597.4106 41.2748 0.073042 7.3674 run45.mat 1 3 1581 98054 98094 +546788 546949 162 12202617.355 12202625.2294 41.2304 0.033458 6.1973 run45.mat 1 3 1581 98161 98188 +547212 547351 140 12202638.0762 12202644.866 41.2089 0.016643 7.1347 run45.mat 1 3 1581 98232 98255 +547654 549920 2267 12202659.6667 12202770.3544 41.2166 0.0075737 6.6008 run45.mat 1 3 1581 98306 98683 +550178 550193 16 12202782.957 12202783.6897 41.1184 0.097876 8.9734 run45.mat 1 3 1581 98726 98729 +550531 551269 739 12202800.2001 12202836.2493 41.221 0.041137 6.2624 run45.mat 1 3 1581 98785 98908 +551527 551979 453 12202848.8519 12202871.0959 41.2187 0.031451 6.4698 run45.mat 1 3 1581 98951 99027 +552243 552872 630 12202884.7176 12202917.1725 41.2398 -0.01543 6.305 run45.mat 1 3 1581 99071 99175 +553122 553128 7 12202930.0718 12202930.3814 41.1193 0.093359 8.7683 run45.mat 1 3 1581 99217 99218 +553565 554008 444 12202952.9295 12202975.7873 41.2473 0.011636 5.9794 run45.mat 1 3 1581 99291 99365 +554442 554773 332 12202998.1806 12203015.2594 41.2353 -0.024167 6.4014 run45.mat 1 3 1581 99437 99492 +555111 555267 157 12203032.6993 12203040.7486 41.2585 -0.019005 6.7375 run45.mat 1 3 1581 99549 99575 +555525 556653 1129 12203054.0607 12203112.2628 41.2208 -0.0088117 6.0276 run45.mat 1 3 1581 99618 99806 +556991 558132 1142 12203129.6567 12203186.9371 41.2273 -0.031412 6.172 run45.mat 1 3 1581 99862 100052 +558394 558442 49 12203200.09 12203202.4997 41.2379 -0.085682 6.7276 run45.mat 1 3 1581 100096 100104 +558692 559725 1034 12203215.0502 12203266.9088 41.2221 -0.0048233 5.7538 run45.mat 1 3 1581 100145 100317 +560043 560209 167 12203282.8731 12203291.2066 41.2405 -0.0077026 6.436 run45.mat 1 3 1581 100370 100398 +560593 561397 805 12203310.4841 12203350.8465 41.2271 -0.040485 5.6927 run45.mat 1 3 1581 100462 100596 +561667 561864 198 12203364.401 12203374.2908 41.1795 0.026248 6.03 run45.mat 1 3 1581 100641 100674 +562182 562223 42 12203390.2406 12203392.2751 41.3029 0.047098 5.5407 run45.mat 1 3 1581 100727 100734 +562484 562542 59 12203405.2267 12203408.1048 41.1836 -0.057968 6.7863 run45.mat 1 3 1581 100777 100787 +562921 563332 412 12203426.9119 12203447.3069 41.2311 -0.03429 6.0835 run45.mat 1 3 1581 100850 100918 +564581 564949 369 12203509.2858 12203527.547 41.2011 -0.02364 5.799 run45.mat 1 3 1581 101127 101188 +565258 566325 1068 12203542.8805 12203595.8281 41.2319 0.018876 6.0733 run45.mat 1 3 1581 101240 101417 +566584 567011 428 12203608.6804 12203629.8694 41.2242 0.015555 5.302 run45.mat 1 3 1581 101461 101532 +567523 567973 451 12203655.5356 12203678.2216 41.2325 -0.016689 5.8476 run45.mat 1 3 1581 101617 101692 +568311 568379 69 12203695.2613 12203698.6895 41.1953 0.080653 5.6738 run45.mat 1 3 1581 101749 101760 +568637 569173 537 12203711.6961 12203738.7177 41.2375 -0.018452 5.4781 run45.mat 1 3 1581 101803 101892 +569511 569573 63 12203755.7574 12203758.883 41.273 -0.047718 4.0819 run45.mat 1 3 1581 101949 101959 +569911 571514 1604 12203775.9228 12203856.7354 41.2185 -0.0308 5.4948 run45.mat 1 3 1581 102015 102283 +571784 572202 419 12203870.347 12203891.3814 41.2233 0.0081239 5.3623 run45.mat 1 3 1581 102328 102397 +572530 573633 1104 12203907.6545 12203962.3777 41.2184 -0.0022702 5.3467 run45.mat 1 3 1581 102452 102636 +573971 573992 22 12203979.1469 12203980.1887 41.2481 -0.204 6.1884 run45.mat 1 3 1581 102692 102696 +574262 574667 406 12203993.5842 12204013.6775 41.2023 -0.071325 5.4296 run45.mat 1 3 1581 102740 102808 +574925 575393 469 12204026.4777 12204049.6966 41.2231 0.0037205 5.5076 run45.mat 1 3 1581 102851 102929 +575731 576107 377 12204066.4658 12204085.1203 41.2328 -0.0021044 5.6231 run45.mat 1 3 1581 102985 103048 +576515 576533 19 12204105.3624 12204106.2554 41.3124 0.10972 5.4279 run45.mat 1 3 1581 103116 103119 +577558 577590 33 12204157.2538 12204158.8541 41.2914 0.18079 5.5263 run45.mat 1 3 1581 103289 103295 +645406 646590 1185 12207551.2346 12207609.9764 41.2217 0.0014768 9.2011 run45.mat 1 3 1582 114599 114796 +646854 648099 1246 12207623.0742 12207685.2193 41.23 -0.0043163 9.898 run45.mat 1 3 1582 114840 115047 +648356 648649 294 12207698.0746 12207712.7307 41.2051 -0.015578 10.2012 run45.mat 1 3 1582 115090 115139 +648965 650669 1705 12207728.5373 12207813.7728 41.2248 -0.014254 10.4159 run45.mat 1 3 1582 115192 115475 +650978 652367 1390 12207829.2293 12207898.7038 41.233 0.017988 10.2543 run45.mat 1 3 1582 115527 115758 +719575 722572 2998 12211259.6854 12211410.7743 41.2264 0.015296 10.0896 run45.mat 11 3 1583 126960 127460 +722822 750144 27323 12211423.3241 12212786.7897 41.2258 -0.0051652 9.7437 run45.mat 11 3 1583 127502 132055 +750411 751362 952 12212800.2501 12212848.1932 41.2241 0.0070624 10.2109 run45.mat 11 3 1583 132100 132258 +751612 762217 10606 12212860.7965 12213389.8293 41.2264 -0.00596 9.7694 run45.mat 11 3 1583 132300 134067 +762475 762933 459 12213402.632 12213425.4446 41.2297 0.0311 10.4647 run45.mat 11 3 1583 134110 134187 +763271 783130 19860 12213442.4844 12214435.4991 41.2257 -0.0061885 9.7294 run45.mat 11 3 1583 134243 137553 +783439 793742 10304 12214450.9542 12214968.1123 41.2251 -0.0047939 9.7698 run45.mat 11 3 1583 137605 139322 +793992 815648 21657 12214980.5181 12216063.8737 41.2255 -0.0044741 9.7789 run45.mat 11 3 1583 139364 142973 +883590 885631 2042 12219458.883 12219562.6847 41.2242 0.010954 10.0413 run45.mat 11 3 1584 154297 154637 +885884 886082 199 12219575.5518 12219585.6217 41.1833 -0.058224 10.1097 run45.mat 11 3 1584 154679 154712 +886332 918113 31782 12219598.3363 12221185.3977 41.2249 -0.0037634 9.7505 run45.mat 11 3 1584 154754 160052 +985780 1002527 16748 12224570.7495 12225407.9387 41.2253 -0.0034666 10.9815 run45.mat 21 3 1585 171330 174121 +1002787 1012791 10005 12225421.0462 12225921.3991 41.2275 -0.0087863 10.9499 run45.mat 21 3 1585 174164 175831 +1013092 1030791 17700 12225936.5735 12226819.9068 41.2253 -0.012006 10.9682 run45.mat 21 3 1585 175882 178832 +1031096 1081848 50753 12226834.9286 12229372.1246 41.2262 -0.004307 10.9675 run45.mat 21 3 1585 178883 187342 +1149856 1156482 6627 12232772.268 12233105.1134 41.2238 -0.0047366 11.0544 run45.mat 21 3 1586 198677 199782 +1224179 1233108 8930 12236491.5571 12236936.3984 41.2277 -0.0046143 10.0674 run45.mat 31 3 1587 211065 212553 +1233412 1320247 86836 12236951.5412 12241292.0498 41.2263 -0.0052204 9.9911 run45.mat 31 3 1587 212604 227076 +1390145 1396787 6643 12244786.2142 12245119.335 41.2246 -0.0022102 10.0532 run45.mat 31 3 1588 238727 239834 +1464513 1560528 96016 12248505.8115 12253306.8583 41.2264 -0.004594 9.2706 run45.mat 41 3 1589 251122 267125 +1628392 1635186 6795 12256700.4543 12257040.8058 41.2283 -0.0029763 9.3458 run45.mat 41 3 1590 278436 279569 +1702713 1798727 96015 12260416.2013 12265217.0325 41.2261 -0.0036517 8.7072 run45.mat 51 3 1591 290824 306827 +1868677 1875462 6786 12268715.8361 12269053.9395 41.2257 -0.0051722 8.7863 run45.mat 51 3 1592 318486 319616 +1944825 2040845 96021 12272524.1362 12277321.3043 41.2255 -0.003517 8.2494 run45.mat 61 3 1593 331178 347182 +2108919 2115691 6773 12280728.8348 12281065.5052 41.2248 -0.003737 8.32 run45.mat 61 3 1594 358528 359656 +2185169 2272685 87517 12284541.1055 12288914.1211 41.2273 -0.00358 7.8583 run45.mat 71 3 1595 371236 385824 +2272935 2281166 8232 12288926.6237 12289340.2643 41.2321 -0.0011755 7.8694 run45.mat 71 3 1595 385865 387237 +2351101 2357890 6790 12292834.9923 12293175.6571 41.225 -0.005927 7.8691 run45.mat 71 3 1596 398893 400025 +2427269 2523245 95977 12296645.3116 12301443.0368 41.2274 -0.0036909 7.5304 run45.mat 81 3 1597 411588 427585 +2593207 2599995 6789 12304942.3275 12305281.3842 41.2213 -0.002396 7.5848 run45.mat 81 3 1598 439246 440377 +2669346 2762025 92680 12308749.1053 12313384.338 41.2283 -0.0028642 7.2457 run45.mat 91 3 1599 400001 400001 +2762276 2765366 3091 12313396.9917 12313550.312 41.2223 -0.00038165 7.2367 run45.mat 91 3 1599 400001 400001 +2835272 2842085 6814 12317044.7393 12317384.7097 41.2263 -0.0041936 7.2504 run45.mat 91 3 1600 400001 400001 +2911478 2946823 35346 12320856.626 12322622.9121 41.2249 -0.0019534 6.9957 run45.mat 101 3 1601 400001 400001 +2947150 2969314 22165 12322639.3973 12323746.7017 41.2288 -0.0029204 6.9879 run45.mat 101 3 1601 400001 400001 +2969567 2979656 10090 12323759.4028 12324266.3974 41.2252 -0.0033423 6.9867 run45.mat 101 3 1601 400001 400001 +2979906 3000667 20762 12324278.8031 12325313.589 41.2288 -0.0045578 7.0001 run45.mat 101 3 1601 400001 400001 +3000981 3007464 6484 12325329.2955 12325656.5618 41.2276 0.0034944 6.9991 run45.mat 101 3 1601 400001 400001 +3077616 3084402 6787 12329163.12 12329502.5127 41.2302 -0.0024478 7.0498 run45.mat 101 3 1602 400001 400001 +3153820 3156125 2306 12332974.0792 12333089.5685 41.2334 -0.0061021 6.871 run45.mat 101.0412 3 1603 400001 400001 +3156377 3189866 33490 12333102.1711 12334776.0546 41.2282 -0.0042339 6.7631 run45.mat 111 3 1603 400001 400001 +3190116 3248316 58201 12334788.557 12337697.9885 41.227 -0.0030161 6.7787 run45.mat 111 3 1603 400001 400001 +3248569 3249442 874 12337710.5431 12337753.8638 41.2395 0.0031594 6.7428 run45.mat 111 3 1603 400001 400001 +3249700 3249702 3 12337766.6665 12337766.7658 41.1367 -0.011719 5.822 run45.mat 111 3 1603 400001 400001 +3319738 3326566 6829 12341268.4347 12341610.4854 41.2294 -0.0066561 6.803 run45.mat 111 3 1604 400001 400001 +3395886 3403491 7606 12345076.5709 12345455.1293 41.2287 -0.0085208 6.5989 run45.mat 120.3012 3 1605 400001 400001 +3403750 3472451 68702 12345468.0817 12348905.4637 41.2277 -0.0030988 6.5743 run45.mat 121 3 1605 400001 400001 +3472757 3491864 19108 12348920.5191 12349874.2299 41.2266 -0.0036027 6.5883 run45.mat 121 3 1605 400001 400001 +3561835 3568671 6837 12353376.0577 12353717.1516 41.2267 -0.0046882 6.5936 run45.mat 121 3 1606 400001 400001 +3640083 3660616 20534 12357287.7371 12358314.3586 41.2294 -0.003141 6.4029 run45.mat 131 3 1607 400001 400001 +3660921 3696691 35771 12358329.7378 12360117.8102 41.2276 -0.0029435 6.401 run45.mat 131 3 1607 400001 400001 +3696949 3736043 39095 12360130.6129 12362084.2973 41.2275 -0.00043474 6.4089 run45.mat 131 3 1607 400001 400001 +3806033 3812894 6862 12365584.5434 12365927.1432 41.2328 -0.010679 6.417 run45.mat 131 3 1608 400001 400001 +3884244 3894077 9834 12369493.9645 12369986.347 41.2216 -0.00088302 6.2548 run45.mat 141 3 1609 400001 400001 +3894329 3973128 78800 12369998.8519 12373939.3875 41.2287 -0.0026114 6.2407 run45.mat 141 3 1609 400001 400001 +3973389 3980179 6791 12373952.339 12374291.2103 41.2264 0.0019721 6.2399 run45.mat 141 3 1609 400001 400001 +4050178 4056068 5891 12377793.042 12378087.2874 41.2227 -0.004422 6.276 run45.mat 141 3 1610 400001 400001 +4056318 4057094 777 12378099.6906 12378138.1903 41.226 0.0044776 6.2498 run45.mat 141 3 1610 400001 400001 +4128402 4132247 3846 12381702.3045 12381894.5915 41.2164 -0.0035915 6.1821 run45.mat 151 3 1611 400001 400001 +4132500 4166037 33538 12381907.2439 12383583.5757 41.2284 -0.0039393 6.0852 run45.mat 151 3 1611 400001 400001 +4166291 4181518 15228 12383596.2781 12384358.9919 41.2267 -0.0024167 6.0906 run45.mat 151 3 1611 400001 400001 +4181770 4224343 42574 12384371.6935 12386501.2862 41.2268 -0.0034323 6.096 run45.mat 151 3 1611 400001 400001 +4294543 4301447 6905 12390009.786 12390355.8264 41.2215 -0.0030816 6.1048 run45.mat 151 3 1612 400001 400001 +4372542 4422311 49770 12393911.25 12396399.4037 41.2234 -0.0027618 5.9546 run45.mat 161 3 1613 400001 400001 +4422569 4468502 45934 12396412.2064 12398707.266 41.2289 -0.0026716 5.9557 run45.mat 161 3 1613 400001 400001 +4538660 4545538 6879 12402216.6872 12402558.8673 41.225 -0.0013768 5.9845 run45.mat 161 3 1614 400001 400001 +4616690 4712622 95933 12406117.2747 12410915.3299 41.2277 -0.0027021 5.8268 run45.mat 171 3 1615 400001 400001 +4782787 4789680 6894 12414421.3168 12414766.0358 41.2344 -0.0034689 5.844 run45.mat 171 3 1616 400001 400001 +4860804 4956735 95932 12418322.3765 12423121.0091 41.2275 -0.0027413 5.7103 run45.mat 181 3 1617 400001 400001 +5026947 5033848 6902 12426632.5014 12426977.2013 41.2272 -0.0044813 5.732 run45.mat 181 3 1618 400001 400001 +5104972 5200921 95950 12430532.9762 12435329.5857 41.2275 -0.0023908 5.6009 run45.mat 190.8845 3 1619 400001 400001 +5272950 5279838 6889 12438930.0042 12439275.3301 41.2229 -0.0016582 5.6247 run45.mat 191 3 1620 400001 400001 +5351197 5447133 95937 12442842.9778 12447641.5349 41.2289 -0.0024325 5.4579 run45.mat 201 3 1621 400001 400001 +5517136 5524048 6913 12451140.0625 12451488.3109 41.2205 -0.003163 5.4741 run45.mat 201 3 1622 400001 400001 +5595164 5691100 95937 12455042.4398 12459840.333 41.2265 -0.0024109 5.3219 run45.mat 211 3 1623 400001 400001 +5761301 5768243 6943 12463350.08 12463695.971 41.2193 -0.0027803 5.3389 run45.mat 211 3 1624 400001 400001 +5839525 5935455 95931 12467259.1935 12472056.0212 41.2284 -0.0026654 5.202 run45.mat 221 3 1625 400001 400001 +6007523 6014410 6888 12475659.9637 12476005.7377 41.2293 -0.0024421 5.2163 run45.mat 221 3 1626 400001 400001 +209663 251105 41443 12960800.9233 12962871.6164 41.2287 -21.0382 103.3055 run46.mat 1 4 1628 250027 270749 +328351 354172 25822 12966735.9533 12968024.9216 41.229 -21.0364 139.6694 run46.mat 11 4 1629 309374 322285 +433189 453306 20118 12971978.142 12972982.3464 41.2289 -21.0363 158.3718 run46.mat 21 4 1630 361795 371854 +531849 551909 20061 12976909.8022 12977913.0986 41.2285 -21.035 144.8065 run46.mat 31 4 1631 411128 421158 +632574 652677 20104 12981946.4816 12982950.6203 41.2273 -21.0365 134.5355 run46.mat 41 4 1632 461492 471545 +733082 753196 20115 12986971.4302 12987978.5354 41.2305 -21.0346 126.2368 run46.mat 51 4 1633 511748 521806 +833508 853579 20072 12991992.0534 12992996.8899 41.2271 -21.0372 119.8626 run46.mat 61 4 1634 561964 572000 +934061 954097 20037 12997021.6419 12998021.9996 41.2334 -21.0345 114.4979 run46.mat 71 4 1635 612242 622261 +1036287 1056302 20016 13002132.8488 13003132.363 41.2295 -21.0358 109.9116 run46.mat 81 4 1636 663358 673366 +1138727 1158767 20041 13007254.8153 13008258.0792 41.2315 -21.0369 106.0979 run46.mat 91 4 1637 714580 724600 +1241163 1261288 20126 13012376.8932 13013381.5777 41.2292 -21.0357 102.7148 run46.mat 101 4 1638 765800 775863 +1343547 1363708 20162 13017495.6029 13018503.6458 41.2262 -21.0352 99.9004 run46.mat 111 4 1639 816994 827075 +1445964 1466124 20161 13022617.6422 13023624.1314 41.2314 -21.0368 97.3327 run46.mat 121 4 1640 868205 878286 +1550271 1570440 20170 13027832.4132 13028840.8654 41.2304 -21.036 94.94 run46.mat 131 4 1641 920361 930446 +1654886 1675047 20162 13033063.4239 13034070.7483 41.2324 -21.0351 92.8105 run46.mat 141 4 1642 972671 982752 +1759168 1779347 20180 13038276.3735 13039285.1271 41.2302 -21.0357 90.7863 run46.mat 151 4 1643 1024814 1034904 +1865520 1885683 20164 13043595.9239 13044603.3204 41.2279 -21.0351 89.1353 run46.mat 161 4 1644 1077993 1088074 +1971848 1992004 20157 13048911.2378 13049918.1766 41.2265 -21.0366 87.3633 run46.mat 171 4 1645 1131158 1141237 +2078274 2098482 20209 13054229.417 13055243.0827 41.2296 -21.0365 85.8462 run46.mat 181 4 1646 1184374 1194478 +2184748 2205031 20284 13059556.9988 13060570.7681 41.2328 -21.0355 84.3589 run46.mat 191 4 1647 1237613 1247755 +2291217 2311485 20269 13064878.7983 13065891.5709 41.225 -21.0375 82.539 run46.mat 201 4 1648 1290850 1300985 +2399567 2419717 20151 13070297.0639 13071304.8153 41.2306 -21.0358 80.667 run46.mat 211 4 1649 1345028 1355103 +2508242 2528503 20262 13075731.2592 13076742.7372 41.2293 -21.0368 79.1462 run46.mat 221 4 1650 1399367 1409498 +288071 290070 2000 13154103.4082 13154203.43 41.2294 -0.0019565 147.5998 run47.mat 1 3 1652 173196 174195 +290385 291931 1547 13154219.0581 13154295.7599 41.2316 -0.00079148 162.6495 run47.mat 1 3 1652 174353 175126 +292416 293839 1424 13154319.8222 13154390.4215 41.2261 -0.0060392 145.6562 run47.mat 1 3 1652 175368 176080 +294107 295511 1405 13154403.7178 13154474.4752 41.2219 0.0070521 146.9077 run47.mat 1 3 1652 176214 176915 +295774 298290 2517 13154487.7366 13154614.6023 41.2194 -0.008867 144.1643 run47.mat 1 3 1652 177047 178305 +298544 301083 2540 13154627.4098 13154753.8369 41.222 -0.0076891 144.5868 run47.mat 1 3 1652 178432 179702 +301351 384304 82954 13154767.1332 13158913.8032 41.2254 -0.0049125 145.8917 run47.mat 1 3 1652 179836 221314 +452138 456323 4186 13162307.7237 13162516.6728 41.222 -0.0065739 152.4252 run47.mat 1 3 1653 255232 257325 +456573 458032 1460 13162529.1752 13162602.1393 41.2262 -0.021442 150.4871 run47.mat 1 3 1653 257450 258180 +458284 459751 1468 13162614.7417 13162687.867 41.2232 -0.022147 146.9304 run47.mat 1 3 1653 258306 259039 +460054 460810 757 13162702.8998 13162740.4072 41.2309 -0.0047205 143.7093 run47.mat 1 3 1653 259191 259569 +461335 472514 11180 13162766.4541 13163326.4202 41.2252 -0.0050072 145.0941 run47.mat 1 3 1653 259831 265421 +540404 546642 6239 13166719.8066 13167032.6078 41.2297 0.00086934 236.1838 run47.mat 11 3 1654 299368 302487 +546906 548573 1668 13167045.9169 13167129.956 41.2231 -0.0093398 231.4375 run47.mat 11 3 1654 302619 303452 +548823 551193 2371 13167142.5594 13167260.7049 41.2198 -0.010693 232.9486 run47.mat 11 3 1654 303577 304762 +551443 602494 51052 13167273.1082 13169825.0163 41.2252 -0.0054599 231.9915 run47.mat 11 3 1654 304887 330414 +670754 717180 46427 13173236.2736 13175557.9685 41.2247 -0.0045097 274.0564 run47.mat 21 3 1655 364545 387759 +785110 831568 46459 13178954.4422 13181279.8769 41.2281 -0.004193 250.261 run47.mat 30.3793 3 1656 421726 444956 +899450 945909 46460 13184671.9196 13186997.4711 41.2259 -0.0038423 232.1529 run47.mat 41 3 1657 478898 502129 +1013791 1060086 46296 13190389.5948 13192703.534 41.2263 -0.0037387 217.7537 run47.mat 51 3 1658 536071 559220 +1127932 1174222 46291 13196097.511 13198412.2 41.2261 -0.0034294 206.1816 run47.mat 61 3 1659 593144 616290 +1242066 1288497 46432 13201803.2001 13204126.426 41.2266 -0.0034844 196.6532 run47.mat 71 3 1660 650214 673430 +1356482 1402763 46282 13207522.5914 13209838.3595 41.2277 -0.0039276 188.3925 run47.mat 80.6211 3 1661 707424 730566 +1472489 1518949 46461 13213324.7934 13215649.8083 41.2261 -0.0031578 181.2888 run47.mat 91 3 1662 765430 788662 +1588636 1634927 46292 13219132.6656 13221447.5887 41.2291 -0.0035131 174.9861 run47.mat 101 3 1663 823506 846653 +1704832 1751127 46296 13224944.6872 13227257.3245 41.2268 -0.0032592 169.5548 run47.mat 111 3 1664 881607 904756 +1820982 1867290 46309 13230751.9004 13233066.4007 41.2266 -0.0030682 164.7336 run47.mat 121 3 1665 939684 962840 +1937183 1983508 46326 13236560.7342 13238876.4033 41.229 -0.0027724 160.1351 run47.mat 131 3 1666 997787 1020951 +2053368 2099695 46328 13242371.2462 13244687.2188 41.2256 -0.0024936 156.1176 run47.mat 141 3 1667 1055883 1079047 +2169536 2215843 46308 13248179.6283 13250493.1146 41.2279 -0.0030422 152.3932 run47.mat 151 3 1668 1113969 1137124 +2285726 2332008 46283 13253988.1636 13256301.8746 41.2281 -0.0025623 149.0017 run47.mat 160.2839 3 1669 1172067 1195209 +2401889 2448174 46286 13259798.1159 13262111.0532 41.2272 -0.0027077 145.7831 run47.mat 171 3 1670 1230151 1253294 +2518082 2564363 46282 13265605.9289 13267921.342 41.2266 -0.0031582 142.8706 run47.mat 181 3 1671 1288249 1311391 +2634098 2680370 46273 13271406.3694 13273718.5464 41.2304 -0.0025685 140.0046 run47.mat 191 3 1672 1346260 1369397 +2750284 2796537 46254 13277216.5158 13279527.5182 41.2287 -0.0026239 136.4501 run47.mat 201 3 1673 1404356 1427483 +2868505 2868963 459 13283128.2785 13283150.8358 41.2015 -0.0012404 141.3547 run47.mat 211 3 1674 1463469 1463698 +2869224 2914759 45536 13283163.6905 13285440.1658 41.2291 -0.002912 133.0415 run47.mat 211 3 1674 1463828 1486597 +2986774 3033099 46326 13289043.6599 13291358.2935 41.2308 -0.0022477 130.0887 run47.mat 221 3 1675 1522606 1545770 +327412 365909 38498 13456386.8334 13458310.9035 41.2297 -21.0336 4.4105 run48.mat 1 4 1677 169178 188427 +443995 468900 24906 13462214.0206 13463459.4244 41.2297 -21.0371 5.7505 run48.mat 11 4 1678 227471 239924 +548683 568300 19618 13467449.7089 13468429.2517 41.2295 -21.0376 6.4334 run48.mat 21 4 1679 279818 289627 +647261 666975 19715 13472379.7281 13473363.0453 41.2281 -21.0359 5.8749 run48.mat 31 4 1680 329109 338967 +745782 765586 19805 13477304.748 13478294.1585 41.2305 -21.0352 5.4332 run48.mat 41 4 1681 378372 388274 +846487 866317 19831 13482340.35 13483331.9809 41.2277 -21.0351 5.1141 run48.mat 51 4 1682 428727 438642 +948917 968696 19780 13487461.2814 13488450.7536 41.2295 -21.037 4.8506 run48.mat 61 4 1683 479943 489834 +1049566 1068999 19434 13492494.3189 13493466.4803 41.2274 -21.0363 4.641 run48.mat 71 4 1684 530270 539987 +1151771 1171553 19783 13497605.2458 13498593.9943 41.2284 -21.0348 4.4531 run48.mat 81 4 1685 581375 591266 +1254485 1273970 19486 13502741.5684 13503714.8545 41.2272 -21.0354 4.2782 run48.mat 91 4 1686 632734 642477 +1356885 1374254 17370 13507858.8105 13508728.802 41.2317 -21.0357 4.1492 run48.mat 101 4 1687 683936 692621 +1374504 1376407 1904 13508741.1623 13508835.2489 41.2294 -21.0365 4.0416 run48.mat 101 4 1687 692746 693698 +1463203 1472734 9532 13513175.4053 13513653.5339 41.2266 -21.0371 4.0519 run48.mat 111 4 1688 737098 741864 +1472986 1482700 9715 13513666.0879 13514151.1012 41.2245 -21.0347 3.9795 run48.mat 111 4 1688 741990 746847 +1567410 1587232 19823 13518386.403 13519374.8 41.2272 -21.036 3.928 run48.mat 121 4 1689 789203 799115 +1672181 1691728 19548 13523623.9112 13524600.614 41.2274 -21.0374 3.8156 run48.mat 131 4 1690 841591 851366 +1776545 1795957 19413 13528842.3604 13529813.3564 41.2292 -21.0361 3.7396 run48.mat 141 4 1691 893776 903482 +1880510 1900283 19774 13534039.891 13535029.235 41.2288 -21.0365 3.6638 run48.mat 151 4 1692 945761 955648 +1985055 2004890 19836 13539268.5744 13540260.4614 41.2282 -21.0354 3.5914 run48.mat 161 4 1693 998035 1007953 +2089709 2095405 5697 13544500.9691 13544787.2937 41.2212 -21.0347 3.5819 run48.mat 171 4 1694 1050365 1053213 +2095657 2109106 13450 13544799.9462 13545472.6328 41.2306 -21.0373 3.4807 run48.mat 171 4 1694 1053339 1060064 +2196451 2215763 19313 13549838.0996 13550805.752 41.2277 -21.0362 3.4352 run48.mat 181 4 1695 1103738 1113394 +2302699 2321941 19243 13555151.9769 13556114.2414 41.2302 -21.0349 3.3839 run48.mat 191 4 1696 1156864 1166486 +2409173 2428614 19442 13560477.0784 13561448.4966 41.2306 -21.0353 3.3063 run48.mat 201 4 1697 1210104 1219825 +2517744 2537117 19374 13565904.1637 13566871.3646 41.2269 -21.0374 3.2352 run48.mat 211 4 1698 1264392 1274079 +2626246 2644797 18552 13571329.6644 13572256.1266 41.2281 -21.0355 3.1768 run48.mat 221 4 1699 1318645 1327921 +2645135 2645754 620 13572272.8992 13572303.6157 41.2428 -21.0269 3.317 run48.mat 221 4 1699 1328090 1328399 +311003 314260 3258 13643167.8502 13643331.3569 41.2321 0.0066632 7.6996 run49.mat 1 3 1701 171235 172863 +314533 315793 1261 13643345.0619 13643408.3297 41.2344 -0.0096738 7.3107 run49.mat 1 3 1701 172999 173629 +316131 317808 1678 13643425.3035 13643509.5197 41.2259 -0.0022567 7.6182 run49.mat 1 3 1701 173798 174637 +318351 318482 132 13643536.7882 13643543.3668 41.2014 0.0068152 9.8843 run49.mat 1 3 1701 174909 174974 +318732 320013 1282 13643555.9214 13643620.248 41.2316 0.0092041 8.0321 run49.mat 1 3 1701 175099 175740 +320351 321393 1043 13643637.0094 13643688.6824 41.2191 -0.0063616 7.7104 run49.mat 1 3 1701 175909 176430 +321731 328281 6551 13643705.4439 13644031.6826 41.2272 -0.011805 7.9383 run49.mat 1 3 1701 176599 179874 +328534 333952 5419 13644044.3351 13644316.9139 41.2261 -0.0062442 8.0864 run49.mat 1 3 1701 180000 182710 +334206 340193 5988 13644329.7232 13644628.49 41.2275 -0.0084449 7.7551 run49.mat 1 3 1701 182837 185830 +340531 346607 6077 13644645.4616 13644950.2321 41.2306 0.0033906 7.3567 run49.mat 1 3 1701 185999 189037 +346913 349133 2221 13644965.5381 13645076.5815 41.2231 -0.026122 6.57 run49.mat 1 3 1701 189190 190300 +349471 350122 652 13645093.4881 13645126.0423 41.226 -0.0056497 6.9301 run49.mat 1 3 1701 190469 190795 +350396 350413 18 13645139.6906 13645140.5374 41.2451 0.0050456 9.3497 run49.mat 1 3 1701 190932 190940 +350751 355202 4452 13645157.3737 13645379.1009 41.2259 0.0015549 6.9628 run49.mat 1 3 1701 191109 193335 +355453 355798 346 13645391.6535 13645408.9071 41.2497 0.0091848 7.2808 run49.mat 1 3 1701 193460 193633 +356066 356359 294 13645422.3099 13645436.9629 41.2335 -0.083784 6.2038 run49.mat 1 3 1701 193767 193913 +356771 359153 2383 13645457.5672 13645576.692 41.2246 -0.0031994 6.3062 run49.mat 1 3 1701 194119 195310 +359491 360001 511 13645593.5955 13645619.0845 41.2625 -0.010949 6.8165 run49.mat 1 3 1701 195479 195734 +360252 360289 38 13645631.5872 13645633.4302 41.2376 0.18517 7.6709 run49.mat 1 3 1701 195860 195878 +360552 362822 2271 13645646.5307 13645759.6027 41.2231 -0.014569 6.2223 run49.mat 1 3 1701 196010 197145 +363132 364413 1282 13645775.0443 13645838.8527 41.1997 0.0058115 6.2015 run49.mat 1 3 1701 197300 197940 +364955 365393 439 13645865.8506 13645887.7544 41.2352 0.022565 6.1548 run49.mat 1 3 1701 198211 198430 +365731 366282 552 13645904.6578 13645932.2133 41.2519 0.010996 6.1682 run49.mat 1 3 1701 198599 198875 +366539 366898 360 13645945.0659 13645963.0196 41.2307 0.0048633 5.3678 run49.mat 1 3 1701 199003 199183 +367215 378273 11059 13645978.8728 13646532.599 41.2243 -0.0091074 7.2688 run49.mat 1 3 1701 199341 204871 +378611 379993 1383 13646549.3716 13646617.9504 41.2279 0.01204 7.5217 run49.mat 1 3 1701 205040 205731 +380254 382413 2160 13646631.1075 13646739.95 41.2254 -0.017336 7.5206 run49.mat 1 3 1701 205862 206941 +382751 385251 2501 13646756.9897 13646882.8459 41.2187 -0.030374 7.3238 run49.mat 1 3 1701 207110 208360 +385507 387646 2140 13646895.5994 13647002.1612 41.2295 -0.0072092 7.4846 run49.mat 1 3 1701 208488 209558 +387958 406032 18075 13647017.7045 13647919.6985 41.2271 -0.005384 7.3243 run49.mat 1 3 1701 209714 218751 +406284 407041 758 13647932.4027 13647970.5656 41.2285 -0.040519 7.1867 run49.mat 1 3 1701 218877 219256 +474759 475251 493 13651355.4839 13651380.1212 41.2072 0.022513 11.204 run49.mat 1 3 1702 253116 253362 +475503 475772 270 13651392.7771 13651406.2868 41.2079 0.019643 11.4815 run49.mat 1 3 1702 253488 253622 +476022 480601 4580 13651418.8423 13651648.657 41.2259 0.00030619 10.3571 run49.mat 1 3 1702 253747 256037 +480859 495811 14953 13651661.5595 13652408.7197 41.2248 -0.0089118 10.1145 run49.mat 1 3 1702 256166 263643 +496118 498593 2476 13652424.1977 13652548.9794 41.2276 -0.016724 10.0494 run49.mat 1 3 1702 263796 265034 +498931 505404 6474 13652566.0202 13652888.154 41.2247 0.0029845 9.4568 run49.mat 1 3 1702 265203 268439 +505721 506050 330 13652904.0071 13652920.4604 41.2209 -0.011309 8.6007 run49.mat 1 3 1702 268598 268762 +506305 509081 2777 13652933.2129 13653072.0405 41.2276 -0.017055 9.1101 run49.mat 1 3 1702 268890 270278 +509345 510041 697 13653085.2431 13653120.0504 41.2365 0.012389 8.9425 run49.mat 1 3 1702 270410 270758 +510359 510680 322 13653136.0851 13653152.2711 41.241 0.012759 9.8789 run49.mat 1 3 1702 270917 271077 +510943 511812 870 13653165.5325 13653209.3505 41.2237 -0.0036818 9.2638 run49.mat 1 3 1702 271209 271643 +512062 513393 1332 13653221.9564 13653289.0702 41.2325 -0.012693 8.7043 run49.mat 1 3 1702 271768 272434 +513803 514611 809 13653309.7438 13653350.4861 41.2476 0.019995 8.3508 run49.mat 1 3 1702 272639 273043 +514918 522333 7416 13653365.9661 13653736.3448 41.2255 -0.0093035 8.5121 run49.mat 1 3 1702 273196 276904 +522671 524193 1523 13653753.1801 13653828.9885 41.2197 0.0081241 7.7815 run49.mat 1 3 1702 277073 277834 +524531 526611 2081 13653845.8238 13653949.1304 41.2163 -0.0028415 8.5524 run49.mat 1 3 1702 278003 279043 +526862 527739 878 13653961.5887 13654005.1181 41.2163 -0.0063668 7.6251 run49.mat 1 3 1702 279168 279607 +528012 529621 1610 13654018.6683 13654098.5302 41.2231 -0.018861 7.8864 run49.mat 1 3 1702 279743 280548 +529874 530593 720 13654111.0877 13654147.0531 41.2228 -0.0040218 7.5233 run49.mat 1 3 1702 280674 281034 +530931 533421 2491 13654164.0258 13654289.0617 41.2245 -0.016209 7.5477 run49.mat 1 3 1702 281203 282448 +533673 534593 921 13654301.7159 13654347.9139 41.223 -0.0093341 7.4689 run49.mat 1 3 1702 282574 283034 +535060 535292 233 13654371.3507 13654382.953 41.2207 0.0068418 8.6676 run49.mat 1 3 1702 283268 283384 +535564 537133 1570 13654396.5558 13654475.0216 41.2328 0.0084415 7.3883 run49.mat 1 3 1702 283520 284304 +537471 541746 4276 13654491.925 13654706.098 41.2279 -0.017532 7.4617 run49.mat 1 3 1702 284473 286611 +542306 542993 688 13654734.2223 13654768.7247 41.218 -0.015226 7.4187 run49.mat 1 3 1702 286891 287235 +543331 543688 358 13654785.6997 13654803.6289 41.1831 -0.038981 7.311 run49.mat 1 3 1702 287404 287582 +544014 550273 6260 13654820.0012 13655133.9672 41.227 0.0034904 7.0935 run49.mat 1 3 1702 287745 290875 +550611 550993 383 13655150.6724 13655169.5523 41.2187 -0.01138 6.9942 run49.mat 1 3 1702 291044 291235 +551331 551947 617 13655186.2575 13655216.7025 41.235 -0.018415 6.7058 run49.mat 1 3 1702 291404 291712 +552260 552370 111 13655232.1721 13655237.6087 41.2298 -0.010842 6.7358 run49.mat 1 3 1702 291868 291923 +553004 553032 29 13655268.9433 13655270.3272 41.3722 -0.098889 6.7494 run49.mat 1 3 1702 292240 292254 +553282 553890 609 13655282.6831 13655312.7328 41.2221 -0.00686 7.1557 run49.mat 1 3 1702 292379 292683 +554207 555889 1683 13655328.4001 13655412.0591 41.2126 0.028185 6.563 run49.mat 1 3 1702 292842 293683 +556194 556413 220 13655427.3122 13655438.2644 41.206 -0.023148 6.9241 run49.mat 1 3 1702 293835 293945 +556751 556966 216 13655455.1678 13655465.9199 41.2222 0.035607 7.3286 run49.mat 1 3 1702 294114 294221 +557283 557793 511 13655481.7731 13655507.2783 41.213 -0.02207 6.3381 run49.mat 1 3 1702 294380 294635 +558671 559489 819 13655551.1871 13655592.0954 41.2292 0.008061 6.2651 run49.mat 1 3 1702 295074 295483 +559792 560691 900 13655607.2484 13655652.3624 41.2242 0.0094835 6.4021 run49.mat 1 3 1702 295634 296084 +561005 561549 545 13655668.131 13655695.4498 41.2183 -0.0091765 6.7914 run49.mat 1 3 1702 296241 296513 +561812 563232 1421 13655708.6572 13655779.9672 41.2182 -0.030255 6.3521 run49.mat 1 3 1702 296644 297355 +563560 563994 435 13655796.4389 13655818.2336 41.2204 -0.0015037 6.3721 run49.mat 1 3 1702 297519 297736 +564254 564441 188 13655831.2904 13655840.6812 41.2127 -0.019577 5.8049 run49.mat 1 3 1702 297866 297959 +565103 565318 216 13655873.9726 13655884.8548 41.1651 -0.030089 6.0093 run49.mat 1 3 1702 298290 298398 +565582 565615 34 13655898.2172 13655899.8875 41.2143 0.16376 11.5256 run49.mat 1 3 1702 298530 298546 +566145 566346 202 13655926.7135 13655936.8871 41.2338 -0.013806 5.9669 run49.mat 1 3 1702 298811 298912 +566606 566733 128 13655950.047 13655956.4751 41.1572 -0.030679 6.8905 run49.mat 1 3 1702 299042 299105 +567071 567393 323 13655973.583 13655989.881 41.218 -0.0059658 6.1824 run49.mat 1 3 1702 299274 299435 +567731 568232 502 13656006.9889 13656032.347 41.236 -0.0039031 5.7427 run49.mat 1 3 1702 299604 299855 +568542 568757 216 13656048.0377 13656058.9199 41.2319 0.004711 5.2799 run49.mat 1 3 1702 300010 300117 +569074 569468 395 13656074.9649 13656094.9072 41.2327 -0.011141 6.6305 run49.mat 1 3 1702 300276 300473 +569792 570281 490 13656111.3065 13656135.7196 41.214 -0.027822 6.3997 run49.mat 1 3 1702 300635 300879 +570671 570942 272 13656155.0687 13656168.5138 41.161 -0.042019 6.3517 run49.mat 1 3 1702 301074 301210 +705117 709033 3917 13662877.1564 13663069.8867 41.2246 0.0031677 9.9454 run49.mat 11 3 1704 368300 370258 +709338 731940 22603 13663084.8976 13664215.2142 41.2249 -0.0031304 9.7488 run49.mat 11 3 1704 370411 381712 +732258 738432 6175 13664231.1815 13664541.1887 41.2249 -0.0072327 9.7484 run49.mat 11 3 1704 381871 384958 +738685 741463 2779 13664553.8923 13664693.3753 41.2314 0.0020562 9.8436 run49.mat 11 3 1704 385085 386474 +741713 752861 11149 13664705.9274 13665262.8732 41.2267 -0.0043447 9.7694 run49.mat 11 3 1704 386599 392173 +753114 753983 870 13665275.4253 13665318.539 41.2226 -0.0051859 10.2714 run49.mat 11 3 1704 392300 392734 +754235 756063 1829 13665331.0415 13665422.4588 41.232 -0.016184 9.8388 run49.mat 11 3 1704 392860 393774 +756325 757013 689 13665435.6151 13665470.163 41.223 0.0070468 9.7737 run49.mat 11 3 1704 393905 394249 +757263 801181 43919 13665482.7167 13667679.6749 41.2251 -0.0011886 9.7621 run49.mat 11 3 1704 394374 416334 +869037 873669 4633 13671070.4319 13671303.575 41.2246 0.0097646 9.8974 run49.mat 11 3 1705 450264 452580 +873940 887936 13997 13671317.2361 13672017.5806 41.2274 -0.0005454 9.7225 run49.mat 11 3 1705 452715 459714 +888200 895622 7423 13672030.7832 13672400.9571 41.222 -0.0034888 9.788 run49.mat 11 3 1705 459846 463557 +895884 903563 7680 13672414.0597 13672797.4031 41.2259 -0.010373 9.7587 run49.mat 11 3 1705 463688 467528 +971437 998809 27373 13676191.0149 13677560.8561 41.2259 -0.0059356 10.9891 run49.mat 21 3 1706 501466 515152 +999066 1034648 35583 13677573.8569 13679352.0566 41.2249 -0.0052847 10.9617 run49.mat 21 3 1706 515281 533073 +1034964 1067502 32539 13679367.797 13680992.6174 41.2273 -0.005169 10.9651 run49.mat 21 3 1706 533231 549500 +1135361 1141989 6629 13684389.9551 13684720.1659 41.2244 -0.016459 11.0462 run49.mat 21 3 1707 583432 586746 +1209684 1238374 28691 13688101.2499 13689537.4139 41.2266 -0.0029975 10.0103 run49.mat 31 3 1708 620595 634940 +1238624 1305742 67119 13689549.8682 13692907.6788 41.2258 -0.0037201 9.9925 run49.mat 31 3 1708 635065 668626 +1373758 1380433 6676 13696307.0266 13696640.9672 41.2233 -0.0033547 10.0787 run49.mat 31 3 1709 702635 705973 +1448126 1544121 95996 13700026.0284 13704824.5849 41.227 -0.0035093 9.273 run49.mat 41 3 1710 739821 787821 +1612203 1618977 6775 13708230.5995 13708569.1608 41.2276 -0.0028152 9.3357 run49.mat 41 3 1711 821863 825250 +1688405 1784400 95996 13712041.6848 13716839.26 41.227 -0.0034812 8.7046 run49.mat 51 3 1712 859965 907965 +1852545 1859336 6792 13720245.6884 13720588.819 41.2277 -0.0044842 8.7444 run49.mat 51 3 1713 942039 945435 +1928755 2024760 96006 13724057.2879 13728856.0603 41.2268 -0.0042972 8.2478 run49.mat 61 3 1714 980146 1028150 +2092665 2099440 6776 13732254.2767 13732593.1416 41.2272 -0.0046019 8.3013 run49.mat 61 3 1715 1062105 1065492 +2169006 2264999 95994 13736068.6554 13740868.1379 41.2265 -0.0034795 7.8601 run49.mat 71 3 1716 1100277 1148275 +2332859 2339655 6797 13744263.3687 13744601.0246 41.2225 -0.0040834 7.9066 run49.mat 71 3 1717 1182207 1185605 +2409009 2505019 96011 13748069.8722 13752870.1982 41.2263 -0.0041975 7.5306 run49.mat 81 3 1718 1220284 1268290 +2575022 2580095 5074 13756371.2694 13756623.0647 41.2252 -0.0018124 7.6 run49.mat 81 3 1719 1303293 1305830 +2580406 2581816 1411 13756638.7124 13756709.7953 41.2223 -0.0015916 7.5721 run49.mat 81 3 1719 1305986 1306691 +2651175 2695089 43915 13760178.9721 13762375.2299 41.2256 -0.0038586 7.2448 run49.mat 91 3 1720 1341372 1363330 +2695340 2737989 42650 13762387.6852 13764519.6515 41.2261 -0.0042103 7.2444 run49.mat 91 3 1720 1363455 1384781 +2738244 2747199 8956 13764532.3028 13764978.6989 41.2245 -0.0023377 7.2594 run49.mat 91 3 1720 1384908 1389386 +2817321 2824082 6762 13768487.6349 13768825.7852 41.2247 -0.0040929 7.2939 run49.mat 91 3 1721 1424448 1427829 +2893495 2989498 96004 13772293.2784 13777093.7319 41.2295 -0.0039989 6.9972 run49.mat 101 3 1722 1462537 1510541 +3057421 3064194 6774 13780492.3867 13780828.4545 41.2186 -0.0015611 7.0351 run49.mat 101 3 1723 1544503 1547890 +3135651 3159190 23540 13784404.1916 13785580.5737 41.2242 -0.0041389 6.7824 run49.mat 111 3 1724 1583620 1595390 +3159441 3170938 11498 13785593.0266 13786167.1939 41.2282 -0.0030922 6.7836 run49.mat 111 3 1724 1595516 1601265 +3171246 3191519 20274 13786182.5968 13787194.5444 41.2267 0.00070342 6.7752 run49.mat 111 3 1724 1601419 1611556 +3191772 3231616 39845 13787207.1993 13789200.9462 41.227 -0.0028761 6.7827 run49.mat 111 3 1724 1611682 1631605 +3301614 3302396 783 13792699.8075 13792738.905 41.2167 -0.0053814 6.8553 run49.mat 111 3 1725 1666605 1666996 +3302661 3308433 5773 13792752.2646 13793042.6803 41.2222 -0.0023399 6.795 run49.mat 111 3 1725 1667129 1670015 +3377769 3406737 28969 13796507.5356 13797956.1927 41.2262 -0.0024512 6.5806 run49.mat 121 3 1726 1704685 1719169 +3407049 3439171 32123 13797971.796 13799580.3165 41.2274 -0.0023554 6.5839 run49.mat 121 3 1726 1719325 1735387 +3439421 3450690 11270 13799592.8191 13800153.1353 41.2268 -0.004804 6.5767 run49.mat 121 3 1726 1735512 1741147 +3450941 3461179 10239 13800165.5882 13800679.0362 41.2281 -0.004592 6.5893 run49.mat 121 3 1726 1741272 1746392 +3461483 3473758 12276 13800694.2391 13801309.6148 41.2367 -0.0077257 6.5919 run49.mat 121 3 1726 1746544 1752681 +3543888 3550710 6823 13804816.2052 13805156.8054 41.2252 -0.004062 6.5969 run49.mat 121 3 1727 1787748 1791159 +3620089 3629567 9479 13808625.769 13809100.6299 41.227 -0.0029898 6.4187 run49.mat 131 3 1728 1825850 1830589 +3629898 3702267 72370 13809117.1862 13812733.9518 41.2269 -0.0038331 6.3991 run49.mat 131 3 1728 1830755 1866941 +3702610 3706334 3725 13812751.2436 13812936.9829 41.2337 -0.0047478 6.411 run49.mat 131 3 1728 1867112 1868974 +3706654 3716056 9403 13812952.8591 13813423.1855 41.2277 -0.0045568 6.4078 run49.mat 131 3 1728 1869134 1873836 +3786062 3792917 6856 13816925.3695 13817267.5768 41.2277 -0.0021675 6.4107 run49.mat 131 3 1729 1908840 1912268 +3862231 3953093 90863 13820733.2559 13825277.2843 41.2278 -0.0027154 6.241 run49.mat 141 3 1730 1946926 1992359 +3953343 3958176 4834 13825289.7895 13825529.7748 41.2287 -0.0026646 6.2404 run49.mat 141 3 1730 1992484 1994901 +4028167 4035065 6899 13829030.5288 13829374.2133 41.2242 -0.0060314 6.264 run49.mat 141 3 1731 2029898 2033347 +4104363 4194992 90630 13832839.5148 13837371.3093 41.227 -0.0033719 6.0932 run49.mat 151 3 1732 2067998 2113314 +4195244 4200315 5072 13837383.9142 13837637.3136 41.2254 -0.0022973 6.1095 run49.mat 151 3 1732 2113440 2115976 +4270510 4277386 6877 13841146.4414 13841491.1068 41.2278 -0.0020968 6.111 run49.mat 151 3 1733 2151075 2154513 +4348529 4389612 41084 13845049.1791 13847101.9334 41.2292 -0.0032056 5.9539 run49.mat 160.7044 3 1734 2190086 2210629 +4389863 4400843 10981 13847114.4859 13847661.7269 41.2297 -0.0026881 5.9451 run49.mat 161 3 1734 2210754 2216244 +4401094 4431259 30166 13847674.1798 13849184.7735 41.2253 -0.0029339 5.9532 run49.mat 161 3 1734 2216370 2231453 +4431522 4444458 12937 13849197.9521 13849844.2465 41.2269 -0.0032884 5.9638 run49.mat 161 3 1734 2231584 2238053 +4514658 4521558 6901 13853352.8841 13853701.8498 41.2246 -0.0038222 5.9717 run49.mat 161 3 1735 2273154 2276604 +4592895 4670546 77652 13857267.3727 13861150.3251 41.2262 -0.0027846 5.8259 run49.mat 171 3 1736 2312274 2351102 +4670804 4688831 18028 13861163.2305 13862062.8396 41.2258 -0.00275 5.8358 run49.mat 171 3 1736 2351231 2360244 +4758837 4765731 6895 13865563.3499 13865908.2113 41.2227 -0.0039953 5.8494 run49.mat 171 3 1737 2395249 2398696 +4837062 4932104 95043 13869477.2667 13874227.5999 41.2281 -0.002899 5.7115 run49.mat 181 3 1738 2434159 2481681 +4932355 4932992 638 13874240.1517 13874272.2715 41.2639 0.00029542 5.7015 run49.mat 181 3 1738 2481806 2482125 +5003033 5009950 6918 13877775.0085 13878120.9565 41.2245 -0.0030343 5.7217 run49.mat 181 3 1739 2516255 2519713 +5081262 5161534 80273 13881685.484 13885702.1939 41.2266 -0.0028512 5.5979 run49.mat 191 3 1740 2555371 2595509 +5161784 5177192 15409 13885714.6963 13886484.2942 41.2272 -0.0025906 5.605 run49.mat 191 3 1740 2595634 2603339 +5247195 5254120 6926 13889985.3001 13890331.641 41.2237 -0.0030979 5.6155 run49.mat 191 3 1741 2638342 2641804 +5325417 5421355 95939 13893893.3824 13898691.6361 41.2277 -0.0025517 5.4587 run49.mat 201 3 1742 2677454 2725425 +5491556 5498485 6930 13902203.6954 13902548.7969 41.2244 -0.002564 5.4824 run49.mat 201 3 1743 2760528 2763992 +5569778 5662580 92803 13906113.903 13910753.2976 41.2271 -0.0025701 5.3217 run49.mat 211 3 1744 2799640 2846043 +5662886 5665713 2828 13910768.5799 13910908.8359 41.2326 -0.0036167 5.3159 run49.mat 211 3 1744 2846196 2847610 +5737784 5744664 6881 13914513.4466 13914855.5693 41.2283 -0.0023379 5.3473 run49.mat 211 3 1745 2883647 2887087 +5815951 5911893 95943 13918421.9329 13923217.6741 41.2272 -0.0026805 5.2028 run49.mat 221 3 1746 2922732 2970705 +5981880 5988805 6926 13926715.6086 13927061.9475 41.225 -0.0020034 5.2122 run49.mat 221 3 1747 3005700 3009163 +266273 286758 20486 12484011.9766 12485036.2035 82.4674 -40.3881 92.9756 run5.mat -1 -1 1749 157580 167823 +287063 307761 20699 12485051.5796 12486087.4941 80.813 -40.3872 92.5388 run5.mat -1 -1 1749 167976 178325 +308070 328756 20687 12486102.8246 12487135.0452 79.1678 -40.3882 92.5911 run5.mat -1 -1 1749 178479 188823 +329062 349757 20696 12487150.2268 12488184.5361 77.5115 -40.3863 92.5681 run5.mat -1 -1 1749 188976 199324 +350064 362015 11952 12488199.889 12488800.8916 75.8634 -40.389 92.7495 run5.mat -1 -1 1749 199477 205453 +446261 454135 7875 12493010.235 12493404.8857 75.8599 -40.3889 93.7509 run5.mat -1 -1 1750 247577 251515 +454465 475137 20673 12493421.2612 12494454.2858 74.213 -40.3867 92.5076 run5.mat -1 -1 1750 251680 262017 +475447 496138 20692 12494469.7888 12495506.5562 72.5679 -40.3874 92.6428 run5.mat -1 -1 1750 262172 272517 +496443 517137 20695 12495521.8706 12496554.6971 70.9168 -40.387 92.5367 run5.mat -1 -1 1750 272670 283017 +517444 538119 20676 12496569.9313 12497602.8316 69.2658 -40.3871 92.6728 run5.mat -1 -1 1750 283171 293509 +538424 542034 3611 12497618.2077 12497800.0087 67.6156 -40.3871 92.7611 run5.mat -1 -1 1750 293662 295466 +626304 642376 16073 12502011.7345 12502817.4064 67.6178 -40.3873 92.9787 run5.mat -1 -1 1751 337603 345640 +642701 663377 20677 12502833.5307 12503867.9133 65.973 -40.3866 92.612 run5.mat -1 -1 1751 345802 356141 +663685 684377 20693 12503883.3162 12504918.3826 64.3194 -40.3873 92.5076 run5.mat -1 -1 1751 356295 366641 +684685 705374 20690 12504933.6634 12505968.1243 62.674 -40.3867 92.7 run5.mat -1 -1 1751 366795 377140 +705682 722074 16393 12505983.4081 12506800.5424 61.022 -40.3875 92.8102 run5.mat -1 -1 1751 377294 385491 +806352 809656 3305 12511015.8276 12511179.9185 61.0259 -40.3859 95.6241 run5.mat -1 -1 1752 427631 429283 +809979 830680 20702 12511196.0719 12512232.3753 59.3757 -40.3874 92.4815 run5.mat -1 -1 1752 429445 439796 +830989 851659 20671 12512247.7057 12513282.6699 57.7295 -40.3882 92.6737 run5.mat -1 -1 1752 439951 450286 +851966 872678 20713 12513298.0258 12514331.8425 56.0724 -40.3875 92.5928 run5.mat -1 -1 1752 450440 460796 +872984 893654 20671 12514347.1454 12515380.9041 54.427 -40.3886 92.6348 run5.mat -1 -1 1752 460949 471284 +893963 902134 8172 12515396.3606 12515806.604 52.7741 -40.387 92.8762 run5.mat -1 -1 1752 471439 475525 +986320 997897 11578 12520014.4793 12520593.4881 52.7781 -40.3873 93.2675 run5.mat -1 -1 1753 517619 523408 +998226 1018902 20677 12520609.945 12521642.0847 51.1287 -40.3875 92.4785 run5.mat -1 -1 1753 523573 533911 +1019212 1039898 20687 12521657.716 12522693.9534 49.4744 -40.3882 92.5948 run5.mat -1 -1 1753 534066 544410 +1040204 1060880 20677 12522709.1957 12523743.24 47.828 -40.388 92.6189 run5.mat -1 -1 1753 544563 554901 +1061188 1081842 20655 12523758.7673 12524791.6406 46.1757 -40.388 92.8364 run5.mat -1 -1 1753 555055 565382 +1082152 1082173 22 12524807.0206 12524808.0625 44.5814 -40.3771 77.5362 run5.mat -1 -1 1753 565537 565548 +1166298 1185995 19698 12529015.1077 12529998.8644 44.5295 -40.387 93.0277 run5.mat -1 -1 1754 607612 617461 +1186303 1206999 20697 12530014.2674 12531049.4007 42.8766 -40.3878 92.5416 run5.mat -1 -1 1754 617615 627964 +1207305 1227966 20662 12531064.453 12532097.1881 41.2275 -40.388 92.53 run5.mat -1 -1 1754 628117 638448 +1228280 1248960 20681 12532113.0179 12533146.1616 39.5828 -40.3875 92.6569 run5.mat -1 -1 1754 638605 648945 +1249272 1262053 12782 12533161.6439 12533801.7813 37.9312 -40.3875 92.9266 run5.mat -1 -1 1754 649101 655492 +1346322 1353260 6939 12538016.2813 12538361.9478 37.9395 -40.3878 93.8338 run5.mat -1 -1 1755 697628 701097 +1353582 1374283 20702 12538377.9232 12539414.6458 36.284 -40.3879 92.5883 run5.mat -1 -1 1755 701258 711609 +1374590 1395262 20673 12539429.999 12540462.0397 34.6319 -40.3873 92.6075 run5.mat -1 -1 1755 711763 722099 +1395570 1416262 20693 12540477.567 12541512.6684 32.9855 -40.3875 92.6134 run5.mat -1 -1 1755 722253 732599 +1416566 1437241 20676 12541527.9972 12542561.3948 31.3389 -40.3875 92.6665 run5.mat -1 -1 1755 732751 743089 +1437549 1442133 4585 12542576.8007 12542805.2679 29.6922 -40.3862 92.9517 run5.mat -1 -1 1755 743244 745536 +1526440 1541699 15260 12547021.9266 12547782.7618 29.688 -40.3875 93.2347 run5.mat -1 -1 1756 787691 795321 +1542007 1562702 20696 12547798.165 12548834.0863 28.0367 -40.3889 92.6137 run5.mat -1 -1 1756 795475 805823 +1563010 1583702 20693 12548849.6136 12549884.8022 26.3875 -40.3881 92.5572 run5.mat -1 -1 1756 805977 816323 +1584011 1604702 20692 12549900.3799 12550932.1421 24.7389 -40.3866 92.6631 run5.mat -1 -1 1756 816478 826824 +1605008 1622232 17225 12550947.3237 12551811.1826 23.087 -40.3873 92.7323 run5.mat -1 -1 1756 826977 835589 +1706716 1709160 2445 12556036.5256 12556157.8039 23.0923 -40.3866 94.6086 run5.mat -1 -1 1757 877833 879055 +1709479 1730163 20685 12556173.6336 12557207.7839 21.435 -40.3884 92.6188 run5.mat -1 -1 1757 879214 889557 +1730468 1751161 20694 12557222.9159 12558257.5979 19.7897 -40.3881 92.6219 run5.mat -1 -1 1757 889709 900056 +1751468 1772143 20676 12558272.893 12559308.0192 18.1346 -40.3878 92.6748 run5.mat -1 -1 1757 900210 910548 +1772451 1793121 20671 12559323.4252 12560356.6026 16.4892 -40.3876 92.6438 run5.mat -1 -1 1757 910702 921037 +1793429 1802492 9064 12560371.8865 12560823.9108 14.8377 -40.3878 92.7998 run5.mat -1 -1 1757 921191 925723 +1886786 1897561 10776 12565037.6422 12565574.7191 14.8395 -40.3887 93.46 run5.mat -1 -1 1758 967872 973260 +1897882 1918560 20679 12565590.9018 12566627.7643 13.1896 -40.3872 92.6305 run5.mat -1 -1 1758 973420 983760 +1918867 1939559 20693 12566643.1175 12567677.0254 11.5382 -40.3888 92.6588 run5.mat -1 -1 1758 983913 994260 +1939868 1960542 20675 12567692.6063 12568726.8943 9.8922 -40.3877 92.5686 run5.mat -1 -1 1758 994414 1004751 +1960849 1981501 20653 12568742.3743 12569773.4081 8.2451 -40.3876 92.6922 run5.mat -1 -1 1758 1004905 1015231 +1981807 1982552 746 12569788.8346 12569826.2572 6.5794 -40.3916 92.9031 run5.mat -1 -1 1758 1015384 1015757 +2066860 2085939 19080 12574041.7841 12574997.2394 6.5956 -40.3875 93.0352 run5.mat -1 -1 1759 1057913 1067453 +2086271 2106942 20672 12575013.9766 12576046.443 4.9455 -40.3888 92.5911 run5.mat -1 -1 1759 1067619 1077955 +2107250 2127958 20709 12576061.8462 12577097.6447 3.2964 -40.3882 92.6036 run5.mat -1 -1 1759 1078109 1088463 +2128269 2148925 20657 12577113.3233 12578146.1127 1.6507 -40.387 92.6596 run5.mat -1 -1 1759 1088619 1098947 +2149233 2162651 13419 12578161.5157 12578834.5653 -0.00090372 -40.3886 92.89 run5.mat -1 -1 1759 1099101 1105810 +2246737 2253021 6285 12583035.4612 12583351.2001 0.0043272 -40.387 93.8142 run5.mat -1 -1 1760 1147856 1150997 +2253345 2274027 20683 12583367.4063 12584400.1208 -1.6479 -40.3876 92.5368 run5.mat -1 -1 1760 1151159 1161501 +2274339 2295045 20707 12584415.8498 12585452.3654 -3.2957 -40.3885 92.597 run5.mat -1 -1 1760 1161657 1172011 +2295351 2316025 20675 12585467.5469 12586500.3268 -4.9463 -40.3883 92.5983 run5.mat -1 -1 1760 1172164 1182501 +2316333 2337003 20671 12586515.7298 12587551.0585 -6.5914 -40.3886 92.6643 run5.mat -1 -1 1760 1182655 1192990 +2337310 2342532 5223 12587566.5354 12587826.3632 -8.2486 -40.3887 92.954 run5.mat -1 -1 1760 1193144 1195755 +2426802 2441302 14501 12592039.7645 12592766.0492 -8.2469 -40.3873 93.0323 run5.mat -1 -1 1761 1237892 1245142 +2441627 2462320 20694 12592782.4336 12593816.1354 -9.897 -40.3872 92.511 run5.mat -1 -1 1761 1245305 1255652 +2462629 2483303 20675 12593831.5884 12594866.3313 -11.5435 -40.3877 92.5405 run5.mat -1 -1 1761 1255806 1266144 +2483609 2504302 20694 12594881.7578 12595916.5212 -13.1952 -40.3871 92.6396 run5.mat -1 -1 1761 1266297 1276643 +2504611 2522610 18000 12595931.8547 12596831.8866 -14.8447 -40.3881 92.7498 run5.mat -1 -1 1761 1276798 1285798 +2607090 2608882 1793 12601056.4293 12601146.0465 -14.8509 -40.3867 97.032 run5.mat -1 -1 1762 1328040 1328936 +2609211 2629883 20673 12601162.4997 12602196.1492 -16.4951 -40.3887 92.524 run5.mat -1 -1 1762 1329100 1339437 +2630189 2650863 20675 12602211.3308 12603242.3424 -18.1453 -40.3878 92.6056 run5.mat -1 -1 1762 1339590 1349927 +2651171 2671864 20694 12603257.8697 12604292.0267 -19.793 -40.3882 92.5697 run5.mat -1 -1 1762 1350081 1360428 +2672168 2692846 20679 12604307.2298 12605342.8019 -21.4392 -40.3875 92.5634 run5.mat -1 -1 1762 1360580 1370919 +2693150 2702850 9701 12605358.1307 12605843.8715 -23.0927 -40.3887 92.7725 run5.mat -1 -1 1762 1371071 1375922 +2787077 2797082 10006 12610053.9814 12610554.8492 -23.0906 -40.388 93.2788 run5.mat -1 -1 1763 1418037 1423040 +2797411 2818104 20694 12610571.1719 12611606.1393 -24.7381 -40.3874 92.6364 run5.mat -1 -1 1763 1423204 1433551 +2818410 2831178 12769 12611621.5658 12612258.4696 -26.3893 -40.3881 92.781 run5.mat -1 -1 1763 1433704 1440088 +2832981 2833398 418 12612347.9397 12612368.6324 127.9375 127.9375 0.16831 run5.mat -1 -1 1763 1440990 1441198 +2833736 2834263 528 12612385.4049 12612411.5562 127.9375 127.9375 0.1104 run5.mat -1 -1 1763 1441367 1441631 +2834936 2834998 63 12612444.9524 12612448.029 127.9375 127.9375 0.27818 run5.mat -1 -1 1763 1441967 1441998 +357377 367656 10280 14034200.1066 14034714.181 41.2298 -21.0424 5.0161 run50.mat 1 4 1765 96403 98973 +367922 395965 28044 14034727.4836 14036130.3696 41.2308 -21.0347 4.1945 run50.mat 1 4 1765 99040 106050 +473954 498770 24817 14040029.4434 14041270.1585 41.2281 -21.0374 5.7728 run50.mat 11 4 1766 125549 131753 +576651 596306 19656 14045165.1896 14046146.101 41.2293 -21.0362 6.4363 run50.mat 21 4 1767 151224 156138 +675356 695110 19755 14050099.2027 14051087.0966 41.2294 -21.0367 5.8737 run50.mat 31 4 1768 175902 180840 +776105 795917 19813 14055136.908 14056129.7516 41.2287 -21.0368 5.4462 run50.mat 41 4 1769 201090 206043 +876607 896412 19806 14060162.9339 14061153.069 41.2269 -21.0356 5.1327 run50.mat 51 4 1770 226216 231168 +977168 996942 19775 14065191.4621 14066178.7545 41.2327 -21.0363 4.8739 run50.mat 61 4 1771 251358 256301 +1079491 1099242 19752 14070307.4393 14071293.9262 41.2298 -21.0369 4.6318 run50.mat 71 4 1772 276940 281878 +1182241 1201721 19481 14075445.8188 14076418.4106 41.2302 -21.0369 4.4466 run50.mat 81 4 1773 302628 307499 +1284492 1304289 19798 14080558.0353 14081547.5358 41.2293 -21.0382 4.2914 run50.mat 91 4 1774 328192 333142 +1387128 1406697 19570 14085689.5603 14086667.5777 41.2264 -21.0361 4.1249 run50.mat 101 4 1775 353852 358745 +1491387 1510905 19519 14090901.8454 14091877.3263 41.2284 -21.0364 4.0132 run50.mat 111 4 1776 379918 384798 +1595925 1607002 11078 14096128.491 14096683.2701 41.2254 -21.0368 3.945 run50.mat 121 4 1777 406054 408823 +1607336 1615462 8127 14096699.8408 14097104.9034 41.2303 -21.0369 3.8701 run50.mat 121 4 1777 408906 410938 +1699936 1719747 19812 14101329.3717 14102320.38 41.2285 -21.0347 3.8303 run50.mat 131 4 1778 432057 437010 +1804738 1824110 19373 14106569.848 14107536.7843 41.229 -21.0375 3.7296 run50.mat 141 4 1779 458260 463103 +1909019 1928512 19494 14111784.7139 14112758.0842 41.2344 -21.0372 3.6526 run50.mat 151 4 1780 484331 489204 +2013465 2032998 19534 14117007.8832 14117982.5369 41.2349 -21.0361 3.574 run50.mat 161 4 1781 510443 515327 +2117491 2125658 8168 14122208.7982 14122616.0577 41.2309 -21.0372 3.5881 run50.mat 171 4 1782 536451 538493 +2125910 2137232 11323 14122628.6626 14123193.6185 41.2298 -21.0361 3.4774 run50.mat 171 4 1782 538556 541387 +2224505 2232017 7513 14127559.2227 14127934.5837 41.225 -21.0376 3.4745 run50.mat 181 4 1783 563206 565084 +2232270 2243516 11247 14127947.2386 14128508.8955 41.2359 -21.0342 3.4144 run50.mat 181 4 1783 565147 567959 +2330795 2350197 19403 14132871.9968 14133844.0383 41.2247 -21.0374 3.3811 run50.mat 191 4 1784 589780 594630 +2437235 2456716 19482 14138193.9871 14139170.0736 41.2338 -21.0338 3.304 run50.mat 201 4 1785 616391 621261 +2545774 2555620 9847 14143622.6091 14144113.0835 41.2239 -21.0364 3.2576 run50.mat 211 4 1786 643527 645988 +2555958 2565094 9137 14144130.1232 14144587.0214 41.2287 -21.0381 3.2176 run50.mat 211 4 1786 646072 648357 +2654270 2673736 19467 14149047.8761 14150020.1072 41.2306 -21.0358 3.1688 run50.mat 221 4 1787 670652 675519 +311242 312483 1242 14217896.0659 14217957.6479 41.2291 0.0098823 8.9697 run51.mat 1 3 1789 85821 86131 +312733 316362 3630 14217970.0536 14218152.3674 41.2274 -0.0071071 8.4396 run51.mat 1 3 1789 86193 87101 +316623 318631 2009 14218165.5253 14218266.6481 41.2272 -0.0020947 8.0541 run51.mat 1 3 1789 87166 87668 +318902 325491 6590 14218280.0933 14218608.5582 41.227 -0.0089416 8.365 run51.mat 1 3 1789 87736 89383 +325750 328246 2497 14218621.6152 14218747.4471 41.2281 -0.0075588 8.0233 run51.mat 1 3 1789 89448 90072 +328504 336554 8051 14218760.4484 14219163.2989 41.2255 -0.0073217 7.941 run51.mat 1 3 1789 90137 92149 +336892 341354 4463 14219180.3386 14219402.9925 41.2218 -0.0011866 7.6915 run51.mat 1 3 1789 92233 93349 +341692 344452 2761 14219419.7617 14219557.4307 41.2417 -0.0030678 7.3216 run51.mat 1 3 1789 93434 94124 +344703 349842 5140 14219570.0845 14219828.0768 41.2244 -0.011078 7.0361 run51.mat 1 3 1789 94187 95471 +350101 353933 3833 14219840.9266 14220031.3711 41.2236 -0.0018858 6.8635 run51.mat 1 3 1789 95536 96494 +354185 355354 1170 14220044.0779 14220103.023 41.2244 -0.0065136 7.1155 run51.mat 1 3 1789 96557 96849 +355692 359592 3901 14220120.0662 14220315.8224 41.2209 -0.014595 7.0792 run51.mat 1 3 1789 96933 97909 +359843 365974 6132 14220328.2753 14220634.412 41.2312 -0.00016034 6.8854 run51.mat 1 3 1789 97972 99505 +366312 367574 1263 14220651.4517 14220715.0734 41.2229 -0.01352 6.7868 run51.mat 1 3 1789 99589 99905 +367912 368383 472 14220732.1131 14220755.8578 41.2416 -0.03808 6.5552 run51.mat 1 3 1789 99989 100107 +368633 374848 6216 14220768.3442 14221077.7977 41.2227 -0.016463 6.4635 run51.mat 1 3 1789 100169 101723 +375171 375574 404 14221094.0813 14221114.3979 41.2083 0.054795 6.414 run51.mat 1 3 1789 101804 101904 +375912 377043 1132 14221131.4376 14221188.4551 41.2221 0.014869 6.3119 run51.mat 1 3 1789 101989 102272 +377306 377774 469 14221201.7139 14221225.3073 41.2357 -0.017251 6.2215 run51.mat 1 3 1789 102337 102454 +378112 378954 843 14221242.347 14221284.422 41.2104 -0.023719 6.0436 run51.mat 1 3 1789 102539 102750 +379292 379997 706 14221301.1945 14221336.1786 41.2359 0.013384 5.8396 run51.mat 1 3 1789 102834 103010 +380264 389354 9091 14221349.4279 14221803.0125 41.2278 -0.0028481 6.9366 run51.mat 1 3 1789 103077 105349 +389696 391610 1915 14221820.2539 14221916.7451 41.2222 -0.0015578 7.4176 run51.mat 1 3 1789 105435 105913 +391920 399922 8003 14221932.3733 14222332.8952 41.2298 -0.0065248 7.3374 run51.mat 1 3 1789 105991 107992 +400174 400394 221 14222345.3977 14222356.3126 41.2581 -0.016387 7.4881 run51.mat 1 3 1789 108055 108110 +400732 402412 1681 14222373.0818 14222456.4316 41.2271 -0.00033358 7.3066 run51.mat 1 3 1789 108195 108615 +402718 407320 4603 14222471.6132 14222702.6576 41.2213 0.0015833 7.2676 run51.mat 1 3 1789 108691 109841 +475286 475452 167 14226100.8765 14226109.1139 41.2505 0.0085306 10.0589 run51.mat 1 3 1790 126834 126875 +475706 476093 388 14226121.7181 14226140.9222 41.1959 0.02422 9.684 run51.mat 1 3 1790 126939 127035 +476344 492231 15888 14226153.3775 14226948.918 41.2263 -0.0053905 11.1308 run51.mat 1 3 1790 127098 131070 +492484 494752 2269 14226961.5729 14227075.009 41.2143 -0.013507 10.4069 run51.mat 1 3 1790 131133 131701 +495006 503234 8229 14227087.7116 14227499.1937 41.2267 -0.010271 10.0915 run51.mat 1 3 1790 131764 133821 +503572 515961 12390 14227516.0969 14228135.7216 41.2273 -0.0077495 9.1939 run51.mat 1 3 1790 133905 137003 +516229 518233 2005 14228149.1244 14228249.3453 41.2227 -0.00099264 8.7283 run51.mat 1 3 1790 137070 137570 +518483 528362 9880 14228261.8479 14228752.1052 41.2273 -0.0073444 8.259 run51.mat 1 3 1790 137633 140103 +528613 531154 2542 14228764.558 14228892.5627 41.2199 -0.014219 7.6989 run51.mat 1 3 1790 140166 140801 +531693 532050 358 14228919.741 14228937.7422 41.1978 -0.026659 7.697 run51.mat 1 3 1790 140936 141026 +532367 533301 935 14228953.7265 14229000.8221 41.2233 -0.0017774 7.2228 run51.mat 1 3 1790 141105 141338 +533823 534703 881 14229027.101 14229071.1094 41.2157 -0.0053694 7.5957 run51.mat 1 3 1790 141469 141689 +535026 535712 687 14229087.2626 14229121.5691 41.2029 -0.0094367 6.903 run51.mat 1 3 1790 141770 141941 +536013 536614 602 14229136.622 14229166.6778 41.2277 0.0091901 7.0739 run51.mat 1 3 1790 142016 142166 +537352 537905 554 14229203.5849 14229231.2402 41.2325 -0.0040952 7.3188 run51.mat 1 3 1790 142351 142489 +538485 542112 3628 14229260.2458 14229440.3962 41.2269 -0.0037555 7.0847 run51.mat 1 3 1790 142634 143541 +542376 543037 662 14229453.4966 14229486.2973 41.2122 -0.012536 7.679 run51.mat 1 3 1790 143607 143772 +543364 546614 3251 14229502.524 14229665.898 41.2286 -0.0059663 6.9657 run51.mat 1 3 1790 143854 144667 +546952 548454 1503 14229682.9377 14229758.6586 41.2232 -0.0012673 6.9038 run51.mat 1 3 1790 144751 145127 +548967 549909 943 14229784.5005 14229831.6103 41.2472 0.011591 6.2272 run51.mat 1 3 1790 145255 145490 +550225 550834 610 14229847.4136 14229877.87 41.2174 -0.02376 6.799 run51.mat 1 3 1790 145569 145721 +551172 552401 1230 14229894.7735 14229956.2363 41.2338 0.0073242 6.6563 run51.mat 1 3 1790 145806 146113 +552657 552854 198 14229969.039 14229978.891 41.2113 0.0025085 7.3864 run51.mat 1 3 1790 146177 146226 +553312 553651 340 14230001.7958 14230018.7493 41.1934 -0.028139 6.7024 run51.mat 1 3 1790 146341 146425 +553921 555190 1270 14230032.252 14230095.7142 41.2197 0.017168 6.7304 run51.mat 1 3 1790 146493 146810 +555706 556114 409 14230121.5191 14230141.9231 41.2415 0.012003 6.8915 run51.mat 1 3 1790 146939 147041 +556452 556754 303 14230158.8263 14230173.9292 41.2695 -0.040524 5.8318 run51.mat 1 3 1790 147126 147201 +557112 557572 461 14230191.8327 14230214.8371 41.2409 -0.044032 6.4084 run51.mat 1 3 1790 147291 147406 +557823 558192 370 14230227.3895 14230245.843 41.1981 0.041245 6.4088 run51.mat 1 3 1790 147468 147561 +558444 558454 11 14230258.4455 14230258.9456 41.2449 -0.083984 4.9284 run51.mat 1 3 1790 147624 147626 +558964 559954 991 14230284.4505 14230333.9608 41.2408 0.01305 6.3448 run51.mat 1 3 1790 147754 148001 +561892 562012 121 14230430.881 14230436.8823 41.2166 0.0046778 5.4564 run51.mat 1 3 1790 148486 148516 +562265 562373 109 14230449.5349 14230454.936 41.225 -0.028489 6.6211 run51.mat 1 3 1790 148579 148606 +563032 563254 223 14230487.8929 14230498.9952 41.2416 -0.092074 5.2383 run51.mat 1 3 1790 148771 148826 +563592 563778 187 14230515.8987 14230525.1759 41.1723 -0.038793 7.4948 run51.mat 1 3 1790 148911 148958 +564792 564911 120 14230575.4934 14230581.3986 41.1936 0.013805 7.0266 run51.mat 1 3 1790 149211 149241 +565168 565281 114 14230594.1516 14230599.759 41.2396 0.075639 6.7863 run51.mat 1 3 1790 149305 149333 +565534 565634 101 14230612.3136 14230617.2759 41.2368 0.036609 7.9755 run51.mat 1 3 1790 149397 149422 +566156 566253 98 14230643.179 14230647.9925 41.2941 -0.012815 6.0433 run51.mat 1 3 1790 149552 149577 +566503 567494 992 14230660.3982 14230709.5744 41.2134 -0.023449 5.726 run51.mat 1 3 1790 149639 149887 +567832 568043 212 14230726.347 14230736.8174 41.2274 0.046492 5.9324 run51.mat 1 3 1790 149971 150024 +568293 569254 962 14230749.2231 14230797.1048 41.2226 -0.0048343 6.1967 run51.mat 1 3 1790 150087 150327 +569752 569809 58 14230822.0096 14230824.8602 41.2568 0.015585 4.1401 run51.mat 1 3 1790 150451 150466 +570633 570694 62 14230866.0681 14230869.1187 41.2527 -0.0031029 6.0805 run51.mat 1 3 1790 150671 150687 +571354 571360 7 14230902.125 14230902.4251 41.1859 -0.045703 6.4275 run51.mat 1 3 1790 150852 150853 +705458 708090 2633 14237608.6886 14237741.3767 41.2303 0.0059017 10.192 run51.mat 11 3 1792 184379 185037 +708402 719233 10832 14237757.1057 14238299.1013 41.2257 -3.9362e-05 9.7098 run51.mat 11 3 1792 185115 187823 +719483 729663 10181 14238311.6039 14238818.7137 41.2288 -0.0020178 9.7743 run51.mat 11 3 1792 187886 190431 +729913 730883 971 14238831.2185 14238879.7372 41.2141 -0.017677 9.9179 run51.mat 11 3 1792 190493 190736 +731133 763293 32161 14238892.242 14240500.688 41.2272 -0.0051099 9.7621 run51.mat 11 3 1792 190798 198838 +763543 767711 4169 14240513.1904 14240721.6661 41.2291 0.0072211 9.8068 run51.mat 11 3 1792 198901 199943 +767966 801540 33575 14240734.4214 14242412.5705 41.2253 -0.0044812 9.7586 run51.mat 11 3 1792 200007 208400 +869513 874653 5141 14245810.3068 14246069.2107 41.224 0.0025059 9.9375 run51.mat 11 3 1793 225394 226680 +875084 876099 1016 14246090.6733 14246141.0405 41.2214 -0.011752 9.9883 run51.mat 11 3 1793 226787 227041 +876362 881238 4877 14246154.0913 14246396.6279 41.2282 -0.0015659 9.7406 run51.mat 11 3 1793 227107 228326 +881562 890972 9411 14246412.8342 14246883.4582 41.2261 0.0035552 9.7657 run51.mat 11 3 1793 228407 230760 +891233 892868 1636 14246896.5109 14246978.278 41.2205 -0.016855 9.9317 run51.mat 11 3 1793 230825 231234 +893134 904034 10901 14246991.5807 14247539.5162 41.2266 -0.0059303 9.7602 run51.mat 11 3 1793 231300 234025 +971897 982327 10431 14250930.5526 14251451.4224 41.2264 -0.0014788 10.9909 run51.mat 21 3 1794 250991 253600 +982635 1003126 20492 14251466.8254 14252492.8947 41.2252 -0.00012055 10.9554 run51.mat 21 3 1794 253677 258800 +1003448 1004330 883 14252509.1278 14252553.5925 41.2283 0.0057063 11.0375 run51.mat 21 3 1794 258880 259101 +1004643 1005254 612 14252569.3718 14252599.9365 41.2559 -0.011664 11.0733 run51.mat 21 3 1794 259179 259332 +1005592 1014750 9159 14252616.709 14253074.9657 41.2223 -0.0042187 10.9566 run51.mat 21 3 1794 259416 261706 +1015007 1067959 52953 14253087.8776 14255734.2013 41.2264 -0.006227 10.9696 run51.mat 21 3 1794 261770 275008 +1135971 1142589 6619 14259136.6156 14259467.1792 41.2279 -0.0016323 11.0923 run51.mat 21 3 1795 292012 293667 +1212354 1308418 96065 14262954.4995 14267757.1497 41.2269 -0.0024593 9.996 run51.mat 31 3 1796 311109 335126 +1376212 1382905 6694 14271147.7576 14271481.7686 41.2272 -0.0031977 10.0747 run51.mat 31 3 1797 352075 353748 +1452634 1548618 95985 14274967.4432 14279767.18 41.2267 -0.0031397 9.2722 run51.mat 41 3 1798 371182 395178 +1616687 1623476 6790 14283170.6064 14283510.125 41.2248 -0.0049564 9.3266 run51.mat 41 3 1799 412197 413894 +1692908 1788898 95991 14286983.1155 14291783.3464 41.2267 -0.003629 8.7066 run51.mat 51 3 1800 431253 455251 +1856978 1863762 6785 14295184.2025 14295523.4714 41.226 -0.005 8.7438 run51.mat 51 3 1801 472272 473968 +1931304 2027277 95974 14298902.5296 14303701.3149 41.2279 -0.0034087 8.2461 run51.mat 61 3 1802 490854 514849 +2095174 2101953 6780 14307097.1833 14307434.2521 41.2238 -0.0041362 8.3057 run51.mat 61 3 1803 531823 533519 +2171527 2266125 94599 14310912.9996 14315644.5773 41.2275 -0.0034349 7.8593 run51.mat 71 3 1804 550912 574563 +2266377 2267517 1141 14315657.0798 14315713.6386 41.231 -0.0080994 7.8935 run51.mat 71 3 1804 574626 574911 +2337443 2344238 6796 14319209.6949 14319549.1355 41.2252 -0.004437 7.9126 run51.mat 71 3 1805 592393 594092 +2413614 2471045 57432 14323019.2255 14325889.6644 41.2254 -0.0037501 7.5275 run51.mat 81 3 1806 611437 625796 +2471295 2509616 38322 14325902.2703 14327818.1514 41.2271 -0.0039126 7.5327 run51.mat 81 3 1806 625858 635439 +2577688 2584457 6770 14331222.7469 14331559.9685 41.2249 -0.0013041 7.5645 run51.mat 81 3 1807 652457 654149 +2653858 2693783 39926 14335030.6295 14337028.4455 41.2258 -0.0027339 7.2506 run51.mat 91 3 1808 671501 681482 +2694039 2749836 55798 14337041.1552 14339829.4564 41.2281 -0.0034224 7.2476 run51.mat 91 3 1808 681546 695496 +2819771 2826539 6769 14343324.9183 14343666.1162 41.2224 -0.0054753 7.2888 run51.mat 91 3 1809 712980 714673 +2895950 2906428 10479 14347135.522 14347657.5527 41.2244 -0.0026473 7.0068 run51.mat 101 3 1810 732026 734646 +2906745 2920015 13271 14347673.4093 14348338.6503 41.2279 -0.0039571 6.9904 run51.mat 101 3 1810 734725 738043 +2920316 2952664 32349 14348353.5838 14349969.9765 41.2256 -0.0029915 6.9915 run51.mat 101 3 1810 738118 746205 +2952987 2977033 24047 14349986.1327 14351190.3866 41.2263 -0.0033711 6.9978 run51.mat 101 3 1810 746286 752297 +2977336 2985145 7810 14351205.4193 14351593.4637 41.2309 -0.005603 7.0034 run51.mat 101 3 1810 752373 754326 +2985395 2991932 6538 14351605.9661 14351934.0972 41.2268 -0.0054972 7.0124 run51.mat 101 3 1810 754388 756023 +3061838 3068587 6750 14355430.2154 14355766.7162 41.2317 -0.0034073 7.0102 run51.mat 101 3 1811 773500 775187 +3138021 3154305 16285 14359239.8879 14360054.5598 41.2272 -0.0039525 6.7889 run51.mat 111 3 1812 792547 796618 +3154557 3157170 2614 14360067.0623 14360196.7011 41.2311 -0.0035731 6.8275 run51.mat 111 3 1812 796681 797334 +3157478 3233995 76518 14360211.9819 14364036.4074 41.2275 -0.003611 6.7775 run51.mat 111 3 1812 797411 816541 +3304151 3310946 6796 14367547.9487 14367886.4763 41.223 -0.008406 6.8204 run51.mat 111 3 1813 834081 835780 +3380105 3476074 95970 14371342.8241 14376143.0349 41.2278 -0.0040564 6.5818 run51.mat 121 3 1814 853070 877063 +3546205 3553028 6824 14379647.3291 14379990.1605 41.2192 -0.0052867 6.5988 run51.mat 121 3 1815 894597 896303 +3624546 3720394 95849 14383564.7192 14388359.5115 41.2269 -0.0042895 6.4056 run51.mat 130.8946 3 1816 914183 938146 +3790399 3797268 6870 14391857.746 14392201.7812 41.2211 -0.0064538 6.425 run51.mat 131 3 1817 955648 957366 +3866594 3894215 27622 14395669.3118 14397049.9927 41.227 -0.0035978 6.2447 run51.mat 141 3 1818 974698 981603 +3894477 3900014 5538 14397063.2037 14397340.8852 41.2269 -0.0022594 6.2249 run51.mat 141 3 1818 981669 983053 +3900320 3908047 7728 14397356.1881 14397741.2002 41.2248 -0.0068997 6.2452 run51.mat 141 3 1818 983129 985062 +3908367 3908401 35 14397757.3325 14397759.0466 41.1323 -0.024777 7.7216 run51.mat 141 3 1818 985142 985150 +3908735 3921582 12848 14397775.8847 14398417.548 41.2277 0.0010822 6.2484 run51.mat 141 3 1818 985234 988445 +3921918 3945695 23778 14398434.3021 14399623.5752 41.2268 -0.0044198 6.2429 run51.mat 141 3 1818 988529 994474 +3945997 3949686 3690 14399638.681 14399822.104 41.2271 -0.0036323 6.2453 run51.mat 141 3 1818 994550 995472 +3949936 3960720 10785 14399834.5072 14400374.989 41.2294 -0.0037819 6.2434 run51.mat 141 3 1818 995534 998230 +3961051 3962254 1204 14400391.5424 14400451.8959 41.216 -0.0017727 6.3609 run51.mat 141 3 1818 998313 998614 +3962508 3962513 6 14400464.7009 14400464.953 41.1347 -0.02998 5.1128 run51.mat 141 3 1818 998678 998679 +4032698 4039597 6900 14403975.4378 14404319.9843 41.2223 0.0017327 6.2542 run51.mat 141 3 1819 1016226 1017951 +4108865 4169463 60599 14407784.4058 14410812.813 41.2264 -0.0026236 6.0925 run51.mat 151 3 1820 1035268 1050419 +4169718 4174571 4854 14410825.6629 14411068.4959 41.2289 -0.0050626 6.0739 run51.mat 151 3 1820 1050482 1051695 +4174880 4204793 29914 14411083.8264 14412577.8953 41.23 -0.0025715 6.0972 run51.mat 151 3 1820 1051773 1059251 +4274778 4281672 6895 14416078.9996 14416423.1375 41.2225 -0.0026114 6.098 run51.mat 151 3 1821 1076748 1078472 +4352991 4433255 80265 14419989.476 14424001.1149 41.2274 -0.0029207 5.9557 run51.mat 161 3 1822 1096302 1116369 +4433509 4444701 11193 14424013.9199 14424574.1135 41.2289 -0.0020715 5.9616 run51.mat 161 3 1822 1116433 1119231 +4444963 4448933 3971 14424587.3218 14424787.0108 41.2317 -0.0019074 5.958 run51.mat 161 3 1822 1119296 1120289 +4519102 4526000 6899 14428295.1911 14428639.445 41.2309 -0.0029581 5.9708 run51.mat 161 3 1823 1137832 1139557 +4613098 4659137 46040 14432992.7283 14435297.9057 41.2259 -0.002215 5.8261 run51.mat 170.4525 3 1824 1161332 1172842 +4659389 4701608 42220 14435310.4082 14437418.1741 41.2297 -0.0028305 5.8293 run51.mat 171 3 1824 1172905 1183460 +4701858 4709050 7193 14437430.6765 14437790.3913 41.2278 -0.0025832 5.8264 run51.mat 171 3 1824 1183523 1185321 +4787223 4794146 6924 14441699.8623 14442045.2928 41.2324 -0.0043373 5.8401 run51.mat 171 3 1825 1204865 1206596 +4875281 4971232 95952 14446102.0593 14450901.6995 41.2282 -0.0027061 5.7125 run51.mat 181 3 1826 1226881 1250869 +5041426 5048321 6896 14454412.1751 14454754.2993 41.2293 -0.0037386 5.7315 run51.mat 181 3 1827 1268419 1270143 +5119539 5215371 95833 14458318.2235 14463108.704 41.2272 -0.0026389 5.5993 run51.mat 191 3 1828 1287948 1311907 +5285537 5292439 6903 14466616.9312 14466960.9018 41.2267 -0.0030501 5.6419 run51.mat 191 3 1829 1329449 1331174 +5363761 5459691 95931 14470527.3061 14475324.5134 41.2278 -0.0027099 5.4558 run51.mat 201 3 1830 1349006 1372990 +5531910 5538831 6922 14478935.1448 14479282.7327 41.2307 -0.0034369 5.4638 run51.mat 201 3 1831 1391045 1392775 +5609921 5705851 95931 14482835.9587 14487632.3971 41.2283 -0.0025578 5.3234 run51.mat 211 3 1832 1410549 1434532 +5778114 5785062 6949 14491246.62 14491592.611 41.2224 -0.0018814 5.3551 run51.mat 211 3 1833 1452599 1454336 +5856178 5952050 95873 14495148.6995 14499943.3274 41.2293 -0.001771 5.1999 run51.mat 221 3 1834 1472116 1496085 +6022236 6029169 6934 14503452.591 14503798.497 41.2301 -4.0589e-05 5.2047 run51.mat 221 3 1835 1513632 1515365 +252391 260373 7983 14592633.0175 14593032.0925 41.2241 -21.0426 5.0238 run52.mat 1 4 1837 1 1 +260711 278731 18021 14593048.8617 14593950.9256 41.2277 -21.0411 4.2581 run52.mat 1 4 1837 1 1 +279040 291017 11978 14593966.256 14594564.4402 41.2248 -21.0452 4.2608 run52.mat 1 4 1837 1 1 +369195 393944 24750 14598473.2805 14599712.0466 41.2317 -21.0353 5.7931 run52.mat 11 4 1838 1 1 +471712 491340 19629 14603598.7282 14604580.214 41.2271 -21.0373 6.4426 run52.mat 21 4 1839 1 1 +572445 592147 19703 14608637.1387 14609622.7307 41.2265 -21.0359 5.9031 run52.mat 31 4 1840 1 1 +673023 692819 19797 14613664.9179 14614653.0162 41.2278 -21.036 5.454 run52.mat 41 4 1841 1 1 +773549 793341 19793 14618691.467 14619679.3153 41.2276 -21.0368 5.1281 run52.mat 51 4 1842 1 1 +874053 893822 19770 14623717.6425 14624707.6147 41.2287 -21.0374 4.8778 run52.mat 61 4 1843 1 1 +974852 994363 19512 14628758.2929 14629732.1687 41.2276 -21.0357 4.6405 run52.mat 71 4 1844 1 1 +1077349 1096849 19501 14633882.1751 14634857.3163 41.2303 -21.0369 4.4457 run52.mat 81 4 1845 1 1 +1179773 1199260 19488 14639001.6103 14639976.5625 41.2266 -21.0348 4.2756 run52.mat 91 4 1846 1 1 +1281876 1301695 19820 14644109.1399 14645098.6299 41.2307 -21.0364 4.162 run52.mat 101 4 1847 1 1 +1384263 1404114 19852 14649226.0589 14650218.8487 41.2233 -21.0368 4.0339 run52.mat 111 4 1848 1 1 +1488869 1508379 19511 14654457.2202 14655433.9593 41.2296 -21.035 3.911 run52.mat 121 4 1849 1 1 +1593093 1612913 19821 14659670.432 14660660.7467 41.2339 -21.0372 3.8285 run52.mat 131 4 1850 1 1 +1697758 1707953 10196 14664904.8818 14665412.8264 41.2348 -21.0379 3.7551 run52.mat 141 4 1851 1 1 +1708203 1717240 9038 14665425.2296 14665876.9129 41.2381 -21.0332 3.6877 run52.mat 141 4 1851 1 1 +1801680 1810509 8830 14670098.5927 14670540.1252 41.2323 -21.0375 3.7364 run52.mat 151 4 1852 1 1 +1810824 1821436 10613 14670555.7533 14671088.2795 41.2335 -21.0335 3.6174 run52.mat 151 4 1852 1 1 +1906182 1925991 19810 14675322.7818 14676316.3312 41.2316 -21.0354 3.5951 run52.mat 161 4 1853 1 1 +2010861 2027482 16622 14680558.9915 14681390.2063 41.228 -21.0365 3.5088 run52.mat 171 4 1854 1 1 +2027789 2030231 2443 14681405.5595 14681527.6849 41.2289 -21.0391 3.4786 run52.mat 171 4 1854 1 1 +2117349 2130044 12696 14685881.7043 14686517.8865 41.2271 -21.0354 3.456 run52.mat 181 4 1855 1 1 +2130294 2136748 6455 14686530.4898 14686851.9704 41.2265 -21.0357 3.4101 run52.mat 181 4 1855 1 1 +2223863 2243249 19387 14691208.1378 14692177.7249 41.2279 -21.0363 3.3749 run52.mat 191 4 1856 1 1 +2332118 2342691 10574 14696622.9808 14697149.7945 41.2264 -21.0379 3.3296 run52.mat 201 4 1857 1 1 +2342944 2351553 8610 14697162.4498 14697593.5776 41.2349 -21.0355 3.3005 run52.mat 201 4 1857 1 1 +2440697 2460112 19416 14702048.4034 14703021.288 41.235 -21.0343 3.2333 run52.mat 211 4 1858 1 1 +2549183 2568672 19490 14707474.2097 14708450.7229 41.2261 -21.0376 3.1771 run52.mat 221 4 1859 1 1 +548564 549545 982 15600865.1325 15600914.588 41.2286 -21.0436 3.6087 run53.mat 1 4 1861 200001 200001 +549857 566040 16184 15600930.317 15601739.7365 41.2275 -21.0383 4.7164 run53.mat 1 4 1861 200001 200001 +566293 569717 3425 15601752.3388 15601923.4259 41.2334 -21.0372 4.1615 run53.mat 1 4 1861 200001 200001 +569973 572551 2579 15601936.2283 15602065.1531 41.2331 -21.0388 4.0504 run53.mat 1 4 1861 200001 200001 +572851 587006 14156 15602080.156 15602788.096 41.2284 -21.0444 4.2791 run53.mat 1 4 1861 200001 200001 +665441 690188 24748 15606710.0889 15607946.5784 41.2291 -21.0363 5.7826 run53.mat 11 4 1862 200001 200001 +770015 789567 19553 15611939.0079 15612915.822 41.2274 -21.0365 6.4949 run53.mat 21 4 1863 200001 200001 +868677 888336 19660 15616872.9667 15617855.9108 41.2247 -21.0376 5.89 run53.mat 31 4 1864 200001 200001 +969380 989157 19778 15621908.3022 15622896.0175 41.2278 -21.0359 5.4276 run53.mat 41 4 1865 200001 200001 +1071930 1091756 19827 15627035.6156 15628025.047 41.2272 -21.0374 5.1255 run53.mat 51 4 1866 200001 200001 +1172264 1192067 19804 15632050.8996 15633043.1835 41.2286 -21.0366 4.8573 run53.mat 61 4 1867 200001 200001 +1275136 1294592 19457 15637195.7444 15638167.9433 41.2273 -21.0366 4.6231 run53.mat 71 4 1868 200001 200001 +1377618 1397020 19403 15642321.3198 15643291.4683 41.2266 -21.0354 4.441 run53.mat 81 4 1869 200001 200001 +1479560 1499370 19811 15647416.3601 15648407.2912 41.2288 -21.0347 4.3 run53.mat 91 4 1870 200001 200001 +1582341 1592713 10373 15652555.7202 15653075.9904 41.2247 -21.0387 4.1695 run53.mat 101 4 1871 200001 200001 +1592976 1601781 8806 15653089.1429 15653526.2778 41.2335 -21.0375 4.0983 run53.mat 101 4 1871 200001 200001 +1686273 1706126 19854 15657752.2855 15658746.1268 41.2311 -21.0353 4.0199 run53.mat 111 4 1872 200001 200001 +1791065 1796262 5198 15662991.998 15663253.1704 41.2294 -21.0348 3.9862 run53.mat 121 4 1873 200001 200001 +1796518 1810609 14092 15663265.9729 15663969.6686 41.2327 -21.0372 3.8705 run53.mat 121 4 1873 200001 200001 +1895591 1915115 19525 15668221.2434 15669196.3074 41.2313 -21.0369 3.8118 run53.mat 131 4 1874 200001 200001 +1999888 2019369 19482 15673435.0523 15674409.0593 41.2323 -21.0343 3.7301 run53.mat 141 4 1875 200001 200001 +2104321 2108639 4319 15678655.7453 15678870.6951 41.217 -21.0373 3.7559 run53.mat 151 4 1876 200001 200001 +2108898 2123856 14959 15678883.5474 15679634.0873 41.2305 -21.0363 3.6182 run53.mat 151 4 1876 200001 200001 +2208542 2228077 19536 15683867.0196 15684842.3153 41.226 -21.0363 3.5788 run53.mat 161 4 1877 200001 200001 +2315009 2334493 19485 15689191.371 15690165.3446 41.2302 -21.0356 3.5086 run53.mat 171 4 1878 200001 200001 +2421464 2438775 17312 15694514.0659 15695376.3709 41.2332 -21.0357 3.4451 run53.mat 181 4 1879 200001 200001 +2439025 2440831 1807 15695388.8757 15695479.4249 41.2291 -21.0409 3.3968 run53.mat 181 4 1879 200001 200001 +2527994 2546268 18275 15699839.2082 15700751.81 41.2307 -21.0343 3.3857 run53.mat 191 4 1880 200001 200001 +2546518 2547302 785 15700764.4159 15700803.948 41.2183 -21.0429 3.3463 run53.mat 191 4 1880 200001 200001 +2634603 2651108 16506 15705168.3447 15705994.1291 41.2323 -21.0361 3.3066 run53.mat 201 4 1881 200001 200001 +2651358 2653970 2613 15706006.7324 15706138.4122 41.2404 -21.0347 3.3179 run53.mat 201 4 1881 200001 200001 +2740992 2760361 19370 15710488.566 15711456.9985 41.2288 -21.0368 3.2364 run53.mat 211 4 1882 200001 200001 +2849524 2864679 15156 15715916.9478 15716673.5893 41.2314 -21.037 3.1842 run53.mat 221 4 1883 200001 200001 +2865017 2869108 4092 15716690.3552 15716896.2138 41.2321 -21.0418 3.1583 run53.mat 221 4 1883 200001 200001 +314251 314572 322 15798255.6329 15798271.5586 41.2279 0.025092 9.6568 run55.mat 1 3 1885 181434 181595 +314824 314882 59 15798284.0611 15798286.9387 41.2398 -0.1513 12.0297 run55.mat 1 3 1885 181721 181750 +315132 317032 1901 15798299.3419 15798394.2211 41.2208 -0.014079 9.5221 run55.mat 1 3 1885 181875 182825 +317282 323213 5932 15798406.8269 15798704.3029 41.2244 -0.0085452 8.8656 run55.mat 1 3 1885 182950 185916 +323551 325213 1663 15798721.0754 15798803.5486 41.2264 -0.016587 8.8187 run55.mat 1 3 1885 186085 186916 +325551 332176 6626 15798820.3212 15799150.9325 41.2277 0.0023202 8.3002 run55.mat 1 3 1885 187085 190397 +332432 334413 1982 15799163.636 15799261.9389 41.223 -0.0046777 7.9686 run55.mat 1 3 1885 190525 191516 +335011 335752 742 15799291.6133 15799328.3839 41.2366 -0.02554 7.79 run55.mat 1 3 1885 191815 192186 +336002 336413 412 15799340.7896 15799361.3059 41.2119 0.027138 7.8944 run55.mat 1 3 1885 192311 192516 +336751 342153 5403 15799378.2124 15799648.7506 41.225 -0.0068493 7.8043 run55.mat 1 3 1885 192685 195386 +342491 344813 2323 15799665.7903 15799782.8502 41.2308 -0.0025213 7.4993 run55.mat 1 3 1885 195555 196716 +345151 345230 80 15799799.8899 15799803.8726 41.1961 -0.0010156 7.0852 run55.mat 1 3 1885 196885 196925 +345494 346281 788 15799817.1817 15799856.8434 41.2329 -0.00033808 7.0026 run55.mat 1 3 1885 197057 197450 +346598 346893 296 15799872.5707 15799887.2066 41.1987 0.021001 8.3721 run55.mat 1 3 1885 197609 197756 +347231 347922 692 15799903.9758 15799938.2584 41.2164 -0.010328 7.0829 run55.mat 1 3 1885 197925 198271 +348172 349501 1330 15799950.6616 15800016.5973 41.2302 -0.0024561 7.1713 run55.mat 1 3 1885 198396 199060 +349764 350511 748 15800029.6456 15800066.7065 41.2379 -0.012735 7.4716 run55.mat 1 3 1885 199192 199565 +350824 352500 1677 15800082.2354 15800166.3448 41.23 0.0010876 7.113 run55.mat 1 3 1885 199722 200560 +353151 353710 560 15800199.1639 15800227.345 41.2278 -0.017068 7.0134 run55.mat 1 3 1885 200885 201165 +354214 354673 460 15800252.7534 15800275.8931 41.2396 0.00089929 6.989 run55.mat 1 3 1885 201417 201646 +355011 361632 6622 15800292.9328 15800622.5534 41.2311 -0.0061832 6.9301 run55.mat 1 3 1885 201815 205126 +361882 363613 1732 15800635.0561 15800721.6241 41.2113 -0.018999 6.7127 run55.mat 1 3 1885 205251 206117 +363951 364003 53 15800738.5276 15800741.1282 41.1142 -0.025755 5.8477 run55.mat 1 3 1885 206286 206312 +364276 364493 218 15800754.781 15800765.6333 41.2633 -0.0066845 8.2553 run55.mat 1 3 1885 206448 206557 +364831 365073 243 15800782.5368 15800794.6393 41.2223 0.027014 6.8442 run55.mat 1 3 1885 206726 206847 +365411 366153 743 15800811.5428 15800848.6925 41.2243 0.0034667 6.2953 run55.mat 1 3 1885 207016 207387 +366831 367891 1061 15800883.1356 15800936.9848 41.2167 0.010306 6.4693 run55.mat 1 3 1885 207726 208256 +368161 372013 3853 15800950.7011 15801145.4423 41.2252 -0.014981 6.545 run55.mat 1 3 1885 208391 210317 +372365 372673 309 15801162.9061 15801178.1869 41.2308 0.050363 6.8036 run55.mat 1 3 1885 210493 210647 +373011 373310 300 15801194.9561 15801209.7904 41.2268 0.00021094 6.7172 run55.mat 1 3 1885 210816 210965 +373618 374348 731 15801225.0712 15801261.2887 41.245 -0.012602 5.9775 run55.mat 1 3 1885 211119 211484 +374622 375133 512 15801274.8827 15801300.235 41.2162 -0.0098427 6.3425 run55.mat 1 3 1885 211621 211877 +375565 376013 449 15801321.6678 15801343.8944 41.247 -0.0022711 5.8841 run55.mat 1 3 1885 212093 212317 +376351 377362 1012 15801360.701 15801411.2615 41.2236 0.010922 5.8223 run55.mat 1 3 1885 212486 212991 +377613 378013 401 15801423.8141 15801443.8183 41.2252 0.0039686 6.2593 run55.mat 1 3 1885 213117 213317 +378351 378793 443 15801460.7218 15801482.8264 41.2307 -0.011465 5.7935 run55.mat 1 3 1885 213486 213707 +379131 380673 1543 15801499.7299 15801576.846 41.2327 0.0052619 6.4264 run55.mat 1 3 1885 213876 214647 +381285 381892 608 15801607.4544 15801637.8161 41.2339 -0.025075 5.9445 run55.mat 1 3 1885 214953 215256 +382156 382899 744 15801651.0212 15801688.1855 41.2251 -0.023976 6.1805 run55.mat 1 3 1885 215388 215760 +383159 383479 321 15801701.1905 15801717.1966 41.2433 -0.024048 5.901 run55.mat 1 3 1885 215890 216050 +383804 383873 70 15801733.4529 15801736.9042 41.2494 0.03257 6.0636 run55.mat 1 3 1885 216212 216247 +384211 386273 2063 15801753.8107 15801856.9426 41.2293 -0.011052 5.8312 run55.mat 1 3 1885 216416 217447 +386611 390571 3961 15801873.7118 15802070.1794 41.2247 0.0071036 7.1261 run55.mat 1 3 1885 217616 219596 +390824 396962 6139 15802082.7315 15802388.0475 41.2276 -0.0071922 7.3646 run55.mat 1 3 1885 219722 222791 +397212 397427 216 15802400.7647 15802411.7016 41.1612 -0.033922 7.5335 run55.mat 1 3 1885 222916 223024 +397682 400093 2412 15802424.6732 15802547.3184 41.2271 -0.007321 7.4575 run55.mat 1 3 1885 223151 224357 +400543 401631 1089 15802570.2094 15802625.0556 41.2347 0.0029503 7.2925 run55.mat 1 3 1885 224582 225126 +401938 403078 1141 15802640.4085 15802697.4195 41.2282 -0.00482 7.3037 run55.mat 1 3 1885 225280 225850 +403332 404673 1342 15802710.1219 15802777.1848 41.2365 -0.0054676 7.4421 run55.mat 1 3 1885 225977 226647 +405011 406508 1498 15802794.0881 15802868.8498 41.2276 -0.0032723 7.4183 run55.mat 1 3 1885 226816 227565 +406813 410305 3493 15802883.9817 15803057.2304 41.2291 -0.0032206 7.263 run55.mat 1 3 1885 227717 229463 +478096 483017 4922 15806447.0061 15806693.7408 41.228 0.0033752 9.3158 run55.mat 1 3 1886 263360 265821 +483288 483951 664 15806707.1886 15806740.0885 41.2249 -0.00057652 10.3607 run55.mat 1 3 1886 265956 266288 +484214 490176 5963 15806753.1393 15807052.0494 41.2299 -0.0025169 9.7217 run55.mat 1 3 1886 266420 269401 +490438 491502 1065 15807065.2577 15807118.8976 41.216 0.00044014 9.5785 run55.mat 1 3 1886 269532 270064 +491815 503246 11432 15807134.677 15807706.1413 41.2222 -0.0053422 9.4932 run55.mat 1 3 1886 270220 275936 +503505 509893 6389 15807719.0967 15808038.5868 41.2226 -0.0097881 9.2481 run55.mat 1 3 1886 276065 279260 +510231 514290 4060 15808055.4901 15808257.2778 41.224 -0.0089531 8.7973 run55.mat 1 3 1886 279429 281458 +514552 515101 550 15808270.2764 15808297.514 41.2348 -0.02301 8.1285 run55.mat 1 3 1886 281589 281864 +515415 520476 5062 15808313.0925 15808567.5688 41.2239 -0.00065612 8.3755 run55.mat 1 3 1886 282021 284551 +520734 521829 1096 15808580.5781 15808635.329 41.2272 0.022887 7.9358 run55.mat 1 3 1886 284680 285228 +522094 522451 358 15808648.4765 15808666.1883 41.2035 0.0090891 7.4453 run55.mat 1 3 1886 285361 285539 +522704 527561 4858 15808678.7404 15808920.7225 41.2288 -0.0058817 8.0464 run55.mat 1 3 1886 285666 288094 +527813 528312 500 15808933.4267 15808958.583 41.2517 -0.0080234 8.402 run55.mat 1 3 1886 288220 288470 +528567 528926 360 15808971.4384 15808989.5368 41.2261 -0.040522 7.4834 run55.mat 1 3 1886 288597 288777 +529185 531382 2198 15809002.5939 15809113.2512 41.2149 -0.011151 7.7839 run55.mat 1 3 1886 288906 290005 +531632 535261 3630 15809125.6545 15809305.7001 41.2289 -0.001517 7.3845 run55.mat 1 3 1886 290130 291944 +535525 537041 1517 15809318.798 15809394.3078 41.2256 -0.02553 7.9173 run55.mat 1 3 1886 292076 292834 +537365 538238 874 15809410.5111 15809454.1702 41.2406 -0.019475 7.4997 run55.mat 1 3 1886 292996 293433 +538494 540121 1628 15809466.9729 15809548.3399 41.2213 -0.011927 7.452 run55.mat 1 3 1886 293561 294374 +540433 540791 359 15809563.9431 15809581.8468 41.2238 -0.03264 7.4173 run55.mat 1 3 1886 294530 294709 +541242 544776 3535 15809604.4028 15809781.1708 41.2298 -0.00035388 7.0505 run55.mat 1 3 1886 294935 296702 +545042 545253 212 15809794.476 15809805.03 41.2147 0.058281 5.8125 run55.mat 1 3 1886 296835 296941 +546042 546188 147 15809844.4952 15809851.798 41.1746 -0.062528 4.8411 run55.mat 1 3 1886 297335 297408 +546452 546693 242 15809864.9365 15809876.8909 41.216 0.034438 7.8538 run55.mat 1 3 1886 297540 297661 +547031 547516 486 15809893.6567 15809917.7143 41.2143 -0.00018647 6.9002 run55.mat 1 3 1886 297830 298072 +548104 548132 29 15809946.881 15809948.2698 41.2616 0.036146 5.2487 run55.mat 1 3 1886 298366 298380 +548392 549493 1102 15809961.1667 15810015.7798 41.2252 0.012303 6.7781 run55.mat 1 3 1886 298510 299060 +549972 550513 542 15810039.5397 15810066.375 41.1982 -0.0009081 6.8433 run55.mat 1 3 1886 299300 299570 +550851 551108 258 15810083.1409 15810095.8889 41.2447 -0.0065975 6.3808 run55.mat 1 3 1886 299739 299868 +551363 552358 996 15810108.5631 15810158.7346 41.2177 -0.0039572 6.8295 run55.mat 1 3 1886 299995 300493 +552631 553493 863 15810172.5002 15810215.9653 41.2285 0.002174 6.4023 run55.mat 1 3 1886 300629 301060 +553956 556050 2095 15810239.3114 15810344.8983 41.2289 0.012172 6.3798 run55.mat 1 3 1886 301292 302339 +556309 557114 806 15810357.9426 15810397.8811 41.2287 0.017555 6.9617 run55.mat 1 3 1886 302469 302871 +557649 557701 53 15810424.4241 15810427.004 41.1042 -0.017398 5.393 run55.mat 1 3 1886 303139 303165 +557952 558293 342 15810439.4568 15810456.3749 41.2015 -0.014534 7.0538 run55.mat 1 3 1886 303290 303461 +558631 558762 132 15810473.1441 15810479.6434 41.2706 -0.0024148 6.0624 run55.mat 1 3 1886 303630 303695 +559022 559252 231 15810492.5428 15810503.9538 41.255 0.050553 6.3513 run55.mat 1 3 1886 303825 303940 +559569 560131 563 15810519.6811 15810547.5636 41.2209 0.0010602 6.7363 run55.mat 1 3 1886 304099 304380 +560921 561932 1012 15810586.7579 15810637.3993 41.2353 0.0075691 6.7191 run55.mat 1 3 1886 304775 305280 +562239 562784 546 15810652.8762 15810680.3515 41.2268 -0.031338 6.2431 run55.mat 1 3 1886 305434 305706 +563049 564067 1019 15810693.711 15810745.0319 41.2116 0.021113 6.5493 run55.mat 1 3 1886 305839 306348 +564373 564532 160 15810760.4584 15810768.4741 41.2184 0.08645 6.0268 run55.mat 1 3 1886 306501 306580 +564795 565864 1070 15810781.7328 15810835.6247 41.2298 0.018911 5.9027 run55.mat 1 3 1886 306712 307246 +566316 566833 518 15810858.3894 15810884.0445 41.2159 0.014652 6.3683 run55.mat 1 3 1886 307472 307731 +567171 568070 900 15810900.817 15810945.4279 41.2199 0.0059362 6.3628 run55.mat 1 3 1886 307900 308349 +568323 568919 597 15810957.9825 15810987.5578 41.2256 -0.0267 6.4416 run55.mat 1 3 1886 308476 308774 +569174 569649 476 15811000.2116 15811023.7825 41.2358 0.00014772 6.4154 run55.mat 1 3 1886 308901 309139 +569904 570792 889 15811036.4363 15811080.5014 41.2324 -0.035205 6.5074 run55.mat 1 3 1886 309266 309710 +571046 571769 724 15811093.1056 15811129.1546 41.2346 -0.0065203 6.4444 run55.mat 1 3 1886 309837 310199 +572076 572260 185 15811144.5078 15811153.7097 41.1864 0.091529 6.2429 run55.mat 1 3 1886 310353 310445 +572643 572648 6 15811172.8637 15811173.1138 41.1009 0.10215 10.3484 run55.mat 1 3 1886 310636 310639 +572904 573113 210 15811185.9164 15811196.3686 41.2361 -0.03994 5.4168 run55.mat 1 3 1886 310767 310871 +573451 573456 6 15811213.2721 15811213.5222 41.1487 0.15693 9.4888 run55.mat 1 3 1886 311040 311043 +573779 574156 378 15811229.6756 15811248.5295 41.2523 0.046719 5.4786 run55.mat 1 3 1886 311204 311393 +640307 641096 790 15814557.4858 15814597.2619 41.2424 0.045001 8.7122 run55.mat 1 3 1887 344469 344864 +641425 641486 62 15814613.8012 15814616.8518 41.1973 0.15901 9.9305 run55.mat 1 3 1887 345029 345059 +641795 641947 153 15814632.3051 15814639.9066 41.2597 -0.023454 8.6412 run55.mat 1 3 1887 345214 345290 +642260 642358 99 15814655.5599 15814660.4609 41.189 0.028072 9.9622 run55.mat 1 3 1887 345446 345495 +642613 642857 245 15814673.2136 15814685.4161 41.2961 0.015729 8.3429 run55.mat 1 3 1887 345623 345745 +643119 643133 15 15814698.5189 15814699.219 41.2453 -0.047812 8.4411 run55.mat 1 3 1887 345876 345883 +643471 643948 478 15814716.1225 15814739.9775 41.2472 -0.029457 8.9069 run55.mat 1 3 1887 346052 346290 +710354 723323 12970 15818062.2222 15818710.3339 41.2271 0.0010495 9.8019 run55.mat 11 3 1888 379495 385979 +723638 744929 21292 15818725.9651 15819789.4251 41.2264 -0.0028266 9.7613 run55.mat 11 3 1888 386137 396783 +745195 763240 18046 15819802.7276 15820703.4828 41.2268 -0.0040643 9.7609 run55.mat 11 3 1888 396916 405939 +763495 775750 12256 15820716.3382 15821328.8833 41.2269 -0.011394 9.7511 run55.mat 11 3 1888 406066 412194 +776052 784599 8548 15821343.9865 15821772.2466 41.2273 -0.0062105 9.7384 run55.mat 11 3 1888 412345 416619 +784859 806425 21567 15821785.3541 15822864.9846 41.226 -0.004327 9.753 run55.mat 11 3 1888 416749 427532 +874441 877501 3061 15826263.6182 15826416.682 41.2277 0.0072501 10.1646 run55.mat 11 3 1889 461541 463071 +877755 878505 751 15826429.3872 15826466.957 41.2178 0.0010668 9.6072 run55.mat 11 3 1889 463198 463574 +878767 884815 6049 15826480.1654 15826784.4786 41.2272 -0.0034407 9.7026 run55.mat 11 3 1889 463705 466729 +885153 891311 6159 15826801.3851 15827109.379 41.2253 -0.0097323 9.7047 run55.mat 11 3 1889 466898 469977 +891575 908695 17121 15827122.5818 15827978.8018 41.2253 -0.002786 9.7754 run55.mat 11 3 1889 470109 478669 +976872 988612 11741 15831387.8766 15831974.6466 41.2268 0.00090006 11.0221 run55.mat 21 3 1890 512759 518629 +988865 994629 5765 15831987.3009 15832273.9522 41.2262 0.0020634 10.9526 run55.mat 21 3 1890 518756 521638 +994940 996772 1833 15832289.6308 15832381.9881 41.2309 -0.037757 11.0521 run55.mat 21 3 1890 521794 522710 +997337 1054634 57298 15832410.4717 15835274.6584 41.2258 -0.0055721 10.9567 run55.mat 21 3 1890 522992 551642 +1054884 1072925 18042 15835287.1608 15836188.9411 41.2256 -0.0058589 10.9608 run55.mat 21 3 1890 551767 560788 +1140953 1147583 6631 15839590.7405 15839922.9012 41.2235 -0.0035983 11.0561 run55.mat 21 3 1891 594803 598118 +1215283 1239823 24541 15843308.2 15844536.5526 41.2248 -0.0029603 10.0061 run55.mat 31 3 1892 631970 644241 +1240084 1311344 71261 15844549.6051 15848111.6613 41.2274 -0.0058335 9.9948 run55.mat 31 3 1892 644371 680003 +1379341 1386009 6669 15851511.0553 15851842.9621 41.2268 -0.0012438 10.0925 run55.mat 31 3 1893 714002 717337 +1453737 1549744 96008 15855230.2325 15860032.4244 41.2274 -0.0026489 9.2727 run55.mat 41 3 1894 751202 799208 +1617833 1624574 6742 15863435.5617 15863772.8584 41.2303 0.00042217 9.3635 run55.mat 41 3 1895 833254 836625 +1691963 1787944 95982 15867140.7531 15871939.5841 41.2269 -0.0037606 8.7061 run55.mat 51 3 1896 870321 918313 +1858117 1864938 6822 15875449.678 15875790.832 41.2258 -0.0011455 8.788 run55.mat 51 3 1897 953401 956812 +1934260 2030263 96004 15879257.7752 15884057.0871 41.2283 -0.0043501 8.2425 run55.mat 61 3 1898 991474 1039478 +2098349 2105114 6766 15887461.4584 15887800.7814 41.2265 -0.004651 8.2735 run55.mat 61 3 1899 1073523 1076905 +2174674 2232295 57622 15891277.7685 15894159.4943 41.2261 -0.0043928 7.8526 run55.mat 71 3 1900 1111687 1140498 +2232549 2270502 37954 15894172.1968 15896069.5855 41.2273 -0.0044475 7.8613 run55.mat 71 3 1900 1140625 1159603 +2340453 2347235 6783 15899566.6425 15899905.5527 41.2233 -0.0037103 7.9071 run55.mat 71 3 1901 1194580 1197971 +2416842 2439407 22566 15903385.2816 15904514.0712 41.2229 -0.004578 7.5341 run55.mat 81 3 1902 1232776 1244059 +2439730 2512822 73093 15904530.3547 15908184.072 41.2271 -0.0024078 7.5266 run55.mat 81 3 1902 1244220 1280768 +2582766 2589566 6801 15911682.7128 15912024.7586 41.2289 -0.0045377 7.5922 run55.mat 81 3 1903 1315742 1319142 +2658907 2669118 10212 15915489.1066 15916000.7193 41.2257 -0.003194 7.2702 run55.mat 91 3 1904 1353814 1358919 +2669456 2693317 23862 15916017.4919 15917212.3405 41.2287 -0.0023682 7.2427 run55.mat 91 3 1904 1359088 1371020 +2693567 2698707 5141 15917224.9463 15917480.7297 41.2317 -0.0035111 7.2569 run55.mat 91 3 1904 1371145 1373715 +2698957 2729157 30201 15917493.133 15919001.2901 41.2259 -0.0036863 7.245 run55.mat 91 3 1904 1373840 1388940 +2729409 2754894 25486 15919013.8925 15920290.4474 41.2299 -0.0021543 7.2542 run55.mat 91 3 1904 1389066 1401809 +2825028 2831820 6793 15923794.9981 15924136.0266 41.2249 -0.003738 7.2795 run55.mat 91 3 1905 1436878 1440274 +2901012 2926248 25237 15927593.3122 15928856.2582 41.2253 -0.0052002 6.9985 run55.mat 101 3 1906 1474871 1487490 +2926571 2938928 12358 15928872.4144 15929491.6848 41.2253 -0.0064575 6.9923 run55.mat 101 3 1906 1487651 1493830 +2939259 2947788 8530 15929508.3716 15929934.8492 41.2258 -0.0041541 6.9962 run55.mat 101 3 1906 1493996 1498261 +2948038 2997001 48964 15929947.2524 15932395.357 41.2294 -0.0041436 6.9984 run55.mat 101 3 1906 1498386 1522868 +3067104 3070231 3128 15935900.4396 15936055.5795 41.2281 -0.0059487 7.037 run55.mat 101 3 1907 1557921 1559485 +3070547 3073891 3345 15936071.2572 15936239.6179 41.2326 -0.0040155 7.0153 run55.mat 101 3 1907 1559643 1561315 +3143265 3172509 29245 15939708.1735 15941170.0036 41.2266 -0.0049769 6.7794 run55.mat 111 3 1908 1596003 1610626 +3172759 3202598 29840 15941182.6095 15942676.7537 41.2258 -0.0023595 6.7733 run55.mat 111 3 1908 1610751 1625671 +3202849 3239241 36393 15942689.1182 15944507.2897 41.2275 -0.0017938 6.7825 run55.mat 111 3 1908 1625797 1643994 +3309184 3316030 6847 15948003.1416 15948345.1048 41.2266 -0.0015805 6.7801 run55.mat 111 3 1909 1678967 1682389 +3387407 3470500 83094 15951915.4567 15956072.1819 41.2275 -0.0035773 6.5786 run55.mat 121 3 1910 1718080 1759628 +3470753 3483380 12628 15956084.8345 15956714.7754 41.2258 -0.0026746 6.5788 run55.mat 121 3 1910 1759755 1766069 +3553376 3560215 6840 15960214.8333 15960556.3033 41.2245 -0.0049608 6.5932 run55.mat 121 3 1911 1801068 1804488 +3631587 3633667 2081 15964124.0583 15964228.1771 41.2249 -0.009645 6.5287 run55.mat 131 3 1912 1840175 1841215 +3633997 3727540 93544 15964244.8135 15968921.0042 41.2282 -0.003544 6.4014 run55.mat 131 3 1912 1841380 1888154 +3797727 3802897 5171 15972432.3296 15972692.1817 41.22 -0.0040334 6.446 run55.mat 131 3 1913 1923249 1925834 +3803208 3804609 1402 15972707.8603 15972777.4039 41.2366 -0.0012054 6.3603 run55.mat 131 3 1913 1925989 1926689 +3873740 3887300 13561 15976231.7998 15976912.8157 41.2285 -0.0039399 6.2529 run55.mat 141 3 1914 1961257 1968037 +3887561 3913909 26349 15976925.8707 15978241.6 41.2288 -0.0029948 6.2415 run55.mat 141 3 1914 1968167 1981342 +3914170 3914499 330 15978254.651 15978271.1073 41.2175 -0.0023615 6.0831 run55.mat 141 3 1914 1981473 1981637 +3914751 3924376 9626 15978283.7122 15978763.1093 41.2355 -0.0024304 6.2364 run55.mat 141 3 1914 1981763 1986576 +3924681 3969659 44979 15978778.4885 15981029.8111 41.2254 -0.0035274 6.249 run55.mat 141 3 1914 1986728 2009218 +4039849 4046756 6908 15984539.5208 15984882.9687 41.224 -0.0019536 6.2677 run55.mat 141 3 1915 2044315 2047769 +4116006 4151330 35325 15988345.6499 15990112.11 41.2279 -0.0015921 6.0961 run55.mat 151 3 1916 2082395 2100058 +4151580 4162500 10921 15990124.6126 15990671.8309 41.2273 -0.0014601 6.096 run55.mat 151 3 1916 2100183 2105643 +4162801 4211938 49138 15990686.7644 15993141.3129 41.2278 -0.0024237 6.0938 run55.mat 151 3 1916 2105794 2130363 +4281930 4288844 6915 15996642.4891 15996989.0814 41.2241 -0.0021359 6.1117 run55.mat 151 3 1917 2165361 2168818 +4360152 4419445 59294 16000552.9933 16003517.5187 41.2253 -0.0024068 5.9544 run55.mat 161 3 1918 2204474 2234121 +4419703 4426339 6637 16003530.5253 16003864.1419 41.229 -0.0017226 5.9436 run55.mat 161 3 1918 2234250 2237569 +4426649 4442785 16137 16003879.5444 16004684.6632 41.2332 -0.003524 5.9575 run55.mat 161 3 1918 2237724 2245792 +4443044 4451022 7979 16004697.6157 16005098.4183 41.2295 -0.0031357 5.9815 run55.mat 161 3 1918 2245921 2249911 +4451281 4456089 4809 16005111.478 16005350.2508 41.2346 -0.0015951 5.9641 run55.mat 161 3 1918 2250040 2252444 +4526287 4533176 6890 16008860.9673 16009204.6761 41.2278 -0.003837 5.9959 run55.mat 161 3 1919 2287545 2290989 +4604290 4657990 53701 16012760.1673 16015446.4502 41.2274 -0.0026929 5.8271 run55.mat 171 3 1920 2326548 2353399 +4658240 4700256 42017 16015458.8559 16017559.0947 41.2272 -0.0027766 5.829 run55.mat 171 3 1920 2353524 2374533 +4770428 4777300 6873 16021068.1996 16021410.8835 41.223 -0.0034257 5.8427 run55.mat 171 3 1921 2409620 2413057 +4848491 4944376 95886 16024971.9153 16029766.3326 41.2273 -0.0027376 5.7117 run55.mat 181 3 1922 2448654 2496598 +5014540 5021451 6912 16033272.6961 16033618.3866 41.2252 -0.0045922 5.7353 run55.mat 181 3 1923 2531682 2535137 +5092587 5188518 95932 16037176.5904 16041974.1971 41.2259 -0.0026528 5.6001 run55.mat 191 3 1924 2570707 2618675 +5258702 5265626 6925 16045481.4023 16045828.9631 41.223 -0.0023439 5.6264 run55.mat 191 3 1925 2653768 2657230 +5336938 5364391 27454 16049393.5749 16050765.4457 41.2264 -0.0031317 5.4495 run55.mat 201 3 1926 2692888 2706615 +5364641 5432857 68217 16050778.0004 16054188.9111 41.2287 -0.0026028 5.4571 run55.mat 201 3 1926 2706740 2740849 +5504940 5511860 6921 16057791.9451 16058140.4851 41.2308 -0.0035695 5.4892 run55.mat 201 3 1927 2776893 2780353 +5582970 5635127 52158 16061697.2278 16064301.7957 41.2266 -0.0026771 5.3226 run55.mat 211 3 1928 2815909 2841989 +5635386 5678896 43511 16064314.7482 16066493.8305 41.2282 -0.0023536 5.327 run55.mat 211 3 1928 2842118 2863874 +5749173 5755998 6826 16070005.3811 16070348.0006 41.2256 -0.0022645 5.3263 run55.mat 211 3 1929 2899014 2902427 +5827289 5923227 95939 16073912.4749 16078708.6845 41.2279 -0.0027154 5.202 run55.mat 221 3 1930 2938074 2986045 +5995383 6002174 6792 16082315.8571 16082655.3304 41.2212 -0.0011729 5.2124 run55.mat 221 3 1931 3022124 3025520 +321328 359805 38478 16215992.0292 16217918.0694 41.2289 -21.0353 4.422 run56.mat 1 4 1933 88270 97889 +438045 462907 24863 16221830.1877 16223071.6796 41.2291 -21.0348 5.7757 run56.mat 11 4 1934 117450 123666 +540721 560389 19669 16226963.3976 16227947.0383 41.2305 -21.0353 6.4245 run56.mat 21 4 1935 143120 148038 +641383 661111 19729 16231995.0058 16232983.4995 41.2296 -21.0372 5.8895 run56.mat 31 4 1936 168287 173219 +741922 761724 19803 16237022.124 16238014.2777 41.2287 -21.0374 5.459 run56.mat 41 4 1937 193423 198373 +842413 862240 19828 16242047.0761 16243040.3876 41.2301 -21.0366 5.1399 run56.mat 51 4 1938 218547 223504 +942969 962775 19807 16247075.6563 16248067.4342 41.2316 -21.0355 4.8668 run56.mat 61 4 1939 243686 248637 +1045382 1065161 19780 16252195.0984 16253185.1706 41.2268 -21.0367 4.6609 run56.mat 71 4 1940 269291 274236 +1145907 1165727 19821 16257222.6434 16258213.7508 41.2334 -21.0363 4.4566 run56.mat 81 4 1941 294423 299379 +1248285 1268085 19801 16262342.8834 16263331.2443 41.2289 -21.0369 4.2951 run56.mat 91 4 1942 320019 324969 +1350719 1370571 19853 16267464.3243 16268455.4054 41.2337 -21.0368 4.1589 run56.mat 101 4 1943 345628 350592 +1453136 1472968 19833 16272582.7619 16273574.7107 41.2303 -21.0361 4.0285 run56.mat 111 4 1944 371233 376192 +1557857 1571315 13459 16277819.3602 16278492.4755 41.2351 -21.0341 3.9261 run56.mat 121 4 1945 397415 400780 +1571566 1575044 3479 16278505.1293 16278680.0468 41.2316 -21.0315 3.8567 run56.mat 121 4 1945 400843 401713 +1575305 1577472 2168 16278692.9958 16278800.5072 41.2385 -21.0284 3.8584 run56.mat 121 4 1945 401778 402319 +1661927 1681732 19806 16283023.6743 16284015.1459 41.2299 -21.0357 3.8384 run56.mat 131 4 1946 423434 428385 +1766755 1786229 19475 16288264.9702 16289238.3124 41.2319 -21.0376 3.727 run56.mat 141 4 1947 449642 454511 +1871196 1890741 19546 16293487.6356 16294463.3514 41.2283 -21.0361 3.6547 run56.mat 151 4 1948 475754 480640 +1977538 1996938 19401 16298804.634 16299773.9443 41.2293 -21.0368 3.5757 run56.mat 161 4 1949 502340 507190 +2083578 2103384 19807 16304108.4094 16305097.7559 41.2343 -21.0352 3.5305 run56.mat 171 4 1950 528851 533803 +2188518 2207270 18753 16309353.7265 16310290.0674 41.2263 -21.0359 3.4509 run56.mat 181 4 1951 555087 559776 +2207590 2207832 243 16310306.2029 16310318.4054 41.2271 -21.0507 3.541 run56.mat 181 4 1951 559856 559916 +2294963 2312414 17452 16314675.662 16315549.5365 41.2299 -21.0348 3.3834 run56.mat 191 4 1952 581700 586063 +2312722 2314492 1771 16315565.067 16315653.6163 41.2447 -21.0319 3.3558 run56.mat 191 4 1952 586140 586583 +2401494 2420528 19035 16320003.1559 16320955.1082 41.2295 -21.0358 3.3023 run56.mat 201 4 1953 608334 613092 +2509791 2529330 19540 16325419.2763 16326394.7838 41.2303 -21.0364 3.2353 run56.mat 211 4 1954 635409 640294 +2618395 2637923 19529 16330848.7354 16331823.611 41.2291 -21.0342 3.1739 run56.mat 221 4 1955 662561 667444 +304045 304979 935 16396912.101 16396959.1871 41.2226 0.037338 8.171 run57.mat 1 3 1957 86332 86566 +305242 305931 690 16396972.4459 16397007.1807 41.2452 0.0079639 8.2888 run57.mat 1 3 1957 86631 86804 +306441 306806 366 16397032.8915 16397051.2924 41.2216 0.020105 7.7474 run57.mat 1 3 1957 86931 87022 +307061 313530 6470 16397064.1478 16397386.2461 41.2266 -0.010924 8.5262 run57.mat 1 3 1957 87086 88703 +313839 320138 6300 16397401.8269 16397718.4726 41.2278 -0.0061516 8.233 run57.mat 1 3 1957 88781 90356 +320391 323112 2722 16397731.125 16397867.152 41.2292 -0.0050483 7.8406 run57.mat 1 3 1957 90419 91099 +323470 324729 1260 16397884.9135 16397947.3763 41.229 0.0023828 8.4403 run57.mat 1 3 1957 91189 91503 +325056 327652 2597 16397963.5997 16398092.3951 41.2241 -0.0050984 7.9626 run57.mat 1 3 1957 91585 92234 +327990 328271 282 16398109.1643 16398123.3009 41.2197 -0.021973 6.5998 run57.mat 1 3 1957 92318 92389 +328521 330064 1544 16398135.9042 16398213.6921 41.2319 8.8295e-05 7.9668 run57.mat 1 3 1957 92451 92837 +330383 335060 4678 16398229.7739 16398464.7199 41.2295 -0.0044922 7.4777 run57.mat 1 3 1957 92917 94086 +335331 337324 1994 16398478.2726 16398577.9417 41.232 -0.013387 7.7294 run57.mat 1 3 1957 94154 94652 +337591 339201 1611 16398591.2943 16398671.4068 41.2215 -0.0054102 7.1442 run57.mat 1 3 1957 94719 95122 +339730 340343 614 16398697.6521 16398728.0649 41.2152 -0.0098521 6.4622 run57.mat 1 3 1957 95254 95407 +340665 344881 4217 16398744.0403 16398953.2251 41.224 -0.012642 7.0272 run57.mat 1 3 1957 95488 96542 +345132 348141 3010 16398965.6804 16399114.9956 41.232 0.010689 7.0395 run57.mat 1 3 1957 96604 97356 +348670 349792 1123 16399141.5728 16399198.148 41.2376 -0.022524 6.4506 run57.mat 1 3 1957 97489 97769 +350130 352098 1969 16399215.1912 16399314.4248 41.2253 -0.03023 6.5276 run57.mat 1 3 1957 97854 98346 +352543 352812 270 16399336.8633 16399350.4272 41.207 -0.022896 6.9179 run57.mat 1 3 1957 98457 98524 +353150 354430 1281 16399367.4704 16399431.5126 41.2207 -0.0069802 6.489 run57.mat 1 3 1957 98609 98929 +354681 355228 548 16399444.0652 16399471.4209 41.2151 -0.022553 6.7745 run57.mat 1 3 1957 98992 99129 +355491 356332 842 16399484.5737 16399526.6324 41.2276 -0.01489 6.7954 run57.mat 1 3 1957 99194 99405 +356670 357630 961 16399543.5359 16399591.5459 41.2194 -0.0094717 6.4631 run57.mat 1 3 1957 99489 99729 +357892 358052 161 16399604.6487 16399612.6503 41.2055 -0.039013 6.6381 run57.mat 1 3 1957 99795 99835 +358390 361321 2932 16399629.5536 16399776.1318 41.2309 -0.011112 6.2804 run57.mat 1 3 1957 99919 100652 +361573 361838 266 16399788.7342 16399801.9867 41.1958 0.028797 5.4777 run57.mat 1 3 1957 100714 100781 +362093 364470 2378 16399814.7392 16399933.6261 41.2307 -0.0040168 6.0611 run57.mat 1 3 1957 100844 101439 +364731 367010 2280 16399946.6815 16400060.679 41.2234 0.0054131 6.1596 run57.mat 1 3 1957 101504 102074 +367261 368509 1249 16400073.2343 16400135.6547 41.2322 0.01016 6.2832 run57.mat 1 3 1957 102137 102449 +368804 369812 1009 16400150.4076 16400200.8173 41.226 0.016433 6.2487 run57.mat 1 3 1957 102523 102775 +370191 370627 437 16400219.7709 16400241.5751 41.2229 -0.0085437 7.4522 run57.mat 1 3 1957 102869 102978 +370882 372447 1566 16400254.3276 16400332.5926 41.2375 -0.0010105 7.4452 run57.mat 1 3 1957 103042 103433 +372770 381701 8932 16400348.7457 16400794.81 41.2326 -0.0061288 7.3142 run57.mat 1 3 1957 103514 105747 +382017 382612 596 16400810.7438 16400840.7459 41.2155 -0.019523 7.4846 run57.mat 1 3 1957 105826 105975 +382950 395892 12943 16400857.789 16401504.1117 41.2261 -0.0031687 7.3469 run57.mat 1 3 1957 106059 109295 +396230 400106 3877 16401520.8809 16401714.687 41.221 -0.0014712 7.3418 run57.mat 1 3 1957 109379 110348 +466043 466820 778 16405013.6256 16405052.1826 41.2282 0.038163 8.9756 run57.mat 1 3 1958 126833 127028 +467208 469491 2284 16405071.4363 16405185.059 41.2228 -0.0018445 9.5272 run57.mat 1 3 1958 127125 127696 +469742 470673 932 16405197.6116 16405244.1713 41.2254 -0.022233 9.5813 run57.mat 1 3 1958 127758 127991 +470993 471121 129 16405260.1746 16405266.576 41.2612 0.0040849 10.5396 run57.mat 1 3 1958 128071 128103 +471371 479888 8518 16405279.0786 16405704.5124 41.2266 0.0028738 9.8844 run57.mat 1 3 1958 128165 130295 +480191 482531 2341 16405719.5451 16405835.6396 41.2267 -0.019932 9.8923 run57.mat 1 3 1958 130370 130955 +482782 489069 6288 16405848.0925 16406162.4497 41.2284 -0.010687 9.4916 run57.mat 1 3 1958 131018 132590 +489378 491655 2278 16406178.0274 16406292.8187 41.2269 -0.0016542 9.3561 run57.mat 1 3 1958 132668 133237 +491961 494771 2811 16406308.2452 16406448.8287 41.2284 -0.0052764 9.0527 run57.mat 1 3 1958 133313 134015 +495024 496294 1271 16406461.3808 16406524.3894 41.2271 -0.0097741 8.9801 run57.mat 1 3 1958 134079 134396 +496560 501939 5380 16406537.5864 16406805.8334 41.2284 -0.012745 8.9612 run57.mat 1 3 1958 134463 135808 +502194 503814 1621 16406818.5859 16406899.6029 41.229 0.007234 8.7129 run57.mat 1 3 1958 135871 136277 +504085 508849 4765 16406913.1581 16407151.4498 41.2247 0.0051422 8.0942 run57.mat 1 3 1958 136344 137536 +509102 509571 470 16407164.1025 16407187.5574 41.2114 0.03055 7.6612 run57.mat 1 3 1958 137599 137716 +509822 510369 548 16407200.11 16407227.4657 41.2325 0.023165 7.991 run57.mat 1 3 1958 137779 137916 +510621 511809 1189 16407240.0683 16407299.4807 41.2246 0.006685 8.1709 run57.mat 1 3 1958 137978 138275 +512079 513905 1827 16407312.9835 16407404.2561 41.2212 -0.0065211 8.3476 run57.mat 1 3 1958 138343 138799 +514169 519092 4924 16407417.4089 16407663.0625 41.223 0.0048988 7.8443 run57.mat 1 3 1958 138865 140096 +519430 519940 511 16407680.2299 16407706.1334 41.2216 0.076832 7.1098 run57.mat 1 3 1958 140181 140308 +520195 523111 2917 16407719.0852 16407867.1922 41.2272 -0.0093069 7.4508 run57.mat 1 3 1958 140372 141101 +523361 524692 1332 16407879.89 16407946.461 41.2373 -0.019883 7.2305 run57.mat 1 3 1958 141164 141496 +525030 526994 1965 16407963.2302 16408060.6702 41.2263 -0.0067163 7.4416 run57.mat 1 3 1958 141581 142072 +527262 527651 390 16408073.9665 16408093.2659 41.2199 0.027935 6.7666 run57.mat 1 3 1958 142138 142236 +527901 529777 1877 16408105.6692 16408199.1192 41.2319 0.0031727 7.2554 run57.mat 1 3 1958 142298 142767 +530032 530692 661 16408211.8745 16408244.8883 41.2203 0.012332 7.2227 run57.mat 1 3 1958 142831 142996 +531092 532599 1508 16408264.8966 16408340.278 41.222 -0.016233 6.8906 run57.mat 1 3 1958 143096 143473 +533170 533721 552 16408368.8399 16408396.4007 41.2389 -0.012994 7.4208 run57.mat 1 3 1958 143616 143754 +533971 535308 1338 16408408.9031 16408475.7659 41.2172 -0.031764 6.9803 run57.mat 1 3 1958 143816 144150 +535571 535799 229 16408488.9184 16408500.3206 41.2542 0.01425 7.2275 run57.mat 1 3 1958 144216 144273 +536058 537652 1595 16408513.2731 16408592.9885 41.2145 0.0048256 6.7518 run57.mat 1 3 1958 144338 144736 +537990 539069 1080 16408609.8917 16408663.9397 41.2215 -0.0041399 6.5833 run57.mat 1 3 1958 144821 145091 +539323 540059 737 16408676.7447 16408713.849 41.228 0.0058888 6.768 run57.mat 1 3 1958 145154 145338 +540372 540670 299 16408729.6284 16408744.6515 41.1868 0.024489 7.1289 run57.mat 1 3 1958 145417 145491 +540921 542811 1891 16408757.3053 16408852.5866 41.2226 0.0062844 6.6522 run57.mat 1 3 1958 145554 146026 +543113 543659 547 16408867.8115 16408895.3372 41.2319 0.010276 6.8271 run57.mat 1 3 1958 146102 146238 +543929 544715 787 16408908.8555 16408947.8591 41.2501 -0.0036844 6.7858 run57.mat 1 3 1958 146306 146502 +545183 546359 1177 16408971.0826 16409029.4391 41.2059 -0.0176 6.7203 run57.mat 1 3 1958 146619 146913 +546612 546849 238 16409041.9936 16409053.7543 41.2491 0.0067186 6.3571 run57.mat 1 3 1958 146976 147036 +547110 547740 631 16409066.7058 16409097.9682 41.2366 -0.01956 6.7623 run57.mat 1 3 1958 147101 147258 +548243 548329 87 16409122.9285 16409127.1961 41.3014 -0.063113 6.1286 run57.mat 1 3 1958 147384 147406 +548631 548712 82 16409142.1822 16409146.2017 41.2753 -0.045282 5.7296 run57.mat 1 3 1958 147481 147501 +549050 549719 670 16409163.1331 16409196.8596 41.21 -0.0034159 6.8088 run57.mat 1 3 1958 147586 147753 +549973 550144 172 16409209.6647 16409218.2853 41.2045 -0.014278 6.8682 run57.mat 1 3 1958 147817 147859 +550456 550592 137 16409234.0143 16409240.8705 41.2053 0.036593 7.0804 run57.mat 1 3 1958 147937 147971 +551170 551342 173 16409270.0095 16409278.6806 41.2234 0.073819 6.027 run57.mat 1 3 1958 148116 148159 +551602 551930 329 16409291.7881 16409308.3237 41.214 -0.0019205 6.7159 run57.mat 1 3 1958 148224 148306 +552650 553112 463 16409344.6213 16409367.9123 41.252 0.031543 6.5732 run57.mat 1 3 1958 148486 148601 +553777 554468 692 16409401.4372 16409435.7446 41.248 -0.0009156 6.457 run57.mat 1 3 1958 148768 148941 +554781 556150 1370 16409451.2735 16409519.1937 41.2321 -0.0071938 6.2675 run57.mat 1 3 1958 149019 149361 +556406 557348 943 16409531.8946 16409578.6301 41.2168 -0.0014258 6.1091 run57.mat 1 3 1958 149425 149661 +557655 557678 24 16409593.8613 16409595.0024 41.2226 -0.01499 3.97 run57.mat 1 3 1958 149737 149743 +558112 558499 388 16409616.5344 16409635.7347 41.214 -0.030811 5.6625 run57.mat 1 3 1958 149852 149948 +558751 559038 288 16409648.2372 16409662.478 41.2336 0.0022502 5.7055 run57.mat 1 3 1958 150011 150083 +559304 559990 687 16409675.6776 16409709.7189 41.2221 -0.012006 5.9284 run57.mat 1 3 1958 150150 150321 +560291 560546 256 16409724.6554 16409737.3092 41.2 -0.033478 5.8088 run57.mat 1 3 1958 150397 150460 +560853 562092 1240 16409752.5435 16409814.0262 41.2308 -0.0065631 6.1847 run57.mat 1 3 1958 150537 150847 +630266 633842 3577 16413224.2939 16413401.7101 41.2263 0.0012928 8.5807 run57.mat 1 3 1959 167891 168785 +700491 720579 20089 16416734.1116 16417739.1291 41.2241 0.00053742 9.7783 run57.mat 11 3 1960 185448 190470 +720841 721946 1106 16417752.3401 16417808.0581 41.2243 -0.0089568 9.7921 run57.mat 11 3 1960 190536 190812 +722218 733818 11601 16417821.7733 16418401.3501 41.2235 -0.0047578 9.759 run57.mat 11 3 1960 190880 193780 +734154 734270 117 16418418.0234 16418423.7797 41.1735 -0.017617 14.5241 run57.mat 11 3 1960 193864 193893 +734527 758297 23771 16418436.5328 16419624.6816 41.2266 -0.00023834 9.7673 run57.mat 11 3 1960 193957 199900 +758576 761931 3356 16419638.7469 16419806.9717 41.2183 -0.0045441 9.8009 run57.mat 11 3 1960 199969 200808 +762234 768757 6524 16419822.1246 16420147.6058 41.2218 -0.003528 9.7863 run57.mat 11 3 1960 200884 202515 +769077 771981 2905 16420163.5486 16420309.4565 41.2302 0.0079658 9.7991 run57.mat 11 3 1960 202595 203321 +772231 773447 1217 16420322.0599 16420383.3626 41.2345 -0.0014015 9.6333 run57.mat 11 3 1960 203384 203687 +773707 773844 138 16420396.4701 16420403.3767 41.2572 -0.046814 12.6202 run57.mat 11 3 1960 203752 203787 +774151 776781 2631 16420418.8536 16420550.6899 41.2239 -0.0053542 9.8236 run57.mat 11 3 1960 203863 204521 +777031 796551 19521 16420563.1951 16421538.049 41.2253 -0.0087354 9.753 run57.mat 11 3 1960 204583 209464 +862560 891547 28988 16424839.7938 16426289.0085 41.2252 -0.0022031 9.7723 run57.mat 11 3 1961 225967 233214 +891807 897082 5276 16426301.9079 16426564.334 41.2235 -0.013884 9.7508 run57.mat 11 3 1961 233279 234598 +965150 989420 24271 16429968.6409 16431182.8923 41.2259 -0.0013052 10.9727 run57.mat 21 3 1962 251616 257683 +989673 993278 3606 16431195.6469 16431375.4994 41.2316 -0.0064669 11.1105 run57.mat 21 3 1962 257746 258648 +993531 994961 1431 16431388.054 16431459.0147 41.2193 -0.0105 11.1441 run57.mat 21 3 1962 258711 259069 +995242 996109 868 16431472.9587 16431516.0517 41.2295 -0.0053382 11.2233 run57.mat 21 3 1962 259139 259356 +996413 1023109 26697 16431531.2547 16432866.3707 41.2241 -0.0025983 10.953 run57.mat 21 3 1962 259432 266106 +1023361 1033160 9800 16432878.9733 16433367.0212 41.2305 -0.0044274 10.9565 run57.mat 21 3 1962 266169 268619 +1033413 1035232 1820 16433379.6736 16433470.6411 41.2239 -0.0071399 11.0202 run57.mat 21 3 1962 268682 269137 +1035570 1060855 25286 16433487.5443 16434752.3374 41.2282 -0.0037866 10.9723 run57.mat 21 3 1962 269221 275543 +1061122 1061211 90 16434765.5867 16434770.0032 41.2101 0.023676 10.778 run57.mat 21 3 1962 275610 275632 +1129241 1131971 2731 16438173.3655 16438311.6158 41.2242 -0.0083575 11.1981 run57.mat 21 3 1963 292640 293323 +1132221 1135877 3657 16438324.0191 16438505.4042 41.223 -0.0057237 10.9299 run57.mat 21 3 1963 293385 294299 +1203597 1261612 58016 16441890.1196 16444792.686 41.2257 -0.0032479 9.9984 run57.mat 31 3 1964 311230 325734 +1261950 1299629 37680 16444809.5925 16446691.9735 41.2276 -0.0045176 10.0029 run57.mat 31 3 1964 325819 335239 +1367622 1374316 6695 16450093.4552 16450427.5844 41.2264 -0.0044191 10.069 run57.mat 31 3 1965 352238 353912 +1441980 1538009 96030 16453808.6383 16458609.9912 41.2274 -0.00357 9.2752 run57.mat 41 3 1966 370828 394837 +1606085 1612829 6745 16462014.7117 16462352.935 41.2216 -0.0056434 9.3386 run57.mat 41 3 1967 411857 413542 +1680232 1776210 95979 16465723.4569 16470522.3193 41.2264 -0.0041022 8.7096 run57.mat 51 3 1968 430394 454390 +1844323 1851109 6787 16473928.9072 16474266.3158 41.2276 -0.0030836 8.7361 run57.mat 51 3 1969 471418 473115 +1920563 2016528 95966 16477740.5229 16482537.9399 41.2272 -0.0038781 8.2448 run57.mat 61 3 1970 490480 514472 +2084637 2091413 6777 16485942.1699 16486282.3663 41.2254 -0.0047869 8.2766 run57.mat 61 3 1971 531499 533194 +2158950 2197141 38192 16489658.1927 16491567.5669 41.226 -0.0038799 7.8608 run57.mat 71 3 1972 550079 559627 +2197401 2254948 57548 16491580.5723 16494459.666 41.2262 -0.0023965 7.8562 run57.mat 71 3 1972 559692 574079 +2324915 2325199 285 16497958.8657 16497973.0712 41.2158 -0.017191 8.3934 run57.mat 71 3 1973 591572 591643 +2325529 2331698 6170 16497989.5775 16498296.1147 41.2246 -0.0024258 7.8597 run57.mat 71 3 1973 591725 593268 +2401277 2471243 69967 16501775.4676 16505273.8366 41.2264 -0.0043995 7.5276 run57.mat 81 3 1974 610663 628156 +2471493 2490013 18521 16505286.4425 16506211.8855 41.2279 -0.0023015 7.5243 run57.mat 81 3 1974 628218 632848 +2490263 2497267 7005 16506224.2887 16506573.799 41.2293 -0.0034914 7.5293 run57.mat 81 3 1974 632911 634661 +2567234 2573990 6757 16510074.0988 16510412.015 41.2261 -0.0074468 7.5605 run57.mat 81 3 1975 652154 653844 +2643378 2739367 95990 16513883.3088 16518679.6185 41.2274 -0.0028564 7.2459 run57.mat 91 3 1976 671191 695190 +2809510 2816309 6800 16522188.1374 16522527.0098 41.2219 -0.0050763 7.2721 run57.mat 91 3 1977 712726 714426 +2885697 2981687 95991 16525997.1449 16530796.3783 41.2283 -0.0035383 6.9966 run57.mat 101 3 1978 731774 755772 +3051839 3058627 6789 16534302.6244 16534643.9167 41.2264 -0.0032836 7.0312 run57.mat 101 3 1979 773311 775008 +3127988 3133135 5148 16538112.0975 16538369.4661 41.2186 -0.004939 6.7986 run57.mat 111 3 1980 792349 793636 +3133386 3150625 17240 16538381.9214 16539245.2098 41.226 -0.0045373 6.7724 run57.mat 111 3 1980 793699 798009 +3150877 3169995 19119 16539257.9165 16540211.0369 41.2296 -0.0027896 6.7829 run57.mat 111 3 1980 798072 802851 +3170248 3209746 39499 16540223.6918 16542200.5606 41.2271 -0.0025304 6.7759 run57.mat 111 3 1980 802915 812789 +3209996 3223986 13991 16542212.9639 16542909.7167 41.2248 -0.0027874 6.7823 run57.mat 111 3 1980 812852 816349 +3293942 3300757 6816 16546411.1573 16546751.9761 41.2216 -0.0036743 6.813 run57.mat 111 3 1981 833839 835543 +3370098 3390168 20071 16550218.8853 16551221.2912 41.2287 -0.0038819 6.5931 run57.mat 121 3 1982 852879 857897 +3390418 3466086 75669 16551233.8945 16555018.5232 41.2258 -0.0024177 6.5822 run57.mat 121 3 1982 857959 876877 +3538319 3545137 6819 16558627.0894 16558970.0662 41.2227 -0.004796 6.5972 run57.mat 121 3 1983 894936 896641 +3616318 3679286 62969 16562531.0696 16565677.5035 41.2242 -0.0019914 6.4021 run57.mat 131 3 1984 914437 930180 +3679612 3683665 4054 16565693.6773 16565896.2358 41.2311 -0.0049585 6.4003 run57.mat 131 3 1984 930261 931275 +3684001 3705147 21147 16565913.039 16566968.7233 41.2302 -0.0030059 6.4139 run57.mat 131 3 1984 931359 936645 +3705472 3712285 6814 16566985.1109 16567326.7394 41.2306 -0.0018358 6.4241 run57.mat 131 3 1984 936726 938430 +3782458 3789319 6862 16570836.8954 16571181.0807 41.2262 -0.0027242 6.417 run57.mat 131 3 1985 955974 957689 +3858621 3954565 95945 16574644.2824 16579442.4295 41.2272 -0.0041264 6.2431 run57.mat 141 3 1986 975016 999002 +4026777 4033663 6887 16583051.7034 16583397.0107 41.2293 -0.0026051 6.2705 run57.mat 141 3 1987 1017056 1018778 +4102938 4163628 60691 16586860.6198 16589895.554 41.2267 -0.003492 6.0918 run57.mat 151 3 1988 1036097 1051271 +4163878 4198883 35006 16589908.0093 16591657.3902 41.2289 -0.0028863 6.0961 run57.mat 151 3 1988 1051333 1060085 +4268870 4275750 6881 16595156.9663 16595499.9336 41.2264 -0.003166 6.1133 run57.mat 151 3 1989 1077582 1079302 +4345013 4387266 42254 16598963.6247 16601077.0183 41.2273 -0.0028347 5.9548 run57.mat 161 3 1990 1096619 1107182 +4387522 4396888 9367 16601089.7192 16601557.6618 41.2302 -0.0022414 5.9556 run57.mat 161 3 1990 1107246 1109588 +4397141 4440964 43824 16601570.4164 16603762.314 41.2289 -0.0031472 5.9573 run57.mat 161 3 1990 1109651 1120608 +4511097 4517974 6878 16607268.1153 16607612.8994 41.2272 -0.0051969 5.9865 run57.mat 161 3 1991 1138141 1139861 +4589121 4685062 95942 16611169.9754 16615966.5502 41.2285 -0.0030314 5.8278 run57.mat 171 3 1992 1157648 1181634 +4755249 4762142 6894 16619475.8631 16619821.8113 41.222 -0.0041473 5.8292 run57.mat 171 3 1993 1199183 1200905 +4833458 4929403 95946 16623388.2415 16628184.7011 41.228 -0.0026965 5.7124 run57.mat 181 3 1994 1218736 1242723 +4999339 5006245 6907 16631680.7206 16632027.3307 41.2301 -0.0043268 5.7398 run57.mat 181 3 1995 1260207 1261934 +5077577 5173523 95947 16635593.9444 16640391.5204 41.2275 -0.0027317 5.6023 run57.mat 191 3 1996 1279768 1303755 +5245547 5252448 6902 16643992.8934 16644337.2938 41.226 -0.0033806 5.6122 run57.mat 191 3 1997 1321762 1323487 +5323745 5419682 95938 16647904.3716 16652699.5153 41.228 -0.0027285 5.4577 run57.mat 201 3 1998 1341312 1365298 +5491738 5498653 6916 16656300.8708 16656646.7 41.2247 -0.0025469 5.4833 run57.mat 201 3 1999 1383313 1385041 +5569957 5665882 95926 16660212.7927 16665009.3512 41.228 -0.0028483 5.322 run57.mat 211 3 2000 1402868 1426851 +5736056 5742993 6938 16668518.9242 16668865.201 41.2245 -0.0020328 5.338 run57.mat 211 3 2001 1444395 1446129 +5814250 5906842 92593 16672426.7156 16677057.634 41.2274 -0.0024683 5.2009 run57.mat 221 3 2002 1463944 1487093 +5907093 5910200 3108 16677070.2878 16677226.9222 41.2359 0.00013021 5.2016 run57.mat 221 3 2002 1487156 1487933 +5982225 5989150 6926 16680829.4219 16681173.0139 41.2297 -0.0016289 5.2207 run57.mat 221 3 2003 1505940 1507671 +262663 301032 38370 -22204.3267 -20285.477 41.2289 -21.0379 4.4291 run58.mat 1 4 2005 1 1 +379136 404096 24961 -16379.4632 -15131.2032 41.2296 -21.0387 5.7361 run58.mat 11 4 2006 1 1 +483775 503451 19677 -11146.423 -10162.418 41.2256 -21.0363 6.4562 run58.mat 21 4 2007 1 1 +582702 602435 19734 -6199.0423 -5212.1867 41.2289 -21.0366 5.886 run58.mat 31 4 2008 1 1 +681103 700925 19823 -1277.9671 -286.6606 41.2281 -21.0359 5.4531 run58.mat 41 4 2009 1 1 +781753 801572 19820 3751.7476 4743.1129 41.2309 -21.037 5.1261 run58.mat 51 4 2010 1 1 +882202 901999 19798 8778.4969 9764.6478 41.2258 -21.0355 4.877 run58.mat 61 4 2011 1 1 +982706 1002490 19785 13802.0528 14789.4966 41.2306 -21.0367 4.6379 run58.mat 71 4 2012 1 1 +1085116 1104916 19801 18922.1767 19912.5328 41.2294 -21.0373 4.4608 run58.mat 81 4 2013 1 1 +1188080 1207550 19471 24069.84 25044.6989 41.2313 -21.0358 4.2754 run58.mat 91 4 2014 1 1 +1290416 1295063 4648 29186.613 29419.3307 41.2242 -21.0384 4.3023 run58.mat 101 4 2015 1 1 +1295315 1309960 14646 29432.0349 30163.7013 41.2276 -21.0382 4.0905 run58.mat 101 4 2015 1 1 +1392828 1412337 19510 34307.4803 35283.2012 41.2322 -21.0366 4.0184 run58.mat 111 4 2016 1 1 +1497304 1516845 19542 39532.3995 40510.3312 41.2314 -21.0361 3.9027 run58.mat 121 4 2017 1 1 +1603689 1623152 19464 44852.1583 45826.6556 41.2325 -21.035 3.8222 run58.mat 131 4 2018 1 1 +1707632 1727468 19837 50049.1139 51038.8137 41.2292 -21.0341 3.755 run58.mat 141 4 2019 1 1 +1812410 1825353 12944 55286.6813 55933.6406 41.2305 -21.0368 3.6643 run58.mat 151 4 2020 1 1 +1825660 1831942 6283 55948.9327 56264.673 41.2288 -21.0339 3.5958 run58.mat 151 4 2020 1 1 +1918444 1938297 19854 60589.1664 61581.6095 41.2271 -21.0368 3.5905 run58.mat 161 4 2021 1 1 +2024814 2044576 19763 65908.0756 66895.3045 41.2263 -21.0391 3.5295 run58.mat 171 4 2022 1 1 +2131761 2151191 19431 71255.4354 72226.2997 41.2269 -21.0364 3.4445 run58.mat 181 4 2023 1 1 +2238041 2257537 19497 76570.1956 77543.2951 41.2297 -21.0345 3.3859 run58.mat 191 4 2024 1 1 +2346703 2366014 19312 82001.7815 82966.7021 41.2266 -21.0371 3.3068 run58.mat 201 4 2025 1 1 +2453169 2472530 19362 87327.1892 88292.2705 41.231 -21.0338 3.2387 run58.mat 211 4 2026 1 1 +2561762 2581075 19314 92755.5398 93720.5489 41.234 -21.0341 3.1683 run58.mat 221 4 2027 1 1 +327183 365375 38193 166950.41 168861.6767 41.23 -21.039 4.4359 run59.mat 1 4 2029 1 1 +461648 486367 24720 173675.8019 174910.0975 41.2294 -21.0383 5.7654 run59.mat 11 4 2030 1 1 +564329 584053 19725 178808.9564 179793.4098 41.2298 -21.0381 6.4297 run59.mat 21 4 2031 1 1 +663052 682809 19758 183745.2675 184730.8231 41.2282 -21.0365 5.887 run59.mat 31 4 2032 1 1 +761733 781518 19786 188676.9771 189668.7779 41.2287 -21.0392 5.4642 run59.mat 41 4 2033 1 1 +862228 882031 19804 193704.737 194692.9585 41.2278 -21.0356 5.1265 run59.mat 51 4 2034 1 1 +962679 982469 19791 198724.8276 199714.2993 41.2291 -21.0349 4.8631 run59.mat 61 4 2035 1 1 +1065123 1084891 19769 203850.6115 204835.959 41.2306 -21.0366 4.6627 run59.mat 71 4 2036 1 1 +1167803 1187310 19508 208983.4783 209956.4158 41.2249 -21.0352 4.4484 run59.mat 81 4 2037 1 1 +1270109 1289654 19546 214095.6091 215073.1091 41.2281 -21.0353 4.2698 run59.mat 91 4 2038 1 1 +1372487 1392036 19550 219218.8223 220192.5672 41.2252 -21.0367 4.1318 run59.mat 101 4 2039 1 1 +1475158 1494702 19545 224352.684 225326.5203 41.2264 -21.0379 4.0085 run59.mat 111 4 2040 1 1 +1577273 1597104 19832 229456.1334 230447.1218 41.2301 -21.0371 3.9307 run59.mat 121 4 2041 1 1 +1682080 1701625 19546 234699.3677 235674.98 41.2339 -21.0363 3.8128 run59.mat 131 4 2042 1 1 +1786055 1805874 19820 239896.3586 240886.3233 41.2299 -21.0368 3.7407 run59.mat 141 4 2043 1 1 +1890760 1910333 19574 245130.6741 246109.6169 41.2259 -21.0375 3.652 run59.mat 151 4 2044 1 1 +1997195 2015905 18711 250451.7237 251387.9742 41.2254 -21.0366 3.5794 run59.mat 161 4 2045 1 1 +2016158 2016694 537 251400.5263 251427.1189 41.2229 -21.0252 3.6249 run59.mat 161 4 2045 1 1 +2103200 2123005 19806 255752.3051 256740.9115 41.2296 -21.0367 3.522 run59.mat 171 4 2046 1 1 +2210195 2229610 19416 261102.9986 262073.0726 41.2299 -21.0352 3.4379 run59.mat 181 4 2047 1 1 +2316734 2336174 19441 266430.6884 267401.2679 41.228 -21.0382 3.3812 run59.mat 191 4 2048 1 1 +2423136 2442604 19469 271751.9113 272722.1792 41.2289 -21.036 3.3102 run59.mat 201 4 2049 1 1 +2531720 2551041 19322 277178.8713 278144.9258 41.231 -21.0369 3.2372 run59.mat 211 4 2050 1 1 +2640229 2659739 19511 282606.2023 283580.1361 41.2299 -21.0352 3.1717 run59.mat 221 4 2051 1 1 +270951 291396 20446 12744540.0474 12745563.1044 82.4637 -40.3871 92.8532 run6.mat -1 -1 2053 160475 170698 +291704 312396 20693 12745578.3882 12746613.4493 80.8132 -40.3886 92.5813 run6.mat -1 -1 2053 170852 181199 +312702 333398 20697 12746628.8758 12747660.5407 79.1657 -40.3873 92.5943 run6.mat -1 -1 2053 181352 191700 +333704 354377 20674 12747675.8439 12748711.7988 77.5099 -40.388 92.5915 run6.mat -1 -1 2053 191853 202190 +354683 366776 12094 12748727.0064 12749331.8743 75.8615 -40.3872 92.8193 run6.mat -1 -1 2053 202343 208390 +450840 458476 7637 12753533.5721 12753917.0296 75.8621 -40.3883 93.7045 run6.mat -1 -1 2054 250424 254242 +458806 479498 20693 12753933.5365 12754966.5717 74.2151 -40.3878 92.5521 run6.mat -1 -1 2054 254407 264753 +479804 500479 20676 12754981.848 12756015.8041 72.5697 -40.3877 92.6486 run6.mat -1 -1 2054 264907 275244 +500784 521476 20693 12756031.0573 12757068.2308 70.9171 -40.3876 92.6191 run6.mat -1 -1 2054 275397 285743 +521782 542453 20672 12757083.5926 12758116.9861 69.2669 -40.3875 92.6834 run6.mat -1 -1 2054 285896 296232 +542762 546655 3894 12758132.3165 12758325.46 67.6226 -40.3872 92.7877 run6.mat -1 -1 2054 296387 298333 +630744 646555 15812 12762527.8042 12763320.5706 67.6247 -40.3883 93.0694 run6.mat -1 -1 2055 340379 348285 +646874 667560 20687 12763336.5267 12764370.8802 65.9712 -40.387 92.5165 run6.mat -1 -1 2055 348445 358788 +667866 688537 20672 12764386.3098 12765419.2294 64.3217 -40.3878 92.6601 run6.mat -1 -1 2055 358941 369277 +688848 709539 20692 12765434.7827 12766469.6399 62.6745 -40.3874 92.5515 run6.mat -1 -1 2055 369433 379779 +709845 726533 16689 12766484.9431 12767320.7586 61.0235 -40.3873 92.7722 run6.mat -1 -1 2055 379932 388276 +810762 813803 3042 12771531.1504 12771683.2297 61.0301 -40.3883 95.3364 run6.mat -1 -1 2056 430393 431913 +814115 834816 20702 12771698.8327 12772733.7469 59.3759 -40.3867 92.5595 run6.mat -1 -1 2056 432069 442420 +835124 855801 20678 12772749.2742 12773783.748 57.7252 -40.3868 92.545 run6.mat -1 -1 2056 442574 452913 +856106 876800 20695 12773798.9226 12774831.9063 56.0765 -40.389 92.6072 run6.mat -1 -1 2056 453066 463413 +877105 897780 20676 12774847.1593 12775881.2158 54.4236 -40.3887 92.6296 run6.mat -1 -1 2056 463566 473904 +898087 906575 8489 12775896.5688 12776322.9909 52.7756 -40.3873 92.8657 run6.mat -1 -1 2056 474057 478301 +990788 1002098 11311 12780533.418 12781097.4627 52.7742 -40.3883 93.2063 run6.mat -1 -1 2057 520410 526064 +1002422 1023100 20679 12781113.7999 12782149.2598 51.1269 -40.3877 92.5412 run6.mat -1 -1 2057 526226 536566 +1023406 1044079 20674 12782164.4414 12783196.1929 49.4725 -40.3882 92.5495 run6.mat -1 -1 2057 536719 547056 +1044388 1065081 20694 12783211.5264 12784247.4656 47.8253 -40.3877 92.6285 run6.mat -1 -1 2057 547210 557557 +1065385 1086040 20656 12784262.6719 12785296.6428 46.1775 -40.3878 92.6782 run6.mat -1 -1 2057 557709 568037 +1086346 1086574 229 12785311.946 12785323.3484 44.5467 -40.3961 90.5068 run6.mat -1 -1 2057 568190 568304 +1170677 1190317 19641 12789528.927 12790507.907 44.5283 -40.3866 92.9296 run6.mat -1 -1 2058 610358 620179 +1190626 1211300 20675 12790523.3635 12791557.7652 42.8788 -40.3883 92.5984 run6.mat -1 -1 2058 620333 630670 +1211607 1232300 20694 12791572.9964 12792607.6263 41.2282 -40.3877 92.6699 run6.mat -1 -1 2058 630824 641171 +1232608 1253281 20674 12792623.1017 12793657.5448 39.5832 -40.387 92.6475 run6.mat -1 -1 2058 641325 651662 +1253588 1266433 12846 12793672.7759 12794314.0242 37.9322 -40.388 92.8766 run6.mat -1 -1 2058 651815 658238 +1350701 1357559 6859 12798527.9484 12798870.0994 37.9359 -40.3881 93.5894 run6.mat -1 -1 2059 700374 703803 +1357881 1378579 20699 12798886.3035 12799923.2421 36.2869 -40.3882 92.5327 run6.mat -1 -1 2059 703964 714313 +1378885 1399580 20696 12799938.4237 12800972.3667 34.6317 -40.3867 92.619 run6.mat -1 -1 2059 714466 724814 +1399887 1420566 20680 12800987.8467 12802022.3689 32.987 -40.388 92.6659 run6.mat -1 -1 2059 724968 735308 +1420880 1441541 20662 12802037.9474 12803068.8782 31.3356 -40.3866 92.6494 run6.mat -1 -1 2059 735465 745796 +1441846 1446493 4648 12803084.0101 12803315.9665 29.6951 -40.3857 92.8776 run6.mat -1 -1 2059 745948 748272 +1530622 1545780 15159 12807524.5732 12808281.7317 29.6872 -40.3879 93.1862 run6.mat -1 -1 2060 790338 797918 +1546103 1566764 20662 12808297.7567 12809333.4394 28.0356 -40.3875 92.5804 run6.mat -1 -1 2060 798079 808410 +1567072 1587776 20705 12809348.9667 12810381.4102 26.385 -40.3882 92.5787 run6.mat -1 -1 2060 808564 818917 +1588089 1608761 20673 12810396.9391 12811432.453 24.7406 -40.3879 92.6017 run6.mat -1 -1 2060 819073 829410 +1609067 1626373 17307 12811447.8355 12812313.2937 23.0839 -40.3882 92.8301 run6.mat -1 -1 2060 829563 838216 +1710675 1713041 2367 12816526.534 12816644.8833 23.0907 -40.3898 94.859 run6.mat -1 -1 2061 880369 881552 +1713361 1734062 20702 12816660.89 12817696.1543 21.4338 -40.3876 92.5768 run6.mat -1 -1 2061 881712 892063 +1734367 1755041 20675 12817711.4102 12818747.0048 19.786 -40.388 92.6673 run6.mat -1 -1 2061 892215 902553 +1755349 1776044 20696 12818762.2886 12819796.1151 18.1373 -40.388 92.6105 run6.mat -1 -1 2061 902707 913054 +1776350 1797022 20673 12819811.2997 12820845.0583 16.4874 -40.3881 92.684 run6.mat -1 -1 2061 913207 923544 +1797328 1806453 9126 12820860.4848 12821316.9407 14.8432 -40.3872 92.7721 run6.mat -1 -1 2061 923697 928260 +1890677 1901261 10585 12825528.8516 12826055.3853 14.8423 -40.3872 93.2594 run6.mat -1 -1 2062 970374 975666 +1901590 1922284 20695 12826072.1176 12827107.8732 13.1905 -40.387 92.5816 run6.mat -1 -1 2062 975830 986178 +1922591 1943261 20671 12827123.2262 12828155.819 11.5432 -40.3876 92.5394 run6.mat -1 -1 2062 986331 996667 +1943569 1964243 20675 12828171.1028 12829207.6721 9.8913 -40.3875 92.6117 run6.mat -1 -1 2062 996821 1007158 +1964554 1985222 20669 12829223.4713 12830253.7249 8.2486 -40.3878 92.6931 run6.mat -1 -1 2062 1007313 1017648 +1985527 1986472 946 12830269.0488 12830316.6895 6.599 -40.3867 91.3889 run6.mat -1 -1 2062 1017801 1018273 +2070426 2089342 18917 12834514.0013 12835460.4211 6.5936 -40.3882 93.0789 run6.mat -1 -1 2063 1060252 1069710 +2089665 2110342 20678 12835476.4461 12836512.3028 4.9472 -40.3878 92.5327 run6.mat -1 -1 2063 1069872 1080211 +2110648 2131324 20677 12836527.6057 12837561.1274 3.2976 -40.3873 92.5619 run6.mat -1 -1 2063 1080364 1090703 +2131631 2152304 20674 12837576.6044 12838608.6854 1.651 -40.3879 92.5433 run6.mat -1 -1 2063 1090856 1101193 +2152614 2166312 13699 12838624.3136 12839308.5614 -0.0017059 -40.3865 92.8146 run6.mat -1 -1 2063 1101348 1108197 +2250615 2256621 6007 12843522.9532 12843824.9031 0.0041097 -40.3846 93.5945 run6.mat -1 -1 2064 1150351 1153354 +2256943 2277623 20681 12843840.8817 12844874.5124 -1.6477 -40.3873 92.5431 run6.mat -1 -1 2064 1153515 1163855 +2277933 2298623 20691 12844890.0154 12845926.8205 -3.2962 -40.3882 92.5847 run6.mat -1 -1 2064 1164010 1174356 +2298930 2319602 20673 12845942.1735 12846975.1906 -4.9444 -40.3886 92.6288 run6.mat -1 -1 2064 1174509 1184846 +2319913 2340583 20671 12846990.8691 12848023.9155 -6.5955 -40.3879 92.6338 run6.mat -1 -1 2064 1185001 1195336 +2340890 2346391 5502 12848039.1467 12848313.8466 -8.2435 -40.3893 93.0486 run6.mat -1 -1 2064 1195490 1198241 +2430522 2444863 14342 12852520.869 12853237.6285 -8.248 -40.3872 93.2404 run6.mat -1 -1 2065 1240308 1247479 +2445171 2465865 20695 12853253.0317 12854288.7183 -9.896 -40.388 92.4971 run6.mat -1 -1 2065 1247633 1257980 +2466171 2486846 20676 12854304.2604 12855337.2451 -11.5469 -40.3882 92.6107 run6.mat -1 -1 2065 1258133 1268471 +2487151 2507845 20695 12855352.4982 12856386.5724 -13.1936 -40.3889 92.505 run6.mat -1 -1 2065 1268624 1278971 +2508152 2526291 18140 12856402.0524 12857311.0394 -14.8466 -40.3883 92.7052 run6.mat -1 -1 2065 1279125 1288195 +2610559 2612243 1685 12861523.6006 12861607.833 -14.8496 -40.3873 98.071 run6.mat -1 -1 2066 1330331 1331173 +2612566 2633247 20682 12861623.9892 12862657.2555 -16.4939 -40.3872 92.5429 run6.mat -1 -1 2066 1331334 1341675 +2633552 2654245 20694 12862672.5114 12863706.9016 -18.1412 -40.3882 92.566 run6.mat -1 -1 2066 1341827 1352175 +2654552 2675226 20675 12863722.1328 12864755.5408 -19.7909 -40.3879 92.6174 run6.mat -1 -1 2066 1352328 1362665 +2675530 2696225 20696 12864770.8665 12865805.6638 -21.4344 -40.3879 92.684 run6.mat -1 -1 2066 1362817 1373165 +2696532 2706331 9800 12865820.898 12866312.3826 -23.0903 -40.3881 92.8342 run6.mat -1 -1 2066 1373319 1378218 +2790599 2800603 10005 12870525.0339 12871025.3537 -23.0886 -40.3877 93.6486 run6.mat -1 -1 2067 1420355 1425356 +2800907 2821624 20718 12871040.4391 12872076.8338 -24.738 -40.3872 92.6445 run6.mat -1 -1 2067 1425508 1435868 +2821930 2842603 20674 12872092.2634 12873124.8773 -26.3842 -40.3876 92.5793 run6.mat -1 -1 2067 1436021 1446357 +2842914 2863604 20691 12873140.4332 12874175.1272 -28.037 -40.3878 92.6524 run6.mat -1 -1 2067 1446513 1456858 +2863913 2884563 20651 12874190.6514 12875223.0951 -29.6838 -40.3874 92.6792 run6.mat -1 -1 2067 1457013 1467339 +2884870 2886371 1502 12875238.3263 12875312.7954 -31.3205 -40.3918 93.0845 run6.mat -1 -1 2067 1467492 1468243 +2970464 2988704 18241 12879518.0581 12880429.1227 -31.3395 -40.3869 92.9787 run6.mat -1 -1 2068 1510291 1519411 +2989011 3009691 20681 12880444.3569 12881480.4598 -32.9868 -40.3869 92.5402 run6.mat -1 -1 2068 1519564 1529905 +3009996 3030691 20696 12881495.7157 12882530.1786 -34.6382 -40.3879 92.6048 run6.mat -1 -1 2068 1530058 1540405 +3030997 3051687 20691 12882545.3632 12883579.0336 -36.288 -40.3878 92.5692 run6.mat -1 -1 2068 1540558 1550904 +3051994 3066230 14237 12883594.2736 12884305.7358 -37.9382 -40.3887 92.7478 run6.mat -1 -1 2068 1551058 1558176 +3150347 3155925 5579 12888512.9786 12888790.4563 -37.9378 -40.3867 94.7385 run6.mat -1 -1 2069 1600236 1603026 +3156272 3176929 20658 12888807.9498 12889841.7331 -39.5848 -40.3883 92.6074 run6.mat -1 -1 2069 1603199 1613528 +3177237 3197948 20712 12889857.0139 12890891.7778 -41.2322 -40.3878 92.5839 run6.mat -1 -1 2069 1613682 1624038 +3198254 3218926 20673 12890907.0808 12891941.4116 -42.8816 -40.3871 92.6146 run6.mat -1 -1 2069 1624191 1634527 +3219236 3239907 20672 12891956.7916 12892990.1115 -44.5294 -40.387 92.681 run6.mat -1 -1 2069 1634682 1645019 +3240214 3246089 5876 12893005.5884 12893297.7422 -46.1857 -40.3864 92.8583 run6.mat -1 -1 2069 1645172 1648109 +3330409 3344328 13920 12897513.6618 12898210.1512 -46.1775 -40.3874 93.1909 run6.mat -1 -1 2070 1690271 1697231 +3344653 3365348 20696 12898226.2755 12899262.8729 -47.8275 -40.3881 92.6198 run6.mat -1 -1 2070 1697393 1707741 +3365656 3386329 20674 12899278.4001 12900310.4844 -49.4743 -40.3871 92.6219 run6.mat -1 -1 2070 1707896 1718233 +3386638 3407330 20693 12900326.0621 12901362.2002 -51.1295 -40.3874 92.5452 run6.mat -1 -1 2070 1718387 1728734 +3407636 3426170 18535 12901377.6267 12902305.8013 -52.7745 -40.3882 92.7648 run6.mat -1 -1 2070 1728887 1738154 +3510225 3511429 1205 12906507.7328 12906567.9536 -52.7804 -40.3867 96.2477 run6.mat -1 -1 2071 1780183 1780785 +3511738 3532408 20671 12906583.4066 12907615.6532 -54.4244 -40.3871 92.6309 run6.mat -1 -1 2071 1780940 1791275 +3532718 3553409 20692 12907631.2782 12908665.2813 -56.0732 -40.387 92.6807 run6.mat -1 -1 2071 1791430 1801776 +3553716 3574410 20695 12908680.7582 12909715.6173 -57.7263 -40.3875 92.5492 run6.mat -1 -1 2071 1801930 1812277 +3574719 3595389 20671 12909730.9508 12910765.6544 -59.3735 -40.3882 92.6508 run6.mat -1 -1 2071 1812432 1822767 +3595695 3606029 10335 12910781.0809 12911296.4616 -61.0298 -40.388 92.8258 run6.mat -1 -1 2071 1822920 1828087 +3690288 3699649 9362 12915509.235 12915978.4773 -61.0256 -40.3875 93.4169 run6.mat -1 -1 2072 1870219 1874899 +3699972 3720651 20680 12915994.7608 12917028.3665 -62.6773 -40.3882 92.4679 run6.mat -1 -1 2072 1875061 1885401 +3720957 3741632 20676 12917043.5481 12918075.6813 -64.3237 -40.3876 92.6299 run6.mat -1 -1 2072 1885554 1895892 +3741942 3762631 20690 12918090.9303 12919127.3009 -65.9777 -40.3875 92.5231 run6.mat -1 -1 2072 1896047 1906392 +3762937 3783591 20655 12919142.4824 12920174.168 -67.6259 -40.3876 92.7435 run6.mat -1 -1 2072 1906545 1916872 +3783899 3786070 2172 12920189.6953 12920299.1428 -69.2776 -40.3867 92.6211 run6.mat -1 -1 2072 1917026 1918112 +3870160 3887690 17531 12924504.2254 12925378.9736 -69.2705 -40.3884 93.0515 run6.mat -1 -1 2073 1960158 1968924 +3887997 3908708 20712 12925394.4042 12926430.16 -70.9188 -40.3867 92.6325 run6.mat -1 -1 2073 1969077 1979434 +3909017 3929689 20673 12926445.6133 12927481.4844 -72.5701 -40.3872 92.5591 run6.mat -1 -1 2073 1979588 1989924 +3929997 3950689 20693 12927496.8903 12928529.8724 -74.2226 -40.3878 92.542 run6.mat -1 -1 2073 1990078 2000425 +3950998 3965948 14951 12928545.4501 12929293.929 -75.8641 -40.3865 92.7954 run6.mat -1 -1 2073 2000579 2008055 +4050229 4054969 4741 12933506.1393 12933743.8548 -75.8673 -40.3906 94.2894 run6.mat -1 -1 2074 2050197 2052567 +4055275 4075993 20719 12933759.2813 12934794.7251 -77.5142 -40.3874 92.5228 run6.mat -1 -1 2074 2052720 2063080 +4076298 4096971 20674 12934809.9781 12935844.4861 -79.1664 -40.388 92.5957 run6.mat -1 -1 2074 2063232 2073569 +4097279 4117969 20691 12935859.7639 12936894.0404 -80.8179 -40.3868 92.5904 run6.mat -1 -1 2074 2073723 2084068 +4118278 4138951 20674 12936909.4934 12937944.4023 -82.4634 -40.3882 92.6562 run6.mat -1 -1 2074 2084223 2094560 +4139259 4146028 6770 12937959.8028 12938298.3179 -82.4619 -38.7029 92.8721 run6.mat -1 -1 2074 2094714 2098099 +4230150 4243112 12963 12942503.8604 12943151.2271 -82.4603 -38.703 93.1685 run6.mat -1 -1 2075 2140161 2146643 +4243422 4264112 20691 12943166.8552 12944201.0873 -80.8151 -38.7049 92.4938 run6.mat -1 -1 2075 2146798 2157143 +4264420 4285080 20661 12944216.5364 12945251.4505 -79.1698 -38.7045 92.6254 run6.mat -1 -1 2075 2157297 2167627 +4285396 4306093 20698 12945267.1401 12946300.1774 -77.5169 -38.703 92.529 run6.mat -1 -1 2075 2167785 2178135 +4306399 4325928 19530 12946315.359 12947291.1018 -75.866 -38.7044 92.831 run6.mat -1 -1 2075 2178288 2188053 +4409997 4410175 179 12951496.2499 12951505.1516 -75.8502 -38.7065 103.4611 run6.mat -1 -1 2076 2230089 2230178 +4410495 4431133 20639 12951521.1546 12952553.0262 -74.2212 -38.705 92.6891 run6.mat -1 -1 2076 2230338 2240657 +4431441 4452115 20675 12952568.31 12953600.7 -72.5746 -38.7056 92.6305 run6.mat -1 -1 2076 2240811 2251149 +4452422 4473132 20711 12953616.05 12954653.7763 -70.9192 -38.7051 92.6205 run6.mat -1 -1 2076 2251303 2261658 +4473439 4494113 20675 12954669.1293 12955702.61 -69.2734 -38.7052 92.5915 run6.mat -1 -1 2076 2261811 2272149 +4494421 4505747 11327 12955717.8909 12956283.9561 -67.6263 -38.7025 92.7977 run6.mat -1 -1 2076 2272303 2277966 +4590021 4598508 8488 12960498.5586 12960921.2551 -67.6208 -38.7037 93.5242 run6.mat -1 -1 2077 2320105 2324348 +4598822 4619513 20692 12960936.9611 12961969.8199 -65.974 -38.7038 92.5405 run6.mat -1 -1 2077 2324505 2334851 +4619820 4640494 20675 12961985.1758 12963020.2588 -64.3205 -38.7028 92.6412 run6.mat -1 -1 2077 2335004 2345342 +4640799 4661494 20696 12963035.4513 12964072.4028 -62.6704 -38.7037 92.6096 run6.mat -1 -1 2077 2345495 2355843 +4661800 4682457 20658 12964087.706 12965120.3339 -61.0239 -38.7044 92.6933 run6.mat -1 -1 2077 2355996 2366325 +4682763 4685787 3025 12965135.5185 12965285.578 -59.3807 -38.7023 92.8098 run6.mat -1 -1 2077 2366478 2367990 +4769868 4786638 16771 12969490.0163 12970330.2078 -59.3736 -38.7046 93.1014 run6.mat -1 -1 2078 2410032 2418418 +4786946 4807635 20690 12970345.6137 12971378.8443 -57.7267 -38.7046 92.6393 run6.mat -1 -1 2078 2418572 2428916 +4807939 4828614 20676 12971394.1731 12972426.7672 -56.0709 -38.7039 92.5512 run6.mat -1 -1 2078 2429068 2439407 +4828921 4849604 20684 12972441.9984 12973476.1632 -54.4247 -38.7028 92.6046 run6.mat -1 -1 2078 2439560 2449902 +4849916 4865707 15792 12973491.6455 12974280.7439 -52.7784 -38.7044 92.7715 run6.mat -1 -1 2078 2450058 2457954 +4949771 4953667 3897 12978485.3304 12978679.9998 -52.7748 -38.7031 94.1485 run6.mat -1 -1 2079 2499988 2501936 +4953980 4974653 20674 12978695.5287 12979729.4322 -51.1296 -38.7031 92.5612 run6.mat -1 -1 2079 2502092 2512429 +4974962 4995674 20713 12979744.8852 12980781.0196 -49.4754 -38.7051 92.5636 run6.mat -1 -1 2079 2512584 2522940 +4995979 5016636 20658 12980796.1516 12981828.9954 -47.8277 -38.7047 92.6104 run6.mat -1 -1 2079 2523093 2533422 +5016944 5037614 20671 12981844.2762 12982876.7438 -46.1843 -38.7037 92.6765 run6.mat -1 -1 2079 2533576 2543911 +5037924 5045566 7643 12982892.3752 12983275.9411 -44.5315 -38.7047 92.9253 run6.mat -1 -1 2079 2544066 2547888 +5129824 5141924 12101 12987488.2884 12988092.1112 -44.5353 -38.7028 93.2861 run6.mat -1 -1 2080 2590018 2596069 +5142236 5162913 20678 12988107.7172 12989143.2024 -42.883 -38.7043 92.6451 run6.mat -1 -1 2080 2596224 2606563 +5163221 5183914 20694 12989158.4832 12990192.1497 -41.2349 -38.7035 92.6241 run6.mat -1 -1 2080 2606717 2617064 +5184221 5204896 20676 12990207.5056 12991242.1804 -39.5859 -38.7045 92.6221 run6.mat -1 -1 2080 2617218 2627556 +5205205 5225626 20422 12991257.5108 12992277.9718 -37.9391 -38.7052 92.6985 run6.mat -1 -1 2080 2627711 2637921 +5309713 5330018 20306 12996481.4439 12997497.7092 -36.2861 -38.7027 92.9269 run6.mat -1 -1 2081 2679967 2690120 +5330324 5350997 20674 12997513.1388 12998545.7388 -34.635 -38.7029 92.6142 run6.mat -1 -1 2081 2690273 2700609 +5351302 5372012 20711 12998560.8738 12999599.6051 -32.9854 -38.7034 92.6486 run6.mat -1 -1 2081 2700762 2711118 +5372321 5392976 20656 12999615.0583 13000646.0656 -31.3367 -38.704 92.6029 run6.mat -1 -1 2081 2711272 2721600 +5393283 5405506 12224 13000661.4185 13001273.1544 -29.6884 -38.7026 92.7882 run6.mat -1 -1 2081 2721753 2727865 +5489669 5497253 7585 13005481.0266 13005859.3546 -29.6904 -38.7049 93.9939 run6.mat -1 -1 2082 2769948 2773741 +5497565 5518240 20676 13005875.0867 13006909.2434 -28.0344 -38.7032 92.5235 run6.mat -1 -1 2082 2773897 2784234 +5518555 5539232 20678 13006924.8746 13007958.7426 -26.3865 -38.7037 92.7007 run6.mat -1 -1 2082 2784392 2794731 +5539541 5560233 20693 13007974.073 13009008.7029 -24.7372 -38.704 92.557 run6.mat -1 -1 2082 2794886 2805232 +5560541 5581196 20656 13009023.9837 13010056.6787 -23.0906 -38.7036 92.7319 run6.mat -1 -1 2082 2805386 2815714 +5581503 5585526 4024 13010071.9099 13010274.5337 -21.4338 -38.7011 92.6791 run6.mat -1 -1 2082 2815867 2817879 +5669601 5685301 15701 13014478.0063 13015263.0068 -21.4396 -38.704 93.1674 run6.mat -1 -1 2083 2859918 2867768 +5685618 5706315 20698 13015279.1323 13016312.9024 -19.7875 -38.7032 92.5198 run6.mat -1 -1 2083 2867927 2878276 +5706622 5727295 20674 13016328.3793 13017362.1588 -18.1405 -38.7046 92.6112 run6.mat -1 -1 2083 2878430 2888767 +5727602 5748294 20693 13017377.393 13018413.6158 -16.4915 -38.7039 92.6317 run6.mat -1 -1 2083 2888920 2899267 +5748601 5765405 16805 13018428.969 13019268.8328 -14.8462 -38.7048 92.7886 run6.mat -1 -1 2083 2899420 2907823 +5849589 5852599 3011 13023475.7574 13023626.6993 -14.8493 -38.7018 95.132 run6.mat -1 -1 2084 2949916 2951422 +5852913 5873594 20682 13023642.5291 13024678.6011 -13.1936 -38.7033 92.5634 run6.mat -1 -1 2084 2951579 2961919 +5873903 5894594 20692 13024693.9315 13025728.8084 -11.547 -38.7043 92.5421 run6.mat -1 -1 2084 2962074 2972420 +5894901 5915575 20675 13025744.2884 13026776.437 -9.899 -38.7047 92.5492 run6.mat -1 -1 2084 2972573 2982911 +5915881 5936554 20674 13026791.8635 13027826.1951 -8.249 -38.7047 92.6915 run6.mat -1 -1 2084 2983064 2993401 +5936862 5945466 8605 13027841.5799 13028271.3452 -6.601 -38.7029 92.7697 run6.mat -1 -1 2084 2993555 2997857 +6029583 6040703 11121 13032476.7057 13033034.0285 -6.5977 -38.7045 93.2104 run6.mat -1 -1 2085 3039918 3045478 +6041014 6061678 20665 13033049.5845 13034081.0587 -4.9462 -38.7038 92.5422 run6.mat -1 -1 2085 3045633 3055966 +6061984 6082682 20699 13034096.4852 13035129.8266 -3.297 -38.7044 92.6254 run6.mat -1 -1 2085 3056119 3066468 +6082991 6103679 20689 13035145.4043 13036180.8337 -1.6499 -38.7035 92.6511 run6.mat -1 -1 2085 3066623 3076967 +6103988 6124640 20653 13036196.1671 13037228.5825 -0.0014347 -38.7041 92.7001 run6.mat -1 -1 2085 3077121 3087448 +6124959 6125365 407 13037244.6057 13037264.9987 1.6486 -38.6943 95.9328 run6.mat -1 -1 2085 3087607 3087810 +6209616 6228944 19329 13041476.9446 13042445.6155 1.648 -38.7049 92.877 run6.mat -1 -1 2086 3129938 3139602 +6229258 6249928 20671 13042461.3188 13043494.5823 3.2987 -38.7035 92.5774 run6.mat -1 -1 2086 3139759 3150095 +6250242 6270918 20677 13043510.2231 13044545.3031 4.9444 -38.7037 92.6015 run6.mat -1 -1 2086 3150252 3160590 +6271224 6291909 20686 13044560.7296 13045593.4603 6.5977 -38.7039 92.6402 run6.mat -1 -1 2086 3160743 3171086 +6292222 6305405 13184 13045609.2428 13046267.9096 8.244 -38.7023 92.7033 run6.mat -1 -1 2086 3171243 3177834 +6389702 6396184 6483 13050482.3003 13050807.8323 8.2473 -38.7043 93.8562 run6.mat -1 -1 2087 3219985 3223226 +6396505 6417196 20692 13050823.8856 13051856.7411 9.897 -38.7038 92.5421 run6.mat -1 -1 2087 3223386 3233732 +6417503 6438175 20673 13051872.0941 13052907.8839 11.5429 -38.7026 92.6495 run6.mat -1 -1 2087 3233886 3244222 +6438484 6447630 9147 13052923.2143 13053380.7975 13.1915 -38.7039 92.6404 run6.mat -1 -1 2087 3244377 3248950 +6447880 6459175 11296 13053393.4002 13053956.7515 13.1938 -38.7055 92.469 run6.mat -1 -1 2087 3249075 3254722 +6459483 6480137 20655 13053972.282 13055005.9933 14.8436 -38.7034 92.7087 run6.mat -1 -1 2087 3254876 3265204 +6480441 6485464 5024 13055021.0786 13055270.313 16.4948 -38.7056 92.918 run6.mat -1 -1 2087 3265356 3267868 +6569775 6584577 14803 13059488.4105 13060227.2205 16.4882 -38.7046 93.1065 run6.mat -1 -1 2088 3310025 3317426 +6584889 6605576 20688 13060242.8265 13061276.6493 18.1358 -38.7039 92.646 run6.mat -1 -1 2088 3317582 3327927 +6605884 6626559 20676 13061291.9301 13062326.0432 19.7854 -38.7038 92.5251 run6.mat -1 -1 2088 3328081 3338419 +6626865 6647558 20694 13062341.4728 13063376.6333 21.4356 -38.7052 92.6317 run6.mat -1 -1 2088 3338572 3348918 +6647865 6665523 17659 13063391.8645 13064274.0117 23.0878 -38.7045 92.7688 run6.mat -1 -1 2088 3349072 3357901 +6749530 6751680 2151 13068474.1067 13068582.4955 23.0938 -38.7035 97.1181 run6.mat -1 -1 2089 3399907 3400982 +6751989 6772680 20692 13068598.0732 13069633.7852 24.7345 -38.7032 92.5549 run6.mat -1 -1 2089 3401136 3411482 +6772986 6793659 20674 13069649.0884 13070682.0369 26.3858 -38.7034 92.6068 run6.mat -1 -1 2089 3411635 3421972 +6793965 6814659 20695 13070697.3428 13071730.386 28.0365 -38.7053 92.6715 run6.mat -1 -1 2089 3422125 3432473 +6814966 6835639 20674 13071745.8629 13072781.2471 29.6879 -38.7035 92.6543 run6.mat -1 -1 2089 3432626 3442963 +6835944 6845425 9482 13072796.379 13073270.7787 31.3344 -38.7063 92.8428 run6.mat -1 -1 2089 3443116 3447857 +6929501 6939767 10267 13077473.0408 13077986.5317 31.3382 -38.704 93.3137 run6.mat -1 -1 2090 3489896 3495029 +6940080 6960759 20680 13078002.1011 13079038.3099 32.9874 -38.7053 92.5983 run6.mat -1 -1 2090 3495186 3505526 +6961066 6981742 20677 13079053.6628 13080084.3846 34.6352 -38.7034 92.687 run6.mat -1 -1 2090 3505679 3516018 +6982050 7002741 20692 13080099.9119 13081135.5116 36.2854 -38.7038 92.6192 run6.mat -1 -1 2090 3516172 3526518 +7003048 7023720 20673 13081151.0504 13082185.6064 37.936 -38.7044 92.6511 run6.mat -1 -1 2090 3526671 3537008 +7024026 7025303 1278 13082201.0329 13082265.2946 39.587 -38.6969 93.0109 run6.mat -1 -1 2090 3537161 3537799 +7109555 7128002 18448 13086477.0288 13087397.573 39.5807 -38.7052 93.0422 run6.mat -1 -1 2091 3579927 3589151 +7128323 7149021 20699 13087413.6261 13088449.4728 41.2304 -38.7044 92.5541 run6.mat -1 -1 2091 3589311 3599661 +7149328 7170001 20674 13088464.707 13089498.3592 42.8774 -38.7052 92.6104 run6.mat -1 -1 2091 3599815 3610151 +7170309 7190979 20671 13089513.64 13090548.2018 44.5322 -38.705 92.5535 run6.mat -1 -1 2091 3610305 3620641 +7191289 7205344 14056 13090563.7048 13091264.9933 46.1727 -38.7039 92.7763 run6.mat -1 -1 2091 3620796 3627824 +7289651 7295418 5768 13095480.5386 13095767.7438 46.1773 -38.7029 94.2602 run6.mat -1 -1 2092 3669979 3672863 +7295731 7316421 20691 13095783.2727 13096820.9542 47.8237 -38.7059 92.5216 run6.mat -1 -1 2092 3673019 3683365 +7316725 7337402 20678 13096836.1601 13097871.4145 49.4725 -38.7053 92.6702 run6.mat -1 -1 2092 3683517 3693855 +7337709 7358418 20710 13097886.5191 13098920.1714 51.1262 -38.7049 92.6209 run6.mat -1 -1 2092 3694009 3704364 +7358727 7379385 20659 13098935.7491 13099969.1228 52.7721 -38.7043 92.6633 run6.mat -1 -1 2092 3704519 3714848 +7379701 7385402 5702 13099985.0534 13100270.8837 54.4237 -38.7064 92.7304 run6.mat -1 -1 2092 3715006 3717856 +7469737 7483725 13989 13104486.393 13105185.272 54.4272 -38.7041 93.0886 run6.mat -1 -1 2093 3760026 3767020 +7484046 7504741 20696 13105201.3251 13106236.3279 56.0711 -38.7033 92.6435 run6.mat -1 -1 2093 3767181 3777529 +7505049 7525721 20673 13106251.7309 13107285.5874 57.7268 -38.7041 92.6015 run6.mat -1 -1 2093 3777683 3788019 +7526027 7546720 20694 13107300.8904 13108335.6743 59.374 -38.7044 92.6195 run6.mat -1 -1 2093 3788172 3798519 +7547028 7565523 18496 13108351.1985 13109275.5312 61.0235 -38.7034 92.7749 run6.mat -1 -1 2093 3798673 3807921 +7649605 7650823 1219 13113479.1789 13113540.5824 61.0184 -38.7052 97.321 run6.mat -1 -1 2094 3849964 3850573 +7651147 7671800 20654 13113556.9163 13114590.0133 62.6718 -38.7043 92.589 run6.mat -1 -1 2094 3850735 3861062 +7672108 7692801 20694 13114605.5438 13115640.7497 64.3233 -38.7043 92.5862 run6.mat -1 -1 2094 3861216 3871563 +7693107 7713784 20678 13115655.8397 13116688.8702 65.9741 -38.7029 92.5279 run6.mat -1 -1 2094 3871716 3882055 +7714099 7734762 20664 13116704.4983 13117737.0524 67.6204 -38.7031 92.7131 run6.mat -1 -1 2094 3882213 3892544 +7735068 7745382 10315 13117752.4758 13118267.4239 69.2708 -38.7056 92.7021 run6.mat -1 -1 2094 3892697 3897855 +7829535 7838964 9430 13122476.2641 13122946.0779 69.2721 -38.7033 93.3743 run6.mat -1 -1 2095 3939933 3944647 +7839274 7859959 20686 13122961.7092 13123995.8845 70.9159 -38.7047 92.5603 run6.mat -1 -1 2095 3944802 3955145 +7860265 7880945 20681 13124011.1909 13125047.0792 72.5682 -38.7036 92.6184 run6.mat -1 -1 2095 3955298 3965639 +7881250 7901941 20692 13125062.5168 13126097.1494 74.2135 -38.7054 92.6046 run6.mat -1 -1 2095 3965792 3976138 +7902248 7922907 20660 13126112.3806 13127143.4085 75.8659 -38.7039 92.7188 run6.mat -1 -1 2095 3976291 3986621 +7923214 7925342 2129 13127158.6427 13127265.5185 77.5116 -38.7063 93.5822 run6.mat -1 -1 2095 3986775 3987839 +8009593 8027309 17717 13131479.2894 13132366.2641 77.5124 -38.7046 93.1557 run6.mat -1 -1 2096 4029966 4038824 +8027632 8048302 20671 13132382.2891 13133415.3509 79.165 -38.7048 92.5469 run6.mat -1 -1 2096 4038986 4049321 +8048609 8069303 20695 13133430.831 13134463.9736 80.8118 -38.7036 92.5566 run6.mat -1 -1 2096 4049475 4059822 +8069610 8089936 20327 13134479.4505 13135497.5461 82.4618 -38.7037 92.5901 run6.mat -1 -1 2096 4059976 4070139 +306023 306079 57 365661.4375 365664.2164 41.2313 0.026456 10.6137 run60.mat 1 3 2098 60870 60879 +306330 306620 291 365676.6717 365691.0623 41.2308 -0.011299 9.1314 run60.mat 1 3 2098 60921 60970 +307147 307447 301 365717.2136 365732.2028 41.2389 0.032265 8.2 run60.mat 1 3 2098 61057 61108 +307753 308026 274 365747.5059 365761.1588 41.1953 -0.011907 7.9238 run60.mat 1 3 2098 61159 61204 +308402 308950 549 365779.9627 365807.3684 41.2288 -0.040553 7.9274 run60.mat 1 3 2098 61267 61358 +309200 312969 3770 365819.871 366008.758 41.2302 0.00012356 7.8789 run60.mat 1 3 2098 61400 62028 +313220 319692 6473 366021.4118 366346.5765 41.2267 -0.0038916 7.6868 run60.mat 1 3 2098 62070 63148 +319951 322350 2400 366359.5289 366479.4625 41.2275 -0.0013057 7.4711 run60.mat 1 3 2098 63191 63592 +322749 326631 3883 366499.3412 366692.7477 41.2303 -0.0081968 7.5026 run60.mat 1 3 2098 63658 64305 +326969 327620 652 366709.5873 366742.2827 41.2234 -0.02002 7.7072 run60.mat 1 3 2098 64362 64470 +327894 336552 8659 366756.096 367189.0415 41.2232 -0.0048522 7.22 run60.mat 1 3 2098 64516 65958 +336890 340632 3743 367205.8107 367394.2638 41.222 -0.00089553 7.3817 run60.mat 1 3 2098 66015 66638 +340990 347771 6782 367412.3154 367749.9062 41.2255 -0.011658 7.0962 run60.mat 1 3 2098 66698 67828 +348021 348292 272 367762.4088 367775.9617 41.2275 -0.0063764 7.3036 run60.mat 1 3 2098 67870 67915 +348630 351632 3003 367792.8652 367942.9965 41.2293 0.010458 6.7568 run60.mat 1 3 2098 67971 68472 +351970 352830 861 367959.9 368002.9165 41.2395 -0.00060136 6.5109 run60.mat 1 3 2098 68528 68671 +353112 356172 3061 368017.0219 368170.0808 41.2257 -0.0055643 6.5043 run60.mat 1 3 2098 68718 69228 +356510 356571 62 368186.9873 368190.0385 41.152 -0.012755 7.3646 run60.mat 1 3 2098 69285 69295 +356835 360502 3668 368203.2436 368385.3106 41.2249 0.001585 7.1009 run60.mat 1 3 2098 69339 69950 +360824 361522 699 368401.286 368435.9159 41.2233 -0.014123 7.6754 run60.mat 1 3 2098 70004 70120 +361845 362391 547 368451.9409 368479.1771 41.2069 -0.010108 7.5002 run60.mat 1 3 2098 70174 70265 +362641 366606 3966 368491.783 368691.7124 41.2266 0.00074584 7.3256 run60.mat 1 3 2098 70307 70968 +366862 366967 106 368704.6208 368709.9153 41.2499 0.0076393 7.7696 run60.mat 1 3 2098 71011 71028 +367237 371065 3829 368723.4729 368913.3915 41.2178 -0.0011079 7.3264 run60.mat 1 3 2098 71073 71711 +371327 376717 5391 368926.3902 369197.4148 41.224 -0.0066102 7.3281 run60.mat 1 3 2098 71755 72653 +377035 377407 373 369213.4463 369232.1025 41.2208 -0.033142 7.4836 run60.mat 1 3 2098 72706 72768 +377722 379479 1758 369247.8558 369335.7241 41.2191 0.012424 7.3224 run60.mat 1 3 2098 72820 73113 +379794 382618 2825 369351.4774 369492.4469 41.223 -0.02046 7.3562 run60.mat 1 3 2098 73166 73637 +383190 383890 701 369520.8256 369555.5547 41.2276 0.0094371 7.1542 run60.mat 1 3 2098 73732 73849 +384198 387652 3455 369570.8355 369742.4625 41.2272 -0.0039275 7.355 run60.mat 1 3 2098 73900 74476 +387990 388672 683 369759.369 369793.4821 41.2189 -0.004159 7.3284 run60.mat 1 3 2098 74532 74646 +389010 389458 449 369810.3886 369832.7972 41.1996 -0.003128 7.6309 run60.mat 1 3 2098 74702 74777 +389755 393652 3898 369847.6529 370043.1498 41.2263 -0.013515 7.3535 run60.mat 1 3 2098 74826 75475 +393990 394688 699 370060.1896 370095.3781 41.2275 -0.01229 7.6789 run60.mat 1 3 2098 75532 75648 +395009 395800 792 370111.5608 370151.4378 41.2236 -0.017292 7.4672 run60.mat 1 3 2098 75702 75834 +396114 399015 2902 370167.2676 370312.0321 41.2284 0.00019053 7.4203 run60.mat 1 3 2098 75886 76370 +399276 401888 2613 370324.9811 370454.5704 41.2267 -0.0015712 7.3264 run60.mat 1 3 2098 76413 76849 +467989 469292 1304 373761.2203 373825.866 41.2363 0.02964 10.1802 run60.mat 1 3 2099 87866 88083 +469630 474448 4819 373842.6352 374082.9722 41.2279 0.0059166 10.1143 run60.mat 1 3 2099 88139 88942 +474715 474961 247 374096.4325 374108.8342 41.2321 0.0099412 10.1639 run60.mat 1 3 2099 88987 89028 +475211 475709 499 374121.4376 374146.5435 41.2316 -0.027411 10.1888 run60.mat 1 3 2099 89069 89152 +475968 480178 4211 374159.6005 374370.875 41.2224 0.0099444 9.838 run60.mat 1 3 2099 89196 89897 +480444 489531 9088 374384.1777 374836.6368 41.2279 -0.0014906 10.0009 run60.mat 1 3 2099 89941 91456 +489785 498138 8354 374849.3417 375269.0095 41.2247 0.0054803 9.3895 run60.mat 1 3 2099 91498 92891 +498396 502401 4006 375281.8097 375480.5098 41.2195 0.0031466 8.8756 run60.mat 1 3 2099 92934 93601 +502651 504664 2014 375492.9131 375594.2836 41.2217 0.0081354 8.9674 run60.mat 1 3 2099 93642 93978 +504921 506861 1941 375607.2424 375705.0641 41.2163 -0.0016583 8.8591 run60.mat 1 3 2099 94021 94345 +507189 508511 1323 375721.6031 375787.9571 41.2282 -0.028544 8.7346 run60.mat 1 3 2099 94399 94620 +509023 510126 1104 375813.562 375868.7226 41.2306 0.00071455 8.3775 run60.mat 1 3 2099 94705 94889 +510442 513145 2704 375884.5257 376019.6327 41.2296 0.0017083 8.0954 run60.mat 1 3 2099 94941 95392 +513715 516530 2816 376047.9121 376187.5727 41.2252 -0.010753 8.2381 run60.mat 1 3 2099 95487 95956 +516785 518802 2018 376200.2241 376300.9274 41.2302 -0.00037078 8.1934 run60.mat 1 3 2099 95998 96335 +519114 519652 539 376316.6564 376343.7788 41.2161 -0.022947 7.6425 run60.mat 1 3 2099 96387 96476 +519990 525712 5723 376360.8185 376647.1155 41.2263 0.0040365 7.7116 run60.mat 1 3 2099 96533 97486 +526050 527459 1410 376663.8881 376733.8067 41.2227 0.012822 7.5808 run60.mat 1 3 2099 97543 97777 +527772 532577 4806 376749.3386 376987.7765 41.2291 -0.006925 7.1265 run60.mat 1 3 2099 97829 98630 +532831 534204 1374 377000.3807 377069.4291 41.2325 0.00011358 7.202 run60.mat 1 3 2099 98673 98902 +534514 536233 1720 377085.0573 377171.7179 41.2293 0.0055051 7.23 run60.mat 1 3 2099 98953 99240 +536499 539328 2830 377185.1278 377327.4802 41.2283 0.0093539 6.7496 run60.mat 1 3 2099 99285 99756 +539602 540147 546 377341.2382 377368.6035 41.2602 0.0031747 6.4802 run60.mat 1 3 2099 99802 99893 +540460 542084 1625 377384.3197 377465.8634 41.227 0.0012397 6.9273 run60.mat 1 3 2099 99945 100215 +542343 543403 1061 377478.8682 377532.0519 41.2312 -0.023482 6.3259 run60.mat 1 3 2099 100258 100435 +543714 544228 515 377547.6049 377573.3099 41.212 0.012363 5.9799 run60.mat 1 3 2099 100487 100573 +544484 545479 996 377586.1123 377635.8719 41.2204 0.018132 6.5927 run60.mat 1 3 2099 100615 100781 +545873 546412 540 377655.5757 377682.5309 41.245 -0.032355 7.1708 run60.mat 1 3 2099 100847 100937 +546683 546810 128 377696.0835 377702.4347 41.271 0.01534 7.6771 run60.mat 1 3 2099 100982 101003 +547271 548549 1279 377725.4891 377789.4015 41.2294 -0.0038676 6.4216 run60.mat 1 3 2099 101080 101293 +548805 550948 2144 377802.2042 377909.3765 41.2292 -0.0025383 6.5703 run60.mat 1 3 2099 101336 101693 +551391 551952 562 377931.5312 377959.587 41.208 -0.0035146 6.6828 run60.mat 1 3 2099 101766 101860 +552342 552770 429 377979.0911 378000.4955 41.2321 -0.016162 6.3295 run60.mat 1 3 2099 101925 101996 +553384 554001 618 378031.2018 378062.0577 41.214 -0.0014702 6.4142 run60.mat 1 3 2099 102098 102201 +554473 554674 202 378085.6622 378095.7142 41.2496 -0.017126 6.2908 run60.mat 1 3 2099 102280 102313 +554992 555971 980 378111.6172 378160.5766 41.215 0.0080058 6.4569 run60.mat 1 3 2099 102366 102530 +556290 556479 190 378176.5297 378185.9815 41.2071 -0.064755 6.7847 run60.mat 1 3 2099 102583 102614 +556792 557332 541 378201.6345 378228.6397 41.2593 -0.04552 6.045 run60.mat 1 3 2099 102667 102757 +557686 557861 176 378246.3431 378255.0948 41.2249 -0.039251 6.0276 run60.mat 1 3 2099 102816 102845 +558354 559480 1127 378279.7496 378335.6423 41.2295 0.02046 5.9586 run60.mat 1 3 2099 102927 103115 +560398 560435 38 378381.1961 378383.0322 41.2877 0.10059 5.5814 run60.mat 1 3 2099 103268 103274 +560701 561004 304 378396.2318 378411.2676 41.2359 -0.0063631 5.8641 run60.mat 1 3 2099 103318 103369 +561329 561680 352 378427.395 378444.8126 41.2513 0.0023704 6.0851 run60.mat 1 3 2099 103423 103482 +561941 561952 12 378457.7642 378458.31 41.0954 0.030859 4.4934 run60.mat 1 3 2099 103525 103527 +562290 563251 962 378475.0826 378522.7701 41.2277 -0.012532 6.2202 run60.mat 1 3 2099 103583 103743 +563501 563570 70 378535.2271 378538.7063 41.1998 0.036244 8.206 run60.mat 1 3 2099 103785 103797 +563881 564001 121 378554.3881 378560.4389 41.2024 0.1405 7.5496 run60.mat 1 3 2099 103848 103868 +629986 631448 1463 381860.7497 381934.4541 41.2344 0.022227 8.6912 run60.mat 1 3 2100 114867 115110 +631709 631761 53 381947.612 381950.2335 41.2182 -0.063687 8.5271 run60.mat 1 3 2100 115154 115162 +632011 632315 305 381962.8369 381978.1625 41.2527 -0.0021901 8.031 run60.mat 1 3 2100 115204 115255 +700198 700920 723 385371.296 385407.6945 41.2276 0.028881 10.6823 run60.mat 11 3 2101 126569 126689 +701174 729221 28048 385420.4995 386820.6955 41.2248 -0.0040918 9.7295 run60.mat 11 3 2101 126732 131406 +729471 740369 10899 386833.1012 387379.8718 41.2222 -0.003476 9.7743 run60.mat 11 3 2101 131448 133264 +740622 746021 5400 387392.4264 387661.0944 41.225 -0.0029337 9.7997 run60.mat 11 3 2101 133306 134206 +746271 755565 9295 387673.6977 388139.7209 41.2302 -0.00029376 9.7205 run60.mat 11 3 2101 134248 135797 +755876 757965 2090 388155.1536 388258.8158 41.2239 0.012361 9.7691 run60.mat 11 3 2101 135849 136197 +758272 773570 15299 388274.05 389038.5214 41.2275 1.7362e-05 9.7476 run60.mat 11 3 2101 136248 138798 +773833 784371 10539 389051.6764 389579.0151 41.2244 -0.0086818 9.7644 run60.mat 11 3 2101 138842 140598 +784674 796276 11603 389594.0478 390176.5838 41.2247 -0.0037002 9.7635 run60.mat 11 3 2101 140649 142582 +862256 874318 12063 393473.0171 394076.237 41.2271 -0.00028087 9.8296 run60.mat 11 3 2102 153579 155590 +874586 896783 22198 394089.6395 395201.4945 41.2257 -0.0011717 9.7559 run60.mat 11 3 2102 155634 159334 +964661 976290 11630 398593.8708 399175.1154 41.2264 0.0026177 10.9951 run60.mat 21 3 2103 170647 172586 +976545 981714 5170 399187.8703 399446.4099 41.2259 0.0030545 11.0031 run60.mat 21 3 2103 172629 173490 +982031 998558 16528 399462.2629 400290.8561 41.2244 -0.0039074 10.9686 run60.mat 21 3 2103 173543 176298 +998814 1060716 61903 400303.661 403398.4964 41.2262 -0.0016261 10.9583 run60.mat 21 3 2103 176341 186657 +1128721 1135339 6619 406797.7503 407128.1642 41.2233 -0.0023159 11.0916 run60.mat 21 3 2104 197993 199095 +1203036 1299095 96060 410514.7848 415315.5709 41.2266 -0.0044613 9.9985 run60.mat 31 3 2105 210379 226389 +1367100 1373748 6649 418717.7457 419048.7947 41.2249 -0.0042838 10.1221 run60.mat 31 3 2106 237724 238832 +1441454 1537475 96022 422434.5806 427237.7456 41.2268 -0.004104 9.2724 run60.mat 41 3 2107 250117 266121 +1605510 1612278 6769 430637.3745 430977.6281 41.224 -0.0058744 9.3272 run60.mat 41 3 2108 277461 278589 +1681716 1777694 95979 434448.0474 439247.4287 41.2267 -0.0035784 8.7068 run60.mat 51 3 2109 290162 306159 +1847636 1854447 6812 442742.8829 443087.38 41.2228 -0.0037388 8.7654 run60.mat 51 3 2110 317817 318952 +1924017 2019994 95978 446563.7039 451361.1587 41.2264 -0.0040441 8.2437 run60.mat 61 3 2111 330548 346544 +2088095 2094865 6771 454767.0512 455105.6441 41.2235 -0.0021291 8.3134 run60.mat 61 3 2112 357895 359023 +2164242 2260234 95993 458575.9659 463376.2904 41.2282 -0.0040113 7.8597 run60.mat 71 3 2113 370587 386586 +2330211 2337003 6793 466873.5756 467211.9629 41.224 -0.0061302 7.8975 run60.mat 71 3 2114 398249 399381 +2406385 2502373 95989 470682.6953 475482.1675 41.2262 -0.0028758 7.5313 run60.mat 81 3 2115 410946 426945 +2572516 2579284 6769 478990.3024 479328.0476 41.226 -0.0034249 7.5388 run60.mat 81 3 2116 438636 439764 +2648678 2697236 48559 482796.4221 485222.94 41.225 -0.0034663 7.2445 run60.mat 91 3 2117 451330 459423 +2697488 2738666 41179 485235.5448 487296.8144 41.2255 -0.0045653 7.2491 run60.mat 91 3 2117 459465 466328 +2738996 2744673 5678 487313.2555 487596.4166 41.2262 -0.00275 7.247 run60.mat 91 3 2117 466383 467330 +2814566 2821373 6808 491092.2464 491433.2606 41.2234 -0.0050138 7.2539 run60.mat 91 3 2118 478979 480113 +2890738 2907113 16376 494899.6803 495718.0192 41.2264 -0.0023073 6.9959 run60.mat 101 3 2119 491675 494404 +2907426 2921836 14411 495733.5481 496455.7798 41.2302 -0.0034764 7.0005 run60.mat 101 3 2119 494456 496858 +2922141 2974457 52317 496471.0327 499088.2949 41.2296 -0.0024457 6.9995 run60.mat 101 3 2119 496909 505629 +2974707 2979007 4301 499100.6982 499314.0345 41.2269 0.0012379 7.0048 run60.mat 101 3 2119 505671 506387 +2979334 2983809 4476 499330.2612 499552.3235 41.2248 -0.0072078 7.0012 run60.mat 101 3 2119 506442 507187 +2984128 2986713 2586 499568.2513 499698.5699 41.2247 -0.002216 7.0665 run60.mat 101 3 2119 507240 507671 +3054830 3061610 6781 503104.2043 503443.2922 41.2261 -0.007235 7.0001 run60.mat 101 3 2120 519025 520155 +3131036 3137975 6940 506916.4611 507262.2398 41.2256 -0.0021457 6.8068 run60.mat 111 3 2121 531726 532883 +3138230 3180527 42298 507274.8936 509389.953 41.229 -0.0023061 6.7724 run60.mat 111 3 2121 532925 539976 +3180848 3191046 10199 509406.1357 509914.1295 41.228 -0.0023765 6.7753 run60.mat 111 3 2121 540029 541728 +3191363 3210269 18907 509930.1138 510877.9135 41.2269 -0.0038485 6.7879 run60.mat 111 3 2121 541781 544933 +3210581 3216261 5681 510893.3927 511176.3578 41.2277 -0.0058833 6.7833 run60.mat 111 3 2121 544985 545931 +3216608 3218206 1599 511193.8548 511274.4316 41.2293 0.0061537 6.7394 run60.mat 111 3 2121 545989 546255 +3218531 3220162 1632 511290.8193 511372.9036 41.2249 -0.01727 6.8097 run60.mat 111 3 2121 546309 546581 +3220493 3226986 6494 511389.4568 511714.1693 41.2358 -0.0042368 6.7725 run60.mat 111 3 2121 546637 547719 +3297129 3303940 6812 515219.7095 515558.9344 41.227 -0.0093899 6.7951 run60.mat 111 3 2122 559410 560545 +3373137 3384517 11381 519020.6762 519590.2402 41.2252 -0.0052931 6.5984 run60.mat 121 3 2123 572078 573975 +3384767 3447937 63171 519602.6459 522759.6941 41.2284 -0.0028498 6.5757 run60.mat 121 3 2123 574017 584546 +3448188 3469129 20942 522772.2489 523821.5641 41.2264 -0.0017991 6.5902 run60.mat 121 3 2123 584587 588078 +3539277 3546097 6821 527328.1783 527670.0187 41.224 -0.0062255 6.6151 run60.mat 121 3 2124 599769 600906 +3615460 3709307 93848 531138.1377 535828.6511 41.2276 -0.0021149 6.4042 run60.mat 131 3 2125 612467 628109 +3709557 3711412 1856 535841.0544 535933.0865 41.2254 0.0013996 6.4119 run60.mat 131 3 2125 628151 628460 +3781386 3788252 6867 539433.5815 539778.5557 41.2243 -0.0011431 6.4397 run60.mat 131 3 2126 640123 641267 +3857566 3890437 32872 543241.7124 544885.3306 41.2291 -0.0055798 6.2407 run60.mat 141 3 2127 652820 658299 +3890741 3906085 15345 544900.413 545671.187 41.2279 -0.0028936 6.2417 run60.mat 141 3 2127 658349 660907 +3906338 3911445 5108 545683.8394 545937.7645 41.2314 -0.0038748 6.2538 run60.mat 141 3 2127 660949 661800 +3911700 3936917 25218 545950.4231 547211.1889 41.2242 -0.0039922 6.2412 run60.mat 141 3 2127 661843 666046 +3937167 3939726 2560 547223.6913 547351.0103 41.2329 -0.0063278 6.2425 run60.mat 141 3 2127 666087 666514 +3939977 3953530 13554 547363.4632 548041.8007 41.2266 -0.0028569 6.2538 run60.mat 141 3 2127 666556 668815 +4023674 4030556 6883 551547.5076 551892.3442 41.2189 -0.001184 6.2657 run60.mat 141 3 2128 680506 681653 +4099833 4106399 6567 555354.7631 555683.3347 41.2257 -0.0023475 6.1129 run60.mat 148.5537 3 2129 693200 694294 +4106649 4118588 11940 555695.7404 556293.1183 41.2268 -0.0015972 6.0917 run60.mat 151 3 2129 694335 696325 +4118839 4163588 44750 556305.701 558543.8231 41.2283 -0.0030117 6.0932 run60.mat 151 3 2129 696367 703826 +4163839 4172586 8748 558556.4769 558994.2056 41.2264 -0.00089433 6.1017 run60.mat 151 3 2129 703868 705325 +4172842 4195771 22930 559006.9091 560153.3716 41.227 -0.0034626 6.1006 run60.mat 151 3 2129 705368 709190 +4265818 4272695 6878 563655.7161 563999.6699 41.216 -0.0018194 6.1023 run60.mat 151 3 2130 720865 722011 +4344024 4430038 86015 567567.1099 571866.0597 41.2281 -0.0026273 5.9538 run60.mat 161 3 2131 733900 748236 +4430290 4439971 9682 571878.7664 572362.8306 41.229 -0.0031723 5.9647 run60.mat 161 3 2131 748278 749892 +4509937 4516812 6876 575862.9303 576204.8194 41.2213 -0.002861 5.967 run60.mat 161 3 2132 761554 762699 +4587932 4683891 95960 579761.1808 584558.4061 41.2272 -0.0028408 5.8288 run60.mat 171 3 2133 774553 790547 +4754033 4760920 6888 588066.5122 588409.6761 41.2189 -0.0044629 5.8288 run60.mat 171 3 2134 802238 803386 +4832063 4928026 95964 591968.2061 596768.7725 41.2275 -0.0027938 5.7106 run60.mat 181 3 2135 815243 831238 +4998195 5005080 6886 600276.4554 600619.6573 41.2244 -0.0038719 5.7201 run60.mat 181 3 2136 842933 844081 +5076281 5172209 95929 604180.5723 608977.9698 41.2271 -0.0027356 5.6012 run60.mat 191 3 2137 855948 871937 +5244286 5251205 6920 612580.4117 612928.0709 41.2224 -0.0034942 5.6198 run60.mat 191 3 2138 883951 885103 +5322506 5415990 93485 616494.0742 621167.1943 41.2263 -0.0024347 5.4576 run60.mat 201 3 2139 896987 912569 +5416241 5418429 2189 621179.6472 621288.2004 41.2348 -0.003391 5.4831 run60.mat 201 3 2139 912611 912976 +5488610 5495546 6937 624799.0576 625145.1016 41.2277 -0.0029145 5.4789 run60.mat 201 3 2140 924673 925829 +5566864 5662749 95886 628711.3794 633504.7472 41.2278 -0.0021608 5.3249 run60.mat 211 3 2141 937716 953697 +5734813 5741759 6947 637110.568 637456.3147 41.2265 -0.0028221 5.348 run60.mat 211 3 2142 965708 966866 +5813096 5908949 95854 641023.1143 645814.6739 41.228 -0.0022339 5.2012 run60.mat 221 3 2143 978756 994732 +5981012 5987931 6920 649417.1512 649763.9119 41.2297 -0.002536 5.209 run60.mat 221 3 2144 1006743 1007896 +284309 304699 20391 13238895.6297 13239918.382 82.462 -37.0193 92.7121 run7.mat -1 -1 2146 159529 169724 +305004 325714 20711 13239933.6349 13240969.4418 80.816 -37.0206 92.5011 run7.mat -1 -1 2146 169877 180232 +326021 346713 20693 13240984.7948 13242017.653 79.163 -37.0212 92.6187 run7.mat -1 -1 2146 180386 190732 +347023 367717 20695 13242033.156 13243066.5583 77.5127 -37.0201 92.5543 run7.mat -1 -1 2146 190887 201234 +368026 380092 12067 13243082.1392 13243685.6046 75.8597 -37.0194 92.7162 run7.mat -1 -1 2146 201389 207422 +464401 472016 7616 13247901.7458 13248281.5997 75.8579 -37.0197 93.188 run7.mat -1 -1 2147 249579 253386 +472338 493018 20681 13248297.7057 13249332.0094 74.2171 -37.0203 92.5416 run7.mat -1 -1 2147 253547 263888 +493327 514017 20691 13249347.4624 13250382.6925 72.5664 -37.0203 92.5506 run7.mat -1 -1 2147 264043 274388 +514327 535017 20691 13250397.9446 13251432.5864 70.9155 -37.021 92.597 run7.mat -1 -1 2147 274543 284888 +535326 555980 20655 13251448.1641 13252479.9387 69.2683 -37.0208 92.6733 run7.mat -1 -1 2147 285043 295370 +556285 560171 3887 13252495.1919 13252690.7856 67.6232 -37.0239 92.7273 run7.mat -1 -1 2147 295523 297466 +644192 660055 15864 13256891.2432 13257685.0343 67.6217 -37.0197 93.0758 run7.mat -1 -1 2148 339478 347410 +660379 681059 20681 13257701.3682 13258735.2997 65.9705 -37.0204 92.6295 run7.mat -1 -1 2148 347572 357912 +681364 702041 20678 13258750.4316 13259785.5949 64.3194 -37.0203 92.5942 run7.mat -1 -1 2148 358065 368404 +702347 723059 20713 13259801.0214 13260833.2139 62.6725 -37.0206 92.6343 run7.mat -1 -1 2148 368557 378914 +723365 740011 16647 13260848.6116 13261683.9688 61.0251 -37.021 92.6957 run7.mat -1 -1 2148 379067 387390 +824332 827495 3164 13265897.5729 13266057.0304 61.0294 -37.0162 95.6526 run7.mat -1 -1 2149 429552 431134 +827817 848498 20682 13266073.2636 13267105.75 59.3758 -37.0208 92.5188 run7.mat -1 -1 2149 431295 441636 +848805 869498 20694 13267121.1029 13268158.7245 57.729 -37.0203 92.5852 run7.mat -1 -1 2149 441789 452136 +869803 890476 20674 13268173.8565 13269204.9387 56.0761 -37.02 92.6238 run7.mat -1 -1 2149 452289 462625 +890784 911458 20675 13269220.4691 13270254.7067 54.4272 -37.0198 92.5876 run7.mat -1 -1 2149 462779 473117 +911766 920111 8346 13270270.2372 13270688.3656 52.7774 -37.0193 92.8131 run7.mat -1 -1 2149 473271 477444 +1004345 1015716 11372 13274900.1543 13275468.8648 52.7784 -37.0213 93.3197 run7.mat -1 -1 2150 519563 525248 +1016044 1036717 20674 13275485.2682 13276518.2362 51.1276 -37.0203 92.5968 run7.mat -1 -1 2150 525412 535749 +1037025 1057717 20693 13276533.52 13277569.4816 49.4782 -37.0189 92.5461 run7.mat -1 -1 2150 535904 546250 +1058027 1078699 20673 13277584.9848 13278616.4271 47.824 -37.0199 92.6297 run7.mat -1 -1 2150 546405 556741 +1079008 1099659 20652 13278632.0048 13279664.1926 46.1793 -37.0203 92.7313 run7.mat -1 -1 2150 556896 567222 +1099968 1100130 163 13279679.7703 13279687.9373 44.5215 -37.0308 92.9194 run7.mat -1 -1 2150 567376 567457 +1184203 1203877 19675 13283894.1643 13284874.8226 44.5271 -37.0196 92.9714 run7.mat -1 -1 2151 609496 619333 +1204204 1224881 20678 13284891.046 13285927.8475 42.875 -37.0209 92.628 run7.mat -1 -1 2151 619497 629835 +1225189 1245863 20675 13285943.2248 13286975.4135 41.2264 -37.0201 92.5275 run7.mat -1 -1 2151 629989 640327 +1246175 1266860 20686 13286991.1456 13288026.6415 39.5785 -37.02 92.5614 run7.mat -1 -1 2151 640483 650825 +1267166 1279971 12806 13288041.8261 13288683.1435 37.9312 -37.0202 92.9365 run7.mat -1 -1 2151 650978 657382 +1364281 1371276 6996 13292896.1039 13293246.8569 37.9307 -37.0212 93.74 run7.mat -1 -1 2152 699539 703036 +1371600 1392281 20682 13293263.1875 13294296.2003 36.2845 -37.0205 92.5113 run7.mat -1 -1 2152 703198 713539 +1392587 1413279 20693 13294311.7629 13295346.2729 34.6323 -37.0204 92.6545 run7.mat -1 -1 2152 713692 724039 +1413589 1434277 20689 13295361.6529 13296396.0695 32.9837 -37.02 92.5381 run7.mat -1 -1 2152 724194 734538 +1434585 1455243 20659 13296411.3533 13297445.761 31.3396 -37.0198 92.7295 run7.mat -1 -1 2152 734692 745022 +1455549 1460070 4522 13297461.1875 13297685.8025 29.6858 -37.0221 92.9548 run7.mat -1 -1 2152 745175 747435 +1544105 1559338 15234 13301888.2644 13302650.073 29.6916 -37.0205 93.0738 run7.mat -1 -1 2153 789454 797071 +1559656 1580340 20685 13302665.85 13303701.5895 28.0351 -37.0198 92.6186 run7.mat -1 -1 2153 797230 807573 +1580647 1601339 20693 13303716.9427 13304748.7816 26.3881 -37.0202 92.5493 run7.mat -1 -1 2153 807726 818073 +1601646 1622321 20676 13304764.2445 13305800.1571 24.739 -37.0212 92.6493 run7.mat -1 -1 2153 818226 828564 +1622629 1639889 17261 13305815.5601 13306676.8053 23.0884 -37.022 92.7107 run7.mat -1 -1 2153 828718 837349 +1724095 1726619 2525 13310888.4632 13311013.6864 23.0918 -37.0179 95.8252 run7.mat -1 -1 2154 879454 880716 +1726925 1747618 20694 13311028.868 13312065.5043 21.4348 -37.0217 92.5752 run7.mat -1 -1 2154 880869 891216 +1747927 1768619 20693 13312080.8347 13313114.0635 19.787 -37.0203 92.6491 run7.mat -1 -1 2154 891370 901717 +1768927 1789620 20694 13313129.4664 13314163.2458 18.1397 -37.0199 92.5723 run7.mat -1 -1 2154 901871 912218 +1789926 1810601 20676 13314178.6723 13315212.9534 16.4867 -37.0197 92.6381 run7.mat -1 -1 2154 912371 922708 +1810909 1819989 9081 13315228.4807 13315682.2775 14.8434 -37.0207 92.7111 run7.mat -1 -1 2154 922862 927402 +1903900 1914637 10738 13319876.98 13320414.8508 14.8392 -37.0203 93.6203 run7.mat -1 -1 2155 969360 974729 +1914943 1935654 20712 13320430.2773 13321467.055 13.1889 -37.0205 92.5199 run7.mat -1 -1 2155 974882 985237 +1935962 1956638 20677 13321482.4614 13322515.5326 11.5399 -37.0199 92.7283 run7.mat -1 -1 2155 985391 995730 +1956945 1977620 20676 13322530.8856 13323563.1993 9.8896 -37.0202 92.5985 run7.mat -1 -1 2155 995883 1006222 +1977928 1998596 20669 13323578.4831 13324613.9877 8.2434 -37.0206 92.7197 run7.mat -1 -1 2155 1006376 1016710 +1998907 1999789 883 13324629.4173 13324673.176 6.5888 -37.0168 92.3975 run7.mat -1 -1 2155 1016866 1017307 +2084045 2103019 18975 13328884.6951 13329835.492 6.5936 -37.0221 93.1751 run7.mat -1 -1 2156 1059436 1068924 +2103342 2124021 20680 13329851.6451 13330885.8517 4.9444 -37.021 92.5806 run7.mat -1 -1 2156 1069085 1079425 +2124329 2145019 20691 13330901.2547 13331935.0678 3.2973 -37.0201 92.5306 run7.mat -1 -1 2156 1079579 1089924 +2145329 2166001 20673 13331950.3359 13332982.5853 1.6499 -37.0198 92.631 run7.mat -1 -1 2156 1090079 1100416 +2166309 2179848 13540 13332997.8631 13333675.4719 0.002939 -37.0192 92.7468 run7.mat -1 -1 2156 1100570 1107340 +2263906 2270066 6161 13337878.935 13338185.144 0.0035109 -37.0182 93.663 run7.mat -1 -1 2157 1149371 1152451 +2270377 2291083 20707 13338200.8257 13339236.2 -1.6479 -37.0205 92.5389 run7.mat -1 -1 2157 1152606 1162960 +2291391 2312063 20673 13339251.6 13340286.4211 -3.2969 -37.0207 92.649 run7.mat -1 -1 2157 1163114 1173450 +2312369 2333063 20695 13340301.8475 13341338.4259 -4.9471 -37.0211 92.5581 run7.mat -1 -1 2157 1173603 1183951 +2333371 2354044 20674 13341353.8881 13342386.0905 -6.5918 -37.0194 92.6667 run7.mat -1 -1 2157 1184105 1194442 +2354351 2359689 5339 13342401.4469 13342668.3999 -8.2551 -37.0197 92.8912 run7.mat -1 -1 2157 1194596 1197265 +2443831 2458264 14434 13346876.0371 13347598.3362 -8.2489 -37.0184 93.114 run7.mat -1 -1 2158 1239338 1246554 +2458573 2479285 20713 13347613.9762 13348648.3263 -9.9007 -37.0198 92.4754 run7.mat -1 -1 2158 1246709 1257065 +2479591 2500284 20694 13348663.7528 13349696.9513 -11.5485 -37.0209 92.5531 run7.mat -1 -1 2158 1257218 1267565 +2500591 2521265 20675 13349712.3043 13350746.7655 -13.1947 -37.02 92.6347 run7.mat -1 -1 2158 1267718 1278056 +2521576 2539588 18013 13350762.444 13351664.6864 -14.8485 -37.0187 92.7362 run7.mat -1 -1 2158 1278211 1287218 +2623701 2625384 1684 13355869.6691 13355954.5148 -14.8488 -37.0253 96.2237 run7.mat -1 -1 2159 1329276 1330118 +2625713 2646385 20673 13355971.1 13357002.7844 -16.493 -37.0203 92.6315 run7.mat -1 -1 2159 1330282 1340619 +2646691 2667386 20696 13357017.969 13358051.9802 -18.1426 -37.0211 92.5876 run7.mat -1 -1 2159 1340772 1351119 +2667693 2688365 20673 13358067.4603 13359102.5234 -19.7889 -37.0211 92.6385 run7.mat -1 -1 2159 1351273 1361610 +2688672 2709347 20676 13359117.8763 13360151.1633 -21.4378 -37.0208 92.6299 run7.mat -1 -1 2159 1361763 1372101 +2709654 2719468 9815 13360166.6403 13360657.6649 -23.0895 -37.0207 92.6974 run7.mat -1 -1 2159 1372255 1377162 +2803686 2813604 9919 13364868.0839 13365364.0496 -23.0893 -37.0196 93.3054 run7.mat -1 -1 2160 1419273 1424232 +2813926 2834607 20682 13365380.2893 13366414.5715 -24.7361 -37.0209 92.5501 run7.mat -1 -1 2160 1424393 1434734 +2834913 2855612 20700 13366429.8779 13367463.4189 -26.3852 -37.0196 92.5908 run7.mat -1 -1 2160 1434887 1445237 +2855928 2876589 20662 13367479.1028 13368512.4131 -28.0318 -37.0195 92.7576 run7.mat -1 -1 2160 1445395 1455726 +2876897 2897563 20667 13368527.9435 13369561.7639 -29.6876 -37.0209 92.7662 run7.mat -1 -1 2160 1455880 1466213 +2897872 2899488 1617 13369577.3416 13369658.8096 -31.3386 -37.0192 93.0925 run7.mat -1 -1 2160 1466368 1467176 +2983650 3001766 18117 13373866.894 13374773.6975 -31.335 -37.0221 92.9333 run7.mat -1 -1 2161 1509258 1518317 +3002071 3022746 20676 13374788.8343 13375822.5312 -32.9843 -37.02 92.6329 run7.mat -1 -1 2161 1518470 1528807 +3023052 3043721 20670 13375837.7158 13376871.2112 -34.6316 -37.02 92.6391 run7.mat -1 -1 2161 1528960 1539295 +3044032 3064725 20694 13376886.6439 13377919.4301 -36.2872 -37.0208 92.6764 run7.mat -1 -1 2161 1539451 1549798 +3065033 3079408 14376 13377934.8333 13378654.7638 -37.9319 -37.0204 92.7832 run7.mat -1 -1 2161 1549952 1557140 +3163476 3168805 5330 13382858.4674 13383124.099 -37.939 -37.0192 94.2572 run7.mat -1 -1 2162 1599176 1601840 +3169111 3189806 20696 13383139.2806 13384174.4757 -39.5829 -37.0207 92.5891 run7.mat -1 -1 2162 1601993 1612341 +3190112 3210805 20694 13384189.9022 13385226.581 -41.2347 -37.0205 92.5717 run7.mat -1 -1 2162 1612494 1622841 +3211115 3231800 20686 13385242.087 13386276.5955 -42.8803 -37.0187 92.6024 run7.mat -1 -1 2162 1622996 1633339 +3232112 3252787 20676 13386292.0778 13387322.2193 -44.5347 -37.0189 92.6945 run7.mat -1 -1 2162 1633495 1643833 +3253094 3259267 6174 13387337.5757 13387646.3251 -46.1878 -37.0189 93.1471 run7.mat -1 -1 2162 1643986 1647073 +3343328 3356832 13505 13391849.1484 13392524.8581 -46.1809 -37.021 93.0346 run7.mat -1 -1 2163 1689105 1695858 +3357146 3377824 20679 13392540.662 13393574.7099 -47.8303 -37.0214 92.592 run7.mat -1 -1 2163 1696015 1706354 +3378133 3398825 20693 13393590.1632 13394625.8102 -49.4808 -37.021 92.5826 run7.mat -1 -1 2163 1706509 1716855 +3399134 3419826 20693 13394641.388 13395677.3308 -51.1302 -37.0212 92.6115 run7.mat -1 -1 2163 1717010 1727356 +3420134 3439087 18954 13395692.7338 13396639.9449 -52.7762 -37.0206 92.8226 run7.mat -1 -1 2163 1727510 1736987 +3523276 3524145 870 13400849.0191 13400891.8189 -52.78 -37.0146 100.6556 run7.mat -1 -1 2164 1779083 1779518 +3524466 3545146 20681 13400907.6287 13401942.3071 -54.4248 -37.0215 92.6644 run7.mat -1 -1 2164 1779678 1790019 +3545451 3566147 20697 13401957.6832 13402993.0734 -56.0734 -37.0217 92.5983 run7.mat -1 -1 2164 1790171 1800520 +3566455 3587146 20692 13403008.6007 13404043.614 -57.7274 -37.0206 92.6097 run7.mat -1 -1 2164 1800674 1811020 +3587453 3608126 20674 13404058.8452 13405092.4828 -59.3725 -37.0213 92.6073 run7.mat -1 -1 2164 1811173 1821510 +3608433 3619167 10735 13405107.714 13405641.9441 -61.0212 -37.019 92.8396 run7.mat -1 -1 2164 1821664 1827031 +3703208 3712166 8959 13409845.3011 13410295.0131 -61.022 -37.0198 93.3359 run7.mat -1 -1 2165 1869053 1873532 +3712501 3733167 20667 13410311.9016 13411343.6298 -62.6725 -37.0213 92.5626 run7.mat -1 -1 2165 1873700 1884034 +3733474 3754171 20698 13411359.1067 13412392.563 -64.3199 -37.0199 92.5431 run7.mat -1 -1 2165 1884187 1894536 +3754488 3775166 20679 13412408.5441 13413444.0717 -65.9711 -37.0204 92.6028 run7.mat -1 -1 2165 1894695 1905034 +3775474 3796128 20655 13413459.4749 13414490.4309 -67.6211 -37.0207 92.7522 run7.mat -1 -1 2165 1905188 1915515 +3796435 3798985 2551 13414505.7838 13414633.8415 -69.2736 -37.0218 93.152 run7.mat -1 -1 2165 1915669 1916944 +3883099 3900368 17270 13418841.0962 13419702.7696 -69.2753 -37.02 92.9297 run7.mat -1 -1 2166 1959003 1967638 +3900677 3921378 20702 13419718.2225 13420754.9837 -70.9183 -37.0206 92.5659 run7.mat -1 -1 2166 1967792 1978143 +3921694 3942369 20676 13420770.7273 13421802.925 -72.5744 -37.0197 92.6428 run7.mat -1 -1 2166 1978301 1988639 +3942676 3963368 20693 13421818.1592 13422854.5373 -74.2229 -37.02 92.6306 run7.mat -1 -1 2166 1988793 1999139 +3963675 3978826 15152 13422869.9515 13423627.6522 -75.8725 -37.0197 92.7361 run7.mat -1 -1 2166 1999293 2006868 +4062917 4067425 4509 13427830.7079 13428057.163 -75.8763 -37.0206 94.1821 run7.mat -1 -1 2167 2048916 2051170 +4067748 4088427 20680 13428073.4498 13429106.4776 -77.5188 -37.0218 92.5547 run7.mat -1 -1 2167 2051332 2061671 +4088735 4109428 20694 13429121.7614 13430158.4078 -79.1681 -37.0199 92.5746 run7.mat -1 -1 2167 2061825 2072172 +4109735 4130426 20692 13430173.639 13431206.1574 -80.8184 -37.0219 92.5676 run7.mat -1 -1 2167 2072326 2082672 +4130736 4151388 20653 13431221.5374 13432253.6614 -82.4645 -37.0202 92.6299 run7.mat -1 -1 2167 2082827 2093153 +4151696 4158705 7010 13432269.1887 13432619.3683 -82.4679 -35.3389 92.8531 run7.mat -1 -1 2167 2093307 2096812 +4242890 4255711 12822 13436829.4426 13437469.835 -82.4635 -35.3375 93.2648 run7.mat -1 -1 2168 2138906 2145317 +4256029 4276727 20699 13437485.8697 13438521.8647 -80.8166 -35.3374 92.6016 run7.mat -1 -1 2168 2145476 2155826 +4277033 4297708 20676 13438537.0462 13439571.0559 -79.1692 -35.337 92.6126 run7.mat -1 -1 2168 2155979 2166316 +4298016 4318710 20695 13439586.5832 13440620.2367 -77.5143 -35.337 92.6091 run7.mat -1 -1 2168 2166470 2176818 +4319014 4338784 19771 13440635.4399 13441623.1823 -75.8651 -35.3366 92.7512 run7.mat -1 -1 2168 2176970 2186855 +4423139 4443768 20630 13445842.0265 13446872.4558 -74.2185 -35.337 92.6873 run7.mat -1 -1 2169 2229035 2239350 +4444079 4464770 20692 13446888.0716 13447924.78 -72.5684 -35.3375 92.6594 run7.mat -1 -1 2169 2239505 2249851 +4465080 4485753 20674 13447940.4081 13448974.6418 -70.92 -35.3372 92.6136 run7.mat -1 -1 2169 2250006 2260343 +4486064 4506749 20686 13448990.1978 13450022.6641 -69.2663 -35.3369 92.5829 run7.mat -1 -1 2169 2260498 2270841 +4507056 4518644 11589 13450038.02 13450618.5938 -67.6237 -35.3369 92.6225 run7.mat -1 -1 2169 2270995 2276789 +4602666 4610834 8169 13454819.4259 13455227.3255 -67.6208 -35.3395 93.5657 run7.mat -1 -1 2170 2318802 2322886 +4611147 4631831 20685 13455242.9011 13456275.4055 -65.9772 -35.3366 92.6334 run7.mat -1 -1 2170 2323043 2333385 +4632136 4652811 20676 13456290.6584 13457326.6268 -64.323 -35.3367 92.5726 run7.mat -1 -1 2170 2333538 2343875 +4653118 4673812 20695 13457341.9827 13458375.8425 -62.677 -35.3368 92.6005 run7.mat -1 -1 2170 2344029 2354377 +4674121 4694791 20671 13458391.4202 13459426.2311 -61.0263 -35.3369 92.7558 run7.mat -1 -1 2170 2354531 2364867 +4695097 4698484 3388 13459441.5343 13459610.5459 -59.3767 -35.3366 93.0011 run7.mat -1 -1 2170 2365020 2366713 +4782588 4798935 16348 13463816.2593 13464633.7907 -59.3784 -35.3366 93.1847 run7.mat -1 -1 2171 2408767 2416941 +4799251 4819931 20681 13464649.5968 13465683.6195 -57.728 -35.3381 92.6161 run7.mat -1 -1 2171 2417099 2427439 +4820238 4840910 20673 13465699.1583 13466730.5559 -56.0784 -35.3371 92.5831 run7.mat -1 -1 2171 2427593 2437929 +4841217 4861911 20695 13466745.7871 13467780.4666 -54.4273 -35.337 92.5639 run7.mat -1 -1 2171 2438083 2448430 +4862216 4878364 16149 13467795.6514 13468603.2786 -52.776 -35.3366 92.8306 run7.mat -1 -1 2171 2448583 2456657 +4962462 4966033 3572 13472811.075 13472989.1062 -52.7746 -35.3366 94.4583 run7.mat -1 -1 2172 2498708 2500494 +4966342 4987010 20669 13473004.4979 13474037.6281 -51.1264 -35.3358 92.4849 run7.mat -1 -1 2172 2500648 2510982 +4987320 5008012 20693 13474053.2594 13475086.2525 -49.4755 -35.3369 92.6018 run7.mat -1 -1 2172 2511137 2521484 +5008317 5029003 20687 13475101.6317 13476134.4232 -47.8273 -35.3372 92.6325 run7.mat -1 -1 2172 2521636 2531980 +5029314 5049990 20677 13476150.1049 13477184.8819 -46.1771 -35.3372 92.6574 run7.mat -1 -1 2172 2532135 2542474 +5050296 5058244 7949 13477200.0635 13477596.6042 -44.536 -35.34 92.8864 run7.mat -1 -1 2172 2542627 2546601 +5142347 5154196 11850 13481803.7318 13482395.999 -44.53 -35.3377 93.4804 run7.mat -1 -1 2173 2588655 2594579 +5154510 5175188 20679 13482411.5775 13483445.0028 -42.8791 -35.3367 92.5201 run7.mat -1 -1 2173 2594736 2605076 +5175499 5196180 20682 13483460.6814 13484494.9274 -41.229 -35.337 92.657 run7.mat -1 -1 2173 2605231 2615572 +5196490 5217170 20681 13484510.3074 13485544.2427 -39.582 -35.3366 92.5574 run7.mat -1 -1 2173 2615727 2626067 +5217476 5238123 20648 13485559.4243 13486594.6301 -37.9328 -35.3375 92.769 run7.mat -1 -1 2173 2626220 2636545 +5322082 5342257 20176 13490789.8574 13491798.8806 -36.2869 -35.3368 93.0503 run7.mat -1 -1 2174 2678526 2688614 +5342579 5363249 20671 13491814.984 13492846.7394 -34.6341 -35.3362 92.6041 run7.mat -1 -1 2174 2688775 2699110 +5363557 5384230 20674 13492862.1423 13493899.0512 -32.9866 -35.3377 92.5464 run7.mat -1 -1 2174 2699264 2709601 +5384538 5405232 20695 13493914.4541 13494947.7761 -31.34 -35.3359 92.6034 run7.mat -1 -1 2174 2709755 2720102 +5405538 5417983 12446 13494963.2057 13495585.5977 -29.6914 -35.3367 92.7682 run7.mat -1 -1 2174 2720255 2726478 +5502098 5509458 7361 13499790.952 13500161.0637 -29.6923 -35.3368 93.5437 run7.mat -1 -1 2175 2768538 2772218 +5509770 5530453 20684 13500176.4944 13501209.1068 -28.0384 -35.3363 92.5165 run7.mat -1 -1 2175 2772374 2782716 +5530767 5551449 20683 13501224.8098 13502259.2328 -26.3887 -35.3366 92.5901 run7.mat -1 -1 2175 2782873 2793214 +5551755 5572449 20695 13502274.5387 13503310.5879 -24.743 -35.3366 92.5882 run7.mat -1 -1 2175 2793367 2803715 +5572756 5593411 20656 13503325.8222 13504357.9854 -23.0934 -35.3382 92.7554 run7.mat -1 -1 2175 2803868 2814196 +5593717 5597983 4267 13504373.2883 13504586.6318 -21.4407 -35.337 92.8005 run7.mat -1 -1 2175 2814349 2816482 +5682078 5697532 15455 13508789.481 13509564.4207 -21.4357 -35.3371 92.9891 run7.mat -1 -1 2176 2858531 2866259 +5697858 5718510 20653 13509580.7241 13510612.4295 -19.7883 -35.3371 92.5979 run7.mat -1 -1 2176 2866422 2876749 +5718820 5739509 20690 13510627.8126 13511661.8796 -18.1405 -35.337 92.6203 run7.mat -1 -1 2176 2876904 2887248 +5739816 5760491 20676 13511677.2355 13512709.3008 -16.4921 -35.337 92.6253 run7.mat -1 -1 2176 2887402 2897740 +5760800 5777862 17063 13512724.7538 13513579.0077 -14.8397 -35.3367 92.6916 run7.mat -1 -1 2176 2897894 2906426 +5863756 5866475 2720 13517872.9263 13518008.9027 -14.8497 -35.3395 94.895 run7.mat -1 -1 2177 2949375 2950734 +5866793 5887467 20675 13518024.806 13519061.3328 -13.1879 -35.3366 92.5607 run7.mat -1 -1 2177 2950893 2961231 +5887775 5908453 20679 13519076.8633 13520110.2978 -11.5438 -35.3369 92.5834 run7.mat -1 -1 2177 2961385 2971724 +5908764 5929443 20680 13520125.8538 13521158.7428 -9.8922 -35.3368 92.5561 run7.mat -1 -1 2177 2971879 2982219 +5929755 5950427 20673 13521174.4143 13522206.9047 -8.2447 -35.3369 92.6609 run7.mat -1 -1 2177 2982375 2992712 +5950737 5959582 8846 13522222.2878 13522665.8524 -6.5961 -35.3379 92.8759 run7.mat -1 -1 2177 2992867 2997290 +6043651 6054536 10886 13526869.0196 13527413.5112 -6.5965 -35.336 93.4645 run7.mat -1 -1 2178 3039326 3044769 +6054852 6075530 20679 13527429.4418 13528462.7807 -4.9481 -35.3374 92.5149 run7.mat -1 -1 2178 3044927 3055266 +6075836 6096532 20697 13528477.9623 13529512.7489 -3.2978 -35.3362 92.6312 run7.mat -1 -1 2178 3055419 3065768 +6096839 6117530 20692 13529528.1835 13530564.6144 -1.6514 -35.3374 92.596 run7.mat -1 -1 2178 3065922 3076267 +6117839 6138473 20635 13530579.9448 13531611.0631 -0.0037326 -35.3364 92.6543 run7.mat -1 -1 2178 3076422 3086739 +6138790 6139462 673 13531627.0442 13531660.922 1.6587 -35.3346 91.7551 run7.mat -1 -1 2178 3086898 3087234 +6223534 6242595 19062 13535864.0655 13536816.7053 1.644 -35.337 92.8892 run7.mat -1 -1 2179 3129272 3138802 +6242911 6263591 20681 13536832.5084 13537866.812 3.2957 -35.3372 92.5223 run7.mat -1 -1 2179 3138960 3149301 +6263897 6284587 20691 13537882.1152 13538914.9223 4.9437 -35.3371 92.6064 run7.mat -1 -1 2179 3149454 3159800 +6284898 6305571 20674 13538930.4753 13539966.3328 6.5908 -35.3366 92.5967 run7.mat -1 -1 2179 3159955 3170292 +6305878 6319321 13444 13539981.686 13540654.3421 8.2448 -35.3381 92.8461 run7.mat -1 -1 2179 3170445 3177167 +6403571 6409918 6348 13544868.4005 13545183.3148 8.2486 -35.3376 93.7639 run7.mat -1 -1 2180 3219294 3222467 +6410230 6430897 20668 13545198.7971 13546232.4682 9.8961 -35.3379 92.5782 run7.mat -1 -1 2180 3222623 3232958 +6431210 6451892 20683 13546248.2476 13547282.3899 11.5432 -35.3361 92.5602 run7.mat -1 -1 2180 3233114 3243455 +6452199 6472891 20693 13547297.7431 13548332.5929 13.1954 -35.3363 92.6289 run7.mat -1 -1 2180 3243609 3253955 +6473198 6493873 20676 13548347.9488 13549381.9629 14.8437 -35.3368 92.6866 run7.mat -1 -1 2180 3254109 3264447 +6494181 6499321 5141 13549397.3693 13549653.9589 16.4924 -35.3372 92.741 run7.mat -1 -1 2180 3264601 3267171 +6583423 6597961 14539 13553859.7178 13554586.4586 16.4923 -35.3355 93.0169 run7.mat -1 -1 2181 3309224 3316493 +6598288 6618970 20683 13554602.9437 13555633.682 18.1441 -35.3361 92.6514 run7.mat -1 -1 2181 3316657 3326999 +6619278 6639955 20678 13555649.3256 13556686.0273 19.788 -35.337 92.5872 run7.mat -1 -1 2181 3327153 3337491 +6640264 6660952 20689 13556701.2461 13557734.3224 21.4384 -35.3373 92.5895 run7.mat -1 -1 2181 3337646 3347990 +6661258 6679182 17925 13557749.5069 13558646.898 23.0897 -35.3375 92.7842 run7.mat -1 -1 2181 3348143 3357105 +6763415 6765183 1769 13562858.7415 13562946.8083 23.0926 -35.3335 95.7865 run7.mat -1 -1 2182 3399224 3400108 +6765511 6786192 20682 13562963.0814 13563996.5014 24.7404 -35.3367 92.6032 run7.mat -1 -1 2182 3400272 3410613 +6786501 6807174 20674 13564012.0823 13565045.1734 26.3837 -35.3374 92.5986 run7.mat -1 -1 2182 3410767 3421104 +6807480 6828172 20693 13565060.4766 13566097.3671 28.0336 -35.3364 92.5599 run7.mat -1 -1 2182 3421257 3431603 +6828478 6849152 20675 13566112.673 13567144.2463 29.6847 -35.338 92.6743 run7.mat -1 -1 2182 3431756 3442094 +6849462 6859221 9760 13567159.5172 13567649.0403 31.3318 -35.3366 92.8984 run7.mat -1 -1 2182 3442249 3447129 +6943180 6953225 10046 13571847.6419 13572348.5783 31.3335 -35.3356 93.6131 run7.mat -1 -1 2183 3489110 3494133 +6953543 6974216 20674 13572364.6739 13573399.1742 32.9792 -35.3376 92.5369 run7.mat -1 -1 2183 3494292 3504629 +6974533 6995213 20681 13573415.1553 13574449.6149 34.6303 -35.3366 92.5582 run7.mat -1 -1 2183 3504788 3515128 +6995520 7016195 20676 13574464.8491 13575497.3977 36.2826 -35.3365 92.5653 run7.mat -1 -1 2183 3515281 3525620 +7016505 7037174 20670 13575513.0258 13576544.8891 37.9316 -35.3371 92.6209 run7.mat -1 -1 2183 3525775 3536110 +7037481 7039081 1601 13576560.3629 13576641.0081 39.5829 -35.3398 93.2356 run7.mat -1 -1 2183 3536263 3537063 +7123297 7141520 18224 13580853.5829 13581763.7615 39.5835 -35.3366 93.0064 run7.mat -1 -1 2184 3579173 3588285 +7141837 7162498 20662 13581779.4888 13582813.114 41.2316 -35.3374 92.6156 run7.mat -1 -1 2184 3588443 3598774 +7162804 7183513 20710 13582828.4172 13583864.1246 42.8801 -35.3363 92.66 run7.mat -1 -1 2184 3598927 3609282 +7183821 7204496 20676 13583879.5278 13584912.4837 44.5331 -35.3377 92.6599 run7.mat -1 -1 2184 3609436 3619774 +7204805 7219180 14376 13584927.9367 13585646.8812 46.1776 -35.3369 92.7048 run7.mat -1 -1 2184 3619928 3627117 +7303177 7308501 5325 13589846.4171 13590114.0687 46.1839 -35.3368 93.726 run7.mat -1 -1 2185 3669117 3671771 +7308807 7329498 20692 13590129.3716 13591162.7414 47.8274 -35.3371 92.5149 run7.mat -1 -1 2185 3671932 3682278 +7329807 7350498 20692 13591178.259 13592214.9328 49.4727 -35.337 92.5379 run7.mat -1 -1 2185 3682432 3692778 +7350805 7371488 20684 13592230.4098 13593263.199 51.1292 -35.3361 92.6323 run7.mat -1 -1 2185 3692932 3703274 +7371800 7392456 20657 13593278.7164 13594311.5106 52.7742 -35.337 92.6882 run7.mat -1 -1 2185 3703430 3713758 +7392768 7398958 6191 13594326.9899 13594635.9911 54.4203 -35.34 92.7661 run7.mat -1 -1 2185 3713914 3717009 +7483195 7496807 13613 13598847.3646 13599527.9641 54.4238 -35.3382 93.1274 run7.mat -1 -1 2186 3759130 3765936 +7497119 7517818 20700 13599543.4433 13600580.4824 56.0688 -35.3376 92.6194 run7.mat -1 -1 2186 3766092 3776442 +7518125 7538798 20674 13600595.7136 13601628.5684 57.7231 -35.3367 92.6357 run7.mat -1 -1 2186 3776596 3786932 +7539108 7559799 20692 13601644.1997 13602676.3726 59.3743 -35.3375 92.564 run7.mat -1 -1 2186 3787087 3797433 +7560109 7579040 18932 13602691.8756 13603641.0955 61.0213 -35.3374 92.6809 run7.mat -1 -1 2186 3797588 3807054 +7663340 7664129 790 13607857.3308 13607896.4755 61.0244 -35.3401 100.4294 run7.mat -1 -1 2187 3849206 3849601 +7664441 7685103 20663 13607911.9548 13608943.1395 62.6711 -35.3374 92.6875 run7.mat -1 -1 2187 3849757 3860088 +7685410 7706101 20692 13608958.3707 13609993.9014 64.321 -35.3368 92.5028 run7.mat -1 -1 2187 3860242 3870588 +7706408 7727102 20695 13610009.1326 13611043.8121 65.9727 -35.3363 92.5645 run7.mat -1 -1 2187 3870741 3881089 +7727408 7748081 20674 13611058.9936 13612094.8027 67.6218 -35.3382 92.5839 run7.mat -1 -1 2187 3881242 3891579 +7748390 7759119 10730 13612110.2556 13612646.4951 69.2722 -35.337 92.8439 run7.mat -1 -1 2187 3891733 3897098 +7843204 7852278 9075 13616848.0942 13617301.0227 69.2695 -35.3373 93.6836 run7.mat -1 -1 2188 3939142 3943679 +7852590 7873282 20693 13617316.6287 13618353.6137 70.9181 -35.3373 92.578 run7.mat -1 -1 2188 3943835 3954182 +7873589 7894282 20694 13618368.8466 13619401.5694 72.5725 -35.3362 92.6711 run7.mat -1 -1 2188 3954335 3964682 +7894591 7915266 20676 13619416.8998 13620452.6114 74.2181 -35.3366 92.5838 run7.mat -1 -1 2188 3964837 3975174 +7915576 7936242 20667 13620467.9944 13621500.4247 75.8671 -35.3366 92.8335 run7.mat -1 -1 2188 3975329 3985663 +7936549 7938999 2451 13621515.7776 13621638.3534 77.523 -35.3319 92.8548 run7.mat -1 -1 2188 3985817 3987041 +8023076 8040345 17270 13625841.9131 13626704.5006 77.5138 -35.3365 93.0005 run7.mat -1 -1 2189 4029082 4037717 +8040667 8061347 20681 13626720.737 13627755.3276 79.1657 -35.3365 92.571 run7.mat -1 -1 2189 4037878 4048218 +8061654 8082341 20688 13627770.8076 13628805.5313 80.8135 -35.3365 92.5958 run7.mat -1 -1 2189 4048372 4058716 +8082646 8102975 20330 13628820.9104 13629836.2882 82.4629 -35.3375 92.5422 run7.mat -1 -1 2189 4058868 4069033 +301432 322019 20588 13912629.109 13913657.279 82.4616 -33.6572 93.0408 run8.mat -1 -1 2191 170647 180941 +322325 343020 20696 13913672.5213 13914709.2976 80.8173 -33.6572 92.6166 run8.mat -1 -1 2191 181094 191442 +343328 363999 20672 13914724.7014 13915758.6072 79.1647 -33.6577 92.5536 run8.mat -1 -1 2191 191596 201933 +364306 384981 20676 13915773.9602 13916806.5193 77.513 -33.6571 92.6096 run8.mat -1 -1 2191 202086 212424 +385291 397313 12023 13916822.1474 13917422.6799 75.8632 -33.6571 92.7852 run8.mat -1 -1 2191 212579 218590 +481602 489277 7676 13921638.16 13922021.1537 75.864 -33.6576 93.5015 run8.mat -1 -1 2192 260736 264574 +489613 510297 20685 13922037.9569 13923072.9821 74.215 -33.6572 92.547 run8.mat -1 -1 2192 264742 275085 +510605 531280 20676 13923088.5094 13924120.8207 72.5677 -33.657 92.6486 run8.mat -1 -1 2192 275239 285576 +531586 552277 20692 13924136.1237 13925171.819 70.9171 -33.6568 92.6245 run8.mat -1 -1 2192 285729 296076 +552584 573240 20657 13925187.0532 13926220.9411 69.2674 -33.6576 92.7612 run8.mat -1 -1 2192 296229 306558 +573546 577373 3828 13926236.3676 13926426.977 67.6096 -33.6572 93.0972 run8.mat -1 -1 2192 306711 308624 +661498 677377 15880 13930633.2317 13931427.779 67.6207 -33.6577 92.9467 run8.mat -1 -1 2193 350689 358628 +677699 698379 20681 13931444.0121 13932477.0221 65.9732 -33.6574 92.5819 run8.mat -1 -1 2193 358789 369130 +698687 719381 20695 13932492.4285 13933525.3907 64.3202 -33.6582 92.5712 run8.mat -1 -1 2193 369284 379631 +719685 740363 20679 13933540.5936 13934576.7009 62.6725 -33.6578 92.6188 run8.mat -1 -1 2193 379783 390123 +740674 757272 16599 13934592.1306 13935422.688 61.0261 -33.657 92.8041 run8.mat -1 -1 2193 390278 398578 +841550 844758 3209 13939634.8084 13939796.5346 61.0203 -33.6575 95.3308 run8.mat -1 -1 2194 440718 442322 +845079 865780 20702 13939812.7173 13940846.2603 59.3765 -33.6568 92.6161 run8.mat -1 -1 2194 442483 452834 +866086 886771 20686 13940861.6868 13941897.0598 57.728 -33.6572 92.6241 run8.mat -1 -1 2194 452987 463330 +887086 907762 20677 13941912.8128 13942946.0893 56.0738 -33.6572 92.564 run8.mat -1 -1 2194 463487 473826 +908069 928740 20672 13942961.3235 13943995.1914 54.4255 -33.6564 92.6452 run8.mat -1 -1 2194 473979 484315 +929049 937332 8284 13944010.7691 13944423.8141 52.774 -33.6573 92.7089 run8.mat -1 -1 2194 484470 488612 +1021589 1033040 11452 13948638.6313 13949209.5197 52.7788 -33.6577 93.433 run8.mat -1 -1 2195 530742 536468 +1033347 1054062 20716 13949224.8727 13950261.6716 51.125 -33.6573 92.5518 run8.mat -1 -1 2195 536621 546979 +1054368 1075040 20673 13950276.8531 13951310.5404 49.4736 -33.6575 92.6237 run8.mat -1 -1 2195 547132 557468 +1075346 1096040 20695 13951325.722 13952360.4511 47.8227 -33.6573 92.6554 run8.mat -1 -1 2195 557621 567969 +1096349 1117001 20653 13952375.7832 13953408.4765 46.1767 -33.6569 92.7915 run8.mat -1 -1 2195 568123 578450 +1117309 1117411 103 13953423.7573 13953428.8178 44.514 -33.6611 98.1337 run8.mat -1 -1 2195 578604 578655 +1201682 1221481 19800 13957642.7122 13958633.0327 44.5301 -33.6572 93.0934 run8.mat -1 -1 2196 620792 630692 +1221786 1242467 20682 13958648.1647 13959682.212 42.8749 -33.6574 92.5391 run8.mat -1 -1 2196 630845 641186 +1242788 1263465 20678 13959698.1409 13960732.9837 41.2294 -33.6575 92.5421 run8.mat -1 -1 2196 641346 651685 +1263770 1284450 20681 13960748.1187 13961783.4185 39.5805 -33.658 92.6035 run8.mat -1 -1 2196 651837 662178 +1284762 1297511 12750 13961799.025 13962434.1052 37.9357 -33.6576 92.8751 run8.mat -1 -1 2196 662334 668709 +1381883 1388822 6940 13966654.2288 13966999.3134 37.9329 -33.6566 93.5143 run8.mat -1 -1 2197 710897 714366 +1389143 1409825 20683 13967015.2391 13968050.3287 36.2857 -33.6578 92.5108 run8.mat -1 -1 2197 714527 724868 +1410131 1430823 20693 13968065.7552 13969101.0464 34.6334 -33.6568 92.623 run8.mat -1 -1 2197 725021 735368 +1431131 1451805 20675 13969116.4493 13970150.1211 32.9863 -33.6572 92.5595 run8.mat -1 -1 2197 735522 745859 +1452109 1472785 20677 13970165.2064 13971199.6666 31.3367 -33.6574 92.7206 run8.mat -1 -1 2197 746011 756350 +1473093 1477650 4558 13971215.0698 13971442.966 29.6849 -33.6591 92.8663 run8.mat -1 -1 2197 756504 758782 +1561941 1577124 15184 13975657.1989 13976416.5448 29.688 -33.6579 93.0738 run8.mat -1 -1 2198 800930 808522 +1577450 1598124 20675 13976432.7186 13977464.7516 28.033 -33.6565 92.609 run8.mat -1 -1 2198 808685 819022 +1598431 1619124 20694 13977480.3684 13978515.4797 26.3898 -33.6572 92.5842 run8.mat -1 -1 2198 819175 829523 +1619432 1640104 20673 13978530.8827 13979564.7392 24.7341 -33.6569 92.7445 run8.mat -1 -1 2198 829677 840013 +1640414 1657711 17298 13979580.2422 13980444.5979 23.0893 -33.6572 92.8103 run8.mat -1 -1 2198 840168 848817 +1741752 1744264 2513 13984647.2342 13984771.8869 23.0906 -33.6575 96.3962 run8.mat -1 -1 2199 890839 892095 +1744587 1765266 20680 13984787.915 13985822.8328 21.4346 -33.6574 92.5638 run8.mat -1 -1 2199 892256 902597 +1765571 1786264 20694 13985838.2089 13986871.8849 19.7832 -33.6567 92.7327 run8.mat -1 -1 2199 902749 913096 +1786573 1807228 20656 13986887.2153 13987918.4211 18.1365 -33.658 92.6127 run8.mat -1 -1 2199 913251 923579 +1807535 1828228 20694 13987933.9599 13988969.4147 16.491 -33.6569 92.6952 run8.mat -1 -1 2199 923732 934079 +1828533 1837650 9118 13988984.6676 13989441.0032 14.8397 -33.6572 92.8106 run8.mat -1 -1 2199 934232 938790 +1921988 1932683 10696 13993657.8043 13994192.4535 14.8413 -33.6575 93.5324 run8.mat -1 -1 2200 980961 986309 +1933010 1953666 20657 13994208.8103 13995242.4291 13.1913 -33.6575 92.5539 run8.mat -1 -1 2200 986472 996801 +1953976 1974667 20692 13995258.0573 13996293.3193 11.5425 -33.6573 92.6477 run8.mat -1 -1 2200 996956 1007302 +1974974 1995665 20692 13996308.5505 13997342.466 9.8952 -33.6578 92.6407 run8.mat -1 -1 2200 1007455 1017801 +1995971 2016625 20655 13997357.7724 13998392.6921 8.2445 -33.6573 92.6854 run8.mat -1 -1 2200 1017954 1028282 +2016935 2017750 816 13998408.195 13998448.8343 6.6054 -33.6546 92.6504 run8.mat -1 -1 2200 1028437 1028844 +2102077 2121124 19048 14002661.8281 14003615.2823 6.5967 -33.6576 92.9509 run8.mat -1 -1 2201 1071009 1080533 +2121445 2142105 20661 14003631.465 14004665.3905 4.9442 -33.6573 92.5759 run8.mat -1 -1 2201 1080694 1091024 +2142412 2163110 20699 14004680.7434 14005715.8504 3.2992 -33.6567 92.64 run8.mat -1 -1 2201 1091178 1101527 +2163424 2184109 20686 14005731.5569 14006764.1227 1.6487 -33.6577 92.562 run8.mat -1 -1 2201 1101684 1112027 +2184413 2197850 13438 14006779.3286 14007452.4015 0.0027516 -33.6577 92.7149 run8.mat -1 -1 2201 1112179 1118898 +2281836 2288191 6356 14011650.7822 14011968.6395 -0.0044987 -33.6562 93.7821 run8.mat -1 -1 2202 1160893 1164071 +2288506 2309209 20704 14011984.3955 14013018.1912 -1.6504 -33.6578 92.5627 run8.mat -1 -1 2202 1164228 1174580 +2309517 2330211 20695 14013033.7806 14014070.5907 -3.2992 -33.6578 92.6222 run8.mat -1 -1 2202 1174734 1185081 +2330517 2351210 20694 14014085.7753 14015121.4018 -4.9465 -33.6567 92.5959 run8.mat -1 -1 2202 1185234 1195582 +2351515 2372170 20656 14015136.6582 14016168.4986 -6.5981 -33.6576 92.7116 run8.mat -1 -1 2202 1195734 1206062 +2372477 2377729 5253 14016183.7328 14016447.1775 -8.2494 -33.6569 93.0242 run8.mat -1 -1 2202 1206215 1208842 +2462025 2476508 14484 14020661.5086 14021385.9301 -8.2498 -33.6573 93.0983 run8.mat -1 -1 2203 1250991 1258233 +2476813 2497528 20716 14021401.0621 14022437.4576 -9.898 -33.6565 92.4925 run8.mat -1 -1 2203 1258386 1268744 +2497835 2518511 20677 14022452.9345 14023484.2562 -11.5448 -33.6573 92.6689 run8.mat -1 -1 2203 1268897 1279235 +2518818 2539489 20672 14023499.3793 14024534.7231 -13.1922 -33.6571 92.6656 run8.mat -1 -1 2203 1279389 1289725 +2539795 2557829 18035 14024549.9591 14025451.3394 -14.8456 -33.6574 92.8524 run8.mat -1 -1 2203 1289878 1298896 +2642381 2644166 1786 14029677.6789 14029766.9475 -14.8512 -33.6564 96.7517 run8.mat -1 -1 2204 1341173 1342066 +2644490 2665150 20661 14029783.1516 14030818.2221 -16.4915 -33.6577 92.6421 run8.mat -1 -1 2204 1342228 1352558 +2665456 2686148 20693 14030833.4037 14031867.1589 -18.1396 -33.6577 92.573 run8.mat -1 -1 2204 1352711 1363058 +2686457 2707151 20695 14031882.7366 14032918.7797 -19.7865 -33.6574 92.5586 run8.mat -1 -1 2204 1363212 1373560 +2707456 2728131 20676 14032934.1589 14033966.1393 -21.4371 -33.6576 92.6632 run8.mat -1 -1 2204 1373712 1384050 +2728438 2738128 9691 14033981.3736 14034465.302 -23.0896 -33.6576 92.8863 run8.mat -1 -1 2204 1384203 1389049 +2822385 2832529 10145 14038679.6552 14039184.5201 -23.0873 -33.6572 93.1611 run8.mat -1 -1 2205 1431179 1436252 +2832853 2853533 20681 14039200.7232 14040237.2311 -24.7366 -33.6572 92.5341 run8.mat -1 -1 2205 1436414 1446754 +2853841 2874531 20691 14040252.7584 14041286.6241 -26.3863 -33.6577 92.6051 run8.mat -1 -1 2205 1446908 1457253 +2874839 2895532 20694 14041301.9049 14042338.4445 -28.0375 -33.6573 92.6241 run8.mat -1 -1 2205 1457407 1467754 +2895839 2916492 20654 14042353.8781 14043384.8584 -29.6894 -33.6566 92.6471 run8.mat -1 -1 2205 1467908 1478235 +2916798 2918168 1371 14043400.1614 14043468.6746 -31.3416 -33.6583 92.065 run8.mat -1 -1 2205 1478388 1479073 +3002477 3020810 18334 14047683.0143 14048601.2035 -31.3392 -33.6568 92.8992 run8.mat -1 -1 2206 1521229 1530396 +3021117 3041833 20717 14048616.5594 14049651.0522 -32.9876 -33.6572 92.4357 run8.mat -1 -1 2206 1530549 1540908 +3042139 3062814 20676 14049666.4787 14050700.7797 -34.6331 -33.6573 92.6255 run8.mat -1 -1 2206 1541061 1551399 +3063121 3083793 20673 14050716.2598 14051751.417 -36.29 -33.6567 92.6878 run8.mat -1 -1 2206 1551552 1561889 +3084105 3098268 14164 14051767.146 14052473.1351 -37.937 -33.6574 92.7408 run8.mat -1 -1 2206 1562045 1569127 +3182601 3188130 5530 14056691.1127 14056966.3436 -37.9385 -33.6581 93.6992 run8.mat -1 -1 2207 1611295 1614059 +3188457 3209112 20656 14056982.6999 14058015.9964 -39.585 -33.6571 92.5374 run8.mat -1 -1 2207 1614223 1624551 +3209420 3230132 20713 14058031.5237 14059068.0373 -41.2337 -33.6574 92.5979 run8.mat -1 -1 2207 1624705 1635062 +3230439 3251112 20674 14059083.3903 14060115.3313 -42.8797 -33.6575 92.6167 run8.mat -1 -1 2207 1635215 1645553 +3251421 3272094 20674 14060130.7872 14061164.7562 -44.5311 -33.6574 92.6693 run8.mat -1 -1 2207 1645707 1656044 +3272402 3278387 5986 14061180.2835 14061480.928 -46.1764 -33.658 92.8607 run8.mat -1 -1 2207 1656198 1659190 +3364499 3378252 13754 14065786.0103 14066474.9192 -46.1817 -33.657 93.0882 run8.mat -1 -1 2208 1702248 1709125 +3378576 3399254 20679 14066491.1254 14067525.3154 -47.8256 -33.657 92.6705 run8.mat -1 -1 2208 1709287 1719626 +3399561 3420235 20675 14067540.6684 14068571.4441 -49.4748 -33.6573 92.6177 run8.mat -1 -1 2208 1719780 1730117 +3420542 3441235 20694 14068586.9242 14069620.8825 -51.1274 -33.658 92.5585 run8.mat -1 -1 2208 1730271 1740618 +3441540 3460327 18788 14069636.1357 14070577.1123 -52.7764 -33.6572 92.7512 run8.mat -1 -1 2208 1740770 1750165 +3544604 3545535 932 14074789.7207 14074836.2886 -52.7766 -33.6565 98.829 run8.mat -1 -1 2209 1792304 1792770 +3545860 3566536 20677 14074852.5448 14075888.6297 -54.4232 -33.6577 92.6004 run8.mat -1 -1 2209 1792932 1803271 +3566842 3587536 20695 14075903.9329 14076937.3574 -56.0778 -33.6573 92.5062 run8.mat -1 -1 2209 1803424 1813772 +3587842 3608525 20684 14076952.539 14077989.5799 -57.7285 -33.6573 92.6906 run8.mat -1 -1 2209 1813925 1824267 +3608840 3629500 20661 14078005.208 14079036.5665 -59.3788 -33.6572 92.6135 run8.mat -1 -1 2209 1824424 1834754 +3629810 3640407 10598 14079052.0729 14079582.1177 -61.0221 -33.6563 92.7951 run8.mat -1 -1 2209 1834909 1840209 +3724696 3733914 9219 14083796.9432 14084256.5119 -61.0263 -33.656 93.6697 run8.mat -1 -1 2210 1882355 1886964 +3734239 3754917 20679 14084272.8279 14085306.2315 -62.6756 -33.6571 92.5986 run8.mat -1 -1 2210 1887127 1897466 +3755223 3775917 20695 14085321.658 14086358.2674 -64.3244 -33.6569 92.5701 run8.mat -1 -1 2210 1897619 1907966 +3776223 3796915 20693 14086373.5703 14087407.512 -65.9745 -33.6574 92.6455 run8.mat -1 -1 2210 1908119 1918466 +3797224 3817877 20654 14087423.0897 14088454.8368 -67.624 -33.6573 92.8057 run8.mat -1 -1 2210 1918620 1928947 +3818182 3820447 2266 14088470.09 14088583.3626 -69.2826 -33.6565 92.3427 run8.mat -1 -1 2210 1929100 1930232 +3904772 3922356 17585 14092801.6587 14093678.0931 -69.268 -33.6571 93.0809 run8.mat -1 -1 2211 1972396 1981189 +3922680 3943362 20683 14093694.1677 14094728.2874 -70.919 -33.6573 92.6278 run8.mat -1 -1 2211 1981351 1991693 +3943675 3964357 20683 14094743.8194 14095779.6031 -72.569 -33.6572 92.591 run8.mat -1 -1 2211 1991849 2002191 +3964664 3985340 20677 14095795.0831 14096827.4836 -74.2155 -33.6571 92.6333 run8.mat -1 -1 2211 2002344 2012682 +3985647 4000547 14901 14096842.9605 14097588.0323 -75.8657 -33.6572 92.8208 run8.mat -1 -1 2211 2012836 2020286 +4084648 4089556 4909 14101794.8952 14102038.6383 -75.8616 -33.6591 94.7055 run8.mat -1 -1 2212 2062339 2064792 +4089883 4110577 20695 14102054.865 14103091.6094 -77.516 -33.6571 92.5617 run8.mat -1 -1 2212 2064956 2075304 +4110885 4131561 20677 14103106.8903 14104138.7793 -79.167 -33.6567 92.6214 run8.mat -1 -1 2212 2075458 2085796 +4131868 4152577 20710 14104154.0135 14105189.167 -80.8157 -33.657 92.6177 run8.mat -1 -1 2212 2085949 2096304 +4152884 4173539 20656 14105204.647 14106237.4995 -82.4667 -33.6569 92.6374 run8.mat -1 -1 2212 2096458 2106786 +4173847 4180406 6560 14106252.7803 14106583.0028 -82.4646 -31.9735 92.7786 run8.mat -1 -1 2212 2106940 2110219 +4264741 4277902 13162 14110797.4676 14111455.2717 -82.4704 -31.9743 93.1555 run8.mat -1 -1 2213 2152389 2158978 +4278209 4298884 20676 14111470.6249 14112505.8699 -80.8172 -31.9732 92.5558 run8.mat -1 -1 2213 2159123 2169461 +4299202 4319882 20681 14112521.9014 14113557.7915 -79.172 -31.9736 92.6908 run8.mat -1 -1 2213 2169620 2179961 +4320189 4340860 20672 14113573.1445 14114602.958 -77.5193 -31.9736 92.5526 run8.mat -1 -1 2213 2180114 2190450 +4341169 4360506 19338 14114618.5389 14115585.6277 -75.871 -31.9746 92.7789 run8.mat -1 -1 2213 2190604 2200274 +4444839 4445343 505 14119803.6374 14119828.7453 -75.8659 -31.9725 99.4791 run8.mat -1 -1 2214 2242442 2242694 +4445658 4466299 20642 14119844.4378 14120877.5554 -74.2206 -31.9741 92.7011 run8.mat -1 -1 2214 2242851 2253172 +4466607 4487282 20676 14120892.9226 14121925.2646 -72.5695 -31.9734 92.5999 run8.mat -1 -1 2214 2253326 2263665 +4487591 4508284 20694 14121940.8423 14122976.7249 -70.9187 -31.9739 92.6241 run8.mat -1 -1 2214 2263819 2274166 +4508588 4529263 20676 14122991.8073 14124023.534 -69.2692 -31.973 92.6733 run8.mat -1 -1 2214 2274318 2284656 +4529575 4540585 11011 14124039.0195 14124590.838 -67.6196 -31.9729 92.9377 run8.mat -1 -1 2214 2284812 2290317 +4624853 4633657 8805 14128805.1213 14129244.0258 -67.6204 -31.9736 93.8813 run8.mat -1 -1 2215 2332453 2336855 +4633976 4654662 20687 14129259.8524 14130294.1855 -65.9696 -31.9738 92.5467 run8.mat -1 -1 2215 2337015 2347358 +4654974 4675663 20690 14130309.9145 14131343.5326 -64.3188 -31.9733 92.6035 run8.mat -1 -1 2215 2347514 2357859 +4675969 4696643 20675 14131358.8355 14132394.7905 -62.6698 -31.9736 92.5468 run8.mat -1 -1 2215 2358012 2368350 +4696949 4717608 20660 14132410.0935 14133442.2976 -61.0221 -31.9734 92.7151 run8.mat -1 -1 2215 2368503 2378832 +4717923 4720624 2702 14133458.0752 14133594.2418 -59.3675 -31.974 92.8624 run8.mat -1 -1 2215 2378990 2380341 +4804887 4821953 17067 14137807.3192 14138660.3519 -59.3731 -31.9734 92.9219 run8.mat -1 -1 2216 2422474 2431007 +4822270 4842945 20676 14138676.3329 14139709.7007 -57.7249 -31.9737 92.6066 run8.mat -1 -1 2216 2431166 2441504 +4843258 4863926 20669 14139725.3537 14140757.224 -56.0778 -31.9741 92.6313 run8.mat -1 -1 2216 2441660 2451995 +4864238 4884943 20706 14140772.953 14141809.6535 -54.4237 -31.9737 92.6133 run8.mat -1 -1 2216 2452151 2462504 +4885249 4900684 15436 14141824.8351 14142596.4882 -52.7844 -31.974 92.75 run8.mat -1 -1 2216 2462657 2470374 +4985027 4989269 4243 14146816.0117 14147026.476 -52.7813 -31.974 94.1045 run8.mat -1 -1 2217 2512548 2514669 +4989583 5010262 20680 14147042.0576 14148076.6666 -51.1313 -31.9739 92.4995 run8.mat -1 -1 2217 2514826 2525166 +5010567 5031262 20696 14148091.9198 14149126.975 -49.4802 -31.9741 92.6375 run8.mat -1 -1 2217 2525318 2535666 +5031567 5052242 20676 14149142.2279 14150173.8176 -47.8333 -31.9737 92.7023 run8.mat -1 -1 2217 2535819 2546157 +5052549 5073223 20675 14150188.9379 14151221.5893 -46.1834 -31.9739 92.6573 run8.mat -1 -1 2217 2546310 2556648 +5073527 5080805 7279 14151236.7923 14151600.8161 -44.5298 -31.975 92.7243 run8.mat -1 -1 2217 2556800 2560439 +5165133 5177572 12440 14155819.3586 14156440.852 -44.5331 -31.974 92.9966 run8.mat -1 -1 2218 2602605 2608824 +5177892 5198581 20690 14156456.9875 14157490.4926 -42.8819 -31.9735 92.5521 run8.mat -1 -1 2218 2608984 2619329 +5198890 5219563 20674 14157505.823 14158541.5728 -41.2313 -31.974 92.6311 run8.mat -1 -1 2218 2619484 2629821 +5219868 5240562 20695 14158556.7078 14159590.1541 -39.5847 -31.9738 92.5461 run8.mat -1 -1 2218 2629973 2640321 +5240870 5260925 20056 14159605.6846 14160606.5985 -37.9324 -31.9732 92.8356 run8.mat -1 -1 2218 2640475 2650503 +5345309 5365882 20574 14164827.5055 14165857.968 -36.2865 -31.9738 92.8624 run8.mat -1 -1 2219 2692697 2702984 +5366189 5386865 20677 14165873.1992 14166904.9028 -34.6308 -31.9735 92.4874 run8.mat -1 -1 2219 2703137 2713476 +5387171 5407863 20693 14166920.0813 14167954.8779 -32.9857 -31.9739 92.6212 run8.mat -1 -1 2219 2713629 2723975 +5408171 5428848 20678 14167970.2808 14169006.3858 -31.3328 -31.9732 92.6295 run8.mat -1 -1 2219 2724129 2734468 +5429166 5441004 11839 14169022.2889 14169614.0345 -29.686 -31.9742 92.8354 run8.mat -1 -1 2219 2734627 2740546 +5525269 5533251 7983 14173827.7255 14174225.8482 -29.687 -31.9749 93.7556 run8.mat -1 -1 2220 2782680 2786672 +5533562 5554246 20685 14174241.2778 14175276.4921 -28.036 -31.9736 92.525 run8.mat -1 -1 2220 2786827 2797170 +5554551 5575244 20694 14175291.8713 14176325.0467 -26.3881 -31.9736 92.5393 run8.mat -1 -1 2220 2797322 2807669 +5575552 5596224 20673 14176340.4499 14177372.5265 -24.7412 -31.9734 92.6022 run8.mat -1 -1 2220 2807823 2818159 +5596530 5617205 20676 14177387.953 14178422.2341 -23.0918 -31.9736 92.6783 run8.mat -1 -1 2220 2818312 2828651 +5617512 5621043 3532 14178437.711 14178615.4899 -21.4378 -31.9736 93.1935 run8.mat -1 -1 2220 2828804 2830569 +5705225 5721552 16328 14182822.8886 14183641.4283 -21.4414 -31.9742 93.2199 run8.mat -1 -1 2221 2872662 2880826 +5721877 5742526 20650 14183657.5558 14184690.0588 -19.7936 -31.9733 92.5623 run8.mat -1 -1 2221 2880989 2891314 +5742841 5763545 20705 14184705.69 14185739.7876 -18.1437 -31.9741 92.6338 run8.mat -1 -1 2221 2891471 2901824 +5763852 5784525 20674 14185755.1435 14186788.8912 -16.4934 -31.9737 92.5932 run8.mat -1 -1 2221 2901977 2912314 +5784837 5801124 16288 14186804.3736 14187620.0619 -14.8461 -31.973 92.7641 run8.mat -1 -1 2221 2912470 2920614 +5885225 5888645 3421 14191824.3291 14191995.1149 -14.8459 -31.9731 94.9171 run8.mat -1 -1 2222 2962667 2964377 +5888956 5909645 20690 14192010.6063 14193045.7285 -13.1944 -31.9737 92.5641 run8.mat -1 -1 2222 2964532 2974877 +5909952 5930640 20689 14193060.9597 14194096.0105 -11.543 -31.9736 92.467 run8.mat -1 -1 2222 2975030 2985375 +5930951 5951644 20694 14194111.6891 14195146.6891 -9.8936 -31.9735 92.6475 run8.mat -1 -1 2222 2985530 2995878 +5951952 5972604 20653 14195162.3535 14196193.3291 -8.2456 -31.9731 92.7071 run8.mat -1 -1 2222 2996032 3006358 +5972913 5981023 8111 14196208.6626 14196613.8891 -6.5922 -31.9735 92.7491 run8.mat -1 -1 2222 3006512 3010567 +6065310 6076935 11626 14200827.9831 14201408.8765 -6.5912 -31.9736 93.3539 run8.mat -1 -1 2223 3052713 3058526 +6077253 6097941 20689 14201424.6566 14202461.0032 -4.9473 -31.973 92.5393 run8.mat -1 -1 2223 3058685 3069029 +6098251 6118924 20674 14202476.3832 14203508.6492 -3.2917 -31.9734 92.6116 run8.mat -1 -1 2223 3069184 3079521 +6119230 6139926 20697 14203524.0194 14204560.2167 -1.6495 -31.9738 92.5995 run8.mat -1 -1 2223 3079674 3090022 +6140232 6160868 20637 14204575.2877 14205606.2682 0.0034501 -31.9731 92.7132 run8.mat -1 -1 2223 3090175 3100494 +6245210 6265036 19827 14209825.8011 14210815.3886 1.6449 -31.9741 92.9397 run8.mat -1 -1 2224 3142667 3152580 +6265346 6286028 20683 14210830.7686 14211865.0075 3.2941 -31.9733 92.5847 run8.mat -1 -1 2224 3152735 3163077 +6286335 6307007 20673 14211880.2387 14212913.8083 4.9412 -31.9741 92.5738 run8.mat -1 -1 2224 3163230 3173566 +6307315 6328011 20697 14212929.0921 14213963.5416 6.5897 -31.9735 92.5962 run8.mat -1 -1 2224 3173720 3184069 +6328318 6341002 12685 14213978.8946 14214611.2681 8.2435 -31.974 92.7086 run8.mat -1 -1 2224 3184223 3190565 +6425133 6432270 7138 14218819.9581 14219177.998 8.2405 -31.9747 93.9125 run8.mat -1 -1 2225 3232632 3236212 +6432582 6453269 20688 14219193.727 14220226.6241 9.8923 -31.9736 92.5439 run8.mat -1 -1 2225 3236357 3246701 +6453576 6474268 20693 14220241.8583 14221276.4454 11.541 -31.9737 92.653 run8.mat -1 -1 2225 3246854 3257201 +6474575 6495270 20696 14221291.7229 14222328.7191 13.1911 -31.9734 92.5933 run8.mat -1 -1 2225 3257354 3267702 +6495575 6516231 20657 14222343.975 14223375.7614 14.8424 -31.9739 92.7244 run8.mat -1 -1 2225 3267855 3278183 +6516537 6521042 4506 14223391.1879 14223617.0568 16.4916 -31.9735 92.9861 run8.mat -1 -1 2225 3278336 3280589 +6605312 6620529 15218 14227829.3284 14228592.1318 16.4928 -31.9737 93.047 run8.mat -1 -1 2226 3322726 3330334 +6620841 6641533 20693 14228607.6141 14229639.9023 18.1428 -31.974 92.6491 run8.mat -1 -1 2226 3330490 3340837 +6641841 6662511 20671 14229655.549 14230689.7033 19.7906 -31.9736 92.6425 run8.mat -1 -1 2226 3340991 3351326 +6662831 6683514 20684 14230705.9813 14231740.4617 21.4369 -31.9737 92.672 run8.mat -1 -1 2226 3351486 3361828 +6683820 6701082 17263 14231755.7676 14232617.1056 23.0899 -31.9738 92.7833 run8.mat -1 -1 2226 3361981 3370613 +6785419 6787881 2463 14236835.7752 14236958.1854 23.0884 -31.9748 95.0967 run8.mat -1 -1 2227 3412783 3414014 +6788202 6808869 20668 14236974.1143 14238007.4298 24.7378 -31.9733 92.5691 run8.mat -1 -1 2227 3414175 3424509 +6809176 6829889 20714 14238022.661 14239058.3328 26.3895 -31.9734 92.5037 run8.mat -1 -1 2227 3424662 3435019 +6830200 6850873 20674 14239073.7625 14240108.3517 28.0326 -31.9739 92.6526 run8.mat -1 -1 2227 3435175 3445511 +6851178 6871850 20673 14240123.4867 14241155.5622 29.687 -31.9739 92.655 run8.mat -1 -1 2227 3445664 3456001 +6872160 6881202 9043 14241171.0652 14241625.0746 31.3293 -31.9734 92.88 run8.mat -1 -1 2227 3456156 3460677 +6965310 6976074 10765 14245829.1296 14246369.0032 31.3342 -31.9735 93.4417 run8.mat -1 -1 2228 3502732 3508115 +6976395 6997070 20676 14246385.1859 14247417.3678 32.982 -31.9738 92.4736 run8.mat -1 -1 2228 3508275 3518613 +6997377 7018070 20694 14247432.8447 14248467.5635 34.6323 -31.974 92.6888 run8.mat -1 -1 2228 3518767 3529114 +7018376 7039065 20690 14248482.8666 14249517.572 36.2787 -31.9739 92.6224 run8.mat -1 -1 2228 3529267 3539612 +7039375 7060031 20657 14249533.075 14250565.9587 37.928 -31.9738 92.803 run8.mat -1 -1 2228 3539767 3550095 +7060336 7061081 746 14250581.3962 14250619.1045 39.5658 -31.9724 93.1128 run8.mat -1 -1 2228 3550248 3550620 +7145370 7164377 19008 14254833.2345 14255782.8244 39.5801 -31.9734 93.0175 run8.mat -1 -1 2229 3592766 3602271 +7164695 7185351 20657 14255798.8558 14256832.1791 41.23 -31.9728 92.531 run8.mat -1 -1 2229 3602430 3612758 +7185658 7206370 20713 14256847.656 14257881.3557 42.8772 -31.9739 92.6112 run8.mat -1 -1 2229 3612911 3623267 +7206677 7227351 20675 14257896.5899 14258930.5305 44.5303 -31.9739 92.6295 run8.mat -1 -1 2229 3623421 3633759 +7227656 7241181 13526 14258945.9096 14259623.8123 46.1837 -31.9744 92.8127 run8.mat -1 -1 2229 3633911 3640674 +7325204 7331379 6176 14263824.6005 14264132.412 46.1787 -31.9742 93.5391 run8.mat -1 -1 2230 3682688 3685775 +7331692 7352375 20684 14264147.9409 14265184.2554 47.8298 -31.9738 92.5649 run8.mat -1 -1 2230 3685932 3696274 +7352682 7373371 20690 14265199.6084 14266232.8616 49.4764 -31.9741 92.5496 run8.mat -1 -1 2230 3696427 3706772 +7373678 7394370 20693 14266248.3417 14267281.6479 51.1295 -31.9737 92.5856 run8.mat -1 -1 2230 3706925 3717272 +7394677 7415350 20674 14267296.8791 14268331.3227 52.7775 -31.9733 92.5537 run8.mat -1 -1 2230 3717426 3727763 +7415656 7421001 5346 14268346.7523 14268612.8863 54.4262 -31.9733 92.8635 run8.mat -1 -1 2230 3727916 3730588 +7505247 7519641 14395 14272826.0542 14273547.532 54.428 -31.9733 93.1907 run8.mat -1 -1 2231 3772713 3779910 +7519953 7540625 20673 14273563.0143 14274594.6642 56.0744 -31.9738 92.5453 run8.mat -1 -1 2231 3780066 3790403 +7540936 7561631 20696 14274610.0939 14275646.6127 57.7289 -31.9736 92.5543 run8.mat -1 -1 2231 3790558 3800906 +7561938 7582610 20673 14275662.0519 14276696.6982 59.3761 -31.9738 92.7397 run8.mat -1 -1 2231 3801060 3811397 +7582920 7601060 18141 14276712.0782 14277617.6903 61.0223 -31.9733 92.7761 run8.mat -1 -1 2231 3811552 3820621 +7685332 7686896 1565 14281832.45 14281910.6305 61.0224 -31.9747 95.4533 run8.mat -1 -1 2232 3862759 3863541 +7687213 7707890 20678 14281926.3641 14282958.4549 62.6703 -31.9733 92.6001 run8.mat -1 -1 2232 3863700 3874037 +7708200 7728890 20691 14282973.8996 14284008.7378 64.3151 -31.9738 92.5926 run8.mat -1 -1 2232 3874194 3884539 +7729196 7749873 20678 14284024.1674 14285057.4268 65.9694 -31.9734 92.633 run8.mat -1 -1 2232 3884692 3895031 +7750180 7770854 20675 14285072.78 14286105.2751 67.6168 -31.974 92.6326 run8.mat -1 -1 2232 3895185 3905522 +7771159 7781120 9962 14286120.407 14286621.68 69.2678 -31.9737 92.7745 run8.mat -1 -1 2232 3905675 3910656 +7865189 7874962 9774 14290824.9385 14291313.6224 69.266 -31.9736 93.3875 run8.mat -1 -1 2233 3952692 3957578 +7875283 7895955 20673 14291329.8084 14292364.5144 70.9165 -31.9731 92.5531 run8.mat -1 -1 2233 3957739 3968076 +7896262 7916936 20675 14292379.8708 14293411.8369 72.5699 -31.9738 92.6635 run8.mat -1 -1 2233 3968229 3978566 +7917241 7937951 20711 14293427.0898 14294460.8481 74.2219 -31.9735 92.6057 run8.mat -1 -1 2233 3978719 3989074 +7938261 7958914 20654 14294476.3524 14295509.5825 75.8688 -31.974 92.7694 run8.mat -1 -1 2233 3989229 3999556 +7959222 7960979 1758 14295525.1129 14295613.7071 77.5092 -31.9737 93.3531 run8.mat -1 -1 2233 3999710 4000588 +8045131 8063096 17966 14299820.3191 14300720.764 77.5196 -31.9733 92.8197 run8.mat -1 -1 2234 4042667 4051650 +8063405 8084080 20676 14300736.259 14301768.0941 79.1674 -31.9747 92.5039 run8.mat -1 -1 2234 4051804 4062142 +8084398 8105079 20682 14301783.8742 14302817.9651 80.8169 -31.973 92.6236 run8.mat -1 -1 2234 4062301 4072642 +8105385 8125726 20342 14302833.1497 14303851.0319 82.4641 -31.9736 92.5981 run8.mat -1 -1 2234 4072795 4082966 +291687 312240 20554 14532654.4141 14533684.3179 82.4617 -30.2903 93.1691 run9.mat -1 -1 2236 166289 176566 +312547 333236 20690 14533699.6709 14534731.3334 80.815 -30.2905 92.5642 run9.mat -1 -1 2236 176720 187065 +333543 354218 20676 14534746.5646 14535780.337 79.1651 -30.2899 92.5748 run9.mat -1 -1 2236 187218 197556 +354529 375221 20693 14535795.7697 14536832.1982 77.5152 -30.2893 92.6883 run9.mat -1 -1 2236 197712 208058 +375528 387442 11915 14536847.5266 14537443.1474 75.8635 -30.2897 92.7244 run9.mat -1 -1 2236 208212 214169 +471755 479660 7906 14541657.3901 14542055.5813 75.8692 -30.2884 93.7109 run9.mat -1 -1 2237 256327 260280 +479967 500661 20695 14542070.9342 14543105.561 74.2215 -30.2895 92.4379 run9.mat -1 -1 2237 260434 270781 +500969 521644 20676 14543121.0883 14544151.3744 72.5679 -30.29 92.5897 run9.mat -1 -1 2237 270935 281273 +521962 542642 20681 14544167.253 14545201.5101 70.9193 -30.2906 92.5758 run9.mat -1 -1 2237 281432 291773 +542949 563607 20659 14545216.8633 14546252.0686 69.268 -30.2899 92.7628 run9.mat -1 -1 2237 291926 302256 +563919 567522 3604 14546267.6718 14546447.8586 67.6252 -30.2872 92.6962 run9.mat -1 -1 2237 302412 304213 +651686 668002 16317 14550656.096 14551471.9615 67.6197 -30.2908 93.0843 run9.mat -1 -1 2238 346297 354455 +668308 689006 20699 14551487.1461 14552522.7185 65.9683 -30.2887 92.5312 run9.mat -1 -1 2238 354608 364958 +689312 710004 20693 14552538.0217 14553569.9145 64.316 -30.2901 92.6128 run9.mat -1 -1 2238 365111 375457 +710312 730988 20677 14553585.4418 14554618.2816 62.6684 -30.2905 92.5775 run9.mat -1 -1 2238 375611 385950 +731297 747581 16285 14554633.7346 14555451.0355 61.0197 -30.2906 92.8073 run9.mat -1 -1 2238 386104 394247 +831689 835124 3436 14559653.6286 14559827.3051 61.0178 -30.2886 94.4337 run9.mat -1 -1 2239 436303 438020 +835430 856125 20696 14559842.8472 14560877.1113 59.3736 -30.2899 92.4621 run9.mat -1 -1 2239 438173 448521 +856433 877126 20694 14560892.6386 14561926.3438 57.7241 -30.29 92.5485 run9.mat -1 -1 2239 448675 459022 +877432 898126 20695 14561941.5284 14562977.3524 56.0738 -30.2893 92.5841 run9.mat -1 -1 2239 459175 469522 +898430 919084 20655 14562992.5555 14564023.8927 54.4232 -30.2896 92.7268 run9.mat -1 -1 2239 469674 480002 +919392 927481 8090 14564039.42 14564443.7019 52.7768 -30.2899 92.7566 run9.mat -1 -1 2239 480156 484200 +1011669 1023366 11698 14568653.3046 14569239.9277 52.7787 -30.2906 93.3897 run9.mat -1 -1 2240 526296 532145 +1023671 1044365 20695 14569255.0627 14570288.5406 51.129 -30.2896 92.6344 run9.mat -1 -1 2240 532297 542645 +1044672 1065345 20674 14570304.0175 14571338.7067 49.4764 -30.2905 92.5647 run9.mat -1 -1 2240 542798 553135 +1065654 1086345 20692 14571354.0371 14572387.7771 47.8301 -30.2899 92.6107 run9.mat -1 -1 2240 553290 563636 +1086653 1107327 20675 14572403.18 14573437.7265 46.1804 -30.2897 92.7714 run9.mat -1 -1 2240 563790 574127 +1191834 1211684 19851 14577664.6285 14578655.3764 44.533 -30.29 92.9454 run9.mat -1 -1 2241 616383 626308 +1212010 1232683 20674 14578671.6796 14579704.6298 42.879 -30.2898 92.6811 run9.mat -1 -1 2241 626471 636808 +1232991 1253667 20677 14579719.7835 14580754.8098 41.2297 -30.2897 92.6196 run9.mat -1 -1 2241 636962 647300 +1253978 1274666 20689 14580770.4884 14581803.3257 39.5835 -30.29 92.6347 run9.mat -1 -1 2241 647456 657801 +1274972 1287640 12669 14581818.7522 14582452.0684 37.9334 -30.2913 92.768 run9.mat -1 -1 2241 657954 664287 +1371647 1378733 7087 14586654.5483 14587007.1981 37.9349 -30.2908 93.7778 run9.mat -1 -1 2242 706293 709836 +1379045 1399726 20682 14587022.6773 14588058.8234 36.2836 -30.2901 92.5242 run9.mat -1 -1 2242 709992 720333 +1400037 1420744 20708 14588074.253 14589108.4051 34.6307 -30.2903 92.5684 run9.mat -1 -1 2242 720489 730843 +1421053 1441726 20674 14589123.9829 14590159.7003 32.9819 -30.2908 92.6874 run9.mat -1 -1 2242 730997 741334 +1442032 1462705 20674 14590174.8819 14591206.7116 31.3323 -30.291 92.6808 run9.mat -1 -1 2242 741487 751824 +1463014 1467500 4487 14591222.0421 14591446.4549 29.682 -30.2906 92.6228 run9.mat -1 -1 2242 751979 754222 +1551778 1567024 15247 14595661.3146 14596421.3714 29.6845 -30.2904 92.9863 run9.mat -1 -1 2243 796363 803985 +1567355 1588029 20675 14596437.9973 14597474.6052 28.0313 -30.2905 92.6001 run9.mat -1 -1 2243 804151 814489 +1588335 1609026 20692 14597489.9111 14598524.0369 26.3844 -30.2906 92.5323 run9.mat -1 -1 2243 814642 824988 +1609334 1630009 20676 14598539.5642 14599572.5681 24.7371 -30.2895 92.5774 run9.mat -1 -1 2243 825142 835480 +1630314 1647560 17247 14599587.7031 14600450.6673 23.0883 -30.2897 92.69 run9.mat -1 -1 2243 835633 844256 +1731697 1734146 2450 14604658.6217 14604780.1481 23.0895 -30.2902 94.7387 run9.mat -1 -1 2244 886320 887525 +1734463 1755145 20683 14604795.8785 14605827.8662 21.4394 -30.29 92.5344 run9.mat -1 -1 2244 887709 898050 +1755454 1776133 20680 14605843.1967 14606877.2991 19.7909 -30.2896 92.5602 run9.mat -1 -1 2244 898205 908545 +1776452 1797127 20676 14606893.343 14607929.3072 18.143 -30.2895 92.5148 run9.mat -1 -1 2244 908704 919043 +1797437 1818114 20678 14607944.8102 14608976.9156 16.4954 -30.2902 92.6651 run9.mat -1 -1 2244 919198 929537 +1818431 1827479 9049 14608992.7689 14609445.6164 14.843 -30.2908 92.7695 run9.mat -1 -1 2244 929695 934219 +1911604 1922368 10765 14613653.5676 14614191.5808 14.8425 -30.2895 93.5983 run9.mat -1 -1 2245 976283 981665 +1922691 1943369 20679 14614207.609 14615240.2668 13.1917 -30.2896 92.5303 run9.mat -1 -1 2245 981827 992167 +1943677 1964370 20694 14615255.6697 14616290.12 11.5415 -30.2901 92.594 run9.mat -1 -1 2245 992321 1002668 +1964679 1985350 20672 14616305.7632 14617340.3816 9.8951 -30.2902 92.5226 run9.mat -1 -1 2245 1002822 1013158 +1985655 2006330 20676 14617355.7608 14618390.0032 8.2436 -30.2897 92.7065 run9.mat -1 -1 2245 1013311 1023648 +2006636 2007499 864 14618405.4297 14618448.6644 6.5953 -30.2886 92.6096 run9.mat -1 -1 2245 1023801 1024233 +2091552 2110464 18913 14622648.5485 14623595.5067 6.5899 -30.2908 92.8627 run9.mat -1 -1 2246 1066262 1075718 +2110771 2131451 20681 14623610.9867 14624645.2381 4.9435 -30.2901 92.6139 run9.mat -1 -1 2246 1075871 1086212 +2131759 2152449 20691 14624660.519 14625695.0992 3.2936 -30.2909 92.594 run9.mat -1 -1 2246 1086366 1096711 +2152757 2173452 20696 14625710.38 14626745.5605 1.6448 -30.2892 92.6922 run9.mat -1 -1 2246 1096865 1107213 +2173758 2187379 13622 14626760.8637 14627440.0981 -0.0018193 -30.2902 92.7364 run9.mat -1 -1 2246 1107366 1114177 +2271625 2277690 6066 14631652.8863 14631957.8079 -0.0023506 -30.2898 93.7627 run9.mat -1 -1 2247 1156302 1159335 +2277995 2298691 20697 14631972.9399 14633007.7186 -1.6499 -30.2906 92.5415 run9.mat -1 -1 2247 1159487 1169835 +2299000 2319691 20692 14633023.049 14634058.5234 -3.2972 -30.2898 92.6031 run9.mat -1 -1 2247 1169990 1180336 +2319998 2340670 20673 14634073.8766 14635106.4485 -4.947 -30.2897 92.6708 run9.mat -1 -1 2247 1180490 1190826 +2340978 2361650 20673 14635121.7293 14636154.9842 -6.5935 -30.2899 92.6829 run9.mat -1 -1 2247 1190980 1201316 +2361956 2367418 5463 14636170.2901 14636445.4455 -8.2444 -30.2906 92.9543 run9.mat -1 -1 2247 1201469 1204201 +2451480 2465750 14271 14640646.7191 14641359.3675 -8.2451 -30.2891 93.1221 run9.mat -1 -1 2248 1246234 1253369 +2466082 2486751 20670 14641375.8391 14642408.733 -9.8922 -30.29 92.496 run9.mat -1 -1 2248 1253535 1263870 +2487059 2507750 20692 14642424.136 14643460.5599 -11.5414 -30.29 92.5772 run9.mat -1 -1 2248 1264024 1274370 +2508058 2528732 20675 14643476.0904 14644511.3241 -13.1933 -30.2898 92.5113 run9.mat -1 -1 2248 1274524 1284861 +2529041 2547278 18238 14644526.6545 14645438.1633 -14.8442 -30.2901 92.7872 run9.mat -1 -1 2248 1285016 1294134 +2631612 2633089 1478 14649653.5924 14649726.8708 -14.8498 -30.2904 95.5931 run9.mat -1 -1 2249 1336303 1337042 +2633421 2654073 20653 14649743.3423 14650776.0454 -16.4928 -30.2909 92.6456 run9.mat -1 -1 2249 1337208 1347534 +2654379 2675079 20701 14650791.3507 14651826.2592 -18.1396 -30.2903 92.6071 run9.mat -1 -1 2249 1347687 1358037 +2675393 2696073 20681 14651841.8408 14652877.9266 -19.7921 -30.2896 92.6382 run9.mat -1 -1 2249 1358194 1368535 +2696379 2717053 20675 14652893.1082 14653925.9115 -21.4388 -30.2895 92.6573 run9.mat -1 -1 2249 1368688 1379025 +2717360 2727377 10018 14653941.1457 14654442.1613 -23.0953 -30.2896 92.7288 run9.mat -1 -1 2249 1379179 1384188 +2811324 2821229 9906 14658638.4514 14659135.1293 -23.0893 -30.2886 93.4423 run9.mat -1 -1 2250 1426163 1431115 +2821537 2842252 20716 14659150.5352 14660186.5053 -24.7418 -30.2901 92.5563 run9.mat -1 -1 2250 1431269 1441628 +2842560 2863233 20674 14660202.0327 14661234.8844 -26.3937 -30.2903 92.6567 run9.mat -1 -1 2250 1441782 1452119 +2863540 2884229 20690 14661250.2375 14662283.1871 -28.0371 -30.2907 92.6493 run9.mat -1 -1 2250 1452273 1462617 +2884538 2905193 20656 14662298.5176 14663333.409 -29.6909 -30.2897 92.7465 run9.mat -1 -1 2250 1462772 1473099 +2905497 2907217 1721 14663348.6149 14663434.6479 -31.3432 -30.2888 93.3129 run9.mat -1 -1 2250 1473251 1474111 +2991534 3009528 17995 14667650.6134 14668550.1226 -31.337 -30.2903 92.9234 run9.mat -1 -1 2251 1516272 1525270 +3009835 3030513 20679 14668565.6027 14669600.0421 -32.9849 -30.2892 92.6446 run9.mat -1 -1 2251 1525423 1535762 +3030820 3051493 20674 14669615.403 14670647.0262 -34.6332 -30.2897 92.54 run9.mat -1 -1 2251 1535916 1546253 +3051801 3072496 20696 14670662.31 14671698.0786 -36.2866 -30.2901 92.6216 run9.mat -1 -1 2251 1546407 1556755 +3072801 3087297 14497 14671713.2106 14672437.0289 -37.9305 -30.2899 92.8734 run9.mat -1 -1 2251 1556907 1564156 +3171447 3176774 5328 14676646.6091 14676912.8174 -37.9273 -30.2894 94.7235 run9.mat -1 -1 2252 1606232 1608896 +3177079 3180977 3899 14676927.9494 14677121.3409 -39.5824 -30.2919 92.6106 run9.mat -1 -1 2252 1609049 1610998 +3181227 3197774 16548 14677133.7562 14677962.6943 -39.5828 -30.2898 92.562 run9.mat -1 -1 2252 1611123 1619396 +3198081 3218775 20695 14677977.9285 14679012.6388 -41.2275 -30.2898 92.6092 run9.mat -1 -1 2252 1619550 1629898 +3219083 3239775 20693 14679027.9196 14680061.3626 -42.8792 -30.2896 92.5235 run9.mat -1 -1 2252 1630052 1640398 +3240083 3260735 20653 14680076.8899 14681110.0069 -44.5312 -30.2895 92.6817 run9.mat -1 -1 2252 1640552 1650878 +3261041 3267217 6177 14681125.4365 14681432.3603 -46.1744 -30.289 92.8998 run9.mat -1 -1 2252 1651031 1654120 +3351353 3364891 13539 14685643.1802 14686318.8948 -46.1793 -30.2891 93.0087 run9.mat -1 -1 2253 1696189 1702958 +3365212 3385913 20702 14686334.8237 14687367.9532 -47.8274 -30.2905 92.6078 run9.mat -1 -1 2253 1703119 1713470 +3386220 3406895 20676 14687383.1844 14688417.1013 -49.4779 -30.2911 92.6259 run9.mat -1 -1 2253 1713624 1723961 +3407201 3427892 20692 14688432.4077 14689467.6903 -51.1317 -30.291 92.6335 run9.mat -1 -1 2253 1724114 1734461 +3428199 3447138 18940 14689483.1672 14690431.7396 -52.7773 -30.2904 92.8049 run9.mat -1 -1 2253 1734614 1744084 +3531208 3532012 805 14694634.9072 14694675.4396 -52.7901 -30.2889 96.7869 run9.mat -1 -1 2254 1786121 1786523 +3532330 3552974 20645 14694691.4711 14695723.7259 -54.4291 -30.2902 92.6651 run9.mat -1 -1 2254 1786682 1797004 +3553281 3573959 20679 14695738.9571 14696772.8428 -56.0761 -30.2905 92.6316 run9.mat -1 -1 2254 1797158 1807497 +3574273 3594956 20684 14696788.4213 14697820.1452 -57.7327 -30.2902 92.5821 run9.mat -1 -1 2254 1807654 1817996 +3595264 3615939 20676 14697835.6126 14698870.0363 -59.3765 -30.2897 92.7289 run9.mat -1 -1 2254 1818150 1828488 +3616251 3626997 10747 14698885.6395 14699424.9272 -61.0227 -30.2894 92.8205 run9.mat -1 -1 2254 1828644 1834018 +3711180 3720236 9057 14703632.8697 14704086.2676 -61.0247 -30.2891 93.4522 run9.mat -1 -1 2255 1876110 1880639 +3720543 3741256 20714 14704101.5018 14705138.6199 -62.6729 -30.2902 92.497 run9.mat -1 -1 2255 1880792 1891150 +3741565 3762236 20672 14705154.0758 14706185.5518 -64.3204 -30.2905 92.6797 run9.mat -1 -1 2255 1891304 1901640 +3762545 3783217 20673 14706201.1327 14707235.2517 -65.9723 -30.2906 92.6623 run9.mat -1 -1 2255 1901795 1912131 +3783525 3804197 20673 14707250.6549 14708284.0054 -67.6198 -30.2909 92.6931 run9.mat -1 -1 2255 1912285 1922621 +3804505 3806935 2431 14708299.2862 14708419.8458 -69.2686 -30.2894 92.5982 run9.mat -1 -1 2255 1922775 1923990 +3891050 3908455 17406 14712626.4541 14713495.7938 -69.2644 -30.2901 93.0842 run9.mat -1 -1 2256 1966050 1974753 +3908760 3929437 20678 14713511.0467 14714546.7138 -70.9207 -30.2905 92.6496 run9.mat -1 -1 2256 1974905 1985244 +3929747 3950438 20692 14714561.9818 14715597.0512 -72.5673 -30.2899 92.5575 run9.mat -1 -1 2256 1985399 1995745 +3950746 3971436 20691 14715612.3351 14716645.6243 -74.219 -30.2902 92.609 run9.mat -1 -1 2256 1995899 2006245 +3971743 3986955 15213 14716661.1012 14717422.8779 -75.8653 -30.2901 92.6855 run9.mat -1 -1 2256 2006398 2014004 +4070947 4075520 4574 14721620.1837 14721850.5171 -75.8672 -30.2903 94.4194 run9.mat -1 -1 2257 2056002 2058289 +4075852 4096539 20688 14721867.1874 14722901.9274 -77.5184 -30.2905 92.5326 run9.mat -1 -1 2257 2058455 2068799 +4096849 4117527 20679 14722917.3104 14723950.3231 -79.1672 -30.2903 92.6244 run9.mat -1 -1 2257 2068954 2079293 +4117840 4138518 20679 14723965.9761 14724998.1329 -80.8187 -30.291 92.6448 run9.mat -1 -1 2257 2079450 2089789 +4138824 4159497 20674 14725013.4361 14726047.2932 -82.4676 -30.29 92.6721 run9.mat -1 -1 2257 2089942 2100279 +4159804 4166835 7032 14726062.6464 14726415.5825 -82.4682 -28.6069 92.7686 run9.mat -1 -1 2257 2100433 2103948 +4251091 4263801 12711 14730629.1365 14731264.1055 -82.4694 -28.6073 93.295 run9.mat -1 -1 2258 2146078 2152434 +4264121 4284796 20676 14731280.2377 14732312.9277 -80.8191 -28.6077 92.5051 run9.mat -1 -1 2258 2152594 2162932 +4285104 4305796 20693 14732328.3336 14733363.2485 -79.172 -28.6075 92.5953 run9.mat -1 -1 2258 2163086 2173432 +4306101 4326797 20697 14733378.5016 14734414.5589 -77.5177 -28.6063 92.6043 run9.mat -1 -1 2258 2173585 2183933 +4327105 4346895 19791 14734429.9621 14735417.6714 -75.8673 -28.6053 92.7334 run9.mat -1 -1 2258 2184087 2193982 +4431011 4431109 99 14739624.6005 14739629.5014 -75.8747 -28.5954 121.7651 run9.mat -1 -1 2259 2236043 2236092 +4431423 4452044 20622 14739645.2045 14740674.801 -74.2164 -28.6056 92.8064 run9.mat -1 -1 2259 2236249 2246559 +4452359 4473056 20698 14740690.6812 14741726.4477 -72.5712 -28.6056 92.5617 run9.mat -1 -1 2259 2246717 2257066 +4473361 4494037 20677 14741741.8853 14742776.779 -70.919 -28.6065 92.6624 run9.mat -1 -1 2259 2257218 2267556 +4494345 4515017 20673 14742792.3063 14743826.4752 -69.2697 -28.6068 92.6486 run9.mat -1 -1 2259 2267710 2278047 +4515324 4526794 11471 14743841.9552 14744415.4631 -67.6204 -28.6049 92.7141 run9.mat -1 -1 2259 2278200 2283936 +4611026 4619280 8255 14748626.046 14749038.572 -67.6228 -28.6065 93.5975 run9.mat -1 -1 2260 2326053 2330181 +4619597 4640295 20699 14749054.4251 14750089.5318 -65.9704 -28.606 92.5273 run9.mat -1 -1 2260 2330339 2340689 +4640603 4661276 20674 14750104.9348 14751138.4767 -64.3193 -28.6065 92.5621 run9.mat -1 -1 2260 2340843 2351180 +4661582 4682277 20696 14751153.9032 14752187.2587 -62.669 -28.6064 92.5795 run9.mat -1 -1 2260 2351333 2361681 +4682581 4703240 20660 14752202.5844 14753237.6112 -61.0234 -28.606 92.6294 run9.mat -1 -1 2260 2361833 2372163 +4703549 4706814 3266 14753253.0644 14753416.3484 -59.3688 -28.608 92.7429 run9.mat -1 -1 2260 2372317 2373950 +4791123 4807720 16598 14757631.868 14758461.8962 -59.3731 -28.6069 93.135 run9.mat -1 -1 2261 2416106 2424405 +4808029 4828715 20687 14758477.2266 14759510.2712 -57.7274 -28.6057 92.5983 run9.mat -1 -1 2261 2424560 2434903 +4829022 4849698 20677 14759525.7481 14760559.3196 -56.0751 -28.6072 92.5725 run9.mat -1 -1 2261 2435056 2445395 +4850008 4870697 20690 14760574.8229 14761608.3816 -54.4278 -28.6056 92.5462 run9.mat -1 -1 2261 2445550 2455895 +4871004 4886914 15911 14761623.6128 14762419.7372 -52.7786 -28.6069 92.7908 run9.mat -1 -1 2261 2456048 2464004 +4970988 4974804 3817 14766625.3608 14766816.6133 -52.7809 -28.6062 94.3759 run9.mat -1 -1 2262 2506043 2507951 +4975116 4995792 20677 14766832.0957 14767864.8496 -51.1295 -28.6069 92.5361 run9.mat -1 -1 2262 2508107 2518445 +4996103 5016780 20678 14767880.4055 14768912.5347 -49.4792 -28.6071 92.545 run9.mat -1 -1 2262 2518601 2528940 +5017096 5037777 20682 14768928.338 14769965.3908 -47.8331 -28.6074 92.5615 run9.mat -1 -1 2262 2529098 2539438 +5038084 5058777 20694 14769980.8677 14771014.1783 -46.1833 -28.6075 92.5711 run9.mat -1 -1 2262 2539592 2549939 +5059084 5066793 7710 14771029.6583 14771414.1586 -44.5365 -28.6056 92.9301 run9.mat -1 -1 2262 2550092 2553947 +5150977 5162980 12004 14775624.0324 14776226.2493 -44.532 -28.6069 93.301 run9.mat -1 -1 2263 2596041 2602042 +5163299 5183977 20679 14776242.3344 14777272.7893 -42.8801 -28.6063 92.51 run9.mat -1 -1 2263 2602202 2612542 +5184283 5204975 20693 14777288.2158 14778324.4966 -41.233 -28.6066 92.6288 run9.mat -1 -1 2263 2612695 2623041 +5205284 5225977 20694 14778339.8301 14779373.9548 -39.5828 -28.6067 92.6259 run9.mat -1 -1 2263 2623195 2633543 +5226283 5246773 20491 14779389.3813 14780413.3261 -37.9347 -28.6063 92.6969 run9.mat -1 -1 2263 2633696 2643941 +5330889 5351084 20196 14784619.7623 14785629.1876 -36.2844 -28.6078 92.7626 run9.mat -1 -1 2264 2686001 2696099 +5351406 5372057 20652 14785645.2943 14786680.2501 -34.6333 -28.6056 92.5957 run9.mat -1 -1 2264 2696260 2706586 +5372364 5393057 20694 14786695.727 14787727.4259 -32.9861 -28.6062 92.6031 run9.mat -1 -1 2264 2706739 2717086 +5393365 5414042 20678 14787742.8319 14788777.051 -31.3326 -28.6057 92.6262 run9.mat -1 -1 2264 2717240 2727579 +5414356 5426653 12298 14788792.6724 14789409.6499 -29.6885 -28.608 92.8274 run9.mat -1 -1 2264 2727736 2733885 +5510691 5518105 7415 14793611.385 14793981.7683 -29.6875 -28.6068 93.3704 run9.mat -1 -1 2265 2775906 2779613 +5518423 5539096 20674 14793997.7998 14795028.6801 -28.0317 -28.6052 92.6226 run9.mat -1 -1 2265 2779772 2790109 +5539402 5560098 20697 14795043.8617 14796078.8141 -26.387 -28.6075 92.6365 run9.mat -1 -1 2265 2790262 2800611 +5560403 5581094 20692 14796094.1902 14797129.2896 -24.7386 -28.6063 92.6308 run9.mat -1 -1 2265 2800763 2811109 +5581404 5602059 20656 14797144.9209 14798178.2293 -23.0904 -28.6063 92.7043 run9.mat -1 -1 2265 2811264 2821592 +5602366 5606492 4127 14798193.7062 14798400.4462 -21.4354 -28.6078 93.054 run9.mat -1 -1 2265 2821745 2823808 +5690713 5706381 15669 14802611.9385 14803394.3936 -21.4455 -28.6065 92.8802 run9.mat -1 -1 2266 2865921 2873755 +5706691 5727378 20688 14803410.0218 14804443.9254 -19.7924 -28.6067 92.6442 run9.mat -1 -1 2266 2873910 2884254 +5727684 5748360 20677 14804459.2286 14805492.9246 -18.1433 -28.6062 92.5158 run9.mat -1 -1 2266 2884407 2894745 +5748668 5769360 20693 14805508.2054 14806544.4441 -16.4956 -28.6066 92.6642 run9.mat -1 -1 2266 2894899 2905245 +5769670 5786592 16923 14806560.0754 14807405.7545 -14.8465 -28.6075 92.717 run9.mat -1 -1 2266 2905400 2913862 +5870617 5873479 2863 14811606.0952 14811750.3783 -14.849 -28.6055 96.8566 run9.mat -1 -1 2267 2955877 2957308 +5873796 5894478 20683 14811766.3593 14812799.2878 -13.1923 -28.607 92.4865 run9.mat -1 -1 2267 2957466 2967807 +5894787 5915477 20691 14812814.6213 14813849.5143 -11.5439 -28.6056 92.6406 run9.mat -1 -1 2267 2967962 2978307 +5915785 5936458 20674 14813865.0448 14814897.2829 -9.8983 -28.607 92.4752 run9.mat -1 -1 2267 2978461 2988799 +5936763 5957440 20678 14814912.659 14815946.9655 -8.2449 -28.6066 92.649 run9.mat -1 -1 2267 2988951 2999290 +5957747 5966492 8746 14815962.1997 14816398.6663 -6.5935 -28.606 92.6871 run9.mat -1 -1 2267 2999444 3003816 +6050802 6061766 10965 14820614.9277 14821165.1896 -6.5913 -28.6065 93.0739 run9.mat -1 -1 2268 3045973 3051456 +6062083 6082779 20697 14821181.1706 14822214.4112 -4.9444 -28.6067 92.555 run9.mat -1 -1 2268 3051614 3061962 +6083087 6103759 20673 14822229.9385 14823263.2874 -3.2976 -28.6051 92.6899 run9.mat -1 -1 2268 3062116 3072453 +6104065 6124758 20694 14823278.4689 14824314.5603 -1.6491 -28.6068 92.5936 run9.mat -1 -1 2268 3072606 3082953 +6125066 6145720 20655 14824330.0908 14825362.4348 0.00281 -28.6047 92.7246 run9.mat -1 -1 2268 3083107 3093434 +6146028 6146612 585 14825377.9621 14825407.4035 1.6563 -28.607 93.8805 run9.mat -1 -1 2268 3093588 3093880 +6230925 6250066 19142 14829623.5134 14830580.9327 1.6484 -28.6071 92.8766 run9.mat -1 -1 2269 3136039 3145610 +6250384 6271053 20670 14830596.8388 14831629.4884 3.2947 -28.6059 92.713 run9.mat -1 -1 2269 3145769 3156103 +6271364 6292060 20697 14831645.1017 14832679.816 4.946 -28.606 92.5709 run9.mat -1 -1 2269 3156259 3166607 +6292365 6313039 20675 14832694.948 14833728.2001 6.5945 -28.6059 92.6246 run9.mat -1 -1 2269 3166760 3177097 +6313345 6326691 13347 14833743.6297 14834410.3461 8.2416 -28.6071 92.7786 run9.mat -1 -1 2269 3177250 3183924 +6410863 6417321 6459 14838620.6759 14838943.8607 8.245 -28.6049 93.9395 run9.mat -1 -1 2270 3226012 3229241 +6417631 6438321 20691 14838959.3637 14839992.878 9.8901 -28.6068 92.632 run9.mat -1 -1 2270 3229396 3239741 +6438632 6459318 20687 14840008.5566 14841043.3711 11.5398 -28.6069 92.6289 run9.mat -1 -1 2270 3239897 3250240 +6459628 6480320 20693 14841059.0024 14842092.0593 13.1866 -28.607 92.5342 run9.mat -1 -1 2270 3250395 3260742 +6480624 6501280 20657 14842107.385 14843139.0756 14.8413 -28.6075 92.6992 run9.mat -1 -1 2270 3260894 3271222 +6501586 6506751 5166 14843154.2572 14843414.4206 16.4897 -28.6062 92.7317 run9.mat -1 -1 2270 3271375 3273958 +6590978 6605654 14677 14847624.3265 14848359.3287 16.49 -28.6071 93.2158 run9.mat -1 -1 2271 3316073 3323411 +6605969 6626658 20690 14848375.2089 14849410.2424 18.1382 -28.6053 92.6075 run9.mat -1 -1 2271 3323569 3333913 +6626966 6647640 20675 14849425.7729 14850458.7575 19.7904 -28.6073 92.6319 run9.mat -1 -1 2271 3334067 3344405 +6647947 6668643 20697 14850474.1104 14851507.7879 21.4365 -28.6064 92.671 run9.mat -1 -1 2271 3344559 3354907 +6668950 6686870 17921 14851523.2648 14852418.7478 23.0912 -28.6056 92.793 run9.mat -1 -1 2271 3355061 3364021 +6771183 6772974 1792 14856636.5137 14856726.0981 23.0969 -28.6127 96.2409 run9.mat -1 -1 2272 3406180 3407075 +6773288 6793961 20674 14856741.8893 14857775.7093 24.7375 -28.6063 92.5546 run9.mat -1 -1 2272 3407232 3417569 +6794268 6814962 20695 14857791.0625 14858825.9896 26.3894 -28.6072 92.5847 run9.mat -1 -1 2272 3417723 3428070 +6815272 6835942 20671 14858841.496 14859873.3293 28.0363 -28.6061 92.5574 run9.mat -1 -1 2272 3428225 3438561 +6836251 6856941 20691 14859888.7823 14860921.8831 29.6894 -28.6058 92.6643 run9.mat -1 -1 2272 3438715 3449060 +6857249 6866971 9723 14860937.1639 14861423.4707 31.3365 -28.6084 92.7912 run9.mat -1 -1 2272 3449214 3454075 +6951038 6961036 9999 14865629.5055 14866129.5551 31.3341 -28.6057 93.2215 run9.mat -1 -1 2273 3496111 3501110 +6961347 6982022 20676 14866144.9847 14867176.8472 32.9846 -28.6076 92.4918 run9.mat -1 -1 2273 3501266 3511603 +6982329 7003022 20694 14867192.0814 14868228.3951 34.6316 -28.6064 92.6155 run9.mat -1 -1 2273 3511757 3522104 +7003328 7024004 20677 14868243.6983 14869277.6529 36.281 -28.6074 92.5841 run9.mat -1 -1 2273 3522257 3532595 +7024310 7044982 20673 14869292.8952 14870326.42 37.9338 -28.6065 92.6367 run9.mat -1 -1 2273 3532748 3543085 +7045290 7046811 1522 14870341.9474 14870418.6261 39.5692 -28.6049 92.4679 run9.mat -1 -1 2273 3543239 3543999 +7130970 7149286 18317 14874626.1156 14875539.5844 39.5786 -28.6071 93.0992 run9.mat -1 -1 2274 3586081 3595239 +7149606 7170283 20678 14875555.6455 14876589.6549 41.2295 -28.6073 92.5867 run9.mat -1 -1 2274 3595399 3605738 +7170590 7191263 20674 14876605.0079 14877639.4688 42.8757 -28.6064 92.5552 run9.mat -1 -1 2274 3605892 3616229 +7191572 7212265 20694 14877655.0466 14878690.3425 44.5271 -28.6073 92.5938 run9.mat -1 -1 2274 3616383 3626730 +7212570 7226869 14300 14878705.4745 14879421.6707 46.1777 -28.6059 92.8079 run9.mat -1 -1 2274 3626883 3634033 +7311132 7316527 5396 14883634.613 14883903.3881 46.1789 -28.6057 94.2503 run9.mat -1 -1 2275 3676166 3678875 +7316837 7337526 20690 14883919.0226 14884951.9772 47.8256 -28.6065 92.4917 run9.mat -1 -1 2275 3679019 3689364 +7337833 7358527 20695 14884967.4541 14886004.4619 49.4801 -28.6079 92.6034 run9.mat -1 -1 2275 3689517 3699864 +7358835 7379506 20672 14886019.8683 14887051.6896 51.1294 -28.607 92.6171 run9.mat -1 -1 2275 3700018 3710354 +7379814 7400486 20673 14887067.0925 14888102.9458 52.7797 -28.6063 92.6561 run9.mat -1 -1 2275 3710508 3720845 +7400792 7406929 6138 14888118.1274 14888423.8383 54.421 -28.6066 92.8391 run9.mat -1 -1 2275 3720998 3724066 +7491076 7504770 13695 14892630.6991 14893315.5372 54.4251 -28.6058 93.1594 run9.mat -1 -1 2276 3766142 3772989 +7505093 7525767 20675 14893331.6906 14894367.49 56.0765 -28.6064 92.5983 run9.mat -1 -1 2276 3773150 3783488 +7526074 7546768 20695 14894382.9669 14895416.0075 57.7258 -28.6065 92.5335 run9.mat -1 -1 2276 3783641 3793989 +7547076 7567768 20693 14895431.4105 14896465.5417 59.3756 -28.6074 92.6142 run9.mat -1 -1 2276 3794143 3804489 +7568074 7586849 18776 14896480.7202 14897420.5668 61.0209 -28.6077 92.7222 run9.mat -1 -1 2276 3804642 3814030 +7671084 7672053 970 14901632.347 14901680.5526 61.0284 -28.6113 98.919 run9.mat -1 -1 2277 3856150 3856634 +7672369 7693028 20660 14901696.2334 14902729.2165 62.6679 -28.607 92.629 run9.mat -1 -1 2277 3856792 3867122 +7693336 7714008 20673 14902744.4973 14903778.0615 64.3181 -28.6068 92.6428 run9.mat -1 -1 2277 3867276 3877613 +7714313 7735008 20696 14903793.1965 14904829.3378 65.9677 -28.6075 92.6483 run9.mat -1 -1 2277 3877765 3888113 +7735313 7755993 20681 14904844.591 14905876.6751 67.618 -28.607 92.6397 run9.mat -1 -1 2277 3888266 3898606 +7756312 7766909 10598 14905892.757 14906420.9575 69.2672 -28.608 92.8178 run9.mat -1 -1 2277 3898766 3904064 +7850979 7860118 9140 14910625.9706 14911082.9929 69.2666 -28.6047 93.3274 run9.mat -1 -1 2278 3946101 3950671 +7860431 7881108 20678 14911098.5838 14912132.274 70.9154 -28.6067 92.4861 run9.mat -1 -1 2278 3950827 3961166 +7881418 7902108 20691 14912147.7799 14913182.6851 72.5694 -28.6069 92.6409 run9.mat -1 -1 2278 3961321 3971667 +7902414 7923107 20694 14913197.8666 14914234.7086 74.2177 -28.606 92.5781 run9.mat -1 -1 2278 3971820 3982167 +7923414 7944086 20673 14914250.0616 14915283.328 75.8658 -28.6053 92.712 run9.mat -1 -1 2278 3982320 3992657 +7944394 7946789 2396 14915298.6089 14915417.432 77.514 -28.6031 93.0201 run9.mat -1 -1 2278 3992811 3994008 +8030937 8048297 17361 14919625.2361 14920494.4954 77.516 -28.6056 93.1086 run9.mat -1 -1 2279 4036084 4044764 +8048615 8069287 20673 14920510.2755 14921541.2077 79.1689 -28.6074 92.6292 run9.mat -1 -1 2279 4044923 4055260 +8069596 8090267 20672 14921556.7854 14922590.9153 80.8172 -28.6065 92.5952 run9.mat -1 -1 2279 4055414 4065751 +8090576 8110932 20357 14922606.493 14923623.3838 82.4637 -28.6065 92.6356 run9.mat -1 -1 2279 4065905 4076083 diff --git a/Scripts_20180425/Scripts_20180425/library.txt b/Scripts_20180425/Scripts_20180425/library.txt new file mode 100644 index 0000000..0c5dbbf --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/library.txt @@ -0,0 +1,9411 @@ +startptr endptr nr_samples start_timestamp end_timestamp mean_X mean_Y mean_IC1 run_id energy ionsort closest_offspill_id profile data_start_index data_end_index +263367 348100 84734 8569702.6972 8573940.2118 32.9798 -33.6606 249.9008 run1.mat -1 -1 1 150452 192821 +348350 359642 11293 8573952.5271 8574515.5514 32.9783 -33.6591 250.4115 run1.mat -1 -1 1 192946 198592 +427463 523737 96275 8577909.7079 8582720.517 32.9791 -33.6603 249.9742 run1.mat -1 -1 2 232504 280643 +591469 606831 15363 8586108.5858 8586877.1198 32.9826 -33.6615 250.6452 run1.mat -1 -1 3 314511 322192 +607173 687732 80560 8586894.3396 8590920.4448 32.9811 -16.8332 249.8333 run1.mat -1 -1 3 322363 362645 +755523 851790 96268 8594310.9263 8599123.8177 32.9795 -16.8319 250.0494 run1.mat -1 -1 4 396542 444677 +919581 950712 31132 8602514.6071 8604070.0674 32.9797 -16.832 249.9978 run1.mat -1 -1 5 478574 494140 +951055 1015857 64803 8604087.3591 8607327.2543 32.9818 -0.004888 249.8008 run1.mat -1 -1 5 494312 526714 +1083614 1179892 96279 8610717.0058 8615529.6052 32.9797 -0.0046071 249.9545 run1.mat -1 -1 6 560594 608735 +1247731 1294615 46885 8618921.8404 8621264.8384 32.981 -0.004886 250.1808 run1.mat -1 -1 7 642656 666099 +1294956 1343991 49036 8621281.9573 8623733.3379 32.9814 16.8237 249.7787 run1.mat -1 -1 7 666270 690788 +1411787 1497145 85359 8627125.029 8631392.9178 32.9802 16.8245 249.8525 run1.mat -1 -1 8 724688 767368 +1497395 1505265 7871 8631405.3235 8631799.7261 32.9809 16.8222 250.4819 run1.mat -1 -1 8 767493 771429 +1505515 1508056 2542 8631812.1318 8631938.2235 32.9842 16.8241 249.5073 run1.mat -1 -1 8 771554 772825 +1575995 1638656 62662 8635336.0854 8638467.2433 32.9807 16.8243 249.766 run1.mat -1 -1 9 806795 838127 +1639011 1672273 33263 8638484.8559 8640149.4648 32.9777 33.6532 249.8786 run1.mat -1 -1 9 838305 854937 +1739880 1836164 96285 8643531.7833 8648346.2391 32.98 33.6514 250.0547 run1.mat -1 -1 10 888741 936886 +1904091 1982516 78426 8651741.4184 8655662.7459 32.9795 33.6523 249.9397 run1.mat -1 -1 11 970850 1010065 +1982868 2000367 17500 8655680.3493 8656553.5249 16.4919 33.6511 249.7757 run1.mat -1 -1 11 1010241 1018991 +2070039 2166329 96291 8660036.9992 8664851.8341 16.4863 33.6527 250.0391 run1.mat -1 -1 12 1053828 1101976 +2234103 2328256 94154 8668241.5011 8672947.29 16.4883 33.6519 249.7199 run1.mat -1 -1 13 1135864 1182943 +2328607 2330364 1758 8672964.5774 8673052.4126 16.4852 16.8251 248.9646 run1.mat -1 -1 13 1183118 1183997 +2400179 2496427 96249 8676544.9935 8681357.8682 16.4876 16.8237 249.9685 run1.mat -1 -1 14 1218906 1267032 +2564292 2660529 96238 8684749.439 8689561.5524 16.4882 16.8234 249.9397 run1.mat -1 -1 15 1300966 1349086 +2728333 2741237 12905 8692952.9347 8693599.0561 16.4893 16.8246 250.8729 run1.mat -1 -1 16 1382990 1389442 +2741594 2824627 83034 8693616.9098 8697768.0449 16.4874 -0.0035462 249.8041 run1.mat -1 -1 16 1389620 1431139 +2892356 2988641 96286 8701154.5854 8705968.436 16.4881 -0.0046416 249.8927 run1.mat -1 -1 17 1465005 1513149 +3056447 3085079 28633 8709358.5571 8710790.6574 16.4888 -0.0043325 250.0142 run1.mat -1 -1 18 1547053 1561370 +3085437 3152721 67285 8710808.5648 8714171.7233 16.4883 -16.8319 249.8289 run1.mat -1 -1 18 1561549 1595193 +3220592 3316836 96245 8717565.9428 8722378.072 16.4866 -16.8315 249.7866 run1.mat -1 -1 19 1629130 1677254 +3384791 3429219 44429 8725774.7015 8727997.5406 16.4875 -16.8317 249.7933 run1.mat -1 -1 20 1711233 1733448 +3429568 3481079 51512 8728015.1349 8730592.8411 16.4891 -33.6605 249.8406 run1.mat -1 -1 20 1733623 1759379 +3548902 3645167 96266 8733983.8471 8738796.4113 16.4874 -33.6606 250.0821 run1.mat -1 -1 21 1793292 1841426 +3712937 3773100 60164 8742183.5419 8745192.5446 16.4881 -33.6604 250.14 run1.mat -1 -1 22 1875313 1905396 +3773455 3809205 35751 8745210.1572 8746996.476 -0.0042141 -33.6611 249.7951 run1.mat -1 -1 22 1905574 1923449 +3877143 3973427 96285 8750394.2683 8755209.6884 -0.0051307 -33.6603 249.9584 run1.mat -1 -1 23 1957420 2005564 +4041236 4117202 75967 8758598.2533 8762398.0609 -0.0047852 -33.6606 249.9745 run1.mat -1 -1 24 2039470 2077455 +4117555 4137517 19963 8762415.5743 8763412.3586 -0.0053033 -16.8314 249.7652 run1.mat -1 -1 24 2077631 2087613 +4205265 4301524 96260 8766799.3772 8771612.0516 -0.004643 -16.8322 249.9387 run1.mat -1 -1 25 2121488 2169619 +4369546 4461305 91760 8775015.9416 8779604.4799 -0.0046402 -16.8327 249.9123 run1.mat -1 -1 26 2203632 2249514 +4461642 4465818 4177 8779621.4692 8779830.7301 0.00091433 -0.0052533 249.0946 run1.mat -1 -1 26 2249682 2251770 +4533598 4629883 96286 8783216.8514 8788032.3963 -0.0051884 -0.0042374 249.8356 run1.mat -1 -1 27 2285662 2333806 +4697633 4793919 96287 8791419.4825 8796233.9831 -0.0034249 -0.0042661 249.8492 run1.mat -1 -1 28 2367682 2415827 +4861757 4872207 10451 8799626.9254 8800149.7848 -0.0027779 -0.0029059 250.734 run1.mat -1 -1 29 2449749 2454974 +4872563 4958019 85457 8800167.732 8804438.2336 -0.0032832 16.8232 249.8504 run1.mat -1 -1 29 2455152 2497882 +5025847 5122122 96276 8807831.4611 8812644.1986 -0.0046317 16.8238 249.988 run1.mat -1 -1 30 2531797 2579937 +5190068 5216247 26180 8816041.6074 8817351.7523 -0.0049735 16.8234 249.7238 run1.mat -1 -1 31 2613911 2627001 +5216599 5286364 69766 8817369.2161 8820855.0877 -0.0044691 33.652 249.7415 run1.mat -1 -1 31 2627177 2662061 +5354161 5450411 96251 8824245.5318 8829058.7575 -0.003384 33.6519 249.9662 run1.mat -1 -1 32 2695961 2744089 +5518189 5560089 41901 8832449.0661 8834542.6695 -0.0033401 33.6507 250.1267 run1.mat -1 -1 33 2777979 2798930 +5560438 5614028 53591 8834560.1262 8837241.3878 -16.4961 33.651 249.6438 run1.mat -1 -1 33 2799105 2825900 +5614279 5614479 201 8837253.9427 8837263.9465 -16.4965 33.6527 249.6324 run1.mat -1 -1 33 2826026 2826126 +5682410 5778691 96282 8840657.5724 8845475.8587 -16.4973 33.6524 249.9862 run1.mat -1 -1 34 2860093 2908236 +5846516 5904149 57634 8848864.5914 8851745.4616 -16.496 33.6519 249.7508 run1.mat -1 -1 35 2942150 2970967 +5904504 5942780 38277 8851763.215 8853679.4191 -16.4953 16.8229 249.7953 run1.mat -1 -1 35 2971145 2990284 +6010511 6106793 96283 8857065.4345 8861878.3856 -16.4949 16.8236 249.9249 run1.mat -1 -1 36 3024151 3072294 +6174783 6248190 73408 8865278.4609 8868950.4138 -16.4959 16.8235 249.9659 run1.mat -1 -1 37 3106290 3142995 +6248547 6271073 22527 8868968.4114 8870093.5645 -16.498 -0.0047037 250.0731 run1.mat -1 -1 37 3143174 3154437 +6338863 6435127 96265 8873483.6685 8878295.4279 -16.4972 -0.0039384 249.9265 run1.mat -1 -1 38 3188334 3236468 +6503072 6592253 89182 8881692.5582 8886151.3854 -16.4961 -0.0047277 249.9004 run1.mat -1 -1 39 3270442 3315035 +6592596 6599349 6754 8886168.6772 8886507.6842 -16.4986 -16.8314 249.941 run1.mat -1 -1 39 3315206 3318583 +6667129 6763416 96288 8889898.0901 8894711.6114 -16.4969 -16.8327 249.7327 run1.mat -1 -1 40 3352474 3400619 +6831166 6927445 96280 8898097.8881 8902912.9064 -16.4969 -16.8321 249.9543 run1.mat -1 -1 41 3434496 3482638 +6995381 7003173 7793 8906310.9266 8906699.3597 -16.4953 -16.8351 250.915 run1.mat -1 -1 42 3516607 3520504 +7003524 7091660 88137 8906716.9133 8911122.9563 -16.4971 -33.6605 249.8778 run1.mat -1 -1 42 3520679 3564749 +7159487 7255763 96277 8914516.0677 8919329.0798 -16.4965 -33.661 249.755 run1.mat -1 -1 43 3598664 3646804 +7323581 7347095 23515 8922719.6855 8923893.8245 -16.4962 -33.6605 249.9605 run1.mat -1 -1 44 3680715 3692472 +7347453 7419838 72386 8923911.732 8927533.501 -32.9883 -33.66 249.8554 run1.mat -1 -1 44 3692651 3728845 +7487576 7583869 96294 8930920.6894 8935735.4608 -32.9892 -33.6603 249.9183 run1.mat -1 -1 45 3762716 3810864 +7651652 7690917 39266 8939122.5646 8941087.2336 -32.9877 -33.6599 250.1218 run1.mat -1 -1 46 3844757 3864390 +7691274 7747933 56660 8941105.2348 8943937.3708 -32.9887 -16.8323 249.8252 run1.mat -1 -1 46 3864569 3892900 +7815899 7912199 96301 8947336.2143 8952150.9188 -32.989 -16.8321 249.9679 run1.mat -1 -1 47 3926884 3975036 +7979935 8034977 55043 8955538.9958 8958289.6269 -32.9898 -16.8319 250.063 run1.mat -1 -1 48 4008906 4036428 +8035320 8076206 40887 8958306.9221 8960350.95 -32.9882 -0.0044747 249.8204 run1.mat -1 -1 48 4036599 4057044 +8144246 8240499 96254 8963751.8773 8968566.8894 -32.9889 -0.0041916 249.9853 run1.mat -1 -1 49 4091065 4139194 +8308246 8379058 70813 8971953.1235 8975493.6189 -32.9892 -0.0036123 250.0865 run1.mat -1 -1 50 4173068 4208476 +8379415 8404528 25114 8975511.4726 8976767.4239 -32.9864 16.8235 249.9368 run1.mat -1 -1 50 4208655 4221212 +8472509 8568778 96270 8980167.2174 8984980.6859 -32.9887 16.8239 249.931 run1.mat -1 -1 51 4255204 4303340 +8636531 8723158 86628 8988368.0188 8992699.0469 -32.9887 16.8242 249.9256 run1.mat -1 -1 52 4337218 4380534 +8723512 8732811 9300 8992716.7504 8993181.7936 -32.9925 33.6527 250.0569 run1.mat -1 -1 52 4380711 4385360 +8800753 8897015 96263 8996580.0941 9001393.3319 -32.988 33.6521 249.944 run1.mat -1 -1 53 4419333 4467466 +8964880 9061077 96198 9004785.9301 9009594.9812 -32.9874 33.6509 249.8433 run1.mat -1 -1 54 4501400 4549501 +9128897 9133943 5047 9012986.7892 9013237.1467 -32.9917 33.6536 253.9543 run1.mat -1 -1 55 4583412 4585935 +292620 313019 20400 15038209.6964 15039228.2315 82.4663 -26.9224 92.7655 run10.mat -1 -1 57 161532 171732 +313326 334041 20716 15039243.7084 15040280.7482 80.8206 -26.9224 92.5606 run10.mat -1 -1 57 171885 182243 +334347 355039 20693 15040295.9297 15041330.7963 79.1653 -26.9235 92.5285 run10.mat -1 -1 57 182396 192742 +355346 376038 20693 15041346.3351 15042381.5062 77.5163 -26.9234 92.5435 run10.mat -1 -1 57 192896 203243 +376343 388412 12070 15042396.6411 15042997.8199 75.8668 -26.9219 92.7384 run10.mat -1 -1 57 203395 209430 +472563 480217 7655 15047207.4556 15047590.0663 75.8695 -26.9224 93.6457 run10.mat -1 -1 58 251507 255334 +480540 501238 20699 15047606.2196 15048639.3528 74.2196 -26.9226 92.5382 run10.mat -1 -1 58 255496 265845 +501547 522220 20674 15048654.8088 15049690.2436 72.5666 -26.924 92.561 run10.mat -1 -1 58 266000 276337 +522527 543218 20692 15049705.7205 15050739.1239 70.9183 -26.922 92.6206 run10.mat -1 -1 58 276490 286836 +543525 564197 20673 15050754.3581 15051786.4828 69.2665 -26.9216 92.594 run10.mat -1 -1 58 286989 297326 +564505 568352 3848 15051802.0101 15051995.9504 67.6158 -26.923 92.8367 run10.mat -1 -1 58 297480 299403 +652655 668516 15862 15056210.0048 15057004.6941 67.6175 -26.9214 93.0272 run10.mat -1 -1 59 341557 349488 +668848 689501 20654 15057021.2976 15058054.0401 65.9687 -26.9238 92.5852 run10.mat -1 -1 59 349654 359981 +689809 710498 20690 15058069.3239 15059103.8528 64.3176 -26.922 92.5877 run10.mat -1 -1 59 360135 370480 +710807 731501 20695 15059119.4336 15060154.9069 62.6699 -26.922 92.6716 run10.mat -1 -1 59 370634 380982 +731807 748432 16626 15060170.0885 15060999.468 61.0218 -26.9227 92.7792 run10.mat -1 -1 59 381135 389448 +832524 835580 3057 15065204.4211 15065358.5068 61.0186 -26.9238 94.6479 run10.mat -1 -1 60 431496 433024 +835917 856582 20666 15065375.4961 15066409.2205 59.3743 -26.9234 92.5341 run10.mat -1 -1 60 433192 443525 +856889 877582 20694 15066424.3408 15067457.7922 57.7283 -26.9238 92.6701 run10.mat -1 -1 60 443678 454025 +877888 898583 20696 15067472.9738 15068507.7029 56.0747 -26.9233 92.5487 run10.mat -1 -1 60 454178 464527 +898889 919563 20675 15068522.8845 15069557.6157 54.4308 -26.9223 92.7457 run10.mat -1 -1 60 464680 475017 +919868 928291 8424 15069572.7507 15069992.5343 52.7778 -26.9203 92.8172 run10.mat -1 -1 60 475170 479381 +1012418 1023801 11384 15074199.3199 15074769.8617 52.778 -26.9219 93.3095 run10.mat -1 -1 61 521446 527138 +1024123 1044802 20680 15074786.0948 15075818.1349 51.1282 -26.9243 92.4816 run10.mat -1 -1 61 527299 537639 +1045113 1065803 20691 15075833.6263 15076868.3612 49.4795 -26.9222 92.5559 run10.mat -1 -1 61 537794 548140 +1066108 1086797 20690 15076883.7372 15077918.3197 47.8299 -26.9228 92.6353 run10.mat -1 -1 61 548293 558637 +1087106 1107761 20656 15077933.7757 15078968.0399 46.1805 -26.9222 92.6662 run10.mat -1 -1 61 558792 569120 +1108067 1108311 245 15078983.2215 15078995.327 44.5186 -26.9318 90.9352 run10.mat -1 -1 61 569273 569395 +1192591 1212058 19468 15083210.313 15084181.715 44.5272 -26.9221 92.8225 run10.mat -1 -1 62 611537 621271 +1212388 1233059 20672 15084198.0873 15085231.6257 42.8791 -26.922 92.6051 run10.mat -1 -1 62 621436 631772 +1233369 1254045 20677 15085247.0058 15086280.7243 41.2266 -26.9232 92.6197 run10.mat -1 -1 62 631927 642265 +1254358 1262757 8400 15086296.5037 15086716.3662 39.5788 -26.9232 92.7382 run10.mat -1 -1 62 642421 646621 +1263575 1263637 63 15086757.9682 15086761.1214 127.9375 127.9375 0 run10.mat -1 -1 62 647030 647061 +1263975 1264097 123 15086778.3115 15086784.5162 127.9375 127.9375 0 run10.mat -1 -1 62 647230 647291 +1264635 1264997 363 15086811.8779 15086830.2886 127.9375 127.9375 0.060524 run10.mat -1 -1 62 647560 647741 +1265575 1266437 863 15086859.6847 15086903.5245 127.9375 127.9375 0.16599 run10.mat -1 -1 62 648030 648461 +1504449 1516102 11654 15098803.3257 15099384.4552 39.5807 -26.9223 93.3207 run10.mat -1 -1 63 767473 773299 +1516443 1537104 20662 15099401.3733 15100436.4493 37.9343 -26.9239 92.5207 run10.mat -1 -1 63 773470 783801 +1537411 1558108 20698 15100451.7555 15101483.9165 36.2831 -26.9231 92.6487 run10.mat -1 -1 63 783955 794303 +1558415 1579107 20693 15101499.2724 15102534.7044 34.6355 -26.9224 92.5709 run10.mat -1 -1 63 794457 804803 +1579413 1600068 20656 15102550.1309 15103582.703 32.9807 -26.9244 92.7004 run10.mat -1 -1 63 804956 815284 +1684236 1704243 20008 15107792.9564 15108791.877 31.3383 -26.9232 92.9684 run10.mat -1 -1 64 857370 867374 +1704573 1725226 20654 15108808.5134 15109840.9342 29.6858 -26.923 92.5004 run10.mat -1 -1 64 867539 877866 +1725534 1746225 20692 15109856.3401 15110892.0853 28.0378 -26.9223 92.6268 run10.mat -1 -1 64 878020 888366 +1746533 1767225 20693 15110907.3661 15111940.8163 26.3835 -26.9233 92.6142 run10.mat -1 -1 64 888520 898867 +1767532 1780109 12578 15111956.2932 15112583.7314 24.7408 -26.9227 92.7509 run10.mat -1 -1 64 899020 905308 +1864210 1871444 7235 15116789.1039 15117152.8295 24.7369 -26.9195 93.5011 run10.mat -1 -1 65 947361 950978 +1871766 1892442 20677 15117168.6886 15118202.2215 23.0877 -26.9227 92.5048 run10.mat -1 -1 65 951139 961477 +1892752 1913448 20697 15118217.8528 15119251.7716 21.4346 -26.9217 92.612 run10.mat -1 -1 65 961632 971981 +1913756 1934424 20669 15119267.0524 15120298.7991 19.7851 -26.9221 92.6112 run10.mat -1 -1 65 972135 982469 +1934731 1955408 20678 15120314.3951 15121349.5878 18.1371 -26.9225 92.6892 run10.mat -1 -1 65 982623 992962 +1955714 1959990 4277 15121365.0143 15121579.8424 16.4877 -26.9238 92.8297 run10.mat -1 -1 65 993115 995253 +2044296 2059784 15489 15125794.8772 15126569.2094 16.4883 -26.9228 93.0168 run10.mat -1 -1 66 1037408 1045152 +2060102 2080768 20667 15126584.9863 15127617.7678 14.8428 -26.9249 92.6086 run10.mat -1 -1 66 1045311 1055645 +2081074 2101767 20694 15127633.0742 15128669.9702 13.1891 -26.9223 92.5625 run10.mat -1 -1 66 1055798 1066145 +2102073 2122759 20687 15128685.2731 15129718.6019 11.5432 -26.9239 92.6057 run10.mat -1 -1 66 1066298 1076641 +2123072 2140090 17019 15129734.1308 15130584.5312 9.8929 -26.9233 92.743 run10.mat -1 -1 66 1076798 1085307 +2224173 2227002 2830 15134787.8719 15134929.541 9.8946 -26.9222 95.8197 run10.mat -1 -1 67 1127351 1128765 +2227308 2247987 20680 15134945.1036 15135978.8574 8.2456 -26.9227 92.6165 run10.mat -1 -1 67 1128918 1139258 +2248295 2268989 20695 15135994.3848 15137028.7744 6.5934 -26.9224 92.5929 run10.mat -1 -1 67 1139412 1149760 +2269295 2289989 20695 15137043.9559 15138081.4078 4.9457 -26.9218 92.5971 run10.mat -1 -1 67 1149913 1160260 +2290295 2310949 20655 15138096.7726 15139127.7725 3.2972 -26.9231 92.6218 run10.mat -1 -1 67 1160413 1170741 +2311266 2319968 8703 15139143.7554 15139579.3497 1.6491 -26.9214 92.8312 run10.mat -1 -1 67 1170899 1175250 +2404060 2415065 11006 15143783.7856 15144333.3683 1.6516 -26.9226 93.3117 run10.mat -1 -1 68 1217298 1222800 +2415385 2436068 20684 15144349.2445 15145382.394 0.00083778 -26.9233 92.5945 run10.mat -1 -1 68 1222960 1233302 +2436374 2457066 20693 15145397.6999 15146434.3445 -1.6476 -26.9231 92.6547 run10.mat -1 -1 68 1233455 1243802 +2457374 2478047 20674 15146449.6253 15147482.3779 -3.2948 -26.9232 92.5761 run10.mat -1 -1 68 1243956 1254293 +2478354 2499028 20675 15147497.8548 15148532.206 -4.9469 -26.9224 92.7383 run10.mat -1 -1 68 1254447 1264784 +2499334 2499848 515 15148547.3906 15148572.8968 -6.5734 -26.9252 92.8991 run10.mat -1 -1 68 1264937 1265194 +2585987 2605343 19357 15152879.2809 15153847.9819 -6.5988 -26.9226 93.3004 run10.mat -1 -1 69 1308265 1317930 +2605670 2626364 20695 15153864.2054 15154900.3756 -8.2468 -26.9233 92.6486 run10.mat -1 -1 69 1318107 1328454 +2626672 2647324 20653 15154915.906 15155946.9492 -9.8997 -26.9234 92.5685 run10.mat -1 -1 69 1328608 1338935 +2647635 2668327 20693 15155962.3955 15156996.8044 -11.5461 -26.922 92.7092 run10.mat -1 -1 69 1339091 1349437 +2668633 2681769 13137 15157012.2278 15157670.4396 -13.1974 -26.9219 92.8152 run10.mat -1 -1 69 1349590 1356158 +2765858 2772425 6568 15161874.167 15162200.6728 -13.1967 -26.9199 93.7538 run10.mat -1 -1 70 1398204 1401488 +2772730 2793449 20720 15162215.8996 15163252.1088 -14.8454 -26.9217 92.5543 run10.mat -1 -1 70 1401641 1412001 +2793755 2814441 20687 15163267.412 15164302.7606 -16.4957 -26.9221 92.5885 run10.mat -1 -1 70 1412154 1422497 +2814751 2835427 20677 15164318.3888 15165353.3616 -18.1433 -26.9231 92.6334 run10.mat -1 -1 70 1422652 1432991 +2835733 2856387 20655 15165368.5432 15166402.3692 -19.7883 -26.9235 92.6705 run10.mat -1 -1 70 1433144 1443471 +2856697 2861649 4953 15166417.9974 15166662.8829 -21.4408 -26.9248 92.8779 run10.mat -1 -1 70 1443626 1446102 +2945705 2960525 14821 15170865.9219 15171606.8276 -21.4357 -26.9232 93.0822 run10.mat -1 -1 71 1488132 1495543 +2960845 2981547 20703 15171622.9599 15172657.3803 -23.0892 -26.9213 92.5572 run10.mat -1 -1 71 1495703 1506054 +2981855 3002527 20673 15172672.7835 15173707.001 -24.7395 -26.9228 92.529 run10.mat -1 -1 71 1506208 1516545 +3002835 3023510 20676 15173722.2818 15174758.0985 -26.3857 -26.9216 92.5638 run10.mat -1 -1 71 1516699 1527036 +3023818 3041527 17710 15174773.411 15175656.4162 -28.0338 -26.9233 92.7175 run10.mat -1 -1 71 1527190 1536045 +3125642 3127728 2087 15179864.3931 15179967.8859 -28.0331 -26.9171 96.1066 run10.mat -1 -1 72 1578105 1579148 +3128035 3148727 20693 15179983.1171 15181015.5858 -29.6867 -26.9218 92.561 run10.mat -1 -1 72 1579301 1589648 +3149037 3169728 20692 15181030.9659 15182067.8052 -31.3361 -26.9238 92.568 run10.mat -1 -1 72 1589803 1600149 +3170035 3190729 20695 15182083.1584 15183116.116 -32.9844 -26.9224 92.6124 run10.mat -1 -1 72 1600302 1610650 +3191035 3211709 20675 15183131.4189 15184166.9308 -34.6311 -26.9228 92.6159 run10.mat -1 -1 72 1610803 1621140 +3212014 3221387 9374 15184182.3746 15184651.312 -36.2912 -26.9205 92.8255 run10.mat -1 -1 72 1621292 1625979 +3305630 3315966 10337 15188862.1266 15189380.5666 -36.2849 -26.9244 93.0356 run10.mat -1 -1 73 1668103 1673271 +3316291 3336971 20681 15189396.8198 15190429.0741 -37.9378 -26.9223 92.4727 run10.mat -1 -1 73 1673433 1683774 +3337278 3357967 20690 15190444.427 15191479.8563 -39.582 -26.9234 92.6847 run10.mat -1 -1 73 1683927 1694272 +3358275 3378946 20672 15191495.1371 15192529.4426 -41.2353 -26.9217 92.581 run10.mat -1 -1 73 1694426 1704762 +3379257 3399923 20667 15192544.9958 15193576.5628 -42.8828 -26.9219 92.7623 run10.mat -1 -1 73 1704918 1715251 +3400234 3401407 1174 15193592.2414 15193651.3763 -44.5318 -26.9233 92.1755 run10.mat -1 -1 73 1715407 1715993 +3485439 3504087 18649 15197853.6078 15198785.8974 -44.536 -26.9218 92.9414 run10.mat -1 -1 74 1758011 1767336 +3504393 3525067 20675 15198801.3239 15199835.5457 -46.1812 -26.9232 92.6047 run10.mat -1 -1 74 1767489 1777826 +3525377 3546070 20694 15199850.9258 15200886.7105 -47.8316 -26.9241 92.6308 run10.mat -1 -1 74 1777981 1788328 +3546380 3567049 20670 15200902.0905 15201934.167 -49.4777 -26.9225 92.5927 run10.mat -1 -1 74 1788483 1798818 +3567356 3581287 13932 15201949.5199 15202646.2584 -51.1294 -26.9241 92.7818 run10.mat -1 -1 74 1798971 1805937 +3665382 3671268 5887 15206849.235 15207145.2298 -51.1276 -26.9257 94.3068 run10.mat -1 -1 75 1847986 1850930 +3671575 3692288 20714 15207160.461 15208194.7337 -52.7767 -26.9232 92.569 run10.mat -1 -1 75 1851083 1861440 +3692594 3713290 20697 15208210.0396 15209246.0947 -54.4253 -26.9237 92.5071 run10.mat -1 -1 75 1861593 1871941 +3713594 3734272 20679 15209261.183 15210295.8849 -56.0748 -26.9239 92.6241 run10.mat -1 -1 75 1872093 1882433 +3734581 3755249 20669 15210311.4626 15211345.6935 -57.7243 -26.9222 92.7525 run10.mat -1 -1 75 1882588 1892922 +3755554 3761167 5614 15211360.9467 15211641.5756 -59.376 -26.9266 92.8329 run10.mat -1 -1 75 1893075 1895881 +3845155 3859327 14173 15215839.8595 15216547.0905 -59.3755 -26.9259 93.1379 run10.mat -1 -1 76 1937877 1944963 +3859652 3880332 20681 15216563.4749 15217597.8053 -61.023 -26.9223 92.5596 run10.mat -1 -1 76 1945126 1955466 +3880636 3901331 20696 15217612.951 15218649.6735 -62.6729 -26.9251 92.6231 run10.mat -1 -1 76 1955618 1965966 +3901638 3922313 20676 15218665.0528 15219697.1054 -64.3222 -26.9219 92.599 run10.mat -1 -1 76 1966120 1976458 +3922617 3941006 18390 15219712.3083 15220633.6279 -65.9724 -26.9218 92.734 run10.mat -1 -1 76 1976610 1985804 +4025071 4026409 1339 15224835.0208 15224902.2276 -65.9673 -26.9251 96.9412 run10.mat -1 -1 77 2027839 2028508 +4026732 4047398 20667 15224918.4516 15225954.0691 -67.6255 -26.9224 92.6304 run10.mat -1 -1 77 2028670 2039002 +4047707 4068393 20687 15225969.4025 15227002.162 -69.2716 -26.9214 92.642 run10.mat -1 -1 77 2039157 2049501 +4068699 4089389 20691 15227017.4649 15228051.0488 -70.9198 -26.9221 92.5237 run10.mat -1 -1 77 2049654 2059999 +4089698 4110372 20675 15228066.6297 15229100.3989 -72.5732 -26.9217 92.6354 run10.mat -1 -1 77 2060153 2070491 +4110681 4120866 10186 15229115.7293 15229625.9427 -74.2227 -26.9227 92.9148 run10.mat -1 -1 77 2070646 2075739 +4206908 4216454 9547 15233926.7434 15234404.6284 -74.2176 -26.9235 93.4009 run10.mat -1 -1 78 2118761 2123534 +4216780 4237475 20696 15234420.8055 15235453.6816 -75.8669 -26.9227 92.514 run10.mat -1 -1 78 2123697 2134046 +4237782 4258458 20677 15235468.9158 15236504.7646 -77.5149 -26.9232 92.6518 run10.mat -1 -1 78 2134199 2144538 +4258765 4279438 20674 15236519.9958 15237555.5406 -79.1676 -26.9227 92.6855 run10.mat -1 -1 78 2144691 2155028 +4279753 4300414 20662 15237571.1687 15238602.6062 -80.8147 -26.9227 92.6806 run10.mat -1 -1 78 2155186 2165516 +4300720 4302726 2007 15238618.0944 15238719.6282 -82.462 -26.9227 93.2005 run10.mat -1 -1 78 2165669 2166672 +4386799 4404537 17739 15242922.5828 15243809.2534 -82.4662 -26.9227 92.7996 run10.mat -1 -1 79 2208711 2217580 +4404864 4425518 20655 15243825.4769 15244857.3695 -82.463 -25.243 92.6372 run10.mat -1 -1 79 2217744 2228071 +4425824 4446520 20697 15244872.4433 15245907.9754 -80.8172 -25.2429 92.5093 run10.mat -1 -1 79 2228224 2238572 +4446826 4467502 20677 15245923.0493 15246957.2105 -79.1685 -25.243 92.6235 run10.mat -1 -1 79 2238725 2249064 +4467818 4482585 14768 15246973.1412 15247710.5868 -77.5191 -25.243 92.7028 run10.mat -1 -1 79 2249222 2256606 +4566687 4571607 4921 15251916.4196 15252161.4745 -77.5193 -25.2414 94.025 run10.mat -1 -1 80 2298659 2301119 +4571921 4592618 20698 15252177.1777 15253214.2847 -75.8699 -25.2434 92.5436 run10.mat -1 -1 80 2301276 2311625 +4592926 4613601 20676 15253229.6876 15254261.9222 -74.2253 -25.2432 92.6637 run10.mat -1 -1 80 2311779 2322117 +4613907 4634597 20691 15254277.1038 15255311.8016 -72.5727 -25.2423 92.7004 run10.mat -1 -1 80 2322270 2332615 +4634905 4655563 20659 15255327.2048 15256360.8159 -70.9209 -25.2432 92.6757 run10.mat -1 -1 80 2332769 2343099 +4655883 4662485 6603 15256376.9482 15256707.3042 -69.2786 -25.2463 92.7207 run10.mat -1 -1 80 2343259 2346560 +4746586 4759704 13119 15260912.2325 15261565.7619 -69.2674 -25.2438 93.2775 run10.mat -1 -1 81 2388612 2395171 +4760025 4780681 20657 15261582.0658 15262615.1472 -67.6221 -25.2444 92.4436 run10.mat -1 -1 81 2395332 2405661 +4780989 4801680 20692 15262630.6745 15263667.1677 -65.9712 -25.2435 92.6754 run10.mat -1 -1 81 2405815 2416161 +4801988 4822681 20694 15263682.5707 15264717.0546 -64.3206 -25.2435 92.5735 run10.mat -1 -1 81 2416315 2426661 +4822989 4842365 19377 15264732.6441 15265700.9479 -62.6693 -25.2433 92.8064 run10.mat -1 -1 81 2426815 2436504 +4928474 4928866 393 15270007.4048 15270026.8531 -62.6839 -25.242 102.8606 run10.mat -1 -1 82 2479560 2479756 +4929184 4949820 20637 15270042.6301 15271074.0917 -61.0234 -25.2436 92.6994 run10.mat -1 -1 82 2479915 2490234 +4950129 4970820 20692 15271089.5447 15272122.3982 -59.3725 -25.2438 92.6486 run10.mat -1 -1 82 2490388 2500734 +4971128 4991822 20695 15272137.8021 15273173.1283 -57.7248 -25.2432 92.6076 run10.mat -1 -1 82 2500888 2511236 +4992127 5012801 20675 15273188.5043 15274222.7854 -56.0751 -25.2436 92.6909 run10.mat -1 -1 82 2511388 2521725 +5013109 5024264 11156 15274238.3128 15274795.3324 -54.4272 -25.2435 92.7589 run10.mat -1 -1 82 2521879 2527457 +5108358 5116928 8571 15279000.8937 15279430.7 -54.4241 -25.2417 93.4799 run10.mat -1 -1 83 2569506 2573791 +5117237 5137941 20705 15279446.15 15280480.1093 -52.7794 -25.2432 92.5361 run10.mat -1 -1 83 2573946 2584298 +5138247 5158920 20674 15280495.5358 15281528.9623 -51.1274 -25.2433 92.653 run10.mat -1 -1 83 2584451 2594788 +5159227 5179922 20696 15281544.0826 15282577.9345 -49.4814 -25.244 92.5432 run10.mat -1 -1 83 2594942 2605290 +5180228 5200881 20654 15282593.1191 15283627.1974 -47.8286 -25.2426 92.7282 run10.mat -1 -1 83 2605443 2615770 +5201186 5204164 2979 15283642.5735 15283792.1654 -46.1917 -25.2408 93.1064 run10.mat -1 -1 83 2615922 2617411 +5288236 5305007 16772 15287993.7096 15288834.0279 -46.1859 -25.243 93.0283 run10.mat -1 -1 84 2659449 2667835 +5305320 5326002 20683 15288849.6809 15289882.4412 -44.5332 -25.2434 92.5667 run10.mat -1 -1 84 2667992 2678333 +5326306 5346987 20682 15289897.5235 15290933.3718 -42.8821 -25.2426 92.5522 run10.mat -1 -1 84 2678485 2688826 +5347303 5367981 20679 15290949.3001 15291984.4572 -41.2336 -25.2432 92.5684 run10.mat -1 -1 84 2688984 2699323 +5368289 5384024 15736 15291999.8604 15292784.1108 -39.584 -25.2438 92.8049 run10.mat -1 -1 84 2699477 2707345 +5468106 5472070 3965 15296988.1488 15297187.9875 -39.5927 -25.2439 94.4882 run10.mat -1 -1 85 2749388 2751370 +5472381 5493061 20681 15297203.6661 15298235.267 -37.9327 -25.2435 92.6247 run10.mat -1 -1 85 2751526 2761866 +5493366 5514065 20700 15298250.6431 15299287.1731 -36.2857 -25.243 92.6383 run10.mat -1 -1 85 2762019 2772368 +5514371 5535061 20691 15299302.3577 15300338.7317 -34.6321 -25.244 92.5731 run10.mat -1 -1 85 2772521 2782867 +5535368 5556039 20672 15300353.9629 15301385.6249 -32.9839 -25.242 92.691 run10.mat -1 -1 85 2783021 2793356 +5556348 5563883 7536 15301400.9583 15301777.6257 -31.3323 -25.2446 92.9213 run10.mat -1 -1 85 2793511 2797279 +5647947 5660155 12209 15305980.5371 15306590.9829 -31.3333 -25.2435 93.1668 run10.mat -1 -1 86 2839313 2845417 +5660469 5681160 20692 15306606.6895 15307643.5272 -29.6884 -25.2433 92.5141 run10.mat -1 -1 86 2845574 2855920 +5681469 5702142 20674 15307658.9802 15308690.3948 -28.034 -25.2433 92.5959 run10.mat -1 -1 86 2856074 2866411 +5702448 5723143 20696 15308705.8213 15309739.4216 -26.3843 -25.2432 92.5365 run10.mat -1 -1 86 2866564 2876912 +5723449 5743783 20335 15309754.6062 15310771.504 -24.7378 -25.2431 92.7704 run10.mat -1 -1 86 2877065 2887232 +5827862 5848224 20363 15314977.0089 15315994.2026 -23.091 -25.2439 92.8995 run10.mat -1 -1 87 2929274 2939455 +5848537 5869202 20666 15316009.7315 15317044.968 -21.4386 -25.2426 92.6349 run10.mat -1 -1 87 2939612 2949944 +5869509 5890204 20696 15317060.0726 15318092.81 -19.7865 -25.2431 92.6196 run10.mat -1 -1 87 2950098 2960446 +5890519 5911183 20665 15318108.6934 15319142.7798 -18.143 -25.2424 92.6309 run10.mat -1 -1 87 2960604 2970936 +5911489 5923642 12154 15319157.9583 15319766.7895 -16.4934 -25.2437 92.8196 run10.mat -1 -1 87 2971089 2977166 +6007729 6015269 7541 15323968.2335 15324346.9734 -16.4943 -25.2409 93.5221 run10.mat -1 -1 88 3019211 3022981 +6015583 6036268 20686 15324362.555 15325398.5695 -14.8463 -25.2429 92.5045 run10.mat -1 -1 88 3023138 3033482 +6036578 6057262 20685 15325414.0727 15326447.3397 -13.1921 -25.2419 92.6759 run10.mat -1 -1 88 3033637 3043979 +6057570 6078244 20675 15326462.6206 15327494.4007 -11.5465 -25.2433 92.622 run10.mat -1 -1 88 3044133 3054470 +6078551 6099224 20674 15327509.6319 15328544.8528 -9.8967 -25.2434 92.7295 run10.mat -1 -1 88 3054624 3064961 +6099531 6103502 3972 15328560.3297 15328760.5587 -8.2522 -25.2449 92.7713 run10.mat -1 -1 88 3065114 3067100 +6187573 6203323 15751 15332963.6144 15333749.2328 -8.2461 -25.2429 93.079 run10.mat -1 -1 89 3109137 3117013 +6203634 6224305 20672 15333764.6624 15334799.7404 -6.5943 -25.2433 92.6015 run10.mat -1 -1 89 3117168 3127504 +6224611 6245305 20695 15334815.0436 15335850.0187 -4.9447 -25.2426 92.5951 run10.mat -1 -1 89 3127657 3138005 +6245610 6266286 20677 15335865.1506 15336897.3159 -3.2978 -25.2435 92.5775 run10.mat -1 -1 89 3138157 3148495 +6266592 6283342 16751 15336912.6218 15337752.3281 -1.6469 -25.2436 92.852 run10.mat -1 -1 89 3148648 3157024 +6367320 6370367 3048 15341951.2786 15342103.6872 -1.6495 -25.2444 94.8613 run10.mat -1 -1 90 3199015 3200538 +6370675 6391387 20713 15342119.0931 15343155.0038 0.00066307 -25.2435 92.5096 run10.mat -1 -1 90 3200692 3211049 +6391694 6412367 20674 15343170.3569 15344200.2632 1.6501 -25.2428 92.4903 run10.mat -1 -1 90 3211202 3221539 +6412675 6433355 20681 15344215.6664 15345251.974 3.2953 -25.2435 92.5832 run10.mat -1 -1 90 3221693 3232034 +6433670 6454346 20677 15345267.7271 15346302.8172 4.9446 -25.2428 92.7041 run10.mat -1 -1 90 3232191 3242530 +6454656 6463222 8567 15346318.3232 15346745.9857 6.595 -25.2433 92.8491 run10.mat -1 -1 90 3242685 3246968 +6547219 6558435 11217 15350945.7558 15351504.6872 6.5913 -25.2428 93.3682 run10.mat -1 -1 91 3288968 3294576 +6558753 6579428 20676 15351520.5933 15352556.5273 8.2422 -25.2441 92.575 run10.mat -1 -1 91 3294735 3305073 +6579733 6600426 20694 15352571.6593 15353607.3767 9.8903 -25.2431 92.5803 run10.mat -1 -1 91 3305226 3315573 +6600731 6621424 20694 15353622.7528 15354654.1886 11.5398 -25.2429 92.5933 run10.mat -1 -1 91 3315725 3326072 +6621733 6642385 20653 15354669.522 15355702.4926 13.1883 -25.2425 92.7535 run10.mat -1 -1 91 3326227 3336553 +6642691 6643061 371 15355717.9191 15355736.5721 14.8095 -25.2491 94.1457 run10.mat -1 -1 91 3336706 3336891 +6727140 6746592 19453 15359942.2326 15360913.4279 14.8399 -25.244 93.0426 run10.mat -1 -1 92 3378933 3388659 +6746901 6767587 20687 15360928.7614 15361965.1101 16.4908 -25.2441 92.5378 run10.mat -1 -1 92 3388813 3399157 +6767895 6788568 20674 15361980.391 15363012.3397 18.1409 -25.2441 92.5953 run10.mat -1 -1 92 3399311 3409648 +6788876 6809567 20692 15363027.6817 15364062.3672 19.7891 -25.2437 92.6517 run10.mat -1 -1 92 3409802 3420148 +6809873 6822901 13029 15364077.7937 15364728.6628 21.4391 -25.2432 92.737 run10.mat -1 -1 92 3420301 3426816 +6906820 6913635 6816 15368927.2916 15369264.4564 21.4332 -25.2436 93.6347 run10.mat -1 -1 93 3468777 3472189 +6913953 6934629 20677 15369280.3595 15370316.866 23.0904 -25.2435 92.4496 run10.mat -1 -1 93 3472343 3482682 +6934936 6955627 20692 15370332.0972 15371367.5762 24.7373 -25.2435 92.5977 run10.mat -1 -1 93 3482835 3493181 +6955933 6976612 20680 15371382.8793 15372415.7448 26.3901 -25.2427 92.6458 run10.mat -1 -1 93 3493334 3503674 +6976919 6997586 20668 15372430.976 15373462.2501 28.0365 -25.2429 92.6336 run10.mat -1 -1 93 3503828 3514161 +6997895 7002741 4847 15373477.5836 15373719.8957 29.6898 -25.246 92.5508 run10.mat -1 -1 93 3514316 3516739 +7086841 7101726 14886 15377927.0816 15378670.5781 29.6871 -25.2425 92.9897 run10.mat -1 -1 94 3558791 3566234 +7102040 7122709 20670 15378686.4079 15379719.5085 31.3358 -25.2439 92.6082 run10.mat -1 -1 94 3566391 3576726 +7123018 7143709 20692 15379734.842 15380771.1024 32.9834 -25.2435 92.5869 run10.mat -1 -1 94 3576880 3587226 +7144015 7164710 20696 15380786.4736 15381821.2516 34.6338 -25.2431 92.6823 run10.mat -1 -1 94 3587379 3597727 +7165016 7182621 17606 15381836.4332 15382715.3201 36.2828 -25.2423 92.9285 run10.mat -1 -1 94 3597880 3606683 +7266708 7268793 2086 15386921.7746 15387026.0446 36.2857 -25.2445 96.4362 run10.mat -1 -1 95 3648729 3649771 +7269109 7289785 20677 15387041.8477 15388075.7801 37.9323 -25.2434 92.5297 run10.mat -1 -1 95 3649929 3660267 +7290093 7310768 20676 15388091.0609 15389121.9068 39.5775 -25.2433 92.5284 run10.mat -1 -1 95 3660421 3670760 +7311074 7331769 20696 15389137.3333 15390173.8013 41.2277 -25.2438 92.6103 run10.mat -1 -1 95 3670913 3681260 +7332077 7352747 20671 15390189.0822 15391223.8305 42.8771 -25.2432 92.6558 run10.mat -1 -1 95 3681414 3691750 +7353059 7362481 9423 15391239.4335 15391709.7046 44.5249 -25.2418 92.879 run10.mat -1 -1 95 3691906 3696617 +7446558 7456842 10285 15395914.156 15396425.1171 44.5254 -25.2419 93.2536 run10.mat -1 -1 96 3738657 3743800 +7457152 7477849 20698 15396440.6201 15397476.6807 46.176 -25.2428 92.5999 run10.mat -1 -1 96 3743955 3754303 +7478163 7498846 20684 15397492.2592 15398527.2384 47.826 -25.2432 92.6236 run10.mat -1 -1 96 3754460 3764802 +7499155 7519837 20683 15398542.8193 15399575.6958 49.4764 -25.2437 92.6751 run10.mat -1 -1 96 3764957 3775299 +7520149 7540807 20659 15399591.299 15400624.7356 51.1256 -25.2431 92.8177 run10.mat -1 -1 96 3775455 3785784 +7541113 7542340 1228 15400640.1621 15400702.0194 52.7804 -25.2418 93.3014 run10.mat -1 -1 96 3785937 3786550 +7626391 7644998 18608 15404903.8885 15405836.0139 52.776 -25.2438 93.0447 run10.mat -1 -1 97 3828578 3837882 +7645323 7666007 20685 15405852.3983 15406885.0647 54.4253 -25.2434 92.6042 run10.mat -1 -1 97 3838044 3848387 +7666316 7687006 20691 15406900.3955 15407935.3101 56.0736 -25.2433 92.5704 run10.mat -1 -1 97 3848541 3858887 +7687312 7707987 20676 15407950.6133 15408984.9973 57.7283 -25.2424 92.6499 run10.mat -1 -1 97 3859040 3869377 +7708293 7722180 13888 15409000.3674 15409694.9412 59.3724 -25.2424 92.6808 run10.mat -1 -1 97 3869530 3876474 +7806198 7812039 5842 15413895.4788 15414188.6595 59.3803 -25.2432 94.2136 run10.mat -1 -1 98 3918485 3921406 +7812358 7833045 20688 15414204.6126 15415237.8788 61.0223 -25.2432 92.5706 run10.mat -1 -1 98 3921566 3931909 +7833353 7854048 20696 15415253.4061 15416288.6955 62.6728 -25.2434 92.5714 run10.mat -1 -1 98 3932063 3942411 +7854353 7875009 20657 15416304.0716 15417334.4407 64.3216 -25.2435 92.6163 run10.mat -1 -1 98 3942564 3952892 +7875315 7896009 20695 15417349.6252 15418384.3116 65.9725 -25.2435 92.7042 run10.mat -1 -1 98 3953045 3963392 +7896315 7902040 5726 15418399.5041 15418687.4997 67.6242 -25.2434 92.8743 run10.mat -1 -1 98 3963546 3966408 +7986149 8000229 14081 15422895.2259 15423597.021 67.618 -25.2432 93.2507 run10.mat -1 -1 99 4008465 4015505 +8000538 8021230 20693 15423612.6019 15424647.8438 69.269 -25.2434 92.5558 run10.mat -1 -1 99 4015659 4026006 +8021535 8042211 20677 15424663.0967 15425697.1033 70.9132 -25.2433 92.6598 run10.mat -1 -1 99 4026158 4036497 +8042518 8063209 20692 15425712.4562 15426745.718 72.5696 -25.243 92.6318 run10.mat -1 -1 99 4036650 4046996 +8063515 8081900 18386 15426761.1476 15427679.0954 74.2136 -25.2427 92.6716 run10.mat -1 -1 99 4047149 4056342 +8165970 8167298 1329 15431885.6822 15431952.0961 74.2117 -25.241 99.0587 run10.mat -1 -1 100 4098379 4099043 +8167613 8188292 20680 15431967.8493 15432998.2287 75.865 -25.242 92.6247 run10.mat -1 -1 100 4099201 4109540 +8188599 8209275 20677 15433013.7088 15434049.4632 77.5137 -25.2437 92.657 run10.mat -1 -1 100 4109694 4120033 +8209586 8230273 20688 15434065.0162 15435099.4813 79.1661 -25.2428 92.5762 run10.mat -1 -1 100 4120188 4130532 +8230581 8251254 20674 15435115.0087 15436147.9283 80.8174 -25.2434 92.6529 run10.mat -1 -1 100 4130686 4141023 +8251563 8261758 10196 15436163.3815 15436675.2833 82.4625 -25.2435 92.8536 run10.mat -1 -1 100 4141178 4146275 +8345852 8355026 9175 15440878.0221 15441336.8642 82.4676 -25.2424 93.3089 run10.mat -1 -1 101 4188324 4192912 +288928 309438 20511 15554700.5231 15555725.6814 82.4684 -23.5597 92.942 run11.mat -1 -1 103 161551 171805 +309744 330440 20697 15555740.9873 15556777.0345 80.815 -23.5596 92.5763 run11.mat -1 -1 103 171958 182307 +330746 351438 20693 15556792.2191 15557828.2392 79.1706 -23.5593 92.5118 run11.mat -1 -1 103 182460 192807 +351745 372421 20677 15557843.3595 15558875.8137 77.5153 -23.5589 92.5891 run11.mat -1 -1 103 192960 203299 +372730 384698 11969 15558891.1441 15559490.2833 75.8718 -23.5609 92.8118 run11.mat -1 -1 103 203453 209437 +468757 476637 7881 15563693.0881 15564087.7504 75.8709 -23.5599 93.6119 run11.mat -1 -1 104 251469 255409 +476966 497658 20693 15564104.3364 15565137.2579 74.2161 -23.5604 92.5257 run11.mat -1 -1 104 255574 265920 +497964 518640 20677 15565152.5609 15566187.3491 72.5708 -23.559 92.6341 run11.mat -1 -1 104 266073 276412 +518946 539637 20692 15566202.7756 15567234.6995 70.9146 -23.5595 92.5579 run11.mat -1 -1 104 276565 286910 +539945 560615 20671 15567250.1054 15568284.5354 69.2673 -23.5601 92.7081 run11.mat -1 -1 104 287065 297400 +560923 564558 3636 15568299.8162 15568482.0012 67.6117 -23.5596 92.6877 run11.mat -1 -1 104 297554 299371 +648650 664757 16108 15572686.3548 15573492.3225 67.6157 -23.5596 93.0634 run11.mat -1 -1 105 341419 349473 +665063 685739 20677 15573507.5041 15574542.6824 65.9695 -23.5599 92.6078 run11.mat -1 -1 105 349626 359965 +686046 706762 20717 15574558.0356 15575593.0914 64.3175 -23.5604 92.582 run11.mat -1 -1 105 360118 370477 +707065 727740 20676 15575608.2443 15576644.2454 62.6691 -23.5601 92.5328 run11.mat -1 -1 105 370628 380966 +728045 744437 16393 15576659.4984 15577476.8907 61.0209 -23.5596 92.7809 run11.mat -1 -1 105 381119 389315 +828493 831839 3347 15581677.5076 15581847.4881 61.028 -23.5596 95.5755 run11.mat -1 -1 106 431344 433017 +832168 852846 20679 15581864.2016 15582896.4216 59.3741 -23.5602 92.5935 run11.mat -1 -1 106 433182 443522 +853151 873840 20690 15582911.5566 15583948.2075 57.727 -23.5594 92.6423 run11.mat -1 -1 106 443674 454019 +874146 894823 20678 15583963.5105 15584996.9639 56.077 -23.5598 92.5744 run11.mat -1 -1 106 454172 464511 +895133 915818 20686 15585012.3439 15586045.6487 54.4259 -23.5588 92.6394 run11.mat -1 -1 106 464666 475009 +916127 924317 8191 15586061.1047 15586470.7199 52.78 -23.5595 92.6442 run11.mat -1 -1 106 475164 479259 +1008341 1019998 11658 15590671.9962 15591256.5588 52.7748 -23.5592 93.2916 run11.mat -1 -1 107 521273 527102 +1020329 1041001 20673 15591272.9808 15592306.3271 51.1302 -23.5596 92.5688 run11.mat -1 -1 107 527267 537603 +1041311 1061985 20675 15592321.9585 15593355.5864 49.4767 -23.56 92.5466 run11.mat -1 -1 107 537759 548096 +1062293 1082981 20689 15593370.8672 15594403.3803 47.8286 -23.5595 92.6351 run11.mat -1 -1 107 548250 558595 +1083289 1103941 20653 15594418.6642 15595453.0611 46.1791 -23.5595 92.7456 run11.mat -1 -1 107 558749 569075 +1188123 1208098 19976 15599660.996 15600659.4225 44.531 -23.5592 92.9541 run11.mat -1 -1 108 611168 621156 +1208425 1229080 20656 15600675.7788 15601710.7942 42.8734 -23.5597 92.6558 run11.mat -1 -1 108 621319 631647 +1229387 1250084 20698 15601726.1471 15602761.1429 41.2297 -23.5593 92.5978 run11.mat -1 -1 108 631801 642150 +1250390 1271061 20672 15602776.3245 15603806.6642 39.5765 -23.5597 92.6895 run11.mat -1 -1 108 642303 652639 +1271374 1284036 12663 15603822.3774 15604458.2897 37.9294 -23.5602 92.7766 run11.mat -1 -1 108 652795 659126 +1368005 1375140 7136 15608655.0228 15609012.6172 37.9331 -23.5611 94.189 run11.mat -1 -1 109 701113 704680 +1375474 1396160 20687 15609029.1879 15610062.4134 36.2813 -23.5604 92.4777 run11.mat -1 -1 109 704847 715191 +1396467 1417163 20697 15610077.8903 15611113.5026 34.6296 -23.5596 92.5356 run11.mat -1 -1 109 715344 725693 +1417471 1438142 20672 15611128.7864 15612162.8369 32.9817 -23.5597 92.6299 run11.mat -1 -1 109 725847 736183 +1438451 1459124 20674 15612178.4146 15613214.0406 31.3334 -23.5598 92.6783 run11.mat -1 -1 109 736337 746674 +1459429 1463896 4468 15613229.2935 15613452.6865 29.6818 -23.5589 92.9368 run11.mat -1 -1 109 746827 749060 +1547972 1563243 15272 15617654.576 15618418.3474 29.6894 -23.5592 93.0533 run11.mat -1 -1 110 791100 798736 +1563577 1584246 20670 15618434.9214 15619467.3069 28.0354 -23.5595 92.6106 run11.mat -1 -1 110 798903 809238 +1584551 1605244 20694 15619482.4418 15620518.7378 26.3903 -23.5591 92.5553 run11.mat -1 -1 110 809391 819738 +1605552 1626233 20682 15620534.2683 15621566.6563 24.7393 -23.5593 92.6603 run11.mat -1 -1 110 819892 830232 +1626547 1643755 17209 15621582.3593 15622443.0287 23.0903 -23.56 92.683 run11.mat -1 -1 110 830389 838994 +1727769 1730364 2596 15626645.0655 15626773.8368 23.0908 -23.5576 95.2276 run11.mat -1 -1 111 881002 882300 +1730692 1751365 20674 15626790.1131 15627825.8619 21.4392 -23.5595 92.6485 run11.mat -1 -1 111 882464 892801 +1751672 1772346 20675 15627841.2178 15628873.2631 19.7881 -23.5598 92.5655 run11.mat -1 -1 111 892954 903292 +1772654 1793345 20692 15628888.6661 15629922.3013 18.1407 -23.5599 92.599 run11.mat -1 -1 111 903446 913792 +1793651 1814327 20677 15629937.7309 15630971.6356 16.4893 -23.5595 92.6282 run11.mat -1 -1 111 913945 924283 +1814634 1823655 9022 15630986.8698 15631437.3197 14.8438 -23.5603 92.764 run11.mat -1 -1 111 924436 928948 +1907723 1918424 10702 15635641.1885 15636177.4646 14.8374 -23.559 93.3068 run11.mat -1 -1 112 970983 976334 +1918730 1939428 20699 15636192.6462 15637227.5467 13.1876 -23.5598 92.5333 run11.mat -1 -1 112 976487 986837 +1939741 1960426 20686 15637243.3261 15638277.322 11.5387 -23.5592 92.6551 run11.mat -1 -1 112 986993 997336 +1960732 1981404 20673 15638292.5066 15639327.9442 9.8894 -23.5596 92.6454 run11.mat -1 -1 112 997489 1007825 +1981712 2002367 20656 15639343.3474 15640375.287 8.2412 -23.5594 92.7589 run11.mat -1 -1 112 1007979 1018307 +2002678 2003515 838 15640390.7197 15640432.2541 6.5899 -23.5567 91.6104 run11.mat -1 -1 112 1018463 1018881 +2087555 2106504 18950 15644631.951 15645582.6394 6.5934 -23.5598 92.9425 run11.mat -1 -1 113 1060904 1070378 +2106823 2127508 20686 15645598.5924 15646631.2771 4.9445 -23.5589 92.5306 run11.mat -1 -1 113 1070538 1080881 +2127812 2148487 20676 15646646.3624 15647680.3526 3.2955 -23.5599 92.6172 run11.mat -1 -1 113 1081033 1091371 +2148793 2169484 20692 15647695.6558 15648731.8738 1.6513 -23.5594 92.5912 run11.mat -1 -1 113 1091524 1101870 +2169794 2183395 13602 15648747.2538 15649424.2013 -0.0010531 -23.5603 92.7813 run11.mat -1 -1 113 1102025 1108825 +2267722 2273904 6183 15653642.7765 15653953.1379 0.0015293 -23.5603 94.0187 run11.mat -1 -1 114 1150991 1154082 +2274224 2294925 20702 15653968.9015 15655004.5606 -1.6473 -23.5596 92.5573 run11.mat -1 -1 114 1154242 1164593 +2295231 2315907 20677 15655019.7422 15656051.5292 -3.2958 -23.5602 92.5836 run11.mat -1 -1 114 1164746 1175084 +2316212 2336908 20697 15656066.9084 15657103.2708 -4.9452 -23.5597 92.5588 run11.mat -1 -1 114 1175237 1185585 +2337217 2357886 20670 15657118.8486 15658151.0419 -6.5932 -23.5597 92.6952 run11.mat -1 -1 114 1185740 1196075 +2358195 2363475 5281 15658166.4951 15658432.5373 -8.2433 -23.5595 92.8943 run11.mat -1 -1 114 1196229 1198869 +2447594 2462025 14432 15662637.0875 15663357.1322 -8.2476 -23.56 93.0383 run11.mat -1 -1 115 1240930 1248147 +2462349 2483028 20680 15663373.2068 15664408.318 -9.8923 -23.5603 92.5971 run11.mat -1 -1 115 1248309 1258648 +2483342 2504028 20687 15664424.1478 15665457.1084 -11.5421 -23.5591 92.587 run11.mat -1 -1 115 1258805 1269149 +2504333 2525028 20696 15665472.2603 15666509.2618 -13.1919 -23.5595 92.6017 run11.mat -1 -1 115 1269302 1279649 +2525334 2543375 18042 15666524.5682 15667425.2072 -14.847 -23.5594 92.8037 run11.mat -1 -1 115 1279802 1288823 +2627484 2629265 1782 15671631.3689 15671719.7297 -14.8434 -23.5567 97.5312 run11.mat -1 -1 116 1330880 1331770 +2629591 2650249 20659 15671735.9036 15672768.957 -16.4963 -23.5591 92.482 run11.mat -1 -1 116 1331933 1342263 +2650559 2671250 20692 15672784.5852 15673819.2119 -18.1433 -23.5593 92.561 run11.mat -1 -1 116 1342418 1352764 +2671557 2692248 20692 15673834.5651 15674868.5192 -19.794 -23.5596 92.5214 run11.mat -1 -1 116 1352917 1363263 +2692554 2713230 20677 15674883.7007 15675918.726 -21.442 -23.5592 92.6358 run11.mat -1 -1 116 1363416 1373755 +2713539 2723253 9715 15675934.366 15676421.0608 -23.0907 -23.5606 92.7252 run11.mat -1 -1 116 1373909 1378766 +2807266 2817306 10041 15680620.0708 15681122.1546 -23.0873 -23.5585 93.207 run11.mat -1 -1 117 1420775 1425795 +2817612 2838288 20677 15681137.3362 15682171.6751 -24.739 -23.5604 92.5086 run11.mat -1 -1 117 1425948 1436286 +2838599 2859308 20710 15682187.1665 15683223.9254 -26.3888 -23.5596 92.5771 run11.mat -1 -1 117 1436442 1446797 +2859614 2880288 20675 15683239.3519 15684270.0925 -28.0364 -23.5603 92.5779 run11.mat -1 -1 117 1446950 1457287 +2880597 2901267 20671 15684285.4229 15685319.0413 -29.687 -23.5595 92.7241 run11.mat -1 -1 117 1457442 1467777 +2901574 2903074 1501 15685334.5182 15685410.1383 -31.3356 -23.5606 92.9867 run11.mat -1 -1 117 1467931 1468681 +2987158 3005506 18349 15689614.4198 15690531.2897 -31.3363 -23.5593 92.9732 run11.mat -1 -1 118 1510725 1519899 +3005823 3026488 20666 15690547.1427 15691580.6837 -32.9818 -23.5591 92.5568 run11.mat -1 -1 118 1520058 1530390 +3026795 3047489 20695 15691596.0932 15692631.644 -34.6361 -23.5604 92.651 run11.mat -1 -1 118 1530544 1540892 +3047795 3068448 20654 15692646.8256 15693678.8796 -36.2814 -23.56 92.5304 run11.mat -1 -1 118 1541045 1551372 +3068753 3082953 14201 15693694.2557 15694405.1387 -37.936 -23.5595 92.8333 run11.mat -1 -1 118 1551524 1558624 +3167274 3172766 5493 15698621.7721 15698896.3987 -37.9323 -23.5607 93.7631 run11.mat -1 -1 119 1600786 1603533 +3173105 3193768 20664 15698913.2175 15699946.9134 -39.5806 -23.5594 92.535 run11.mat -1 -1 119 1603702 1614034 +3194078 3214768 20691 15699962.4164 15700996.2201 -41.2326 -23.5598 92.6268 run11.mat -1 -1 119 1614189 1624535 +3215076 3235769 20694 15701011.5009 15702044.2733 -42.8787 -23.5585 92.578 run11.mat -1 -1 119 1624689 1635036 +3236074 3256748 20675 15702059.4052 15703095.3533 -44.535 -23.5594 92.6839 run11.mat -1 -1 119 1635188 1645526 +3257057 3263052 5996 15703110.9933 15703410.8351 -46.1778 -23.5589 92.6115 run11.mat -1 -1 119 1645680 1648678 +3347140 3360829 13690 15707614.8281 15708299.0771 -46.1842 -23.5592 92.979 run11.mat -1 -1 120 1690723 1697568 +3361136 3381851 20716 15708314.4301 15709348.9488 -47.8323 -23.5595 92.6108 run11.mat -1 -1 120 1697722 1708080 +3382158 3402831 20674 15709364.183 15710400.5991 -49.4818 -23.5595 92.6269 run11.mat -1 -1 120 1708234 1718570 +3403142 3423830 20689 15710416.2777 15711451.0067 -51.1309 -23.5593 92.6407 run11.mat -1 -1 120 1718726 1729070 +3424140 3442913 18774 15711466.5099 15712401.3963 -52.7796 -23.5601 92.6904 run11.mat -1 -1 120 1729225 1738612 +3527222 3528147 926 15716620.3651 15716667.0069 -52.7782 -23.5621 97.0589 run11.mat -1 -1 121 1780769 1781231 +3528472 3549131 20660 15716683.3945 15717714.603 -54.4288 -23.5595 92.6481 run11.mat -1 -1 121 1781394 1791723 +3549437 3570132 20696 15717729.9062 15718764.3977 -56.0728 -23.56 92.5199 run11.mat -1 -1 121 1791876 1802224 +3570437 3591129 20693 15718779.5297 15719814.3143 -57.7289 -23.5599 92.5645 run11.mat -1 -1 121 1802377 1812723 +3591436 3612112 20677 15719829.5455 15720864.5556 -59.3748 -23.5597 92.669 run11.mat -1 -1 121 1812877 1823215 +3612418 3622993 10576 15720879.8615 15721408.7363 -61.0231 -23.5588 92.7871 run11.mat -1 -1 121 1823368 1828656 +3707135 3716369 9235 15725615.9779 15726076.9238 -61.0219 -23.5595 93.5334 run11.mat -1 -1 122 1870729 1875346 +3716684 3737369 20686 15726092.5519 15727126.8158 -62.6719 -23.5596 92.5263 run11.mat -1 -1 122 1875504 1885846 +3737676 3758370 20695 15727142.05 15728176.6956 -64.3168 -23.5595 92.5672 run11.mat -1 -1 122 1886000 1896347 +3758681 3779371 20691 15728192.1252 15729224.7488 -65.9722 -23.5602 92.6319 run11.mat -1 -1 122 1896503 1906849 +3779677 3800349 20673 15729240.0744 15730275.3867 -67.6188 -23.5597 92.6322 run11.mat -1 -1 122 1907002 1917338 +3800655 3803032 2378 15730290.5713 15730408.5248 -69.2748 -23.56 92.6282 run11.mat -1 -1 122 1917491 1918680 +3887536 3904855 17320 15734635.2757 15735499.4697 -69.2706 -23.5596 92.9356 run11.mat -1 -1 123 1960933 1969593 +3905168 3925870 20703 15735515.105 15736552.4584 -70.9173 -23.5589 92.5412 run11.mat -1 -1 123 1969750 1980101 +3926178 3946872 20695 15736567.8616 15737602.1469 -72.5711 -23.5594 92.5989 run11.mat -1 -1 123 1980255 1990603 +3947179 3967853 20675 15737617.3781 15738651.6216 -74.2198 -23.5593 92.5777 run11.mat -1 -1 123 1990756 2001094 +3968159 3983352 15194 15738666.8639 15739425.6766 -75.8709 -23.5608 92.8092 run11.mat -1 -1 123 2001247 2008844 +4067601 4072131 4531 15743637.0881 15743863.1069 -75.8775 -23.5593 94.2868 run11.mat -1 -1 124 2050970 2053235 +4072458 4093142 20685 15743879.5921 15744916.2255 -77.5188 -23.5594 92.5277 run11.mat -1 -1 124 2053399 2063741 +4093454 4114133 20680 15744931.8287 15745964.1193 -79.1716 -23.5603 92.4812 run11.mat -1 -1 124 2063897 2074237 +4114443 4135135 20693 15745979.6252 15747016.2328 -80.8193 -23.5596 92.5325 run11.mat -1 -1 124 2074392 2084738 +4135451 4156113 20663 15747032.1666 15748061.9339 -82.4664 -23.5593 92.649 run11.mat -1 -1 124 2084896 2095228 +4156422 4163411 6990 15748077.6491 15748428.7035 -82.4667 -21.8756 92.7698 run11.mat -1 -1 124 2095382 2098877 +4247699 4260448 12750 15752645.2809 15753279.2477 -82.4629 -21.8761 93.1489 run11.mat -1 -1 125 2141023 2147397 +4260762 4281433 20672 15753294.8293 15754330.453 -80.819 -21.8763 92.5218 run11.mat -1 -1 125 2147554 2157890 +4281740 4302435 20696 15754345.8059 15755380.4545 -79.168 -21.8757 92.5727 run11.mat -1 -1 125 2158044 2168392 +4302739 4323434 20696 15755395.5399 15756430.2759 -77.5148 -21.8763 92.6166 run11.mat -1 -1 125 2168544 2178892 +4323741 4343491 19751 15756445.5101 15757433.333 -75.8646 -21.8763 92.8058 run11.mat -1 -1 125 2179045 2188921 +4428006 4428118 113 15761659.5431 15761665.1008 -75.8807 -21.8807 100.7588 run11.mat -1 -1 126 2231180 2231236 +4428430 4449053 20624 15761680.5832 15762711.9825 -74.2172 -21.8755 92.6796 run11.mat -1 -1 126 2231392 2241704 +4449358 4470053 20696 15762727.4232 15763761.4535 -72.5697 -21.8757 92.469 run11.mat -1 -1 126 2241856 2252205 +4470361 4491052 20692 15763776.623 15764810.4908 -70.9171 -21.8753 92.5748 run11.mat -1 -1 126 2252359 2262705 +4491361 4512034 20674 15764825.8212 15765859.4588 -69.2692 -21.8765 92.6363 run11.mat -1 -1 126 2262859 2273196 +4512342 4523771 11430 15765874.803 15766446.9415 -67.6173 -21.8753 92.8185 run11.mat -1 -1 126 2273350 2279065 +4607912 4616301 8390 15770655.5412 15771074.5477 -67.6196 -21.8768 93.8241 run11.mat -1 -1 127 2321137 2325332 +4616616 4637293 20678 15771090.4279 15772122.9927 -65.9751 -21.8756 92.5525 run11.mat -1 -1 127 2325489 2335828 +4637600 4658291 20692 15772138.3459 15773171.1507 -64.3173 -21.876 92.6109 run11.mat -1 -1 127 2335982 2346328 +4658600 4679276 20677 15773186.6039 15774222.6749 -62.6754 -21.8763 92.6271 run11.mat -1 -1 127 2346482 2356821 +4679583 4700252 20670 15774238.0308 15775271.5912 -61.025 -21.8761 92.6664 run11.mat -1 -1 127 2356974 2367309 +4700559 4703811 3253 15775287.0682 15775450.7566 -59.3725 -21.8754 92.885 run11.mat -1 -1 127 2367463 2369089 +4788181 4804762 16582 15779668.3305 15780498.8203 -59.3743 -21.8758 93.1573 run11.mat -1 -1 128 2411276 2419566 +4805076 4825765 20690 15780514.5269 15781547.2706 -57.7327 -21.876 92.6072 run11.mat -1 -1 128 2419723 2430069 +4826077 4846744 20668 15781562.8736 15782595.2391 -56.0782 -21.876 92.4965 run11.mat -1 -1 128 2430225 2440558 +4847055 4867741 20687 15782610.6688 15783646.6389 -54.429 -21.876 92.621 run11.mat -1 -1 128 2440714 2451058 +4868056 4884070 16015 15783662.3922 15784463.2255 -52.7805 -21.8753 92.7998 run11.mat -1 -1 128 2451215 2459222 +4968304 4972048 3745 15788674.576 15788861.2342 -52.7855 -21.8752 94.5005 run11.mat -1 -1 129 2501341 2503213 +4972364 4993036 20673 15788876.9119 15789911.5002 -51.1289 -21.8759 92.5186 run11.mat -1 -1 129 2503371 2513707 +4993345 5014032 20688 15789927.0811 15790962.9777 -49.4793 -21.8757 92.655 run11.mat -1 -1 129 2513862 2524206 +5014341 5035034 20694 15790978.4931 15792009.5943 -47.8277 -21.8762 92.52 run11.mat -1 -1 129 2524361 2534707 +5035340 5056014 20675 15792025.0208 15793059.2515 -46.1788 -21.8761 92.6342 run11.mat -1 -1 129 2534860 2545198 +5056320 5064131 7812 15793074.678 15793464.8617 -44.5315 -21.8761 92.8081 run11.mat -1 -1 129 2545351 2549257 +5148535 5160541 12007 15797688.5031 15798285.7506 -44.5309 -21.8755 93.3604 run11.mat -1 -1 130 2591460 2597470 +5160855 5181533 20679 15798301.5804 15799335.2885 -42.8795 -21.8759 92.5324 run11.mat -1 -1 130 2597621 2607960 +5181843 5202532 20690 15799350.7949 15800387.5017 -41.2296 -21.8763 92.5883 run11.mat -1 -1 130 2608115 2618460 +5202839 5223534 20696 15800402.8576 15801435.9165 -39.5812 -21.8759 92.6485 run11.mat -1 -1 130 2618613 2628962 +5223843 5244429 20587 15801451.3725 15802481.2247 -37.9327 -21.8759 92.6985 run11.mat -1 -1 130 2629116 2639409 +5328914 5349018 20105 15806704.5525 15807710.8785 -36.2857 -21.8766 92.8577 run11.mat -1 -1 131 2681654 2691706 +5349338 5370001 20664 15807726.8819 15808760.856 -34.6338 -21.8764 92.5848 run11.mat -1 -1 131 2691866 2702198 +5370315 5391014 20700 15808776.6858 15809808.2526 -32.9816 -21.876 92.5333 run11.mat -1 -1 131 2702355 2712705 +5391321 5411979 20659 15809823.6853 15810858.707 -31.3398 -21.8764 92.6441 run11.mat -1 -1 131 2712859 2723188 +5412294 5424689 12396 15810874.4603 15811493.8163 -29.6887 -21.8765 92.9047 run11.mat -1 -1 131 2723346 2729544 +5509167 5516463 7297 15815719.287 15816083.2475 -29.6924 -21.8766 93.5926 run11.mat -1 -1 132 2771784 2775433 +5516781 5537462 20682 15816099.1256 15817133.4572 -28.0392 -21.8761 92.5468 run11.mat -1 -1 132 2775592 2785933 +5537776 5558454 20679 15817149.1602 15818182.6243 -26.3908 -21.8758 92.6785 run11.mat -1 -1 132 2786090 2796429 +5558763 5579455 20693 15818197.9548 15819232.6384 -24.7404 -21.8756 92.5555 run11.mat -1 -1 132 2796584 2806930 +5579762 5600419 20658 15819248.1153 15820280.7479 -23.0912 -21.876 92.6159 run11.mat -1 -1 132 2807083 2817412 +5600726 5604930 4205 15820295.9821 15820504.5692 -21.4411 -21.8757 92.8236 run11.mat -1 -1 132 2817566 2819668 +5689220 5704759 15540 15824720.2673 15825498.3695 -21.4403 -21.8759 92.8304 run11.mat -1 -1 133 2861815 2869585 +5705071 5725757 20687 15825514.1017 15826545.533 -19.7894 -21.8764 92.615 run11.mat -1 -1 133 2869741 2880084 +5726063 5746739 20677 15826560.8362 15827597.8923 -18.1414 -21.8764 92.548 run11.mat -1 -1 133 2880237 2890576 +5747061 5767738 20678 15827613.9954 15828646.1147 -16.4915 -21.8758 92.6014 run11.mat -1 -1 133 2890737 2901075 +5768043 5785029 16987 15828661.4604 15829511.9837 -14.8413 -21.8761 92.7927 run11.mat -1 -1 133 2901228 2909721 +5869491 5872247 2757 15833733.9683 15833871.7948 -14.8446 -21.8756 95.9937 run11.mat -1 -1 134 2951954 2953332 +5872560 5893255 20696 15833887.4478 15834922.5049 -13.1896 -21.8759 92.5095 run11.mat -1 -1 134 2953489 2963837 +5893564 5914241 20678 15834937.9581 15835971.4494 -11.5437 -21.8759 92.6575 run11.mat -1 -1 134 2963992 2974330 +5914550 5935234 20685 15835986.7829 15837021.048 -9.8909 -21.8759 92.6675 run11.mat -1 -1 134 2974485 2984827 +5935542 5956217 20676 15837036.3288 15838070.0657 -8.2445 -21.8762 92.6699 run11.mat -1 -1 134 2984981 2995319 +5956521 5965308 8788 15838085.148 15838525.1666 -6.5919 -21.876 92.772 run11.mat -1 -1 134 2995471 2999865 +6049723 6060777 11055 15842746.15 15843298.5414 -6.5937 -21.8764 93.4528 run11.mat -1 -1 135 3042075 3047601 +6061089 6081795 20707 15843314.0206 15844349.2955 -4.9455 -21.8755 92.6116 run11.mat -1 -1 135 3047757 3058111 +6082103 6102776 20674 15844364.5763 15845400.0734 -3.2962 -21.8759 92.5492 run11.mat -1 -1 135 3058265 3068602 +6103084 6123774 20691 15845415.3573 15846447.9262 -1.6472 -21.8761 92.6096 run11.mat -1 -1 135 3068756 3079101 +6124082 6144736 20655 15846463.207 15847495.0727 -0.0033815 -21.8761 92.7349 run11.mat -1 -1 135 3079255 3089583 +6145041 6145608 568 15847510.3843 15847538.8488 1.6514 -21.8742 91.8307 run11.mat -1 -1 135 3089735 3090019 +6229866 6249057 19192 15851752.6075 15852711.1635 1.6437 -21.876 92.9656 run11.mat -1 -1 136 3132150 3141746 +6249379 6270036 20658 15852727.2666 15853762.4464 3.2952 -21.8763 92.4995 run11.mat -1 -1 136 3141907 3152235 +6270343 6291036 20694 15853777.8028 15854812.4307 4.9432 -21.8767 92.6707 run11.mat -1 -1 136 3152389 3162736 +6291344 6312038 20695 15854827.7146 15855863.8693 6.5904 -21.8758 92.6366 run11.mat -1 -1 136 3162890 3173238 +6312342 6325688 13347 15855879.195 15856543.6237 8.2447 -21.8755 92.7355 run11.mat -1 -1 136 3173390 3180063 +6410166 6416506 6341 15860767.7731 15861085.8742 8.248 -21.8754 93.7934 run11.mat -1 -1 137 3222303 3225473 +6416820 6437516 20697 15861101.5802 15862136.5115 9.8947 -21.8754 92.5576 run11.mat -1 -1 137 3225630 3235980 +6437825 6458498 20674 15862152.0924 15863184.0079 11.5425 -21.8761 92.6038 run11.mat -1 -1 137 3236134 3246471 +6458803 6479495 20693 15863199.2608 15864234.1274 13.1917 -21.8759 92.5584 run11.mat -1 -1 137 3246623 3256969 +6479803 6500459 20657 15864249.5333 15865282.2244 14.8445 -21.8759 92.6686 run11.mat -1 -1 137 3257123 3267452 +6500773 6505947 5175 15865297.8653 15865556.1009 16.4897 -21.8761 92.87 run11.mat -1 -1 137 3267609 3270196 +6590435 6604999 14565 15869782.4392 15870511.9642 16.4924 -21.8759 93.0248 run11.mat -1 -1 138 3312442 3319725 +6605308 6625999 20692 15870527.4174 15871560.1442 18.1452 -21.8755 92.6509 run11.mat -1 -1 138 3319879 3330225 +6626306 6628761 2456 15871575.6211 15871699.3172 19.7875 -21.8762 92.6922 run11.mat -1 -1 138 3330379 3331606 +6629011 6646990 17980 15871711.7229 15872609.6032 19.7894 -21.8762 92.5915 run11.mat -1 -1 138 3331731 3340721 +6647303 6667982 20680 15872625.129 15873660.6181 21.4413 -21.8755 92.6689 run11.mat -1 -1 138 3340877 3351217 +6668297 6686227 17931 15873676.4983 15874572.434 23.0889 -21.8761 92.7375 run11.mat -1 -1 138 3351375 3360340 +6770505 6772379 1875 15878785.4634 15878879.1814 23.0907 -21.8746 96.2249 run11.mat -1 -1 139 3402481 3403418 +6772689 6793362 20674 15878894.6844 15879928.9669 24.7382 -21.8753 92.6803 run11.mat -1 -1 139 3403573 3413910 +6793686 6814360 20675 15879945.0415 15880976.7481 26.3865 -21.8764 92.6152 run11.mat -1 -1 139 3414072 3424410 +6814668 6835359 20692 15880992.2008 15882028.695 28.0311 -21.876 92.5884 run11.mat -1 -1 139 3424564 3434910 +6835666 6856326 20661 15882043.9262 15883076.24 29.686 -21.8768 92.6122 run11.mat -1 -1 139 3435063 3445393 +6856639 6866287 9649 15883092.0194 15883573.7169 31.3315 -21.8766 92.7685 run11.mat -1 -1 139 3445550 3450374 +6950758 6960858 10101 15887799.3701 15888302.9266 31.329 -21.8763 93.4584 run11.mat -1 -1 140 3492611 3497662 +6961166 6981861 20696 15888318.4539 15889353.6929 32.9815 -21.8757 92.5599 run11.mat -1 -1 140 3497816 3508164 +6982167 7002835 20669 15889369.1194 15890403.0476 34.6297 -21.876 92.6264 run11.mat -1 -1 140 3508317 3518651 +7003143 7023839 20697 15890418.5749 15891452.247 36.281 -21.8755 92.5601 run11.mat -1 -1 140 3518805 3529154 +7024145 7044800 20656 15891467.3181 15892499.8139 37.9299 -21.8761 92.7828 run11.mat -1 -1 140 3529307 3539635 +7045106 7046567 1462 15892515.1083 15892588.7623 39.5883 -21.8743 92.5795 run11.mat -1 -1 140 3539788 3540518 +7130853 7149254 18402 15896803.7935 15897722.235 39.5807 -21.8759 93.0747 run11.mat -1 -1 141 3582663 3591864 +7149567 7170239 20673 15897737.7638 15898773.2289 41.2303 -21.8757 92.5616 run11.mat -1 -1 141 3592020 3602357 +7170546 7191238 20693 15898788.6975 15899822.5545 42.8757 -21.8761 92.5923 run11.mat -1 -1 141 3602510 3612857 +7191547 7212220 20674 15899838.0075 15900873.4105 44.5321 -21.8763 92.6387 run11.mat -1 -1 141 3613011 3623348 +7212527 7226627 14101 15900888.6447 15901594.0982 46.181 -21.8755 92.7148 run11.mat -1 -1 141 3623502 3630552 +7311011 7316642 5632 15905809.7777 15906093.1197 46.1801 -21.8752 94.0928 run11.mat -1 -1 142 3672746 3675558 +7316958 7337641 20684 15906108.7974 15907142.9311 47.8288 -21.8759 92.5757 run11.mat -1 -1 142 3675719 3686062 +7337951 7358643 20693 15907158.3112 15908193.9016 49.478 -21.8758 92.6123 run11.mat -1 -1 142 3686217 3696563 +7358947 7379623 20677 15908209.108 15909241.8099 51.1268 -21.8759 92.5644 run11.mat -1 -1 142 3696715 3707054 +7379928 7400602 20675 15909256.9419 15910292.0387 52.7783 -21.8761 92.6983 run11.mat -1 -1 142 3707206 3717543 +7400909 7406826 5918 15910307.5156 15910601.829 54.4226 -21.8767 92.9939 run11.mat -1 -1 142 3717697 3720656 +7491171 7504989 13819 15914819.2973 15915512.1329 54.4241 -21.8756 93.0219 run11.mat -1 -1 143 3762830 3769739 +7505308 7526002 20695 15915528.086 15916561.0904 56.0733 -21.8766 92.515 run11.mat -1 -1 143 3769899 3780246 +7526308 7546980 20673 15916576.3933 15917611.2436 57.724 -21.8763 92.5497 run11.mat -1 -1 143 3780399 3790736 +7547287 7567984 20698 15917626.6028 15918659.7157 59.3705 -21.8757 92.5216 run11.mat -1 -1 143 3790889 3801238 +7568289 7586965 18677 15918674.9721 15919611.042 61.02 -21.8766 92.7374 run11.mat -1 -1 143 3801391 3810729 +7671391 7672533 1143 15923831.4729 15923888.5948 61.0248 -21.8771 98.404 run11.mat -1 -1 144 3852944 3853515 +7672845 7693502 20658 15923904.1917 15924938.3074 62.6698 -21.8761 92.5972 run11.mat -1 -1 144 3853671 3864000 +7693810 7714502 20693 15924953.7106 15925988.5678 64.3163 -21.8762 92.6303 run11.mat -1 -1 144 3864154 3874500 +7714808 7735503 20696 15926003.871 15927034.8549 65.9686 -21.8762 92.5888 run11.mat -1 -1 144 3874653 3885001 +7735807 7756484 20678 15927050.0613 15928086.1371 67.6196 -21.8756 92.6846 run11.mat -1 -1 144 3885153 3895492 +7756790 7767265 10476 15928101.4401 15928623.6569 69.2623 -21.8763 92.8358 run11.mat -1 -1 144 3895645 3900883 +7851504 7860767 9264 15932836.7672 15933299.8198 69.2701 -21.8758 93.6767 run11.mat -1 -1 145 3943004 3947636 +7861080 7881750 20671 15933315.3517 15934350.1846 70.9163 -21.8759 92.4866 run11.mat -1 -1 145 3947793 3958128 +7882063 7902740 20678 15934365.8379 15935398.229 72.5697 -21.8758 92.5706 run11.mat -1 -1 145 3958284 3968623 +7903048 7923743 20696 15935413.5098 15936450.0049 74.2168 -21.8763 92.5453 run11.mat -1 -1 145 3968777 3979126 +7924049 7944702 20654 15936465.076 15937495.9782 75.8687 -21.8761 92.7569 run11.mat -1 -1 145 3979279 3989605 +7945008 7947326 2319 15937511.4078 15937628.2896 77.5063 -21.875 92.8205 run11.mat -1 -1 145 3989758 3990918 +8031697 8049264 17568 15941845.4699 15942724.8452 77.5187 -21.8753 93.1888 run11.mat -1 -1 146 4033105 4041889 +8049574 8070244 20671 15942740.2252 15943772.7233 79.1684 -21.8755 92.5075 run11.mat -1 -1 146 4042044 4052379 +8070550 8091261 20712 15943788.1498 15944825.3926 80.82 -21.8757 92.6027 run11.mat -1 -1 146 4052532 4062888 +8091568 8111885 20318 15944840.6268 15945855.8291 82.4659 -21.8757 92.6178 run11.mat -1 -1 146 4063042 4073200 +284756 305158 20403 16065619.9199 16066641.0273 82.4647 -20.1921 92.8385 run12.mat -1 -1 148 154733 164934 +305463 326158 20696 16066656.0491 16067689.4509 80.8154 -20.1921 92.6432 run12.mat -1 -1 148 165087 175435 +326466 347159 20694 16067704.7317 16068740.582 79.1695 -20.1924 92.5246 run12.mat -1 -1 148 175589 185936 +347465 368139 20675 16068755.8852 16069788.2304 77.5153 -20.1926 92.5609 run12.mat -1 -1 148 186089 196426 +368447 380545 12099 16069803.5112 16070408.904 75.8676 -20.1919 92.7308 run12.mat -1 -1 148 196580 202629 +464832 472457 7626 16074623.0373 16075004.7494 75.87 -20.192 93.468 run12.mat -1 -1 149 244775 248588 +472787 493464 20678 16075021.1217 16076055.0008 74.2181 -20.1925 92.5228 run12.mat -1 -1 149 248753 259092 +493772 514460 20689 16076070.2846 16077102.7595 72.5718 -20.1921 92.6208 run12.mat -1 -1 149 259246 269590 +514766 535458 20693 16077118.0654 16078155.4318 70.9184 -20.1931 92.5803 run12.mat -1 -1 149 269743 280089 +535766 556419 20654 16078170.7126 16079201.1698 69.2721 -20.1923 92.6247 run12.mat -1 -1 149 280243 290570 +556728 560625 3898 16079216.7475 16079413.2085 67.6198 -20.1933 92.9944 run12.mat -1 -1 149 290725 292673 +644920 660738 15819 16083627.7596 16084419.9424 67.6221 -20.1923 93.0498 run12.mat -1 -1 150 334823 342732 +661063 681742 20680 16084436.0699 16085467.9738 65.9732 -20.1924 92.5726 run12.mat -1 -1 150 342895 353235 +682049 695083 13035 16085483.205 16086136.6828 64.3155 -20.1928 92.6173 run12.mat -1 -1 150 353388 359906 +695333 702741 7409 16086149.2861 16086519.8472 64.3192 -20.1924 92.7048 run12.mat -1 -1 150 360031 363735 +703048 723718 20671 16086535.0784 16087566.3972 62.671 -20.1931 92.6166 run12.mat -1 -1 150 363888 374224 +724031 740684 16654 16087582.0828 16088414.9312 61.0229 -20.192 92.7936 run12.mat -1 -1 150 374380 382707 +824685 827838 3154 16092616.9289 16092773.3898 61.0176 -20.1911 95.2265 run12.mat -1 -1 151 424709 426285 +828166 848858 20693 16092789.6661 16093825.9264 59.3717 -20.193 92.5729 run12.mat -1 -1 151 426449 436796 +849167 869841 20675 16093841.4945 16094874.5043 57.7218 -20.192 92.551 run12.mat -1 -1 151 436951 447288 +870147 890837 20691 16094889.8073 16095923.0506 56.0698 -20.1927 92.5966 run12.mat -1 -1 151 447441 457787 +891145 911819 20675 16095938.5779 16096973.9696 54.423 -20.1925 92.611 run12.mat -1 -1 151 457941 468278 +912125 920585 8461 16096989.2726 16097410.5902 52.7734 -20.1912 92.7453 run12.mat -1 -1 151 468431 472661 +1004842 1016177 11336 16101623.5299 16102190.1655 52.7784 -20.1926 93.2378 run12.mat -1 -1 152 514792 520459 +1016503 1037200 20698 16102206.4723 16103241.617 51.1278 -20.1919 92.523 run12.mat -1 -1 152 520622 530971 +1037506 1058199 20694 16103256.92 16104292.8134 49.4776 -20.1924 92.5759 run12.mat -1 -1 152 531124 541471 +1058507 1079199 20693 16104308.0973 16105341.4624 47.8254 -20.1924 92.6286 run12.mat -1 -1 152 541625 551972 +1079504 1100161 20658 16105356.6549 16106391.4918 46.1826 -20.1916 92.704 run12.mat -1 -1 152 552124 562453 +1100467 1100604 138 16106406.7948 16106413.6461 44.5408 -20.1935 88.4635 run12.mat -1 -1 152 562606 562675 +1184869 1204440 19572 16110627.2104 16111604.7695 44.5322 -20.1921 92.9328 run12.mat -1 -1 153 604809 614595 +1204776 1225438 20663 16111621.576 16112653.1584 42.8775 -20.1926 92.5462 run12.mat -1 -1 153 614763 625094 +1225747 1246437 20691 16112668.4919 16113704.2019 41.234 -20.1915 92.6802 run12.mat -1 -1 153 625249 635595 +1246745 1267418 20674 16113719.6051 16114753.9837 39.5821 -20.1924 92.6375 run12.mat -1 -1 153 635749 646085 +1267726 1280624 12899 16114769.511 16115411.9937 37.9362 -20.1919 92.738 run12.mat -1 -1 153 646239 652689 +1364923 1371837 6915 16119629.134 16119976.5911 37.9337 -20.194 94.0674 run12.mat -1 -1 154 694840 698297 +1372166 1392847 20682 16119992.798 16121024.0944 36.2857 -20.1917 92.5267 run12.mat -1 -1 154 698462 708803 +1393160 1413838 20679 16121039.8738 16122074.3565 34.6329 -20.1929 92.6011 run12.mat -1 -1 154 708959 719299 +1414144 1434840 20697 16122089.783 16123123.9033 32.9846 -20.1921 92.5945 run12.mat -1 -1 154 719452 729800 +1435145 1455817 20673 16123139.1596 16124173.0738 31.3339 -20.1925 92.7085 run12.mat -1 -1 154 729952 740289 +1456124 1460684 4561 16124188.4302 16124417.9419 29.6812 -20.1914 92.9171 run12.mat -1 -1 154 740443 742723 +1546850 1561977 15128 16128726.4858 16129483.443 29.684 -20.1927 93.0967 run12.mat -1 -1 155 785807 793371 +1562304 1582980 20677 16129499.7964 16130531.8621 28.0317 -20.1922 92.4165 run12.mat -1 -1 155 793535 803874 +1583287 1603980 20694 16130547.0933 16131580.6721 26.3831 -20.1928 92.5284 run12.mat -1 -1 155 804027 814374 +1604294 1624979 20686 16131596.5019 16132632.811 24.7353 -20.193 92.5859 run12.mat -1 -1 155 814531 824874 +1625286 1642623 17338 16132648.2282 16133513.7491 23.0876 -20.1938 92.7486 run12.mat -1 -1 155 825028 833696 +1726897 1729277 2381 16137728.6897 16137847.7134 23.0831 -20.1904 94.6434 run12.mat -1 -1 156 875835 877025 +1729599 1750300 20702 16137863.8165 16138899.002 21.4353 -20.1924 92.587 run12.mat -1 -1 156 877186 887555 +1750606 1771276 20671 16138914.4285 16139948.0175 19.7875 -20.1921 92.6455 run12.mat -1 -1 156 887690 898026 +1771585 1792279 20695 16139963.3509 16140996.1403 18.1404 -20.1921 92.645 run12.mat -1 -1 156 898180 908528 +1792587 1813259 20673 16141011.4211 16142046.9487 16.4868 -20.1921 92.652 run12.mat -1 -1 156 908682 919018 +1813568 1822703 9136 16142062.4026 16142517.5731 14.844 -20.1923 92.7494 run12.mat -1 -1 156 919173 923740 +1906915 1917539 10625 16146729.2376 16147260.8147 14.8444 -20.1934 93.3123 run12.mat -1 -1 157 965848 971160 +1917855 1938538 20684 16147276.7453 16148311.5484 13.1911 -20.1918 92.5996 run12.mat -1 -1 157 971318 981660 +1938846 1959539 20694 16148326.8976 16149361.9081 11.5429 -20.1923 92.6386 run12.mat -1 -1 157 981814 992161 +1959848 1980519 20672 16149377.361 16150407.114 9.8976 -20.1932 92.598 run12.mat -1 -1 157 992316 1002652 +1980828 2001481 20654 16150422.5672 16151455.4741 8.2463 -20.1922 92.7335 run12.mat -1 -1 157 1002806 1013133 +2001786 2002743 958 16151470.7272 16151518.5872 6.6051 -20.1942 92.6289 run12.mat -1 -1 157 1013286 1013764 +2086694 2105599 18906 16155717.1937 16156662.0688 6.593 -20.1916 93.0386 run12.mat -1 -1 158 1055741 1065194 +2105930 2126585 20656 16156678.7556 16157712.536 4.9467 -20.1935 92.603 run12.mat -1 -1 158 1065360 1075688 +2126900 2147580 20681 16157728.1641 16158762.4922 3.2977 -20.1921 92.6655 run12.mat -1 -1 158 1075845 1086186 +2147890 2168564 20675 16158778.1204 16159811.2015 1.6489 -20.1923 92.6041 run12.mat -1 -1 158 1086341 1096678 +2168870 2182582 13713 16159826.6279 16160512.5134 0.00083013 -20.1928 92.9106 run12.mat -1 -1 158 1096831 1103688 +2266833 2272841 6009 16164722.9964 16165024.9256 -0.0040766 -20.1933 93.7736 run12.mat -1 -1 159 1145815 1148819 +2273146 2293860 20715 16165040.1788 16166078.8517 -1.6494 -20.1929 92.6043 run12.mat -1 -1 159 1148972 1159329 +2294168 2314861 20694 16166094.3139 16167125.4447 -3.3016 -20.1928 92.6208 run12.mat -1 -1 159 1159483 1169830 +2315168 2335849 20682 16167140.7977 16168175.3331 -4.946 -20.1919 92.5395 run12.mat -1 -1 159 1169984 1180324 +2336163 2356844 20682 16168191.1629 16169226.4987 -6.5978 -20.1925 92.64 run12.mat -1 -1 159 1180481 1190823 +2357149 2362642 5494 16169241.6307 16169515.1235 -8.2526 -20.1933 92.6049 run12.mat -1 -1 159 1190975 1193721 +2446939 2461141 14203 16173731.6503 16174440.4032 -8.2491 -20.1925 93.0385 run12.mat -1 -1 160 1235872 1242973 +2461470 2482161 20692 16174456.8563 16175492.2597 -9.8961 -20.1915 92.517 run12.mat -1 -1 160 1243138 1253484 +2482469 2503141 20673 16175507.7871 16176539.8177 -11.5456 -20.1919 92.6302 run12.mat -1 -1 160 1253638 1263974 +2503449 2524138 20690 16176555.345 16177589.79 -13.1911 -20.192 92.5591 run12.mat -1 -1 160 1264128 1274473 +2524448 2542702 18255 16177605.1731 16178519.5657 -14.8457 -20.1923 92.7241 run12.mat -1 -1 160 1274628 1283756 +2626921 2628539 1619 16182730.2749 16182810.5487 -14.8497 -20.1937 97.6113 run12.mat -1 -1 161 1325861 1326658 +2628878 2649540 20663 16182827.3675 16183861.8348 -16.4924 -20.1927 92.5845 run12.mat -1 -1 161 1326845 1337177 +2649850 2670521 20672 16183877.338 16184909.1862 -18.1388 -20.1926 92.5963 run12.mat -1 -1 161 1337332 1347667 +2670829 2691520 20692 16184924.5922 16185958.4543 -19.7887 -20.1925 92.6815 run12.mat -1 -1 161 1347821 1358168 +2691825 2712501 20677 16185973.7073 16187009.7633 -21.4339 -20.1928 92.6289 run12.mat -1 -1 161 1358320 1368659 +2712809 2722741 9933 16187025.1665 16187519.8661 -23.093 -20.1922 92.8269 run12.mat -1 -1 161 1368813 1373779 +2806793 2816579 9787 16191723.5848 16192213.2072 -23.0891 -20.1924 93.2021 run12.mat -1 -1 162 1415807 1420700 +2816897 2837582 20686 16192229.1138 16193262.6646 -24.7378 -20.1921 92.5113 run12.mat -1 -1 162 1420859 1431202 +2837891 2858583 20693 16193278.1175 16194312.9742 -26.3861 -20.1924 92.5666 run12.mat -1 -1 162 1431356 1441703 +2858890 2879582 20693 16194328.3272 16195363.8817 -28.0332 -20.1921 92.6536 run12.mat -1 -1 162 1441856 1452203 +2879887 2900539 20653 16195379.0167 16196411.3863 -29.6892 -20.1929 92.6148 run12.mat -1 -1 162 1452355 1462682 +2900848 2902581 1734 16196426.8422 16196512.9853 -31.3388 -20.1911 92.7499 run12.mat -1 -1 162 1462837 1463703 +2986802 3004820 18019 16200724.8253 16201625.7861 -31.3394 -20.1933 92.9178 run12.mat -1 -1 163 1505815 1514825 +3005147 3025823 20677 16201642.1393 16202676.0658 -32.9857 -20.1923 92.6551 run12.mat -1 -1 163 1514988 1525326 +3026127 3046805 20679 16202691.3945 16203726.3422 -34.6385 -20.1921 92.5923 run12.mat -1 -1 163 1525478 1535818 +3047119 3067801 20683 16203741.9238 16204776.6162 -36.2883 -20.1928 92.6066 run12.mat -1 -1 163 1535975 1546317 +3068106 3082621 14516 16204791.8693 16205515.283 -37.9403 -20.192 92.7798 run12.mat -1 -1 163 1546469 1553727 +3166905 3172121 5217 16209730.8238 16209990.4217 -37.9466 -20.1929 94.3606 run12.mat -1 -1 164 1595871 1598479 +3172445 3193140 20696 16210006.7556 16211040.2188 -39.584 -20.1923 92.5098 run12.mat -1 -1 164 1598641 1608989 +3193448 3214111 20664 16211055.622 16212091.029 -41.2325 -20.1921 92.5247 run12.mat -1 -1 164 1609143 1619475 +3214429 3235117 20689 16212106.9321 16213140.0298 -42.8827 -20.1921 92.5937 run12.mat -1 -1 164 1619634 1629978 +3235427 3256086 20660 16213155.4129 16214188.3417 -44.5301 -20.1921 92.7419 run12.mat -1 -1 164 1630133 1640463 +3256403 3262701 6299 16214204.1978 16214519.1633 -46.1799 -20.1904 92.7717 run12.mat -1 -1 164 1640621 1643771 +3346978 3360380 13403 16218733.0546 16219403.951 -46.177 -20.1921 93.143 run12.mat -1 -1 165 1685911 1692613 +3360709 3381388 20680 16219420.2737 16220455.8256 -47.8289 -20.1925 92.5744 run12.mat -1 -1 165 1692777 1703117 +3381701 3402400 20700 16220471.6001 16221503.1133 -49.4765 -20.1922 92.6354 run12.mat -1 -1 165 1703273 1713624 +3402709 3423382 20674 16221518.6911 16222553.6335 -51.1266 -20.1932 92.5859 run12.mat -1 -1 165 1713778 1724115 +3423688 3442779 19092 16222568.815 16223522.7241 -52.7752 -20.1928 92.7688 run12.mat -1 -1 165 1724268 1733814 +3526852 3527582 731 16227726.1238 16227762.5039 -52.7814 -20.1967 100.8194 run12.mat -1 -1 166 1775852 1776217 +3527906 3548565 20660 16227778.7071 16228813.4331 -54.4253 -20.1929 92.6856 run12.mat -1 -1 166 1776379 1786709 +3548873 3569544 20672 16228828.717 16229861.1707 -56.0744 -20.1932 92.6457 run12.mat -1 -1 166 1786863 1797199 +3569851 3590544 20694 16229876.5239 16230913.4811 -57.7273 -20.1925 92.6345 run12.mat -1 -1 166 1797352 1807699 +3590850 3603837 12988 16230928.784 16231574.5726 -59.3738 -20.1929 92.7001 run12.mat -1 -1 166 1807852 1814346 +3604088 3611544 7457 16231587.1775 16231962.4172 -59.3712 -20.1927 92.7411 run12.mat -1 -1 166 1814472 1818200 +3611852 3622660 10809 16231977.9445 16232518.706 -61.0288 -20.1926 92.7247 run12.mat -1 -1 166 1818354 1823758 +3706785 3715762 8978 16236723.5668 16237171.9661 -61.0229 -20.1926 93.7497 run12.mat -1 -1 167 1865822 1870311 +3716089 3736766 20678 16237188.1895 16238223.9758 -62.6756 -20.1922 92.4956 run12.mat -1 -1 167 1870475 1880814 +3737070 3757765 20696 16238239.3015 16239272.8371 -64.3257 -20.1926 92.6269 run12.mat -1 -1 167 1880966 1891313 +3758076 3778765 20690 16239288.3017 16240323.2075 -65.9782 -20.1932 92.6672 run12.mat -1 -1 167 1891469 1901814 +3779073 3799739 20667 16240338.7348 16241370.0108 -67.6241 -20.1927 92.6886 run12.mat -1 -1 167 1901968 1912302 +3800049 3802680 2632 16241385.5138 16241517.0891 -69.273 -20.1917 92.7079 run12.mat -1 -1 167 1912457 1913772 +3886998 3904204 17207 16245735.1334 16246595.7745 -69.2711 -20.193 93.0627 run12.mat -1 -1 168 1955933 1964537 +3904523 3925206 20684 16246611.8596 16247644.6532 -70.9202 -20.1912 92.5844 run12.mat -1 -1 168 1964696 1975038 +3925511 3946206 20696 16247660.0292 16248695.1533 -72.5687 -20.1924 92.5641 run12.mat -1 -1 168 1975190 1985538 +3946513 3967184 20672 16248710.6302 16249744.7096 -74.2202 -20.1926 92.6183 run12.mat -1 -1 168 1985692 1996028 +3967493 3982740 15248 16249760.2874 16250522.181 -75.863 -20.1921 92.7673 run12.mat -1 -1 168 1996182 2003806 +4067023 4071601 4579 16254735.8038 16254965.6491 -75.8618 -20.194 94.7859 run12.mat -1 -1 169 2045949 2048238 +4071907 4092606 20700 16254981.0756 16256015.3332 -77.5159 -20.1923 92.5465 run12.mat -1 -1 169 2048391 2058741 +4092925 4113606 20682 16256031.2865 16257063.5912 -79.1658 -20.1919 92.5797 run12.mat -1 -1 169 2058901 2069242 +4113913 4134607 20695 16257078.9444 16258116.9496 -80.8173 -20.1914 92.6468 run12.mat -1 -1 169 2069395 2079743 +4134913 4155586 20674 16258132.132 16259164.122 -82.4653 -20.1921 92.6096 run12.mat -1 -1 169 2079896 2090233 +4155894 4162819 6926 16259179.5279 16259527.1633 -82.4582 -18.5082 92.9526 run12.mat -1 -1 169 2090387 2093850 +4247125 4259912 12788 16263742.1541 16264380.8467 -82.4638 -18.5073 93.1798 run12.mat -1 -1 170 2136004 2142398 +4260231 4280925 20695 16264396.7998 16265432.029 -80.816 -18.5094 92.6124 run12.mat -1 -1 170 2142558 2152905 +4281234 4301915 20682 16265447.6068 16266480.8537 -79.1688 -18.5094 92.5593 run12.mat -1 -1 170 2153060 2163401 +4302228 4322907 20680 16266496.3826 16267529.3772 -77.5173 -18.5098 92.5354 run12.mat -1 -1 170 2163557 2173897 +4323214 4342918 19705 16267544.7301 16268531.1613 -75.8658 -18.508 92.7514 run12.mat -1 -1 170 2174050 2183903 +4427281 4427336 56 16272748.8386 16272751.613 -75.9296 -18.5081 101.4863 run12.mat -1 -1 171 2226086 2226113 +4427658 4448269 20612 16272767.8559 16273799.0202 -74.2217 -18.5089 92.7732 run12.mat -1 -1 171 2226274 2236581 +4448572 4469269 20698 16273814.2954 16274848.5123 -72.5744 -18.5099 92.5908 run12.mat -1 -1 171 2236732 2247081 +4469574 4490269 20696 16274863.7687 16275899.1607 -70.9209 -18.5093 92.5821 run12.mat -1 -1 171 2247233 2257582 +4490575 4511246 20672 16275914.3423 16276948.9034 -69.2729 -18.5097 92.6121 run12.mat -1 -1 171 2257735 2268070 +4511556 4523038 11483 16276964.4094 16277536.6681 -67.6218 -18.5092 92.8048 run12.mat -1 -1 171 2268225 2273967 +4607163 4615491 8329 16281743.0042 16282160.9254 -67.624 -18.5077 93.7856 run12.mat -1 -1 172 2316031 2320195 +4615799 4636489 20691 16282176.4527 16283209.7852 -65.9757 -18.5084 92.5077 run12.mat -1 -1 172 2320349 2330695 +4636795 4657486 20692 16283225.0331 16284261.5677 -64.3198 -18.5081 92.6332 run12.mat -1 -1 172 2330848 2341194 +4657795 4678470 20676 16284276.9012 16285309.267 -62.6718 -18.5087 92.5556 run12.mat -1 -1 172 2341348 2351686 +4678777 4699449 20673 16285324.6199 16286357.4358 -61.023 -18.5091 92.6759 run12.mat -1 -1 172 2351840 2362176 +4699755 4703058 3304 16286372.6174 16286537.5457 -59.3747 -18.5079 92.8715 run12.mat -1 -1 172 2362329 2363981 +4787332 4803756 16425 16290754.6901 16291572.6796 -59.3741 -18.508 92.9723 run12.mat -1 -1 173 2406120 2414332 +4804076 4824749 20674 16291588.8119 16292623.1828 -57.7272 -18.5087 92.635 run12.mat -1 -1 173 2414492 2424829 +4825055 4845747 20693 16292638.3644 16293673.6922 -56.0702 -18.5079 92.6521 run12.mat -1 -1 173 2424982 2435329 +4846056 4866746 20691 16293689.2731 16294725.4299 -54.4254 -18.5084 92.6224 run12.mat -1 -1 173 2435483 2445828 +4867054 4883118 16065 16294740.8973 16295542.204 -52.7759 -18.5075 92.689 run12.mat -1 -1 173 2445982 2454015 +4967419 4971188 3770 16299758.5398 16299945.7307 -52.7783 -18.5072 95.34 run12.mat -1 -1 174 2496167 2498052 +4971496 4992170 20675 16299961.0115 16300992.8412 -51.1283 -18.509 92.3862 run12.mat -1 -1 174 2498206 2508543 +4992486 5013169 20684 16301008.519 16302043.6988 -49.4771 -18.5088 92.6489 run12.mat -1 -1 174 2508701 2519043 +5013476 5034167 20692 16302059.0563 16303093.9192 -47.8281 -18.5078 92.6459 run12.mat -1 -1 174 2519196 2529542 +5034475 5055148 20674 16303109.3251 16304144.5121 -46.1817 -18.5094 92.6373 run12.mat -1 -1 174 2529696 2540033 +5055456 5063158 7703 16304159.796 16304541.944 -44.5344 -18.5112 92.8721 run12.mat -1 -1 174 2540187 2544039 +5147217 5159370 12154 16308747.4271 16309356.4484 -44.5364 -18.5081 93.3223 run12.mat -1 -1 175 2586070 2592147 +5159679 5180368 20690 16309371.7758 16310404.105 -42.8831 -18.5092 92.5741 run12.mat -1 -1 175 2592302 2602646 +5180677 5201347 20671 16310419.4354 16311453.05 -41.2346 -18.5079 92.571 run12.mat -1 -1 175 2602801 2613136 +5201657 5222371 20715 16311468.6782 16312504.1804 -39.5861 -18.5089 92.5544 run12.mat -1 -1 175 2613291 2623649 +5222679 5243037 20359 16312519.4612 16313537.1316 -37.9371 -18.5096 92.772 run12.mat -1 -1 175 2623803 2633982 +5327294 5347774 20481 16317750.0092 16318772.92 -36.2851 -18.5086 92.9985 run12.mat -1 -1 176 2676112 2686353 +5348095 5368770 20676 16318788.8458 16319823.1429 -34.6348 -18.5084 92.5856 run12.mat -1 -1 176 2686514 2696851 +5369079 5389757 20679 16319838.3645 16320873.1504 -32.9866 -18.5082 92.6364 run12.mat -1 -1 176 2697006 2707345 +5390073 5410767 20695 16320889.0811 16321925.8632 -31.3361 -18.5086 92.7022 run12.mat -1 -1 176 2707503 2717851 +5411076 5423117 12042 16321941.3162 16322542.8923 -29.6847 -18.5078 92.8146 run12.mat -1 -1 176 2718005 2724026 +5507326 5514971 7646 16326751.9425 16327136.3366 -29.692 -18.5103 93.5607 run12.mat -1 -1 177 2766132 2769955 +5515281 5535987 20707 16327151.7197 16328187.1943 -28.0324 -18.5088 92.5339 run12.mat -1 -1 177 2770110 2780463 +5536296 5556971 20676 16328202.5247 16329236.2616 -26.3875 -18.5092 92.6309 run12.mat -1 -1 177 2780618 2790956 +5557277 5577954 20678 16329251.4431 16330283.4881 -24.7364 -18.5079 92.6289 run12.mat -1 -1 177 2791109 2801448 +5578262 5598931 20670 16330299.0186 16331333.004 -23.091 -18.5089 92.6839 run12.mat -1 -1 177 2801602 2811937 +5599237 5603117 3881 16331348.4336 16331541.7289 -21.4254 -18.5093 92.8614 run12.mat -1 -1 177 2812090 2814030 +5687391 5703262 15872 16335757.948 16336550.5044 -21.435 -18.5096 92.9689 run12.mat -1 -1 178 2856169 2864105 +5703579 5724253 20675 16336566.3605 16337598.9583 -19.7922 -18.5094 92.6012 run12.mat -1 -1 178 2864263 2874601 +5724574 5745251 20678 16337614.8873 16338648.4806 -18.1416 -18.5093 92.5639 run12.mat -1 -1 178 2874761 2885100 +5745557 5766234 20678 16338663.7865 16339700.9542 -16.4946 -18.5086 92.6332 run12.mat -1 -1 178 2885253 2895592 +5766543 5783176 16634 16339716.4102 16340547.1501 -14.8473 -18.5098 92.8008 run12.mat -1 -1 178 2895746 2904063 +5867467 5870662 3196 16344759.613 16344918.1266 -14.8484 -18.5097 95.2928 run12.mat -1 -1 179 2946211 2947808 +5870980 5891649 20670 16344933.9036 16345967.6378 -13.1952 -18.5087 92.5485 run12.mat -1 -1 179 2947967 2958302 +5891960 5912649 20690 16345983.0013 16347019.0194 -11.5472 -18.5096 92.6156 run12.mat -1 -1 179 2958458 2968803 +5912957 5933651 20695 16347034.5498 16348070.3253 -9.8989 -18.5084 92.6176 run12.mat -1 -1 179 2968957 2979304 +5933956 5954648 20693 16348085.4572 16349119.2576 -8.2487 -18.5099 92.6735 run12.mat -1 -1 179 2979457 2989803 +5954959 5963256 8298 16349134.8141 16349549.8287 -6.6015 -18.5076 92.8413 run12.mat -1 -1 179 2989959 2994107 +6047521 6058931 11411 16353764.248 16354334.4763 -6.5983 -18.508 93.253 run12.mat -1 -1 180 3036242 3041961 +6059240 6079930 20691 16354350.054 16355382.9921 -4.9442 -18.5096 92.5501 run12.mat -1 -1 180 3042102 3052447 +6080238 6100931 20694 16355398.5195 16356432.8891 -3.2975 -18.5077 92.6409 run12.mat -1 -1 180 3052601 3062948 +6101237 6121910 20674 16356448.0706 16357483.3148 -1.6483 -18.5084 92.6046 run12.mat -1 -1 180 3063101 3073438 +6122217 6142891 20675 16357498.7917 16358530.8611 -0.0020519 -18.5089 92.7978 run12.mat -1 -1 180 3073591 3083929 +6143199 6143316 118 16358546.267 16358552.1193 1.6737 -18.5212 93.4067 run12.mat -1 -1 180 3084083 3084141 +6227593 6247199 19607 16362768.0438 16363746.5911 1.6483 -18.5092 92.8159 run12.mat -1 -1 181 3126282 3136085 +6247517 6268192 20676 16363762.4941 16364796.5515 3.2988 -18.5091 92.5483 run12.mat -1 -1 181 3136244 3146582 +6268500 6289182 20683 16364811.9579 16365845.9476 4.9445 -18.5086 92.606 run12.mat -1 -1 181 3146736 3157078 +6289492 6310171 20680 16365861.3307 16366896.0186 6.5965 -18.5079 92.6792 run12.mat -1 -1 181 3157233 3167572 +6310482 6323395 12914 16366911.6971 16367556.6033 8.2427 -18.5078 92.7366 run12.mat -1 -1 181 3167728 3174185 +6407594 6414407 6814 16371766.0242 16372108.5793 8.246 -18.5095 93.7463 run12.mat -1 -1 182 3216286 3219693 +6414727 6435411 20685 16372124.644 16373159.1159 9.897 -18.5089 92.425 run12.mat -1 -1 182 3219853 3230195 +6435720 6456413 20694 16373174.4463 16374208.4343 11.5409 -18.5085 92.5862 run12.mat -1 -1 182 3230350 3240697 +6456720 6477392 20673 16374224.0272 16375257.0246 13.1918 -18.5091 92.5803 run12.mat -1 -1 182 3240850 3251187 +6477700 6498373 20674 16375272.5519 16376304.8458 14.8416 -18.5092 92.6325 run12.mat -1 -1 182 3251341 3261678 +6498680 6503394 4715 16376320.199 16376555.9888 16.4914 -18.5081 92.5669 run12.mat -1 -1 182 3261831 3264188 +6587576 6602819 15244 16380765.1825 16381528.9179 16.4883 -18.5083 93.08 run12.mat -1 -1 183 3306281 3313903 +6603131 6623796 20666 16381544.6469 16382578.6895 18.1356 -18.5087 92.6205 run12.mat -1 -1 183 3314059 3324392 +6624102 6644803 20702 16382593.9954 16383627.2148 19.7864 -18.5095 92.6021 run12.mat -1 -1 183 3324545 3334896 +6645117 6665798 20682 16383642.7963 16384678.3628 21.4372 -18.5082 92.5538 run12.mat -1 -1 183 3335053 3345394 +6666115 6683476 17362 16384694.2161 16385562.0887 23.0867 -18.5077 92.817 run12.mat -1 -1 183 3345552 3354233 +6767523 6769916 2394 16389762.9076 16389883.5712 23.0901 -18.5089 96.0727 run12.mat -1 -1 184 3396259 3397455 +6770237 6790913 20677 16389899.6526 16390931.721 24.7372 -18.5082 92.5023 run12.mat -1 -1 184 3397616 3407954 +6791220 6811917 20698 16390947.077 16391983.8713 26.3858 -18.5085 92.5897 run12.mat -1 -1 184 3408108 3418456 +6812223 6832895 20673 16391999.3009 16393032.3758 28.036 -18.5093 92.62 run12.mat -1 -1 184 3418609 3428946 +6833202 6853893 20692 16393047.7288 16394082.5343 29.6877 -18.5088 92.7026 run12.mat -1 -1 184 3429099 3439445 +6854203 6863375 9173 16394098.0375 16394555.6761 31.3354 -18.5105 92.8243 run12.mat -1 -1 184 3439600 3444187 +6947667 6958207 10541 16398772.5642 16399297.6872 31.339 -18.5074 93.3836 run12.mat -1 -1 185 3486335 3491605 +6958525 6979216 20692 16399313.7187 16400347.8549 32.9854 -18.5083 92.6344 run12.mat -1 -1 185 3491764 3502109 +6979523 7000196 20674 16400363.0861 16401398.3425 34.6346 -18.5086 92.5835 run12.mat -1 -1 185 3502263 3512600 +7000503 7021197 20695 16401413.8225 16402448.9 36.286 -18.5077 92.5913 run12.mat -1 -1 185 3512754 3523101 +7021503 7042172 20670 16402464.2063 16403497.5711 37.9338 -18.5094 92.7488 run12.mat -1 -1 185 3523254 3533589 +7042480 7043474 995 16403512.852 16403562.1673 39.5795 -18.5013 92.3249 run12.mat -1 -1 185 3533743 3534240 +7127543 7146277 18735 16407765.1664 16408703.5015 39.5794 -18.5095 92.8486 run12.mat -1 -1 186 3576276 3585644 +7146586 7167257 20672 16408718.9579 16409750.8117 41.2298 -18.509 92.5086 run12.mat -1 -1 186 3585798 3596134 +7167566 7188258 20693 16409766.2647 16410800.3949 42.8759 -18.5104 92.6668 run12.mat -1 -1 186 3596289 3606635 +7188565 7209238 20674 16410815.6261 16411849.2914 44.5294 -18.5086 92.5469 run12.mat -1 -1 186 3606789 3617126 +7209546 7223314 13769 16411864.5752 16412554.7715 46.1738 -18.5088 92.7757 run12.mat -1 -1 186 3617280 3624164 +7307550 7313516 5967 16416764.3 16417062.6352 46.1772 -18.5069 94.1226 run12.mat -1 -1 187 3666284 3669267 +7313827 7334512 20686 16417078.1912 16418113.8715 47.8257 -18.5087 92.5955 run12.mat -1 -1 187 3669422 3679765 +7334822 7355517 20696 16418129.4997 16419163.824 49.4723 -18.5091 92.5871 run12.mat -1 -1 187 3679920 3690268 +7355825 7376497 20673 16419179.1048 16420212.5462 51.1249 -18.5086 92.5589 run12.mat -1 -1 187 3690422 3700759 +7376805 7397478 20674 16420227.9494 16421262.766 52.7779 -18.5084 92.6557 run12.mat -1 -1 187 3700913 3711250 +7397786 7403333 5548 16421278.0468 16421553.6699 54.4262 -18.5079 92.8466 run12.mat -1 -1 187 3711404 3714177 +7487441 7501711 14271 16425760.2136 16426473.8883 54.4254 -18.5075 93.2082 run12.mat -1 -1 188 3756233 3763368 +7502023 7522686 20664 16426489.4948 16427521.9034 56.0769 -18.5091 92.4593 run12.mat -1 -1 188 3763524 3773856 +7523002 7543701 20700 16427537.7095 16428574.5479 57.7279 -18.5089 92.6358 run12.mat -1 -1 188 3774014 3784365 +7544004 7564677 20674 16428589.5807 16429622.7358 59.3766 -18.5092 92.6297 run12.mat -1 -1 188 3784516 3794853 +7564985 7583213 18229 16429638.2632 16430547.0843 61.0223 -18.5081 92.8017 run12.mat -1 -1 188 3795007 3804121 +7667531 7669137 1607 16434765.3018 16434844.9804 61.031 -18.507 97.169 run12.mat -1 -1 189 3846282 3847085 +7669447 7690133 20687 16434860.3604 16435895.419 62.6706 -18.5081 92.6189 run12.mat -1 -1 189 3847240 3857584 +7690441 7711119 20679 16435910.8223 16436943.9087 64.3245 -18.5079 92.5108 run12.mat -1 -1 189 3857738 3868077 +7711425 7732120 20696 16436959.0903 16437994.105 65.9741 -18.5089 92.5991 run12.mat -1 -1 189 3868230 3878578 +7732426 7753098 20673 16438009.4668 16439043.6386 67.6231 -18.5075 92.56 run12.mat -1 -1 189 3878731 3889068 +7753407 7763313 9907 16439059.0339 16439556.2787 69.2701 -18.509 92.7331 run12.mat -1 -1 189 3889222 3894175 +7847275 7857188 9914 16443753.1428 16444249.3835 69.27 -18.5087 93.5652 run12.mat -1 -1 190 3936158 3941115 +7857509 7878196 20688 16444265.4366 16445300.761 70.9171 -18.5091 92.5455 run12.mat -1 -1 190 3941275 3951620 +7878503 7899186 20684 16445316.238 16446348.7789 72.5679 -18.5084 92.6252 run12.mat -1 -1 190 3951773 3962115 +7899502 7920180 20679 16446364.4597 16447397.1456 74.214 -18.5085 92.6369 run12.mat -1 -1 190 3962273 3972612 +7920486 7941158 20673 16447412.5752 16448447.1609 75.8654 -18.5085 92.7187 run12.mat -1 -1 190 3972765 3983102 +7941464 7943173 1710 16448462.3425 16448547.1312 77.4978 -18.5129 92.7123 run12.mat -1 -1 190 3983255 3984109 +8027383 8045461 18079 16452758.5023 16453659.6094 77.5125 -18.5089 93.0427 run12.mat -1 -1 191 4026216 4035255 +8045780 8066458 20679 16453675.5661 16454709.7652 79.1656 -18.5095 92.6397 run12.mat -1 -1 191 4035415 4045755 +8066764 8087440 20677 16454725.0683 16455761.1758 80.8132 -18.5091 92.5327 run12.mat -1 -1 191 4045908 4056246 +8087745 8108085 20341 16455776.4287 16456791.6822 82.4613 -18.5076 92.5507 run12.mat -1 -1 191 4056399 4066569 +291208 311719 20512 -185214.5305 -184180.2929 82.4623 -16.8285 92.817 run13.mat -1 -1 193 1 1 +312025 332698 20674 -184164.8633 -183122.457 80.8155 -16.829 92.6045 run13.mat -1 -1 193 1 1 +333005 353697 20693 -183106.977 -182063.6127 79.1641 -16.8294 92.6106 run13.mat -1 -1 193 1 1 +354004 374698 20695 -182048.1327 -181004.6676 77.5117 -16.8284 92.6558 run13.mat -1 -1 193 1 1 +375009 387104 12096 -180988.9859 -180379.1129 75.8639 -16.8275 92.623 run13.mat -1 -1 193 1 1 +471090 478826 7737 -176144.24 -175754.1634 75.8636 -16.8288 93.9133 run13.mat -1 -1 194 1 1 +479138 499837 20700 -175738.4312 -174694.714 74.214 -16.8276 92.5937 run13.mat -1 -1 194 1 1 +500145 520820 20676 -174679.1835 -173636.6765 72.5679 -16.8286 92.6341 run13.mat -1 -1 194 1 1 +521126 541815 20690 -173621.2469 -172578.0339 70.9159 -16.8283 92.6525 run13.mat -1 -1 194 1 1 +542124 562798 20675 -172562.453 -171519.9964 69.2677 -16.8301 92.6836 run13.mat -1 -1 194 1 1 +563105 566984 3880 -171504.5163 -171308.9234 67.6121 -16.8285 92.9537 run13.mat -1 -1 194 1 1 +651132 667096 15965 -167065.8818 -166260.9201 67.6202 -16.8291 93.2359 run13.mat -1 -1 195 1 1 +667402 688095 20694 -166245.4905 -165202.0758 65.9717 -16.8282 92.6254 run13.mat -1 -1 195 1 1 +688403 709078 20676 -165186.5454 -164144.0383 64.3225 -16.8292 92.6039 run13.mat -1 -1 195 1 1 +709385 730077 20693 -164128.5583 -163085.194 62.673 -16.8294 92.6237 run13.mat -1 -1 195 1 1 +730385 747023 16639 -163069.6636 -162230.7164 61.0256 -16.8292 92.725 run13.mat -1 -1 195 1 1 +831361 834416 3056 -157978.0944 -157824.0504 61.0135 -16.8291 94.5246 run13.mat -1 -1 196 1 1 +834739 855418 20680 -157807.7636 -156765.0549 59.3759 -16.8288 92.4518 run13.mat -1 -1 196 1 1 +855723 876416 20694 -156749.6757 -155706.261 57.7292 -16.8301 92.647 run13.mat -1 -1 196 1 1 +876723 897398 20676 -155690.781 -154648.2739 56.0776 -16.8288 92.5088 run13.mat -1 -1 196 1 1 +897703 918378 20676 -154632.8947 -153590.3877 54.4264 -16.8291 92.6468 run13.mat -1 -1 196 1 1 +918684 927122 8439 -153574.958 -153149.4841 52.7786 -16.8282 92.7163 run13.mat -1 -1 196 1 1 +1011335 1022656 11322 -148903.165 -148332.3199 52.7826 -16.8269 93.0775 run13.mat -1 -1 197 1 1 +1022982 1043677 20696 -148315.8818 -147272.3663 51.1276 -16.8286 92.5299 run13.mat -1 -1 197 1 1 +1043983 1064660 20678 -147256.9367 -146214.3288 49.4767 -16.8287 92.5361 run13.mat -1 -1 197 1 1 +1064964 1085656 20693 -146199 -145155.6357 47.8266 -16.8294 92.6501 run13.mat -1 -1 197 1 1 +1085965 1106618 20654 -145140.0549 -144098.6571 46.1761 -16.8283 92.7277 run13.mat -1 -1 197 1 1 +1106926 1107162 237 -144083.1267 -144071.2267 44.5561 -16.8246 92.3627 run13.mat -1 -1 197 1 1 +1191424 1210936 19513 -139822.4369 -138838.5724 44.5285 -16.8293 92.9137 run13.mat -1 -1 198 1 1 +1211263 1231939 20677 -138822.0839 -137779.5264 42.876 -16.829 92.5981 run13.mat -1 -1 198 1 1 +1232250 1252938 20689 -137763.8447 -136720.6821 41.2263 -16.8285 92.548 run13.mat -1 -1 198 1 1 +1253245 1273940 20696 -136705.2021 -135661.6866 39.581 -16.8288 92.5688 run13.mat -1 -1 198 1 1 +1274245 1287222 12978 -135646.3074 -134991.9609 37.9323 -16.8301 92.7391 run13.mat -1 -1 198 1 1 +1371322 1378038 6717 -130751.3397 -130412.695 37.932 -16.8274 93.4481 run13.mat -1 -1 199 1 1 +1378363 1399039 20677 -130396.3074 -129353.7499 36.2859 -16.829 92.5092 run13.mat -1 -1 199 1 1 +1399346 1420040 20695 -129338.2699 -128294.8048 34.6318 -16.8284 92.5816 run13.mat -1 -1 199 1 1 +1420347 1441027 20681 -128279.3247 -127236.5656 32.9848 -16.8293 92.5545 run13.mat -1 -1 199 1 1 +1441339 1462000 20662 -127220.8334 -126179.0323 31.3364 -16.8282 92.6385 run13.mat -1 -1 199 1 1 +1462307 1467102 4796 -126163.5522 -125921.7713 29.6926 -16.8284 92.7476 run13.mat -1 -1 199 1 1 +1551444 1566477 15034 -121668.9476 -120910.9302 29.6891 -16.8301 93.1681 run13.mat -1 -1 200 1 1 +1566809 1587479 20671 -120894.1896 -119851.9347 28.0373 -16.8286 92.5372 run13.mat -1 -1 200 1 1 +1587786 1608460 20675 -119836.4546 -118793.998 26.3879 -16.8299 92.5523 run13.mat -1 -1 200 1 1 +1608768 1629459 20692 -118778.4675 -117735.1537 24.7405 -16.8286 92.6578 run13.mat -1 -1 200 1 1 +1629769 1647202 17434 -117719.5224 -116840.4885 23.0913 -16.8289 92.7036 run13.mat -1 -1 200 1 1 +1731392 1733898 2507 -112595.3292 -112468.9677 23.0824 -16.8292 95.7749 run13.mat -1 -1 201 1 1 +1734234 1754919 20686 -112452.0254 -111409.0141 21.4385 -16.8284 92.5553 run13.mat -1 -1 201 1 1 +1755228 1775902 20675 -111393.4332 -110350.9766 19.7839 -16.829 92.6693 run13.mat -1 -1 201 1 1 +1776209 1796902 20694 -110335.4966 -109292.0819 18.1402 -16.8284 92.6575 run13.mat -1 -1 201 1 1 +1797206 1817881 20676 -109276.7531 -108234.2461 16.4877 -16.8294 92.6298 run13.mat -1 -1 201 1 1 +1818188 1827281 9094 -108218.766 -107760.2646 14.8416 -16.8285 92.7666 run13.mat -1 -1 201 1 1 +1911549 1922271 10723 -103511.1722 -102970.5309 14.8434 -16.8284 93.4103 run13.mat -1 -1 202 1 1 +1922582 1943264 20683 -102954.8491 -101911.9891 13.1897 -16.8289 92.5685 run13.mat -1 -1 202 1 1 +1943570 1964260 20691 -101896.5595 -100853.2961 11.5412 -16.8295 92.5841 run13.mat -1 -1 202 1 1 +1964568 1985262 20695 -100837.7656 -99794.3005 9.8929 -16.829 92.6444 run13.mat -1 -1 202 1 1 +1985568 2006241 20674 -99778.8709 -98736.4647 8.2441 -16.8291 92.6801 run13.mat -1 -1 202 1 1 +2006547 2007320 774 -98721.0351 -98682.0577 6.604 -16.8282 92.2902 run13.mat -1 -1 202 1 1 +2091370 2110363 18994 -94443.9576 -93486.263 6.591 -16.8294 92.9586 run13.mat -1 -1 203 1 1 +2110696 2131381 20686 -93469.472 -92426.4607 4.9464 -16.8283 92.615 run13.mat -1 -1 203 1 1 +2131690 2152363 20674 -92410.8798 -91368.4736 3.2996 -16.8291 92.6082 run13.mat -1 -1 203 1 1 +2152671 2173365 20695 -91352.9431 -90309.478 1.6514 -16.8292 92.6216 run13.mat -1 -1 203 1 1 +2173672 2187220 13549 -90293.998 -89610.8596 0.00252 -16.8303 92.8102 run13.mat -1 -1 203 1 1 +2271374 2277662 6289 -85367.5155 -85050.4522 -0.0041433 -16.8271 93.8567 run13.mat -1 -1 204 1 1 +2277968 2298658 20691 -85035.0226 -83991.7592 -1.6479 -16.8299 92.5593 run13.mat -1 -1 204 1 1 +2298968 2319644 20677 -83976.1279 -82933.5704 -3.2957 -16.8286 92.5309 run13.mat -1 -1 204 1 1 +2319949 2340661 20713 -82918.1912 -81873.8185 -4.9467 -16.8285 92.5743 run13.mat -1 -1 204 1 1 +2340970 2361624 20655 -81858.2376 -80816.7894 -6.5951 -16.8279 92.6971 run13.mat -1 -1 204 1 1 +2361930 2367280 5351 -80801.3598 -80531.5938 -8.2474 -16.8317 92.9771 run13.mat -1 -1 204 1 1 +2451344 2465722 14379 -76292.7878 -75567.7979 -8.2508 -16.8288 93.0388 run13.mat -1 -1 205 1 1 +2466049 2486741 20693 -75551.3094 -74507.9451 -9.8977 -16.8287 92.5331 run13.mat -1 -1 205 1 1 +2487049 2507741 20693 -74492.4147 -73449.0504 -11.548 -16.8291 92.6711 run13.mat -1 -1 205 1 1 +2508051 2528725 20675 -73433.4191 -72390.9625 -13.195 -16.8292 92.5459 run13.mat -1 -1 205 1 1 +2529030 2547140 18111 -72375.5833 -71462.4127 -14.8481 -16.8282 92.7936 run13.mat -1 -1 205 1 1 +2631458 2633051 1594 -67210.7991 -67130.4744 -14.8458 -16.8282 97.2933 run13.mat -1 -1 206 1 1 +2633365 2654066 20702 -67114.6414 -66070.8233 -16.4919 -16.8297 92.5946 run13.mat -1 -1 206 1 1 +2654371 2675063 20693 -66055.4441 -65012.0799 -18.1429 -16.829 92.6355 run13.mat -1 -1 206 1 1 +2675371 2696044 20674 -64996.5494 -63954.1432 -19.7928 -16.8296 92.6244 run13.mat -1 -1 206 1 1 +2696351 2717044 20694 -63938.6632 -62895.2485 -21.4365 -16.8295 92.652 run13.mat -1 -1 206 1 1 +2717352 2727240 9889 -62879.718 -62381.1299 -23.0886 -16.8281 92.8122 run13.mat -1 -1 206 1 1 +2811506 2821462 9957 -58132.1384 -57630.1214 -23.0928 -16.8294 93.4493 run13.mat -1 -1 207 1 1 +2821789 2842473 20685 -57613.6329 -56570.672 -24.7347 -16.8292 92.4909 run13.mat -1 -1 207 1 1 +2842789 2863462 20674 -56554.7382 -55512.332 -26.3868 -16.829 92.649 run13.mat -1 -1 207 1 1 +2863773 2884468 20696 -55496.6503 -54453.1347 -28.0319 -16.8291 92.6427 run13.mat -1 -1 207 1 1 +2884784 2905442 20659 -54437.2009 -53395.551 -29.6862 -16.8292 92.6744 run13.mat -1 -1 207 1 1 +2905751 2907279 1529 -53379.9701 -53302.923 -31.3244 -16.8276 92.918 run13.mat -1 -1 207 1 1 +2991425 3009718 18294 -49059.9823 -48137.5841 -31.3358 -16.8284 93.0436 run13.mat -1 -1 208 1 1 +3010039 3030707 20669 -48121.3981 -47079.2441 -32.9822 -16.8282 92.6329 run13.mat -1 -1 208 1 1 +3031016 3051706 20691 -47063.6632 -46020.3998 -34.633 -16.828 92.6339 run13.mat -1 -1 208 1 1 +3052013 3072705 20693 -46004.9197 -44961.5555 -36.2845 -16.8288 92.5696 run13.mat -1 -1 208 1 1 +3073011 3087179 14169 -44946.1259 -44231.7249 -37.9354 -16.8276 92.7339 run13.mat -1 -1 208 1 1 +3171455 3176985 5531 -39982.2291 -39703.3868 -37.9397 -16.83 94.0142 run13.mat -1 -1 209 1 1 +3177310 3198005 20696 -39686.9992 -38643.4837 -39.5855 -16.8284 92.4158 run13.mat -1 -1 209 1 1 +3198314 3218988 20675 -38627.9028 -37585.4461 -41.2321 -16.828 92.6054 run13.mat -1 -1 209 1 1 +3219306 3239987 20682 -37569.4115 -36526.6019 -42.8822 -16.8282 92.5264 run13.mat -1 -1 209 1 1 +3240295 3260966 20672 -36511.0714 -35468.766 -44.5359 -16.8288 92.6948 run13.mat -1 -1 209 1 1 +3261276 3267259 5984 -35453.1347 -35151.4506 -46.1767 -16.8297 92.803 run13.mat -1 -1 209 1 1 +3351532 3365305 13774 -30902.1061 -30207.6224 -46.1831 -16.8287 93.1122 run13.mat -1 -1 210 1 1 +3365612 3386294 20683 -30192.1424 -29149.2824 -47.829 -16.8289 92.5924 run13.mat -1 -1 210 1 1 +3386601 3407309 20709 -29133.8023 -28089.6313 -49.4764 -16.8284 92.559 run13.mat -1 -1 210 1 1 +3407615 3428287 20673 -28074.2017 -27031.8459 -51.1292 -16.8292 92.6346 run13.mat -1 -1 210 1 1 +3428593 3447358 18766 -27016.4163 -26070.2182 -52.778 -16.8285 92.7996 run13.mat -1 -1 210 1 1 +3531460 3532546 1087 -21829.4962 -21774.7362 -52.7781 -16.8304 99.8064 run13.mat -1 -1 211 1 1 +3532866 3553511 20646 -21758.6006 -20717.6063 -54.4252 -16.8294 92.5522 run13.mat -1 -1 211 1 1 +3553818 3574530 20713 -20702.1263 -19657.7535 -56.073 -16.8285 92.6527 run13.mat -1 -1 211 1 1 +3574838 3595510 20673 -19642.2231 -18599.8673 -57.7254 -16.8287 92.6289 run13.mat -1 -1 211 1 1 +3595818 3616510 20693 -18584.3368 -17540.9726 -59.3761 -16.8297 92.5828 run13.mat -1 -1 211 1 1 +3616816 3627238 10423 -17525.543 -17000.0286 -61.0213 -16.829 92.8009 run13.mat -1 -1 211 1 1 +3711363 3720769 9407 -12758.1468 -12283.8628 -61.0254 -16.8276 93.4594 run13.mat -1 -1 212 1 1 +3721088 3741768 20681 -12267.7777 -11225.0186 -62.6746 -16.8289 92.5328 run13.mat -1 -1 212 1 1 +3742077 3762755 20679 -11209.4377 -10166.7793 -64.3235 -16.8289 92.5567 run13.mat -1 -1 212 1 1 +3763063 3783771 20709 -10151.2489 -9107.0779 -65.9755 -16.8287 92.6283 run13.mat -1 -1 212 1 1 +3784077 3804733 20657 -9091.6482 -8050.0992 -67.6241 -16.8281 92.6571 run13.mat -1 -1 212 1 1 +3805036 3807258 2223 -8034.8209 -7922.7797 -69.2693 -16.8295 92.7439 run13.mat -1 -1 212 1 1 +3891379 3909009 17631 -3681.0996 -2792.1323 -69.2716 -16.8284 93.0343 run13.mat -1 -1 213 1 1 +3909338 3930010 20673 -2775.543 -1733.1872 -70.9198 -16.8292 92.6592 run13.mat -1 -1 213 1 1 +3930319 3950993 20675 -1717.6063 -675.1497 -72.5722 -16.8287 92.5803 run13.mat -1 -1 213 1 1 +3951301 3971990 20690 -659.6192 382.9158 -74.2196 -16.8297 92.639 run13.mat -1 -1 213 1 1 +3972296 3987278 14983 398.2187 1148.518 -75.8708 -16.8289 92.8211 run13.mat -1 -1 213 1 1 +4071258 4076051 4794 5346.6567 5586.2418 -75.8643 -16.8286 93.9913 run13.mat -1 -1 214 1 1 +4076375 4097052 20678 5602.3196 6636.1992 -77.5127 -16.8283 92.5292 run13.mat -1 -1 214 1 1 +4097358 4118070 20713 6651.3808 7687.9038 -79.1689 -16.8293 92.6032 run13.mat -1 -1 214 1 1 +4118378 4139052 20675 7703.1846 8735.5656 -80.8159 -16.8285 92.5096 run13.mat -1 -1 214 1 1 +4139359 4160052 20694 8751.0456 9784.925 -82.4632 -16.83 92.6087 run13.mat -1 -1 214 1 1 +4160359 4167137 6779 9800.1562 10140.4519 -82.4646 -15.1442 92.7854 run13.mat -1 -1 214 1 1 +4251462 4264516 13055 14357.1115 15009.3418 -82.4641 -15.1454 93.0812 run13.mat -1 -1 215 1 1 +4264833 4285514 20682 15025.3228 16058.8581 -80.8157 -15.1461 92.4658 run13.mat -1 -1 215 1 1 +4285821 4306511 20691 16074.0893 17108.447 -79.1677 -15.1449 92.6383 run13.mat -1 -1 215 1 1 +4306819 4327514 20696 17123.85 18159.623 -77.5139 -15.1454 92.6835 run13.mat -1 -1 215 1 1 +4327820 4347236 19417 18174.8016 19144.2056 -75.8729 -15.1454 92.7841 run13.mat -1 -1 215 1 1 +4431296 4431638 343 23347.8635 23365.1049 -75.8935 -15.1382 97.9479 run13.mat -1 -1 216 1 1 +4431958 4452594 20637 23381.2371 24412.5551 -74.2231 -15.1449 92.668 run13.mat -1 -1 216 1 1 +4452900 4473593 20694 24427.9847 25464.1818 -72.5756 -15.1448 92.5357 run13.mat -1 -1 216 1 1 +4473902 4494597 20696 25479.5153 26512.3207 -70.9187 -15.1444 92.5868 run13.mat -1 -1 216 1 1 +4494903 4515578 20676 26527.5023 27561.6737 -69.2713 -15.145 92.6673 run13.mat -1 -1 216 1 1 +4515884 4527117 11234 27577.1033 28139.3817 -67.6235 -15.1451 92.6559 run13.mat -1 -1 216 1 1 +4611365 4619842 8478 32350.6456 32775.969 -67.6234 -15.1448 93.2388 run13.mat -1 -1 217 1 1 +4620159 4640855 20697 32791.8221 33826.8576 -65.9755 -15.148 92.5562 run13.mat -1 -1 217 1 1 +4641160 4661835 20676 33842.1135 34875.5314 -64.3203 -15.1455 92.6135 run13.mat -1 -1 217 1 1 +4662141 4682836 20696 34890.9485 35926.147 -62.6751 -15.1459 92.5827 run13.mat -1 -1 217 1 1 +4683141 4703813 20673 35941.5231 36972.6703 -61.0239 -15.146 92.6905 run13.mat -1 -1 217 1 1 +4704123 4707157 3035 36988.2984 37141.2527 -59.3659 -15.1463 92.4648 run13.mat -1 -1 217 1 1 +4791386 4808142 16757 41354.3281 42192.2206 -59.376 -15.1459 93.0268 run13.mat -1 -1 218 1 1 +4808462 4829136 20675 42208.3448 43240.3901 -57.7235 -15.1456 92.5662 run13.mat -1 -1 218 1 1 +4829443 4850126 20684 43255.8021 44289.5587 -56.0722 -15.1469 92.6104 run13.mat -1 -1 218 1 1 +4850440 4871118 20679 44305.3917 45338.9729 -54.4249 -15.1455 92.5864 run13.mat -1 -1 218 1 1 +4871435 4887237 15803 45354.8262 46145.799 -52.7752 -15.1457 92.8499 run13.mat -1 -1 218 1 1 +4971445 4975443 3999 50356.8664 50555.6616 -52.7788 -15.1466 94.6561 run13.mat -1 -1 219 1 1 +4975764 4996442 20679 50571.7149 51607.8727 -51.1295 -15.1445 92.5741 run13.mat -1 -1 219 1 1 +4996760 5017455 20696 51623.7757 52656.8263 -49.4772 -15.1457 92.6196 run13.mat -1 -1 219 1 1 +5017761 5038428 20668 52672.1293 53705.1361 -47.8322 -15.1461 92.6382 run13.mat -1 -1 219 1 1 +5038740 5059419 20680 53720.8651 54753.5466 -46.182 -15.1453 92.6542 run13.mat -1 -1 219 1 1 +5059724 5067335 7612 54768.7997 55150.9193 -44.5375 -15.1455 92.7812 run13.mat -1 -1 219 1 1 +5151445 5163524 12080 59357.0096 59959.1108 -44.5365 -15.1457 93.0632 run13.mat -1 -1 220 1 1 +5163842 5184538 20697 59975.0169 61012.5709 -42.8827 -15.1463 92.6143 run13.mat -1 -1 220 1 1 +5184845 5205537 20693 61028.1097 62061.2557 -41.235 -15.1455 92.5143 run13.mat -1 -1 220 1 1 +5205844 5226518 20675 62076.487 63109.0175 -39.5854 -15.1448 92.603 run13.mat -1 -1 220 1 1 +5226827 5247196 20370 63124.5953 64144.7672 -37.9327 -15.1448 92.733 run13.mat -1 -1 220 1 1 +5331424 5352023 20600 68356.2045 69385.9867 -36.2851 -15.1459 93.0223 run13.mat -1 -1 221 1 1 +5352332 5372998 20667 69401.3171 70433.7826 -34.6319 -15.1456 92.6953 run13.mat -1 -1 221 1 1 +5373303 5394000 20698 70449.0972 71483.8911 -32.9856 -15.145 92.605 run13.mat -1 -1 221 1 1 +5394308 5414980 20673 71499.4215 72532.1742 -31.3345 -15.1449 92.708 run13.mat -1 -1 221 1 1 +5415286 5427315 12030 72547.4806 73150.6859 -29.6887 -15.1464 92.7191 run13.mat -1 -1 221 1 1 +5511564 5519245 7682 77362.5831 77744.7793 -29.6799 -15.1447 93.5033 run13.mat -1 -1 222 1 1 +5519562 5540240 20679 77760.6326 78797.3775 -28.0354 -15.1452 92.5907 run13.mat -1 -1 222 1 1 +5540547 5561238 20692 78812.8544 79847.9421 -26.3843 -15.1464 92.6116 run13.mat -1 -1 222 1 1 +5561548 5582239 20692 79863.4342 80897.9649 -24.7389 -15.1451 92.5858 run13.mat -1 -1 222 1 1 +5582545 5603208 20664 80913.1465 81943.695 -23.0896 -15.1459 92.6331 run13.mat -1 -1 222 1 1 +5603522 5607335 3814 81959.528 82151.0409 -21.4334 -15.1458 92.9368 run13.mat -1 -1 222 1 1 +5691434 5707464 16031 86356.3917 87159.9409 -21.4388 -15.145 93.1245 run13.mat -1 -1 223 1 1 +5707778 5728463 20686 87175.4089 88206.9498 -19.7879 -15.1445 92.6647 run13.mat -1 -1 223 1 1 +5728766 5749458 20693 88222.225 89257.6773 -18.1432 -15.1459 92.581 run13.mat -1 -1 223 1 1 +5749765 5770457 20693 89272.9115 90307.8633 -16.4962 -15.1452 92.6643 run13.mat -1 -1 223 1 1 +5770764 5787215 16452 90323.3402 91145.0137 -14.8472 -15.144 92.6632 run13.mat -1 -1 223 1 1 +5873391 5876632 3242 95453.7571 95615.8382 -14.8475 -15.1461 94.745 run13.mat -1 -1 224 1 1 +5876947 5897639 20693 95631.5913 96666.6368 -13.1935 -15.1442 92.59 run13.mat -1 -1 224 1 1 +5897944 5918617 20674 96681.7688 97713.6526 -11.5461 -15.1453 92.5866 run13.mat -1 -1 224 1 1 +5918925 5939619 20695 97729.0585 98767.0602 -9.8999 -15.1454 92.6307 run13.mat -1 -1 224 1 1 +5939928 5960599 20672 98782.5134 99816.3205 -8.2505 -15.1458 92.6112 run13.mat -1 -1 224 1 1 +5960908 5969155 8248 99831.7737 100242.2132 -6.5931 -15.1457 92.837 run13.mat -1 -1 224 1 1 +6053426 6064939 11514 104456.2336 105033.0394 -6.5916 -15.1465 93.1398 run13.mat -1 -1 225 1 1 +6065251 6085938 20688 105048.4089 106081.2747 -4.9455 -15.1457 92.6063 run13.mat -1 -1 225 1 1 +6086245 6106935 20691 106096.5089 107131.2162 -3.2988 -15.1462 92.6454 run13.mat -1 -1 225 1 1 +6107244 6127918 20675 107146.7939 108180.0875 -1.6466 -15.145 92.5561 run13.mat -1 -1 225 1 1 +6128222 6148897 20676 108195.1699 109231.7483 0.00070073 -15.1455 92.8178 run13.mat -1 -1 225 1 1 +6149206 6149233 28 109247.2028 109248.5533 1.5749 -15.1594 89.5312 run13.mat -1 -1 225 1 1 +6233322 6253133 19812 113451.7898 114441.3941 1.6525 -15.1452 92.969 run13.mat -1 -1 226 1 1 +6253446 6274121 20676 114456.8128 115491.4578 3.2964 -15.1464 92.594 run13.mat -1 -1 226 1 1 +6274430 6295119 20690 115507.0355 116539.925 4.9472 -15.146 92.6563 run13.mat -1 -1 226 1 1 +6295425 6316122 20698 116555.3546 117590.2728 6.5951 -15.1447 92.5985 run13.mat -1 -1 226 1 1 +6316426 6329093 12668 117605.4786 118239.4025 8.2479 -15.1474 92.7796 run13.mat -1 -1 226 1 1 +6413361 6420382 7022 122453.5931 122803.5003 8.2472 -15.1451 93.6869 run13.mat -1 -1 227 1 1 +6420693 6441379 20687 122819.0533 123855.6545 9.8913 -15.1458 92.4612 run13.mat -1 -1 227 1 1 +6441687 6462379 20693 123871.0575 124904.4331 11.5446 -15.1443 92.5747 run13.mat -1 -1 227 1 1 +6462685 6483359 20675 124919.6177 125953.1351 13.1893 -15.147 92.5335 run13.mat -1 -1 227 1 1 +6483669 6504341 20673 125968.7633 127002.2578 14.8402 -15.1462 92.7251 run13.mat -1 -1 227 1 1 +6504647 6509133 4487 127017.4394 127241.1809 16.4854 -15.143 92.6429 run13.mat -1 -1 227 1 1 +6593207 6608570 15364 131446.2306 132215.2967 16.4906 -15.1445 93.2248 run13.mat -1 -1 228 1 1 +6608886 6629561 20676 132231.1027 133263.1306 18.1356 -15.1452 92.6412 run13.mat -1 -1 228 1 1 +6629867 6650561 20695 133278.4335 134312.3744 19.7845 -15.1448 92.6762 run13.mat -1 -1 228 1 1 +6650867 6671560 20694 134327.4483 135361.696 21.4338 -15.1461 92.614 run13.mat -1 -1 228 1 1 +6671869 6688993 17125 135377.1024 136234.4376 23.0897 -15.1459 92.7519 run13.mat -1 -1 228 1 1 +6773273 6775844 2572 140448.0799 140577.7188 23.083 -15.1467 94.7609 run13.mat -1 -1 229 1 1 +6776150 6796827 20678 140593.1484 141627.5877 24.7375 -15.1463 92.5607 run13.mat -1 -1 229 1 1 +6797144 6817820 20677 141643.4342 142675.8026 26.3863 -15.1465 92.5446 run13.mat -1 -1 229 1 1 +6818131 6838823 20693 142691.4811 143727.435 28.0349 -15.1466 92.6174 run13.mat -1 -1 229 1 1 +6839133 6859801 20669 143742.815 144775.0931 29.6858 -15.1451 92.6726 run13.mat -1 -1 229 1 1 +6860108 6869052 8945 144790.3243 145237.4845 31.3369 -15.146 92.8116 run13.mat -1 -1 229 1 1 +6953224 6964115 10892 149448.114 149992.1451 31.3333 -15.1457 93.45 run13.mat -1 -1 230 1 1 +6964429 6985101 20673 150007.6102 151040.6547 32.9848 -15.1461 92.5686 run13.mat -1 -1 230 1 1 +6985407 7006120 20714 151056.0843 152090.9315 34.6315 -15.1463 92.5971 run13.mat -1 -1 230 1 1 +7006427 7027113 20687 152106.2845 153142.5677 36.287 -15.1457 92.5797 run13.mat -1 -1 230 1 1 +7027425 7048062 20638 153158.2966 154188.5506 37.9332 -15.1456 92.7081 run13.mat -1 -1 230 1 1 +7048367 7049112 746 154203.8065 154241.0708 39.5856 -15.1425 92.1931 run13.mat -1 -1 230 1 1 +7133228 7152336 19109 158448.9923 159402.6426 39.5848 -15.1458 93.0458 run13.mat -1 -1 231 1 1 +7152645 7173300 20656 159418.0959 160449.1091 41.2283 -15.1462 92.5439 run13.mat -1 -1 231 1 1 +7173607 7194315 20709 160464.586 161502.8083 42.8778 -15.1455 92.6616 run13.mat -1 -1 231 1 1 +7194625 7215302 20678 161518.1883 162552.8 44.5292 -15.1467 92.6314 run13.mat -1 -1 231 1 1 +7215609 7228992 13384 162568.15 163235.5033 46.1802 -15.1442 92.8646 run13.mat -1 -1 231 1 1 +7313253 7319686 6434 167447.8865 167771.6643 46.1741 -15.144 94.0785 run13.mat -1 -1 232 1 1 +7319994 7340679 20686 167786.8149 168821.5542 47.8238 -15.1447 92.5583 run13.mat -1 -1 232 1 1 +7340987 7361662 20676 168836.838 169869.6788 49.4732 -15.1455 92.53 run13.mat -1 -1 232 1 1 +7361968 7382682 20715 169884.9817 170920.4618 51.1261 -15.1451 92.6404 run13.mat -1 -1 232 1 1 +7382987 7403642 20656 170935.8379 171969.1107 52.7737 -15.1453 92.6725 run13.mat -1 -1 232 1 1 +7403948 7409012 5065 171984.4661 172235.848 54.4155 -15.1463 92.9121 run13.mat -1 -1 232 1 1 +7493062 7507776 14715 176438.3369 177174.8718 54.4219 -15.1463 93.1833 run13.mat -1 -1 233 1 1 +7508094 7528762 20669 177190.6487 178225.4263 56.0753 -15.1447 92.6373 run13.mat -1 -1 233 1 1 +7529069 7533517 4449 178240.9032 178462.0597 57.7267 -15.1477 92.6083 run13.mat -1 -1 233 1 1 +7618979 7634730 15752 182735.3823 183520.8626 57.7258 -15.1455 93.3998 run13.mat -1 -1 234 1 1 +7635050 7655744 20695 183536.742 184571.623 59.3771 -15.1439 92.6199 run13.mat -1 -1 234 1 1 +7656050 7676732 20683 184586.8509 185622.2075 61.0229 -15.1456 92.4929 run13.mat -1 -1 234 1 1 +7677047 7697726 20680 185637.9606 186672.8871 62.6725 -15.1454 92.6549 run13.mat -1 -1 234 1 1 +7698033 7714871 16839 186688.364 187531.6264 64.3229 -15.1455 92.8095 run13.mat -1 -1 234 1 1 +7799109 7801973 2865 191743.9863 191888.6368 64.3288 -15.1417 95.085 run13.mat -1 -1 235 1 1 +7802291 7822981 20691 191904.4168 192934.9684 65.9739 -15.1455 92.5532 run13.mat -1 -1 235 1 1 +7823289 7843961 20673 192950.2493 193983.8373 67.6218 -15.1463 92.5459 run13.mat -1 -1 235 1 1 +7844272 7864963 20692 193999.2669 195035.2336 69.2656 -15.1456 92.5657 run13.mat -1 -1 235 1 1 +7865270 7885943 20674 195050.5868 196082.492 70.9198 -15.1446 92.6504 run13.mat -1 -1 235 1 1 +7886251 7894891 8641 196097.895 196530.7956 72.566 -15.1461 92.6061 run13.mat -1 -1 235 1 1 +7978957 7990061 11105 200736.4527 201288.7668 72.5681 -15.1465 93.1498 run13.mat -1 -1 236 1 1 +7990374 8011043 20670 201304.4229 202339.7792 74.2121 -15.1452 92.5095 run13.mat -1 -1 236 1 1 +8011352 8032048 20697 202355.3569 203390.6023 75.8661 -15.1453 92.5829 run13.mat -1 -1 236 1 1 +8032359 8053044 20686 203406.1588 204438.6668 77.5106 -15.1448 92.6314 run13.mat -1 -1 236 1 1 +8053349 8074007 20659 204453.9227 205486.7527 79.1647 -15.1452 92.7057 run13.mat -1 -1 236 1 1 +8074313 8074751 439 205501.995 205523.8125 80.8229 -15.1421 92.0038 run13.mat -1 -1 236 1 1 +8158818 8178133 19316 209727.4351 210691.8834 80.8129 -15.1449 92.8437 run13.mat -1 -1 237 1 1 +8178451 8198784 20334 210707.9181 211727.2938 82.462 -15.1463 92.5998 run13.mat -1 -1 237 1 1 +279863 300259 20397 347921.9481 348941.9722 82.465 -13.4623 92.8402 run14.mat -1 -1 239 165659 175858 +300568 321259 20692 348957.3026 349991.8452 80.815 -13.462 92.5608 run14.mat -1 -1 239 176013 186358 +321564 342241 20678 350006.9802 351042.7229 79.1678 -13.4612 92.6156 run14.mat -1 -1 239 186511 196850 +342548 363241 20694 351058.0761 352090.2394 77.5139 -13.4619 92.5371 run14.mat -1 -1 239 197003 207350 +363546 375661 12116 352105.6154 352712.1 75.8632 -13.4628 92.6704 run14.mat -1 -1 239 207503 213560 +459923 467559 7637 356922.615 357306.4474 75.865 -13.4621 93.5316 run14.mat -1 -1 240 255693 259511 +467876 488581 20706 357322.1778 358359.4704 74.2149 -13.4615 92.526 run14.mat -1 -1 240 259670 270023 +488888 509560 20673 358374.7046 359406.3898 72.5657 -13.4623 92.6305 run14.mat -1 -1 240 270177 280513 +509868 530559 20692 359421.6737 360457.9967 70.9144 -13.462 92.6011 run14.mat -1 -1 240 280667 291013 +530868 551525 20658 360473.4499 361506.5025 69.2674 -13.4622 92.6252 run14.mat -1 -1 240 291167 301496 +551834 555721 3888 361521.8329 361714.6787 67.6158 -13.461 92.5123 run14.mat -1 -1 240 301651 303594 +639788 655639 15852 365919.9823 366711.0925 67.6207 -13.4611 93.0316 run14.mat -1 -1 241 345630 353555 +655963 676640 20678 366727.1671 367759.0961 65.97 -13.4623 92.5765 run14.mat -1 -1 241 353717 364057 +676948 697620 20673 367774.5281 368809.9216 64.3208 -13.4619 92.5828 run14.mat -1 -1 241 364211 374547 +697929 718622 20694 368825.252 369858.7361 62.6736 -13.4619 92.5755 run14.mat -1 -1 241 374702 385048 +718928 735581 16654 369874.0419 370708.4039 61.0228 -13.4624 92.7602 run14.mat -1 -1 241 385201 393528 +819656 822708 3053 374910.8739 375063.7274 61.033 -13.4588 95.0885 run14.mat -1 -1 242 435568 437094 +823019 843721 20703 375079.4059 376115.8551 59.3753 -13.462 92.5776 run14.mat -1 -1 242 437249 447601 +844029 864701 20673 376131.1359 377161.6741 57.7278 -13.4614 92.5618 run14.mat -1 -1 242 447755 458091 +865010 885702 20693 377177.1273 378214.0252 56.0738 -13.4623 92.5666 run14.mat -1 -1 242 458246 468592 +886010 906702 20693 378229.6178 379263.6878 54.4257 -13.4624 92.6808 run14.mat -1 -1 242 468746 479093 +907011 915440 8430 379279.0183 379701.183 52.7782 -13.4616 92.906 run14.mat -1 -1 242 479247 483461 +999664 1011082 11419 383911.4243 384481.7317 52.7799 -13.4622 93.4465 run14.mat -1 -1 243 525576 531285 +1011401 1032082 20682 384497.6847 385534.7272 51.1297 -13.4612 92.4892 run14.mat -1 -1 243 531445 541785 +1032389 1053083 20695 385550.2041 386583.3942 49.475 -13.4621 92.5948 run14.mat -1 -1 243 541939 552287 +1053388 1074064 20677 386598.7703 387631.168 47.824 -13.4616 92.6531 run14.mat -1 -1 243 552439 562777 +1074368 1095042 20675 387646.4936 388681.8399 46.179 -13.4619 92.7306 run14.mat -1 -1 243 562929 573266 +1095351 1095459 109 388697.2959 388702.698 44.5231 -13.4625 91.9335 run14.mat -1 -1 243 573421 573475 +1179441 1199182 19742 392900.4159 393889.2732 44.5282 -13.4614 93.1296 run14.mat -1 -1 244 615468 625339 +1199515 1220185 20671 393905.9296 394936.9059 42.8769 -13.4623 92.6621 run14.mat -1 -1 244 625505 635841 +1220491 1241184 20694 394952.0905 395987.698 41.2266 -13.4613 92.4517 run14.mat -1 -1 244 635994 646341 +1241492 1262163 20672 396002.9788 397036.1396 39.581 -13.4626 92.6054 run14.mat -1 -1 244 646495 656831 +1262470 1275339 12870 397051.4926 397695.9689 37.9349 -13.4611 92.7623 run14.mat -1 -1 244 656985 663419 +1359389 1366245 6857 401898.2192 402242.6632 37.933 -13.4632 93.7882 run14.mat -1 -1 245 705446 708874 +1366553 1387247 20695 402258.0696 403291.4366 36.2847 -13.4613 92.575 run14.mat -1 -1 245 709028 719376 +1387556 1408266 20711 403306.767 404344.1438 34.6359 -13.4624 92.6393 run14.mat -1 -1 245 719530 729886 +1408573 1429249 20677 404359.4855 405393.4295 32.9829 -13.4615 92.6123 run14.mat -1 -1 245 730039 740377 +1429555 1450228 20674 405408.6141 406442.2939 31.3383 -13.4614 92.6871 run14.mat -1 -1 245 740530 750867 +1450537 1455219 4683 406457.6243 406691.0383 29.6938 -13.4612 92.6638 run14.mat -1 -1 245 751022 753363 +1539193 1554344 15152 410889.2494 411646.9587 29.689 -13.4622 93.1005 run14.mat -1 -1 246 795352 802928 +1554672 1575343 20672 411663.3118 412695.2205 28.0354 -13.4623 92.609 run14.mat -1 -1 246 803092 813427 +1575652 1596330 20679 412710.6764 413746.1655 26.3862 -13.462 92.5506 run14.mat -1 -1 246 813582 823922 +1596646 1617328 20683 413761.8432 414796.5529 24.7403 -13.4618 92.673 run14.mat -1 -1 246 824080 834421 +1617647 1635098 17452 414812.4427 415683.0968 23.088 -13.4618 92.7519 run14.mat -1 -1 246 834581 843306 +1719355 1721584 2230 419899.8324 420010.4695 23.0795 -13.4624 94.844 run14.mat -1 -1 247 885437 886539 +1721890 1742575 20686 420025.6511 421057.8547 21.4331 -13.4624 92.5591 run14.mat -1 -1 247 886704 897047 +1742889 1763567 20679 421073.4363 422108.6279 19.7868 -13.4619 92.6189 run14.mat -1 -1 247 897204 907544 +1763875 1784568 20694 422124.1553 423157.3551 18.1365 -13.4624 92.6357 run14.mat -1 -1 247 907698 918045 +1784876 1805564 20689 423172.7611 424209.0208 16.4884 -13.4616 92.6252 run14.mat -1 -1 247 918199 928543 +1805875 1815138 9264 424224.4505 424686.5993 14.8404 -13.4609 92.869 run14.mat -1 -1 247 928699 933331 +1899246 1909767 10522 428893.6066 429421.5517 14.8419 -13.4622 93.5036 run14.mat -1 -1 248 975386 980647 +1910075 1930771 20697 429436.7241 430466.9706 13.1902 -13.4621 92.5639 run14.mat -1 -1 248 980801 991149 +1931077 1951769 20693 430482.4002 431517.6677 11.5432 -13.4619 92.6414 run14.mat -1 -1 248 991302 1001649 +1952078 1972773 20696 431533.0012 432568.4906 9.8948 -13.4622 92.6068 run14.mat -1 -1 248 1001804 1012152 +1973081 1993728 20648 432584.0179 433616.4306 8.2484 -13.462 92.7052 run14.mat -1 -1 248 1012306 1022629 +1994037 1995139 1103 433631.7611 433687.0952 6.6211 -13.4612 92.9245 run14.mat -1 -1 248 1022784 1023335 +2079425 2098067 18643 437902.0992 438833.1298 6.5952 -13.4622 92.9322 run14.mat -1 -1 249 1065480 1074801 +2098374 2119050 20677 438848.364 439882.8869 4.9437 -13.462 92.5494 run14.mat -1 -1 249 1074955 1085293 +2119359 2140052 20694 439898.3428 440933.219 3.2967 -13.4619 92.5878 run14.mat -1 -1 249 1085448 1095795 +2140360 2161030 20671 440948.5598 441980.7911 1.651 -13.4626 92.5518 run14.mat -1 -1 249 1095949 1106284 +2161336 2175198 13863 441996.2176 442688.9661 -0.0045162 -13.4618 92.7839 run14.mat -1 -1 249 1106437 1113369 +2259309 2265150 5842 446894.9915 447188.4396 0.00096172 -13.4614 93.5258 run14.mat -1 -1 250 1155426 1158346 +2265456 2286169 20714 447203.8661 448239.5664 -1.6506 -13.4624 92.5882 run14.mat -1 -1 250 1158499 1168857 +2286477 2307152 20676 448254.8533 449286.8133 -3.2965 -13.4617 92.5777 run14.mat -1 -1 250 1169011 1179348 +2307468 2328153 20686 449302.491 450336.6809 -4.9503 -13.4621 92.6456 run14.mat -1 -1 250 1179506 1189849 +2328459 2349132 20674 450352.1105 451385.519 -6.5981 -13.4623 92.723 run14.mat -1 -1 250 1190002 1200339 +2349439 2355058 5620 451400.9393 451682.241 -8.2527 -13.4614 92.788 run14.mat -1 -1 250 1200493 1203302 +2439311 2453450 14140 455894.6579 456602.2169 -8.251 -13.4622 93.2395 run14.mat -1 -1 251 1245431 1252500 +2453756 2474432 20677 456617.3985 457652.4814 -9.8962 -13.462 92.5697 run14.mat -1 -1 251 1252653 1262992 +2474737 2495434 20698 457667.7344 458702.3001 -11.5458 -13.4619 92.5147 run14.mat -1 -1 251 1263144 1273493 +2495739 2516431 20693 458717.432 459751.8834 -13.1944 -13.4617 92.5712 run14.mat -1 -1 251 1273646 1283992 +2516738 2535137 18400 459767.3604 460686.154 -14.8441 -13.4616 92.6052 run14.mat -1 -1 251 1284146 1293346 +2619326 2620711 1386 464898.0371 464966.7511 -14.8527 -13.4635 97.575 run14.mat -1 -1 252 1335442 1336135 +2621018 2641733 20716 464981.9823 466015.6418 -16.4925 -13.4617 92.5665 run14.mat -1 -1 252 1336288 1346646 +2642038 2662712 20675 466030.8538 467065.0472 -18.141 -13.4615 92.6323 run14.mat -1 -1 252 1346799 1357136 +2663018 2683710 20693 467080.4737 468115.0154 -19.7888 -13.4622 92.6021 run14.mat -1 -1 252 1357289 1367635 +2684018 2704694 20677 468130.4186 469166.4707 -21.4349 -13.4616 92.6906 run14.mat -1 -1 252 1367789 1378128 +2705000 2715177 10178 469181.8972 469690.9716 -23.0872 -13.4611 92.7933 run14.mat -1 -1 252 1378281 1383370 +2799444 2809070 9627 473904.2235 474382.9587 -23.0876 -13.4626 93.3727 run14.mat -1 -1 253 1425505 1430318 +2809387 2830077 20691 474398.6892 475435.3093 -24.7389 -13.4619 92.4953 run14.mat -1 -1 253 1430477 1440823 +2830388 2851075 20688 475450.8658 476483.9984 -26.3842 -13.4618 92.6027 run14.mat -1 -1 253 1440978 1451322 +2851381 2872065 20685 476499.183 477533.3463 -28.0358 -13.4616 92.5815 run14.mat -1 -1 253 1451475 1461817 +2872377 2893032 20656 477548.998 478582.2216 -29.685 -13.4616 92.7014 run14.mat -1 -1 253 1461973 1472301 +2893339 2895217 1879 478597.6985 478692.3749 -31.3236 -13.4612 93.0317 run14.mat -1 -1 253 1472454 1473393 +2979383 2997336 17954 482900.4731 483797.5007 -31.3373 -13.4629 93.0522 run14.mat -1 -1 254 1515479 1524456 +2997648 3018331 20684 483813.104 484847.0859 -32.9864 -13.462 92.5758 run14.mat -1 -1 254 1524612 1534953 +3018639 3039333 20695 484862.3667 485897.8716 -34.6334 -13.4626 92.5448 run14.mat -1 -1 254 1535107 1545455 +3039644 3060314 20671 485913.4249 486946.0445 -36.2916 -13.4618 92.6661 run14.mat -1 -1 254 1545610 1555946 +3060621 3075296 14676 486961.2787 487694.5814 -37.9357 -13.4626 92.7302 run14.mat -1 -1 254 1556100 1563437 +3159408 3164412 5005 491901.0912 492152.5 -37.9373 -13.4615 94.1481 run14.mat -1 -1 255 1605495 1607997 +3164728 3185413 20686 492168.3 493200.8319 -39.5847 -13.4615 92.4684 run14.mat -1 -1 255 1608155 1618498 +3185719 3206414 20696 493216.1348 494252.9371 -41.2335 -13.4615 92.5933 run14.mat -1 -1 255 1618651 1628999 +3206720 3227399 20680 494268.3636 495301.7055 -42.8819 -13.4615 92.6361 run14.mat -1 -1 255 1629152 1639492 +3227716 3248392 20677 495317.4328 496350.1762 -44.5331 -13.4618 92.6175 run14.mat -1 -1 255 1639651 1649989 +3248697 3255156 6460 496365.5523 496689.9592 -46.1784 -13.4628 92.9011 run14.mat -1 -1 255 1650141 1653371 +3341511 3354893 13383 501005.7803 501676.026 -46.1814 -13.4634 93.3024 run14.mat -1 -1 256 1696550 1703242 +3355198 3375879 20682 501691.4021 502724.6308 -47.8265 -13.4614 92.5771 run14.mat -1 -1 256 1703394 1713735 +3376191 3396874 20684 502740.234 503773.0706 -49.4796 -13.4624 92.5925 run14.mat -1 -1 256 1713891 1724233 +3397180 3417874 20695 503788.2522 504824.8885 -51.1293 -13.4612 92.5823 run14.mat -1 -1 256 1724386 1734734 +3418184 3437276 19093 504840.2685 505794.4271 -52.7745 -13.4617 92.8112 run14.mat -1 -1 256 1734889 1744435 +3521382 3522110 729 510000.0613 510036.7697 -52.7711 -13.4611 101.0625 run14.mat -1 -1 257 1786490 1786854 +3522416 3543095 20680 510052.1993 511084.8499 -54.4247 -13.4609 92.6467 run14.mat -1 -1 257 1787007 1797347 +3543401 3564092 20692 511100.0669 512136.6267 -56.0748 -13.4625 92.5632 run14.mat -1 -1 257 1797500 1807846 +3564400 3585075 20676 512151.9075 513185.2666 -57.7247 -13.4617 92.5698 run14.mat -1 -1 257 1808000 1818338 +3585380 3606052 20673 513200.5195 514233.3698 -59.3742 -13.4617 92.6511 run14.mat -1 -1 257 1818490 1828827 +3606360 3617155 10796 514248.8972 514788.1248 -61.0248 -13.4629 92.7387 run14.mat -1 -1 257 1828981 1834379 +3701353 3710311 8959 519000.2448 519447.7162 -61.0221 -13.4617 93.2994 run14.mat -1 -1 258 1876479 1880959 +3710637 3731313 20677 519464.0196 520497.0589 -62.672 -13.4622 92.594 run14.mat -1 -1 258 1881122 1891460 +3731621 3752308 20688 520512.3397 521547.6261 -64.3224 -13.4616 92.6069 run14.mat -1 -1 258 1891614 1901958 +3752617 3773311 20695 521563.2069 522596.7315 -65.9713 -13.4616 92.5128 run14.mat -1 -1 258 1902112 1912460 +3773619 3794272 20654 522612.0123 523642.9589 -67.6253 -13.4621 92.6958 run14.mat -1 -1 258 1912614 1922941 +3794581 3797175 2595 523658.5397 523789.3384 -69.2653 -13.4628 92.8201 run14.mat -1 -1 258 1923095 1924392 +3881137 3898380 17244 527986.8027 528851.1171 -69.2736 -13.4611 93.1273 run14.mat -1 -1 259 1966375 1974997 +3898689 3919375 20687 528866.4475 529901.6549 -70.9202 -13.4622 92.5088 run14.mat -1 -1 259 1975152 1985495 +3919685 3940374 20690 529917.1598 530949.9054 -72.5746 -13.4614 92.5352 run14.mat -1 -1 259 1985650 1995995 +3940681 3961353 20673 530965.2583 532000.5788 -74.2251 -13.4621 92.6998 run14.mat -1 -1 259 1996149 2006485 +3961659 3977014 15356 532015.7634 532783.2301 -75.8718 -13.461 92.828 run14.mat -1 -1 259 2006638 2014316 +4061272 4065669 4398 536997.0286 537215.5393 -75.8681 -13.4623 94.5978 run14.mat -1 -1 260 2056447 2058645 +4065991 4086679 20689 537231.7757 538264.1079 -77.517 -13.4623 92.5419 run14.mat -1 -1 260 2058806 2069151 +4086993 4107673 20681 538279.8109 539316.0673 -79.17 -13.4622 92.5774 run14.mat -1 -1 260 2069308 2079648 +4107980 4128672 20693 539331.4205 540364.3272 -80.8187 -13.4626 92.5841 run14.mat -1 -1 260 2079802 2090148 +4128980 4149653 20674 540379.7301 541414.2364 -82.4642 -13.4624 92.6257 run14.mat -1 -1 260 2090302 2100639 +4149962 4157094 7133 541429.5668 541787.3192 -82.4621 -11.7789 92.8213 run14.mat -1 -1 260 2100794 2104360 +4241123 4253725 12603 545987.3051 546618.5966 -82.4643 -11.7783 93.0956 run14.mat -1 -1 261 2146376 2152677 +4254042 4274731 20690 546634.5809 547667.6636 -80.8159 -11.7785 92.5542 run14.mat -1 -1 261 2152836 2163181 +4275037 4295716 20680 547682.7346 548718.4429 -79.1675 -11.7779 92.6845 run14.mat -1 -1 261 2163334 2173674 +4296028 4316715 20688 548734.1751 549767.0008 -77.5142 -11.7779 92.6657 run14.mat -1 -1 261 2173830 2184173 +4317020 4336935 19916 549782.2572 550780.1042 -75.8677 -11.7783 92.6961 run14.mat -1 -1 261 2184326 2194284 +4421484 4442097 20614 555006.6962 556038.7009 -74.2186 -11.7781 92.8311 run14.mat -1 -1 262 2236561 2246868 +4442403 4463092 20690 556053.8825 557086.8136 -72.5688 -11.7782 92.5887 run14.mat -1 -1 262 2247021 2257366 +4463400 4484078 20679 557102.2166 558137.453 -70.9195 -11.7782 92.5723 run14.mat -1 -1 262 2257520 2267859 +4484394 4505091 20698 558153.1338 559186.599 -69.2695 -11.7787 92.6344 run14.mat -1 -1 262 2268017 2278366 +4505397 4516994 11598 559202.0286 559783.5489 -67.6237 -11.7787 92.7771 run14.mat -1 -1 262 2278519 2284318 +4600975 4609101 8127 563981.7145 564388.1255 -67.6225 -11.7785 93.6923 run14.mat -1 -1 263 2326310 2330373 +4609418 4630112 20695 564403.9821 565439.0467 -65.9752 -11.7784 92.5515 run14.mat -1 -1 263 2330532 2340879 +4630419 4651093 20675 565454.4031 566486.3651 -64.3233 -11.7786 92.6217 run14.mat -1 -1 263 2341033 2351370 +4651399 4672091 20693 566501.671 567539.3148 -62.6776 -11.778 92.5379 run14.mat -1 -1 263 2351523 2361870 +4672399 4693073 20675 567554.8421 568584.924 -61.0254 -11.7783 92.7045 run14.mat -1 -1 263 2362024 2372361 +4693381 4696793 3413 568600.4017 568772.4122 -59.3756 -11.7774 92.5583 run14.mat -1 -1 263 2372515 2374221 +4781089 4797395 16307 572987.9254 573801.5674 -59.3792 -11.7783 92.9095 run14.mat -1 -1 264 2416371 2424524 +4797702 4818392 20691 573816.8595 574853.4517 -57.7278 -11.7782 92.6094 run14.mat -1 -1 264 2424678 2435023 +4818700 4839375 20676 574868.8576 575902.4934 -56.0771 -11.7783 92.6174 run14.mat -1 -1 264 2435177 2445515 +4839682 4860362 20681 575917.7277 576951.9034 -54.4263 -11.7785 92.6534 run14.mat -1 -1 264 2445669 2456009 +4860676 4876873 16198 576967.4818 577775.1135 -52.7768 -11.7781 92.7533 run14.mat -1 -1 264 2456166 2464265 +4960964 4964596 3633 581979.0881 582160.7543 -52.7675 -11.7781 94.5992 run14.mat -1 -1 265 2506312 2508129 +4964903 4985573 20671 582176.1075 583209.9146 -51.1307 -11.7782 92.557 run14.mat -1 -1 265 2508282 2518618 +4985883 5006575 20693 583225.4178 584260.2751 -49.4719 -11.778 92.6031 run14.mat -1 -1 265 2518773 2529119 +5006883 5027572 20690 584275.6783 585309.5719 -47.8284 -11.7779 92.6072 run14.mat -1 -1 265 2529273 2539618 +5027884 5048556 20673 585324.9384 586361.1607 -46.1766 -11.7782 92.6605 run14.mat -1 -1 265 2539774 2550110 +5048863 5056733 7871 586376.3919 586770.8651 -44.5327 -11.778 92.9436 run14.mat -1 -1 265 2550264 2554199 +5141042 5152886 11845 590985.7946 591578.0196 -44.5301 -11.7781 93.2618 run14.mat -1 -1 266 2596355 2602292 +5153203 5173875 20673 591594.0006 592627.0817 -42.8787 -11.7781 92.5807 run14.mat -1 -1 266 2602436 2612773 +5174180 5194875 20696 592642.4578 593675.7475 -41.2291 -11.7781 92.6005 run14.mat -1 -1 266 2612925 2623273 +5195183 5215859 20677 593691.2761 594724.8742 -39.5814 -11.7785 92.6042 run14.mat -1 -1 266 2623427 2633765 +5216166 5236813 20648 594740.1084 595774.0044 -37.9353 -11.7783 92.71 run14.mat -1 -1 266 2633919 2644243 +5320832 5340962 20131 599976.2467 600979.1576 -36.2881 -11.7786 93.0322 run14.mat -1 -1 267 2686254 2696319 +5341282 5361957 20676 600995.1025 602031.1112 -34.6347 -11.7786 92.5691 run14.mat -1 -1 267 2696480 2706818 +5362262 5382939 20678 602046.3641 603078.4699 -32.9885 -11.7783 92.5118 run14.mat -1 -1 267 2706970 2717309 +5383243 5403934 20692 603093.6731 604131.4803 -31.3357 -11.7782 92.6202 run14.mat -1 -1 267 2717461 2727807 +5404241 5416694 12454 604146.8332 604768.0198 -29.694 -11.7782 92.8045 run14.mat -1 -1 267 2727961 2734187 +5500599 5507962 7364 608962.1981 609332.167 -29.6889 -11.7784 93.7783 run14.mat -1 -1 268 2776142 2779823 +5508267 5528975 20709 609347.4199 610384.0996 -28.0389 -11.7782 92.5336 run14.mat -1 -1 268 2779976 2790330 +5529283 5549957 20675 610399.506 611429.5343 -26.3867 -11.7782 92.5864 run14.mat -1 -1 268 2790485 2800822 +5550261 5570956 20696 611444.7374 612481.7436 -24.7397 -11.7787 92.6526 run14.mat -1 -1 268 2800974 2811322 +5571262 5591937 20676 612497.0465 613529.2488 -23.0912 -11.7786 92.6929 run14.mat -1 -1 268 2811475 2821813 +5592244 5596492 4249 613544.7258 613758.8202 -21.4436 -11.7789 92.8717 run14.mat -1 -1 268 2821966 2824090 +5680564 5696083 15520 617961.8935 618738.7402 -21.4341 -11.7788 92.9962 run14.mat -1 -1 269 2866128 2873888 +5696402 5717077 20676 618754.6935 619786.772 -19.7889 -11.7782 92.511 run14.mat -1 -1 269 2874048 2884385 +5717384 5738078 20695 619802.0513 620838.2167 -18.138 -11.7782 92.6035 run14.mat -1 -1 269 2884539 2894886 +5738383 5759058 20676 620853.2414 621885.0623 -16.4927 -11.778 92.6395 run14.mat -1 -1 269 2895039 2905377 +5759365 5776392 17028 621900.5392 622754.0773 -14.8428 -11.7786 92.7657 run14.mat -1 -1 269 2905530 2914044 +5860512 5863218 2707 626958.4381 627094.436 -14.8424 -11.7787 95.7141 run14.mat -1 -1 270 2956106 2957459 +5863528 5884215 20688 627109.816 628143.2936 -13.1919 -11.7785 92.5664 run14.mat -1 -1 270 2957614 2967958 +5884524 5905198 20675 628158.8713 629194.1659 -11.5411 -11.778 92.5824 run14.mat -1 -1 270 2968113 2978450 +5905507 5926200 20694 629209.4963 630243.5845 -9.8964 -11.7783 92.4934 run14.mat -1 -1 270 2978605 2988952 +5926505 5947178 20674 630258.8377 631294.1731 -8.2466 -11.7784 92.6326 run14.mat -1 -1 270 2989104 2999441 +5947486 5956292 8807 631309.8168 631747.7923 -6.6007 -11.7782 92.8119 run14.mat -1 -1 270 2999595 3003998 +6040590 6051602 11013 635962.6138 636513.5482 -6.6004 -11.7791 93.2989 run14.mat -1 -1 271 3046149 3051656 +6051921 6072606 20686 636529.6333 637564.783 -4.9482 -11.779 92.5435 run14.mat -1 -1 271 3051815 3062158 +6072917 6093599 20683 637580.339 638614.7511 -3.3018 -11.779 92.52 run14.mat -1 -1 271 3062314 3072655 +6093906 6114602 20697 638630.1041 639663.524 -1.6501 -11.778 92.6308 run14.mat -1 -1 271 3072808 3083157 +6114909 6135561 20653 639679.004 640710.6849 -0.0017422 -11.7779 92.6616 run14.mat -1 -1 271 3083310 3093637 +6135867 6136371 505 640725.8664 640750.8714 1.6462 -11.7798 92.8814 run14.mat -1 -1 271 3093790 3094042 +6220434 6239702 19269 644955.9606 645917.1043 1.6482 -11.7783 93.1528 run14.mat -1 -1 272 3136075 3145709 +6240010 6260687 20678 645932.6316 646967.694 3.2979 -11.7777 92.6446 run14.mat -1 -1 272 3145863 3156203 +6261003 6281682 20680 646983.3717 648017.7543 4.9441 -11.7788 92.5793 run14.mat -1 -1 272 3156361 3166700 +6281990 6302681 20692 648033.3469 649068.2733 6.5949 -11.7784 92.6467 run14.mat -1 -1 272 3166854 3177200 +6302990 6316251 13262 649083.6037 649746.2164 8.2482 -11.7786 92.6485 run14.mat -1 -1 272 3177355 3183986 +6400294 6406861 6568 653949.4118 654277.8725 8.2512 -11.7767 93.8819 run14.mat -1 -1 273 3226009 3229293 +6407173 6427862 20690 654293.4755 655328.0585 9.8939 -11.7787 92.5576 run14.mat -1 -1 273 3229449 3239794 +6428169 6448846 20678 655343.5973 656377.0784 11.5443 -11.7784 92.5865 run14.mat -1 -1 273 3239947 3250286 +6449153 6469845 20693 656392.3096 657424.9827 13.1923 -11.7789 92.6464 run14.mat -1 -1 273 3250440 3260786 +6470156 6490824 20669 657440.4124 658475.9135 14.8459 -11.778 92.615 run14.mat -1 -1 273 3260942 3271276 +6491131 6496091 4961 658491.1447 658737.7935 16.4852 -11.7779 92.9302 run14.mat -1 -1 273 3271430 3273910 +6580169 6594954 14786 662943.238 663682.8423 16.4897 -11.7782 93.1082 run14.mat -1 -1 274 3315950 3323343 +6595287 6615954 20668 663699.4955 664733.0218 18.1367 -11.7778 92.5479 run14.mat -1 -1 274 3323510 3333844 +6616267 6636942 20676 664748.5507 665778.8215 19.7856 -11.7785 92.6343 run14.mat -1 -1 274 3334000 3344338 +6637251 6657943 20693 665794.2774 666832.5016 21.432 -11.7782 92.5895 run14.mat -1 -1 274 3344493 3354839 +6658251 6675991 17741 666847.6711 667732.8728 23.087 -11.7786 92.7867 run14.mat -1 -1 274 3354993 3363863 +6760278 6762333 2056 671947.187 672050.239 23.0919 -11.7755 96.0021 run14.mat -1 -1 275 3406009 3407037 +6762647 6783332 20686 672066.0688 673101.4477 24.735 -11.7785 92.5426 run14.mat -1 -1 275 3407194 3417537 +6783644 6804305 20662 673116.927 674150.1856 26.3838 -11.778 92.62 run14.mat -1 -1 275 3417693 3428024 +6804622 6825326 20705 674166.1698 675200.4273 28.0341 -11.7784 92.5875 run14.mat -1 -1 275 3428182 3438535 +6825629 6846284 20656 675215.5836 676248.5898 29.686 -11.7785 92.6407 run14.mat -1 -1 275 3438686 3449013 +6846591 6856050 9460 676263.9457 676737.5326 31.3365 -11.778 92.7061 run14.mat -1 -1 275 3449167 3453897 +6940047 6950535 10489 680936.0988 681461.5675 31.3406 -11.7787 93.4576 run14.mat -1 -1 276 3495897 3501141 +6950853 6971529 20677 681477.4736 682511.2582 32.9828 -11.7781 92.577 run14.mat -1 -1 276 3501300 3511639 +6971837 6992526 20690 682526.7886 683560.8959 34.6365 -11.7781 92.536 run14.mat -1 -1 276 3511793 3522138 +6992831 7013529 20699 683576.272 684611.5977 36.2852 -11.7784 92.5886 run14.mat -1 -1 276 3522291 3532640 +7013834 7034486 20653 684626.9738 685658.5082 37.9348 -11.7782 92.7388 run14.mat -1 -1 276 3532793 3543119 +7034791 7035930 1140 685673.6402 685730.1494 39.5787 -11.7772 93.5116 run14.mat -1 -1 276 3543271 3543841 +7119915 7138657 18743 689929.7386 690867.8889 39.5835 -11.7786 93.103 run14.mat -1 -1 277 3585835 3595207 +7138974 7159625 20652 690883.6162 691915.4506 41.2306 -11.7788 92.5989 run14.mat -1 -1 277 3595365 3605691 +7159932 7180645 20714 691930.9306 692966.1225 42.8769 -11.778 92.615 run14.mat -1 -1 277 3605844 3616202 +7180950 7201627 20678 692981.3757 694017.5152 44.5294 -11.7788 92.6642 run14.mat -1 -1 277 3616354 3626693 +7201932 7215809 13878 694032.7711 694724.7744 46.1792 -11.7778 92.7512 run14.mat -1 -1 277 3626845 3633784 +7299839 7305662 5824 698926.9895 699219.5964 46.1777 -11.7793 94.088 run14.mat -1 -1 278 3675801 3678704 +7305988 7326664 20677 699235.9027 700268.8313 47.8232 -11.7783 92.5313 run14.mat -1 -1 278 3678876 3689214 +7326971 7347666 20696 700284.0625 701318.9714 49.473 -11.7781 92.5771 run14.mat -1 -1 278 3689368 3699715 +7347974 7368652 20679 701334.5018 702368.9413 51.1271 -11.7783 92.5896 run14.mat -1 -1 278 3699869 3710209 +7368965 7389644 20680 702384.487 703416.7641 52.776 -11.7777 92.6616 run14.mat -1 -1 278 3710366 3720706 +7389952 7395629 5678 703432.1701 703716.1159 54.4263 -11.7781 92.7738 run14.mat -1 -1 278 3720860 3723698 +7479716 7493769 14054 707920.5037 708621.6151 54.425 -11.7784 93.2655 run14.mat -1 -1 279 3765744 3772770 +7494091 7514765 20675 708637.5873 709673.3323 56.0735 -11.7786 92.5341 run14.mat -1 -1 279 3772931 3783269 +7515074 7535766 20693 709688.6657 710722.1514 57.7261 -11.7781 92.6867 run14.mat -1 -1 279 3783423 3793770 +7536073 7556746 20674 710737.6284 711773.7929 59.3749 -11.7783 92.5645 run14.mat -1 -1 279 3793923 3804261 +7557054 7575529 18476 711789.3202 712710.5087 61.0266 -11.7783 92.7769 run14.mat -1 -1 279 3804415 3813652 +7659831 7661093 1263 716927.4276 716990.2735 61.0188 -11.7756 97.5842 run14.mat -1 -1 280 3855805 3856436 +7661410 7682065 20656 717006.0008 718038.1565 62.674 -11.7784 92.6478 run14.mat -1 -1 280 3856595 3866923 +7682373 7703066 20694 718053.6838 719089.1929 64.3204 -11.7783 92.4764 run14.mat -1 -1 280 3867077 3877423 +7703373 7724068 20696 719104.485 720137.6597 65.9756 -11.778 92.6086 run14.mat -1 -1 280 3877577 3887925 +7724373 7745067 20695 720152.7916 721189.3695 67.6222 -11.7779 92.5111 run14.mat -1 -1 280 3888078 3898424 +7745374 7755609 10236 721204.7545 721716.6218 69.2708 -11.7786 92.7774 run14.mat -1 -1 280 3898578 3903696 +7839661 7849176 9516 725917.7885 726395.2329 69.2715 -11.7791 93.3098 run14.mat -1 -1 281 3945724 3950482 +7849495 7870147 20653 726411.186 727442.4521 70.9184 -11.7782 92.4769 run14.mat -1 -1 281 3950641 3960968 +7870453 7891166 20714 727457.6337 728493.1569 72.5701 -11.7784 92.5991 run14.mat -1 -1 281 3961121 3971477 +7891474 7912149 20676 728508.5621 729542.283 74.219 -11.7783 92.5586 run14.mat -1 -1 281 3971631 3981969 +7912453 7933126 20674 729557.3684 730592.0623 75.8666 -11.7781 92.6917 run14.mat -1 -1 281 3982121 3992458 +7933434 7935468 2035 730607.3462 730708.2791 77.5025 -11.7793 92.872 run14.mat -1 -1 281 3992612 3993629 +8019729 8037435 17707 734920.6797 735805.6564 77.5137 -11.7785 93.0059 run14.mat -1 -1 282 4035762 4044615 +8037749 8058446 20698 735821.3597 736858.1234 79.1634 -11.7788 92.6019 run14.mat -1 -1 282 4044772 4055121 +8058754 8079427 20674 736873.6507 737907.7745 80.8128 -11.7786 92.6249 run14.mat -1 -1 282 4055275 4065612 +8079735 8100086 20352 737923.0584 738939.98 82.461 -11.7785 92.5546 run14.mat -1 -1 282 4065766 4075942 +197455 217858 20404 832294.1741 833313.97 82.4626 -10.0948 92.8579 run15.mat -1 -1 284 166344 176546 +218164 238866 20703 833329.1516 834364.3536 80.8137 -10.0947 92.5663 run15.mat -1 -1 284 176699 187050 +239183 259858 20676 834380.2097 835414.2575 79.1669 -10.0944 92.5228 run15.mat -1 -1 284 187208 197547 +260166 280860 20695 835429.6605 836466.9684 77.514 -10.0944 92.6391 run15.mat -1 -1 284 197701 208048 +281168 293241 12074 836482.2493 837086.8418 75.8678 -10.0951 92.6289 run15.mat -1 -1 284 208202 214239 +377482 385136 7655 841296.647 841680.4037 75.868 -10.0952 93.637 run15.mat -1 -1 285 256361 260188 +385467 406160 20694 841696.8256 842728.981 74.2216 -10.0944 92.5767 run15.mat -1 -1 285 260354 270700 +406466 427138 20673 842744.4106 843778.4044 72.5691 -10.0946 92.6181 run15.mat -1 -1 285 270853 281190 +427445 448139 20695 843793.7603 844829.2782 70.9205 -10.0953 92.5567 run15.mat -1 -1 285 281343 291691 +448446 469099 20654 844844.5094 845876.9923 69.2679 -10.0947 92.6199 run15.mat -1 -1 285 291845 302171 +469406 473300 3895 845892.3453 846088.4559 67.6253 -10.094 92.4905 run15.mat -1 -1 285 302325 304272 +557440 573380 15941 850294.1204 851091.3597 67.6227 -10.0946 93.0667 run15.mat -1 -1 286 346344 354314 +573688 594381 20694 851106.7662 852140.1512 65.9719 -10.0942 92.5494 run15.mat -1 -1 286 354468 364815 +594689 615380 20692 852155.432 853189.9627 64.3208 -10.0946 92.6275 run15.mat -1 -1 286 364969 375315 +615685 636360 20676 853205.238 854242.1602 62.6693 -10.0946 92.5793 run15.mat -1 -1 286 375468 385806 +636669 653200 16532 854257.6132 855083.3024 61.0242 -10.0948 92.8117 run15.mat -1 -1 286 385960 394226 +737395 740699 3305 859292.0658 859458.5038 61.0207 -10.0957 95.4445 run15.mat -1 -1 287 436325 437978 +741004 761720 20717 859473.7567 860508.2861 59.3719 -10.0945 92.5834 run15.mat -1 -1 287 438130 448498 +762025 782721 20697 860523.6622 861560.0524 57.722 -10.0956 92.4812 run15.mat -1 -1 287 448641 458990 +783027 803720 20694 861575.4789 862609.3664 56.0704 -10.095 92.5818 run15.mat -1 -1 287 459143 469489 +804026 824699 20674 862624.6728 863656.977 54.4211 -10.0951 92.6177 run15.mat -1 -1 287 469642 479980 +825006 833299 8294 863672.2112 864087.6265 52.7735 -10.0953 92.8909 run15.mat -1 -1 287 480133 484280 +917547 928957 11411 868299.1916 868870.4781 52.7741 -10.0939 93.2362 run15.mat -1 -1 288 526405 532111 +929284 949960 20677 868886.7015 869922.095 51.1282 -10.094 92.5265 run15.mat -1 -1 288 532274 542613 +950269 970961 20693 869937.6727 870970.6082 49.4749 -10.0946 92.6645 run15.mat -1 -1 288 542767 553113 +971270 991962 20693 870986.0646 872022.9315 47.8284 -10.0946 92.5915 run15.mat -1 -1 288 553268 563614 +992270 1012921 20652 872038.3374 873069.2516 46.179 -10.0949 92.7623 run15.mat -1 -1 288 563768 574095 +1013230 1013319 90 873084.4704 873088.8538 44.5816 -10.0924 101.387 run15.mat -1 -1 288 574249 574294 +1097448 1117081 19634 877294.9748 878276.2912 44.5349 -10.0946 92.8802 run15.mat -1 -1 289 616360 626177 +1117404 1138086 20683 878292.5747 879327.124 42.8787 -10.0948 92.6163 run15.mat -1 -1 289 626338 636680 +1138390 1159064 20675 879342.2064 880377.3231 41.2297 -10.0944 92.593 run15.mat -1 -1 289 636832 647169 +1159374 1180063 20690 880392.8295 881427.594 39.5855 -10.0954 92.5786 run15.mat -1 -1 289 647324 657669 +1180371 1193219 12849 881442.9923 882085.3894 37.9343 -10.0935 92.9105 run15.mat -1 -1 289 657823 664247 +1277510 1284442 6933 886298.9754 886645.4375 37.9285 -10.0944 94.1475 run15.mat -1 -1 290 706395 709861 +1284779 1305485 20707 886662.1604 887695.5362 36.283 -10.0942 92.4773 run15.mat -1 -1 290 710030 720383 +1305789 1326464 20676 887710.6186 888747.422 34.6274 -10.0948 92.6114 run15.mat -1 -1 290 720535 730873 +1326771 1347464 20694 888762.6562 889795.9129 32.9833 -10.095 92.5679 run15.mat -1 -1 290 731026 741373 +1347772 1368443 20672 889811.3161 890846.1715 31.3309 -10.0952 92.6403 run15.mat -1 -1 290 741527 751863 +1368752 1373279 4528 890861.505 891087.0217 29.683 -10.0961 92.8957 run15.mat -1 -1 290 752018 754281 +1457401 1472584 15184 895293.2559 896054.2935 29.6837 -10.0947 93.0348 run15.mat -1 -1 291 796344 803936 +1472892 1493583 20692 896069.5743 897103.6285 28.0275 -10.0948 92.5358 run15.mat -1 -1 291 804090 814436 +1493891 1514583 20693 897119.1589 898152.2252 26.3853 -10.0944 92.5349 run15.mat -1 -1 291 814590 824936 +1514890 1535564 20675 898167.7022 899200.4386 24.7352 -10.0941 92.6371 run15.mat -1 -1 291 825090 835427 +1535876 1553178 17303 899216.0419 900081.3755 23.0861 -10.0952 92.7905 run15.mat -1 -1 291 835583 844235 +1637503 1640001 2499 904297.6045 904422.5525 23.0884 -10.0949 95.0131 run15.mat -1 -1 292 886400 887660 +1640324 1661006 20683 904438.7087 905473.072 21.4367 -10.0946 92.6044 run15.mat -1 -1 292 887810 898151 +1661313 1682004 20692 905488.4279 906523.4712 19.7884 -10.0948 92.5511 run15.mat -1 -1 292 898305 908650 +1682310 1703003 20694 906538.6558 907575.2021 18.1399 -10.0949 92.6174 run15.mat -1 -1 292 908803 919150 +1703311 1723978 20668 907590.4859 908622.5159 16.4922 -10.0948 92.6534 run15.mat -1 -1 292 919304 929638 +1724289 1733258 8970 908638.0692 909086.6585 14.8478 -10.0949 92.7936 run15.mat -1 -1 292 929794 934279 +1817538 1828267 10730 913302.5495 913835.3017 14.8452 -10.0954 93.3512 run15.mat -1 -1 293 976421 981785 +1828575 1849286 20712 913850.7049 914887.004 13.1926 -10.0947 92.4504 run15.mat -1 -1 293 981939 992295 +1849591 1870287 20697 914902.3832 915938.9069 11.5429 -10.0946 92.6596 run15.mat -1 -1 293 992448 1002796 +1870593 1891267 20675 915954.0885 916988.4478 9.8959 -10.0942 92.6083 run15.mat -1 -1 293 1002949 1013286 +1891575 1912245 20671 917003.9782 918035.9734 8.2427 -10.095 92.6995 run15.mat -1 -1 293 1013440 1023776 +1912555 1913318 764 918051.6015 918090.0345 6.6111 -10.0967 92.682 run15.mat -1 -1 293 1023931 1024313 +1997520 2016605 19086 922301.8635 923254.78 6.5911 -10.0948 93.0878 run15.mat -1 -1 294 1066416 1075959 +2016912 2037610 20699 923270.1329 924303.8085 4.9429 -10.0944 92.6771 run15.mat -1 -1 294 1076112 1086461 +2037914 2058608 20695 924318.8909 925355.4455 3.2919 -10.0948 92.6737 run15.mat -1 -1 294 1086613 1096961 +2058917 2079586 20670 925370.8984 926404.6599 1.643 -10.0954 92.6357 run15.mat -1 -1 294 1097116 1107451 +2079897 2093417 13521 926420.2159 927097.0478 -0.0014255 -10.0942 92.7357 run15.mat -1 -1 294 1107606 1114366 +2177499 2183684 6186 931299.214 931609.7338 -0.0023008 -10.0942 93.2822 run15.mat -1 -1 295 1156409 1159502 +2183991 2204689 20699 931625.2107 932656.4025 -1.6493 -10.094 92.5038 run15.mat -1 -1 295 1159655 1170005 +2204997 2225688 20692 932671.9298 933707.2962 -3.3018 -10.0949 92.5689 run15.mat -1 -1 295 1170159 1180505 +2225995 2246667 20673 933722.835 934757.6747 -4.948 -10.0949 92.5941 run15.mat -1 -1 295 1180658 1190995 +2246976 2267648 20673 934773.2525 935807.4327 -6.5907 -10.0949 92.6671 run15.mat -1 -1 295 1191149 1201486 +2267959 2273297 5339 935823.1113 936089.1822 -8.2529 -10.0953 92.8661 run15.mat -1 -1 295 1201641 1204310 +2357505 2371986 14482 940300.2698 941024.826 -8.2475 -10.0946 93.2076 run15.mat -1 -1 296 1246416 1253657 +2372293 2393008 20716 941040.0572 942074.0649 -9.8915 -10.0953 92.6023 run15.mat -1 -1 296 1253810 1264168 +2393315 2413987 20673 942089.5418 943123.7104 -11.545 -10.0946 92.5636 run15.mat -1 -1 296 1264322 1274658 +2414293 2434988 20696 943139.14 944174.438 -13.1905 -10.0948 92.6052 run15.mat -1 -1 296 1274811 1285159 +2435294 2453397 18104 944189.7396 945093.1836 -14.8461 -10.0945 92.7671 run15.mat -1 -1 296 1285312 1294364 +2537541 2539146 1606 949301.4211 949382.3345 -14.8451 -10.0926 97.4899 run15.mat -1 -1 297 1336438 1337241 +2539467 2560130 20664 949398.5172 950432.1934 -16.4917 -10.0945 92.5762 run15.mat -1 -1 297 1337401 1347733 +2560451 2581146 20696 950448.132 951480.954 -18.1403 -10.0942 92.5684 run15.mat -1 -1 297 1347894 1358241 +2581455 2602148 20694 951496.2844 952529.9094 -19.7889 -10.0954 92.5455 run15.mat -1 -1 297 1358396 1368743 +2602453 2623127 20675 952545.221 953580.8883 -21.4403 -10.0948 92.705 run15.mat -1 -1 297 1368895 1379233 +2623437 2633317 9881 953596.2683 954090.4636 -23.0876 -10.0958 92.6462 run15.mat -1 -1 297 1379388 1384328 +2717563 2727392 9830 958300.8077 958794.3655 -23.093 -10.0947 93.3208 run15.mat -1 -1 298 1426453 1431367 +2727708 2748427 20720 958810.1716 959846.7345 -24.7405 -10.0949 92.5424 run15.mat -1 -1 298 1431525 1441886 +2748734 2769412 20679 959861.9657 960896.1013 -26.3921 -10.0954 92.5889 run15.mat -1 -1 298 1442039 1452378 +2769718 2790409 20692 960911.5309 961945.6132 -28.0383 -10.0949 92.5926 run15.mat -1 -1 298 1452531 1462877 +2790717 2811389 20673 961960.894 962992.5749 -29.6933 -10.0949 92.6034 run15.mat -1 -1 298 1463031 1473368 +2811695 2813356 1662 963007.7565 963090.7816 -31.3421 -10.0948 93.0658 run15.mat -1 -1 298 1473521 1474351 +2897582 2915869 18288 967302.2531 968218.2121 -31.3379 -10.0944 92.9605 run15.mat -1 -1 299 1516466 1525610 +2916176 2936849 20674 968233.6891 969268.1393 -32.9858 -10.0948 92.6028 run15.mat -1 -1 299 1525764 1536101 +2937155 2957849 20695 969283.4452 970316.6513 -34.6357 -10.0946 92.6344 run15.mat -1 -1 299 1536254 1546601 +2958157 2978829 20673 970332.1787 971367.1451 -36.285 -10.0948 92.6986 run15.mat -1 -1 299 1546755 1557092 +2979139 2993476 14338 971382.5251 972099.7031 -37.9336 -10.0949 92.714 run15.mat -1 -1 299 1557247 1564415 +3077564 3083049 5486 976304.5111 976577 -37.9332 -10.0942 94.1918 run15.mat -1 -1 300 1606461 1609203 +3083378 3104069 20692 976593.4534 977629.3153 -39.5821 -10.0954 92.5252 run15.mat -1 -1 300 1609368 1619714 +3104377 3125069 20693 977644.4877 978676.9423 -41.2282 -10.0946 92.5664 run15.mat -1 -1 300 1619868 1630215 +3125375 3146027 20653 978692.3041 979726.4422 -42.8796 -10.0948 92.5544 run15.mat -1 -1 300 1630368 1640694 +3146337 3167032 20696 979741.8222 980776.7061 -44.5287 -10.0949 92.6417 run15.mat -1 -1 300 1640849 1651197 +3167341 3173336 5996 980792.0365 981091.4436 -46.1809 -10.0955 92.724 run15.mat -1 -1 300 1651352 1654349 +3257583 3271411 13829 985305.882 985996.2514 -46.1817 -10.0954 93.1054 run15.mat -1 -1 301 1696475 1703389 +3271717 3292414 20698 986011.433 987047.3444 -47.8265 -10.0945 92.6527 run15.mat -1 -1 301 1703542 1713891 +3292720 3313412 20693 987062.7709 988094.2217 -49.4781 -10.095 92.5526 run15.mat -1 -1 301 1714044 1724390 +3313718 3334412 20695 988109.3001 989146.0391 -51.1289 -10.095 92.604 run15.mat -1 -1 301 1724544 1734891 +3334717 3353355 18639 989161.1711 990093.4404 -52.7807 -10.0951 92.7066 run15.mat -1 -1 301 1735043 1744363 +3437693 3438770 1078 994309.1526 994362.5858 -52.7924 -10.0965 97.7066 run15.mat -1 -1 302 1786534 1787072 +3439076 3459772 20697 994377.7674 995414.7595 -54.4297 -10.0945 92.6299 run15.mat -1 -1 302 1787225 1797573 +3460079 3480767 20689 995430.1154 996464.3192 -56.0794 -10.0952 92.5759 run15.mat -1 -1 302 1797727 1808072 +3481078 3501753 20676 996479.9978 997512.5301 -57.7307 -10.095 92.5774 run15.mat -1 -1 302 1808227 1818565 +3502060 3522747 20688 997527.7613 998561.3789 -59.3771 -10.0953 92.6438 run15.mat -1 -1 302 1818719 1829063 +3523059 3533476 10418 998576.9819 999099.4453 -61.0249 -10.0949 92.7991 run15.mat -1 -1 302 1829219 1834427 +3617538 3626832 9295 1003303.227 1003767.3126 -61.0244 -10.0946 93.3992 run15.mat -1 -1 303 1876460 1881107 +3627148 3647834 20687 1003782.9903 1004818.2986 -62.6729 -10.0947 92.5138 run15.mat -1 -1 303 1881265 1891609 +3648147 3668832 20686 1004833.9546 1005868.4839 -64.3188 -10.0945 92.5975 run15.mat -1 -1 303 1891765 1902108 +3669138 3689832 20695 1005883.7869 1006918.7436 -65.9745 -10.0951 92.6083 run15.mat -1 -1 303 1902261 1912609 +3690138 3710794 20657 1006934.0465 1007963.1046 -67.6188 -10.0947 92.6898 run15.mat -1 -1 303 1912762 1923090 +3711100 3713335 2236 1007978.411 1008090.2076 -69.256 -10.0939 92.6261 run15.mat -1 -1 303 1923243 1924361 +3797610 3815219 17610 1012307.237 1013186.5276 -69.2693 -10.094 93.1088 run15.mat -1 -1 304 1966500 1975305 +3815531 3836213 20683 1013202.2598 1014234.7122 -70.9181 -10.0943 92.5794 run15.mat -1 -1 304 1975461 1985802 +3836521 3857213 20693 1014250.1181 1015286.5927 -72.5693 -10.0948 92.5269 run15.mat -1 -1 304 1985956 1996303 +3857519 3878213 20695 1015301.7773 1016337.2009 -74.2164 -10.0947 92.6793 run15.mat -1 -1 304 1996456 2006803 +3878520 3893395 14876 1016352.6809 1017094.6866 -75.867 -10.0946 92.7245 run15.mat -1 -1 304 2006957 2014395 +3977351 3982291 4941 1021294.0198 1021539.8762 -75.866 -10.0953 95.0792 run15.mat -1 -1 305 2056374 2058845 +3982608 4003293 20686 1021555.8572 1022590.1819 -77.5164 -10.0951 92.4456 run15.mat -1 -1 305 2059003 2069346 +4003604 4024293 20690 1022605.8 1023641.0591 -79.1668 -10.0945 92.5255 run15.mat -1 -1 305 2069502 2079846 +4024600 4045273 20674 1023656.1823 1024689.9536 -80.8176 -10.0947 92.6007 run15.mat -1 -1 305 2080000 2090337 +4045582 4066273 20692 1024705.5345 1025738.948 -82.467 -10.0945 92.6796 run15.mat -1 -1 305 2090492 2100838 +4066580 4073254 6675 1025754.1822 1026089.2707 -82.4731 -8.416 92.7597 run15.mat -1 -1 305 2100991 2104328 +4157533 4170616 13084 1030301.3299 1030957.274 -82.469 -8.4152 93.2996 run15.mat -1 -1 306 2146469 2153011 +4170926 4191592 20667 1030972.7799 1032007.192 -80.8208 -8.4161 92.5925 run15.mat -1 -1 306 2153166 2163500 +4191901 4212594 20694 1032022.7729 1033057.5043 -79.1704 -8.4148 92.6297 run15.mat -1 -1 306 2163654 2174001 +4212901 4233592 20692 1033072.7355 1034107.2165 -77.5197 -8.4157 92.5455 run15.mat -1 -1 306 2174155 2184501 +4233902 4253353 19452 1034122.5965 1035092.7473 -75.8704 -8.4153 92.6611 run15.mat -1 -1 306 2184656 2194382 +4337489 4337896 408 1039299.2323 1039319.7506 -75.881 -8.4176 103.4245 run15.mat -1 -1 307 2236451 2236655 +4338207 4358853 20647 1039335.4291 1040368.2666 -74.2194 -8.4154 92.6349 run15.mat -1 -1 307 2236810 2247134 +4359158 4379854 20697 1040383.6458 1041417.9 -72.5714 -8.4152 92.5979 run15.mat -1 -1 307 2247287 2257635 +4380160 4400852 20693 1041433.2 1042469.6684 -70.917 -8.4145 92.5982 run15.mat -1 -1 307 2257788 2268135 +4401159 4421835 20677 1042485.1484 1043517.5522 -69.27 -8.4142 92.6848 run15.mat -1 -1 307 2268288 2278626 +4422142 4433253 11112 1043532.9642 1044088.0545 -67.6181 -8.4148 92.8699 run15.mat -1 -1 307 2278780 2284335 +4517400 4526097 8698 1048298.0542 1048731.2864 -67.6183 -8.4164 93.7311 run15.mat -1 -1 308 2326411 2330760 +4526405 4547098 20694 1048746.5672 1049779.3614 -65.9728 -8.4147 92.5243 run15.mat -1 -1 308 2330914 2341260 +4547412 4568096 20685 1049795.1944 1050829.9762 -64.3182 -8.4153 92.6666 run15.mat -1 -1 308 2341417 2351760 +4568405 4589093 20689 1050845.5539 1051881.7704 -62.6708 -8.4154 92.6261 run15.mat -1 -1 308 2351914 2362259 +4589399 4610054 20656 1051896.952 1052930.1898 -61.0237 -8.4144 92.7199 run15.mat -1 -1 308 2362412 2372740 +4610360 4613294 2935 1052945.6163 1053092.5047 -59.3739 -8.416 93.4511 run15.mat -1 -1 308 2372893 2374360 +4697586 4714383 16798 1057305.0456 1058146.8045 -59.3749 -8.4141 92.9422 run15.mat -1 -1 309 2416508 2424907 +4714701 4735375 20675 1058162.8424 1059195.7845 -57.7264 -8.4163 92.5007 run15.mat -1 -1 309 2425066 2435403 +4735683 4756393 20711 1059211.1877 1060244.9433 -56.0725 -8.4147 92.5306 run15.mat -1 -1 309 2435557 2445912 +4756700 4777360 20661 1060260.2962 1061293.7152 -54.4292 -8.4159 92.6979 run15.mat -1 -1 309 2446066 2456396 +4777677 4793353 15677 1061309.6995 1062094.0722 -52.7742 -8.4148 92.6692 run15.mat -1 -1 309 2456555 2464393 +4879305 4883348 4044 1066391.1731 1066593.827 -52.7811 -8.4145 94.0758 run15.mat -1 -1 310 2507371 2509393 +4883665 4904355 20691 1066609.7983 1067644.7185 -51.1298 -8.4156 92.6183 run15.mat -1 -1 310 2509551 2519897 +4904660 4925354 20695 1067660.0946 1068692.1546 -49.4823 -8.4154 92.5933 run15.mat -1 -1 310 2520049 2530396 +4925659 4946333 20675 1068707.411 1069744.337 -47.8304 -8.4158 92.6453 run15.mat -1 -1 310 2530549 2540887 +4946640 4967333 20694 1069759.6899 1070792.6728 -46.1835 -8.4156 92.7097 run15.mat -1 -1 310 2541040 2551387 +4967641 4975092 7452 1070808.0508 1071181.6388 -44.5335 -8.4156 92.582 run15.mat -1 -1 310 2551541 2555267 +5059372 5071659 12288 1075396.1792 1076009.7805 -44.5362 -8.4167 93.1986 run15.mat -1 -1 311 2597409 2603523 +5071972 5092653 20682 1076025.3124 1077059.287 -42.8809 -8.4149 92.5952 run15.mat -1 -1 311 2603709 2614050 +5092959 5113633 20675 1077074.5929 1078110.0936 -41.2328 -8.4161 92.566 run15.mat -1 -1 311 2614203 2624540 +5113940 5134639 20700 1078125.2167 1079159.1276 -39.5827 -8.4148 92.5466 run15.mat -1 -1 311 2624694 2635044 +5134953 5155173 20221 1079174.8341 1080185.3794 -37.9347 -8.415 92.7749 run15.mat -1 -1 311 2635201 2645311 +5239221 5259715 20495 1084388.5547 1085411.8177 -36.2845 -8.4166 92.8705 run15.mat -1 -1 312 2687337 2697584 +5260019 5280716 20698 1085427.1464 1086463.0772 -34.635 -8.4148 92.5896 run15.mat -1 -1 312 2697736 2708086 +5281024 5301715 20692 1086478.358 1087513.1288 -32.983 -8.4157 92.5752 run15.mat -1 -1 312 2708240 2718586 +5302021 5322697 20677 1087528.432 1088561.9006 -31.3355 -8.4148 92.6209 run15.mat -1 -1 312 2718739 2729077 +5323001 5333718 10718 1088577.2263 1089113.6459 -29.6859 -8.415 92.7624 run15.mat -1 -1 312 2729229 2734588 +5333968 5335031 1064 1089126.1483 1089178.9571 -29.6822 -8.4125 92.83 run15.mat -1 -1 312 2734713 2735244 +5419319 5427075 7757 1093393.7396 1093780.8377 -29.6889 -8.4164 93.597 run15.mat -1 -1 313 2777390 2781268 +5427385 5448079 20695 1093796.4658 1094831.7048 -28.0349 -8.4152 92.4274 run15.mat -1 -1 313 2781423 2791771 +5448383 5469057 20675 1094847.0304 1095881.3106 -26.3897 -8.4163 92.6338 run15.mat -1 -1 313 2791923 2802260 +5469365 5490056 20692 1095896.6668 1096927.8935 -24.7367 -8.4144 92.6196 run15.mat -1 -1 313 2802414 2812760 +5490366 5511034 20669 1096943.5217 1097979.9174 -23.0943 -8.4155 92.7566 run15.mat -1 -1 313 2812915 2823250 +5511343 5515051 3709 1097995.2479 1098179.2129 -21.4414 -8.4124 92.7183 run15.mat -1 -1 313 2823404 2825258 +5599113 5615140 16028 1102382.8224 1103186.3536 -21.4399 -8.4148 92.8819 run15.mat -1 -1 314 2867291 2875305 +5615446 5636138 20693 1103201.6595 1104234.182 -19.7929 -8.4152 92.5648 run15.mat -1 -1 314 2875458 2885805 +5636446 5657135 20690 1104249.4628 1105283.545 -18.1466 -8.4164 92.6267 run15.mat -1 -1 314 2885959 2896303 +5657444 5678118 20675 1105299.1259 1106334.1066 -16.4963 -8.4157 92.6089 run15.mat -1 -1 314 2896457 2906795 +5678426 5694912 16487 1106349.5125 1107172.1935 -14.8465 -8.4163 92.7085 run15.mat -1 -1 314 2906949 2915193 +5778884 5782225 3342 1111372.7145 1111539.1669 -14.8444 -8.417 95.2974 run15.mat -1 -1 315 2957181 2958851 +5782549 5803217 20669 1111555.2415 1112588.6636 -13.1954 -8.4142 92.5284 run15.mat -1 -1 315 2959013 2969347 +5803524 5824218 20695 1112604.1436 1113638.5914 -11.5441 -8.4155 92.5972 run15.mat -1 -1 315 2969501 2979849 +5824527 5845217 20691 1113653.9218 1114690.6561 -9.8947 -8.414 92.6117 run15.mat -1 -1 315 2980003 2990348 +5845525 5866196 20672 1114706.3857 1115738.3769 -8.2449 -8.4143 92.5927 run15.mat -1 -1 315 2990502 3000839 +5866504 5874771 8268 1115753.6577 1116166.7899 -6.5951 -8.4148 92.8 run15.mat -1 -1 315 3000993 3005126 +5958895 5970341 11447 1120372.5164 1120946.0292 -6.5955 -8.4151 93.1784 run15.mat -1 -1 316 3047190 3052913 +5970661 5991338 20678 1120962.0354 1121996.145 -4.9428 -8.4152 92.5976 run15.mat -1 -1 316 3053073 3063412 +5991647 6012340 20694 1122011.5982 1123044.3906 -3.2981 -8.4144 92.6177 run15.mat -1 -1 316 3063567 3073913 +6012650 6033338 20689 1123059.7737 1124092.664 -1.6456 -8.4151 92.6441 run15.mat -1 -1 316 3074068 3084413 +6033643 6054297 20655 1124107.9169 1125141.8996 -0.00071038 -8.4142 92.67 run15.mat -1 -1 316 3084565 3094893 +6054602 6054691 90 1125157.2757 1125161.7625 1.6838 -8.4224 83.8403 run15.mat -1 -1 316 3095046 3095090 +6138701 6158452 19752 1129364.7309 1130350.9596 1.6481 -8.4153 93.0682 run15.mat -1 -1 317 3137097 3146973 +6158764 6179438 20675 1130366.5626 1131399.2234 3.2933 -8.4151 92.5498 run15.mat -1 -1 317 3147129 3157466 +6179747 6200454 20708 1131414.8012 1132450.4145 4.9446 -8.4159 92.6103 run15.mat -1 -1 317 3157621 3167975 +6200764 6221440 20677 1132465.7975 1133500.1892 6.591 -8.414 92.6166 run15.mat -1 -1 317 3168130 3178468 +6221746 6234591 12846 1133515.4924 1134155.8891 8.2418 -8.4146 92.8795 run15.mat -1 -1 317 3178621 3185044 +6318831 6325667 6837 1138370.7555 1138710.9748 8.2398 -8.4157 93.8314 run15.mat -1 -1 318 3227166 3230584 +6325984 6346678 20695 1138726.8279 1139761.8641 9.8913 -8.4147 92.5355 run15.mat -1 -1 318 3230743 3241090 +6346986 6367662 20677 1139777.4535 1140810.5208 11.5389 -8.416 92.5014 run15.mat -1 -1 318 3241244 3251583 +6367971 6388662 20692 1140825.8543 1141862.6041 13.1901 -8.4154 92.6574 run15.mat -1 -1 318 3251737 3262083 +6388969 6409641 20673 1141877.9573 1142909.8148 14.8413 -8.4151 92.6307 run15.mat -1 -1 318 3262236 3272573 +6409949 6414610 4662 1142925.2177 1143158.8399 16.496 -8.4118 93.0345 run15.mat -1 -1 318 3272727 3275057 +6498597 6513870 15274 1147359.7055 1148121.7455 16.4918 -8.4154 93.2115 run15.mat -1 -1 319 3317053 3324690 +6514186 6534865 20680 1148137.6761 1149171.1264 18.142 -8.4148 92.6372 run15.mat -1 -1 319 3324848 3335188 +6535178 6555854 20677 1149186.6553 1150220.4187 19.7888 -8.4149 92.6934 run15.mat -1 -1 319 3335344 3345683 +6556163 6576845 20683 1150235.746 1151269.8234 21.4395 -8.4161 92.6436 run15.mat -1 -1 319 3345837 3356178 +6577150 6594490 17341 1151284.9524 1152153.817 23.0869 -8.4157 92.7897 run15.mat -1 -1 319 3356331 3365001 +6678662 6681030 2369 1156362.2435 1156479.7271 23.0836 -8.4196 95.0882 run15.mat -1 -1 320 3407089 3408273 +6681354 6702044 20691 1156495.8017 1157531.7236 24.737 -8.4148 92.6415 run15.mat -1 -1 320 3408435 3418781 +6702350 6723020 20671 1157547.03 1158579.8349 26.3898 -8.4157 92.6375 run15.mat -1 -1 320 3418934 3429269 +6723329 6744023 20695 1158595.2938 1159630.0671 28.0351 -8.4158 92.5708 run15.mat -1 -1 320 3429423 3439771 +6744331 6765003 20673 1159645.3509 1160678.9311 29.6869 -8.4146 92.6252 run15.mat -1 -1 320 3439925 3450262 +6765309 6774450 9142 1160694.1127 1161150.0104 31.3388 -8.4169 92.7943 run15.mat -1 -1 320 3450415 3454985 +6858547 6869251 10705 1165355.8992 1165891.2573 31.3309 -8.4156 93.5539 run15.mat -1 -1 321 3497035 3502388 +6869566 6890251 20686 1165907.0106 1166942.5164 32.9834 -8.4148 92.6343 run15.mat -1 -1 321 3502546 3512889 +6890567 6911244 20678 1166958.3195 1167991.4202 34.6276 -8.4142 92.6338 run15.mat -1 -1 321 3513047 3523385 +6911550 6932244 20695 1168006.8467 1169040.6834 36.2817 -8.415 92.6138 run15.mat -1 -1 321 3523538 3533886 +6932552 6953208 20657 1169056.0864 1170087.5756 37.9296 -8.4162 92.713 run15.mat -1 -1 321 3534040 3544368 +6953524 6954329 806 1170103.2565 1170143.3017 39.5827 -8.4159 92.2839 run15.mat -1 -1 321 3544526 3544929 +7038377 7057392 19016 1174347.6937 1175297.4066 39.5809 -8.4141 92.8604 run15.mat -1 -1 322 3586954 3596462 +7057703 7078369 20667 1175312.8363 1176347.7937 41.2296 -8.4142 92.6037 run15.mat -1 -1 322 3596618 3606952 +7078687 7099367 20681 1176363.697 1177396.0157 42.8767 -8.4147 92.5536 run15.mat -1 -1 322 3607111 3617451 +7099674 7120347 20674 1177411.4926 1178447.1766 44.5302 -8.4142 92.6246 run15.mat -1 -1 322 3617605 3627941 +7120655 7134249 13595 1178462.5825 1179142.4164 46.1769 -8.4164 92.7109 run15.mat -1 -1 322 3628095 3634892 +7218534 7224751 6218 1183355.0369 1183667.7575 46.1818 -8.4166 94.0982 run15.mat -1 -1 323 3677037 3680143 +7225058 7245747 20690 1183683.1104 1184717.8171 47.8307 -8.4158 92.5663 run15.mat -1 -1 323 3680299 3690644 +7246054 7266726 20673 1184733.17 1185764.0744 49.4771 -8.4147 92.5876 run15.mat -1 -1 323 3690798 3701134 +7267036 7287729 20694 1185779.4545 1186815.975 51.1298 -8.4141 92.5769 run15.mat -1 -1 323 3701289 3711636 +7288038 7308708 20671 1186831.5527 1187863.9532 52.7776 -8.4146 92.6347 run15.mat -1 -1 323 3711790 3722126 +7309017 7314289 5273 1187879.2836 1188142.9589 54.4269 -8.4143 92.7001 run15.mat -1 -1 323 3722281 3724916 +7398381 7412871 14491 1192347.0133 1193073.0187 54.4269 -8.4147 93.0977 run15.mat -1 -1 324 3766964 3774210 +7413192 7433867 20676 1193088.9476 1194123.7042 56.0761 -8.4154 92.4638 run15.mat -1 -1 324 3774370 3784708 +7434173 7454850 20678 1194139.2493 1195171.766 57.722 -8.4156 92.6188 run15.mat -1 -1 324 3784861 3795200 +7455158 7475866 20709 1195187.0468 1196221.363 59.3737 -8.4142 92.6289 run15.mat -1 -1 324 3795354 3805709 +7476174 7494209 18036 1196236.8903 1197138.3437 61.0197 -8.4161 92.7728 run15.mat -1 -1 324 3805863 3814880 +7578284 7579958 1675 1201342.2308 1201425.9469 61.0213 -8.4147 96.4947 run15.mat -1 -1 325 3856920 3857757 +7580275 7600928 20654 1201441.8 1202474.7563 62.67 -8.4159 92.6357 run15.mat -1 -1 325 3857916 3868242 +7601234 7621927 20694 1202490.0592 1203525.308 64.3144 -8.4159 92.5819 run15.mat -1 -1 325 3868395 3878742 +7622235 7642928 20694 1203540.5888 1204575.2004 65.9676 -8.4152 92.6262 run15.mat -1 -1 325 3878896 3889243 +7643235 7663926 20692 1204590.6708 1205625.6517 67.6189 -8.4144 92.6009 run15.mat -1 -1 325 3889397 3899743 +7664235 7674068 9834 1205641.2295 1206132.484 69.2685 -8.4152 92.7419 run15.mat -1 -1 325 3899897 3904814 +7758381 7768233 9853 1210348.4202 1210841.1103 69.2711 -8.4144 93.1702 run15.mat -1 -1 326 3946973 3951899 +7768547 7789229 20683 1210856.9401 1211892.2304 70.9148 -8.4138 92.5209 run15.mat -1 -1 326 3952056 3962397 +7789537 7810216 20680 1211907.6334 1212938.2846 72.5717 -8.4151 92.5786 run15.mat -1 -1 326 3962551 3972891 +7810529 7831230 20702 1212953.8135 1213990.8449 74.2168 -8.4149 92.497 run15.mat -1 -1 326 3973047 3983398 +7831536 7852188 20653 1214006.1334 1215038.0548 75.8675 -8.4142 92.7779 run15.mat -1 -1 326 3983551 3993878 +7852494 7854148 1655 1215053.358 1215136.0752 77.5255 -8.4122 92.4055 run15.mat -1 -1 326 3994031 3994858 +7938247 7956332 18086 1219341.4814 1220246.2586 77.5157 -8.4147 92.9412 run15.mat -1 -1 327 4036909 4045952 +7956655 7977331 20677 1220262.5454 1221297.6872 79.1695 -8.4153 92.5254 run15.mat -1 -1 327 4046114 4056452 +7977639 7998332 20694 1221312.971 1222347.6078 80.8167 -8.415 92.5098 run15.mat -1 -1 327 4056606 4066953 +7998639 8018982 20344 1222362.842 1223377.434 82.4634 -8.4148 92.5883 run15.mat -1 -1 327 4067106 4077279 +300846 321359 20514 1352634.7065 1353658.6326 82.4626 -6.7307 92.9539 run16.mat -1 -1 329 166815 177071 +321665 342357 20693 1353673.9356 1354710.5611 80.8182 -6.7315 92.5607 run16.mat -1 -1 329 177224 187571 +342664 363359 20696 1354726.0411 1355759.0238 79.1688 -6.7311 92.5297 run16.mat -1 -1 329 187725 198072 +363668 384360 20693 1355774.3573 1356808.9794 77.5192 -6.7313 92.5726 run16.mat -1 -1 329 198227 208573 +384665 396726 12062 1356824.3586 1357427.4658 75.8639 -6.7308 92.7242 run16.mat -1 -1 329 208725 214756 +480891 488660 7770 1361636.1723 1362024.7692 75.8687 -6.7298 93.8736 run16.mat -1 -1 330 256841 260725 +488988 509684 20697 1362041.2354 1363077.2108 74.2205 -6.7313 92.5342 run16.mat -1 -1 330 260889 271238 +509991 530684 20694 1363092.5638 1364126.2309 72.5712 -6.7306 92.5691 run16.mat -1 -1 330 271392 281739 +530989 551661 20673 1364141.607 1365174.5215 70.9185 -6.7317 92.5876 run16.mat -1 -1 330 281891 292227 +551968 572642 20675 1365189.6418 1366221.917 69.2695 -6.7311 92.7669 run16.mat -1 -1 330 292381 302718 +572949 576806 3858 1366237.2734 1366431.2178 67.6222 -6.7346 93.0507 run16.mat -1 -1 330 302871 304800 +660863 676745 15883 1370633.2656 1371428.5053 67.6163 -6.7325 92.9062 run16.mat -1 -1 331 346831 354772 +677053 697742 20690 1371444.0327 1372478.3802 65.9712 -6.7317 92.5918 run16.mat -1 -1 331 354926 365271 +698048 718739 20692 1372493.5618 1373530.75 64.3159 -6.7323 92.5438 run16.mat -1 -1 331 365424 375770 +719048 739741 20694 1373546.2 1374579.2545 62.6687 -6.7323 92.579 run16.mat -1 -1 331 375924 386271 +740046 756665 16620 1374594.4003 1375424.8023 61.0185 -6.7324 92.7487 run16.mat -1 -1 331 386424 394734 +840934 844002 3069 1379638.2034 1379792.2746 61.0194 -6.7244 94.7694 run16.mat -1 -1 332 436870 438404 +844330 865011 20682 1379808.7464 1380841.2991 59.3752 -6.7305 92.4867 run16.mat -1 -1 332 438568 448909 +865323 886025 20703 1380856.8231 1381892.415 57.726 -6.731 92.6292 run16.mat -1 -1 332 449066 459417 +886332 907006 20675 1381907.8919 1382943.4306 56.0727 -6.7323 92.6205 run16.mat -1 -1 332 459570 469907 +907314 927986 20673 1382958.8365 1383991.6543 54.4272 -6.7305 92.6043 run16.mat -1 -1 332 470061 480398 +928293 936725 8433 1384006.8855 1384428.1944 52.7808 -6.7328 92.5944 run16.mat -1 -1 332 480552 484768 +1020841 1032204 11364 1388635.6946 1389203.466 52.7796 -6.731 93.3118 run16.mat -1 -1 333 526828 532509 +1032535 1053217 20683 1389219.8879 1390253.8425 51.1312 -6.7307 92.5181 run16.mat -1 -1 333 532675 543017 +1053529 1074207 20679 1390269.5715 1391301.9046 49.4758 -6.7317 92.5709 run16.mat -1 -1 333 543173 553512 +1074512 1095209 20698 1391317.2807 1392352.4398 47.8306 -6.7307 92.655 run16.mat -1 -1 333 553664 564013 +1095513 1116187 20675 1392367.5221 1393403.2273 46.1774 -6.732 92.6572 run16.mat -1 -1 333 564165 574503 +1116494 1116725 232 1393418.6048 1393430.1593 44.5508 -6.7349 91.0017 run16.mat -1 -1 333 574656 574772 +1201045 1220645 19601 1397646.0904 1398624.588 44.5291 -6.7316 93.0356 run16.mat -1 -1 334 616934 626734 +1220952 1241646 20695 1398639.941 1399672.9805 42.8789 -6.7319 92.5744 run16.mat -1 -1 334 626888 637235 +1241952 1262627 20676 1399688.2522 1400722.6241 41.2242 -6.733 92.5491 run16.mat -1 -1 334 637388 647726 +1262932 1283608 20677 1400738.0002 1401772.5311 39.5812 -6.7324 92.6442 run16.mat -1 -1 334 647879 658217 +1283915 1296804 12890 1401787.8875 1402434.3884 37.93 -6.7319 92.8133 run16.mat -1 -1 334 658370 664815 +1380866 1387726 6861 1406635.3553 1406978.8019 37.9306 -6.7288 93.6156 run16.mat -1 -1 335 706848 710278 +1388032 1408709 20678 1406994.1048 1408029.8037 36.282 -6.7327 92.5845 run16.mat -1 -1 335 710431 720770 +1409016 1429726 20711 1408045.0349 1409080.5284 34.6274 -6.7313 92.6031 run16.mat -1 -1 335 720924 731279 +1430033 1450709 20677 1409095.7626 1410126.7568 32.9832 -6.7324 92.5532 run16.mat -1 -1 335 731432 741771 +1451016 1471687 20672 1410142.1127 1411176.438 31.3345 -6.7297 92.7288 run16.mat -1 -1 335 741925 752261 +1471995 1476664 4670 1411191.7188 1411424.8357 29.6854 -6.7351 92.8155 run16.mat -1 -1 335 752415 754749 +1560993 1576008 15016 1415643.4552 1416393.3102 29.6883 -6.7309 92.9223 run16.mat -1 -1 336 796915 804423 +1576314 1597027 20714 1416408.4918 1417443.6372 28.034 -6.7311 92.5399 run16.mat -1 -1 336 804576 814933 +1597334 1618009 20676 1417458.9902 1418492.8594 26.3869 -6.7314 92.5997 run16.mat -1 -1 336 815087 825425 +1618315 1639011 20697 1418508.2859 1419541.617 24.739 -6.732 92.5658 run16.mat -1 -1 336 825578 835926 +1639316 1656744 17429 1419557.0577 1420430.4253 23.0891 -6.7316 92.7424 run16.mat -1 -1 336 836078 844793 +1740708 1743106 2399 1424627.8724 1424746.8444 23.0902 -6.7308 96.8566 run16.mat -1 -1 337 886777 887976 +1743446 1764108 20663 1424763.7128 1425799.8991 21.437 -6.7318 92.4959 run16.mat -1 -1 337 888146 898477 +1764415 1785130 20716 1425815.1501 1426849.6084 19.7944 -6.7311 92.5702 run16.mat -1 -1 337 898631 908989 +1785435 1806116 20682 1426864.9845 1427900.0353 18.1394 -6.7315 92.5319 run16.mat -1 -1 337 909142 919482 +1806428 1827092 20665 1427915.5146 1428946.875 16.4935 -6.7312 92.6768 run16.mat -1 -1 337 919638 929970 +1827398 1836623 9226 1428962.0595 1429423.6216 14.8418 -6.7326 92.7372 run16.mat -1 -1 337 930123 934736 +1920874 1931368 10495 1433635.7647 1434163.3632 14.8436 -6.729 93.2252 run16.mat -1 -1 338 976864 982111 +1931684 1952351 20668 1434179.0441 1435210.6563 13.1887 -6.7313 92.5015 run16.mat -1 -1 338 982269 992603 +1952655 1973367 20713 1435225.9851 1436262.5884 11.5393 -6.7317 92.5636 run16.mat -1 -1 338 992755 1003111 +1973676 1994348 20673 1436278.0414 1437311.8586 9.8885 -6.7324 92.6641 run16.mat -1 -1 338 1003266 1013602 +1994656 2015313 20658 1437327.3508 1438358.3026 8.2408 -6.7327 92.6437 run16.mat -1 -1 338 1013756 1024086 +2015624 2016644 1021 1438373.7323 1438424.3376 6.5816 -6.7321 92.7858 run16.mat -1 -1 338 1024241 1024751 +2100684 2119420 18737 1442627.0264 1443565.6536 6.5909 -6.7313 92.9574 run16.mat -1 -1 339 1066773 1076141 +2119731 2140411 20681 1443581.3321 1444613.8165 4.9428 -6.7305 92.507 run16.mat -1 -1 339 1076296 1086637 +2140717 2161411 20695 1444629.2011 1445664.8472 3.2926 -6.7317 92.581 run16.mat -1 -1 339 1086790 1097138 +2161719 2182391 20673 1445680.131 1446713.0903 1.6461 -6.7302 92.5814 run16.mat -1 -1 339 1097292 1107628 +2182694 2196503 13810 1446728.3656 1447418.2583 -0.0020335 -6.7303 92.745 run16.mat -1 -1 339 1107780 1114684 +2280604 2286507 5904 1451623.5749 1451916.8207 0.0016061 -6.731 94.0779 run16.mat -1 -1 340 1156737 1159689 +2286841 2307529 20689 1451933.6588 1452970.0633 -1.6484 -6.7311 92.4952 run16.mat -1 -1 340 1159856 1170200 +2307836 2328510 20675 1452985.4165 1454017.3195 -3.2948 -6.7321 92.6196 run16.mat -1 -1 340 1170354 1180691 +2328817 2349521 20705 1454032.6724 1455070.1054 -4.945 -6.7321 92.5407 run16.mat -1 -1 340 1180844 1191197 +2349835 2370488 20654 1455085.8115 1456118.2444 -6.5929 -6.732 92.6308 run16.mat -1 -1 340 1191354 1201681 +2370796 2376383 5588 1456133.7717 1456413.5974 -8.2487 -6.7323 92.5791 run16.mat -1 -1 340 1201835 1204628 +2460622 2474789 14168 1460625.3263 1461332.2779 -8.242 -6.7301 93.2486 run16.mat -1 -1 341 1246750 1253833 +2475097 2495795 20699 1461347.6809 1462382.3196 -9.8945 -6.7316 92.5644 run16.mat -1 -1 341 1253987 1264337 +2496099 2516796 20698 1462397.6453 1463432.3354 -11.5436 -6.731 92.6088 run16.mat -1 -1 341 1264489 1274838 +2517105 2537792 20688 1463447.6746 1464484.0282 -13.191 -6.7322 92.5294 run16.mat -1 -1 341 1274993 1285336 +2538096 2556443 18348 1464499.1135 1465416.9902 -14.845 -6.7297 92.7571 run16.mat -1 -1 341 1285488 1294662 +2640521 2641871 1351 1469619.8017 1469686.7793 -14.8413 -6.736 98.1172 run16.mat -1 -1 342 1336703 1337378 +2642178 2662873 20696 1469702.0105 1470736.9149 -16.4961 -6.7305 92.5884 run16.mat -1 -1 342 1337532 1347880 +2663179 2683870 20692 1470752.3414 1471789.0135 -18.1429 -6.7337 92.5694 run16.mat -1 -1 342 1348033 1358379 +2684178 2704872 20695 1471804.4164 1472836.5114 -19.7935 -6.7319 92.5193 run16.mat -1 -1 342 1358533 1368880 +2705180 2725851 20672 1472851.7922 1473885.3802 -21.4408 -6.732 92.6123 run16.mat -1 -1 342 1369034 1379370 +2726158 2736301 10144 1473900.6114 1474408.8904 -23.0919 -6.7319 92.7319 run16.mat -1 -1 342 1379524 1384595 +2820276 2829851 9576 1478607.3859 1479086.445 -23.093 -6.7302 93.4557 run16.mat -1 -1 343 1426585 1431372 +2830160 2850872 20713 1479101.7785 1480136.7652 -24.7413 -6.732 92.593 run16.mat -1 -1 343 1431527 1441883 +2851178 2871856 20679 1480152.1321 1481186.2709 -26.3869 -6.7304 92.6326 run16.mat -1 -1 343 1442036 1452376 +2872165 2892855 20691 1481201.4926 1482237.3557 -28.036 -6.7321 92.6061 run16.mat -1 -1 343 1452530 1462875 +2893164 2913849 20686 1482252.6892 1483287.0485 -29.6869 -6.7305 92.6968 run16.mat -1 -1 343 1463030 1473373 +2914157 2916082 1926 1483302.4524 1483398.7224 -31.3435 -6.7306 92.913 run16.mat -1 -1 343 1473527 1474490 +3000184 3017972 17789 1487604.0088 1488493.0849 -31.3363 -6.7298 92.9696 run16.mat -1 -1 344 1516542 1525437 +3018287 3038956 20670 1488508.9651 1489541.2815 -32.9851 -6.7323 92.585 run16.mat -1 -1 344 1525594 1535929 +3039270 3059954 20685 1489556.9009 1490591.4596 -34.6305 -6.7308 92.5908 run16.mat -1 -1 344 1536087 1546429 +3060260 3080933 20674 1490606.8861 1491642.6059 -36.2861 -6.7317 92.5991 run16.mat -1 -1 344 1546582 1556919 +3081241 3095961 14721 1491657.7783 1492392.6348 -37.9306 -6.7323 92.7641 run16.mat -1 -1 344 1557073 1564433 +3182094 3187091 4998 1496699.1082 1496947.7695 -37.9412 -6.7311 94.4523 run16.mat -1 -1 345 1607502 1610000 +3187421 3208112 20692 1496964.273 1498000.2492 -39.5786 -6.7318 92.4386 run16.mat -1 -1 345 1610165 1620511 +3208419 3229112 20694 1498015.7262 1499050.9544 -41.2317 -6.73 92.6531 run16.mat -1 -1 345 1620664 1631011 +3229417 3250093 20677 1499066.3336 1500096.7551 -42.8806 -6.73 92.5828 run16.mat -1 -1 345 1631164 1641502 +3250400 3271072 20673 1500112.1166 1501147.2549 -44.531 -6.7316 92.663 run16.mat -1 -1 345 1641656 1651992 +3271380 3277901 6522 1501162.7854 1501489.4017 -46.1831 -6.7316 92.9402 run16.mat -1 -1 345 1652146 1655407 +3361858 3375172 13315 1505687.3343 1506351.2294 -46.1823 -6.7332 93.4193 run16.mat -1 -1 346 1697387 1704045 +3375497 3396194 20698 1506367.5529 1507403.6099 -47.8344 -6.7311 92.5252 run16.mat -1 -1 346 1704207 1714556 +3396501 3417173 20673 1507418.9631 1508453.5499 -49.4783 -6.7315 92.6311 run16.mat -1 -1 346 1714710 1725046 +3417487 3438176 20690 1508469.3797 1509505.2112 -51.1333 -6.7308 92.6393 run16.mat -1 -1 346 1725203 1735548 +3438479 3457761 19283 1509520.3671 1510481.7194 -52.7806 -6.7324 92.7013 run16.mat -1 -1 346 1735699 1745341 +3541745 3542270 526 1514682.7635 1514708.6256 -52.7723 -6.7298 99.7239 run16.mat -1 -1 347 1787335 1787597 +3542594 3563232 20639 1514724.5862 1515756.7312 -54.4306 -6.7311 92.751 run16.mat -1 -1 347 1787759 1798079 +3563541 3584231 20691 1515772.1844 1516805.3922 -56.0789 -6.7324 92.6233 run16.mat -1 -1 347 1798233 1808578 +3584540 3605232 20693 1516820.7257 1517857.1727 -57.731 -6.7299 92.567 run16.mat -1 -1 347 1808733 1819080 +3605540 3626233 20694 1517872.4565 1518907.0018 -59.3786 -6.7316 92.638 run16.mat -1 -1 347 1819234 1829581 +3626539 3637601 11063 1518922.4283 1519473.1741 -61.026 -6.7293 92.7427 run16.mat -1 -1 347 1829734 1835265 +3721817 3730434 8618 1523685.4192 1524117.0033 -61.0258 -6.7327 93.2995 run16.mat -1 -1 348 1877374 1881683 +3730744 3751453 20710 1524132.5098 1525166.2259 -62.6718 -6.7308 92.5731 run16.mat -1 -1 348 1881838 1892193 +3751761 3772451 20691 1525181.6318 1526217.3441 -64.3222 -6.732 92.6202 run16.mat -1 -1 348 1892347 1902693 +3772759 3793435 20677 1526232.8745 1527267.0641 -65.9702 -6.7306 92.6339 run16.mat -1 -1 348 1902847 1913185 +3793741 3814413 20673 1527282.4906 1528316.6099 -67.619 -6.7323 92.6211 run16.mat -1 -1 348 1913338 1923675 +3814720 3817601 2882 1528332.09 1528475.6395 -69.2714 -6.7329 92.5351 run16.mat -1 -1 348 1923828 1925269 +3901671 3918511 16841 1532680.1084 1533519.4716 -69.2691 -6.7308 93.108 run16.mat -1 -1 349 1967306 1975726 +3918839 3939532 20694 1533536.0105 1534571.6849 -70.9177 -6.7316 92.5566 run16.mat -1 -1 349 1975890 1986237 +3939840 3960534 20695 1534587.0879 1535622.8132 -72.5692 -6.7299 92.6556 run16.mat -1 -1 349 1986391 1996739 +3960842 3981508 20667 1535638.3437 1536671.8416 -74.2186 -6.7318 92.5858 run16.mat -1 -1 349 1996893 2007226 +3981820 3997460 15641 1536687.3239 1537468.3659 -75.8642 -6.7335 92.7277 run16.mat -1 -1 349 2007382 2015202 +4081448 4085597 4150 1541666.3257 1541875.4908 -75.8759 -6.7304 94.9868 run16.mat -1 -1 350 2057198 2059273 +4085908 4106614 20707 1541891.1694 1542926.8554 -77.5126 -6.7317 92.4984 run16.mat -1 -1 350 2059428 2069782 +4106920 4127605 20686 1542942.1586 1543976.0794 -79.1713 -6.7323 92.5751 run16.mat -1 -1 350 2069935 2080277 +4127918 4148592 20675 1543991.6114 1545025.2756 -80.8186 -6.7321 92.6016 run16.mat -1 -1 350 2080434 2090772 +4148901 4169589 20689 1545040.7286 1546074.7667 -82.4687 -6.731 92.6464 run16.mat -1 -1 350 2090926 2101271 +4169898 4177340 7443 1546090.3444 1546461.4998 -82.4642 -5.0486 92.7652 run16.mat -1 -1 350 2101425 2105146 +4261416 4273702 12287 1550665.8826 1551279.3204 -82.4694 -5.0459 93.1289 run16.mat -1 -1 351 2147186 2153329 +4274018 4294712 20695 1551295.1235 1552330.8964 -80.8191 -5.0479 92.4646 run16.mat -1 -1 351 2153487 2163835 +4295020 4315695 20676 1552346.1772 1553381.0294 -79.1698 -5.0469 92.6155 run16.mat -1 -1 351 2163989 2174327 +4316002 4336692 20691 1553396.5095 1554429.6455 -77.5175 -5.0468 92.627 run16.mat -1 -1 351 2174480 2184826 +4337001 4357200 20200 1554445.0985 1555453.4724 -75.8695 -5.047 92.7449 run16.mat -1 -1 351 2184980 2195080 +4441081 4461595 20515 1559648.4428 1560674.3553 -74.2222 -5.0478 92.8279 run16.mat -1 -1 352 2237022 2247280 +4461901 4482612 20712 1560689.5399 1561725.026 -72.5696 -5.0478 92.5259 run16.mat -1 -1 352 2247433 2257789 +4482921 4503593 20673 1561740.3564 1562777.0087 -70.9187 -5.0483 92.6364 run16.mat -1 -1 352 2257943 2268280 +4503901 4524575 20675 1562792.2926 1563824.4767 -69.2693 -5.0482 92.6774 run16.mat -1 -1 352 2268434 2278771 +4524882 4536898 12017 1563839.8326 1564440.8215 -67.6148 -5.0462 92.8128 run16.mat -1 -1 352 2278924 2284933 +4621181 4628956 7776 1568655.0161 1569042.9976 -67.6183 -5.0464 93.5333 run16.mat -1 -1 353 2327076 2330964 +4629273 4649974 20702 1569058.9786 1570094.9644 -65.9696 -5.0479 92.5323 run16.mat -1 -1 353 2331123 2341473 +4650280 4670955 20676 1570110.2676 1571143.1789 -64.3182 -5.0475 92.6188 run16.mat -1 -1 353 2341626 2351965 +4671261 4691955 20695 1571158.6054 1572193.8762 -62.6723 -5.0495 92.6262 run16.mat -1 -1 353 2352118 2362465 +4692263 4712917 20655 1572209.4066 1573241.3761 -61.0221 -5.0473 92.7677 run16.mat -1 -1 353 2362619 2372947 +4713226 4716899 3674 1573256.7065 1573441.241 -59.3794 -5.0486 92.9493 run16.mat -1 -1 353 2373101 2374938 +4800981 4817086 16106 1577645.5272 1578448.5956 -59.3764 -5.0478 92.8633 run16.mat -1 -1 354 2416980 2425033 +4817407 4838094 20688 1578464.5213 1579501.9486 -57.727 -5.0471 92.5664 run16.mat -1 -1 354 2425194 2435538 +4838400 4859074 20675 1579517.3751 1580549.7005 -56.078 -5.0476 92.5231 run16.mat -1 -1 354 2435691 2446028 +4859381 4880076 20696 1580565.0535 1581599.3894 -54.4264 -5.0481 92.6787 run16.mat -1 -1 354 2446182 2456530 +4880383 4896798 16416 1581614.8663 1582436.5135 -52.7813 -5.0486 92.7021 run16.mat -1 -1 354 2456683 2464891 +4980772 4984198 3427 1586634.6521 1586804.6263 -52.7783 -5.0475 94.9868 run16.mat -1 -1 355 2506880 2508593 +4984507 5005193 20687 1586820.1982 1587855.2393 -51.132 -5.0474 92.6259 run16.mat -1 -1 355 2508747 2519091 +5005500 5026173 20674 1587870.4705 1588904.87 -49.4823 -5.0481 92.7128 run16.mat -1 -1 355 2519245 2529582 +5026479 5047175 20697 1588920.1732 1589954.0685 -47.8316 -5.0467 92.5914 run16.mat -1 -1 355 2529735 2540083 +5047482 5068154 20673 1589969.2997 1591004.0817 -46.1834 -5.0478 92.6085 run16.mat -1 -1 355 2540236 2550573 +5068464 5076678 8215 1591019.7098 1591429.7581 -44.5329 -5.0473 92.7539 run16.mat -1 -1 355 2550728 2554835 +5160757 5172258 11502 1595634.8156 1596209.2559 -44.5311 -5.0464 93.161 run16.mat -1 -1 356 2596876 2602627 +5172567 5193254 20688 1596224.8336 1597258.4521 -42.8813 -5.0484 92.5152 run16.mat -1 -1 356 2602781 2613125 +5193562 5214253 20692 1597273.7329 1598308.2993 -41.2289 -5.0483 92.5305 run16.mat -1 -1 356 2613279 2623625 +5214563 5235239 20677 1598323.748 1599358.86 -39.5837 -5.0479 92.5685 run16.mat -1 -1 356 2623781 2634119 +5235552 5256215 20664 1599374.5132 1600407.9202 -37.9338 -5.0469 92.6719 run16.mat -1 -1 356 2634276 2644608 +5256522 5256559 38 1600423.2734 1600425.1238 -36.3271 -5.0574 91.0345 run16.mat -1 -1 356 2644761 2644780 +5340564 5360363 19800 1604623.4637 1605615.2453 -36.2845 -5.0479 93.1271 run16.mat -1 -1 357 2686784 2696684 +5360680 5381357 20678 1605630.9758 1606665.6399 -34.6312 -5.0474 92.5526 run16.mat -1 -1 357 2696842 2707181 +5381668 5402356 20689 1606681.1958 1607712.7521 -32.9851 -5.0478 92.5761 run16.mat -1 -1 357 2707337 2717681 +5402662 5423354 20693 1607727.9337 1608762.5518 -31.3366 -5.0478 92.6748 run16.mat -1 -1 357 2717834 2728180 +5423663 5436458 12796 1608777.8853 1609419.7292 -29.6854 -5.0468 92.7669 run16.mat -1 -1 357 2728335 2734733 +5520694 5527585 6892 1613631.5093 1613975.0699 -29.6816 -5.0488 93.862 run16.mat -1 -1 358 2776853 2780298 +5527898 5548600 20703 1613990.5987 1615026.2331 -28.039 -5.0472 92.5406 run16.mat -1 -1 358 2780455 2790806 +5548906 5569579 20674 1615041.5361 1616075.392 -26.3875 -5.0488 92.5469 run16.mat -1 -1 358 2790959 2801296 +5569888 5590580 20693 1616090.8452 1617125.7045 -24.7412 -5.0477 92.5575 run16.mat -1 -1 358 2801451 2811797 +5590889 5611559 20671 1617141.1604 1618174.4783 -23.0926 -5.0465 92.6799 run16.mat -1 -1 358 2811952 2822287 +5611866 5616458 4593 1618189.7095 1618418.396 -21.4387 -5.0474 93.0038 run16.mat -1 -1 358 2822441 2824737 +5700539 5715796 15258 1622622.3487 1623387.3313 -21.4415 -5.0485 93.1233 run16.mat -1 -1 359 2866779 2874408 +5716111 5736801 20691 1623402.9563 1624437.5461 -19.7905 -5.0483 92.6846 run16.mat -1 -1 359 2874565 2884911 +5737105 5757779 20675 1624452.6285 1625484.9846 -18.1453 -5.0479 92.5597 run16.mat -1 -1 359 2885063 2895400 +5758086 5778777 20692 1625500.3405 1626534.0157 -16.4928 -5.0497 92.6767 run16.mat -1 -1 359 2895553 2905900 +5779086 5796318 17233 1626549.3461 1627411.4951 -14.8428 -5.0482 92.8531 run16.mat -1 -1 359 2906054 2914671 +5880447 5882919 2473 1631618.6618 1631742.0568 -14.8381 -5.0456 94.567 run16.mat -1 -1 360 2956737 2957973 +5883228 5903920 20693 1631757.3872 1632793.0244 -13.1928 -5.048 92.5135 run16.mat -1 -1 360 2958128 2968474 +5904228 5924898 20671 1632808.4274 1633841.591 -11.5425 -5.0476 92.6664 run16.mat -1 -1 360 2968628 2978963 +5925204 5945901 20698 1633857.0206 1634892.6931 -9.8943 -5.0474 92.6201 run16.mat -1 -1 360 2979116 2989466 +5946207 5966878 20672 1634907.9962 1635942.753 -8.2472 -5.0475 92.6927 run16.mat -1 -1 360 2989619 2999954 +5967188 5976217 9030 1635958.256 1636408.0699 -6.5981 -5.0496 92.826 run16.mat -1 -1 360 3000109 3004624 +6060489 6071216 10728 1640621.8185 1641159.4313 -6.5893 -5.0474 93.3775 run16.mat -1 -1 361 3046762 3052126 +6071527 6092218 20692 1641175.1726 1642206.3669 -4.9459 -5.0476 92.5516 run16.mat -1 -1 361 3052281 3062627 +6092524 6113217 20694 1642221.7903 1643256.508 -3.2944 -5.0485 92.5615 run16.mat -1 -1 361 3062780 3073127 +6113525 6134198 20674 1643271.9112 1644307.8384 -1.6481 -5.047 92.5726 run16.mat -1 -1 361 3073281 3083618 +6134507 6155177 20671 1644323.2943 1645355.8761 0.0026724 -5.0487 92.7679 run16.mat -1 -1 361 3083773 3094108 +6155485 6156296 812 1645371.16 1645411.4041 1.6514 -5.0486 92.176 run16.mat -1 -1 361 3094262 3094668 +6240240 6259260 19021 1649609.2342 1650559.5174 1.6468 -5.0486 92.9331 run16.mat -1 -1 362 3136642 3146152 +6259571 6280241 20671 1650575.0704 1651608.873 3.2976 -5.0472 92.5757 run16.mat -1 -1 362 3146307 3156643 +6280552 6301253 20702 1651624.6691 1652658.3788 4.9429 -5.0479 92.5556 run16.mat -1 -1 362 3156798 3167150 +6301563 6322218 20656 1652673.7589 1653707.2363 6.5901 -5.0472 92.6692 run16.mat -1 -1 362 3167305 3177632 +6322527 6336136 13610 1653722.6928 1654404.5997 8.2435 -5.0477 92.7117 run16.mat -1 -1 362 3177786 3184591 +6420417 6426593 6177 1658617.7074 1658927.2609 8.2442 -5.0493 93.8702 run16.mat -1 -1 363 3226734 3229822 +6426912 6447579 20668 1658943.4071 1659975.5341 9.8902 -5.047 92.5244 run16.mat -1 -1 363 3229982 3240315 +6447887 6468586 20700 1659991.0645 1661028.4916 11.5395 -5.0475 92.5571 run16.mat -1 -1 363 3240469 3250819 +6468898 6489596 20699 1661043.9708 1662075.5836 13.1894 -5.0476 92.5731 run16.mat -1 -1 363 3250975 3261325 +6489902 6510559 20658 1662091.0101 1663124.3501 14.84 -5.0492 92.6044 run16.mat -1 -1 363 3261478 3271807 +6510864 6516156 5293 1663139.7293 1663405.622 16.4973 -5.0452 92.6254 run16.mat -1 -1 363 3271959 3274605 +6600242 6614792 14551 1667608.0108 1668335.8959 16.4913 -5.0482 93.0847 run16.mat -1 -1 364 3316650 3323926 +6615108 6635798 20691 1668351.8266 1669388.2332 18.141 -5.0483 92.4882 run16.mat -1 -1 364 3324084 3334429 +6636103 6656779 20677 1669403.489 1670436.6557 19.7898 -5.0486 92.6196 run16.mat -1 -1 364 3334581 3344920 +6657084 6677777 20694 1670451.7877 1671486.0698 21.4364 -5.0481 92.6046 run16.mat -1 -1 364 3345073 3355419 +6678085 6696016 17932 1671501.6002 1672398.9627 23.0947 -5.0483 92.7304 run16.mat -1 -1 364 3355573 3364540 +6780283 6782221 1939 1676612.1858 1676708.3549 23.0833 -5.0504 96.7547 run16.mat -1 -1 365 3406674 3407643 +6782531 6803220 20690 1676723.738 1677759.6324 24.7401 -5.0485 92.6726 run16.mat -1 -1 365 3407798 3418144 +6803527 6824200 20674 1677774.9856 1678808.4784 26.3876 -5.0483 92.5831 run16.mat -1 -1 365 3418297 3428634 +6824506 6845201 20696 1678823.8955 1679859.248 28.0379 -5.0474 92.5405 run16.mat -1 -1 365 3428787 3439135 +6845507 6866181 20675 1679874.552 1680908.1556 29.6868 -5.0467 92.6691 run16.mat -1 -1 365 3439288 3449626 +6866491 6876095 9605 1680923.5356 1681402.3618 31.335 -5.0475 92.8308 run16.mat -1 -1 365 3449781 3454583 +6960196 6970403 10208 1685606.04 1686116.3793 31.3379 -5.0457 93.3415 run16.mat -1 -1 366 3496635 3501739 +6970725 6991398 20674 1686132.2414 1687168.1545 32.9832 -5.0471 92.5028 run16.mat -1 -1 366 3501900 3512237 +6991706 7012401 20696 1687183.5574 1688217.9808 34.6317 -5.0475 92.6916 run16.mat -1 -1 366 3512391 3522739 +7012704 7033379 20676 1688233.0135 1689268.7394 36.281 -5.0497 92.5467 run16.mat -1 -1 366 3522890 3533228 +7033687 7054359 20673 1689284.2699 1690315.4581 37.9305 -5.0478 92.7416 run16.mat -1 -1 366 3533382 3543718 +7054665 7055975 1311 1690330.532 1690395.064 39.5708 -5.0524 92.7614 run16.mat -1 -1 366 3543871 3544526 +7142151 7160669 18519 1694704.5493 1695630.7539 39.5804 -5.0475 93.0435 run16.mat -1 -1 367 3587617 3596876 +7160988 7181664 20677 1695646.839 1696681.9335 41.2266 -5.0476 92.5803 run16.mat -1 -1 367 3597035 3607374 +7181970 7202661 20692 1696697.1151 1697732.2272 42.8761 -5.0476 92.6153 run16.mat -1 -1 367 3607527 3617873 +7202970 7223644 20675 1697747.6836 1698780.7627 44.53 -5.0478 92.5624 run16.mat -1 -1 367 3618027 3628365 +7223953 7237914 13962 1698796.0931 1699495.3763 46.1781 -5.0483 92.6015 run16.mat -1 -1 367 3628519 3635500 +7323989 7329747 5759 1703797.2843 1704086.2194 46.1814 -5.0476 93.9916 run16.mat -1 -1 368 3678540 3681419 +7330055 7350744 20690 1704101.7467 1705135.9972 47.8291 -5.048 92.5813 run16.mat -1 -1 368 3681573 3691918 +7351050 7371743 20694 1705151.1818 1706183.9091 49.4749 -5.0478 92.5508 run16.mat -1 -1 368 3692071 3702418 +7372049 7392722 20674 1706199.0937 1707234.8552 51.1304 -5.0479 92.692 run16.mat -1 -1 368 3702571 3712908 +7393029 7413702 20674 1707250.2081 1708283.511 52.7755 -5.0479 92.6915 run16.mat -1 -1 368 3713061 3723398 +7414010 7419794 5785 1708298.7918 1708587.8407 54.4262 -5.0481 92.7108 run16.mat -1 -1 368 3723552 3726445 +7503975 7517933 13959 1712798.0113 1713494.101 54.425 -5.0482 92.9433 run16.mat -1 -1 369 3768537 3775516 +7518251 7538924 20674 1713510.004 1714543.2634 56.0752 -5.0479 92.6142 run16.mat -1 -1 369 3775675 3786012 +7539232 7559906 20675 1714558.7939 1715593.5133 57.7275 -5.0481 92.567 run16.mat -1 -1 369 3786166 3796503 +7560217 7580906 20690 1715608.946 1716642.6274 59.3729 -5.0479 92.6366 run16.mat -1 -1 369 3796659 3807004 +7581213 7599774 18562 1716657.9804 1717587.5794 61.0219 -5.047 92.6596 run16.mat -1 -1 369 3807158 3816438 +7683873 7685050 1178 1721791.4215 1721850.7701 61.0131 -5.0468 98.0125 run16.mat -1 -1 370 3858489 3859078 +7685366 7706024 20659 1721866.7039 1722898.9879 62.6702 -5.0483 92.6756 run16.mat -1 -1 370 3859236 3869566 +7706332 7707508 1177 1722914.6316 1722974.362 64.3068 -5.0504 92.588 run16.mat -1 -1 370 3869720 3870308 +7707758 7727023 19266 1722987.0598 1723947.382 64.318 -5.0483 92.5376 run16.mat -1 -1 370 3870433 3880066 +7727333 7748025 20693 1723962.885 1724998.1258 65.9684 -5.0467 92.599 run16.mat -1 -1 370 3880221 3890567 +7748330 7769006 20677 1725013.2608 1726047.175 67.618 -5.0469 92.6971 run16.mat -1 -1 370 3890720 3901058 +7769312 7779654 10343 1726062.6632 1726580.6161 69.2652 -5.0468 92.6698 run16.mat -1 -1 370 3901211 3906382 +7865707 7875214 9508 1730883.129 1731358.4078 69.2666 -5.0472 93.7147 run16.mat -1 -1 371 3949410 3954164 +7875535 7896204 20670 1731374.5938 1732409.0726 70.9158 -5.0486 92.4502 run16.mat -1 -1 371 3954325 3964660 +7896511 7917205 20695 1732424.6114 1733460.322 72.5684 -5.0487 92.5582 run16.mat -1 -1 371 3964813 3975161 +7917510 7938185 20676 1733475.6981 1734506.5768 74.2179 -5.0485 92.5548 run16.mat -1 -1 371 3975313 3985651 +7938494 7959167 20674 1734521.9103 1735557.6595 75.8653 -5.0485 92.6704 run16.mat -1 -1 371 3985806 3996143 +7959476 7961613 2138 1735573.1154 1735680.0065 77.52 -5.0517 93.0193 run16.mat -1 -1 371 3996297 3997366 +8045711 8063305 17595 1739884.5279 1740763.5355 77.5165 -5.0471 92.9338 run16.mat -1 -1 372 4039416 4048214 +8063616 8084284 20669 1740778.9682 1741812.192 79.1682 -5.0484 92.5937 run16.mat -1 -1 372 4048370 4058704 +8084592 8105304 20713 1741827.5949 1742863.3787 80.8153 -5.0477 92.5775 run16.mat -1 -1 372 4058858 4069214 +8105609 8125938 20330 1742878.5137 1743893.7439 82.4689 -5.0471 92.6604 run16.mat -1 -1 372 4069367 4079532 +274357 294758 20402 1849037.9589 1850058.0791 82.4617 -3.3647 92.8483 run17.mat -1 -1 374 123184 133385 +295064 315756 20693 1850073.2599 1851105.3995 80.8166 -3.3635 92.5872 run17.mat -1 -1 374 133538 143884 +316063 336759 20697 1851120.8188 1852156.3354 79.1648 -3.365 92.5623 run17.mat -1 -1 374 144037 154386 +337066 357757 20692 1852171.6884 1853206.5445 77.5151 -3.3645 92.5578 run17.mat -1 -1 374 154540 164886 +358063 370163 12101 1853221.8431 1853828.9711 75.8664 -3.3649 92.6816 run17.mat -1 -1 374 165039 171089 +454269 461995 7727 1858033.4622 1858419.8777 75.867 -3.3653 93.3908 run17.mat -1 -1 375 213144 217007 +462329 482997 20669 1858436.5844 1859469.1996 74.2225 -3.3633 92.5243 run17.mat -1 -1 375 217174 227508 +483304 503998 20695 1859484.5527 1860519.3322 72.5682 -3.3645 92.6409 run17.mat -1 -1 375 227662 238009 +504303 524996 20694 1860534.5247 1861567.3681 70.9186 -3.3648 92.5998 run17.mat -1 -1 375 238162 248529 +525305 545958 20654 1861582.9523 1862617.4808 69.2686 -3.3648 92.7061 run17.mat -1 -1 375 248663 258990 +546271 550062 3792 1862633.074 1862821.9334 67.626 -3.3659 92.8275 run17.mat -1 -1 375 259147 261042 +634156 650095 15940 1867026.8683 1867823.8109 67.6219 -3.3646 93.1984 run17.mat -1 -1 376 303091 311061 +650424 671080 20657 1867840.1988 1868872.1544 65.9748 -3.364 92.5564 run17.mat -1 -1 376 311225 321554 +671387 692078 20692 1868887.4496 1869924.786 64.3215 -3.3646 92.5949 run17.mat -1 -1 376 321708 332053 +692387 713062 20676 1869940.3035 1870974.4981 62.672 -3.3645 92.5443 run17.mat -1 -1 376 332208 342546 +713371 729942 16572 1870989.8889 1871814.716 61.0253 -3.3633 92.6649 run17.mat -1 -1 376 342701 350986 +814144 817376 3233 1876027.6626 1876187.9709 61.0217 -3.3658 94.9012 run17.mat -1 -1 377 393089 394705 +817703 838399 20697 1876204.1902 1877239.0587 59.3714 -3.3637 92.5967 run17.mat -1 -1 377 394869 405217 +838707 859378 20672 1877254.586 1878289.513 57.7219 -3.3643 92.639 run17.mat -1 -1 377 405371 415707 +859688 880380 20693 1878305.0786 1879338.6693 56.0705 -3.3644 92.6526 run17.mat -1 -1 377 415862 426209 +880688 901362 20675 1879354.0725 1880388.2368 54.421 -3.3645 92.6393 run17.mat -1 -1 377 426363 436700 +901679 910041 8363 1880404.2211 1880821.7691 52.7733 -3.3633 92.8501 run17.mat -1 -1 377 436859 441040 +994082 1005557 11476 1885023.264 1885598.9066 52.7718 -3.3648 93.2554 run17.mat -1 -1 378 483062 488800 +1005883 1026561 20679 1885615.0275 1886648.958 51.1287 -3.3642 92.5146 run17.mat -1 -1 378 488963 499302 +1026879 1047560 20682 1886664.9916 1887697.3435 49.4751 -3.3644 92.7085 run17.mat -1 -1 378 499461 509802 +1047868 1068560 20693 1887712.5632 1888746.1981 47.8261 -3.3648 92.5666 run17.mat -1 -1 378 509956 520303 +1068869 1089538 20670 1888761.8351 1889797.5426 46.1807 -3.3634 92.7305 run17.mat -1 -1 378 520457 530792 +1089846 1089881 36 1889813.0079 1889814.7653 44.5702 -3.3722 86.9881 run17.mat -1 -1 378 530946 530964 +1174142 1193838 19697 1894026.007 1895010.8195 44.5315 -3.3638 92.9081 run17.mat -1 -1 379 573096 582944 +1194165 1214858 20694 1895027.3739 1896063.123 42.8805 -3.3645 92.6163 run17.mat -1 -1 379 583108 593455 +1215164 1235842 20679 1896078.4909 1897111.8186 41.2298 -3.3641 92.5412 run17.mat -1 -1 379 593608 603947 +1236146 1256826 20681 1897126.8406 1898160.4271 39.586 -3.3639 92.6507 run17.mat -1 -1 379 604099 614440 +1257142 1269921 12780 1898176.294 1898816.6317 37.931 -3.3644 92.7591 run17.mat -1 -1 379 614598 620987 +1354229 1361160 6932 1903032.265 1903379.3007 37.9346 -3.3633 93.8153 run17.mat -1 -1 380 663143 666609 +1361466 1382200 20735 1903394.5461 1904429.792 36.2872 -3.3639 92.4995 run17.mat -1 -1 380 666762 677130 +1382507 1403180 20674 1904445.206 1905479.3388 34.6333 -3.3646 92.6245 run17.mat -1 -1 380 677283 687620 +1403487 1424181 20695 1905494.6948 1906527.7586 32.9842 -3.3646 92.6438 run17.mat -1 -1 380 687773 698121 +1424487 1445156 20670 1906543.1234 1907577.3833 31.3364 -3.3643 92.7496 run17.mat -1 -1 380 698274 708609 +1445465 1450020 4556 1907592.7781 1907819.9631 29.6886 -3.363 92.8106 run17.mat -1 -1 380 708763 711041 +1534138 1549437 15300 1912026.0728 1912790.3596 29.6845 -3.3643 93.1659 run17.mat -1 -1 381 753102 760752 +1549764 1570423 20660 1912806.8426 1913841.3421 28.0322 -3.3645 92.5724 run17.mat -1 -1 381 760915 771245 +1570728 1591424 20697 1913856.7213 1914889.9765 26.3833 -3.3646 92.5892 run17.mat -1 -1 381 771398 781746 +1591731 1612420 20690 1914905.3295 1915940.7988 24.7334 -3.3648 92.6104 run17.mat -1 -1 381 781900 792245 +1612730 1630060 17331 1915956.1173 1916822.4926 23.0855 -3.3643 92.7459 run17.mat -1 -1 381 792400 801065 +1714225 1716699 2475 1921031.3864 1921154.129 23.0865 -3.3682 95.8353 run17.mat -1 -1 382 843150 844387 +1717030 1737698 20669 1921170.5509 1922205.2036 21.4341 -3.3642 92.5377 run17.mat -1 -1 382 844552 854886 +1738008 1758701 20694 1922220.836 1923254.0485 19.7859 -3.3645 92.5518 run17.mat -1 -1 382 855041 865389 +1759007 1779688 20682 1923269.3989 1924305.8237 18.1397 -3.3646 92.6129 run17.mat -1 -1 382 865542 875882 +1779999 1800668 20670 1924321.4438 1925355.3319 16.4911 -3.3644 92.5985 run17.mat -1 -1 382 876038 886373 +1800982 1810120 9139 1925371.1004 1925828.3648 14.839 -3.3652 92.701 run17.mat -1 -1 382 886530 891099 +1894141 1904736 10596 1930027.8543 1930556.0944 14.8457 -3.3632 93.4399 run17.mat -1 -1 383 933111 938409 +1905055 1925742 20688 1930572.1762 1931608.908 13.1915 -3.3638 92.5566 run17.mat -1 -1 383 938569 948913 +1926049 1946724 20676 1931624.1992 1932657.7112 11.5428 -3.3648 92.5122 run17.mat -1 -1 383 949066 959404 +1947036 1967742 20707 1932673.3175 1933708.3361 9.8949 -3.3642 92.5384 run17.mat -1 -1 383 959560 969914 +1968048 1988682 20635 1933723.8274 1934754.1419 8.2504 -3.3633 92.698 run17.mat -1 -1 383 970067 980384 +1988989 1989960 972 1934769.434 1934817.801 6.5905 -3.3645 92.9972 run17.mat -1 -1 383 980537 981023 +2074256 2093120 18865 1939032.3251 1939978.3896 6.596 -3.3635 93.0758 run17.mat -1 -1 384 1023172 1032605 +2093444 2114129 20686 1939994.6571 1941027.1135 4.9459 -3.365 92.5976 run17.mat -1 -1 384 1032767 1043110 +2114441 2135121 20681 1941042.6578 1942075.825 3.2955 -3.3646 92.632 run17.mat -1 -1 384 1043266 1053607 +2135429 2156123 20695 1942091.1678 1943126.9421 1.6494 -3.3638 92.6675 run17.mat -1 -1 384 1053761 1064108 +2156428 2170019 13592 1943142.2588 1943821.6108 -0.0019456 -3.3645 92.8163 run17.mat -1 -1 384 1064261 1071056 +2254206 2260419 6214 1948029.8545 1948341.2882 -0.001435 -3.365 93.9153 run17.mat -1 -1 385 1113152 1116258 +2260739 2281441 20703 1948357.4216 1949392.5257 -1.6534 -3.3639 92.4474 run17.mat -1 -1 385 1116418 1126770 +2281749 2302426 20678 1949407.9909 1950441.5372 -3.2989 -3.3644 92.6139 run17.mat -1 -1 385 1126924 1137263 +2302738 2323423 20686 1950457.1404 1951492.6475 -4.9498 -3.3645 92.5214 run17.mat -1 -1 385 1137419 1147762 +2323731 2344403 20673 1951508.0383 1952540.1114 -6.5974 -3.3635 92.6824 run17.mat -1 -1 385 1147916 1158252 +2344710 2350099 5390 1952555.5284 1952825.5824 -8.2467 -3.3627 92.8816 run17.mat -1 -1 385 1158405 1161100 +2434058 2448520 14463 1957024.6594 1957745.2777 -8.2513 -3.3647 93.1568 run17.mat -1 -1 386 1203081 1210313 +2448857 2469525 20669 1957762.2119 1958798.3442 -9.8962 -3.3641 92.5346 run17.mat -1 -1 386 1210482 1220816 +2469834 2490522 20689 1958813.6765 1959848.0818 -11.5457 -3.3644 92.6607 run17.mat -1 -1 386 1220970 1231315 +2490832 2511505 20674 1959863.4618 1960895.6919 -13.1948 -3.3645 92.5602 run17.mat -1 -1 386 1231470 1241807 +2511823 2529978 18156 1960911.5351 1961818.8508 -14.8434 -3.3647 92.6782 run17.mat -1 -1 386 1241966 1251044 +2614267 2615840 1574 1966033.6118 1966112.293 -14.8475 -3.3645 96.8484 run17.mat -1 -1 387 1293190 1293976 +2616160 2636840 20681 1966128.2993 1967162.5817 -16.4913 -3.3642 92.5907 run17.mat -1 -1 387 1294136 1304477 +2637149 2657822 20674 1967178.0348 1968211.3842 -18.1416 -3.3642 92.6778 run17.mat -1 -1 387 1304631 1314969 +2658129 2678821 20693 1968226.6208 1969262.154 -19.7883 -3.3644 92.6117 run17.mat -1 -1 387 1315122 1325468 +2679129 2699809 20681 1969277.5601 1970310.6505 -21.4361 -3.3637 92.6014 run17.mat -1 -1 387 1325622 1335963 +2700121 2710058 9938 1970326.1947 1970824.1877 -23.0874 -3.3643 92.819 run17.mat -1 -1 387 1336119 1341088 +2794075 2803861 9787 1975022.6126 1975513.05 -23.0887 -3.3636 93.3127 run17.mat -1 -1 388 1383098 1387991 +2804183 2824881 20699 1975529.2171 1976565.784 -24.738 -3.3638 92.5603 run17.mat -1 -1 388 1388152 1398502 +2825187 2845865 20679 1976580.9637 1977615.7219 -26.3862 -3.3638 92.667 run17.mat -1 -1 388 1398655 1408994 +2846172 2866863 20692 1977631.075 1978664.4622 -28.0336 -3.3638 92.5566 run17.mat -1 -1 388 1409148 1419494 +2867167 2887841 20675 1978679.4347 1979712.9732 -29.6849 -3.3644 92.6915 run17.mat -1 -1 388 1419646 1429983 +2888149 2889879 1731 1979728.4415 1979815.0623 -31.3388 -3.3634 92.969 run17.mat -1 -1 388 1430137 1431002 +2974009 2992120 18112 1984021.8968 1984926.8276 -31.3362 -3.364 93.0882 run17.mat -1 -1 389 1473069 1482125 +2992427 3013122 20696 1984942.1218 1985978.4683 -32.9889 -3.3639 92.5751 run17.mat -1 -1 389 1482278 1492626 +3013433 3034102 20670 1985994.2755 1987024.3856 -34.6335 -3.3644 92.6112 run17.mat -1 -1 389 1492782 1503117 +3034415 3055103 20689 1987040.2281 1988076.0242 -36.2907 -3.3643 92.6464 run17.mat -1 -1 389 1503273 1513618 +3055408 3069798 14391 1988091.4003 1988812.6928 -37.935 -3.3637 92.6933 run17.mat -1 -1 389 1513770 1520966 +3154117 3159547 5431 1993025.6317 1993298.7102 -37.9318 -3.3641 94.3635 run17.mat -1 -1 390 1563127 1565842 +3159862 3180560 20699 1993314.3414 1994350.3896 -39.5869 -3.364 92.4056 run17.mat -1 -1 390 1565999 1576349 +3180870 3201541 20672 1994365.9552 1995398.193 -41.2349 -3.3651 92.6475 run17.mat -1 -1 390 1576504 1586840 +3201848 3222541 20694 1995413.4261 1996448.6282 -42.8788 -3.3647 92.6256 run17.mat -1 -1 390 1586994 1597341 +3222848 3243524 20677 1996463.9846 1997498.0268 -44.5348 -3.365 92.6996 run17.mat -1 -1 390 1597494 1607832 +3243831 3249878 6048 1997513.3517 1997815.7749 -46.1803 -3.365 92.7429 run17.mat -1 -1 390 1607986 1611009 +3333990 3347822 13833 2002019.7695 2002713.2287 -46.1795 -3.3643 93.1639 run17.mat -1 -1 391 1653067 1659983 +3348148 3368824 20677 2002729.601 2003763.749 -47.8279 -3.3639 92.5208 run17.mat -1 -1 391 1660146 1670485 +3369131 3389823 20693 2003779.0434 2004811.7135 -49.477 -3.3635 92.6162 run17.mat -1 -1 391 1670638 1680985 +3390131 3410822 20692 2004827.3029 2005861.5324 -51.1301 -3.364 92.5434 run17.mat -1 -1 391 1681139 1691485 +3411131 3429818 18688 2005877.1724 2006811.5546 -52.7757 -3.3645 92.7585 run17.mat -1 -1 391 1691640 1700983 +3513927 3514981 1055 2011016.9572 2011069.8911 -52.7835 -3.3612 99.2512 run17.mat -1 -1 392 1743040 1743567 +3515303 3535947 20645 2011086.0625 2012120.1969 -54.4223 -3.3641 92.5532 run17.mat -1 -1 392 1743728 1754050 +3536265 3556964 20700 2012136.1032 2013169.7171 -56.0739 -3.3639 92.5576 run17.mat -1 -1 392 1754210 1764559 +3557270 3577944 20675 2013185.1436 2014218.9552 -57.7254 -3.3645 92.5829 run17.mat -1 -1 392 1764712 1775050 +3578250 3598945 20696 2014234.138 2015267.951 -59.3762 -3.3647 92.6386 run17.mat -1 -1 392 1775203 1785551 +3599252 3609717 10466 2015283.2431 2015808.501 -61.0238 -3.3654 92.7872 run17.mat -1 -1 392 1785704 1790937 +3693933 3703202 9270 2020017.7015 2020481.2958 -61.0268 -3.364 93.1385 run17.mat -1 -1 393 1833047 1837682 +3703508 3724222 20715 2020496.5989 2021531.6624 -62.6738 -3.3644 92.5327 run17.mat -1 -1 393 1837835 1848192 +3724530 3745204 20675 2021547.1276 2022582.2545 -64.3241 -3.3642 92.5977 run17.mat -1 -1 393 1848346 1858683 +3745514 3766205 20692 2022597.8233 2023632.2347 -65.9744 -3.3641 92.5471 run17.mat -1 -1 393 1858838 1869184 +3766512 3787183 20672 2023647.719 2024681.4356 -67.6267 -3.364 92.6485 run17.mat -1 -1 393 1869338 1879674 +3787488 3789756 2269 2024696.6886 2024809.6769 -69.2698 -3.3646 92.5337 run17.mat -1 -1 393 1879826 1880960 +3873838 3891345 17508 2029011.4273 2029889.3716 -69.2717 -3.3658 93.101 run17.mat -1 -1 394 1923003 1931757 +3891673 3912346 20674 2029905.5825 2030938.0137 -70.9198 -3.3643 92.5862 run17.mat -1 -1 394 1931921 1942258 +3912653 3933346 20694 2030953.4277 2031986.9125 -72.5696 -3.3648 92.6296 run17.mat -1 -1 394 1942411 1952759 +3933653 3954329 20677 2032001.9609 2033037.9597 -74.2188 -3.364 92.6272 run17.mat -1 -1 394 1952912 1963250 +3954635 3969657 15023 2033053.2662 2033806.142 -75.8675 -3.3648 92.6999 run17.mat -1 -1 394 1963403 1970915 +4053759 4058447 4689 2038007.8529 2038245.0815 -75.8696 -3.3665 93.9911 run17.mat -1 -1 395 2012968 2015312 +4058767 4079449 20683 2038261.1537 2039296.6164 -77.5144 -3.3645 92.5147 run17.mat -1 -1 395 2015472 2025813 +4079755 4100448 20694 2039311.9225 2040344.9358 -79.1702 -3.3652 92.6441 run17.mat -1 -1 395 2025966 2036313 +4100753 4121446 20694 2040360.3765 2041394.2658 -80.8158 -3.3642 92.4874 run17.mat -1 -1 395 2036466 2046812 +4121755 4142428 20674 2041409.9714 2042443.6821 -82.4634 -3.3647 92.6263 run17.mat -1 -1 395 2046967 2057304 +4142736 4149555 6820 2042459.024 2042800.3106 -82.4622 -1.6808 92.7678 run17.mat -1 -1 395 2057458 2060868 +4233888 4246910 13023 2047014.7538 2047667.3144 -82.4655 -1.6811 93.4943 run17.mat -1 -1 396 2103036 2109547 +4247219 4267912 20694 2047682.7092 2048719.2509 -80.8158 -1.6808 92.4839 run17.mat -1 -1 396 2109702 2120049 +4268230 4288908 20679 2048735.2215 2049768.4705 -79.1667 -1.6806 92.6373 run17.mat -1 -1 396 2120208 2130547 +4289213 4309887 20675 2049783.786 2050817.9282 -77.5167 -1.6808 92.5907 run17.mat -1 -1 396 2130700 2141038 +4310195 4329675 19481 2050833.1478 2051806.6239 -75.8694 -1.6807 92.7919 run17.mat -1 -1 396 2141192 2150932 +4413769 4414160 392 2056012.9103 2056032.1586 -75.8789 -1.6836 102.9059 run17.mat -1 -1 397 2192979 2193170 +4414482 4435128 20647 2056048.0102 2057077.9803 -74.2217 -1.6803 92.7323 run17.mat -1 -1 397 2193337 2203660 +4435435 4456127 20693 2057093.2705 2058128.0343 -72.5748 -1.681 92.6164 run17.mat -1 -1 397 2203814 2214161 +4456436 4477125 20690 2058143.4261 2059179.0857 -70.922 -1.6806 92.5677 run17.mat -1 -1 397 2214315 2224660 +4477431 4498127 20697 2059194.5122 2060229.852 -69.2731 -1.6805 92.5883 run17.mat -1 -1 397 2224813 2235162 +4498434 4509576 11143 2060245.3289 2060801.8025 -67.6241 -1.681 92.7674 run17.mat -1 -1 397 2235315 2240886 +4593529 4602276 8748 2065000.3617 2065436.5656 -67.625 -1.6803 93.7092 run17.mat -1 -1 398 2282864 2287238 +4602594 4623289 20696 2065452.533 2066488.6967 -65.9757 -1.681 92.547 run17.mat -1 -1 398 2287397 2297745 +4623596 4644267 20672 2066504.0498 2067535.9063 -64.324 -1.6804 92.5971 run17.mat -1 -1 398 2297898 2308235 +4644574 4665269 20696 2067551.2593 2068586.5863 -62.6721 -1.6807 92.5729 run17.mat -1 -1 398 2308388 2318736 +4665575 4686228 20654 2068601.9481 2069634.4222 -61.0243 -1.6809 92.6657 run17.mat -1 -1 398 2318889 2329216 +4686535 4689415 2881 2069649.6484 2069793.1208 -59.3715 -1.6823 92.3956 run17.mat -1 -1 398 2329369 2330810 +4773711 4790571 16861 2074007.6612 2074852.6641 -59.3756 -1.6812 92.8366 run17.mat -1 -1 399 2372959 2381390 +4790881 4811568 20688 2074867.9912 2075900.8049 -57.7243 -1.6805 92.617 run17.mat -1 -1 399 2381545 2391889 +4811874 4832549 20676 2075915.9865 2076951.289 -56.0747 -1.681 92.5549 run17.mat -1 -1 399 2392042 2402380 +4832856 4853550 20695 2076966.6421 2078001.6305 -54.4216 -1.6799 92.6209 run17.mat -1 -1 399 2402533 2412880 +4853858 4869475 15618 2078016.9727 2078796.4676 -52.7775 -1.6808 92.7844 run17.mat -1 -1 399 2413035 2420843 +4953558 4957757 4200 2083001.3972 2083208.9483 -52.7789 -1.6813 94.4239 run17.mat -1 -1 400 2462887 2464986 +4958079 4978768 20690 2083224.8504 2084260.2263 -51.1275 -1.6795 92.5228 run17.mat -1 -1 400 2465147 2475492 +4979075 4999749 20675 2084275.6413 2085308.7217 -49.4768 -1.6806 92.6532 run17.mat -1 -1 400 2475646 2485983 +5000057 5020749 20693 2085324.1879 2086357.7695 -47.828 -1.6804 92.6285 run17.mat -1 -1 400 2486137 2496484 +5021056 5041729 20674 2086373.1227 2087409.4077 -46.1784 -1.6809 92.6348 run17.mat -1 -1 400 2496638 2506974 +5042037 5049355 7319 2087424.7509 2087792.4073 -44.526 -1.6796 92.8841 run17.mat -1 -1 400 2507128 2510788 +5133685 5146056 12372 2092007.9512 2092625.1609 -44.5376 -1.6807 93.1186 run17.mat -1 -1 401 2552954 2559140 +5146370 5167068 20699 2092640.9274 2093676.9076 -42.882 -1.6809 92.5557 run17.mat -1 -1 401 2559297 2569647 +5167375 5188050 20676 2093692.3866 2094726.7264 -41.2343 -1.6804 92.559 run17.mat -1 -1 401 2569800 2580138 +5188357 5209049 20693 2094742.2033 2095775.3461 -39.5834 -1.6808 92.554 run17.mat -1 -1 401 2580292 2590638 +5209358 5229455 20098 2095790.927 2096794.9183 -37.9373 -1.6805 92.801 run17.mat -1 -1 401 2590792 2600842 +5313578 5334147 20570 2101002.9498 2102030.6553 -36.2886 -1.6804 92.8442 run17.mat -1 -1 402 2642905 2653190 +5334454 5355148 20695 2102046.0083 2103082.2801 -34.6348 -1.681 92.5502 run17.mat -1 -1 402 2653343 2663691 +5355456 5376131 20676 2103097.7453 2104128.9056 -32.9858 -1.6816 92.5746 run17.mat -1 -1 402 2663845 2674183 +5376440 5397130 20691 2104144.4211 2105179.3634 -31.3371 -1.6804 92.6119 run17.mat -1 -1 402 2674337 2684682 +5397439 5409314 11876 2105194.8798 2105787.5572 -29.6882 -1.6805 92.788 run17.mat -1 -1 402 2684837 2690775 +5493446 5501396 7951 2109997.661 2110391.9684 -29.6873 -1.6804 93.4704 run17.mat -1 -1 403 2732842 2736818 +5501716 5522390 20675 2110408.0351 2111440.8768 -28.0352 -1.6809 92.4798 run17.mat -1 -1 403 2736978 2747315 +5522697 5543391 20695 2111456.108 2112491.8349 -26.3848 -1.6806 92.6054 run17.mat -1 -1 403 2747469 2757816 +5543697 5564389 20693 2112507.0508 2113541.8577 -24.7385 -1.681 92.5031 run17.mat -1 -1 403 2757969 2768316 +5564696 5585369 20674 2113557.2108 2114591.1837 -23.0876 -1.6809 92.6338 run17.mat -1 -1 403 2768469 2778806 +5585676 5589333 3658 2114606.7225 2114791.3652 -21.447 -1.6821 92.6971 run17.mat -1 -1 403 2778960 2780788 +5673470 5689665 16196 2118999.2805 2119804.743 -21.4383 -1.6808 93.1072 run17.mat -1 -1 404 2822858 2830956 +5689982 5710670 20689 2119820.7273 2120857.8908 -19.7866 -1.6801 92.6201 run17.mat -1 -1 404 2831115 2841460 +5710977 5731651 20675 2120873.2469 2121905.8343 -18.1412 -1.6806 92.6282 run17.mat -1 -1 404 2841613 2851950 +5731956 5752634 20679 2121921.1478 2122955.2403 -16.492 -1.6808 92.6632 run17.mat -1 -1 404 2852103 2862442 +5752950 5769233 16284 2122971.1689 2123784.1912 -14.8471 -1.6811 92.6807 run17.mat -1 -1 404 2862600 2870742 +5853544 5856944 3401 2127999.4772 2128170.1223 -14.8412 -1.6799 94.6347 run17.mat -1 -1 405 2912900 2914600 +5857257 5877951 20695 2128185.8355 2129221.7726 -13.1973 -1.6814 92.4776 run17.mat -1 -1 405 2914756 2925103 +5878258 5898932 20675 2129237.2444 2130270.4639 -11.5444 -1.6806 92.6373 run17.mat -1 -1 405 2925257 2935594 +5899240 5919930 20691 2130285.9322 2131319.613 -9.8964 -1.6811 92.5564 run17.mat -1 -1 405 2935748 2946094 +5920236 5940913 20678 2131334.9161 2132368.5716 -8.2524 -1.6807 92.6552 run17.mat -1 -1 405 2946247 2956586 +5941222 5949313 8092 2132383.9615 2132788.4824 -6.5922 -1.6799 92.8135 run17.mat -1 -1 405 2956741 2960786 +6033607 6045376 11770 2137004.8853 2137592.8089 -6.5936 -1.6803 93.5193 run17.mat -1 -1 406 3002935 3008820 +6045690 6066390 20701 2137608.5712 2138642.7688 -4.9458 -1.6814 92.5025 run17.mat -1 -1 406 3008977 3019327 +6066700 6087373 20674 2138658.0903 2139693.0472 -3.2969 -1.681 92.6337 run17.mat -1 -1 406 3019482 3029819 +6087682 6108372 20691 2139708.6872 2140742.0415 -1.648 -1.6807 92.5961 run17.mat -1 -1 406 3029974 3040319 +6108680 6127673 18994 2140757.4018 2141706.8753 -0.00065466 -1.6799 92.7237 run17.mat -1 -1 406 3040473 3049970 +6128000 6129334 1335 2141723.102 2141789.4026 0.023081 -1.6801 93.312 run17.mat -1 -1 406 3050133 3050801 +6213520 6233599 20080 2145999.935 2147003.1831 1.6475 -1.6811 92.9943 run17.mat -1 -1 407 3092896 3102935 +6233916 6244828 10913 2147019.0392 2147564.7568 3.3019 -1.6796 92.4425 run17.mat -1 -1 407 3103094 3108550 +6245078 6254597 9520 2147577.2616 2148051.3937 3.2962 -1.6811 92.5803 run17.mat -1 -1 407 3108675 3113435 +6254901 6275576 20676 2148066.629 2149103.0597 4.9469 -1.6804 92.611 run17.mat -1 -1 407 3113587 3123925 +6275882 6296575 20694 2149118.4862 2150152.783 6.5922 -1.6807 92.5725 run17.mat -1 -1 407 3124078 3134425 +6296881 6309272 12392 2150168.0889 2150787.5263 8.2469 -1.6804 92.8009 run17.mat -1 -1 407 3134578 3140774 +6393484 6400805 7322 2154996.994 2155363.768 8.2463 -1.6801 93.4858 run17.mat -1 -1 408 3182881 3186542 +6401125 6421795 20671 2155379.7741 2156413.8524 9.8916 -1.6807 92.5678 run17.mat -1 -1 408 3186702 3197038 +6422100 6442799 20700 2156428.9843 2157464.1666 11.5417 -1.681 92.5627 run17.mat -1 -1 408 3197190 3207540 +6443107 6463795 20689 2157479.6939 2158513.5745 13.1864 -1.6809 92.6451 run17.mat -1 -1 408 3207694 3218038 +6464101 6484777 20677 2158528.7561 2159560.7834 14.8414 -1.6806 92.7082 run17.mat -1 -1 408 3218191 3228530 +6485082 6489313 4232 2159575.7864 2159788.9013 16.4909 -1.6814 92.9141 run17.mat -1 -1 408 3228683 3230798 +6573606 6589085 15480 2164002.1294 2164777.4771 16.4882 -1.6815 93.0492 run17.mat -1 -1 409 3272946 3280686 +6589399 6610075 20677 2164792.9229 2165828.044 18.136 -1.6809 92.5411 run17.mat -1 -1 409 3280843 3291182 +6610383 6631076 20694 2165843.447 2166876.3531 19.7851 -1.6804 92.6308 run17.mat -1 -1 409 3291336 3301683 +6631386 6652058 20673 2166891.8595 2167925.322 21.4357 -1.6813 92.5987 run17.mat -1 -1 409 3301838 3312174 +6652364 6669372 17009 2167940.5066 2168793.9948 23.0885 -1.6811 92.7657 run17.mat -1 -1 409 3312327 3320831 +6753517 6756305 2789 2172998.2834 2173136.6045 23.094 -1.6795 96.2224 run17.mat -1 -1 410 3362906 3364300 +6756620 6777313 20694 2173152.2777 2174188.4647 24.7377 -1.6813 92.5853 run17.mat -1 -1 410 3364457 3374804 +6777621 6798296 20676 2174203.9952 2175238.9917 26.3867 -1.6801 92.6584 run17.mat -1 -1 410 3374958 3385296 +6798603 6819297 20695 2175254.2229 2176288.8399 28.0374 -1.6803 92.6122 run17.mat -1 -1 410 3385450 3395797 +6819602 6840276 20675 2176304.219 2177336.5244 29.6887 -1.6802 92.594 run17.mat -1 -1 410 3395949 3406287 +6840585 6849251 8667 2177352.1053 2177787.9744 31.3336 -1.6811 92.7603 run17.mat -1 -1 410 3406441 3410775 +6933364 6944526 11163 2181993.1729 2182550.972 31.3406 -1.6804 93.3747 run17.mat -1 -1 411 3452833 3458415 +6944841 6965520 20680 2182566.6001 2183599.8684 32.9835 -1.6806 92.6126 run17.mat -1 -1 411 3458572 3468911 +6965830 6986518 20689 2183615.3744 2184649.7858 34.635 -1.6806 92.6226 run17.mat -1 -1 411 3469066 3479411 +6986822 7007515 20694 2184665.1115 2185700.0095 36.2861 -1.6809 92.5521 run17.mat -1 -1 411 3479563 3489911 +7007821 7028495 20675 2185715.1911 2186748.8189 37.9336 -1.6806 92.7291 run17.mat -1 -1 411 3490064 3500401 +7028803 7029151 349 2186764.3493 2186781.8967 39.5681 -1.6831 92.8687 run17.mat -1 -1 411 3500555 3500729 +7113457 7132837 19381 2190997.7048 2191964.9465 39.581 -1.6808 92.8324 run17.mat -1 -1 412 3542884 3552574 +7133146 7153834 20689 2191980.3995 2193016.3719 41.23 -1.6803 92.5975 run17.mat -1 -1 412 3552729 3563073 +7154143 7174836 20694 2193031.9528 2194067.0366 42.8772 -1.6806 92.6574 run17.mat -1 -1 412 3563227 3573574 +7175143 7195816 20674 2194082.1568 2195115.7274 44.527 -1.6807 92.6536 run17.mat -1 -1 412 3573728 3584065 +7196123 7209232 13110 2195131.0806 2195786.1775 46.179 -1.6803 92.8333 run17.mat -1 -1 412 3584219 3590773 +7293307 7299894 6588 2199990.2974 2200317.911 46.1781 -1.6805 93.4138 run17.mat -1 -1 413 3632813 3636106 +7300205 7320895 20691 2200333.4643 2201370.2222 47.8256 -1.6805 92.6328 run17.mat -1 -1 413 3636262 3646607 +7321200 7341896 20697 2201385.4751 2202418.564 49.4728 -1.6802 92.6341 run17.mat -1 -1 413 3646760 3657108 +7342204 7362889 20686 2202433.9704 2203468.4391 51.1251 -1.6813 92.6159 run17.mat -1 -1 413 3657262 3667605 +7363200 7383856 20657 2203483.9921 2204516.9843 52.7732 -1.6809 92.6955 run17.mat -1 -1 413 3667761 3678089 +7384163 7389091 4929 2204532.3736 2204777.9157 54.4269 -1.6802 92.7589 run17.mat -1 -1 413 3678242 3680707 +7473118 7487977 14860 2208980.3884 2209722.0488 54.4271 -1.6815 93.0805 run17.mat -1 -1 414 3722722 3730152 +7488290 7508975 20686 2209737.5777 2210773.058 56.0738 -1.6812 92.6122 run17.mat -1 -1 414 3730309 3740651 +7509283 7529978 20696 2210788.3418 2211823.2294 57.727 -1.6807 92.6458 run17.mat -1 -1 414 3740805 3751153 +7530285 7550958 20674 2211838.6478 2212874.055 59.3749 -1.6808 92.5934 run17.mat -1 -1 414 3751307 3761644 +7551265 7568950 17686 2212889.2862 2213771.8982 61.0257 -1.6803 92.7227 run17.mat -1 -1 414 3761797 3770640 +7653244 7655281 2038 2217986.4915 2218087.1571 61.0269 -1.6803 95.8059 run17.mat -1 -1 415 3812789 3813808 +7655601 7676279 20679 2218103.2894 2219138.6767 62.6748 -1.6802 92.5244 run17.mat -1 -1 415 3813968 3824307 +7676587 7697264 20678 2219153.9575 2220188.6674 64.3197 -1.6809 92.5819 run17.mat -1 -1 415 3824461 3834800 +7697577 7718277 20701 2220204.3204 2221238.4545 65.9742 -1.6807 92.5711 run17.mat -1 -1 415 3834957 3845307 +7718585 7739258 20674 2221253.7353 2222286.9619 67.6221 -1.6799 92.6192 run17.mat -1 -1 415 3845461 3855798 +7739564 7749031 9468 2222302.2714 2222777.0081 69.2699 -1.68 92.7759 run17.mat -1 -1 415 3855951 3860685 +7833070 7843431 10362 2226979.7251 2227496.0199 69.2671 -1.6806 93.5986 run17.mat -1 -1 416 3902706 3907928 +7843745 7864442 20698 2227511.9928 2228546.2031 70.9128 -1.6811 92.467 run17.mat -1 -1 416 3908044 3918393 +7864749 7885421 20673 2228561.68 2229596.0412 72.5669 -1.6807 92.6558 run17.mat -1 -1 416 3918546 3928883 +7885729 7906420 20692 2229611.4471 2230647.0887 74.215 -1.6806 92.617 run17.mat -1 -1 416 3929037 3939383 +7906728 7927382 20655 2230662.3695 2231695.6646 75.8636 -1.6807 92.8048 run17.mat -1 -1 416 3939537 3949864 +7927687 7928950 1264 2231710.9175 2231774.0796 77.5237 -1.677 92.8612 run17.mat -1 -1 416 3950017 3950648 +8012975 8031522 18548 2235974.0818 2236900.95 77.5131 -1.6816 92.9124 run17.mat -1 -1 417 3992663 4001936 +8031837 8052520 20684 2236916.833 2237950.7122 79.1654 -1.6809 92.5442 run17.mat -1 -1 417 4002094 4012436 +8052827 8073503 20677 2237965.9434 2238999.8847 80.8161 -1.6803 92.5419 run17.mat -1 -1 417 4012589 4022928 +8073811 8094157 20347 2239015.1655 2240031.4732 82.4651 -1.6807 92.631 run17.mat -1 -1 417 4023082 4033255 +289287 309718 20432 -112661.9677 -111648.3241 82.4623 -0.0015348 92.8991 run18.mat -1 -1 419 1 1 +310026 330699 20674 -111633.0433 -110607.3933 80.8147 -0.0011341 92.5808 run18.mat -1 -1 419 1 1 +331005 351709 20705 -110592.2117 -109565.0238 79.1647 -0.0010107 92.6061 run18.mat -1 -1 419 1 1 +352025 372701 20677 -109549.3461 -108523.5473 77.5135 -9.4109e-05 92.5699 run18.mat -1 -1 419 1 1 +373007 385089 12083 -108508.3657 -107908.9413 75.8675 -0.0013673 92.7563 run18.mat -1 -1 419 1 1 +469271 477002 7732 -103732.4181 -103348.8599 75.8659 -0.00022891 94.0095 run18.mat -1 -1 420 1 1 +477311 498023 20713 -103333.5295 -102305.9446 74.2182 -5.1353e-05 92.5104 run18.mat -1 -1 420 1 1 +498331 519022 20692 -102290.6638 -101264.1209 72.5745 -0.00085104 92.6477 run18.mat -1 -1 420 1 1 +519329 540008 20680 -101248.8897 -100222.9421 70.9178 -0.00076281 92.568 run18.mat -1 -1 420 1 1 +540320 560982 20663 -100207.4628 -99182.3586 69.2713 -0.001095 92.6641 run18.mat -1 -1 420 1 1 +561292 565169 3878 -99166.9786 -98974.6289 67.6233 -0.0013367 93.0447 run18.mat -1 -1 420 1 1 +649433 665341 15909 -94794.0375 -94004.7936 67.6214 -0.00082621 93.1297 run18.mat -1 -1 421 1 1 +665673 686338 20666 -93988.3221 -92963.0691 65.9725 -0.0011874 92.5572 run18.mat -1 -1 421 1 1 +686649 707323 20675 -92947.6394 -91921.9399 64.3189 -0.0008411 92.6552 run18.mat -1 -1 421 1 1 +707631 728330 20700 -91906.6591 -90879.7192 62.6735 -0.0014367 92.589 run18.mat -1 -1 421 1 1 +728640 745268 16629 -90864.3392 -90039.3739 61.0212 -0.0010403 92.7498 run18.mat -1 -1 421 1 1 +829459 832543 3085 -85862.4042 -85709.3977 61.0157 -0.0017374 95.388 run18.mat -1 -1 422 1 1 +832850 853562 20713 -85694.1665 -84666.5817 59.3707 -0.00052073 92.5067 run18.mat -1 -1 422 1 1 +853870 874542 20673 -84651.3009 -83625.7005 57.7233 -0.001169 92.6505 run18.mat -1 -1 422 1 1 +874849 895543 20695 -83610.4693 -82583.7775 56.0688 -0.00082002 92.5456 run18.mat -1 -1 422 1 1 +895851 916523 20673 -82568.4967 -81542.8964 54.4217 -0.0012898 92.6445 run18.mat -1 -1 422 1 1 +916830 925267 8438 -81527.6652 -81109.0802 52.7749 -0.0016808 92.7624 run18.mat -1 -1 422 1 1 +1009506 1020781 11276 -76929.7291 -76370.3423 52.772 -0.0014184 93.3139 run18.mat -1 -1 423 1 1 +1021106 1041803 20698 -76354.2181 -75327.3775 51.1248 -0.00058121 92.5976 run18.mat -1 -1 423 1 1 +1042111 1062782 20672 -75312.0966 -74286.5459 49.4768 -0.00066842 92.5889 run18.mat -1 -1 423 1 1 +1063092 1083803 20712 -74271.1659 -73243.6307 47.8261 -0.00081205 92.6175 run18.mat -1 -1 423 1 1 +1084110 1104764 20655 -73228.3995 -72203.6922 46.181 0.00013892 92.7903 run18.mat -1 -1 423 1 1 +1105071 1105268 198 -72188.461 -72178.6872 44.521 -0.0037997 91.9094 run18.mat -1 -1 423 1 1 +1189267 1208901 19635 -68011.2433 -67037.1413 44.5306 -0.0008101 93.0701 run18.mat -1 -1 424 1 1 +1209209 1229904 20696 -67021.8605 -65995.1191 42.8796 -0.00079688 92.5817 run18.mat -1 -1 424 1 1 +1230211 1250904 20694 -65979.8879 -64953.2457 41.2332 -0.00033462 92.5675 run18.mat -1 -1 424 1 1 +1251210 1271884 20675 -64938.0641 -63912.3646 39.5826 -0.0011728 92.6809 run18.mat -1 -1 424 1 1 +1272192 1285148 12957 -63897.0837 -63254.2975 37.9367 -0.00057263 92.7443 run18.mat -1 -1 424 1 1 +1369433 1376180 6748 -59072.6642 -58737.9252 37.9295 -0.002266 93.6519 run18.mat -1 -1 425 1 1 +1376508 1397201 20694 -58721.6521 -57695.0099 36.2867 -0.001582 92.5853 run18.mat -1 -1 425 1 1 +1397511 1418184 20674 -57679.6299 -56653.98 34.6326 -0.0011072 92.5947 run18.mat -1 -1 425 1 1 +1418488 1439204 20717 -56638.8976 -55611.1143 32.9828 -0.00075633 92.6286 run18.mat -1 -1 425 1 1 +1439509 1460164 20656 -55595.9823 -54571.2254 31.336 -0.0011685 92.6321 run18.mat -1 -1 425 1 1 +1460472 1465208 4737 -54555.9446 -54320.9774 29.6913 -0.00084528 92.7827 run18.mat -1 -1 425 1 1 +1549263 1564259 14997 -50150.7551 -49406.7583 29.6892 -0.00060931 92.9843 run18.mat -1 -1 426 1 1 +1564566 1585245 20680 -49391.5271 -48365.5795 28.0309 -0.0014913 92.5811 run18.mat -1 -1 426 1 1 +1585552 1606241 20690 -48350.3483 -47323.9045 26.3847 -0.00092285 92.5914 run18.mat -1 -1 426 1 1 +1606549 1627243 20695 -47308.6237 -46281.9319 24.7354 -0.00065895 92.6071 run18.mat -1 -1 426 1 1 +1627551 1645027 17477 -46266.6511 -45399.614 23.085 -0.0011506 92.6323 run18.mat -1 -1 426 1 1 +1729182 1731461 2280 -41224.4304 -41111.3624 23.0885 -0.001192 95.8782 run18.mat -1 -1 427 1 1 +1731790 1752465 20676 -41095.0397 -40069.2905 21.4343 -0.0017025 92.5053 run18.mat -1 -1 427 1 1 +1752771 1773463 20693 -40054.109 -39027.5164 19.7868 -0.00093474 92.6345 run18.mat -1 -1 427 1 1 +1773771 1794463 20693 -39012.2356 -37985.643 18.1393 -0.0013565 92.6098 run18.mat -1 -1 427 1 1 +1794770 1815444 20675 -37970.4118 -36944.7122 16.4902 -0.0012017 92.6493 run18.mat -1 -1 427 1 1 +1815751 1825026 9276 -36929.481 -36469.3203 14.84 0.00012259 92.7711 run18.mat -1 -1 427 1 1 +1909315 1919742 10428 -32287.4886 -31770.1736 14.8454 -0.0017654 93.2971 run18.mat -1 -1 428 1 1 +1920065 1940765 20701 -31754.1486 -30727.1592 13.1906 -0.00042602 92.5276 run18.mat -1 -1 428 1 1 +1941072 1961746 20675 -30711.928 -29686.2284 11.5443 -0.0011752 92.5675 run18.mat -1 -1 428 1 1 +1962052 1982745 20694 -29671.0468 -28644.4046 9.8953 -0.0010766 92.5713 run18.mat -1 -1 428 1 1 +1983052 2003726 20675 -28629.1734 -27603.4739 8.2458 -0.0011225 92.6708 run18.mat -1 -1 428 1 1 +2004031 2005086 1056 -27588.3419 -27536.0002 6.5962 -0.0025024 92.7945 run18.mat -1 -1 428 1 1 +2089239 2107923 18685 -23360.9159 -22433.9462 6.597 -0.0013092 92.7834 run18.mat -1 -1 429 1 1 +2108246 2128926 20681 -22417.9212 -21391.924 4.9456 -0.0006706 92.61 run18.mat -1 -1 429 1 1 +2129233 2149927 20695 -21376.6928 -20350.001 3.2982 -0.001076 92.5534 run18.mat -1 -1 429 1 1 +2150237 2170907 20671 -20334.621 -19309.1199 1.65 -0.00099199 92.6146 run18.mat -1 -1 429 1 1 +2171213 2185065 13853 -19293.9383 -18606.6987 0.0035851 -0.0012103 92.6838 run18.mat -1 -1 429 1 1 +2269299 2275142 5844 -14427.5958 -14137.7069 -0.0061988 -0.00086945 93.8787 run18.mat -1 -1 430 1 1 +2275465 2296163 20699 -14121.6819 -13094.7916 -1.6483 -0.00083481 92.4626 run18.mat -1 -1 430 1 1 +2296469 2317164 20696 -13079.61 -12052.8686 -3.3022 -0.0014921 92.5972 run18.mat -1 -1 430 1 1 +2317471 2338152 20682 -12037.6374 -11011.5906 -4.9472 -0.0012132 92.5771 run18.mat -1 -1 430 1 1 +2338465 2359144 20680 -10996.0617 -9970.1141 -6.5971 -0.001364 92.6094 run18.mat -1 -1 430 1 1 +2359452 2365065 5614 -9954.8333 -9676.3554 -8.2456 -0.00047649 92.8221 run18.mat -1 -1 430 1 1 +2449381 2463467 14087 -5493.1842 -4794.3352 -8.2509 -0.0011293 92.9182 run18.mat -1 -1 431 1 1 +2463782 2484485 20704 -4778.7071 -3751.5688 -9.8974 -0.00066183 92.5474 run18.mat -1 -1 431 1 1 +2484789 2505484 20696 -3736.4864 -2709.745 -11.5459 -0.001371 92.6309 run18.mat -1 -1 431 1 1 +2505790 2526484 20695 -2694.5634 -1667.8716 -13.1938 -0.00086045 92.6172 run18.mat -1 -1 431 1 1 +2526790 2545166 18377 -1652.69 -741.0012 -14.8489 -0.0013963 92.8065 run18.mat -1 -1 431 1 1 +2629380 2630945 1566 3462.9181 3541.1844 -14.8459 -0.0017097 97.5857 run18.mat -1 -1 432 1 1 +2631263 2651944 20682 3557.0877 4589.6833 -16.4925 -0.0007682 92.5535 run18.mat -1 -1 432 1 1 +2652251 2672928 20678 4604.9145 5640.9096 -18.1406 -0.0011121 92.5693 run18.mat -1 -1 432 1 1 +2673238 2693926 20689 5656.4155 6690.4839 -19.7871 -0.0013518 92.644 run18.mat -1 -1 432 1 1 +2694230 2714907 20678 6705.5693 7739.3293 -21.4353 -0.0011777 92.6541 run18.mat -1 -1 432 1 1 +2715214 2725265 10052 7754.8062 8257.5285 -23.0891 -0.0023126 92.7675 run18.mat -1 -1 432 1 1 +2809504 2819204 9701 12468.6138 12952.0696 -23.087 -0.0010602 93.4107 run18.mat -1 -1 433 1 1 +2819532 2840208 20677 12968.6052 14004.3207 -24.7378 -0.00094498 92.5413 run18.mat -1 -1 433 1 1 +2840514 2861207 20694 14019.5023 15053.3803 -26.3881 -0.0011766 92.5956 run18.mat -1 -1 433 1 1 +2861514 2882209 20696 15068.7335 16105.7799 -28.0331 -0.00047178 92.5108 run18.mat -1 -1 433 1 1 +2882517 2903170 20654 16121.1858 17152.147 -29.6926 -0.001507 92.6675 run18.mat -1 -1 433 1 1 +2903475 2905324 1850 17167.3999 17259.8677 -31.3335 0.00018476 92.7338 run18.mat -1 -1 433 1 1 +2989649 3007506 17858 21476.6084 22367.8646 -31.3417 -0.0011632 92.9827 run18.mat -1 -1 434 1 1 +3007828 3028529 20702 22383.8432 23420.6495 -32.9855 -0.0011757 92.5674 run18.mat -1 -1 434 1 1 +3028837 3049510 20674 23436.1769 24468.3122 -34.6358 -0.0013376 92.6381 run18.mat -1 -1 434 1 1 +3049815 3070489 20675 24483.6914 25517.9655 -36.2878 -0.0010644 92.5888 run18.mat -1 -1 434 1 1 +3070796 3085404 14609 25533.4424 26264.8365 -37.9343 -0.00044571 92.7249 run18.mat -1 -1 434 1 1 +3169872 3175106 5235 30487.0216 30750.2362 -37.9297 -0.00068798 94.2079 run18.mat -1 -1 435 1 1 +3175437 3196129 20693 30766.6581 31799.9808 -39.5852 -0.00060876 92.5741 run18.mat -1 -1 435 1 1 +3196435 3217128 20694 31815.2866 32851.2046 -41.233 -0.00097854 92.6584 run18.mat -1 -1 435 1 1 +3217434 3238091 20658 32866.3862 33898.5687 -42.8791 -0.00073853 92.5455 run18.mat -1 -1 435 1 1 +3238406 3259089 20684 33914.3247 34947.7417 -44.5295 -0.0010094 92.7448 run18.mat -1 -1 435 1 1 +3259397 3265684 6288 34963.1446 35277.5555 -46.1807 -0.00076696 92.7248 run18.mat -1 -1 435 1 1 +3349934 3363366 13433 39489.3251 40162.222 -46.1782 0.00021173 93.0606 run18.mat -1 -1 436 1 1 +3363673 3384369 20697 40177.6989 41212.5116 -47.8264 -0.00081107 92.5986 run18.mat -1 -1 436 1 1 +3384676 3405351 20676 41227.8037 42263.7045 -49.4749 -0.0006494 92.6326 run18.mat -1 -1 436 1 1 +3405666 3426363 20698 42279.4606 43312.2084 -51.1263 -0.00097977 92.6211 run18.mat -1 -1 436 1 1 +3426672 3445743 19072 43327.5388 44281.6964 -52.7775 -0.00081568 92.7438 run18.mat -1 -1 436 1 1 +3530088 3530768 681 48498.2435 48532.2531 -52.7814 0.000413 99.8037 run18.mat -1 -1 437 1 1 +3531073 3551749 20677 48547.6938 49580.6111 -54.4276 -0.0014543 92.7381 run18.mat -1 -1 437 1 1 +3552055 3572726 20672 49595.914 50630.4168 -56.0717 -4.3008e-05 92.6118 run18.mat -1 -1 437 1 1 +3573034 3593726 20693 50645.9441 51681.1605 -57.7265 -0.0010035 92.6745 run18.mat -1 -1 437 1 1 +3594033 3614710 20678 51696.6406 52729.5777 -59.3763 -0.00067715 92.6673 run18.mat -1 -1 437 1 1 +3615017 3625883 10867 52744.9341 53286.4015 -61.0227 -0.0017458 92.812 run18.mat -1 -1 437 1 1 +3710255 3719227 8973 57507.041 57956.56 -61.0244 -0.0012726 93.8404 run18.mat -1 -1 438 1 1 +3719551 3740249 20699 57972.6346 59007.1371 -62.6746 -0.001894 92.5227 run18.mat -1 -1 438 1 1 +3740554 3761230 20677 59022.3901 60054.4443 -64.3234 -0.0011919 92.6486 run18.mat -1 -1 438 1 1 +3761538 3782231 20694 60069.8473 61106.7505 -65.9778 -0.0015122 92.5318 run18.mat -1 -1 438 1 1 +3782539 3803189 20651 61122.0314 62155.0127 -67.6272 -0.0013586 92.682 run18.mat -1 -1 438 1 1 +3803497 3806143 2647 62170.4159 62302.7435 -69.2729 -0.00070481 92.863 run18.mat -1 -1 438 1 1 +3890321 3907449 17129 66511.0294 67369.4545 -69.2732 -0.00074458 92.9587 run18.mat -1 -1 439 1 1 +3907767 3928451 20685 67385.3576 68416.2117 -70.919 -0.0005597 92.5153 run18.mat -1 -1 439 1 1 +3928756 3949454 20699 68431.5878 69468.2192 -72.5729 -0.00095926 92.6372 run18.mat -1 -1 439 1 1 +3949765 3970430 20666 69483.7725 70515.2787 -74.2192 -0.00079075 92.5861 run18.mat -1 -1 439 1 1 +3970745 3986163 15419 70531.0317 71303.5413 -75.8651 -0.0011395 92.6332 run18.mat -1 -1 439 1 1 +4070495 4074788 4294 75518.9046 75734.3987 -75.8585 -0.00068177 94.428 run18.mat -1 -1 440 1 1 +4075119 4095810 20692 75751.0855 76786.1732 -77.5154 -0.0011192 92.481 run18.mat -1 -1 440 1 1 +4096118 4116789 20672 76801.7005 77835.6146 -79.1649 -0.0013011 92.634 run18.mat -1 -1 440 1 1 +4117094 4137790 20697 77850.9907 78884.4975 -80.8165 -0.00075469 92.579 run18.mat -1 -1 440 1 1 +4138097 4158770 20674 78899.9506 79933.6217 -82.4651 -0.00081544 92.6496 run18.mat -1 -1 440 1 1 +4159079 4166282 7204 79948.9551 80309.5755 -82.4685 1.6795 92.6266 run18.mat -1 -1 440 1 1 +4250536 4263110 12575 84520.4697 85151.2929 -82.4615 1.6795 93.267 run18.mat -1 -1 441 1 1 +4263421 4284109 20689 85166.8459 86202.4478 -80.8164 1.678 92.5134 run18.mat -1 -1 441 1 1 +4284416 4305105 20690 86217.682 87251.2424 -79.1664 1.6794 92.6016 run18.mat -1 -1 441 1 1 +4305414 4326110 20697 87266.8201 88299.1959 -77.5137 1.6784 92.6096 run18.mat -1 -1 441 1 1 +4326414 4346362 19949 88314.4023 89314.0519 -75.8691 1.6789 92.749 run18.mat -1 -1 441 1 1 +4430775 4451349 20575 93533.4167 94561.7696 -74.223 1.6782 92.7982 run18.mat -1 -1 442 1 1 +4451660 4472351 20692 94577.3226 95613.3885 -72.5723 1.6786 92.4913 run18.mat -1 -1 442 1 1 +4472659 4493349 20691 95628.9189 96662.8345 -70.921 1.6784 92.5536 run18.mat -1 -1 442 1 1 +4493659 4514334 20676 96678.2175 97709.9008 -69.2724 1.6777 92.5768 run18.mat -1 -1 442 1 1 +4514638 4526401 11764 97725.1029 98317.4182 -67.6257 1.6782 92.8684 run18.mat -1 -1 442 1 1 +4610827 4618780 7954 102538.2038 102932.7761 -67.6188 1.6793 93.5707 run18.mat -1 -1 443 1 1 +4619100 4639787 20688 102948.6523 103987.0032 -65.9748 1.6786 92.5195 run18.mat -1 -1 443 1 1 +4640096 4660771 20676 104002.3336 105032.9258 -64.321 1.6788 92.6126 run18.mat -1 -1 443 1 1 +4661079 4681752 20674 105048.4531 106082.6334 -62.675 1.6785 92.5528 run18.mat -1 -1 443 1 1 +4682061 4702742 20682 106098.2111 107132.3239 -61.0262 1.6797 92.6507 run18.mat -1 -1 443 1 1 +4703054 4706622 3569 107147.8063 107326.0727 -59.3682 1.6755 92.9172 run18.mat -1 -1 443 1 1 +4790815 4806999 16185 111536.9216 112345.7845 -59.3729 1.6791 92.9218 run18.mat -1 -1 444 1 1 +4807321 4827997 20677 112361.7599 113393.6713 -57.7289 1.6776 92.5359 run18.mat -1 -1 444 1 1 +4828310 4848991 20682 113409.2033 114443.8925 -56.0721 1.6782 92.6659 run18.mat -1 -1 444 1 1 +4849298 4869993 20696 114459.2454 115494.3453 -54.4259 1.6782 92.6215 run18.mat -1 -1 444 1 1 +4870299 4886622 16324 115509.7749 116325.9396 -52.7743 1.6786 92.7392 run18.mat -1 -1 444 1 1 +4970932 4974315 3384 120543.4371 120712.6929 -52.7748 1.6792 95.0475 run18.mat -1 -1 445 1 1 +4974626 4995332 20707 120728.2508 121762.0242 -51.1277 1.679 92.4549 run18.mat -1 -1 445 1 1 +4995639 5016293 20655 121777.498 122811.3859 -49.476 1.6785 92.5983 run18.mat -1 -1 445 1 1 +5016600 5037318 20719 122826.6201 123862.655 -47.8268 1.6794 92.5729 run18.mat -1 -1 445 1 1 +5037630 5058292 20663 123878.3839 124911.2951 -46.1799 1.6784 92.5897 run18.mat -1 -1 445 1 1 +5058599 5066721 8123 124926.5263 125330.8623 -44.5392 1.6781 92.506 run18.mat -1 -1 445 1 1 +5151192 5162777 11586 129557.7044 130134.3708 -44.535 1.6785 93.206 run18.mat -1 -1 446 1 1 +5163091 5183794 20704 130149.9524 131186.1794 -42.8825 1.6782 92.5272 run18.mat -1 -1 446 1 1 +5184100 5204795 20696 131201.4826 132234.4845 -41.2326 1.6786 92.6405 run18.mat -1 -1 446 1 1 +5205102 5225775 20674 132249.8375 133283.7803 -39.5854 1.679 92.6532 run18.mat -1 -1 446 1 1 +5226081 5246756 20676 133299.0862 134335.0181 -37.9367 1.6792 92.7782 run18.mat -1 -1 446 1 1 +5331286 5351072 19787 138561.2511 139551.273 -36.2848 1.6795 92.8683 run18.mat -1 -1 447 1 1 +5351384 5372075 20692 139566.8795 140599.745 -34.6334 1.6785 92.6217 run18.mat -1 -1 447 1 1 +5372380 5393060 20681 140614.9979 141647.5084 -32.9864 1.6792 92.6309 run18.mat -1 -1 447 1 1 +5393377 5414075 20699 141663.4894 142700.69 -31.3383 1.6787 92.6246 run18.mat -1 -1 447 1 1 +5414381 5427061 12681 142715.8746 143350.4503 -29.6881 1.6789 92.7508 run18.mat -1 -1 447 1 1 +5511451 5518485 7035 147569.4332 147919.2025 -29.6871 1.6779 93.6775 run18.mat -1 -1 448 1 1 +5518800 5539476 20677 147934.9558 148971.3132 -28.035 1.6787 92.4796 run18.mat -1 -1 448 1 1 +5539785 5560493 20709 148986.8286 150022.1814 -26.3884 1.6786 92.5356 run18.mat -1 -1 448 1 1 +5560804 5581477 20674 150037.611 151070.7049 -24.7382 1.6792 92.6035 run18.mat -1 -1 448 1 1 +5581782 5602435 20654 151085.9608 152117.3233 -23.089 1.6788 92.6141 run18.mat -1 -1 448 1 1 +5602745 5607260 4516 152132.7033 152358.1346 -21.4385 1.6767 92.9403 run18.mat -1 -1 448 1 1 +5691546 5706779 15234 156574.6283 157335.2314 -21.4371 1.6783 93.1242 run18.mat -1 -1 449 1 1 +5707087 5727759 20673 157350.5122 158385.3097 -19.7928 1.678 92.5866 run18.mat -1 -1 449 1 1 +5728063 5748758 20696 158400.6354 159435.9988 -18.1413 1.6787 92.6065 run18.mat -1 -1 449 1 1 +5749067 5769758 20692 159451.3536 160484.2606 -16.4968 1.6789 92.5937 run18.mat -1 -1 449 1 1 +5770065 5787320 17256 160499.6136 161360.6122 -14.8475 1.6785 92.7664 run18.mat -1 -1 449 1 1 +5871726 5874190 2465 165581.9488 165704.1953 -14.8505 1.6809 94.855 run18.mat -1 -1 450 1 1 +5874510 5895189 20680 165720.236 166756.357 -13.1954 1.6788 92.5143 run18.mat -1 -1 450 1 1 +5895500 5916177 20678 166771.91 167804.6773 -11.546 1.6794 92.6582 run18.mat -1 -1 450 1 1 +5916484 5937177 20694 167820.1573 168856.4495 -9.8982 1.6798 92.6092 run18.mat -1 -1 450 1 1 +5937485 5958157 20673 168871.7303 169905.9012 -8.2478 1.6789 92.7131 run18.mat -1 -1 450 1 1 +5958466 5967520 9055 169921.482 170372.9754 -6.5974 1.6798 92.736 run18.mat -1 -1 450 1 1 +6052035 6062720 10686 174599.2703 175131.3249 -6.5956 1.6789 93.1527 run18.mat -1 -1 451 1 1 +6063029 6083702 20674 175146.7781 176182.0444 -4.9445 1.6793 92.4395 run18.mat -1 -1 451 1 1 +6084010 6104717 20708 176197.5717 177233.6946 -3.2961 1.6784 92.5732 run18.mat -1 -1 451 1 1 +6105023 6105922 900 177248.9975 177293.709 -1.6537 1.6814 92.9204 run18.mat -1 -1 451 1 1 +6106172 6125701 19530 177306.1147 178281.1518 -1.6483 1.6786 92.5417 run18.mat -1 -1 451 1 1 +6126007 6146657 20651 178296.4547 179328.8182 0.00035069 1.6783 92.7441 run18.mat -1 -1 451 1 1 +6146968 6147819 852 179344.2509 179386.48 1.6533 1.6827 90.7759 run18.mat -1 -1 451 1 1 +6232057 6251061 19005 183599.5618 184549.9954 1.652 1.6786 93.0111 run18.mat -1 -1 452 1 1 +6251382 6272058 20677 184565.9212 185599.5645 3.2955 1.6789 92.5875 run18.mat -1 -1 452 1 1 +6272366 6293041 20676 185615.0887 186649.8801 4.9468 1.6787 92.6635 run18.mat -1 -1 452 1 1 +6293349 6314038 20690 186665.1609 187699.8459 6.5946 1.6789 92.6571 run18.mat -1 -1 452 1 1 +6314347 6327839 13493 187715.4237 188388.3203 8.2502 1.6795 92.7715 run18.mat -1 -1 452 1 1 +6412279 6418532 6254 192612.0062 192924.6874 8.2427 1.677 93.9621 run18.mat -1 -1 453 1 1 +6418846 6439542 20697 192940.5204 193974.7124 9.8933 1.6789 92.4999 run18.mat -1 -1 453 1 1 +6439847 6460538 20692 193989.9687 195023.1544 11.5374 1.678 92.5615 run18.mat -1 -1 453 1 1 +6460846 6481518 20673 195038.4352 196072.0494 13.1904 1.679 92.5383 run18.mat -1 -1 453 1 1 +6481825 6502500 20676 196087.505 197121.7836 14.8388 1.6783 92.6998 run18.mat -1 -1 453 1 1 +6502808 6508099 5292 197137.3109 197403.4327 16.4888 1.6781 92.7478 run18.mat -1 -1 453 1 1 +6592521 6606965 14445 201624.3727 202345.2618 16.4909 1.6784 92.9583 run18.mat -1 -1 454 1 1 +6607276 6627957 20682 202360.9435 203397.0156 18.1351 1.6782 92.4868 run18.mat -1 -1 454 1 1 +6628265 6648960 20696 203412.4185 204444.4792 19.7865 1.6786 92.666 run18.mat -1 -1 454 1 1 +6649267 6669957 20691 204459.9593 205494.2711 21.4375 1.6796 92.546 run18.mat -1 -1 454 1 1 +6670266 6688319 18054 205509.6046 206413.0185 23.0881 1.6784 92.7401 run18.mat -1 -1 454 1 1 +6772781 6774544 1764 210636.8333 210724.3011 23.0901 1.6811 96.7656 run18.mat -1 -1 455 1 1 +6774864 6795535 20672 210740.1772 211774.2897 24.7387 1.6793 92.5981 run18.mat -1 -1 455 1 1 +6795843 6816521 20679 211789.6926 212823.8157 26.3877 1.6791 92.5925 run18.mat -1 -1 455 1 1 +6816830 6837522 20693 212839.3047 213873.8019 28.0344 1.6782 92.6107 run18.mat -1 -1 455 1 1 +6837837 6858516 20680 213889.4331 214924.17 29.6873 1.6791 92.5584 run18.mat -1 -1 455 1 1 +6858823 6868558 9736 214939.5232 215425.5888 31.3447 1.678 92.8112 run18.mat -1 -1 455 1 1 +6952815 6962786 9972 219639.7985 220136.5035 31.3367 1.6796 93.2534 run18.mat -1 -1 456 1 1 +6963112 6983778 20667 220152.9383 221187.8454 32.9873 1.6785 92.5185 run18.mat -1 -1 456 1 1 +6984085 7004781 20697 221203.2018 222236.2643 34.6323 1.6797 92.6304 run18.mat -1 -1 456 1 1 +7005089 7025782 20694 222251.6703 223284.8662 36.2849 1.6792 92.6334 run18.mat -1 -1 456 1 1 +7026091 7046763 20673 223300.1967 224334.898 37.933 1.6787 92.7323 run18.mat -1 -1 456 1 1 +7047068 7048578 1511 224350.1521 224425.6678 39.5805 1.6775 92.5706 run18.mat -1 -1 456 1 1 +7133013 7151284 18272 228648.1246 229560.635 39.5802 1.6788 92.9088 run18.mat -1 -1 457 1 1 +7151594 7172270 20677 229576.0151 230612.8045 41.2274 1.6786 92.4926 run18.mat -1 -1 457 1 1 +7172579 7193263 20685 230628.2605 231662.2346 42.8765 1.6785 92.5963 run18.mat -1 -1 457 1 1 +7193572 7214261 20690 231677.5681 232711.726 44.5253 1.6781 92.5451 run18.mat -1 -1 457 1 1 +7214567 7228817 14251 232727.1525 233438.8641 46.1755 1.6786 92.7339 run18.mat -1 -1 457 1 1 +7313078 7318529 5452 237652.2037 237926.1774 46.1737 1.6799 93.7597 run18.mat -1 -1 458 1 1 +7318842 7339526 20685 237941.7063 238973.583 47.8272 1.6788 92.4661 run18.mat -1 -1 458 1 1 +7339836 7360527 20692 238989.2111 240023.0752 49.4757 1.6784 92.5637 run18.mat -1 -1 458 1 1 +7360835 7381504 20670 240038.4782 241072.8672 51.1263 1.6792 92.6258 run18.mat -1 -1 458 1 1 +7381820 7402507 20688 241088.5449 242123.8772 52.7769 1.6785 92.7458 run18.mat -1 -1 458 1 1 +7402813 7408857 6045 242139.0587 242442.8968 54.4218 1.6784 92.6097 run18.mat -1 -1 458 1 1 +7493228 7506884 13657 246660.8977 247340.4658 54.4226 1.6782 93.103 run18.mat -1 -1 459 1 1 +7507196 7527885 20690 247355.945 248393.1936 56.078 1.6792 92.6059 run18.mat -1 -1 459 1 1 +7528192 7548885 20694 248408.5468 249441.6202 57.7249 1.6793 92.652 run18.mat -1 -1 459 1 1 +7549193 7569884 20692 249457.2669 250493.7596 59.3772 1.6776 92.5864 run18.mat -1 -1 459 1 1 +7570191 7588997 18807 250509.1125 251447.6991 61.0209 1.6789 92.7049 run18.mat -1 -1 459 1 1 +7673318 7674247 930 255662.3005 255708.4002 61.0166 1.6822 97.3887 run18.mat -1 -1 460 1 1 +7674565 7695224 20660 255724.3265 256761.0996 62.6742 1.6783 92.6743 run18.mat -1 -1 460 1 1 +7695532 7716226 20695 256776.3835 257809.9163 64.3193 1.6789 92.5642 run18.mat -1 -1 460 1 1 +7716534 7737207 20674 257825.3193 258860.2864 65.9717 1.6784 92.547 run18.mat -1 -1 460 1 1 +7737518 7758204 20687 258875.9681 259908.7092 67.6168 1.6786 92.6428 run18.mat -1 -1 460 1 1 +7758515 7769117 10603 259924.3909 260453.0954 69.2683 1.6778 92.8199 run18.mat -1 -1 460 1 1 +7853641 7862779 9139 264679.4667 265137.5023 69.2666 1.6777 93.3405 run18.mat -1 -1 461 1 1 +7863096 7883766 20671 265153.2296 266188.3015 70.9146 1.6783 92.4853 run18.mat -1 -1 461 1 1 +7884074 7904766 20693 266203.8941 267239.0979 72.5657 1.678 92.5755 run18.mat -1 -1 461 1 1 +7905075 7925770 20696 267254.8131 268287.6886 74.2158 1.6789 92.5393 run18.mat -1 -1 461 1 1 +7926078 7946747 20670 268302.9694 269335.6103 75.8643 1.6785 92.6956 run18.mat -1 -1 461 1 1 +7947054 7949437 2384 269351.0904 269471.2497 77.5081 1.6798 92.0317 run18.mat -1 -1 461 1 1 +8033756 8051208 17453 273686.7152 274560.231 77.5124 1.6784 93.1185 run18.mat -1 -1 462 1 1 +8051520 8072208 20689 274575.7134 275609.2019 79.1677 1.6787 92.5519 run18.mat -1 -1 462 1 1 +8072515 8093208 20694 275624.6788 276658.8322 80.8172 1.6783 92.5401 run18.mat -1 -1 462 1 1 +8093517 8113849 20333 276674.5267 277690.5005 82.4674 1.6801 92.5436 run18.mat -1 -1 462 1 1 +279775 300296 20522 424764.0092 425790.3293 82.4616 3.3623 93.0379 run19.mat -1 -1 464 195503 205764 +300602 321300 20699 425805.6357 426838.8248 80.8141 3.3611 92.5525 run19.mat -1 -1 464 205917 216267 +321609 342299 20691 426854.2777 427890.4799 79.1677 3.3615 92.5238 run19.mat -1 -1 464 216421 226767 +342611 363316 20706 427906.2089 428939.1881 77.5139 3.3619 92.4737 run19.mat -1 -1 464 226923 237276 +363626 375682 12057 428954.6911 429559.6632 75.8676 3.364 92.4839 run19.mat -1 -1 464 237431 243459 +459996 467659 7664 433772.5813 434157.6826 75.8638 3.3605 93.4646 run19.mat -1 -1 465 285617 289449 +467991 488677 20687 434174.2861 435208.5842 74.2195 3.3619 92.5059 run19.mat -1 -1 465 289615 299959 +488984 509678 20695 435224.0611 436258.2024 72.5704 3.3609 92.5852 run19.mat -1 -1 465 300112 310460 +509983 530676 20694 436273.4583 437310.4093 70.9208 3.3629 92.5524 run19.mat -1 -1 465 310612 320959 +530984 551658 20675 437325.8123 438358.4764 69.2702 3.3614 92.6965 run19.mat -1 -1 465 321113 331451 +551970 555782 3813 438374.2086 438565.3908 67.6234 3.3601 92.4908 run19.mat -1 -1 465 331607 333513 +640092 655997 15906 442779.7255 443573.8392 67.6223 3.3639 93.0351 run19.mat -1 -1 466 375670 383622 +656302 676999 20698 443589.3509 444623.5189 65.9738 3.362 92.4921 run19.mat -1 -1 466 383775 394124 +677304 697999 20696 444638.772 445675.8294 64.3217 3.3629 92.6343 run19.mat -1 -1 466 394277 404625 +698308 718978 20671 445691.2824 446723.641 62.6708 3.3621 92.5418 run19.mat -1 -1 466 404779 415114 +719285 735841 16557 446738.8722 447568.2034 61.0233 3.362 92.7198 run19.mat -1 -1 466 415268 423546 +820335 823597 3263 451791.2965 451955.5121 61.0233 3.3597 95.3911 run19.mat -1 -1 467 465795 467426 +823927 844620 20694 451972.1452 453006.2008 59.3733 3.3623 92.5839 run19.mat -1 -1 467 467591 477938 +844926 865603 20678 453021.3824 454057.1029 57.7206 3.3618 92.6436 run19.mat -1 -1 467 478091 488430 +865911 886599 20689 454072.2724 455106.9927 56.0717 3.3623 92.5608 run19.mat -1 -1 467 488584 498929 +886906 907587 20682 455122.2239 456153.5684 54.422 3.362 92.529 run19.mat -1 -1 467 499082 509423 +907902 916101 8200 456169.4518 456580.8177 52.7729 3.3609 92.7236 run19.mat -1 -1 467 509580 513680 +1000267 1011857 11591 460788.7205 461366.9758 52.775 3.3609 93.1596 run19.mat -1 -1 468 555765 561560 +1012182 1032858 20677 461383.3569 462417.115 51.1266 3.3629 92.5324 run19.mat -1 -1 468 561723 572062 +1033165 1053860 20696 462432.4682 463467.4736 49.4752 3.3617 92.5245 run19.mat -1 -1 468 572215 582563 +1054167 1074839 20673 463482.8265 464518.0329 47.8273 3.3617 92.5039 run19.mat -1 -1 468 582716 593053 +1075145 1095825 20681 464533.2753 465567.7047 46.1779 3.3636 92.7066 run19.mat -1 -1 468 593206 603546 +1180386 1200122 19737 469794.4686 470781.5318 44.5335 3.3613 92.8737 run19.mat -1 -1 469 645828 655697 +1200426 1221122 20697 470796.7348 471831.485 42.8792 3.3628 92.5529 run19.mat -1 -1 469 655849 666198 +1221432 1242141 20710 471847.1131 472882.1058 41.2303 3.3615 92.5748 run19.mat -1 -1 469 666353 676707 +1242446 1263102 20657 472897.3617 473930.7676 39.5839 3.3633 92.6323 run19.mat -1 -1 469 676860 687188 +1263408 1276160 12753 473946.1973 474585.0742 37.9354 3.3617 92.7604 run19.mat -1 -1 469 687341 693717 +1360600 1367580 6981 478805.8849 479153.7877 37.9359 3.3624 93.4138 run19.mat -1 -1 470 735939 739430 +1367912 1388603 20692 479170.5249 480206.6126 36.2847 3.363 92.4978 run19.mat -1 -1 470 739596 749942 +1388909 1409581 20673 480222.0391 481254.3425 34.6314 3.3619 92.5664 run19.mat -1 -1 470 750095 760431 +1409890 1430587 20698 481269.673 482305.7784 32.9857 3.3623 92.649 run19.mat -1 -1 470 760586 770935 +1430901 1451560 20660 482321.4814 483354.2271 31.3335 3.3615 92.599 run19.mat -1 -1 470 771092 781422 +1451868 1456400 4533 483369.7544 483595.3665 29.6843 3.364 92.7094 run19.mat -1 -1 470 781576 783842 +1540628 1555801 15174 487807.4029 488565.1763 29.6812 3.3615 92.9176 run19.mat -1 -1 471 825958 833544 +1556135 1576823 20689 488581.8798 489617.0333 28.0347 3.3624 92.4562 run19.mat -1 -1 471 833711 844056 +1577131 1597823 20693 489632.3141 490668.6834 26.3809 3.3614 92.5698 run19.mat -1 -1 471 844210 854556 +1598128 1618804 20677 490684.0595 491716.0173 24.7358 3.3613 92.4718 run19.mat -1 -1 471 854709 865047 +1619113 1636420 17308 491731.3477 492597.6199 23.0863 3.3609 92.6666 run19.mat -1 -1 471 865202 873855 +1720827 1723342 2516 496817.7207 496943.4949 23.0772 3.3595 96.9757 run19.mat -1 -1 472 916061 917319 +1723645 1744341 20697 496958.6478 497991.9117 21.4362 3.3624 92.5988 run19.mat -1 -1 472 917470 927818 +1744647 1765322 20676 498007.3382 499041.2669 19.7878 3.363 92.6069 run19.mat -1 -1 472 927971 938309 +1765627 1786342 20716 499056.5837 500095.2901 18.1375 3.3628 92.6022 run19.mat -1 -1 472 938462 948820 +1786649 1807324 20676 500110.646 501141.8873 16.4902 3.3635 92.5994 run19.mat -1 -1 472 948973 959311 +1807629 1816699 9071 501157.2634 501610.5301 14.8436 3.3633 92.7679 run19.mat -1 -1 472 959464 963999 +1900931 1911678 10748 505823.2774 506359.5499 14.8434 3.3642 93.4868 run19.mat -1 -1 473 1006117 1011491 +1911985 1932676 20692 506375.0268 507410.1145 13.1931 3.3615 92.5006 run19.mat -1 -1 473 1011644 1021990 +1932990 1953683 20694 507425.9443 508459.5412 11.5423 3.3621 92.636 run19.mat -1 -1 473 1022147 1032494 +1953991 1974665 20675 508474.9444 509509.0089 9.8959 3.3619 92.6274 run19.mat -1 -1 473 1032648 1042985 +1974969 1992946 17978 509524.3376 510425.2589 8.246 3.3626 92.6971 run19.mat -1 -1 473 1043137 1052126 +1993196 1995643 2448 510437.7638 510559.9321 8.2519 3.3578 93.0875 run19.mat -1 -1 473 1052251 1053475 +1995952 1996699 748 510575.2626 510612.3235 6.591 3.3636 93.5459 run19.mat -1 -1 473 1053630 1054003 +2080899 2099964 19066 514821.3323 515774.4441 6.5952 3.3611 92.9225 run19.mat -1 -1 474 1096105 1105637 +2100270 2120970 20701 515789.8737 516825.1525 4.9445 3.362 92.5042 run19.mat -1 -1 474 1105790 1116141 +2121283 2141964 20682 516840.8058 517875.213 3.2948 3.3617 92.5478 run19.mat -1 -1 474 1116298 1126639 +2142268 2162965 20698 517890.4161 518924.4963 1.6495 3.3623 92.6359 run19.mat -1 -1 474 1126791 1137139 +2163273 2176780 13508 518939.9023 519615.5215 -0.0077506 3.3622 92.8211 run19.mat -1 -1 474 1137294 1144047 +2261260 2267465 6206 523836.7042 524149.5193 -0.0034045 3.3629 93.5464 run19.mat -1 -1 475 1186289 1189392 +2267772 2288470 20699 524164.9962 525201.4368 -1.6518 3.3614 92.4902 run19.mat -1 -1 475 1189545 1199895 +2288776 2309466 20691 525216.8633 526249.0921 -3.3002 3.3622 92.6171 run19.mat -1 -1 475 1200048 1210393 +2309774 2330465 20692 526264.3729 527298.9532 -4.9496 3.3622 92.5367 run19.mat -1 -1 475 1210547 1220893 +2330772 2351454 20683 527314.1844 528350.38 -6.5971 3.3625 92.7385 run19.mat -1 -1 475 1221047 1231388 +2351767 2357038 5272 528365.9089 528627.7582 -8.2483 3.3625 92.7281 run19.mat -1 -1 475 1231545 1234180 +2443195 2457763 14569 532936.0928 533664.1685 -8.2484 3.3618 93.0828 run19.mat -1 -1 476 1277261 1284545 +2458090 2478764 20675 533680.5248 534715.867 -9.8956 3.3645 92.5707 run19.mat -1 -1 476 1284708 1295046 +2479069 2499751 20683 534731.002 535766.2292 -11.5441 3.3623 92.5678 run19.mat -1 -1 476 1295198 1305540 +2500061 2520743 20683 535781.7324 536813.5882 -13.1913 3.3618 92.6431 run19.mat -1 -1 476 1305695 1316037 +2521050 2538958 17909 536829.0651 537725.0419 -14.8412 3.3622 92.7769 run19.mat -1 -1 476 1316190 1325144 +2623223 2625043 1821 541936.6833 542028.4542 -14.8302 3.3562 95.7061 run19.mat -1 -1 477 1367279 1368189 +2625369 2646044 20676 542044.8923 543079.3974 -16.4934 3.3615 92.5666 run19.mat -1 -1 477 1368352 1378689 +2646351 2667043 20693 543094.6316 544131.0429 -18.1374 3.3615 92.6365 run19.mat -1 -1 477 1378843 1389190 +2667351 2688044 20694 544146.4494 545179.1848 -19.7897 3.3633 92.5999 run19.mat -1 -1 477 1389344 1399691 +2688353 2709025 20673 545194.5152 546227.1349 -21.4346 3.3619 92.5952 run19.mat -1 -1 477 1399845 1410182 +2709331 2719018 9688 546242.5614 546728.0198 -23.0914 3.3645 92.753 run19.mat -1 -1 477 1410335 1415178 +2803407 2813462 10056 550947.9026 551448.9538 -23.0891 3.3638 93.275 run19.mat -1 -1 478 1457375 1462403 +2813785 2834469 20685 551465.11 552501.1929 -24.7398 3.3627 92.6055 run19.mat -1 -1 478 1462564 1472906 +2834783 2855467 20685 552516.7714 553550.5507 -26.3845 3.3638 92.5859 run19.mat -1 -1 478 1473063 1483406 +2855773 2876464 20692 553565.9772 554600.4963 -28.0363 3.3617 92.6111 run19.mat -1 -1 478 1483559 1493905 +2876772 2897433 20662 554615.9615 555648.1822 -29.6846 3.3617 92.5453 run19.mat -1 -1 478 1494059 1504390 +2897749 2899237 1489 555663.8599 555738.1307 -31.3355 3.3624 92.5177 run19.mat -1 -1 478 1504548 1505292 +2983539 3001882 18344 559956.1678 560871.4327 -31.3387 3.3622 93.0379 run19.mat -1 -1 479 1547444 1556616 +3002210 3022884 20675 560887.709 561921.4148 -32.9877 3.3613 92.6926 run19.mat -1 -1 479 1556780 1567118 +3023191 3043886 20696 561936.646 562973.1537 -34.6354 3.3613 92.568 run19.mat -1 -1 479 1567272 1577620 +3044194 3064868 20675 562988.681 564022.405 -36.2883 3.3618 92.6641 run19.mat -1 -1 479 1577774 1588111 +3065174 3079317 14144 564037.5866 564743.3009 -37.9362 3.3618 92.7632 run19.mat -1 -1 479 1588264 1595335 +3163589 3169223 5635 568955.6674 569238.6263 -37.9361 3.3609 94.0874 run19.mat -1 -1 480 1637474 1640291 +3169560 3190242 20683 569255.6156 570288.2008 -39.5854 3.3626 92.612 run19.mat -1 -1 480 1640459 1650801 +3190551 3211240 20690 570303.7786 571340.7848 -41.2326 3.3641 92.5412 run19.mat -1 -1 480 1650955 1661300 +3211548 3232231 20684 571356.0687 572389.1408 -42.8791 3.3616 92.6431 run19.mat -1 -1 480 1661454 1671796 +3232549 3253203 20655 572405.0469 573437.161 -44.5333 3.3628 92.5867 run19.mat -1 -1 480 1671955 1682283 +3253510 3259357 5848 573452.641 573744.1808 -46.1747 3.3598 92.6958 run19.mat -1 -1 480 1682436 1685360 +3343624 3357523 13900 577958.5675 578652.4869 -46.1779 3.3631 93.1957 run19.mat -1 -1 481 1727495 1734445 +3357847 3378526 20680 578668.6936 579703.863 -47.8281 3.3621 92.5266 run19.mat -1 -1 481 1734607 1744947 +3378843 3399526 20684 579719.5935 580753.734 -49.4756 3.3622 92.5002 run19.mat -1 -1 481 1745105 1755447 +3399833 3420528 20696 580768.9682 581803.4272 -51.1294 3.3624 92.5954 run19.mat -1 -1 481 1755601 1765948 +3420835 3439437 18603 581818.9072 582748.9539 -52.7768 3.3638 92.7126 run19.mat -1 -1 481 1766102 1775403 +3523655 3524846 1192 586960.2982 587019.8711 -52.7785 3.3613 96.1892 run19.mat -1 -1 482 1817514 1818110 +3525163 3545849 20687 587035.7272 588068.3796 -54.4273 3.3623 92.566 run19.mat -1 -1 482 1818269 1828612 +3546158 3566833 20676 588083.7101 589117.8554 -56.0736 3.362 92.6616 run19.mat -1 -1 482 1828766 1839104 +3567140 3587830 20691 589133.3323 590168.6231 -57.7306 3.3628 92.6562 run19.mat -1 -1 482 1839258 1849603 +3588137 3608812 20676 590184.1619 591219.4842 -59.3789 3.3614 92.56 run19.mat -1 -1 482 1849757 1860095 +3609123 3619536 10414 591234.92 591754.6268 -61.0268 3.3623 92.6136 run19.mat -1 -1 482 1860251 1865457 +3703770 3713089 9320 595966.2077 596432.5714 -61.0279 3.3612 93.3466 run19.mat -1 -1 483 1907576 1912236 +3713415 3734110 20696 596448.8776 597484.2494 -62.6758 3.3616 92.5416 run19.mat -1 -1 483 1912399 1922746 +3734415 3755093 20679 597499.2525 598532.3922 -64.3244 3.3621 92.6028 run19.mat -1 -1 483 1922899 1933238 +3755410 3776091 20682 598548.3733 599581.4363 -65.9761 3.3627 92.5437 run19.mat -1 -1 483 1933397 1943738 +3776397 3797068 20672 599596.7395 600632.6406 -67.6223 3.3628 92.7231 run19.mat -1 -1 483 1943891 1954227 +3797376 3799556 2181 600648.0466 600756.2756 -69.2849 3.3625 93.228 run19.mat -1 -1 483 1954381 1955471 +3883786 3901429 17644 604966.9613 605849.5204 -69.2709 3.3635 92.9473 run19.mat -1 -1 484 1997588 2006409 +3901735 3922429 20695 605864.705 606899.3951 -70.9186 3.3625 92.6112 run19.mat -1 -1 484 2006562 2016910 +3922736 3943411 20676 606914.6263 607949.4684 -72.569 3.3627 92.6259 run19.mat -1 -1 484 2017064 2027402 +3943722 3964409 20688 607964.9012 608997.8765 -74.2177 3.3614 92.591 run19.mat -1 -1 484 2027557 2037901 +3964717 3979556 14840 609013.2824 609755.5139 -75.8655 3.3627 92.7614 run19.mat -1 -1 484 2038055 2045475 +4063828 4068709 4882 613969.3036 614213.4475 -75.8753 3.3621 93.9847 run19.mat -1 -1 485 2087612 2090053 +4069033 4089729 20697 614229.7298 615263.5847 -77.5134 3.3623 92.4775 run19.mat -1 -1 485 2090215 2100564 +4090037 4110710 20674 615279.2284 616312.0392 -79.1675 3.3633 92.5496 run19.mat -1 -1 485 2100718 2111055 +4111017 4131713 20697 616327.3952 617363.5451 -80.8148 3.3622 92.5859 run19.mat -1 -1 485 2111208 2121557 +4132019 4152690 20672 617378.9716 618413.052 -82.4663 3.3618 92.6215 run19.mat -1 -1 485 2121710 2132046 +4152998 4159655 6658 618428.3328 618761.1976 -82.4624 5.0453 92.8 run19.mat -1 -1 485 2132200 2135529 +4243911 4256981 13071 622972.9131 623625.4025 -82.4629 5.0476 93.1327 run19.mat -1 -1 486 2177658 2184193 +4257291 4277953 20663 623640.7856 624677.831 -80.8188 5.0462 92.5477 run19.mat -1 -1 486 2184348 2194680 +4278259 4298971 20713 624693.3223 625725.6495 -79.169 5.0463 92.5548 run19.mat -1 -1 486 2194833 2205189 +4299278 4319971 20694 625741.0258 626777.6292 -77.5178 5.0445 92.6094 run19.mat -1 -1 486 2205343 2215690 +4320278 4339676 19399 626792.8634 627763.4041 -75.8686 5.0452 92.5992 run19.mat -1 -1 486 2215843 2225543 +4423915 4424296 382 631973.4897 631992.5437 -75.8785 5.0418 100.4746 run19.mat -1 -1 487 2267664 2267855 +4424616 4445270 20655 632008.547 633043.552 -74.2239 5.047 92.6537 run19.mat -1 -1 487 2268015 2278342 +4445577 4466270 20694 633058.905 634092.2035 -72.5745 5.0459 92.5294 run19.mat -1 -1 487 2278496 2288843 +4466577 4487272 20696 634107.6804 635142.2207 -70.9195 5.0457 92.5416 run19.mat -1 -1 487 2288996 2299344 +4487578 4508252 20675 635157.5239 636189.5525 -69.2727 5.0463 92.6925 run19.mat -1 -1 487 2299497 2309834 +4508558 4519735 11178 636204.8584 636764.2703 -67.6244 5.0433 92.7014 run19.mat -1 -1 487 2309987 2315576 +4603936 4612497 8562 640974.1578 641402.8324 -67.6236 5.0473 93.4514 run19.mat -1 -1 488 2357678 2361965 +4612810 4633507 20698 641418.6118 642454.137 -65.9724 5.0451 92.5611 run19.mat -1 -1 488 2362116 2372465 +4633816 4654493 20678 642469.4704 643503.9617 -64.3214 5.0453 92.6539 run19.mat -1 -1 488 2372619 2382958 +4654804 4675491 20688 643519.6403 644553.8435 -62.67 5.0445 92.5965 run19.mat -1 -1 488 2383114 2393458 +4675796 4696470 20675 644569.0967 645603.2533 -61.0241 5.0466 92.6843 run19.mat -1 -1 488 2393610 2403947 +4696777 4699754 2978 645618.7334 645768.8443 -59.3751 5.0473 92.9493 run19.mat -1 -1 488 2404101 2405589 +4784021 4800798 16778 649979.7778 650819.704 -59.3735 5.0465 92.9903 run19.mat -1 -1 489 2447725 2456114 +4801111 4821794 20684 650835.4172 651869.842 -57.7255 5.0456 92.541 run19.mat -1 -1 489 2456270 2466612 +4822099 4842790 20692 651884.974 652919.9767 -56.0741 5.0446 92.6765 run19.mat -1 -1 489 2466765 2477111 +4843098 4863771 20674 652935.3831 653967.1761 -54.4229 5.0453 92.5977 run19.mat -1 -1 489 2477265 2487602 +4864081 4879814 15734 653982.9421 654768.366 -52.7773 5.0453 92.6306 run19.mat -1 -1 489 2487757 2495623 +4964136 4968219 4084 658986.5018 659191.6606 -52.7894 5.0433 95.3786 run19.mat -1 -1 490 2537786 2539828 +4968537 4989232 20696 659207.4407 660240.3003 -51.1264 5.0473 92.4453 run19.mat -1 -1 490 2539987 2550335 +4989538 5010212 20675 660255.4818 661290.2555 -49.478 5.0463 92.5806 run19.mat -1 -1 490 2550488 2560825 +5010520 5031213 20694 661305.6619 662339.0798 -47.8272 5.0463 92.5501 run19.mat -1 -1 490 2560979 2571326 +5031518 5052186 20669 662354.2117 663390.4984 -46.1825 5.0446 92.6398 run19.mat -1 -1 490 2571479 2581814 +5052498 5060033 7536 663406.1016 663781.9579 -44.5319 5.0455 92.6282 run19.mat -1 -1 490 2581969 2585737 +5144143 5156338 12196 667987.5615 668598.0842 -44.5358 5.047 93.3371 run19.mat -1 -1 491 2627794 2633892 +5156662 5177352 20691 668614.3497 669647.1827 -42.8816 5.0463 92.579 run19.mat -1 -1 491 2634054 2644399 +5177658 5198332 20675 669662.6123 670698.6249 -41.2329 5.0469 92.6319 run19.mat -1 -1 491 2644552 2654890 +5198638 5219334 20697 670713.8065 671746.5863 -39.5854 5.0473 92.5885 run19.mat -1 -1 491 2655043 2665391 +5219641 5239953 20313 671761.8206 672776.363 -37.9361 5.0471 92.8252 run19.mat -1 -1 491 2665545 2675701 +5324254 5344655 20402 676991.6061 678013.5602 -36.2869 5.0452 92.9828 run19.mat -1 -1 492 2717854 2728054 +5344961 5365674 20714 678028.7418 679064.364 -34.6331 5.0449 92.6142 run19.mat -1 -1 492 2728207 2738564 +5365982 5386656 20675 679079.6448 680111.2701 -32.9846 5.0463 92.5703 run19.mat -1 -1 492 2738718 2749056 +5386961 5407653 20693 680126.4021 681162.588 -31.3348 5.0462 92.5914 run19.mat -1 -1 492 2749208 2759555 +5407959 5420034 12076 681177.8912 681780.2117 -29.6869 5.0471 92.783 run19.mat -1 -1 492 2759708 2765746 +5504350 5511981 7632 685995.741 686378.3566 -29.6864 5.0462 93.6148 run19.mat -1 -1 493 2807905 2811721 +5512300 5532995 20696 686394.1832 687430.7172 -28.0308 5.0446 92.5934 run19.mat -1 -1 493 2811881 2822228 +5533303 5553993 20691 687446.2477 688477.8166 -26.3855 5.0465 92.5406 run19.mat -1 -1 493 2822382 2832728 +5554301 5574985 20685 688493.0974 689527.4482 -24.7385 5.0447 92.5055 run19.mat -1 -1 493 2832882 2843225 +5575299 5595959 20661 689543.1523 690578.4108 -23.087 5.0468 92.6706 run19.mat -1 -1 493 2843382 2853712 +5596267 5600153 3887 690593.8138 690788.1036 -21.4364 5.0414 93.003 run19.mat -1 -1 493 2853866 2855809 +5684197 5700078 15882 694988.4895 695784.6818 -21.4388 5.0461 93.0614 run19.mat -1 -1 494 2897833 2905773 +5700386 5721096 20711 695800.0961 696833.9598 -19.79 5.0458 92.5679 run19.mat -1 -1 494 2905927 2916283 +5721404 5742078 20675 696849.3628 697884.2857 -18.1467 5.0464 92.6805 run19.mat -1 -1 494 2916437 2926774 +5742384 5763075 20692 697899.4176 698933.4404 -16.4959 5.047 92.5562 run19.mat -1 -1 494 2926927 2937274 +5763382 5780013 16632 698948.6716 699779.9159 -14.8486 5.0442 92.6523 run19.mat -1 -1 494 2937427 2945743 +5864264 5867491 3228 703992.6328 704154.0258 -14.8408 5.048 95.6899 run19.mat -1 -1 495 2987870 2989484 +5867805 5888475 20671 704169.6043 705205.2046 -13.1941 5.046 92.5598 run19.mat -1 -1 495 2989641 2999976 +5888785 5909494 20710 705220.5846 706254.133 -11.5491 5.0459 92.5147 run19.mat -1 -1 495 3000131 3010487 +5909803 5930476 20674 706269.4665 707305.5586 -9.8969 5.0468 92.5758 run19.mat -1 -1 495 3010641 3020978 +5930785 5951476 20692 707321.1363 708353.9817 -8.2475 5.0447 92.6013 run19.mat -1 -1 495 3021132 3031478 +5951782 5960072 8291 708369.1663 708781.989 -6.5949 5.045 92.7379 run19.mat -1 -1 495 3031631 3035776 +6044367 6055779 11413 712997.7229 713569.5945 -6.5967 5.0432 93.1272 run19.mat -1 -1 496 3077925 3083632 +6056086 6076779 20694 713584.9477 714619.8007 -4.9477 5.045 92.5044 run19.mat -1 -1 496 3083786 3094132 +6077089 6097775 20687 714635.3037 715669.4828 -3.2943 5.0467 92.5384 run19.mat -1 -1 496 3094287 3104631 +6098084 6118774 20691 715684.8133 716718.8111 -1.6466 5.0467 92.5499 run19.mat -1 -1 496 3104786 3115131 +6119082 6139737 20656 716734.3384 717767.2701 0.00034948 5.0463 92.7449 run19.mat -1 -1 496 3115285 3125613 +6140042 6140132 91 717782.4021 717786.8672 1.6813 5.05 92.816 run19.mat -1 -1 496 3125765 3125810 +6224297 6244179 19883 721994.5188 722988.8853 1.6466 5.046 92.9271 run19.mat -1 -1 497 3167895 3177836 +6244498 6265176 20679 723004.8415 724037.0271 3.2993 5.0457 92.5344 run19.mat -1 -1 497 3177995 3188335 +6265481 6286174 20694 724052.2803 725088.7265 4.9453 5.0458 92.6281 run19.mat -1 -1 497 3188487 3198834 +6286480 6307159 20680 725104.1561 726136.8789 6.5908 5.0447 92.6546 run19.mat -1 -1 497 3198987 3209328 +6307466 6320191 12726 726152.2133 726790.5164 8.246 5.0481 92.7203 run19.mat -1 -1 497 3209481 3215844 +6404603 6411592 6990 731010.0548 731359.3078 8.2478 5.0414 93.7848 run19.mat -1 -1 498 3258052 3261546 +6411906 6432595 20690 731374.8863 732409.316 9.8926 5.046 92.5638 run19.mat -1 -1 498 3261703 3272048 +6432903 6453597 20695 732424.7318 733460.2862 11.539 5.045 92.6436 run19.mat -1 -1 498 3272202 3282549 +6453903 6474587 20685 733475.4708 734509.0565 13.186 5.0469 92.6093 run19.mat -1 -1 498 3282702 3293045 +6474898 6495561 20664 734524.735 735560.345 14.8429 5.0466 92.6035 run19.mat -1 -1 498 3293201 3303533 +6495870 6500391 4522 735575.9228 735801.0787 16.4852 5.0451 92.8402 run19.mat -1 -1 498 3303687 3305947 +6584494 6599702 15209 740005.8146 740764.9271 16.489 5.0456 92.9623 run19.mat -1 -1 499 3348001 3355605 +6600008 6620681 20674 740780.2334 741815.1442 18.1373 5.0458 92.62 run19.mat -1 -1 499 3355758 3366095 +6620995 6641685 20691 741830.974 742866.684 19.7832 5.0466 92.6652 run19.mat -1 -1 499 3366252 3376598 +6641995 6662678 20684 742882.187 743912.9391 21.4353 5.0456 92.6532 run19.mat -1 -1 499 3376753 3387095 +6662983 6680250 17268 743928.071 744793.7267 23.0889 5.0461 92.761 run19.mat -1 -1 499 3387247 3395881 +6764518 6766979 2462 749006.5666 749128.6642 23.0933 5.0451 95.0662 run19.mat -1 -1 500 3438007 3439218 +6767292 6787979 20688 749144.1931 750180.0904 24.7373 5.0459 92.5627 run19.mat -1 -1 500 3439404 3449748 +6788287 6808960 20674 750195.6208 751227.6526 26.3906 5.0468 92.6424 run19.mat -1 -1 500 3449902 3460239 +6809266 6829959 20694 751242.9584 752280.5215 28.0354 5.0445 92.5872 run19.mat -1 -1 500 3460392 3470739 +6830267 6850941 20675 752295.8023 753327.0292 29.6897 5.0473 92.6414 run19.mat -1 -1 500 3470893 3481230 +6851249 6860311 9063 753342.5566 753795.3696 31.3315 5.0444 92.8343 run19.mat -1 -1 500 3481384 3485916 +6944626 6955310 10685 758011.6001 758545.5756 31.3396 5.0471 93.4167 run19.mat -1 -1 501 3528075 3533417 +6955626 6976299 20674 758561.5095 759595.6739 32.9856 5.0458 92.5647 run19.mat -1 -1 501 3533575 3543912 +6976608 6997321 20714 759611.2517 760647.4485 34.634 5.0458 92.5326 run19.mat -1 -1 501 3544067 3554424 +6997628 7018301 20674 760662.9254 761695.564 36.2844 5.0457 92.5482 run19.mat -1 -1 501 3554577 3564914 +7018609 7039281 20673 761710.8448 762746.594 37.9314 5.0464 92.7391 run19.mat -1 -1 501 3565068 3575405 +7039588 7040410 823 762761.8252 762802.6071 39.5999 5.0456 93.3013 run19.mat -1 -1 501 3575558 3575969 +7124655 7143581 18927 767013.5576 767958.3005 39.5788 5.0459 93.0491 run19.mat -1 -1 502 3618093 3627557 +7143892 7164561 20670 767973.7301 769007.5431 41.227 5.0455 92.6082 run19.mat -1 -1 502 3627712 3638047 +7164870 7185581 20712 769023.1208 770059.9297 42.8764 5.0471 92.6197 run19.mat -1 -1 502 3638202 3648558 +7185887 7206562 20676 770075.1113 771108.9244 44.5288 5.0457 92.6649 run19.mat -1 -1 502 3648711 3659049 +7206871 7220451 13581 771124.5021 771802.5651 46.1727 5.0468 92.6659 run19.mat -1 -1 502 3659203 3665994 +7304494 7310613 6120 776006.7348 776311.5779 46.179 5.0439 93.6208 run19.mat -1 -1 503 3708017 3711077 +7310926 7331621 20696 776327.3573 777362.5273 47.8268 5.047 92.5037 run19.mat -1 -1 503 3711233 3721581 +7331928 7352601 20674 777377.7585 778410.9233 49.4773 5.0449 92.5625 run19.mat -1 -1 503 3721734 3732072 +7352908 7373606 20699 778426.2797 779460.4451 51.128 5.0466 92.606 run19.mat -1 -1 503 3732225 3742574 +7373919 7394584 20666 779476.0981 780511.6569 52.7806 5.0465 92.5891 run19.mat -1 -1 503 3742731 3753064 +7394892 7400249 5358 780527.0598 780794.9623 54.4236 5.0481 92.6657 run19.mat -1 -1 503 3753218 3755896 +7484521 7498871 14351 785007.6372 785723.5963 54.4296 5.0444 93.181 run19.mat -1 -1 504 3798034 3805210 +7499190 7519879 20690 785739.426 786775.9246 56.0756 5.047 92.5167 run19.mat -1 -1 504 3805369 3815714 +7520189 7540861 20673 786791.3077 787824.4259 57.7291 5.0457 92.6218 run19.mat -1 -1 504 3815869 3826205 +7541169 7561863 20695 787839.8319 788873.9115 59.3757 5.0452 92.615 run19.mat -1 -1 504 3826359 3836707 +7562170 7580289 18120 788889.1457 789794.5817 61.0251 5.0452 92.7825 run19.mat -1 -1 504 3836861 3845920 +7664551 7666150 1600 794008.5465 794088.024 61.0287 5.0516 96.3473 run19.mat -1 -1 505 3888053 3888853 +7666469 7687142 20674 794103.8506 795138.4882 62.6713 5.0456 92.6505 run19.mat -1 -1 505 3889012 3899349 +7687451 7708142 20692 795153.8186 796188.3493 64.3211 5.0465 92.5254 run19.mat -1 -1 505 3899504 3909850 +7708449 7729146 20698 796203.5805 797239.6536 65.9692 5.0473 92.4901 run19.mat -1 -1 505 3910003 3920352 +7729449 7750124 20676 797254.9288 798287.1958 67.6197 5.0461 92.6253 run19.mat -1 -1 505 3920504 3930841 +7750431 7760329 9899 798302.5876 798797.5535 69.2651 5.045 92.877 run19.mat -1 -1 505 3930995 3935944 +7844535 7854434 9900 803009.4941 803504.5535 69.2671 5.0494 93.4918 run19.mat -1 -1 506 3978049 3982999 +7854750 7875444 20695 803520.4842 804553.6239 70.9154 5.0478 92.5071 run19.mat -1 -1 506 3983157 3993504 +7875754 7896446 20693 804569.2521 805602.291 72.567 5.046 92.5399 run19.mat -1 -1 506 3993659 4004006 +7896752 7917427 20676 805617.7175 806654.4162 74.2142 5.0467 92.6146 run19.mat -1 -1 506 4004159 4014497 +7917736 7938402 20667 806669.8692 807702.2086 75.8649 5.0447 92.6643 run19.mat -1 -1 506 4014651 4024984 +7938710 7940409 1700 807717.739 807803.4086 77.5168 5.0481 91.9759 run19.mat -1 -1 506 4025138 4025988 +8024853 8042902 18050 812023.7726 812926.3917 77.5157 5.0445 92.8964 run19.mat -1 -1 507 4068212 4077237 +8043216 8063902 20687 812942.2247 813978.0867 79.1675 5.0468 92.57 run19.mat -1 -1 507 4077394 4087737 +8064209 8084902 20694 813993.3179 815028.743 80.8163 5.045 92.5679 run19.mat -1 -1 507 4087891 4098238 +8085210 8105544 20335 815044.2735 816058.1278 82.4648 5.0465 92.6402 run19.mat -1 -1 507 4098392 4108560 +293086 313598 20513 9709771.4551 9710795.3224 82.4622 -43.7509 92.8237 run2.mat -1 -1 509 164763 175020 +313904 334599 20696 9710810.6283 9711847.6694 80.8118 -43.7507 92.5895 run2.mat -1 -1 509 175173 185521 +334904 355582 20679 9711862.9223 9712895.9756 79.1663 -43.7506 92.6294 run2.mat -1 -1 509 185673 196013 +355896 376562 20667 9712911.8054 9713943.0052 77.5118 -43.7507 92.6497 run2.mat -1 -1 509 196170 206503 +376873 388838 11966 9713958.4348 9714556.2561 75.8618 -43.7509 92.7031 run2.mat -1 -1 509 206659 212641 +472996 480834 7839 9718766.1996 9719157.2179 75.8623 -43.7514 93.6273 run2.mat -1 -1 510 254722 258641 +481166 501839 20674 9719173.6927 9720206.7726 74.218 -43.7513 92.6183 run2.mat -1 -1 510 258807 269144 +502150 522842 20693 9720222.3286 9721257.2414 72.5703 -43.7507 92.5291 run2.mat -1 -1 510 269300 279647 +523148 543839 20692 9721272.5477 9722309.3947 70.9162 -43.7509 92.6359 run2.mat -1 -1 510 279800 290145 +544145 564798 20654 9722324.637 9723358.6103 69.2678 -43.7511 92.6771 run2.mat -1 -1 510 290298 300625 +565108 568877 3770 9723374.1136 9723562.4974 67.6237 -43.7505 92.7498 run2.mat -1 -1 510 300780 302665 +653223 669184 15962 9727777.291 9728575.4724 67.6217 -43.7502 93.0532 run2.mat -1 -1 511 344840 352820 +669496 672991 3496 9728591.2045 9728767.4349 65.9741 -43.751 92.7154 run2.mat -1 -1 511 352976 354724 +673241 690198 16958 9728780.0407 9729627.714 65.9735 -43.7507 92.6595 run2.mat -1 -1 511 354849 363328 +690503 711176 20674 9729642.846 9730674.4466 64.3198 -43.751 92.5916 run2.mat -1 -1 511 363481 373817 +711486 732159 20674 9730689.8297 9731723.8815 62.6749 -43.7505 92.5641 run2.mat -1 -1 511 373972 384310 +732467 748998 16532 9731739.2845 9732568.0335 61.0244 -43.7506 92.9154 run2.mat -1 -1 511 384464 392730 +833272 836435 3164 9736781.9898 9736939.2896 61.0248 -43.7522 94.6957 run2.mat -1 -1 512 434868 436450 +836760 857437 20678 9736955.2965 9737989.1445 59.3761 -43.751 92.5772 run2.mat -1 -1 512 436612 446951 +857745 878416 20672 9738004.4253 9739039.5414 57.7282 -43.7513 92.5991 run2.mat -1 -1 512 447105 457441 +878726 899419 20694 9739055.0446 9740087.8098 56.0754 -43.7506 92.5996 run2.mat -1 -1 512 457596 467943 +899724 920398 20675 9740103.1859 9741135.3678 54.4242 -43.7513 92.6179 run2.mat -1 -1 512 468096 478433 +920707 929037 8331 9741150.9456 9741567.7156 52.7815 -43.7509 92.9658 run2.mat -1 -1 512 478588 482753 +1015144 1026618 11475 9745873.8554 9746448.9917 52.7746 -43.7511 93.3907 run2.mat -1 -1 513 525808 531545 +1026925 1047619 20695 9746464.2229 9747500.0544 51.1244 -43.7514 92.6017 run2.mat -1 -1 513 531699 542045 +1047923 1068618 20696 9747515.377 9748548.6841 49.471 -43.751 92.6118 run2.mat -1 -1 513 542197 552546 +1068925 1089598 20674 9748564.1642 9749596.6665 47.8227 -43.7509 92.6076 run2.mat -1 -1 513 552700 563037 +1089908 1110557 20650 9749612.05 9750645.0208 46.1754 -43.7505 92.7815 run2.mat -1 -1 513 563192 573517 +1110866 1110916 51 9750660.5985 9750663.1192 44.5741 -43.7413 84.4436 run2.mat -1 -1 513 573672 573697 +1194984 1214778 19795 9754866.1016 9755858.0061 44.529 -43.7511 93.043 run2.mat -1 -1 514 615732 625629 +1215111 1235779 20669 9755874.7971 9756906.5721 42.878 -43.7508 92.6256 run2.mat -1 -1 514 625796 636130 +1236086 1256768 20683 9756921.8033 9757954.8193 41.2279 -43.7518 92.5624 run2.mat -1 -1 514 636284 646625 +1257082 1277757 20676 9757970.6523 9759006.0698 39.5827 -43.751 92.7097 run2.mat -1 -1 514 646782 657120 +1278065 1290757 12693 9759021.4728 9759654.2464 37.9326 -43.751 92.7969 run2.mat -1 -1 514 657274 663621 +1375047 1382038 6992 9763870.8257 9764218.4644 37.9334 -43.7515 93.6397 run2.mat -1 -1 515 705768 709263 +1382343 1403041 20699 9764233.7207 9765269.6192 36.2857 -43.7509 92.5354 run2.mat -1 -1 515 709415 719765 +1403349 1424020 20672 9765285.1497 9766318.1848 34.6348 -43.7513 92.5611 run2.mat -1 -1 515 719919 730255 +1424329 1445000 20672 9766333.7656 9767367.1675 32.9848 -43.7506 92.6012 run2.mat -1 -1 515 730409 740745 +1445314 1465983 20670 9767382.7491 9768417.8819 31.3377 -43.751 92.6879 run2.mat -1 -1 515 740902 751237 +1466292 1470816 4525 9768433.3378 9768658.0443 29.6914 -43.7499 92.9491 run2.mat -1 -1 515 751392 753654 +1554936 1570118 15183 9772865.7576 9773623.8761 29.6849 -43.7512 93.1024 run2.mat -1 -1 516 795716 803307 +1570440 1591104 20665 9773639.8547 9774671.1558 28.0371 -43.751 92.5343 run2.mat -1 -1 516 803468 813801 +1591425 1612103 20679 9774687.0816 9775722.7043 26.3848 -43.7511 92.625 run2.mat -1 -1 516 813961 824301 +1612410 1633103 20694 9775738.1843 9776772.1568 24.7387 -43.7511 92.6927 run2.mat -1 -1 516 824455 834801 +1633407 1650697 17291 9776787.3597 9777653.3635 23.0881 -43.7504 92.8449 run2.mat -1 -1 516 834953 843599 +1734950 1737380 2431 9781863.9873 9781985.5341 23.0786 -43.7508 96.4228 run2.mat -1 -1 517 885727 886943 +1737686 1758362 20677 9782000.8399 9783035.9016 21.4353 -43.7507 92.549 run2.mat -1 -1 517 887095 897434 +1758670 1779362 20693 9783051.3049 9784085.6999 19.7856 -43.751 92.5369 run2.mat -1 -1 517 897588 907934 +1779670 1800361 20692 9784100.9808 9785136.3451 18.1365 -43.7513 92.5942 run2.mat -1 -1 517 908088 918434 +1800667 1821325 20659 9785151.6515 9786184.8802 16.489 -43.7509 92.6864 run2.mat -1 -1 517 918587 928917 +1821629 1830756 9128 9786200.0831 9786655.4869 14.8408 -43.7508 92.8369 run2.mat -1 -1 517 929069 933632 +1914799 1925502 10704 9790857.1952 9791392.1346 14.8432 -43.7516 93.5383 run2.mat -1 -1 518 975655 981007 +1925824 1946502 20679 9791408.2414 9792443.5029 13.1915 -43.7514 92.4613 run2.mat -1 -1 518 981168 991508 +1946813 1967503 20691 9792459.1815 9793493.1854 11.5425 -43.7511 92.612 run2.mat -1 -1 518 991663 1002009 +1967810 1988502 20693 9793508.4166 9794544.8338 9.8938 -43.7511 92.5768 run2.mat -1 -1 518 1002162 1012508 +1988806 2009462 20657 9794560.1502 9795591.1662 8.2491 -43.7512 92.7837 run2.mat -1 -1 518 1012660 1022989 +2009769 2010555 787 9795606.5221 9795645.8372 6.5777 -43.7537 91.6494 run2.mat -1 -1 518 1023142 1023535 +2094837 2113920 19084 9799860.0154 9800814.4451 6.592 -43.7516 93.0354 run2.mat -1 -1 519 1065678 1075220 +2114243 2134920 20678 9800830.5982 9801866.2069 4.9453 -43.7509 92.6102 run2.mat -1 -1 519 1075382 1085721 +2135229 2155903 20675 9801881.4286 9802914.91 3.2983 -43.7513 92.6413 run2.mat -1 -1 519 1085875 1096213 +2156213 2176906 20694 9802930.1781 9803965.5697 1.649 -43.7515 92.6825 run2.mat -1 -1 519 1096368 1106714 +2177212 2190655 13444 9803980.7543 9804650.7985 0.0011366 -43.7511 92.8414 run2.mat -1 -1 519 1106867 1113590 +2274781 2281121 6341 9808858.7412 9809174.5175 0.0020089 -43.7502 94.0028 run2.mat -1 -1 520 1155654 1158824 +2281449 2302140 20692 9809191.0565 9810225.0633 -1.6499 -43.7508 92.5559 run2.mat -1 -1 520 1158988 1169334 +2302450 2323124 20675 9810240.3313 9811273.2068 -3.2955 -43.7511 92.5711 run2.mat -1 -1 520 1169489 1179827 +2323430 2344106 20677 9811288.3884 9812322.1748 -4.9484 -43.7514 92.6157 run2.mat -1 -1 520 1179980 1190318 +2344418 2365081 20664 9812337.6541 9813372.0042 -6.5957 -43.7507 92.6107 run2.mat -1 -1 520 1190474 1200806 +2365390 2370534 5145 9813387.4574 9813644.7101 -8.2485 -43.7504 92.8028 run2.mat -1 -1 520 1200961 1203533 +2454617 2469303 14687 9817847.9396 9818582.4376 -8.2512 -43.7511 93.1685 run2.mat -1 -1 521 1245576 1252919 +2469639 2490326 20688 9818599.2411 9819633.197 -9.8988 -43.7505 92.6238 run2.mat -1 -1 521 1253087 1263431 +2490630 2511301 20672 9819648.1724 9820683.9157 -11.5469 -43.7508 92.5787 run2.mat -1 -1 521 1263583 1273919 +2511610 2532285 20676 9820699.3717 9821731.9978 -13.193 -43.7509 92.5669 run2.mat -1 -1 521 1274074 1284412 +2532591 2550374 17784 9821747.4243 9822638.0404 -14.8449 -43.7507 92.8132 run2.mat -1 -1 521 1284565 1293457 +2634476 2636403 1928 9826843.3326 9826939.7012 -14.8419 -43.7546 94.8338 run2.mat -1 -1 522 1335510 1336473 +2636710 2657405 20696 9826955.0544 9827988.0746 -16.4929 -43.7511 92.6572 run2.mat -1 -1 522 1336627 1346975 +2657713 2678389 20677 9828003.4806 9829038.4615 -18.1412 -43.7508 92.6239 run2.mat -1 -1 522 1347129 1357467 +2678699 2699384 20686 9829054.0928 9830086.803 -19.7873 -43.751 92.5977 run2.mat -1 -1 522 1357622 1367965 +2699691 2720365 20675 9830102.2799 9831136.9319 -21.4381 -43.7512 92.6013 run2.mat -1 -1 522 1368119 1378456 +2720678 2730253 9576 9831152.5879 9831632.2377 -23.0906 -43.7509 92.964 run2.mat -1 -1 522 1378612 1383400 +2814491 2824742 10252 9835841.5263 9836355.3831 -23.0883 -43.7502 93.8132 run2.mat -1 -1 523 1425521 1430647 +2825071 2845746 20676 9836371.9691 9837406.2503 -24.739 -43.7507 92.5365 run2.mat -1 -1 523 1430811 1441149 +2846049 2866743 20695 9837421.5255 9838455.748 -26.3845 -43.7507 92.5757 run2.mat -1 -1 523 1441301 1451648 +2867051 2887726 20676 9838471.1936 9839503.4249 -28.0372 -43.7502 92.5776 run2.mat -1 -1 523 1451802 1462140 +2888033 2908685 20653 9839518.9018 9840551.858 -29.6855 -43.7512 92.7132 run2.mat -1 -1 523 1462294 1472620 +2908991 2910273 1283 9840567.2845 9840631.9145 -31.346 -43.7511 91.8956 run2.mat -1 -1 523 1472773 1473414 +2994260 3012823 18564 9844830.35 9845758.7024 -31.337 -43.7516 93.0574 run2.mat -1 -1 524 1515410 1524692 +3013148 3033825 20678 9845774.9558 9846811.0642 -32.9852 -43.7509 92.5029 run2.mat -1 -1 524 1524854 1535193 +3034133 3054825 20693 9846826.4672 9847860.4928 -34.6313 -43.7509 92.5705 run2.mat -1 -1 524 1535347 1545693 +3055134 3075805 20672 9847875.8232 9848909.3918 -36.2884 -43.7515 92.6626 run2.mat -1 -1 524 1545848 1556184 +3076113 3090154 14042 9848924.6757 9849627.1855 -37.9342 -43.7502 92.8323 run2.mat -1 -1 524 1556338 1563359 +3174325 3180084 5760 9853835.4854 9854123.9686 -37.939 -43.7511 94.2519 run2.mat -1 -1 525 1605446 1608326 +3180401 3201105 20705 9854139.6991 9855173.5576 -39.5851 -43.7506 92.5821 run2.mat -1 -1 525 1608484 1618837 +3201414 3222105 20692 9855189.1353 9856222.4947 -41.2332 -43.7508 92.6354 run2.mat -1 -1 525 1618991 1629337 +3222411 3243087 20677 9856237.7979 9857273.8899 -42.8829 -43.7509 92.6483 run2.mat -1 -1 525 1629490 1639829 +3243394 3264065 20672 9857289.182 9858323.5465 -44.5323 -43.7507 92.6691 run2.mat -1 -1 525 1639982 1650318 +3264373 3270231 5859 9858338.8273 9858631.4037 -46.1853 -43.7509 92.8103 run2.mat -1 -1 525 1650472 1653401 +3354372 3368344 13973 9862837.6649 9863536.6364 -46.1796 -43.7505 93.1891 run2.mat -1 -1 526 1695474 1702460 +3368660 3389328 20669 9863552.567 9864585.9596 -47.8292 -43.7505 92.6037 run2.mat -1 -1 526 1702618 1712952 +3389634 3410328 20695 9864601.2628 9865635.5051 -49.4775 -43.7515 92.6127 run2.mat -1 -1 526 1713105 1723453 +3410638 3431325 20688 9865650.8851 9866685.5112 -51.127 -43.7506 92.6747 run2.mat -1 -1 526 1723608 1733952 +3431634 3450273 18640 9866701.0889 9867634.0785 -52.7749 -43.7511 92.736 run2.mat -1 -1 526 1734106 1743426 +3534293 3535544 1252 9871835.147 9871897.3386 -52.7814 -43.7493 98.0672 run2.mat -1 -1 527 1785438 1786063 +3535860 3556528 20669 9871913.0163 9872945.8457 -54.4233 -43.7503 92.6175 run2.mat -1 -1 527 1786221 1796556 +3556835 3577505 20671 9872961.3226 9873994.2513 -56.0746 -43.7507 92.6514 run2.mat -1 -1 527 1796709 1807045 +3577814 3598526 20713 9874009.7072 9875047.0254 -57.724 -43.7506 92.6581 run2.mat -1 -1 527 1807200 1817556 +3598834 3619507 20674 9875062.5527 9876094.6338 -59.3744 -43.7512 92.6386 run2.mat -1 -1 527 1817710 1828047 +3619814 3630111 10298 9876110.1107 9876627.0746 -61.024 -43.7511 92.9481 run2.mat -1 -1 527 1828200 1833349 +3714168 3723565 9398 9880826.5823 9881296.7975 -61.0256 -43.7488 93.2316 run2.mat -1 -1 528 1875379 1880078 +3723871 3744586 20716 9881311.9821 9882349.0982 -62.6728 -43.7514 92.4578 run2.mat -1 -1 528 1880231 1890589 +3744894 3765568 20675 9882364.6255 9883399.8466 -64.323 -43.7516 92.6241 run2.mat -1 -1 528 1890743 1901080 +3765874 3786566 20693 9883415.0282 9884448.4225 -65.9746 -43.751 92.5952 run2.mat -1 -1 528 1901233 1911580 +3786874 3807527 20654 9884463.9498 9885497.5346 -67.6265 -43.7511 92.7565 run2.mat -1 -1 528 1911734 1922061 +3807834 3809931 2098 9885512.7658 9885616.8043 -69.2775 -43.7515 92.778 run2.mat -1 -1 528 1922214 1923263 +3894185 3911825 17641 9889829.0548 9890709.9863 -69.2744 -43.7507 92.9714 run2.mat -1 -1 529 1965392 1974212 +3912148 3932827 20680 9890726.2731 9891759.97 -70.9185 -43.7508 92.5964 run2.mat -1 -1 529 1974374 1984714 +3933138 3953807 20670 9891775.5232 9892812.0949 -72.5745 -43.751 92.6529 run2.mat -1 -1 529 1984869 1995204 +3954114 3974806 20693 9892827.3261 9893861.0659 -74.2232 -43.7508 92.6221 run2.mat -1 -1 529 1995357 2005704 +3975115 3989971 14857 9893876.6437 9894618.3064 -75.8671 -43.7507 92.8117 run2.mat -1 -1 529 2005858 2013287 +4074048 4078926 4879 9898823.0641 9899066.7229 -75.8649 -43.751 94.4157 run2.mat -1 -1 530 2055327 2057766 +4079233 4099934 20702 9899081.9571 9900116.5349 -77.5145 -43.7504 92.5942 run2.mat -1 -1 530 2057920 2068271 +4100243 4120929 20687 9900131.9879 9901164.5422 -79.1679 -43.7509 92.5489 run2.mat -1 -1 530 2068425 2078769 +4121238 4141911 20674 9901179.9952 9902215.0258 -80.8128 -43.7507 92.6948 run2.mat -1 -1 530 2078923 2089260 +4142222 4162891 20670 9902230.7075 9903266.2193 -82.4658 -43.7509 92.6998 run2.mat -1 -1 530 2089416 2099750 +4163199 4169871 6673 9903281.6252 9903614.2493 -82.4648 -42.0718 92.9547 run2.mat -1 -1 530 2099904 2103241 +4253847 4267001 13155 9907812.8722 9908469.973 -82.4673 -42.0713 93.4162 run2.mat -1 -1 531 2145231 2151808 +4267322 4288004 20683 9908486.1589 9909518.9052 -80.816 -42.0711 92.5832 run2.mat -1 -1 531 2151969 2162310 +4288312 4308989 20678 9909534.4294 9910570.0652 -79.1676 -42.0718 92.6833 run2.mat -1 -1 531 2162464 2172803 +4309300 4329972 20673 9910585.6185 9911618.5285 -77.5148 -42.0713 92.6504 run2.mat -1 -1 531 2172958 2183295 +4330282 4349750 19469 9911634.1567 9912607.4739 -75.8676 -42.0716 92.759 run2.mat -1 -1 531 2183450 2193184 +4433996 4434414 419 9916819.4398 9916840.5126 -75.8847 -42.0783 105.8624 run2.mat -1 -1 532 2235309 2235518 +4434727 4455368 20642 9916856.292 9917889.9234 -74.2191 -42.071 92.735 run2.mat -1 -1 532 2235675 2245996 +4455676 4476350 20675 9917905.3264 9918938.6171 -72.5749 -42.0716 92.5692 run2.mat -1 -1 532 2246150 2256487 +4476657 4497350 20694 9918954.094 9919987.5937 -70.9179 -42.0712 92.6431 run2.mat -1 -1 532 2256641 2266988 +4497657 4518333 20677 9920002.9469 9921036.9998 -69.2753 -42.0715 92.6234 run2.mat -1 -1 532 2267141 2277479 +4518639 4529791 11153 9921052.1893 9921609.4924 -67.6255 -42.0718 92.7169 run2.mat -1 -1 532 2277633 2283209 +4613851 4622433 8583 9925813.1179 9926241.799 -67.624 -42.0721 93.3788 run2.mat -1 -1 533 2325241 2329532 +4622742 4643411 20670 9926257.3767 9927289.498 -65.9762 -42.0714 92.6046 run2.mat -1 -1 533 2329686 2340021 +4643718 4664408 20691 9927304.8511 9928342.6563 -64.3236 -42.0713 92.64 run2.mat -1 -1 533 2340175 2350520 +4664715 4685392 20678 9928358.0092 9929390.6938 -62.6721 -42.0715 92.6492 run2.mat -1 -1 533 2350674 2361012 +4685699 4706370 20672 9929406.1739 9930438.3767 -61.0265 -42.0711 92.6964 run2.mat -1 -1 533 2361166 2371502 +4706676 4709631 2956 9930453.5582 9930600.6513 -59.3783 -42.0703 92.6307 run2.mat -1 -1 533 2371655 2373133 +4793910 4810796 16887 9934816.3246 9935661.0269 -59.3717 -42.0718 93.0659 run2.mat -1 -1 534 2415274 2423717 +4811112 4831791 20680 9935676.833 9936709.0683 -57.7249 -42.0712 92.5925 run2.mat -1 -1 534 2423875 2434216 +4832097 4852791 20695 9936724.3715 9937760.0871 -56.074 -42.0713 92.6045 run2.mat -1 -1 534 2434369 2444716 +4853096 4873773 20678 9937775.2191 9938810.6768 -54.4246 -42.0711 92.5342 run2.mat -1 -1 534 2444868 2455207 +4874086 4889689 15604 9938826.3328 9939606.6991 -52.7778 -42.0712 92.6812 run2.mat -1 -1 534 2455364 2463166 +4973777 4977859 4083 9943810.5642 9944014.2187 -52.7749 -42.0704 94.4952 run2.mat -1 -1 535 2505211 2507252 +4978179 4998869 20691 9944030.0949 9945064.5759 -51.1286 -42.0702 92.6021 run2.mat -1 -1 535 2507412 2517758 +4999178 5019851 20674 9945079.9063 9946114.2966 -49.4737 -42.0714 92.6425 run2.mat -1 -1 535 2517913 2528250 +5020156 5040830 20675 9946129.6727 9947163.4128 -47.8287 -42.0712 92.5175 run2.mat -1 -1 535 2528402 2538739 +5041139 5061810 20672 9947178.7432 9948211.4614 -46.1789 -42.0715 92.6595 run2.mat -1 -1 535 2538894 2549230 +5062118 5069549 7432 9948226.9887 9948598.2987 -44.5303 -42.0704 92.8976 run2.mat -1 -1 535 2549384 2553100 +5153602 5165956 12355 9952801.1048 9953418.5372 -44.5366 -42.0718 93.2458 run2.mat -1 -1 536 2595128 2601306 +5166280 5186932 20653 9953434.8711 9954467.5706 -42.8781 -42.071 92.5267 run2.mat -1 -1 536 2601468 2611794 +5187237 5207932 20696 9954482.8265 9955516.5907 -41.2333 -42.0716 92.675 run2.mat -1 -1 536 2611946 2622294 +5208240 5228909 20670 9955532.1149 9956566.9777 -39.5834 -42.0712 92.6387 run2.mat -1 -1 536 2622448 2632783 +5229216 5249448 20233 9956582.3309 9957592.2147 -37.9367 -42.0719 92.7533 run2.mat -1 -1 536 2632936 2643053 +5333633 5354151 20519 9961802.5829 9962828.7737 -36.2901 -42.0725 92.9234 run2.mat -1 -1 537 2685147 2695407 +5354458 5375135 20678 9962844.2537 9963878.656 -34.6368 -42.0717 92.6552 run2.mat -1 -1 537 2695560 2705899 +5375443 5396131 20689 9963894.1833 9964925.4029 -32.9874 -42.071 92.5983 run2.mat -1 -1 537 2706053 2716398 +5396438 5417114 20677 9964940.6341 9965975.0653 -31.3363 -42.0715 92.6444 run2.mat -1 -1 537 2716551 2726890 +5417421 5429469 12049 9965990.6042 9966593.6068 -29.6904 -42.0714 92.7832 run2.mat -1 -1 537 2727043 2733068 +5513391 5521183 7793 9970789.287 9971180.5374 -29.6832 -42.0715 93.8101 run2.mat -1 -1 538 2775030 2778926 +5521498 5542172 20675 9971196.2904 9972228.3581 -28.0365 -42.072 92.5622 run2.mat -1 -1 538 2779084 2789421 +5542481 5563154 20674 9972243.8141 9973280.3466 -26.3868 -42.0711 92.6337 run2.mat -1 -1 538 2789576 2799912 +5563463 5584168 20706 9973295.68 9974330.416 -24.7375 -42.072 92.6409 run2.mat -1 -1 538 2800067 2810420 +5584480 5605134 20655 9974346.145 9975376.2769 -23.0879 -42.0711 92.7938 run2.mat -1 -1 538 2810576 2820904 +5605440 5609288 3849 9975391.5801 9975584.8217 -21.429 -42.0699 92.674 run2.mat -1 -1 538 2821057 2822980 +5693431 5709399 15969 9979794.8473 9980590.0639 -21.4379 -42.0716 93.1662 run2.mat -1 -1 539 2865054 2873039 +5709720 5730373 20654 9980606.1169 9981640.1254 -19.7884 -42.0711 92.5743 run2.mat -1 -1 539 2873199 2883526 +5730682 5751374 20693 9981655.4558 9982689.4159 -18.1405 -42.0707 92.6542 run2.mat -1 -1 539 2883681 2894027 +5751678 5772346 20669 9982704.6218 9983738.6491 -16.4902 -42.0714 92.589 run2.mat -1 -1 539 2894179 2904514 +5772659 5789327 16669 9983754.181 9984587.9697 -14.8457 -42.071 92.8493 run2.mat -1 -1 539 2904670 2913004 +5873449 5876576 3128 9988793.9176 9988950.1794 -14.846 -42.072 95.2724 run2.mat -1 -1 540 2955067 2956631 +5876887 5897572 20686 9988965.7327 9989999.197 -13.1938 -42.0715 92.4614 run2.mat -1 -1 540 2956786 2967129 +5897878 5918557 20680 9990014.2709 9991049.8002 -11.5421 -42.0716 92.6464 run2.mat -1 -1 540 2967282 2977622 +5918865 5939554 20690 9991065.2031 9992098.2295 -9.9011 -42.0718 92.6864 run2.mat -1 -1 540 2977776 2988121 +5939861 5960533 20673 9992113.7096 9993145.9645 -8.2498 -42.0707 92.6423 run2.mat -1 -1 540 2988275 2998611 +5960842 5969208 8367 9993161.5454 9993581.2187 -6.5973 -42.0712 92.8042 run2.mat -1 -1 540 2998765 3002949 +6055319 6066788 11470 9997886.6718 9998460.3001 -6.5952 -42.0718 93.5131 run2.mat -1 -1 541 3046006 3051741 +6067107 6087778 20672 9998476.2563 9999511.589 -4.9502 -42.0708 92.564 run2.mat -1 -1 541 3051900 3062236 +6088082 6108774 20693 9999526.9147 10000560.004 -3.2965 -42.0718 92.5779 run2.mat -1 -1 541 3062388 3072735 +6109082 6129756 20675 10000575.5314 10001610.6038 -1.6513 -42.0716 92.6056 run2.mat -1 -1 541 3072889 3083226 +6130066 6150737 20672 10001626.1068 10002658.2555 0.00064507 -42.0706 92.68 run2.mat -1 -1 541 3083381 3093717 +6151041 6151107 67 10002673.5812 10002676.9084 1.6547 -42.0755 102.6985 run2.mat -1 -1 541 3093869 3093902 +6235389 6255035 19647 10006891.7559 10007875.1469 1.6487 -42.0714 92.8151 run2.mat -1 -1 542 3136045 3145868 +6255346 6276017 20672 10007890.5179 10008923.1696 3.2985 -42.0713 92.586 run2.mat -1 -1 542 3146024 3156360 +6276324 6297016 20693 10008938.6465 10009973.2597 4.9424 -42.0713 92.4982 run2.mat -1 -1 542 3156514 3166860 +6297323 6317998 20676 10009988.38 10011021.1367 6.5957 -42.071 92.6302 run2.mat -1 -1 542 3167014 3177352 +6318303 6331147 12845 10011036.2687 10011679.9631 8.247 -42.0711 92.799 run2.mat -1 -1 542 3177504 3183926 +6415149 6422144 6996 10015880.0115 10016229.3438 8.2479 -42.0708 93.9857 run2.mat -1 -1 543 3225929 3229426 +6422462 6443157 20696 10016245.1239 10017280.9765 9.8964 -42.0709 92.5235 run2.mat -1 -1 543 3229585 3239923 +6443462 6464137 20676 10017296.2295 10018328.7511 11.544 -42.0716 92.6451 run2.mat -1 -1 543 3240087 3250424 +6464447 6485137 20691 10018344.1312 10019378.4867 13.189 -42.0709 92.6039 run2.mat -1 -1 543 3250579 3260924 +6485442 6506098 20657 10019393.7426 10020424.8796 14.8455 -42.0714 92.649 run2.mat -1 -1 543 3261077 3271406 +6506405 6510947 4543 10020440.4756 10020671.2141 16.4864 -42.0716 92.9475 run2.mat -1 -1 543 3271559 3273830 +6595229 6610428 15200 10024883.9623 10025641.9996 16.4882 -42.0706 92.9085 run2.mat -1 -1 544 3315973 3323573 +6610748 6631416 20669 10025657.8758 10026691.4033 18.1362 -42.0716 92.5869 run2.mat -1 -1 544 3323733 3334068 +6631726 6652415 20690 10026706.9063 10027744.6576 19.7862 -42.0709 92.5791 run2.mat -1 -1 544 3334223 3344567 +6652723 6673397 20675 10027760.0606 10028792.016 21.4333 -42.0716 92.6647 run2.mat -1 -1 544 3344721 3355059 +6673706 6691006 17301 10028807.4693 10029673.0191 23.0879 -42.0715 92.6878 run2.mat -1 -1 544 3355213 3363863 +6775153 6777656 2504 10033881.1692 10034006.1564 23.0842 -42.0703 95.3533 run2.mat -1 -1 545 3405939 3407191 +6777964 6798646 20683 10034021.4983 10035055.8371 24.7351 -42.0707 92.5425 run2.mat -1 -1 545 3407345 3417686 +6798964 6819637 20674 10035071.4991 10036103.7334 26.3845 -42.071 92.6054 run2.mat -1 -1 545 3417845 3428182 +6819945 6840615 20671 10036119.2607 10037152.7328 28.0344 -42.0711 92.5838 run2.mat -1 -1 545 3428336 3438671 +6840922 6861615 20694 10037167.9671 10038204.0561 29.6878 -42.0712 92.6262 run2.mat -1 -1 545 3438825 3449172 +6861923 6870906 8984 10038219.5834 10038669.0352 31.3379 -42.0715 92.8777 run2.mat -1 -1 545 3449326 3453818 +6954954 6965830 10877 10042870.6634 10043412.3661 31.3341 -42.0714 93.5629 run2.mat -1 -1 546 3495844 3501282 +6966146 6986837 20692 10043428.0439 10044464.1379 32.9856 -42.0713 92.5217 run2.mat -1 -1 546 3501440 3511785 +6987142 7007820 20679 10044479.3908 10045511.5922 34.6342 -42.0714 92.6582 run2.mat -1 -1 546 3511938 3522278 +7008127 7028797 20671 10045526.9839 10046563.4237 36.2856 -42.0714 92.6526 run2.mat -1 -1 546 3522431 3532767 +7029106 7049776 20671 10046578.7541 10047612.9354 37.9377 -42.0715 92.7401 run2.mat -1 -1 546 3532921 3543256 +7050084 7050766 683 10047628.3418 10047662.456 39.5748 -42.0728 92.0395 run2.mat -1 -1 546 3543410 3543751 +7134855 7153902 19048 10051863.9316 10052818.554 39.5835 -42.0711 92.9344 run2.mat -1 -1 547 3585798 3595322 +7154216 7174897 20682 10052834.257 10053867.5622 41.2305 -42.0715 92.5953 run2.mat -1 -1 547 3595479 3605820 +7175203 7195896 20694 10053882.8654 10054916.8587 42.8789 -42.0707 92.6566 run2.mat -1 -1 547 3605973 3616320 +7196202 7216858 20657 10054932.0403 10055965.465 44.5319 -42.0711 92.7016 run2.mat -1 -1 547 3616473 3626801 +7217168 7230645 13478 10055981.0932 10056654.4518 46.1804 -42.0712 92.8671 run2.mat -1 -1 547 3626956 3633695 +7314681 7320901 6221 10060855.6088 10061167.4491 46.1728 -42.0715 93.8201 run2.mat -1 -1 548 3675715 3678833 +7321208 7341916 20709 10061182.926 10062218.5967 47.8259 -42.0716 92.5304 run2.mat -1 -1 548 3678978 3689333 +7342223 7362897 20675 10062233.8309 10063268.9863 49.4734 -42.0719 92.6116 run2.mat -1 -1 548 3689486 3699824 +7363202 7383896 20695 10063284.2393 10064317.3487 51.1274 -42.0716 92.6346 run2.mat -1 -1 548 3699976 3710324 +7384203 7404856 20654 10064332.6215 10065367.2926 52.7738 -42.0712 92.6931 run2.mat -1 -1 548 3710478 3720804 +7405166 7410464 5299 10065382.6757 10065646 54.4188 -42.0712 93.0834 run2.mat -1 -1 548 3720959 3723608 +7494787 7509201 14415 10069863.9927 10070583.0966 54.422 -42.0706 93.0933 run2.mat -1 -1 549 3765772 3772979 +7509509 7530198 20690 10070598.4995 10071635.0175 56.0725 -42.0714 92.5908 run2.mat -1 -1 549 3773133 3783478 +7530507 7551177 20671 10071650.3509 10072683.3645 57.7238 -42.0711 92.5948 run2.mat -1 -1 549 3783632 3793968 +7551485 7572181 20697 10072698.5369 10073732.0835 59.3739 -42.0705 92.582 run2.mat -1 -1 549 3794122 3804470 +7572487 7590564 18078 10073747.2651 10074650.6753 61.0229 -42.071 92.7828 run2.mat -1 -1 549 3804623 3813662 +7674613 7676244 1632 10078854.9467 10078936.0008 61.02 -42.0697 96.3724 run2.mat -1 -1 550 3855689 3856504 +7676559 7697239 20681 10078951.6289 10079985.3179 62.6724 -42.0714 92.6619 run2.mat -1 -1 550 3856662 3867002 +7697546 7718220 20675 10080000.7979 10081034.687 64.3214 -42.0705 92.6182 run2.mat -1 -1 550 3867155 3877493 +7718526 7739221 20696 10081049.8686 10082085.095 65.9767 -42.0706 92.702 run2.mat -1 -1 550 3877646 3887994 +7739526 7760179 20654 10082100.5893 10083132.2198 67.62 -42.0711 92.6135 run2.mat -1 -1 550 3888146 3898474 +7760490 7770384 9895 10083147.8279 10083643.6503 69.2695 -42.071 92.8073 run2.mat -1 -1 550 3898629 3903576 +7856550 7866361 9812 10087949.1692 10088441.4719 69.271 -42.0715 93.4532 run2.mat -1 -1 551 3946661 3951567 +7866682 7887361 20680 10088457.3977 10089492.4461 70.9167 -42.0713 92.5431 run2.mat -1 -1 551 3951728 3962067 +7887684 7908361 20678 10089508.6668 10090541.3726 72.5705 -42.0716 92.634 run2.mat -1 -1 551 3962229 3972568 +7908668 7929354 20687 10090556.7255 10091590.7206 74.2173 -42.0717 92.553 run2.mat -1 -1 551 3972721 3983065 +7929662 7950319 20658 10091605.8713 10092639.476 75.8657 -42.0712 92.7343 run2.mat -1 -1 551 3983219 3993548 +7950626 7952324 1699 10092654.956 10092739.6769 77.5022 -42.0713 93.0869 run2.mat -1 -1 551 3993701 3994550 +8036413 8054427 18015 10096942.7178 10097844.484 77.5127 -42.0715 93.0513 run2.mat -1 -1 552 4036597 4045604 +8054748 8075420 20673 10097860.4098 10098894.0373 79.1647 -42.0715 92.564 run2.mat -1 -1 552 4045765 4056101 +8075727 8096420 20694 10098909.2715 10099945.8156 80.813 -42.0717 92.5623 run2.mat -1 -1 552 4056254 4066602 +8096731 8117404 20674 10099961.2453 10100992.9853 82.4605 -42.071 92.6282 run2.mat -1 -1 552 4066757 4077094 +8117719 8132183 14465 10101008.6165 10101732.5683 82.4604 -40.3881 92.8653 run2.mat -1 -1 552 4077251 4084484 +8216415 8221639 5225 10105944.3439 10106203.7734 82.4637 -40.389 93.9295 run2.mat -1 -1 553 4126602 4129214 +8221962 8242644 20683 10106219.7984 10107254.3827 80.8161 -40.3872 92.4783 run2.mat -1 -1 553 4129375 4139717 +8242952 8263641 20690 10107269.9101 10108304.9129 79.1667 -40.388 92.5847 run2.mat -1 -1 553 4139871 4150215 +8263947 8284617 20671 10108320.3425 10109355.4029 77.5144 -40.3869 92.6107 run2.mat -1 -1 553 4150368 4160704 +8284927 8305601 20675 10109371.0311 10110405.8363 75.8659 -40.387 92.6637 run2.mat -1 -1 553 4160859 4171197 +8305907 8312182 6276 10110421.1393 10110732.9536 74.2239 -40.3885 92.8923 run2.mat -1 -1 553 4171350 4174487 +8396267 8409723 13457 10114939.0486 10115611.4617 74.2186 -40.3884 93.1053 run2.mat -1 -1 554 4216531 4223260 +8410033 8430721 20689 10115626.8448 10116659.8955 72.5709 -40.3873 92.6094 run2.mat -1 -1 554 4223415 4233759 +8431026 8451720 20695 10116675.2716 10117707.3451 70.9174 -40.387 92.555 run2.mat -1 -1 554 4233912 4244259 +8452031 8472699 20669 10117722.7748 10118760.1834 69.2739 -40.3878 92.5925 run2.mat -1 -1 554 4244415 4254749 +8473007 8492063 19057 10118775.4672 10119725.819 67.6196 -40.3877 92.7885 run2.mat -1 -1 554 4254903 4264431 +8576313 8577041 729 10123938.4112 10123975.1121 67.6039 -40.3879 101.6517 run2.mat -1 -1 555 4306559 4306923 +8577347 8598024 20678 10123990.5386 10125023.1912 65.9755 -40.3877 92.6107 run2.mat -1 -1 555 4307076 4317415 +8598330 8619005 20676 10125038.4941 10126073.5289 64.3171 -40.3877 92.5846 run2.mat -1 -1 555 4317568 4327906 +8619315 8640003 20689 10126089.1571 10127125.6588 62.6717 -40.3882 92.6093 run2.mat -1 -1 555 4328061 4338405 +8640309 8660985 20677 10127140.9617 10128173.7366 61.0199 -40.3874 92.6452 run2.mat -1 -1 555 4338558 4348897 +8661292 8672142 10851 10128189.2136 10128729.9365 59.3757 -40.388 92.8126 run2.mat -1 -1 555 4349050 4354475 +8756186 8765041 8856 10132934.6125 10133376.5919 59.3716 -40.3891 93.4332 run2.mat -1 -1 556 4396499 4400927 +8765347 8786044 20698 10133392.0184 10134427.2566 57.7254 -40.3868 92.6198 run2.mat -1 -1 556 4401080 4411428 +8786352 8807045 20694 10134442.787 10135476.836 56.0708 -40.3881 92.6696 run2.mat -1 -1 556 4411582 4421930 +8807351 8828024 20674 10135492.3986 10136526.2636 54.4209 -40.3875 92.7534 run2.mat -1 -1 556 4422083 4432419 +8828333 8849003 20671 10136541.7195 10137573.4922 52.7746 -40.3878 92.7367 run2.mat -1 -1 556 4432574 4442910 +8849310 8851982 2673 10137588.8454 10137723.3941 51.1283 -40.3884 93.3356 run2.mat -1 -1 556 4443063 4444399 +8936033 8953082 17050 10141925.5572 10142779.8784 51.1243 -40.3867 92.8747 run2.mat -1 -1 557 4486427 4494951 +8953404 8974064 20661 10142795.9815 10143827.8138 49.4773 -40.3878 92.5725 run2.mat -1 -1 557 4495112 4505443 +8974371 8995063 20693 10143843.048 10144877.4906 47.8254 -40.3878 92.6532 run2.mat -1 -1 557 4505596 4515942 +8995369 9016049 20681 10144892.7965 10145925.1835 46.1815 -40.3878 92.6368 run2.mat -1 -1 557 4516095 4526436 +9016364 9031822 15459 10145940.9971 10146716.8642 44.5306 -40.3883 92.8588 run2.mat -1 -1 557 4526594 4534323 +9117808 9122283 4476 10151014.0466 10151238.8769 44.5307 -40.3876 94.2743 run2.mat -1 -1 558 4577318 4579556 +9122588 9143272 20685 10151254.0754 10152287.9217 42.8802 -40.3874 92.5459 run2.mat -1 -1 558 4579708 4590051 +9143584 9164261 20678 10152303.5249 10153338.3183 41.2302 -40.3885 92.6148 run2.mat -1 -1 558 4590207 4600545 +9164570 9185264 20695 10153353.6487 10154388.085 39.5819 -40.3876 92.5502 run2.mat -1 -1 558 4600700 4611047 +9185573 9206244 20672 10154403.5415 10155435.3612 37.935 -40.3878 92.6516 run2.mat -1 -1 558 4611202 4621538 +9206550 9213682 7133 10155450.7877 10155809.3522 36.2859 -40.3885 92.6213 run2.mat -1 -1 558 4621691 4625257 +9297753 9310363 12611 10160011.6095 10160643.3263 36.2823 -40.3879 93.0687 run2.mat -1 -1 559 4667294 4673599 +9310684 9331363 20680 10160659.509 10161694.0496 34.6346 -40.388 92.5951 run2.mat -1 -1 559 4673760 4684100 +9331670 9352351 20682 10161709.2885 10162743.0034 32.9825 -40.388 92.6003 run2.mat -1 -1 559 4684254 4694595 +9352661 9373324 20664 10162758.6316 10163791.6329 31.3352 -40.3884 92.6736 run2.mat -1 -1 559 4694750 4705081 +9373636 9393562 19927 10163807.2389 10164803.1636 29.685 -40.3876 92.7191 run2.mat -1 -1 559 4705237 4715201 +9477831 9498423 20593 10169014.3609 10170045.2612 28.0295 -40.388 92.7776 run2.mat -1 -1 560 4757337 4767634 +9498731 9519420 20690 10170060.6642 10171097.3709 26.3832 -40.3878 92.5881 run2.mat -1 -1 560 4767788 4778133 +9519731 9540403 20673 10171112.9242 10172146.1047 24.7344 -40.3876 92.6137 run2.mat -1 -1 560 4778288 4788625 +9540712 9561398 20687 10172161.6824 10173194.8361 23.087 -40.3886 92.6727 run2.mat -1 -1 560 4788779 4799123 +9561707 9573420 11714 10173210.2891 10173796.1056 21.4316 -40.3878 92.7958 run2.mat -1 -1 560 4799277 4805134 +9657513 9665481 7969 10178002.5917 10178400.2187 21.4339 -40.3896 93.5125 run2.mat -1 -1 561 4847182 4851166 +9665811 9686504 20694 10178416.591 10179449.3478 19.788 -40.3862 92.4899 run2.mat -1 -1 561 4851331 4861679 +9686813 9707485 20673 10179464.6812 10180499.9016 18.1418 -40.3873 92.5651 run2.mat -1 -1 561 4861833 4872169 +9707792 9728486 20695 10180515.3785 10181548.3578 16.4885 -40.3874 92.6143 run2.mat -1 -1 561 4872323 4882670 +9728796 9749464 20669 10181563.8638 10182599.0736 14.8432 -40.3877 92.6807 run2.mat -1 -1 561 4882825 4893160 +9749771 9753301 3531 10182614.3048 10182789.462 13.2012 -40.3884 92.99 run2.mat -1 -1 561 4893313 4895078 +9837352 9853579 16228 10186992.1243 10187801.76 13.1885 -40.3878 93.01 run2.mat -1 -1 562 4937106 4945219 +9853886 9874563 20678 10187817.0661 10188851.1162 11.5447 -40.3875 92.5875 run2.mat -1 -1 562 4945373 4955712 +9874870 9895562 20693 10188866.4721 10189902.0631 9.8959 -40.387 92.6811 run2.mat -1 -1 562 4955865 4966212 +9895870 9916541 20672 10189917.5904 10190952.4931 8.2479 -40.3876 92.619 run2.mat -1 -1 562 4966366 4976702 +9916850 9933140 16291 10190967.8265 10191783.7284 6.5956 -40.3868 92.7912 run2.mat -1 -1 562 4976857 4985002 +10017193 10020681 3489 10195984.5098 10196158.965 6.5923 -40.3877 94.636 run2.mat -1 -1 563 5027030 5028774 +10020986 10041682 20697 10196174.2179 10197210.167 4.9465 -40.3881 92.577 run2.mat -1 -1 563 5028927 5039275 +10041988 10062664 20677 10197225.5966 10198257.4113 3.2961 -40.3869 92.687 run2.mat -1 -1 563 5039428 5049766 +10062973 10083664 20692 10198272.7447 10199308.5091 1.6493 -40.3879 92.6087 run2.mat -1 -1 563 5049921 5060267 +10083972 10104646 20675 10199324.0395 10200358.2494 0.0018695 -40.3875 92.6451 run2.mat -1 -1 563 5060421 5070758 +10104954 10112940 7987 10200373.5546 10200772.4058 -1.6504 -40.3878 92.8242 run2.mat -1 -1 563 5070912 5074906 +10196964 10208761 11798 10204973.7067 10205564.5401 -1.6495 -40.3876 93.2588 run2.mat -1 -1 564 5116919 5122818 +10209083 10229759 20677 10205580.6435 10206612.6964 -3.3011 -40.3877 92.5315 run2.mat -1 -1 564 5122979 5133317 +10230067 10250742 20676 10206628.1517 10207663.8579 -4.9461 -40.3876 92.5383 run2.mat -1 -1 564 5133472 5143810 +10251052 10271723 20672 10207679.241 10208710.7452 -6.5977 -40.389 92.6306 run2.mat -1 -1 564 5143965 5154301 +10272035 10292684 20650 10208726.6164 10209758.7648 -8.2518 -40.3878 92.7572 run2.mat -1 -1 564 5154457 5164781 +10376900 10396924 20025 10213969.2432 10214972.2152 -9.8979 -40.3885 92.9975 run2.mat -1 -1 565 5206892 5216904 +10397249 10417926 20678 10214988.4684 10216021.7021 -11.5428 -40.3868 92.607 run2.mat -1 -1 565 5217067 5227405 +10418233 10438906 20674 10216036.9333 10217070.5709 -13.1916 -40.3885 92.5871 run2.mat -1 -1 565 5227559 5237896 +10439213 10459889 20677 10217085.8021 10218120.58 -14.8442 -40.3881 92.6558 run2.mat -1 -1 565 5238049 5248388 +10460212 10472660 12449 10218136.6082 10218759.735 -16.4907 -40.3871 92.847 run2.mat -1 -1 565 5248549 5254774 +10556747 10564086 7340 10222964.0873 10223330.7164 -16.4887 -40.3876 93.6458 run2.mat -1 -1 566 5296819 5300488 +10564396 10585106 20711 10223346.3477 10224382.0928 -18.1417 -40.3876 92.5851 run2.mat -1 -1 566 5300643 5310999 +10585411 10606087 20677 10224397.6046 10225430.0992 -19.7867 -40.3878 92.5407 run2.mat -1 -1 566 5311152 5321490 +10606394 10627107 20714 10225445.4522 10226480.6423 -21.439 -40.3871 92.5802 run2.mat -1 -1 566 5321644 5332001 +10627411 10648047 20637 10226495.9679 10227527.6172 -23.0884 -40.387 92.6955 run2.mat -1 -1 566 5332153 5342471 +10648357 10652520 4164 10227543.1204 10227751.3128 -24.7404 -40.3871 93.3769 run2.mat -1 -1 566 5342626 5344708 +10736823 10752504 15682 10231965.6041 10232749.9073 -24.7367 -40.3865 93.3031 run2.mat -1 -1 567 5386861 5394702 +10752824 10773505 20682 10232765.9106 10233802.5926 -26.3865 -40.3884 92.625 run2.mat -1 -1 567 5394862 5405203 +10773814 10794505 20692 10233818.105 10234851.2927 -28.0344 -40.3882 92.6823 run2.mat -1 -1 567 5405357 5415703 +10794813 10815485 20673 10234866.4622 10235900.1783 -29.6873 -40.3885 92.5402 run2.mat -1 -1 567 5415857 5426194 +10815793 10832579 16787 10235915.7056 10236753.8786 -31.3344 -40.3871 92.758 run2.mat -1 -1 567 5426348 5434741 +10916560 10919504 2945 10240953.1361 10241101.1682 -31.3362 -40.3869 94.759 run2.mat -1 -1 568 5476733 5478205 +10919826 10940505 20680 10241117.4013 10242151.9345 -32.9871 -40.3887 92.5728 run2.mat -1 -1 568 5478366 5488706 +10940812 10961494 20683 10242167.4114 10243202.0454 -34.636 -40.3876 92.5422 run2.mat -1 -1 568 5488860 5499202 +10961812 10982487 20676 10243218.0768 10244252.005 -36.2873 -40.3881 92.6374 run2.mat -1 -1 568 5499361 5509699 +10982791 11003466 20676 10244267.0873 10245298.0325 -37.9397 -40.3876 92.5601 run2.mat -1 -1 568 5509851 5520188 +11003771 11012379 8609 10245313.4086 10245743.3339 -39.5852 -40.3877 92.8272 run2.mat -1 -1 568 5520341 5524645 +11096474 11107764 11291 10249950.0463 10250512.9435 -39.5813 -40.3871 93.5107 run2.mat -1 -1 569 5566694 5572339 +11108069 11128766 20698 10250528.3227 10251564.0677 -41.2326 -40.388 92.5077 run2.mat -1 -1 569 5572492 5582841 +11129075 11149767 20693 10251579.5209 10252615.5195 -42.8804 -40.3865 92.6053 run2.mat -1 -1 569 5582995 5593342 +11150073 11170745 20673 10252630.946 10253663.6269 -44.5334 -40.3881 92.7127 run2.mat -1 -1 569 5593495 5603832 +11171054 11191708 20655 10253679.0834 10254710.1967 -46.1825 -40.3874 92.6414 run2.mat -1 -1 569 5603986 5614313 +11192014 11192298 285 10254725.3782 10254739.5522 -47.8259 -40.384 91.056 run2.mat -1 -1 569 5614466 5614608 +11276399 11295843 19445 10258945.6951 10259919.613 -47.8281 -40.3868 92.8844 run2.mat -1 -1 570 5656661 5666383 +11296169 11316846 20678 10259936.0478 10260967.4976 -49.4749 -40.388 92.5501 run2.mat -1 -1 570 5666546 5676885 +11317155 11337844 20690 10260982.975 10262019.2755 -51.1261 -40.3883 92.6256 run2.mat -1 -1 570 5677039 5687385 +11338153 11358808 20656 10262034.609 10263066.8119 -52.7745 -40.3875 92.6579 run2.mat -1 -1 570 5687539 5697867 +11359123 11372178 13056 10263082.6921 10263736.8028 -54.4217 -40.3875 92.7847 run2.mat -1 -1 570 5698024 5704552 +11456256 11462865 6610 10267940.7923 10268269.6671 -54.4228 -40.3879 93.8314 run2.mat -1 -1 571 5746593 5749898 +11463186 11483866 20681 10268285.8498 10269320.871 -56.0713 -40.3875 92.5763 run2.mat -1 -1 571 5750058 5760399 +11484175 11504867 20693 10269336.2014 10270370.0079 -57.7274 -40.3879 92.6577 run2.mat -1 -1 571 5760553 5770900 +11505173 11525845 20673 10270385.3143 10271417.1755 -59.3734 -40.3868 92.6094 run2.mat -1 -1 571 5771053 5781389 +11526152 11546846 20695 10271432.5314 10272469.4873 -61.0245 -40.3879 92.6625 run2.mat -1 -1 571 5781543 5791890 +11547155 11552018 4864 10272485.0653 10272730.081 -62.6785 -40.3879 93.0242 run2.mat -1 -1 571 5792045 5794476 +11635977 11650946 14970 10276924.1831 10277673.4626 -62.6752 -40.3877 93.2951 run2.mat -1 -1 572 5836457 5843942 +11651252 11671927 20676 10277688.6442 10278723.8875 -64.3241 -40.388 92.5678 run2.mat -1 -1 572 5844095 5854434 +11672237 11692929 20693 10278739.5156 10279772.604 -65.9747 -40.3881 92.6258 run2.mat -1 -1 572 5854589 5864935 +11693235 11713908 20674 10279787.9069 10280821.2735 -67.6253 -40.3886 92.6178 run2.mat -1 -1 572 5865088 5875425 +11714214 11731897 17684 10280836.4581 10281722.8909 -69.2723 -40.3871 92.8563 run2.mat -1 -1 572 5875578 5884420 +11816160 11818167 2008 10285933.6747 10286033.2521 -69.279 -40.3844 96.1692 run2.mat -1 -1 573 5926553 5927556 +11818476 11839168 20693 10286048.833 10287085.3896 -70.9182 -40.3876 92.4894 run2.mat -1 -1 573 5927711 5938058 +11839475 11860167 20693 10287100.6817 10288135.5326 -72.5707 -40.3876 92.5853 run2.mat -1 -1 573 5938211 5948557 +11860476 11881146 20671 10288151.1103 10289184.8514 -74.2172 -40.3869 92.6431 run2.mat -1 -1 573 5948712 5959048 +11881456 11902147 20692 10289200.2314 10290234.2885 -75.8687 -40.3871 92.6169 run2.mat -1 -1 573 5959203 5969548 +11902456 11911936 9481 10290249.7415 10290725.2039 -77.5137 -40.3871 92.6785 run2.mat -1 -1 573 5969703 5974443 +11996007 11999852 3846 10294927.6138 10295118.3759 -77.5204 -40.3871 94.147 run2.mat -1 -1 574 6016480 6018398 +289601 310040 20440 913023.8534 914048.8516 82.4673 6.7298 92.6666 run20.mat -1 -1 575 158638 168857 +310346 331038 20693 914064.0331 915096.6011 80.8147 6.7289 92.6001 run20.mat -1 -1 575 169010 179357 +331346 352043 20698 915111.8819 916146.8649 79.1649 6.7298 92.51 run20.mat -1 -1 575 179511 189860 +352356 373037 20682 916162.6443 917196.3609 77.5176 6.7294 92.6179 run20.mat -1 -1 575 190016 200357 +373348 385403 12056 917211.7936 917815.9281 75.8619 6.7293 92.6309 run20.mat -1 -1 575 200513 206540 +469723 477498 7776 922032.4041 922419.3253 75.8635 6.7292 93.5529 run20.mat -1 -1 576 248702 252590 +477804 498504 20701 922434.6282 923469.035 74.2147 6.7298 92.5458 run20.mat -1 -1 576 252743 263093 +498811 519503 20693 923484.1365 924519.8693 72.5659 6.7292 92.6163 run20.mat -1 -1 576 263247 273593 +519812 540502 20691 924535.4471 925569.4356 70.9141 6.7289 92.5793 run20.mat -1 -1 576 273748 284094 +540808 561480 20673 925584.8621 926618.9919 69.2656 6.7296 92.6776 run20.mat -1 -1 576 284247 294583 +561787 565503 3717 926634.4688 926821.6017 67.615 6.7292 92.6296 run20.mat -1 -1 576 294736 296595 +649649 665778 16130 931028.7642 931835.6777 67.6185 6.7304 93.2101 run20.mat -1 -1 577 338670 346734 +666107 686779 20673 931852.0004 932884.1104 65.9712 6.7284 92.6213 run20.mat -1 -1 577 346899 357235 +687087 707761 20675 932899.5134 933932.2061 64.3212 6.7294 92.6338 run20.mat -1 -1 577 357389 367727 +708066 728784 20719 933947.5822 934983.8063 62.6713 6.7291 92.5936 run20.mat -1 -1 577 367879 378238 +729089 745543 16455 934998.9383 935822.8272 61.0244 6.7285 92.7556 run20.mat -1 -1 577 378391 386618 +829754 833119 3366 940032.3478 940200.0185 61.0328 6.7295 95.1537 run20.mat -1 -1 578 428726 430409 +833447 854125 20679 940216.422 941252.5291 59.3741 6.7291 92.6058 run20.mat -1 -1 578 430573 440912 +854434 875120 20687 941267.9821 942301.0814 57.7296 6.7301 92.5648 run20.mat -1 -1 578 441066 451410 +875427 896119 20693 942316.3156 943351.1111 56.074 6.7295 92.5915 run20.mat -1 -1 578 451563 461910 +896427 917102 20676 943366.3919 944402.2041 54.4282 6.7304 92.5993 run20.mat -1 -1 578 462064 472402 +917408 925643 8236 944417.507 944827.8426 52.7773 6.729 92.7375 run20.mat -1 -1 578 472555 476672 +1009772 1021319 11548 949035.0355 949613.192 52.7763 6.7284 93.2443 run20.mat -1 -1 579 518739 524513 +1021649 1042321 20673 949629.8318 950663.4113 51.1299 6.7298 92.5545 run20.mat -1 -1 579 524678 535014 +1042629 1063323 20695 950678.6951 951711.5477 49.4741 6.729 92.6121 run20.mat -1 -1 579 535168 545515 +1063630 1084321 20692 951726.7876 952761.7922 47.8262 6.7297 92.6307 run20.mat -1 -1 579 545669 556015 +1084628 1105280 20653 952777.0873 953809.4569 46.1797 6.7286 92.7205 run20.mat -1 -1 579 556168 566495 +1105588 1105602 15 953824.8633 953825.5636 44.5117 6.7367 100.0464 run20.mat -1 -1 579 566649 566656 +1189937 1209762 19826 958042.3908 959033.3651 44.5272 6.7292 93.0534 run20.mat -1 -1 580 608825 618737 +1210072 1230766 20695 959048.9307 960083.6269 42.8766 6.7288 92.6231 run20.mat -1 -1 580 618892 629240 +1231072 1251743 20672 960099.0534 961133.1329 41.2267 6.7295 92.5597 run20.mat -1 -1 580 629393 639730 +1252050 1272763 20714 961148.6098 962182.7978 39.5783 6.73 92.4986 run20.mat -1 -1 580 639883 650240 +1273070 1285681 12612 962198.1843 962831.7754 37.932 6.7298 92.7038 run20.mat -1 -1 580 650393 656699 +1369997 1377200 7204 967046.7176 967405.4148 37.9329 6.7284 93.9665 run20.mat -1 -1 581 698859 702461 +1377531 1398216 20686 967421.8367 968457.9064 36.2812 6.7292 92.5429 run20.mat -1 -1 581 702626 712969 +1398528 1419211 20684 968473.6386 969504.5605 34.6306 6.7279 92.5863 run20.mat -1 -1 581 713125 723467 +1419525 1440202 20678 969520.5089 970555.3513 32.9833 6.7303 92.5941 run20.mat -1 -1 581 723624 733963 +1440513 1461191 20679 970570.7809 971605.6632 31.3343 6.7289 92.5867 run20.mat -1 -1 581 734119 744458 +1461501 1465761 4261 971621.2914 971835.171 29.69 6.7295 92.8758 run20.mat -1 -1 581 744613 746743 +1550008 1565479 15472 976046.3572 976819.0994 29.6878 6.7297 92.9389 run20.mat -1 -1 582 788868 796604 +1565802 1586482 20681 976835.3829 977870.8942 28.0359 6.7305 92.5747 run20.mat -1 -1 582 796766 807106 +1586789 1607477 20689 977886.2501 978921.1641 26.3894 6.7296 92.587 run20.mat -1 -1 582 807260 817604 +1607788 1628466 20679 978936.8427 979969.8895 24.7375 6.7287 92.5828 run20.mat -1 -1 582 817760 828099 +1628781 1645821 17041 979985.5176 980837.004 23.0901 6.7304 92.7329 run20.mat -1 -1 582 828257 836777 +1730117 1732760 2644 985049.6402 985182.9096 23.0956 6.7297 94.2786 run20.mat -1 -1 583 878927 880248 +1733091 1753762 20672 985199.5998 986233.0927 21.4368 6.7299 92.5449 run20.mat -1 -1 583 880414 890750 +1754070 1774762 20693 986248.4959 987285.3427 19.7894 6.7297 92.633 run20.mat -1 -1 583 890904 901250 +1775071 1795746 20676 987300.6731 988333.2712 18.1416 6.7289 92.6271 run20.mat -1 -1 583 901405 911743 +1796052 1816735 20684 988348.6977 989382.6364 16.4911 6.7306 92.6782 run20.mat -1 -1 583 911896 922238 +1817046 1825862 8817 989398.1924 989840.4108 14.8397 6.7287 92.6881 run20.mat -1 -1 583 922393 926801 +1910297 1921202 10906 994060.9965 994606.3614 14.8413 6.7292 93.1889 run20.mat -1 -1 584 969021 974473 +1921529 1942204 20676 994622.7182 995654.7665 13.1883 6.7292 92.595 run20.mat -1 -1 584 974637 984975 +1942510 1963186 20677 995670.0694 996706.1265 11.5411 6.7299 92.5904 run20.mat -1 -1 584 985128 995467 +1963494 1984204 20711 996721.5297 997755.8704 9.8912 6.729 92.5644 run20.mat -1 -1 584 995621 1005976 +1984511 2005165 20655 997771.1016 998806.4858 8.2443 6.73 92.7101 run20.mat -1 -1 584 1006129 1016457 +2005470 2006060 591 998821.8853 998851.157 6.5905 6.7392 92.2233 run20.mat -1 -1 584 1016609 1016904 +2090342 2109483 19142 1003064.2246 1004020.5042 6.5919 6.7297 92.8412 run20.mat -1 -1 585 1059047 1068618 +2109807 2130483 20677 1004036.582 1005071.1876 4.9452 6.7291 92.554 run20.mat -1 -1 585 1068780 1079118 +2130789 2151486 20698 1005086.494 1006121.6079 3.2976 6.728 92.5881 run20.mat -1 -1 585 1079271 1089621 +2151791 2172464 20674 1006136.8638 1007170.3748 1.6483 6.7288 92.6666 run20.mat -1 -1 585 1089773 1100110 +2172773 2186119 13347 1007185.7082 1007851.8494 0.0025805 6.7283 92.8041 run20.mat -1 -1 585 1100264 1106938 +2270201 2276582 6382 1012057.2369 1012375.0046 -0.0036394 6.7303 93.7442 run20.mat -1 -1 586 1148981 1152171 +2276902 2297588 20687 1012391.0258 1013427.55 -1.6478 6.7296 92.5083 run20.mat -1 -1 586 1152331 1162675 +2297906 2318585 20680 1013443.45 1014475.718 -3.2971 6.7292 92.5158 run20.mat -1 -1 586 1162834 1173174 +2318893 2339585 20693 1014491.121 1015527.1401 -4.9438 6.73 92.565 run20.mat -1 -1 586 1173328 1183674 +2339891 2360565 20675 1015542.5666 1016574.6477 -6.5946 6.7294 92.6726 run20.mat -1 -1 586 1183827 1194165 +2360871 2365980 5110 1016590.0742 1016844.3715 -8.2381 6.7286 92.6339 run20.mat -1 -1 586 1194318 1196872 +2450159 2464901 14743 1021056.9279 1021791.2513 -8.2443 6.7303 93.2495 run20.mat -1 -1 587 1238964 1246335 +2465225 2485887 20663 1021807.3291 1022841.2113 -9.8968 6.7297 92.5721 run20.mat -1 -1 587 1246497 1256829 +2486195 2506885 20691 1022856.7387 1023891.776 -11.5437 6.7298 92.5509 run20.mat -1 -1 587 1256983 1267328 +2507192 2527884 20693 1023907.2529 1024940.3457 -13.1941 6.7293 92.5898 run20.mat -1 -1 587 1267481 1277827 +2528191 2546060 17870 1024955.8257 1025850.7773 -14.844 6.7305 92.7417 run20.mat -1 -1 587 1277981 1286916 +2630366 2632304 1939 1030065.5369 1030163.2578 -14.8489 6.7305 96.684 run20.mat -1 -1 588 1329071 1330040 +2632623 2653307 20685 1030179.3429 1031211.8146 -16.4948 6.7302 92.5131 run20.mat -1 -1 588 1330200 1340542 +2653613 2674308 20696 1031226.9992 1032260.2617 -18.143 6.7295 92.5952 run20.mat -1 -1 588 1340695 1351043 +2674613 2695307 20695 1032275.5149 1033312.9284 -19.7912 6.7294 92.5896 run20.mat -1 -1 588 1351196 1361543 +2695616 2716308 20693 1033328.4409 1034362.4439 -21.4381 6.7291 92.7142 run20.mat -1 -1 588 1361698 1372044 +2716614 2726140 9527 1034377.6255 1034854.2082 -23.0914 6.7298 92.7788 run20.mat -1 -1 588 1372197 1376960 +2810354 2820545 10192 1039065.3667 1039575.0375 -23.0892 6.7283 93.2482 run20.mat -1 -1 589 1419069 1424164 +2820852 2841549 20698 1039590.3939 1040624.2534 -24.7367 6.7287 92.5503 run20.mat -1 -1 589 1424318 1434667 +2841868 2862548 20681 1040639.9483 1041676.3932 -26.3871 6.7293 92.5131 run20.mat -1 -1 589 1434827 1445167 +2862854 2883549 20696 1041691.8197 1042723.0994 -28.0331 6.7295 92.5734 run20.mat -1 -1 589 1445320 1455668 +2883856 2904529 20674 1042738.5529 1043772.5679 -29.6886 6.7291 92.6392 run20.mat -1 -1 589 1455822 1466159 +2904836 2906138 1303 1043788.0448 1043853.683 -31.3354 6.7294 93.3935 run20.mat -1 -1 589 1466312 1466963 +2990420 3008847 18428 1048068.5698 1048988.919 -31.3357 6.7305 92.9159 run20.mat -1 -1 590 1509106 1518320 +3009168 3029836 20669 1049004.8448 1050040.1415 -32.9841 6.7292 92.5502 run20.mat -1 -1 590 1518481 1528815 +3030152 3050848 20697 1050055.8192 1051089.2601 -34.6303 6.7285 92.5299 run20.mat -1 -1 590 1528973 1539321 +3051156 3071830 20675 1051104.663 1052137.3408 -36.2876 6.7287 92.6462 run20.mat -1 -1 590 1539475 1549813 +3072137 3086198 14062 1052152.8177 1052856.7639 -37.9329 6.7293 92.7621 run20.mat -1 -1 590 1549966 1556997 +3170416 3176111 5696 1057066.2609 1057351.539 -37.9436 6.7296 93.9332 run20.mat -1 -1 591 1599108 1601956 +3176416 3197111 20696 1057366.9151 1058402.48 -39.5864 6.7287 92.5385 run20.mat -1 -1 591 1602108 1612456 +3197419 3218112 20694 1058417.7638 1059452.9708 -41.2355 6.7295 92.5262 run20.mat -1 -1 591 1612610 1622957 +3218418 3239092 20675 1059468.3973 1060502.2262 -42.8823 6.7288 92.5792 run20.mat -1 -1 591 1623110 1633447 +3239399 3260074 20676 1060517.5153 1061553.3342 -44.532 6.7297 92.5789 run20.mat -1 -1 591 1633601 1643939 +3260384 3266239 5856 1061568.6022 1061858.1125 -46.1806 6.7291 92.9172 run20.mat -1 -1 591 1644094 1647021 +3350342 3364311 13970 1066066.8425 1066762.1512 -46.1808 6.7296 93.1388 run20.mat -1 -1 592 1689075 1696060 +3364617 3385310 20694 1066777.3328 1067812.1616 -47.8297 6.7299 92.6188 run20.mat -1 -1 592 1696213 1706560 +3385618 3406315 20698 1067827.4454 1068864.4556 -49.4768 6.7295 92.5712 run20.mat -1 -1 592 1706714 1717063 +3406620 3427313 20694 1068879.7114 1069914.1127 -51.1292 6.7304 92.5337 run20.mat -1 -1 592 1717215 1727562 +3427619 3446099 18481 1069929.2973 1070852.2485 -52.7758 6.73 92.6637 run20.mat -1 -1 592 1727715 1736956 +3530269 3531610 1342 1075062.792 1075129.6324 -52.7782 6.7243 97.1475 run20.mat -1 -1 593 1779042 1779713 +3531916 3552610 20695 1075144.817 1076178.1629 -54.4242 6.7293 92.6199 run20.mat -1 -1 593 1779866 1790214 +3552917 3573589 20673 1076193.5159 1077226.2127 -56.0738 6.7289 92.6061 run20.mat -1 -1 593 1790367 1800703 +3573897 3594592 20696 1077241.7401 1078277.0609 -57.7249 6.7297 92.6458 run20.mat -1 -1 593 1800857 1811206 +3594900 3615570 20671 1078292.5914 1079326.6362 -59.3742 6.729 92.6359 run20.mat -1 -1 593 1811360 1821695 +3615877 3626158 10282 1079342.1131 1079857.3801 -61.0245 6.7288 92.6809 run20.mat -1 -1 593 1821848 1826989 +3710102 3719630 9529 1084052.4703 1084530.3285 -61.0226 6.7297 93.4056 run20.mat -1 -1 594 1868963 1873727 +3719945 3740655 20711 1084546.0816 1085578.532 -62.672 6.7299 92.5069 run20.mat -1 -1 594 1873885 1884240 +3740964 3761632 20669 1085594.0496 1086629.6862 -64.322 6.7292 92.6021 run20.mat -1 -1 594 1884394 1894729 +3761938 3782654 20717 1086645.1158 1087679.4063 -65.9727 6.7289 92.5672 run20.mat -1 -1 594 1894882 1905240 +3782959 3803612 20654 1087694.6622 1088728.0837 -67.6239 6.73 92.7365 run20.mat -1 -1 594 1905393 1915720 +3803919 3805997 2079 1088743.5606 1088848.3196 -69.2691 6.7253 92.8683 run20.mat -1 -1 594 1915873 1916912 +3890260 3907931 17672 1093061.2434 1093947.8916 -69.2737 6.7302 92.9949 run20.mat -1 -1 595 1959046 1967882 +3908237 3928912 20676 1093963.0732 1094993.7903 -70.9206 6.7297 92.6164 run20.mat -1 -1 595 1968035 1978373 +3929216 3949913 20698 1095009.116 1096042.4268 -72.5738 6.7299 92.5717 run20.mat -1 -1 595 1978525 1988873 +3950220 3970914 20695 1096057.9068 1097093.9792 -74.2258 6.7297 92.5681 run20.mat -1 -1 595 1989027 1999375 +3971227 3986057 14831 1097109.6324 1097850.7069 -75.8655 6.729 92.7522 run20.mat -1 -1 595 1999531 2006946 +4070329 4075291 4963 1102065.1209 1102312.4122 -75.8636 6.7291 94.2268 run20.mat -1 -1 596 2049084 2051565 +4075622 4096315 20694 1102328.8341 1103362.8116 -77.5182 6.7291 92.4391 run20.mat -1 -1 596 2051731 2062078 +4096621 4117311 20691 1103378.118 1104414.5362 -79.1697 6.7303 92.6006 run20.mat -1 -1 596 2062231 2072576 +4117619 4138292 20674 1104430.0635 1105460.2868 -80.8189 6.7277 92.5801 run20.mat -1 -1 596 2072730 2083067 +4138601 4159292 20692 1105475.7906 1106511.8854 -82.4624 6.7288 92.6827 run20.mat -1 -1 596 2083221 2093567 +4159599 4166096 6498 1106527.3655 1106852.7335 -82.4661 8.4127 92.8599 run20.mat -1 -1 596 2093721 2096970 +4250239 4263457 13219 1111060.1285 1111720.995 -82.4635 8.4132 92.9428 run20.mat -1 -1 597 2139043 2145652 +4263773 4284472 20700 1111736.9256 1112773.052 -80.8137 8.4129 92.5916 run20.mat -1 -1 597 2145810 2156158 +4284778 4305450 20673 1112788.2366 1113819.5806 -79.1669 8.4136 92.618 run20.mat -1 -1 597 2156313 2166650 +4305760 4326455 20696 1113835.3258 1114870.5124 -77.5133 8.4128 92.5795 run20.mat -1 -1 597 2166805 2177153 +4326761 4345997 19237 1114886.0545 1115846.7903 -75.8686 8.4125 92.6751 run20.mat -1 -1 597 2177306 2186924 +4430297 4430903 607 1120061.3545 1120091.6603 -75.8515 8.4135 101.6212 run20.mat -1 -1 598 2229076 2229379 +4431220 4451873 20654 1120107.5134 1121140.4172 -74.2183 8.413 92.6367 run20.mat -1 -1 598 2229538 2239865 +4452181 4472872 20692 1121155.8204 1122191.6255 -72.5697 8.4123 92.5392 run20.mat -1 -1 598 2240019 2250364 +4473180 4493873 20694 1122207.0285 1123242.5463 -70.9187 8.4118 92.5271 run20.mat -1 -1 598 2250518 2260866 +4494179 4514855 20677 1123257.7279 1124293.0048 -69.2696 8.4122 92.6042 run20.mat -1 -1 598 2261019 2271357 +4515164 4526076 10913 1124308.5826 1124850.5045 -67.6234 8.4134 92.7481 run20.mat -1 -1 598 2271511 2276968 +4610302 4619222 8921 1129063.7293 1129510.0346 -67.6223 8.4135 93.5641 run20.mat -1 -1 599 2319083 2323543 +4619546 4640214 20669 1129526.2377 1130559.496 -65.9762 8.4135 92.508 run20.mat -1 -1 599 2323705 2334039 +4640523 4661221 20699 1130575.0706 1131608.6207 -64.3251 8.4133 92.6826 run20.mat -1 -1 599 2334194 2344543 +4661533 4682214 20682 1131624.3497 1132660.6708 -62.6767 8.4129 92.6105 run20.mat -1 -1 599 2344699 2355040 +4682521 4703194 20674 1132676.0879 1133708.7207 -61.0274 8.4135 92.6842 run20.mat -1 -1 599 2355194 2365530 +4703501 4706076 2576 1133724.0737 1133852.8484 -59.3738 8.413 92.907 run20.mat -1 -1 599 2365684 2366971 +4790149 4807298 17150 1138055.6343 1138914.1274 -59.377 8.4123 92.9051 run20.mat -1 -1 600 2409010 2417585 +4807618 4828295 20678 1138930.0036 1139963.0647 -57.7282 8.4128 92.5882 run20.mat -1 -1 600 2417745 2428084 +4828603 4849294 20692 1139978.5921 1141013.6753 -56.0763 8.4127 92.5642 run20.mat -1 -1 600 2428238 2438583 +4849602 4870296 20695 1141028.9591 1142065.0861 -54.4249 8.413 92.4938 run20.mat -1 -1 600 2438737 2449085 +4870603 4885936 15334 1142080.4393 1142846.5327 -52.7765 8.4124 92.6494 run20.mat -1 -1 600 2449239 2456905 +4970121 4974593 4473 1147055.7995 1147280.3451 -52.7747 8.4124 94.3537 run20.mat -1 -1 601 2498999 2501236 +4974907 4995614 20708 1147296.0512 1148330.3447 -51.1269 8.4133 92.5254 run20.mat -1 -1 601 2501393 2511747 +4995922 5016597 20676 1148345.6255 1149377.5049 -49.4726 8.4137 92.6496 run20.mat -1 -1 601 2511901 2522239 +5016902 5037594 20693 1149392.6368 1150429.0746 -47.8295 8.4136 92.5548 run20.mat -1 -1 601 2522392 2532738 +5037902 5058576 20675 1150444.3554 1151476.6112 -46.1773 8.4124 92.6279 run20.mat -1 -1 601 2532892 2543229 +5058884 5065996 7113 1151492.0144 1151847.6855 -44.5348 8.4129 92.7195 run20.mat -1 -1 601 2543383 2546939 +5150080 5162802 12723 1156052.8102 1156692.2708 -44.5297 8.4127 93.4168 run20.mat -1 -1 602 2588983 2595345 +5163116 5183794 20679 1156707.8916 1157739.8773 -42.8793 8.4131 92.6163 run20.mat -1 -1 602 2595502 2605841 +5184103 5204797 20695 1157755.2108 1158789.3821 -41.2306 8.4126 92.5117 run20.mat -1 -1 602 2605995 2616343 +5205104 5225778 20675 1158804.859 1159837.5225 -39.5831 8.4133 92.5637 run20.mat -1 -1 602 2616497 2626834 +5226092 5245855 19764 1159853.4156 1160841.8341 -37.9329 8.4127 92.7151 run20.mat -1 -1 602 2626991 2636873 +5330388 5351034 20647 1165068.7174 1166099.2739 -36.2893 8.4128 92.6572 run20.mat -1 -1 603 2679141 2689465 +5351342 5372014 20673 1166114.6769 1167150.9697 -34.6342 8.413 92.5977 run20.mat -1 -1 603 2689619 2699955 +5372320 5393015 20696 1167166.3994 1168200.1794 -32.9885 8.4128 92.6249 run20.mat -1 -1 603 2700108 2710456 +5393323 5413995 20673 1168215.4602 1169250.9553 -31.3384 8.4128 92.6383 run20.mat -1 -1 603 2710610 2720947 +5414300 5425895 11596 1169266.0873 1169844.2917 -29.6917 8.4139 92.7956 run20.mat -1 -1 603 2721099 2726897 +5509821 5518206 8386 1174039.0532 1174458.4011 -29.6926 8.4132 93.8022 run20.mat -1 -1 604 2768861 2773054 +5518523 5539214 20692 1174474.1284 1175510.7546 -28.0401 8.413 92.5467 run20.mat -1 -1 604 2773213 2783559 +5539522 5560210 20689 1175526.1575 1176559.2605 -26.3862 8.4136 92.573 run20.mat -1 -1 604 2783713 2794057 +5560520 5581213 20694 1176574.8887 1177612.1739 -24.7402 8.4129 92.5511 run20.mat -1 -1 604 2794212 2804559 +5581521 5602172 20652 1177627.5768 1178659.6757 -23.0929 8.4133 92.6864 run20.mat -1 -1 604 2804713 2815039 +5602481 5605714 3234 1178675.2535 1178836.8249 -21.4486 8.4117 92.8751 run20.mat -1 -1 604 2815194 2816810 +5689996 5706501 16506 1183051.2425 1183874.124 -21.4382 8.412 92.8987 run20.mat -1 -1 605 2858953 2867206 +5706810 5727495 20686 1183889.4545 1184923.7221 -19.7898 8.4133 92.5674 run20.mat -1 -1 605 2867361 2877704 +5727801 5748478 20678 1184938.9067 1185974.478 -18.1391 8.413 92.5841 run20.mat -1 -1 605 2877857 2888195 +5748787 5769477 20691 1185990.0502 1187022.9512 -16.4923 8.4133 92.6169 run20.mat -1 -1 605 2888350 2898695 +5769784 5785774 15991 1187038.4312 1187838.838 -14.8434 8.4125 92.7505 run20.mat -1 -1 605 2898849 2906844 +5870055 5873788 3734 1192053.4828 1192238.6882 -14.8533 8.4117 94.6645 run20.mat -1 -1 606 2948987 2950853 +5874102 5894776 20675 1192254.3018 1193288.574 -13.1876 8.4136 92.4804 run20.mat -1 -1 606 2951010 2961348 +5895085 5915777 20693 1193304.1549 1194337.3987 -11.5418 8.4131 92.6039 run20.mat -1 -1 606 2961502 2971849 +5916085 5936777 20693 1194352.926 1195388.8027 -9.894 8.4131 92.643 run20.mat -1 -1 606 2972003 2982349 +5937083 5957755 20673 1195403.9873 1196438.6709 -8.2454 8.4132 92.6035 run20.mat -1 -1 606 2982502 2992839 +5958061 5965854 7794 1196454.0974 1196843.3978 -6.5982 8.4134 92.9068 run20.mat -1 -1 606 2992992 2996888 +6049930 6061971 12042 1201045.4969 1201649.5418 -6.5927 8.4135 93.1428 run20.mat -1 -1 607 3038928 3044949 +6062280 6082957 20678 1201665.1196 1202696.8892 -4.9504 8.4133 92.5883 run20.mat -1 -1 607 3045103 3055442 +6083263 6103959 20697 1202711.9602 1203746.3719 -3.2988 8.4132 92.6057 run20.mat -1 -1 607 3055595 3065944 +6104267 6124958 20692 1203761.6527 1204796.7348 -1.6516 8.4129 92.6213 run20.mat -1 -1 607 3066098 3076444 +6125264 6145693 20430 1204812.1613 1205834.9589 -0.00431 8.4134 92.702 run20.mat -1 -1 607 3076597 3086812 +6229932 6250340 20409 1210045.5566 1211068.1511 1.6485 8.4131 93.0449 run20.mat -1 -1 608 3128933 3139138 +6250658 6271341 20684 1211084.0544 1212117.9821 3.2937 8.4135 92.5809 run20.mat -1 -1 608 3139297 3149638 +6271647 6292340 20694 1212133.1667 1213165.82 4.944 8.4132 92.5945 run20.mat -1 -1 608 3149791 3160139 +6292645 6313336 20692 1213180.952 1214217.0355 6.5929 8.4127 92.6015 run20.mat -1 -1 608 3160291 3170637 +6313645 6325753 12109 1214232.6164 1214837.1216 8.2491 8.413 92.812 run20.mat -1 -1 608 3170791 3176846 +6409956 6417567 7612 1219046.2663 1219428.6718 8.2489 8.414 93.6749 run20.mat -1 -1 609 3218949 3222754 +6417886 6438579 20694 1219444.6251 1220479.3767 9.896 8.4128 92.5587 run20.mat -1 -1 609 3222914 3233261 +6438887 6459578 20692 1220494.6606 1221530.4023 11.5434 8.4131 92.5903 run20.mat -1 -1 609 3233415 3243761 +6459887 6480558 20672 1221545.98 1222578.2771 13.1912 8.4128 92.6308 run20.mat -1 -1 609 3243916 3254252 +6480866 6501540 20675 1222593.5609 1223625.8348 14.8431 8.4133 92.6847 run20.mat -1 -1 609 3254406 3264743 +6501847 6505773 3927 1223641.3118 1223839.2016 16.4951 8.413 92.8561 run20.mat -1 -1 609 3264896 3266859 +6589770 6605595 15826 1228039.8222 1228830.874 16.4935 8.4131 93.0537 run20.mat -1 -1 610 3308860 3316773 +6605913 6626600 20688 1228846.6509 1229880.9831 18.1362 8.4127 92.591 run20.mat -1 -1 610 3316932 3327276 +6626909 6647580 20672 1229896.3136 1230928.8332 19.7893 8.4133 92.5654 run20.mat -1 -1 610 3327430 3337766 +6647886 6668600 20715 1230944.2597 1231981.7053 21.4327 8.4128 92.6182 run20.mat -1 -1 610 3337919 3348277 +6668908 6685593 16686 1231996.9861 1232828.4775 23.089 8.4127 92.7876 run20.mat -1 -1 610 3348431 3356773 +6769810 6772837 3028 1237040.677 1237193.3216 23.0889 8.4124 94.8914 run20.mat -1 -1 611 3398884 3400398 +6773151 6793822 20672 1237209.1514 1238241.8388 24.7345 8.413 92.5937 run20.mat -1 -1 611 3400555 3410890 +6794132 6814833 20702 1238257.2219 1239292.2806 26.3834 8.413 92.6366 run20.mat -1 -1 611 3411045 3421396 +6815147 6822052 6906 1239307.8591 1239654.1867 28.0298 8.4125 92.6255 run20.mat -1 -1 611 3421553 3425006 +6822305 6835819 13515 1239666.9413 1240341.4319 28.0289 8.4133 92.5433 run20.mat -1 -1 611 3425132 3431890 +6836126 6856801 20676 1240356.6661 1241390.1816 29.6856 8.4133 92.5997 run20.mat -1 -1 611 3432043 3442381 +6857105 6865632 8528 1241405.3875 1241833.0716 31.3377 8.4133 92.7236 run20.mat -1 -1 611 3442533 3446797 +6949668 6960905 11238 1246033.6201 1246596.3725 31.3348 8.4131 93.14 run20.mat -1 -1 612 3488817 3494436 +6961213 6981882 20670 1246611.6533 1247646.4834 32.986 8.4132 92.5836 run20.mat -1 -1 612 3494590 3504925 +6982188 7002900 20713 1247661.9099 1248693.899 34.6315 8.4131 92.5858 run20.mat -1 -1 612 3505078 3515434 +7003208 7023884 20677 1248709.302 1249745.364 36.2846 8.4131 92.5997 run20.mat -1 -1 612 3515588 3525927 +7024188 7044861 20674 1249760.5698 1250794.8383 37.9355 8.4138 92.7655 run20.mat -1 -1 612 3526079 3536416 +7045168 7045472 305 1250810.0695 1250825.1518 39.5677 8.4084 93.3594 run20.mat -1 -1 612 3536569 3536721 +7131831 7151343 19513 1255142.5146 1256117.0244 39.5842 8.4137 93.0173 run20.mat -1 -1 613 3579902 3589659 +7151653 7172343 20691 1256132.5274 1257166.8782 41.2293 8.4127 92.5837 run20.mat -1 -1 613 3589814 3600159 +7172652 7193329 20678 1257182.2086 1258218.1497 42.8798 8.4128 92.5773 run20.mat -1 -1 613 3600314 3610652 +7193645 7214343 20699 1258233.8305 1259267.069 44.5304 8.4132 92.6588 run20.mat -1 -1 613 3610810 3621160 +7214648 7227591 12944 1259282.4482 1259932.8915 46.1824 8.4129 92.7524 run20.mat -1 -1 613 3621312 3627784 +7311624 7318388 6765 1264132.0847 1264469.7297 46.1742 8.4132 93.5323 run20.mat -1 -1 614 3669803 3673152 +7318713 7339390 20678 1264485.8539 1265521.7499 47.8284 8.4129 92.4972 run20.mat -1 -1 614 3673347 3683686 +7339705 7360382 20678 1265537.503 1266569.6578 49.4751 8.4138 92.6336 run20.mat -1 -1 614 3683844 3694183 +7360689 7381386 20698 1266585.011 1267621.3253 51.13 8.4129 92.4748 run20.mat -1 -1 614 3694336 3704685 +7381702 7402360 20659 1267637.003 1268668.0389 52.7721 8.4124 92.6288 run20.mat -1 -1 614 3704843 3715173 +7402667 7407412 4746 1268683.2701 1268920.8889 54.4247 8.413 92.8678 run20.mat -1 -1 614 3715326 3717699 +7491693 7506818 15126 1273136.6946 1273890.4661 54.4222 8.4135 93.0758 run20.mat -1 -1 615 3759841 3767404 +7507132 7527822 20691 1273906.1694 1274942.9769 56.0692 8.413 92.5462 run20.mat -1 -1 615 3767561 3777907 +7528130 7548802 20673 1274958.3799 1275992.2728 57.7229 8.4128 92.6659 run20.mat -1 -1 615 3778061 3788397 +7549110 7569801 20692 1276007.6787 1277040.5471 59.3702 8.4132 92.5737 run20.mat -1 -1 615 3788551 3798897 +7570109 7587452 17344 1277055.8511 1277922.2455 61.0225 8.4132 92.7191 run20.mat -1 -1 615 3799051 3807723 +7671549 7674032 2484 1282131.0191 1282254.2082 61.0188 8.4135 95.6861 run20.mat -1 -1 616 3849773 3851015 +7674348 7695043 20696 1282269.8859 1283302.3432 62.6702 8.4128 92.5405 run20.mat -1 -1 616 3851173 3861521 +7695350 7716023 20674 1283317.6964 1284351.791 64.3204 8.413 92.6363 run20.mat -1 -1 616 3861674 3872011 +7716331 7737025 20695 1284367.3215 1285404.0614 65.9739 8.414 92.4762 run20.mat -1 -1 616 3872165 3882513 +7737333 7758011 20679 1285419.4643 1286452.9639 67.6222 8.4133 92.6591 run20.mat -1 -1 616 3882667 3893006 +7758319 7767311 8993 1286468.2447 1286916.5926 69.2735 8.412 92.7909 run20.mat -1 -1 616 3893160 3897656 +7851593 7862332 10740 1291132.8684 1291666.4638 69.2673 8.4127 93.1666 run20.mat -1 -1 617 3939799 3945169 +7862647 7883327 20681 1291682.344 1292717.3376 70.9201 8.4135 92.4942 run20.mat -1 -1 617 3945326 3955667 +7883632 7904325 20694 1292732.4695 1293766.2289 72.5719 8.4133 92.56 run20.mat -1 -1 617 3955819 3966166 +7904634 7925323 20690 1293781.6819 1294818.3901 74.2217 8.413 92.623 run20.mat -1 -1 617 3966321 3976666 +7925631 7946285 20655 1294833.7933 1295867.7463 75.8677 8.4129 92.7153 run20.mat -1 -1 617 3976820 3987147 +7946593 7947390 798 1295883.1493 1295922.7285 77.4978 8.4099 93.2662 run20.mat -1 -1 617 3987301 3987700 +8031434 8050403 18970 1300122.5408 1301070.4314 77.5151 8.4135 92.8985 run20.mat -1 -1 618 4029723 4039208 +8050714 8071389 20676 1301085.9228 1302121.9036 79.1624 8.4133 92.5619 run20.mat -1 -1 618 4039364 4049702 +8071704 8092387 20684 1302137.5317 1303171.8202 80.8142 8.4135 92.5616 run20.mat -1 -1 618 4049859 4060201 +8092697 8113047 20351 1303187.2002 1304204.8698 82.4626 8.413 92.6185 run20.mat -1 -1 618 4060356 4070532 +282364 302793 20430 1418406.2225 1419428.1328 82.462 10.0926 92.7188 run21.mat -1 -1 620 168640 178855 +303100 323797 20698 1419443.7257 1420477.9577 80.8123 10.093 92.5616 run21.mat -1 -1 620 179008 189358 +324104 344797 20694 1420493.4346 1421528.6944 79.1663 10.0926 92.5381 run21.mat -1 -1 620 189511 199858 +345103 365799 20697 1421543.9973 1422578.0517 77.5157 10.0931 92.5448 run21.mat -1 -1 620 200011 210359 +366103 378153 12051 1422593.2547 1423195.8744 75.8619 10.0926 92.5195 run21.mat -1 -1 620 210511 216536 +462396 470095 7700 1427408.7455 1427793.3525 75.868 10.0925 93.1483 run21.mat -1 -1 621 258659 262510 +470425 491116 20692 1427809.7281 1428844.4509 74.2185 10.0925 92.5576 run21.mat -1 -1 621 262675 273020 +491422 512095 20674 1428859.7538 1429893.3896 72.5694 10.0925 92.6349 run21.mat -1 -1 621 273173 283510 +512404 533096 20693 1429908.72 1430942.7102 70.9176 10.0927 92.532 run21.mat -1 -1 621 283665 294011 +533404 554078 20675 1430958.2375 1431993.2778 69.2723 10.093 92.6598 run21.mat -1 -1 621 294165 304503 +554386 558213 3828 1432008.681 1432199.2756 67.6174 10.0924 92.7156 run21.mat -1 -1 621 304657 306570 +642244 658157 15914 1436401.6597 1437197.518 67.6226 10.0924 92.9895 run21.mat -1 -1 622 348588 356545 +658483 679159 20677 1437213.8214 1438245.9279 65.9737 10.0924 92.561 run21.mat -1 -1 622 356708 367046 +679466 700161 20696 1438261.2808 1439297.7346 64.3195 10.0926 92.6054 run21.mat -1 -1 622 367200 377548 +700466 721158 20693 1439313.1138 1440344.6503 62.6721 10.0928 92.5865 run21.mat -1 -1 622 377700 388047 +721466 738053 16588 1440359.9341 1441190.8551 61.0211 10.0921 92.7938 run21.mat -1 -1 622 388201 396494 +822138 825276 3139 1445395.721 1445551.4066 61.0248 10.0934 95.0841 run21.mat -1 -1 623 438539 440108 +825607 846277 20671 1445567.8285 1446602.9906 59.3704 10.0925 92.5144 run21.mat -1 -1 623 440273 450609 +846584 867282 20699 1446618.3435 1447653.538 57.724 10.093 92.6 run21.mat -1 -1 623 450762 461112 +867586 888278 20693 1447668.6204 1448703.4871 56.0713 10.0931 92.5374 run21.mat -1 -1 623 461264 471610 +888585 909265 20681 1448718.7823 1449752.9375 54.4216 10.0926 92.6435 run21.mat -1 -1 623 471764 482104 +909583 917933 8351 1449768.9689 1450183.8389 52.7758 10.0929 92.5856 run21.mat -1 -1 623 482263 486438 +1002134 1013524 11391 1454394.9962 1454965.0371 52.7732 10.0929 93.3446 run21.mat -1 -1 624 528541 534236 +1013858 1034538 20681 1454981.8786 1456016.1843 51.1282 10.0928 92.4961 run21.mat -1 -1 624 534403 544743 +1034848 1055518 20671 1456031.4524 1457064.8791 49.4757 10.093 92.6118 run21.mat -1 -1 624 544898 555234 +1055826 1076521 20696 1457080.16 1458114.8891 47.8252 10.0926 92.5796 run21.mat -1 -1 624 555388 565736 +1076829 1097481 20653 1458130.1699 1459164.5939 46.178 10.0925 92.7011 run21.mat -1 -1 624 565890 576216 +1097792 1097952 161 1459180.1471 1459188.1488 44.5521 10.0997 94.7947 run21.mat -1 -1 624 576372 576452 +1182067 1201743 19677 1463393.5783 1464376.0335 44.5333 10.0927 92.9521 run21.mat -1 -1 625 618511 628349 +1202055 1222756 20702 1464391.6368 1465427.3219 42.8796 10.0933 92.5978 run21.mat -1 -1 625 628505 638856 +1223064 1243740 20677 1465442.6027 1466476.4003 41.2316 10.0928 92.6462 run21.mat -1 -1 625 639010 649349 +1244046 1264740 20695 1466491.7032 1467524.9778 39.5797 10.0927 92.6205 run21.mat -1 -1 625 649502 659849 +1265048 1277832 12785 1467540.5051 1468180.8025 37.9356 10.093 92.7419 run21.mat -1 -1 625 660003 666396 +1362063 1369007 6945 1472392.1163 1472740.1883 37.934 10.0929 93.5846 run21.mat -1 -1 626 708513 711985 +1369318 1390018 20701 1472755.8669 1473790.2564 36.2869 10.0921 92.5224 run21.mat -1 -1 626 712141 722491 +1390327 1411019 20693 1473805.7094 1474839.9034 34.6324 10.093 92.6761 run21.mat -1 -1 626 722646 732992 +1411327 1432021 20695 1474855.1842 1475888.9508 32.9843 10.0926 92.5102 run21.mat -1 -1 626 733146 743493 +1432328 1453002 20675 1475904.3072 1476938.8182 31.3364 10.0926 92.604 run21.mat -1 -1 626 743647 753984 +1453306 1457892 4587 1476953.9035 1477184.2535 29.6795 10.0919 92.4537 run21.mat -1 -1 626 754136 756430 +1541874 1557077 15204 1481383.0111 1482143.4144 29.687 10.0929 93.1336 run21.mat -1 -1 627 798422 806024 +1557407 1578080 20674 1482160.0508 1483194.9806 28.0294 10.0927 92.5722 run21.mat -1 -1 627 806189 816526 +1578386 1599080 20695 1483210.2838 1484243.1895 26.3854 10.0925 92.633 run21.mat -1 -1 627 816679 827026 +1599387 1620082 20696 1484258.5424 1485295.5412 24.7325 10.0924 92.6315 run21.mat -1 -1 627 827180 837528 +1620387 1637732 17346 1485310.6731 1486175.2986 23.0875 10.092 92.7394 run21.mat -1 -1 627 837681 846353 +1723881 1726356 2476 1490484.3761 1490609.6128 23.0886 10.0926 95.877 run21.mat -1 -1 628 889430 890667 +1726685 1747358 20674 1490626.0696 1491657.2874 21.4307 10.0928 92.5695 run21.mat -1 -1 628 890832 901169 +1747666 1768359 20694 1491672.9551 1492708.3036 19.7849 10.0918 92.6157 run21.mat -1 -1 628 901323 911670 +1768665 1789360 20696 1492723.6095 1493758.1203 18.1378 10.0922 92.5547 run21.mat -1 -1 628 911823 922171 +1789666 1810341 20676 1493773.3049 1494806.8873 16.4908 10.0922 92.5615 run21.mat -1 -1 628 922324 932661 +1810646 1819651 9006 1494822.1431 1495272.537 14.8429 10.093 92.695 run21.mat -1 -1 628 932814 937317 +1903717 1914437 10721 1499475.8901 1500012.7107 14.8392 10.0925 93.3895 run21.mat -1 -1 629 979352 984712 +1914761 1935446 20686 1500028.7853 1501063.0623 13.1931 10.0931 92.4765 run21.mat -1 -1 629 984874 995217 +1935761 1956439 20679 1501078.6935 1502112.5859 11.5412 10.0923 92.5466 run21.mat -1 -1 629 995374 1005714 +1956747 1977438 20692 1502127.8698 1503162.4073 9.8949 10.0929 92.6015 run21.mat -1 -1 629 1005868 1016214 +1977744 1998419 20676 1503177.5919 1504211.3355 8.2459 10.0926 92.6908 run21.mat -1 -1 629 1016367 1026705 +1998726 1999491 766 1504226.5697 1504264.5312 6.5933 10.093 92.6877 run21.mat -1 -1 629 1026858 1027241 +2083593 2102558 18966 1508472.1674 1509418.9994 6.5973 10.0935 92.8972 run21.mat -1 -1 630 1069294 1078770 +2102864 2123580 20717 1509434.181 1510469.9774 4.9449 10.0933 92.6288 run21.mat -1 -1 630 1078930 1089288 +2123889 2144561 20673 1510485.3108 1511517.7411 3.2963 10.0924 92.6103 run21.mat -1 -1 630 1089442 1099779 +2144869 2165561 20693 1511533.2684 1512566.7192 1.6486 10.0923 92.6186 run21.mat -1 -1 630 1099933 1110280 +2165866 2179390 13525 1512581.8512 1513259.9313 0.0016919 10.0925 92.8143 run21.mat -1 -1 630 1110432 1117194 +2263551 2269699 6149 1517468.3761 1517774.3078 -0.0041856 10.0918 93.5607 run21.mat -1 -1 631 1159277 1162351 +2270025 2290720 20696 1517790.4816 1518827.0694 -1.6513 10.0927 92.4858 run21.mat -1 -1 631 1162514 1172862 +2291027 2311701 20675 1518842.5463 1519876.2407 -3.3016 10.0926 92.6233 run21.mat -1 -1 631 1173016 1183353 +2312009 2332716 20708 1519891.5215 1520925.7841 -4.9469 10.0928 92.621 run21.mat -1 -1 631 1183507 1193861 +2333022 2353681 20660 1520940.9657 1521973.0538 -6.5991 10.0926 92.6655 run21.mat -1 -1 631 1194014 1204343 +2353990 2359311 5322 1521988.5102 1522254.6328 -8.2513 10.092 92.6632 run21.mat -1 -1 631 1204498 1207159 +2443457 2457978 14522 1526462.5116 1527188.9895 -8.2476 10.0924 93.0742 run21.mat -1 -1 632 1249234 1256494 +2458303 2478980 20678 1527205.3772 1528239.3957 -9.9007 10.0924 92.61 run21.mat -1 -1 632 1256657 1266996 +2479288 2499975 20688 1528254.6765 1529288.6904 -11.5463 10.0924 92.6331 run21.mat -1 -1 632 1267150 1277494 +2500287 2520969 20683 1529304.2936 1530340.7484 -13.1932 10.0932 92.5342 run21.mat -1 -1 632 1277650 1287992 +2521281 2539210 17930 1530356.2622 1531250.3559 -14.8467 10.0931 92.7101 run21.mat -1 -1 632 1288148 1297112 +2623344 2625105 1762 1535456.595 1535545.3909 -14.8471 10.0907 96.7304 run21.mat -1 -1 633 1339181 1340061 +2625416 2646121 20706 1535561.0726 1536596.8752 -16.4929 10.0925 92.5465 run21.mat -1 -1 633 1340217 1350570 +2646428 2667101 20674 1536612.2512 1537645.8889 -18.1399 10.093 92.6462 run21.mat -1 -1 633 1350724 1361061 +2667411 2688122 20712 1537661.2689 1538696.1735 -19.7914 10.0925 92.6233 run21.mat -1 -1 633 1361216 1371571 +2688428 2709103 20676 1538711.6031 1539746.7217 -21.4384 10.093 92.5245 run21.mat -1 -1 633 1371724 1382062 +2709412 2719129 9718 1539762.3025 1540247.7198 -23.0804 10.0928 92.7012 run21.mat -1 -1 633 1382217 1387076 +2803322 2813359 10038 1544456.6534 1544960.5124 -23.0912 10.0929 93.3776 run21.mat -1 -1 634 1429174 1434193 +2813684 2834380 20697 1544976.6366 1546009.5284 -24.7358 10.0923 92.573 run21.mat -1 -1 634 1434355 1444704 +2834689 2855382 20694 1546024.8618 1547059.8633 -26.3873 10.093 92.5378 run21.mat -1 -1 634 1444858 1455205 +2855689 2876381 20693 1547075.3402 1548110.5287 -28.033 10.093 92.5479 run21.mat -1 -1 634 1455359 1465705 +2876689 2897343 20655 1548126.0561 1549159.2785 -29.6875 10.0927 92.6761 run21.mat -1 -1 634 1465859 1476187 +2897650 2899149 1500 1549174.6481 1549249.0181 -31.332 10.0928 92.8632 run21.mat -1 -1 634 1476340 1477090 +2983222 3001480 18259 1553453.341 1554363.2912 -31.3336 10.0935 93.0118 run21.mat -1 -1 635 1519128 1528258 +3001802 3022483 20682 1554379.2758 1555413.3966 -32.9855 10.0932 92.4973 run21.mat -1 -1 635 1528419 1538760 +3022790 3043466 20677 1555428.6308 1556463.4281 -34.6366 10.0928 92.6077 run21.mat -1 -1 635 1538913 1549251 +3043783 3064460 20678 1556479.4092 1557515.0079 -36.2854 10.0932 92.6658 run21.mat -1 -1 635 1549410 1559749 +3064768 3079009 14242 1557530.2918 1558242.7511 -37.9393 10.0924 92.7525 run21.mat -1 -1 635 1559903 1567023 +3163060 3168519 5460 1562444.52 1562717.6991 -37.9412 10.0919 94.1616 run21.mat -1 -1 636 1609051 1611780 +3168826 3189547 20722 1562733.0525 1563768.6588 -39.5854 10.0923 92.5794 run21.mat -1 -1 636 1611934 1622295 +3189851 3210547 20697 1563783.9845 1564817.2404 -41.2335 10.0921 92.5185 run21.mat -1 -1 636 1622447 1632795 +3210859 3231541 20683 1564832.9726 1565866.6242 -42.8805 10.0924 92.6083 run21.mat -1 -1 636 1632951 1643293 +3231849 3252542 20694 1565882.0271 1566918.3543 -44.5361 10.0926 92.6403 run21.mat -1 -1 636 1643447 1653794 +3252849 3258848 6000 1566933.8312 1567232.3673 -46.1813 10.0931 92.6973 run21.mat -1 -1 636 1653948 1656947 +3343138 3356865 13728 1571446.925 1572134.4037 -46.1824 10.0923 93.0821 run21.mat -1 -1 637 1699094 1705958 +3357181 3377862 20682 1572150.3343 1573185.5629 -47.8288 10.0929 92.5261 run21.mat -1 -1 637 1706116 1716456 +3378170 3398864 20695 1573200.9688 1574233.9421 -49.4769 10.0929 92.5961 run21.mat -1 -1 637 1716610 1726958 +3399168 3419862 20695 1574249.1452 1575284.108 -51.1268 10.093 92.5473 run21.mat -1 -1 637 1727110 1737457 +3420167 3438908 18742 1575299.243 1576235.5556 -52.7743 10.0925 92.7161 run21.mat -1 -1 637 1737610 1746981 +3522994 3523980 987 1580442.3897 1580492.0761 -52.7815 10.0935 99.0235 run21.mat -1 -1 638 1789026 1789519 +3524306 3544981 20676 1580508.5039 1581540.7173 -54.4262 10.0932 92.5669 run21.mat -1 -1 638 1789682 1800020 +3545289 3565982 20694 1581556.2446 1582589.4489 -56.0715 10.0928 92.5529 run21.mat -1 -1 638 1800174 1810521 +3566291 3586981 20691 1582605.0266 1583641.3827 -57.7273 10.0925 92.5684 run21.mat -1 -1 638 1810675 1821021 +3587288 3607962 20675 1583656.7391 1584689.7022 -59.3722 10.0929 92.5894 run21.mat -1 -1 638 1821174 1831512 +3608268 3618787 10520 1584705.0081 1585231.7416 -61.0254 10.0926 92.741 run21.mat -1 -1 638 1831665 1836925 +3702891 3712201 9311 1589435.3881 1589901.4713 -61.0248 10.0926 93.7846 run21.mat -1 -1 639 1878978 1883634 +3712526 3733204 20679 1589917.8556 1590950.8195 -62.6712 10.0925 92.502 run21.mat -1 -1 639 1883796 1894135 +3733513 3754224 20712 1590966.4596 1592002.4534 -64.3237 10.0927 92.4904 run21.mat -1 -1 639 1894290 1904646 +3754532 3775203 20672 1592017.7372 1593052.9366 -65.9756 10.0923 92.5679 run21.mat -1 -1 639 1904800 1915136 +3775511 3796182 20672 1593068.3431 1594101.971 -67.6242 10.0926 92.6728 run21.mat -1 -1 639 1915290 1925626 +3796491 3798787 2297 1594117.3045 1594231.2386 -69.2715 10.0932 92.4321 run21.mat -1 -1 639 1925780 1926929 +3882857 3900301 17445 1598436.5768 1599308.35 -69.2735 10.0919 93.0517 run21.mat -1 -1 640 1968965 1977687 +3900629 3921292 20664 1599324.75 1600358.1671 -70.9208 10.0929 92.5599 run21.mat -1 -1 640 1977851 1988184 +3921608 3942304 20697 1600373.7306 1601406.7819 -72.5727 10.0923 92.5896 run21.mat -1 -1 640 1988342 1998690 +3942610 3963305 20696 1601421.9635 1602456.4153 -74.2224 10.0931 92.6458 run21.mat -1 -1 640 1998843 2009191 +3963612 3978627 15016 1602471.7682 1603223.3095 -75.8704 10.093 92.6436 run21.mat -1 -1 640 2009345 2016852 +4062910 4067602 4693 1607437.6331 1607670.7951 -75.873 10.093 94.1266 run21.mat -1 -1 641 2058996 2061342 +4067909 4088624 20716 1607686.272 1608724.3954 -77.5174 10.093 92.5913 run21.mat -1 -1 641 2061495 2071853 +4088929 4109623 20695 1608739.5304 1609774.1343 -79.1675 10.0923 92.537 run21.mat -1 -1 641 2072006 2082353 +4109931 4130606 20676 1609789.6616 1610821.8766 -80.8172 10.0929 92.5935 run21.mat -1 -1 641 2082507 2092845 +4130915 4151585 20671 1610837.4574 1611873.4346 -82.463 10.0928 92.5734 run21.mat -1 -1 641 2093000 2103335 +4151894 4158707 6814 1611889.0123 1612226.5256 -82.4709 11.7748 92.6726 run21.mat -1 -1 641 2103490 2106896 +4242705 4255714 13010 1616427.9958 1617076.6068 -82.4638 11.7757 93.2123 run21.mat -1 -1 642 2148897 2155414 +4256029 4276719 20691 1617092.3628 1618127.1742 -80.815 11.7766 92.5344 run21.mat -1 -1 642 2155559 2165904 +4277028 4297703 20676 1618142.6307 1619178.528 -79.1662 11.7762 92.6411 run21.mat -1 -1 642 2166059 2176397 +4298009 4318707 20699 1619193.9576 1620227.3001 -77.5171 11.7762 92.6401 run21.mat -1 -1 642 2176550 2186900 +4319014 4338587 19574 1620242.777 1621220.4033 -75.8659 11.7767 92.6579 run21.mat -1 -1 642 2187053 2196841 +4422865 4423172 308 1625435.4912 1625450.7224 -75.8456 11.7781 114.8488 run21.mat -1 -1 643 2238981 2239135 +4423491 4444165 20675 1625466.6013 1626500.4725 -74.2231 11.776 92.6459 run21.mat -1 -1 643 2239294 2249631 +4444474 4465149 20676 1626515.8643 1627549.015 -72.5717 11.776 92.5587 run21.mat -1 -1 643 2249786 2260124 +4465456 4486127 20672 1627564.368 1628599.0359 -70.9224 11.7764 92.615 run21.mat -1 -1 643 2260277 2270614 +4486439 4507149 20711 1628614.7649 1629651.5127 -69.2728 11.7762 92.6223 run21.mat -1 -1 643 2270770 2281125 +4507454 4518646 11193 1629666.7691 1630224.5398 -67.6256 11.7755 92.885 run21.mat -1 -1 643 2281277 2286874 +4602700 4611330 8631 1634426.8276 1634859.4877 -67.6281 11.7762 93.7717 run21.mat -1 -1 644 2328903 2333217 +4611638 4632324 20687 1634874.6601 1635907.9615 -65.9754 11.7759 92.5553 run21.mat -1 -1 644 2333371 2343715 +4632634 4653326 20693 1635923.3415 1636959.021 -64.3224 11.7763 92.6265 run21.mat -1 -1 644 2343870 2354217 +4653634 4674327 20694 1636974.5514 1638009.0322 -62.6737 11.7762 92.5886 run21.mat -1 -1 644 2354371 2364718 +4674633 4695289 20657 1638024.2168 1639058.6583 -61.0246 11.777 92.7405 run21.mat -1 -1 644 2364871 2375199 +4695599 4698466 2868 1639073.9263 1639215.1311 -59.3792 11.7773 92.9487 run21.mat -1 -1 644 2375354 2376788 +4782750 4799715 16966 1643430.4708 1644276.9429 -59.3746 11.776 93.0773 run21.mat -1 -1 645 2418931 2427414 +4800035 4820727 20693 1644292.946 1645329.8099 -57.7261 11.7764 92.5644 run21.mat -1 -1 645 2427574 2437920 +4821035 4841707 20673 1645345.2159 1646377.6217 -56.0732 11.7762 92.5925 run21.mat -1 -1 645 2438074 2448411 +4842012 4862709 20698 1646392.9978 1647428.605 -54.4251 11.776 92.6133 run21.mat -1 -1 645 2448564 2458912 +4863016 4878505 15490 1647443.8392 1648218.4453 -52.773 11.7755 92.7101 run21.mat -1 -1 645 2459066 2466811 +4962674 4966997 4324 1652427.2489 1652642.211 -52.7754 11.7756 95.0988 run21.mat -1 -1 646 2508897 2511059 +4967315 4988007 20693 1652658.1141 1653693.8425 -51.1276 11.7769 92.4965 run21.mat -1 -1 646 2511218 2521565 +4988312 5009007 20696 1653709.2186 1654742.4088 -49.4767 11.7772 92.588 run21.mat -1 -1 646 2521717 2532065 +5009313 5029986 20674 1654757.8352 1655790.7948 -47.8265 11.776 92.4941 run21.mat -1 -1 646 2532218 2542555 +5030293 5050966 20674 1655806.026 1656841.7493 -46.1795 11.7763 92.6624 run21.mat -1 -1 646 2542708 2553045 +5051272 5058565 7294 1656857.0523 1657220.8694 -44.5299 11.7756 92.5316 run21.mat -1 -1 646 2553198 2556845 +5142538 5155084 12547 1661420.1624 1662048.14 -44.5293 11.7766 93.1585 run21.mat -1 -1 647 2598833 2605107 +5155399 5176066 20668 1662063.8933 1663096.4132 -42.8811 11.7763 92.518 run21.mat -1 -1 647 2605264 2615598 +5176372 5197069 20698 1663111.7628 1664148.6531 -41.2305 11.7769 92.649 run21.mat -1 -1 647 2615751 2626100 +5197377 5218087 20711 1664163.9339 1665196.0623 -39.5863 11.7765 92.6044 run21.mat -1 -1 647 2626254 2636610 +5218393 5238425 20033 1665211.3655 1666215.2262 -37.9361 11.7763 92.6805 run21.mat -1 -1 647 2636763 2646778 +5322786 5343366 20581 1670430.6028 1671462.8125 -36.2905 11.7766 92.861 run21.mat -1 -1 648 2688961 2699252 +5343674 5364350 20677 1671478.2154 1672511.3657 -34.6342 11.7767 92.5871 run21.mat -1 -1 648 2699406 2709744 +5364674 5385356 20683 1672527.4404 1673559.9641 -32.9868 11.7767 92.5803 run21.mat -1 -1 648 2709906 2720248 +5385671 5406348 20678 1673575.8443 1674610.2263 -31.3382 11.7764 92.654 run21.mat -1 -1 648 2720405 2730744 +5406656 5418504 11849 1674625.7536 1675218.2183 -29.6866 11.7772 92.8944 run21.mat -1 -1 648 2730898 2736822 +5502536 5510406 7871 1679422.2446 1679812.8063 -29.69 11.7763 93.5449 run21.mat -1 -1 649 2778840 2782775 +5510720 5531409 20690 1679828.3848 1680864.8782 -28.0363 11.7762 92.6304 run21.mat -1 -1 649 2782932 2793278 +5531714 5552411 20698 1680880.0101 1681914.6453 -26.3864 11.7766 92.5949 run21.mat -1 -1 649 2793430 2803779 +5552718 5573410 20693 1681929.9983 1682964.8047 -24.738 11.7769 92.5648 run21.mat -1 -1 649 2803933 2814279 +5573716 5594373 20658 1682979.9863 1684011.3088 -23.0897 11.7766 92.6268 run21.mat -1 -1 649 2814432 2824761 +5594688 5598325 3638 1684027.0621 1684208.95 -21.4306 11.7779 92.7533 run21.mat -1 -1 649 2824919 2826737 +5682642 5698718 16077 1688424.9427 1689228.9519 -21.4369 11.7776 93.0766 run21.mat -1 -1 650 2868897 2876936 +5699038 5719730 20693 1689244.9552 1690277.8684 -19.7881 11.7769 92.5877 run21.mat -1 -1 650 2877096 2887442 +5720039 5740728 20690 1690293.3244 1691330.3212 -18.1392 11.7772 92.5481 run21.mat -1 -1 650 2887596 2897941 +5741037 5761711 20675 1691345.6546 1692379.4533 -16.4927 11.7759 92.5966 run21.mat -1 -1 650 2898096 2908433 +5762015 5778405 16391 1692394.779 1693213.3855 -14.8437 11.7763 92.7487 run21.mat -1 -1 650 2908585 2916780 +5862527 5865860 3334 1697421.6653 1697588.3659 -14.8443 11.7767 94.472 run21.mat -1 -1 651 2958843 2960510 +5866181 5886870 20690 1697604.4193 1698638.0667 -13.1929 11.776 92.6035 run21.mat -1 -1 651 2960671 2971016 +5887177 5907848 20672 1698653.2979 1699686.2709 -11.5485 11.7761 92.565 run21.mat -1 -1 651 2971169 2981505 +5908155 5918063 9909 1699701.6268 1700196.6511 -9.8958 11.7772 92.4954 run21.mat -1 -1 651 2981659 2986613 +5918313 5928852 10540 1700209.257 1700736.5412 -9.8943 11.776 92.6644 run21.mat -1 -1 651 2986738 2992008 +5929159 5949831 20673 1700752.0181 1701785.819 -8.2538 11.7757 92.6161 run21.mat -1 -1 651 2992161 3002497 +5950136 5958283 8148 1701800.9539 1702208.3097 -6.5957 11.7757 92.6857 run21.mat -1 -1 651 3002650 3006724 +6042366 6053977 11612 1706410.9746 1706992.0869 -6.5917 11.7767 92.9309 run21.mat -1 -1 652 3048767 3054572 +6054290 6074976 20687 1707007.6189 1708043.8156 -4.9479 11.7767 92.4893 run21.mat -1 -1 652 3054729 3065073 +6075287 6095971 20685 1708059.2453 1709092.3547 -3.2995 11.7773 92.548 run21.mat -1 -1 652 3065228 3075571 +6096277 6116969 20693 1709107.7812 1710141.8378 -1.6472 11.7759 92.6193 run21.mat -1 -1 652 3075724 3086070 +6117278 6137932 20655 1710157.4187 1711190.5628 -0.002102 11.7759 92.7201 run21.mat -1 -1 652 3086225 3096552 +6222236 6242154 19919 1715405.3435 1716400.5134 1.65 11.7764 92.8999 run21.mat -1 -1 653 3138706 3148666 +6242477 6263150 20674 1716416.7969 1717453.1727 3.2961 11.7766 92.5775 run21.mat -1 -1 653 3148827 3159164 +6263457 6284152 20696 1717468.5257 1718500.8935 4.9484 11.7754 92.5962 run21.mat -1 -1 653 3159317 3169665 +6284459 6305133 20675 1718516.3735 1719549.2477 6.5931 11.7771 92.5138 run21.mat -1 -1 653 3169819 3180156 +6305442 6318024 12583 1719564.5812 1720194.3648 8.2493 11.7764 92.7995 run21.mat -1 -1 653 3180311 3186602 +6402264 6409397 7134 1724407.4547 1724763.5555 8.2466 11.7765 93.7653 run21.mat -1 -1 654 3228724 3232313 +6409720 6430393 20674 1724779.8423 1725812.5389 9.895 11.7763 92.5189 run21.mat -1 -1 654 3232452 3242789 +6430700 6451394 20695 1725827.8921 1726862.8994 11.5433 11.7759 92.6065 run21.mat -1 -1 654 3242943 3253290 +6451700 6472393 20694 1726878.3009 1727915.5149 13.19 11.7759 92.5769 run21.mat -1 -1 654 3253443 3263790 +6472697 6493371 20675 1727930.4874 1728962.6599 14.842 11.7758 92.6956 run21.mat -1 -1 654 3263942 3274279 +6493678 6498043 4366 1728977.891 1729195.3905 16.4897 11.7755 92.745 run21.mat -1 -1 654 3274433 3276615 +6582172 6597650 15479 1733401.5488 1734175.6628 16.4885 11.7761 93.1519 run21.mat -1 -1 655 3318682 3326421 +6597964 6618634 20671 1734191.4926 1735226.5156 18.1365 11.7761 92.5846 run21.mat -1 -1 655 3326578 3336914 +6618945 6639651 20707 1735241.9452 1736277.0442 19.7841 11.776 92.5928 run21.mat -1 -1 655 3337069 3347423 +6639960 6660633 20674 1736292.6219 1737325.5287 21.4328 11.7764 92.613 run21.mat -1 -1 655 3347577 3357914 +6660937 6677943 17007 1737340.7318 1738192.2248 23.0867 11.7755 92.7349 run21.mat -1 -1 655 3358066 3366570 +6762029 6764751 2723 1742394.0784 1742530.434 23.0862 11.7764 94.1296 run21.mat -1 -1 656 3408614 3409975 +6765059 6785735 20677 1742545.9645 1743581.1615 24.7361 11.7761 92.566 run21.mat -1 -1 656 3410129 3420468 +6786042 6806752 20711 1743596.6384 1744633.3833 26.3854 11.776 92.5417 run21.mat -1 -1 656 3420621 3430977 +6807058 6827726 20669 1744648.6863 1745680.5795 28.0347 11.7769 92.6417 run21.mat -1 -1 656 3431130 3441464 +6828035 6848714 20680 1745695.9099 1746732.0087 29.6868 11.7766 92.6651 run21.mat -1 -1 656 3441619 3451959 +6849021 6857822 8802 1746747.243 1747185.6449 31.3335 11.7766 92.7473 run21.mat -1 -1 656 3452112 3456513 +6941904 6952842 10939 1751389.9073 1751937.4457 31.3339 11.7774 93.2403 run21.mat -1 -1 657 3498556 3504025 +6953162 6973853 20692 1751953.3219 1752985.8392 32.9865 11.7766 92.6173 run21.mat -1 -1 657 3504185 3514531 +6974160 6994833 20674 1753001.2339 1754035.3638 34.6321 11.7763 92.5893 run21.mat -1 -1 657 3514685 3525021 +6995139 7015836 20698 1754050.7903 1755086.7809 36.2878 11.776 92.6228 run21.mat -1 -1 657 3525174 3535524 +7016141 7036798 20658 1755101.9129 1756135.8153 37.9338 11.7757 92.7406 run21.mat -1 -1 657 3535676 3546005 +7037109 7037702 594 1756151.4938 1756181.389 39.5796 11.7697 94.1252 run21.mat -1 -1 657 3546161 3546457 +7121747 7140921 19175 1760382.2016 1761342.0488 39.5844 11.7762 92.9842 run21.mat -1 -1 658 3588481 3598068 +7141239 7161913 20675 1761357.892 1762390.2348 41.2294 11.7769 92.5232 run21.mat -1 -1 658 3598227 3608565 +7162219 7182893 20675 1762405.6644 1763439.7534 42.8799 11.7762 92.6128 run21.mat -1 -1 658 3608718 3619056 +7183201 7203896 20696 1763455.2807 1764490.5701 44.5324 11.7767 92.5827 run21.mat -1 -1 658 3619210 3629557 +7204202 7217542 13341 1764505.9966 1765172.6169 46.1789 11.7751 92.8064 run21.mat -1 -1 658 3629710 3636381 +7301761 7308164 6404 1769382.1465 1769701.8484 46.1737 11.776 93.8788 run21.mat -1 -1 659 3678492 3681694 +7308475 7329174 20700 1769717.5269 1770751.637 47.8269 11.7768 92.5725 run21.mat -1 -1 659 3681849 3692199 +7329481 7350155 20675 1770766.9902 1771803.7255 49.4707 11.7759 92.6009 run21.mat -1 -1 659 3692353 3702690 +7350471 7371173 20703 1771819.6562 1772853.1992 51.1245 11.7761 92.5901 run21.mat -1 -1 659 3702848 3713200 +7371482 7392153 20672 1772868.777 1773900.7685 52.7754 11.7756 92.6118 run21.mat -1 -1 659 3713354 3723690 +7392462 7397561 5100 1773916.3493 1774172.8162 54.4174 11.7761 92.9164 run21.mat -1 -1 659 3723845 3726395 +7481667 7496406 14740 1778378.3024 1779115.3628 54.4211 11.7761 93.1632 run21.mat -1 -1 660 3768449 3775819 +7496720 7517396 20677 1779131.1511 1780163.2091 56.0735 11.7767 92.4774 run21.mat -1 -1 660 3775976 3786314 +7517702 7538393 20692 1780178.512 1781214.5674 57.7245 11.7772 92.5739 run21.mat -1 -1 660 3786467 3796813 +7538703 7559377 20675 1781230.2612 1782264.748 59.3769 11.7768 92.5721 run21.mat -1 -1 660 3796968 3807306 +7559682 7577462 17781 1782279.877 1783168.1074 61.023 11.777 92.5999 run21.mat -1 -1 660 3807458 3816349 +7661524 7663499 1976 1787371.8321 1787470.8151 61.0207 11.7762 95.6499 run21.mat -1 -1 661 3858382 3859369 +7663821 7684495 20675 1787487.0482 1788520.3716 62.673 11.7756 92.5144 run21.mat -1 -1 661 3859530 3869868 +7684801 7705496 20696 1788535.6746 1789570.6626 64.322 11.7763 92.5175 run21.mat -1 -1 661 3870021 3880368 +7705803 7726495 20693 1789586.0185 1790620.3452 65.972 11.7763 92.5367 run21.mat -1 -1 661 3880522 3890869 +7726802 7747476 20675 1790635.8221 1791669.2758 67.6253 11.7766 92.6358 run21.mat -1 -1 661 3891022 3901359 +7747782 7757321 9540 1791684.5455 1792160.0345 69.2673 11.7765 92.7717 run21.mat -1 -1 661 3901513 3906282 +7841572 7851774 10203 1796373.2209 1796883.994 69.2674 11.7756 93.2613 run21.mat -1 -1 662 3948410 3953510 +7852085 7872776 20692 1796899.4268 1797932.7312 70.9166 11.7768 92.4717 run21.mat -1 -1 662 3953666 3964012 +7873087 7893774 20688 1797948.3492 1798984.8372 72.571 11.7766 92.5945 run21.mat -1 -1 662 3964168 3974511 +7894082 7914775 20694 1799000.1211 1800035.3136 74.2197 11.7764 92.5981 run21.mat -1 -1 662 3974665 3985013 +7915082 7935754 20673 1800050.6668 1801083.6138 75.8655 11.7758 92.6517 run21.mat -1 -1 662 3985166 3995503 +7936062 7937381 1320 1801098.8946 1801164.3342 77.5249 11.7771 93.0025 run21.mat -1 -1 662 3995657 3996316 +8021373 8039890 18518 1805364.6224 1806289.6622 77.5094 11.7766 93.0558 run21.mat -1 -1 663 4038314 4047573 +8040197 8060877 20681 1806305.0154 1807338.3839 79.1645 11.7764 92.6165 run21.mat -1 -1 663 4047726 4058067 +8061181 8081861 20681 1807353.4692 1808389.1604 80.8104 11.7761 92.5268 run21.mat -1 -1 663 4058219 4068559 +8082171 8102507 20337 1808404.4285 1809420.7775 82.4617 11.7761 92.6502 run21.mat -1 -1 663 4068714 4078883 +288539 308937 20399 1921286.5908 1922306.8116 82.4675 13.4591 92.7066 run22.mat -1 -1 665 157300 167499 +309240 329957 20718 1922321.9679 1923358.7036 80.816 13.46 92.6732 run22.mat -1 -1 665 167651 178010 +330266 350921 20656 1923374.2813 1924406.5132 79.1692 13.4604 92.5807 run22.mat -1 -1 665 178164 188492 +351236 371935 20700 1924422.1413 1925457.0689 77.517 13.4611 92.5427 run22.mat -1 -1 665 188650 199000 +372244 384307 12064 1925472.3993 1926077.261 75.8681 13.4595 92.6061 run22.mat -1 -1 665 199154 205186 +468599 476273 7675 1930290.0762 1930675.8302 75.871 13.4598 93.8078 run22.mat -1 -1 666 247334 251171 +476603 497295 20693 1930692.3336 1931725.2285 74.2211 13.4611 92.593 run22.mat -1 -1 666 251336 261683 +497603 518285 20683 1931740.6345 1932773.0165 72.5714 13.4602 92.6272 run22.mat -1 -1 666 261837 272178 +518598 539297 20700 1932788.7959 1933825.5029 70.9197 13.4603 92.6675 run22.mat -1 -1 666 272334 282684 +539603 558810 19208 1933840.6845 1934799.7555 69.2662 13.4597 92.6285 run22.mat -1 -1 666 282837 292441 +559061 560256 1196 1934812.3079 1934872.0694 69.2727 13.4594 92.1066 run22.mat -1 -1 666 292567 293164 +560563 564387 3825 1934887.4224 1935079.0537 67.6177 13.4633 93.079 run22.mat -1 -1 666 293318 295230 +648463 664375 15913 1939284.4033 1940078.3108 67.6158 13.4593 92.8876 run22.mat -1 -1 667 337270 345226 +664691 685362 20672 1940094.1139 1941128.7756 65.9717 13.4601 92.5452 run22.mat -1 -1 667 345384 355720 +685676 706358 20683 1941144.6054 1942177.1401 64.3149 13.4592 92.6344 run22.mat -1 -1 667 355877 366218 +706673 727355 20683 1942193.0204 1943229.1396 62.6689 13.4598 92.5549 run22.mat -1 -1 667 366376 376717 +727664 744266 16603 1943244.5926 1944074.9066 61.0224 13.4586 92.7852 run22.mat -1 -1 667 376872 385173 +828522 831636 3115 1948284.9905 1948441.6872 61.0097 13.4605 94.8894 run22.mat -1 -1 668 427303 428860 +831949 852656 20708 1948457.4666 1949494.8877 59.3714 13.4595 92.564 run22.mat -1 -1 668 429017 439370 +852966 873656 20691 1949510.3909 1950543.146 57.7257 13.4602 92.5708 run22.mat -1 -1 668 439525 449871 +873962 894657 20696 1950558.4489 1951595.1374 56.0716 13.4603 92.5892 run22.mat -1 -1 668 450024 460372 +894965 915638 20674 1951610.4212 1952642.2056 54.424 13.4605 92.6798 run22.mat -1 -1 668 460526 470863 +915943 924326 8384 1952657.3406 1953075.5265 52.7775 13.4625 92.8826 run22.mat -1 -1 668 471016 475207 +1008357 1019757 11401 1957280.6866 1957847.5302 52.7756 13.4605 93.455 run22.mat -1 -1 669 517225 522925 +1020072 1040758 20687 1957863.5505 1958898.049 51.1307 13.46 92.4423 run22.mat -1 -1 669 523082 533426 +1041066 1061761 20696 1958913.5763 1959949.8759 49.4764 13.4603 92.7041 run22.mat -1 -1 669 533580 543928 +1062069 1082757 20689 1959965.2789 1960999.2791 47.8293 13.4587 92.5873 run22.mat -1 -1 669 544082 554426 +1083068 1103721 20654 1961014.9577 1962048.1747 46.1796 13.4603 92.7656 run22.mat -1 -1 669 554582 564908 +1104026 1104126 101 1962063.5539 1962068.5962 44.518 13.4592 96.1163 run22.mat -1 -1 669 565061 565111 +1188335 1208056 19722 1966278.7627 1967261.9865 44.5306 13.46 93.0118 run22.mat -1 -1 670 607217 617078 +1208363 1229079 20717 1967277.2207 1968315.8998 42.8789 13.461 92.6068 run22.mat -1 -1 670 617232 627590 +1229386 1250058 20673 1968331.1425 1969363.3985 41.2282 13.4596 92.6335 run22.mat -1 -1 670 627744 638080 +1250365 1271058 20694 1969378.8754 1970415.4189 39.5847 13.46 92.6122 run22.mat -1 -1 670 638234 648581 +1271369 1284206 12838 1970430.9719 1971072.9661 37.9304 13.4593 92.8594 run22.mat -1 -1 670 648736 655155 +1368148 1375117 6970 1975268.496 1975617.8522 37.933 13.4605 93.6981 run22.mat -1 -1 671 697128 700612 +1375456 1396138 20683 1975634.5517 1976667.9687 36.2824 13.4594 92.541 run22.mat -1 -1 671 700782 711124 +1396447 1417120 20674 1976683.422 1977716.2219 34.6312 13.4593 92.5286 run22.mat -1 -1 671 711278 721615 +1417425 1438138 20714 1977731.3538 1978769.4897 32.9806 13.4594 92.5948 run22.mat -1 -1 671 721768 732125 +1438447 1459101 20655 1978784.9429 1979815.9518 31.3322 13.4595 92.653 run22.mat -1 -1 671 732279 742606 +1459417 1464045 4629 1979831.6511 1980063.1476 29.6852 13.4596 92.8866 run22.mat -1 -1 671 742764 745079 +1548145 1563237 15093 1984268.7557 1985023.596 29.6853 13.4598 92.8276 run22.mat -1 -1 672 787131 794677 +1563565 1584239 20675 1985039.869 1986075.3433 28.0334 13.4613 92.4841 run22.mat -1 -1 672 794841 805178 +1584546 1605240 20695 1986090.6963 1987123.5166 26.3852 13.4593 92.5877 run22.mat -1 -1 672 805332 815679 +1605547 1626238 20692 1987138.7478 1988172.3109 24.7367 13.4611 92.5234 run22.mat -1 -1 672 815833 826179 +1626545 1643905 17361 1988187.7879 1989058.0478 23.091 13.4594 92.687 run22.mat -1 -1 672 826332 835013 +1728203 1730542 2340 1993271.6656 1993389.4538 23.0883 13.4617 95.1741 run22.mat -1 -1 673 877163 878333 +1730851 1751544 20694 1993404.9071 1994439.2675 21.4362 13.4596 92.5168 run22.mat -1 -1 673 878488 888834 +1751851 1772540 20690 1994454.4987 1995489.7551 19.7943 13.4609 92.6869 run22.mat -1 -1 673 888988 899333 +1772847 1793544 20698 1995505.2352 1996538.5517 18.1411 13.4597 92.5554 run22.mat -1 -1 673 899486 909835 +1793850 1814527 20678 1996553.9782 1997587.1994 16.4927 13.4618 92.5244 run22.mat -1 -1 673 909988 920327 +1814840 1823985 9146 1997602.7283 1998061.8846 14.8455 13.4602 92.6711 run22.mat -1 -1 673 920484 925057 +1908030 1918583 10554 2002262.2191 2002791.0254 14.8405 13.4616 93.2734 run22.mat -1 -1 674 967081 972358 +1918889 1939622 20734 2002806.455 2003841.4771 13.1909 13.4603 92.584 run22.mat -1 -1 674 972511 982878 +1939931 1960604 20674 2003856.677 2004891.738 11.5391 13.4604 92.6622 run22.mat -1 -1 674 983032 993369 +1960911 1981601 20691 2004907.0939 2005941.8536 9.8918 13.4603 92.6341 run22.mat -1 -1 674 993522 1003868 +1981911 2002583 20673 2005957.3566 2006990.2075 8.2428 13.4592 92.7148 run22.mat -1 -1 674 1004023 1014359 +2002891 2003825 935 2007005.6108 2007052.3205 6.5953 13.456 92.0738 run22.mat -1 -1 674 1014513 1014980 +2088116 2106913 18798 2011267.3777 2012207.0674 6.5922 13.4594 92.9058 run22.mat -1 -1 675 1057128 1066527 +2107225 2127923 20699 2012222.7995 2013258.8424 4.9424 13.4592 92.6056 run22.mat -1 -1 675 1066683 1077032 +2128231 2148902 20672 2013274.0148 2014308.2725 3.2943 13.4599 92.6001 run22.mat -1 -1 675 1077186 1087522 +2149210 2169905 20696 2014323.5533 2015357.4509 1.6484 13.4616 92.5693 run22.mat -1 -1 675 1087676 1098024 +2170212 2183904 13693 2015372.8068 2016055.5655 0.00050981 13.4589 92.7642 run22.mat -1 -1 675 1098178 1105024 +2268103 2274182 6080 2020267.6122 2020571.0645 -0.0031479 13.459 94.1266 run22.mat -1 -1 676 1147125 1150165 +2274501 2295191 20691 2020586.891 2021621.397 -1.6462 13.4593 92.6238 run22.mat -1 -1 676 1150324 1160670 +2295509 2316186 20678 2021637.1771 2022671.9851 -3.2971 13.4611 92.6226 run22.mat -1 -1 676 1160829 1171168 +2316493 2337187 20695 2022687.2163 2023719.6928 -4.9463 13.4601 92.5765 run22.mat -1 -1 676 1171321 1181668 +2337493 2358167 20675 2023734.9958 2024769.0992 -6.5912 13.4602 92.6448 run22.mat -1 -1 676 1181821 1192159 +2358474 2363944 5471 2024784.5761 2025059.9102 -8.2435 13.4597 92.8145 run22.mat -1 -1 676 1192313 1195048 +2448010 2462285 14276 2029261.2972 2029976.7477 -8.2483 13.4602 93.0518 run22.mat -1 -1 677 1237082 1244221 +2462605 2483266 20662 2029992.88 2031026.5952 -9.8915 13.4606 92.5289 run22.mat -1 -1 677 1244381 1254711 +2483577 2504284 20708 2031042.1179 2032075.9794 -11.5463 13.4601 92.6176 run22.mat -1 -1 677 1254867 1265221 +2504593 2525269 20677 2032091.5572 2033124.8399 -13.1927 13.4604 92.5691 run22.mat -1 -1 677 1265376 1275714 +2525575 2543824 18250 2033140.2664 2034052.3346 -14.8493 13.4606 92.6967 run22.mat -1 -1 677 1275867 1284992 +2629854 2631567 1714 2038355.7214 2038440.7085 -14.8513 13.4587 97.3882 run22.mat -1 -1 678 1328009 1328865 +2631897 2652551 20655 2038457.0808 2039489.1112 -16.4956 13.459 92.6089 run22.mat -1 -1 678 1329030 1339358 +2652866 2673570 20705 2039504.8673 2040540.7839 -18.1464 13.4586 92.5927 run22.mat -1 -1 678 1339515 1349868 +2673874 2694570 20697 2040555.8662 2041588.6533 -19.7913 13.4597 92.6258 run22.mat -1 -1 678 1350020 1360368 +2694876 2715549 20674 2041603.9592 2042638.2638 -21.4399 13.4603 92.6232 run22.mat -1 -1 678 1360521 1370858 +2715858 2725744 9887 2042653.8415 2043148.1952 -23.0924 13.4604 92.7224 run22.mat -1 -1 678 1371013 1375956 +2809932 2819786 9855 2047359.2997 2047852.0264 -23.0936 13.4615 93.249 run22.mat -1 -1 679 1418052 1422979 +2820106 2840788 20683 2047868.1014 2048900.7439 -24.7412 13.4613 92.5461 run22.mat -1 -1 679 1423139 1433481 +2841096 2861789 20694 2048916.2712 2049953.2088 -26.3876 13.4609 92.6075 run22.mat -1 -1 679 1433635 1443981 +2862097 2882790 20694 2049968.4927 2051002.1229 -28.0349 13.4607 92.5385 run22.mat -1 -1 679 1444135 1454482 +2883096 2903770 20675 2051017.4261 2052050.7676 -29.6846 13.4607 92.7128 run22.mat -1 -1 679 1454635 1464973 +2904076 2905743 1668 2052066.1973 2052150.1035 -31.3296 13.4642 92.0393 run22.mat -1 -1 679 1465126 1465959 +2989832 3007907 18076 2056354.071 2057258.6368 -31.336 13.461 92.8813 run22.mat -1 -1 680 1508006 1517044 +3008230 3028911 20682 2057274.793 2058307.9196 -32.9826 13.4597 92.6118 run22.mat -1 -1 680 1517205 1527546 +3029217 3049899 20683 2058323.1012 2059358.2562 -34.6312 13.4591 92.572 run22.mat -1 -1 680 1527699 1538040 +3050215 3070910 20696 2059374.19 2060409.5474 -36.2835 13.4604 92.552 run22.mat -1 -1 680 1538198 1548546 +3071217 3085624 14408 2060424.9008 2061141.442 -37.9342 13.4597 92.7416 run22.mat -1 -1 680 1548700 1555904 +3169755 3175149 5395 2065350.926 2065621.3901 -37.9353 13.4574 93.7412 run22.mat -1 -1 681 1597971 1600668 +3175477 3196152 20676 2065637.929 2066672.0801 -39.5856 13.4599 92.5014 run22.mat -1 -1 681 1600832 1611170 +3196459 3217154 20696 2066687.6936 2067721.7292 -41.2304 13.4601 92.5548 run22.mat -1 -1 681 1611324 1621672 +3217460 3238153 20694 2067736.9195 2068771.6859 -42.8845 13.4601 92.6371 run22.mat -1 -1 681 1621825 1632171 +3238470 3259133 20664 2068787.4132 2069819.4176 -44.5354 13.4589 92.5684 run22.mat -1 -1 681 1632330 1642662 +3259438 3265642 6205 2069834.6708 2070143.585 -46.1837 13.4593 92.7963 run22.mat -1 -1 681 1642815 1645916 +3349884 3363429 13546 2074357.2252 2075035.0018 -46.1832 13.4592 93.0964 run22.mat -1 -1 682 1688040 1694812 +3363748 3384428 20681 2075051.0837 2076082.8205 -47.831 13.461 92.6609 run22.mat -1 -1 682 1694972 1705312 +3384738 3405411 20674 2076098.3235 2077133.3538 -49.4782 13.4599 92.6513 run22.mat -1 -1 682 1705467 1715804 +3405717 3426413 20697 2077148.7834 2078184.1807 -51.1321 13.4598 92.6036 run22.mat -1 -1 682 1715957 1726305 +3426719 3445682 18964 2078199.6103 2079148.5931 -52.7776 13.4606 92.6947 run22.mat -1 -1 682 1726458 1735941 +3529643 3530531 889 2083345.9125 2083389.9688 -52.7634 13.4551 105.1565 run22.mat -1 -1 683 1777923 1778367 +3530852 3551514 20663 2083405.8946 2084438.8609 -54.4265 13.4599 92.5593 run22.mat -1 -1 683 1778527 1788859 +3551819 3572515 20697 2084454.1725 2085487.9901 -56.0746 13.4596 92.5957 run22.mat -1 -1 683 1789011 1799360 +3572821 3593517 20697 2085503.1717 2086539.9322 -57.7272 13.4606 92.5424 run22.mat -1 -1 683 1799513 1809861 +3593832 3614513 20682 2086555.69 2087588.4134 -59.3741 13.4596 92.6505 run22.mat -1 -1 683 1810019 1820360 +3614821 3625541 10721 2087603.9407 2088140.7948 -61.025 13.4602 92.7869 run22.mat -1 -1 683 1820514 1825873 +3709780 3718750 8971 2092351.7047 2092802.1619 -61.0212 13.4589 93.4644 run22.mat -1 -1 684 1867995 1872480 +3719080 3739774 20695 2092818.7983 2093853.481 -62.6712 13.4595 92.543 run22.mat -1 -1 684 1872645 1882993 +3740079 3760774 20696 2093868.613 2094901.4494 -64.3171 13.461 92.5241 run22.mat -1 -1 684 1883145 1893493 +3761081 3781754 20674 2094916.6836 2095951.351 -65.9737 13.4602 92.6132 run22.mat -1 -1 684 1893647 1903984 +3782059 3802731 20673 2095966.6073 2097000.1568 -67.617 13.4611 92.7213 run22.mat -1 -1 684 1904137 1914473 +3803040 3805542 2503 2097015.4903 2097140.1125 -69.2714 13.4613 92.8973 run22.mat -1 -1 684 1914627 1915879 +3889651 3906892 17242 2101344.6418 2102208.0786 -69.2733 13.4607 93.0338 run22.mat -1 -1 685 1957935 1966555 +3907211 3927874 20664 2102223.9083 2103258.2804 -70.9195 13.4592 92.5647 run22.mat -1 -1 685 1966715 1977047 +3928181 3948884 20704 2103273.6334 2104307.7366 -72.5717 13.4596 92.555 run22.mat -1 -1 685 1977200 1987552 +3949195 3969876 20682 2104323.4183 2105355.9891 -74.2235 13.459 92.6307 run22.mat -1 -1 685 1987708 1998049 +3970185 3985421 15237 2105371.486 2106133.6175 -75.8697 13.4582 92.706 run22.mat -1 -1 685 1998204 2005822 +4069768 4074211 4444 2110351.1189 2110574.4461 -75.8707 13.4597 93.9376 run22.mat -1 -1 686 2047997 2050219 +4074541 4095233 20693 2110591.0825 2111624.4092 -77.5178 13.4598 92.5026 run22.mat -1 -1 686 2050384 2060730 +4095539 4116217 20679 2111639.6515 2112674.1037 -79.1696 13.4602 92.6464 run22.mat -1 -1 686 2060883 2071223 +4116525 4137234 20710 2112689.6341 2113723.6197 -80.8192 13.4597 92.6328 run22.mat -1 -1 686 2071377 2081732 +4137540 4158196 20657 2113739.0368 2114773.3711 -82.4665 13.46 92.6188 run22.mat -1 -1 686 2081885 2092213 +4158505 4165541 7037 2114788.8243 2115140.694 -82.4625 15.1432 92.8181 run22.mat -1 -1 686 2092368 2095886 +4251649 4264360 12712 2119447.9345 2120081.9331 -82.4647 15.1437 93.052 run22.mat -1 -1 687 2138941 2145297 +4264667 4285355 20689 2120097.2863 2121130.2832 -80.8183 15.1439 92.5202 run22.mat -1 -1 687 2145451 2155795 +4285661 4306356 20696 2121145.4648 2122183.2942 -79.1648 15.144 92.5784 run22.mat -1 -1 687 2155948 2166296 +4306662 4327338 20677 2122198.6028 2123230.91 -77.515 15.1446 92.5846 run22.mat -1 -1 687 2166449 2176787 +4327656 4347440 19785 2123246.9447 2124234.0563 -75.8654 15.143 92.796 run22.mat -1 -1 687 2176946 2186839 +4432019 4452655 20637 2128465.2703 2129499.2085 -74.2158 15.1437 92.741 run22.mat -1 -1 688 2229130 2239449 +4452963 4473634 20672 2129514.6115 2130546.467 -72.5713 15.1443 92.5717 run22.mat -1 -1 688 2239603 2249939 +4473941 4494634 20694 2130561.8202 2131595.657 -70.9189 15.1426 92.6223 run22.mat -1 -1 688 2250093 2260440 +4494941 4515615 20675 2131610.8912 2132645.4111 -69.2713 15.1445 92.6349 run22.mat -1 -1 688 2260593 2270930 +4515923 4527501 11579 2132660.5806 2133236.6843 -67.6199 15.142 92.6899 run22.mat -1 -1 688 2271084 2276873 +4611546 4619677 8132 2137440.9413 2137847.6234 -67.625 15.1435 93.3454 run22.mat -1 -1 689 2318898 2322964 +4619993 4640694 20702 2137863.4264 2138900.6778 -65.9767 15.1446 92.5469 run22.mat -1 -1 689 2323122 2333473 +4641001 4661678 20678 2138916.0308 2139948.1379 -64.3224 15.1432 92.5464 run22.mat -1 -1 689 2333626 2343965 +4661986 4682699 20714 2139963.5412 2140998.5163 -62.6728 15.1432 92.5192 run22.mat -1 -1 689 2344119 2354476 +4683004 4703674 20671 2141013.7118 2142049.0718 -61.0264 15.144 92.5932 run22.mat -1 -1 689 2354628 2364964 +4703982 4707341 3360 2142064.3526 2142231.0028 -59.3746 15.1421 93.0709 run22.mat -1 -1 689 2365118 2366798 +4791495 4807997 16503 2146440.6297 2147263.895 -59.3806 15.1441 93.0929 run22.mat -1 -1 690 2408877 2417128 +4808308 4828995 20688 2147279.4482 2148313.8535 -57.7285 15.1437 92.5574 run22.mat -1 -1 690 2417283 2427627 +4829302 4849978 20677 2148329.0877 2149361.9746 -56.0759 15.1427 92.6573 run22.mat -1 -1 690 2427781 2438119 +4850296 4870974 20679 2149378.006 2150411.5737 -54.4269 15.1437 92.6132 run22.mat -1 -1 690 2438278 2448618 +4871282 4887400 16119 2150426.9769 2151233.5895 -52.7791 15.1403 92.7025 run22.mat -1 -1 690 2448772 2456831 +4971414 4975082 3669 2155435.8449 2155619.3 -52.7786 15.1454 95.3193 run22.mat -1 -1 691 2498840 2500674 +4975401 4996096 20696 2155635.25 2156670.25 -51.1272 15.1433 92.4769 run22.mat -1 -1 691 2500834 2511182 +4996400 5017097 20698 2156685.45 2157718.5288 -49.4747 15.1446 92.5945 run22.mat -1 -1 691 2511334 2521683 +5017403 5038077 20675 2157733.8317 2158768.8647 -47.8261 15.1441 92.5895 run22.mat -1 -1 691 2521836 2532173 +5038384 5059077 20694 2158784.2236 2159819.0099 -46.1799 15.144 92.696 run22.mat -1 -1 691 2532327 2542673 +5059385 5067260 7876 2159834.4661 2160228.6658 -44.5318 15.1425 92.9478 run22.mat -1 -1 691 2542827 2546765 +5151562 5163418 11857 2164441.5674 2165035.9667 -44.5316 15.1437 92.8937 run22.mat -1 -1 692 2588918 2594846 +5163728 5184396 20669 2165051.5949 2166085.5231 -42.8777 15.1438 92.4987 run22.mat -1 -1 692 2595001 2605336 +5184703 5205396 20694 2166101 2167135.7876 -41.2313 15.1437 92.6163 run22.mat -1 -1 692 2605489 2615836 +5205703 5226396 20694 2167151.0218 2168182.706 -39.5809 15.1437 92.5618 run22.mat -1 -1 692 2615990 2626337 +5226702 5247360 20659 2168198.1325 2169231.8633 -37.9317 15.1438 92.7801 run22.mat -1 -1 692 2626490 2636819 +5331605 5351663 20059 2173446.4363 2174446.4969 -36.2853 15.1439 92.8791 run22.mat -1 -1 693 2678943 2688973 +5351982 5372657 20676 2174462.5787 2175496.02 -34.6355 15.1438 92.648 run22.mat -1 -1 693 2689132 2699470 +5372963 5393657 20695 2175511.3229 2176547.1469 -32.9871 15.1445 92.5947 run22.mat -1 -1 693 2699623 2709971 +5393964 5414657 20694 2176562.3811 2177599.6368 -31.3381 15.1445 92.6103 run22.mat -1 -1 693 2710124 2720471 +5414962 5427398 12437 2177614.89 2178234.3217 -29.6907 15.1449 92.6638 run22.mat -1 -1 693 2720624 2726842 +5511407 5518720 7314 2182436.2685 2182801.2839 -29.6896 15.1419 93.6603 run22.mat -1 -1 694 2768848 2772505 +5519042 5539738 20697 2182817.517 2183851.7576 -28.0394 15.1435 92.5117 run22.mat -1 -1 694 2772666 2783014 +5540045 5560736 20692 2183867.2345 2184900.7593 -26.3896 15.1448 92.605 run22.mat -1 -1 694 2783168 2793514 +5561043 5581721 20679 2184915.9905 2185950.1355 -24.7409 15.1428 92.6173 run22.mat -1 -1 694 2793667 2804007 +5582031 5602696 20666 2185965.7668 2186999.5374 -23.0946 15.143 92.6858 run22.mat -1 -1 694 2804162 2814495 +5603003 5607239 4237 2187015.0143 2187228.2092 -21.4369 15.1385 93.0151 run22.mat -1 -1 694 2814648 2816766 +5691524 5707136 15613 2191442.5908 2192221.4576 -21.44 15.1437 93.1333 run22.mat -1 -1 695 2858911 2866717 +5707449 5728137 20689 2192237.1109 2193272.4672 -19.787 15.1432 92.643 run22.mat -1 -1 695 2866873 2877218 +5728445 5749132 20688 2193287.9946 2194321.7785 -18.1418 15.1438 92.5607 run22.mat -1 -1 695 2877372 2887716 +5749442 5770121 20680 2194337.2817 2195370.0566 -16.4889 15.1439 92.6546 run22.mat -1 -1 695 2887871 2898211 +5770428 5787279 16852 2195385.2878 2196227.6703 -14.8468 15.143 92.7321 run22.mat -1 -1 695 2898364 2906790 +5871519 5874424 2906 2200441.7055 2200585.8313 -14.8494 15.1451 95.6409 run22.mat -1 -1 696 2948912 2950365 +5874743 5895419 20677 2200601.6579 2201635.0402 -13.193 15.1412 92.4774 run22.mat -1 -1 696 2950524 2960863 +5895725 5916419 20695 2201650.3431 2202685.3054 -11.5399 15.1443 92.5924 run22.mat -1 -1 696 2961016 2971363 +5916726 5937415 20690 2202700.6531 2203736.0177 -9.8934 15.144 92.6068 run22.mat -1 -1 696 2971516 2981862 +5937724 5958401 20678 2203751.3481 2204784.8847 -8.2488 15.144 92.6194 run22.mat -1 -1 696 2982016 2992355 +5958705 5967359 8655 2204800.2103 2205233.6362 -6.5914 15.1452 92.8753 run22.mat -1 -1 696 2992507 2996834 +6051430 6062511 11082 2209436.5967 2209990.8224 -6.5994 15.146 93.1779 run22.mat -1 -1 697 3038871 3044412 +6062822 6083507 20686 2210006.3789 2211039.9215 -4.9468 15.144 92.5123 run22.mat -1 -1 697 3044568 3054911 +6083816 6104501 20686 2211055.3745 2212091.1881 -3.2983 15.1435 92.5829 run22.mat -1 -1 697 3055065 3065408 +6104809 6125504 20696 2212106.7155 2213142.3852 -1.6517 15.1431 92.6199 run22.mat -1 -1 697 3065562 3075910 +6125811 6146468 20658 2213157.7416 2214188.8434 -0.0029735 15.1448 92.7056 run22.mat -1 -1 697 3076064 3086393 +6146775 6147218 444 2214204.0746 2214226.0532 1.6531 15.1364 92.3056 run22.mat -1 -1 697 3086546 3086768 +6231359 6250772 19414 2218435.4497 2219404.1069 1.6472 15.1431 93.0876 run22.mat -1 -1 698 3128840 3138547 +6251088 6271763 20676 2219420.0407 2220455.9895 3.2959 15.1438 92.6183 run22.mat -1 -1 698 3138705 3149043 +6272070 6292744 20675 2220471.2207 2221503.5134 4.948 15.1448 92.6016 run22.mat -1 -1 698 3149197 3159534 +6293057 6313743 20687 2221519.1667 2222551.7472 6.595 15.1437 92.5983 run22.mat -1 -1 698 3159691 3170034 +6314052 6327258 13207 2222567.2032 2223227.8546 8.2473 15.1444 92.7813 run22.mat -1 -1 698 3170189 3176792 +6411385 6417984 6600 2227434.3946 2227764.5654 8.2452 15.144 93.9605 run22.mat -1 -1 699 3218857 3222157 +6418295 6438985 20691 2227780.244 2228814.9261 9.8983 15.1424 92.522 run22.mat -1 -1 699 3222312 3232657 +6439292 6459985 20694 2228830.0493 2229863.3811 11.5425 15.1438 92.662 run22.mat -1 -1 699 3232811 3243158 +6460290 6481006 20717 2229878.6979 2230916.5717 13.1913 15.1424 92.609 run22.mat -1 -1 699 3243311 3253669 +6481312 6501985 20674 2230931.9982 2231964.3519 14.8421 15.144 92.6807 run22.mat -1 -1 699 3253822 3264159 +6502291 6507277 4987 2231979.6033 2232228.9992 16.4909 15.1423 92.7833 run22.mat -1 -1 699 3264312 3266805 +6591303 6606066 14764 2236431.0401 2237170.7289 16.4885 15.1441 93.0371 run22.mat -1 -1 700 3308820 3316202 +6606393 6627085 20693 2237187.0823 2238219.437 18.1386 15.1435 92.5855 run22.mat -1 -1 700 3316365 3326712 +6627391 6648066 20676 2238234.8635 2239267.2858 19.784 15.1444 92.625 run22.mat -1 -1 700 3326865 3337203 +6648374 6669068 20695 2239282.7381 2240317.977 21.4334 15.144 92.5825 run22.mat -1 -1 700 3337357 3347704 +6669379 6687138 17760 2240333.6556 2241224.3274 23.0842 15.1434 92.6598 run22.mat -1 -1 700 3347860 3356740 +6771407 6773506 2100 2245434.9792 2245539.9494 23.0873 15.1458 96.7306 run22.mat -1 -1 701 3398876 3399926 +6773832 6794494 20663 2245556.3595 2246589.9443 24.7368 15.1435 92.6377 run22.mat -1 -1 701 3400089 3410420 +6794805 6815485 20681 2246605.6261 2247640.5352 26.3836 15.1441 92.5503 run22.mat -1 -1 701 3410575 3420916 +6815795 6836486 20692 2247656.2259 2248691.5769 28.0329 15.1428 92.5524 run22.mat -1 -1 701 3421071 3431417 +6836793 6857482 20690 2248706.8081 2249738.7355 29.6867 15.1418 92.5979 run22.mat -1 -1 701 3431570 3441915 +6857792 6867197 9406 2249754.2385 2250225.3415 31.3343 15.1419 92.8204 run22.mat -1 -1 701 3442070 3446773 +6951504 6961780 10277 2254443.1024 2254953.9769 31.3372 15.1425 93.135 run22.mat -1 -1 702 3488928 3494067 +6962097 6982785 20689 2254969.8302 2256005.1727 32.9849 15.1437 92.4731 run22.mat -1 -1 702 3494225 3504570 +6983095 7003784 20690 2256020.5527 2257056.4338 34.6357 15.1432 92.5562 run22.mat -1 -1 702 3504725 3515069 +7004091 7024786 20696 2257071.9107 2258105.1039 36.2856 15.1434 92.5117 run22.mat -1 -1 702 3515223 3525571 +7025092 7045763 20672 2258120.4068 2259154.7721 37.9327 15.1438 92.6743 run22.mat -1 -1 702 3525724 3536060 +7046071 7047257 1187 2259170.2995 2259230.0897 39.598 15.1437 92.8644 run22.mat -1 -1 702 3536214 3536807 +7131572 7150215 18644 2263445.3184 2264375.2257 39.5815 15.143 92.9274 run22.mat -1 -1 703 3578966 3588288 +7150537 7171207 20671 2264391.4588 2265426.6053 41.2314 15.1427 92.5238 run22.mat -1 -1 703 3588449 3598785 +7171511 7192207 20697 2265441.6876 2266476.1533 42.8792 15.1435 92.6333 run22.mat -1 -1 703 3598937 3609285 +7192511 7213186 20676 2266491.4789 2267527.4789 44.5303 15.1434 92.5559 run22.mat -1 -1 703 3609437 3619775 +7213496 7227357 13862 2267542.9819 2268235.4518 46.1806 15.1447 92.6954 run22.mat -1 -1 703 3619930 3626861 +7311384 7317357 5974 2272437.7124 2272735.7829 46.1786 15.1422 94.0402 run22.mat -1 -1 704 3668876 3671856 +7317672 7338369 20698 2272751.4141 2273784.4391 47.825 15.1439 92.4945 run22.mat -1 -1 704 3672020 3682369 +7338674 7359366 20693 2273799.574 2274834.9187 49.4746 15.1423 92.6106 run22.mat -1 -1 704 3682522 3692868 +7359674 7380347 20674 2274850.4461 2275884.6196 51.1254 15.1439 92.5989 run22.mat -1 -1 704 3693022 3703359 +7380655 7401328 20674 2275900.1501 2276934.1242 52.7738 15.1437 92.5981 run22.mat -1 -1 704 3703513 3713850 +7401638 7407157 5520 2276949.5043 2277223.3185 54.4246 15.1453 92.6201 run22.mat -1 -1 704 3714005 3716765 +7491423 7505653 14231 2281437.1525 2282150.5954 54.4214 15.1434 93.0281 run22.mat -1 -1 705 3758899 3766015 +7505962 7526629 20668 2282166.1763 2283195.9766 56.0727 15.1431 92.6276 run22.mat -1 -1 705 3766169 3776503 +7526939 7547630 20692 2283211.6079 2284247.7374 57.7247 15.1442 92.5387 run22.mat -1 -1 705 3776658 3787005 +7547939 7568629 20691 2284263.3152 2285300.3096 59.3752 15.1419 92.6292 run22.mat -1 -1 705 3787159 3797504 +7568937 7587216 18280 2285315.5935 2286228.4164 61.0232 15.1435 92.6937 run22.mat -1 -1 705 3797658 3806798 +7671190 7672728 1539 2290425.8397 2290503.3755 61.0196 15.1448 97.093 run22.mat -1 -1 706 3848787 3849556 +7673039 7693710 20672 2290519.054 2291553.048 62.6711 15.1427 92.5446 run22.mat -1 -1 706 3849712 3860048 +7694016 7714709 20694 2291568.2296 2292604.2666 64.3238 15.1437 92.6228 run22.mat -1 -1 706 3860201 3870547 +7715015 7735691 20677 2292619.5725 2293650.1248 65.9722 15.144 92.5792 run22.mat -1 -1 706 3870700 3881039 +7735998 7756692 20695 2293665.356 2294701.946 67.6231 15.1434 92.5816 run22.mat -1 -1 706 3881193 3891540 +7757001 7767076 10076 2294717.3992 2295219.3906 69.2676 15.1424 92.8383 run22.mat -1 -1 706 3891694 3896732 +7851370 7861011 9642 2299434.4707 2299918.2388 69.2658 15.1433 93.3456 run22.mat -1 -1 707 3938881 3943702 +7861323 7882009 20687 2299933.8421 2300966.5207 70.9186 15.1443 92.573 run22.mat -1 -1 707 3943858 3954201 +7882315 7903011 20697 2300981.7023 2302016.5307 72.5682 15.1438 92.5657 run22.mat -1 -1 707 3954354 3964703 +7903318 7924012 20695 2302031.7619 2303067.4581 74.2179 15.1439 92.5613 run22.mat -1 -1 707 3964856 3975203 +7924319 7944989 20671 2303082.6923 2304116.1613 75.8652 15.1429 92.6986 run22.mat -1 -1 707 3975357 3985693 +7945298 7947156 1859 2304131.4918 2304223.6728 77.5141 15.1405 92.6311 run22.mat -1 -1 707 3985847 3986776 +8031240 8049215 17976 2308429.707 2309328.1346 77.5121 15.1439 93.024 run22.mat -1 -1 708 4028820 4037808 +8049524 8070191 20668 2309343.468 2310377.1868 79.163 15.1433 92.5679 run22.mat -1 -1 708 4037962 4048296 +8070498 8091209 20712 2310392.6668 2311427.5788 80.8134 15.1433 92.5644 run22.mat -1 -1 708 4048450 4058806 +8091519 8111842 20324 2311442.9619 2312460.9933 82.4626 15.1443 92.6004 run22.mat -1 -1 708 4058961 4069123 +283038 303447 20410 2409819.7671 2410841.6648 82.4601 16.8274 92.7901 run23.mat -1 -1 710 156900 167104 +303759 324438 20680 2410857.1441 2411890.279 80.8127 16.8279 92.6225 run23.mat -1 -1 710 167260 177600 +324753 345460 20708 2411906.0323 2412943.0816 79.1692 16.8266 92.5257 run23.mat -1 -1 710 177758 188112 +345765 366457 20693 2412958.2135 2413992.9486 77.5142 16.8273 92.4488 run23.mat -1 -1 710 188264 198611 +366764 378809 12046 2414008.1798 2414609.7376 75.8678 16.8267 92.6429 run23.mat -1 -1 710 198765 204787 +462935 470638 7704 2418815.2968 2419200.7987 75.8724 16.8248 93.4462 run23.mat -1 -1 711 246852 250704 +470943 491651 20709 2419215.9337 2420252.9476 74.2193 16.8277 92.5461 run23.mat -1 -1 711 250856 261210 +491963 512638 20676 2420268.6797 2421300.9165 72.5717 16.8263 92.5992 run23.mat -1 -1 711 261366 271704 +512950 533646 20697 2421316.6486 2422351.1084 70.9167 16.827 92.5214 run23.mat -1 -1 711 271860 282209 +533963 554620 20658 2422366.8388 2423398.5222 69.2706 16.8289 92.6487 run23.mat -1 -1 711 282367 292697 +554924 558729 3806 2423413.7251 2423604 67.6205 16.8268 92.6061 run23.mat -1 -1 711 292849 294751 +643063 658961 15899 2427822.7898 2428616.2968 67.6191 16.8271 93.0193 run23.mat -1 -1 712 336919 344869 +659268 679963 20696 2428631.7737 2429669.2824 65.9726 16.8266 92.672 run23.mat -1 -1 712 345023 355371 +680271 700962 20692 2429684.6883 2430717.565 64.3197 16.8276 92.6318 run23.mat -1 -1 712 355525 365871 +701271 721962 20692 2430733.2594 2431766.447 62.6694 16.8271 92.5738 run23.mat -1 -1 712 366025 376371 +722268 738828 16561 2431781.6316 2432609.5513 61.0245 16.8271 92.8277 run23.mat -1 -1 712 376524 384805 +822825 826099 3275 2436812.9887 2436975.2385 61.0243 16.8238 95.4124 run23.mat -1 -1 713 426805 428442 +826425 847103 20679 2436991.2946 2438024.3648 59.3706 16.8273 92.4881 run23.mat -1 -1 713 428605 438945 +847411 859236 11826 2438039.6456 2438632.3505 57.7219 16.8271 92.6807 run23.mat -1 -1 713 439099 445011 +859486 868103 8618 2438644.7537 2439073.8412 57.7241 16.8288 92.5949 run23.mat -1 -1 713 445136 449445 +868409 889104 20696 2439089.1444 2440126.1985 56.0711 16.827 92.5785 run23.mat -1 -1 713 449598 459946 +889410 910081 20672 2440141.38 2441173.5314 54.4239 16.8272 92.591 run23.mat -1 -1 713 460099 470435 +910390 918729 8340 2441189.0439 2441606.7942 52.7748 16.8267 92.7444 run23.mat -1 -1 713 470589 474759 +1002933 1014301 11369 2445814.7416 2446386.514 52.7751 16.8254 93.2064 run23.mat -1 -1 714 516863 522547 +1014632 1035322 20691 2446403.1024 2447435.906 51.1291 16.8283 92.5376 run23.mat -1 -1 714 522712 533058 +1035633 1056310 20678 2447451.4593 2448484.5666 49.4759 16.8275 92.6252 run23.mat -1 -1 714 533213 543553 +1056625 1077303 20679 2448500.3197 2449534.5025 47.8274 16.8279 92.6131 run23.mat -1 -1 714 543710 554050 +1077610 1098285 20676 2449549.8584 2450583.1801 46.1799 16.8263 92.7512 run23.mat -1 -1 714 554203 564541 +1098590 1098727 138 2450598.5467 2450605.4492 44.545 16.8286 93.6955 run23.mat -1 -1 714 564694 564762 +1182970 1202641 19672 2454818.2342 2455800.7234 44.5335 16.8266 92.9031 run23.mat -1 -1 715 606885 616721 +1202947 1223632 20686 2455815.9657 2456852.034 42.8782 16.8275 92.5256 run23.mat -1 -1 715 616874 627217 +1223943 1244637 20695 2456867.5872 2457902.5445 41.232 16.8278 92.4673 run23.mat -1 -1 715 627373 637720 +1244947 1265622 20676 2457918.0477 2458950.194 39.5823 16.8271 92.6356 run23.mat -1 -1 715 637875 648213 +1265930 1278807 12878 2458965.7245 2459609.5355 37.938 16.8268 92.7127 run23.mat -1 -1 715 648367 654806 +1362902 1369740 6839 2463814.3701 2464157.8403 37.9379 16.8258 93.9852 run23.mat -1 -1 716 696855 700274 +1370066 1390721 20656 2464174.2751 2465207.6953 36.2827 16.8272 92.4812 run23.mat -1 -1 716 700437 710765 +1391031 1411723 20693 2465223.2007 2466257.3847 34.6337 16.8279 92.6312 run23.mat -1 -1 716 710920 721267 +1412034 1432726 20693 2466272.6829 2467306.4371 32.9829 16.8269 92.6007 run23.mat -1 -1 716 721422 731768 +1433043 1453707 20665 2467322.2932 2468354.7219 31.3327 16.8268 92.6348 run23.mat -1 -1 716 731927 742260 +1454015 1458687 4673 2468370.1248 2468603.7714 29.6831 16.8285 92.6007 run23.mat -1 -1 716 742414 744750 +1542994 1558164 15171 2472818.806 2473578.9662 29.6829 16.8273 93.1658 run23.mat -1 -1 717 786905 794490 +1558497 1579187 20691 2473595.6197 2474629.3489 28.0318 16.8271 92.5329 run23.mat -1 -1 717 794657 805002 +1579493 1600183 20691 2474644.5305 2475681.4345 26.3833 16.8273 92.5 run23.mat -1 -1 717 805155 815501 +1600489 1621165 20677 2475696.7374 2476728.7917 24.7354 16.8269 92.5785 run23.mat -1 -1 717 815654 825992 +1621473 1638786 17314 2476744.1947 2477609.4613 23.0885 16.8268 92.6502 run23.mat -1 -1 717 826146 834803 +1722896 1725282 2387 2481815.6568 2481934.9817 23.0904 16.8217 95.2599 run23.mat -1 -1 718 876860 878053 +1725598 1746282 20685 2481950.785 2482985.3278 21.4376 16.8274 92.5297 run23.mat -1 -1 718 878211 888554 +1746592 1767266 20675 2483000.8338 2484032.9067 19.7883 16.8275 92.5889 run23.mat -1 -1 718 888709 899046 +1767577 1788283 20707 2484048.3364 2485085.9048 18.1425 16.8266 92.5836 run23.mat -1 -1 718 899201 909555 +1788593 1809264 20672 2485101.408 2486133.2154 16.4928 16.8269 92.5994 run23.mat -1 -1 718 909710 920046 +1809569 1818666 9098 2486148.4684 2486601.568 14.851 16.826 92.5876 run23.mat -1 -1 718 920198 924747 +1902909 1913542 10634 2490815.5984 2491347.2189 14.8409 16.827 93.2134 run23.mat -1 -1 719 966870 972187 +1913876 1934566 20691 2491363.7896 2492399.2707 13.1927 16.826 92.4748 run23.mat -1 -1 719 972354 982700 +1934871 1955544 20674 2492414.4027 2493449.0434 11.5427 16.827 92.6273 run23.mat -1 -1 719 982852 993189 +1955852 1976545 20694 2493464.4498 2494497.3812 9.8961 16.8279 92.6336 run23.mat -1 -1 719 993343 1003690 +1976851 1997504 20654 2494512.6842 2495544.3112 8.2459 16.8276 92.6949 run23.mat -1 -1 719 1003843 1014170 +1997812 1998726 915 2495559.4649 2495604.9133 6.6048 16.8282 92.1569 run23.mat -1 -1 719 1014324 1014781 +2083040 2101884 18845 2499824.29 2500764.441 6.5943 16.8262 92.8638 run23.mat -1 -1 720 1056940 1066362 +2102207 2122886 20680 2500780.3493 2501813.7709 4.9405 16.8274 92.589 run23.mat -1 -1 720 1066524 1076864 +2123195 2143886 20692 2501829.1044 2502863.7637 3.2949 16.8273 92.5204 run23.mat -1 -1 720 1077018 1087364 +2144190 2164886 20697 2502879.0893 2503915.4582 1.6445 16.8261 92.6223 run23.mat -1 -1 720 1087516 1097865 +2165190 2178826 13637 2503930.5406 2504613.1443 -0.0030861 16.8272 92.7417 run23.mat -1 -1 720 1098017 1104835 +2262929 2269106 6178 2508816.996 2509127.2702 -0.0044189 16.8277 94.4296 run23.mat -1 -1 721 1146888 1149977 +2269444 2290126 20683 2509144.1953 2510178.2862 -1.6507 16.827 92.4061 run23.mat -1 -1 721 1150146 1160487 +2290435 2311109 20675 2510193.6197 2511225.8201 -3.2997 16.8269 92.5782 run23.mat -1 -1 721 1160642 1170980 +2311416 2332110 20695 2511241.297 2512276.5864 -4.947 16.8276 92.5227 run23.mat -1 -1 721 1171133 1181480 +2332418 2353089 20672 2512292.1137 2513326.1932 -6.5939 16.8275 92.7304 run23.mat -1 -1 721 1181634 1191970 +2353403 2358705 5303 2513342.023 2513605.8444 -8.2432 16.8263 92.6995 run23.mat -1 -1 721 1192127 1194778 +2443007 2457525 14519 2517820.7869 2518548.2055 -8.2461 16.8263 93.1242 run23.mat -1 -1 722 1236931 1244191 +2457832 2478526 20695 2518563.6824 2519599.1923 -9.8947 16.8266 92.531 run23.mat -1 -1 722 1244344 1254691 +2478832 2499528 20697 2519614.4953 2520645.6013 -11.5404 16.8266 92.6236 run23.mat -1 -1 722 1254844 1265193 +2499834 2520525 20692 2520660.9042 2521697.3231 -13.1906 16.8264 92.5437 run23.mat -1 -1 722 1265346 1275692 +2520835 2538785 17951 2521712.7031 2522610.5552 -14.8437 16.8273 92.7382 run23.mat -1 -1 722 1275847 1284822 +2622869 2624626 1758 2526814.3839 2526902.9603 -14.8453 16.8306 95.0564 run23.mat -1 -1 723 1326866 1327744 +2624940 2645630 20691 2526918.7901 2527955.8768 -16.4888 16.8273 92.6113 run23.mat -1 -1 723 1327901 1338247 +2645945 2666627 20683 2527971.3941 2529004.0026 -18.1415 16.8273 92.6046 run23.mat -1 -1 723 1338405 1348746 +2666935 2687627 20693 2529019.2834 2530051.974 -19.7877 16.8274 92.6083 run23.mat -1 -1 723 1348900 1359247 +2687932 2708629 20698 2530067.3501 2531101.3376 -21.4378 16.8272 92.5433 run23.mat -1 -1 723 1359399 1369748 +2708935 2718645 9711 2531116.6408 2531604.2743 -23.0919 16.8275 92.8204 run23.mat -1 -1 723 1369901 1374756 +2802748 2812886 10139 2535808.6707 2536314.6094 -23.0929 16.827 93.427 run23.mat -1 -1 724 1416810 1421879 +2813205 2833888 20684 2536330.5661 2537366.5341 -24.7388 16.8268 92.5272 run23.mat -1 -1 724 1422038 1432380 +2834193 2854889 20697 2537381.9133 2538415.2513 -26.3913 16.8276 92.5919 run23.mat -1 -1 724 1432533 1442881 +2855195 2875867 20673 2538430.5571 2539465.0441 -28.0387 16.8271 92.5611 run23.mat -1 -1 724 1443034 1453371 +2876176 2896847 20672 2539480.3745 2540513.4416 -29.691 16.8269 92.7061 run23.mat -1 -1 724 1453525 1463861 +2897158 2898665 1508 2540529.1202 2540605.0932 -31.3482 16.8251 92.3344 run23.mat -1 -1 724 1464017 1464770 +2982989 3001307 18319 2544820.9804 2545735.6261 -31.3374 16.8268 92.9258 run23.mat -1 -1 725 1506934 1516108 +3001631 3022307 20677 2545751.9633 2546786.9309 -32.9884 16.8275 92.5191 run23.mat -1 -1 725 1516255 1526594 +3022617 3043295 20679 2546802.3725 2547838.1642 -34.6345 16.827 92.5877 run23.mat -1 -1 725 1526749 1537088 +3043612 3064289 20678 2547854.0208 2548886.5109 -36.2841 16.8269 92.5912 run23.mat -1 -1 725 1537247 1547586 +3064595 3078744 14150 2548901.6955 2549609.0865 -37.9334 16.8285 92.7505 run23.mat -1 -1 725 1547739 1554814 +3164896 3170590 5695 2553916.919 2554201.4987 -37.9291 16.8251 94.2764 run23.mat -1 -1 726 1597891 1600738 +3170921 3191610 20690 2554217.9516 2555254.5416 -39.5787 16.8264 92.531 run23.mat -1 -1 726 1600904 1611249 +3191920 3212611 20692 2555269.9216 2556301.1179 -41.2322 16.8271 92.5078 run23.mat -1 -1 726 1611404 1621750 +3212919 3233611 20693 2556316.5212 2557352.4773 -42.8764 16.8273 92.5143 run23.mat -1 -1 726 1621904 1632251 +3233919 3254592 20674 2557368.0046 2558401.2254 -44.5324 16.8268 92.6665 run23.mat -1 -1 726 1632405 1642741 +3254898 3260704 5807 2558416.407 2558706.2945 -46.1731 16.8269 92.9478 run23.mat -1 -1 726 1642894 1645797 +3344773 3358712 13940 2562911.9177 2563608.1254 -46.1802 16.8265 93.213 run23.mat -1 -1 727 1687834 1694804 +3359019 3379733 20715 2563623.3566 2564657.6579 -47.8313 16.8286 92.5656 run23.mat -1 -1 727 1694957 1705315 +3380040 3400714 20675 2564673.138 2565707.3833 -49.4783 16.8267 92.6121 run23.mat -1 -1 727 1705469 1715806 +3401020 3421710 20691 2565722.8098 2566756.7519 -51.1295 16.8268 92.6913 run23.mat -1 -1 727 1715959 1726304 +3422018 3440584 18567 2566772.2783 2567702.7629 -52.7822 16.8267 92.7067 run23.mat -1 -1 727 1726458 1735741 +3524643 3525811 1169 2571903.8761 2571962.2874 -52.7787 16.8255 97.7115 run23.mat -1 -1 728 1777773 1778357 +3526129 3546812 20684 2571978.1904 2573014.641 -54.4312 16.8274 92.6659 run23.mat -1 -1 728 1778516 1788858 +3547123 3567815 20693 2573030.197 2574061.2406 -56.0789 16.8266 92.5326 run23.mat -1 -1 728 1789013 1799360 +3568122 3588815 20694 2574076.7175 2575113.3408 -57.7294 16.827 92.6243 run23.mat -1 -1 728 1799513 1809860 +3589119 3609797 20679 2575128.5503 2576161.3197 -59.3764 16.8275 92.6056 run23.mat -1 -1 728 1810012 1820352 +3610109 3620444 10336 2576176.9858 2576695.16 -61.0257 16.827 92.7591 run23.mat -1 -1 728 1820508 1825676 +3704492 3713973 9482 2580897.1901 2581370.3894 -61.0233 16.8263 93.3314 run23.mat -1 -1 729 1867701 1872442 +3714278 3734970 20693 2581385.7655 2582420.8717 -62.671 16.8267 92.6055 run23.mat -1 -1 729 1872595 1882941 +3735278 3755954 20677 2582436.4022 2583468.6072 -64.321 16.827 92.6365 run23.mat -1 -1 729 1883095 1893434 +3756260 3776953 20694 2583483.913 2584520.3287 -65.9724 16.828 92.5813 run23.mat -1 -1 729 1893587 1903934 +3777261 3797934 20674 2584535.856 2585570.0323 -67.6195 16.8279 92.6149 run23.mat -1 -1 729 1904088 1914424 +3798241 3800264 2024 2585585.5123 2585685.9516 -69.2701 16.829 92.5489 run23.mat -1 -1 729 1914578 1915590 +3884514 3902273 17760 2589899.4574 2590786.3106 -69.2693 16.8281 93.0536 run23.mat -1 -1 730 1957717 1966596 +3902599 3923295 20697 2590802.4844 2591836.593 -70.9166 16.8272 92.5074 run23.mat -1 -1 730 1966759 1977108 +3923602 3944278 20677 2591852.073 2592884.4513 -72.5699 16.8268 92.5481 run23.mat -1 -1 730 1977261 1987600 +3944586 3965275 20690 2592899.8573 2593934.5603 -74.2151 16.8267 92.5885 run23.mat -1 -1 730 1987754 1998099 +3965582 3980364 14783 2593949.9133 2594691.4432 -75.8706 16.8271 92.685 run23.mat -1 -1 730 1998252 2005644 +4064465 4069394 4930 2598894.4505 2599140.9534 -75.8657 16.8286 93.8144 run23.mat -1 -1 731 2047696 2050160 +4069702 4090417 20716 2599156.3594 2600194.4101 -77.5165 16.8272 92.5575 run23.mat -1 -1 731 2050314 2060673 +4090724 4111416 20693 2600209.763 2601243.3675 -79.1718 16.8281 92.6069 run23.mat -1 -1 731 2060826 2071172 +4111723 4132417 20695 2601258.8475 2602293.0161 -80.8189 16.8269 92.6088 run23.mat -1 -1 731 2071326 2081673 +4132724 4153388 20665 2602308.493 2603342.0301 -82.4684 16.8274 92.6453 run23.mat -1 -1 731 2081827 2092159 +4153696 4160262 6567 2603357.1997 2603686.4947 -82.4698 18.5083 92.6054 run23.mat -1 -1 731 2092313 2095596 +4244559 4257833 13275 2607901.8289 2608564.2259 -82.4677 18.5066 93.3816 run23.mat -1 -1 732 2137747 2144384 +4258144 4278823 20680 2608579.9076 2609613.7598 -80.8166 18.5078 92.5351 run23.mat -1 -1 732 2144540 2154880 +4279128 4299820 20693 2609628.8948 2610664.8792 -79.169 18.5065 92.6314 run23.mat -1 -1 732 2155032 2165379 +4300125 4320819 20695 2610680.2553 2611713.4037 -77.5137 18.5075 92.6323 run23.mat -1 -1 732 2165531 2175878 +4321127 4340321 19195 2611728.8067 2612688.7489 -75.8675 18.5077 92.7013 run23.mat -1 -1 732 2176032 2185630 +4424363 4424934 572 2616891.4735 2616919.8025 -75.8638 18.5036 98.9514 run23.mat -1 -1 733 2227652 2227938 +4425254 4445905 20652 2616935.6787 2617966.3177 -74.218 18.5071 92.6034 run23.mat -1 -1 733 2228098 2238424 +4446224 4466900 20677 2617982.2028 2619018.0423 -72.5687 18.507 92.5132 run23.mat -1 -1 733 2238583 2248922 +4467205 4487900 20696 2619033.1742 2620067.3255 -70.9189 18.5069 92.6177 run23.mat -1 -1 733 2249075 2259423 +4488210 4508880 20671 2620082.9568 2621118.8777 -69.2671 18.5067 92.5825 run23.mat -1 -1 733 2259578 2269913 +4509187 4520183 10997 2621134.2309 2621684.1826 -67.6227 18.5067 92.685 run23.mat -1 -1 733 2270067 2275565 +4604416 4613143 8728 2625894.9267 2626331.7817 -67.6217 18.5065 93.3958 run23.mat -1 -1 734 2317683 2322047 +4613462 4634139 20678 2626347.6114 2627379.5943 -65.9705 18.5063 92.401 run23.mat -1 -1 734 2322206 2332545 +4634446 4655139 20694 2627394.8285 2628430.17 -64.3228 18.5071 92.5813 run23.mat -1 -1 734 2332698 2343046 +4655448 4676139 20692 2628445.7477 2629479.4355 -62.6724 18.5073 92.5469 run23.mat -1 -1 734 2343200 2353546 +4676446 4697115 20670 2629494.6697 2630530.2045 -61.0252 18.5073 92.7372 run23.mat -1 -1 734 2353699 2364035 +4697428 4700203 2776 2630545.8575 2630684.6342 -59.3787 18.5078 93.0274 run23.mat -1 -1 734 2364191 2365579 +4784327 4801286 16960 2634889.8556 2635737.6328 -59.3802 18.5072 92.858 run23.mat -1 -1 735 2407642 2416123 +4801597 4822280 20684 2635753.0655 2636787.143 -57.7308 18.5069 92.5288 run23.mat -1 -1 735 2416278 2426620 +4822589 4843278 20690 2636802.7237 2637838.3561 -56.078 18.5065 92.504 run23.mat -1 -1 735 2426774 2437119 +4843586 4864279 20694 2637853.7593 2638887.9996 -54.43 18.5069 92.5539 run23.mat -1 -1 735 2437273 2447620 +4864587 4880101 15515 2638903.2834 2639678.8869 -52.7789 18.5071 92.7135 run23.mat -1 -1 735 2447774 2455532 +4964359 4968573 4215 2643891.6193 2644103.3618 -52.7797 18.5054 94.9366 run23.mat -1 -1 736 2497663 2499770 +4968888 4989601 20714 2644118.9899 2645154.6804 -51.1313 18.5064 92.4269 run23.mat -1 -1 736 2499927 2510284 +4989907 5010582 20676 2645169.865 2646200.7464 -49.477 18.5073 92.5678 run23.mat -1 -1 736 2510437 2520775 +5010888 5031581 20694 2646216.0523 2647251.6392 -47.8296 18.5063 92.6083 run23.mat -1 -1 736 2520928 2531275 +5031889 5052565 20677 2647266.92 2648300.8992 -46.1769 18.5068 92.6204 run23.mat -1 -1 736 2531429 2541768 +5052876 5060181 7306 2648316.3319 2648681.9722 -44.5277 18.5074 92.694 run23.mat -1 -1 736 2541923 2545576 +5144483 5156885 12403 2652898.2668 2653518.8607 -44.5303 18.5068 92.9861 run23.mat -1 -1 737 2587728 2593917 +5157191 5177881 20691 2653534.1666 2654566.9817 -42.8784 18.5069 92.5644 run23.mat -1 -1 737 2594082 2604428 +5178188 5198880 20693 2654582.3381 2655615.2868 -41.2295 18.5069 92.6384 run23.mat -1 -1 737 2604582 2614928 +5199186 5219864 20679 2655630.5785 2656666.3741 -39.5816 18.5063 92.693 run23.mat -1 -1 737 2615081 2625421 +5220171 5240281 20111 2656681.6053 2657688.8109 -37.9328 18.5068 92.6712 run23.mat -1 -1 737 2625574 2635630 +5324394 5344982 20589 2661893.5288 2662924.0359 -36.2873 18.5069 92.8967 run23.mat -1 -1 738 2677688 2687982 +5345289 5365984 20696 2662939.2671 2663973.0423 -34.6314 18.5069 92.5232 run23.mat -1 -1 738 2688136 2698484 +5366290 5386982 20693 2663988.4688 2665021.5276 -32.9865 18.5064 92.5844 run23.mat -1 -1 738 2698637 2708983 +5387288 5407962 20675 2665036.9572 2666069.9806 -31.3356 18.5069 92.5947 run23.mat -1 -1 738 2709136 2719474 +5408271 5420121 11851 2666085.4338 2666678.1029 -29.6953 18.5071 92.6989 run23.mat -1 -1 738 2719628 2725553 +5504364 5512251 7888 2670891.3399 2671284.8175 -29.6885 18.5064 93.3916 run23.mat -1 -1 739 2767677 2771621 +5512564 5533242 20679 2671300.4705 2672335.7625 -28.0399 18.5069 92.4669 run23.mat -1 -1 739 2771777 2782117 +5533548 5554221 20674 2672351.1889 2673383.8365 -26.3921 18.5069 92.6753 run23.mat -1 -1 739 2782270 2792606 +5554531 5575221 20691 2673399.3395 2674434.0923 -24.7408 18.5068 92.5507 run23.mat -1 -1 739 2792761 2803107 +5575531 5596201 20671 2674449.5983 2675483.4343 -23.0927 18.5074 92.6657 run23.mat -1 -1 739 2803262 2813597 +5596507 5600161 3655 2675498.8045 2675682.3422 -21.4395 18.507 93.202 run23.mat -1 -1 739 2813750 2815577 +5684376 5700587 16212 2679893.5824 2680702.9954 -21.4387 18.5067 93.1474 run23.mat -1 -1 740 2857687 2865793 +5700903 5721581 20679 2680718.7987 2681754.7956 -19.7905 18.5071 92.5831 run23.mat -1 -1 740 2865951 2876290 +5721890 5742582 20693 2681770.126 2682803.2651 -18.1399 18.507 92.5656 run23.mat -1 -1 740 2876445 2886791 +5742888 5763583 20696 2682818.568 2683853.5373 -16.4935 18.5065 92.5692 run23.mat -1 -1 740 2886944 2897292 +5763889 5780201 16313 2683868.9669 2684685.409 -14.8424 18.5077 92.7103 run23.mat -1 -1 740 2897445 2905602 +5864157 5867659 3503 2688881.4971 2689057.7087 -14.8405 18.5076 95.5955 run23.mat -1 -1 741 2947581 2949332 +5867973 5888662 20690 2689073.412 2690106.1193 -13.1929 18.5066 92.5022 run23.mat -1 -1 741 2949489 2959834 +5888970 5909665 20696 2690121.5222 2691157.5579 -11.5393 18.5067 92.5594 run23.mat -1 -1 741 2959988 2970336 +5909972 5930664 20693 2691172.9138 2692208.2465 -9.8937 18.5065 92.6031 run23.mat -1 -1 741 2970490 2980836 +5930970 5951629 20660 2692223.4311 2693254.37 -8.245 18.5068 92.6556 run23.mat -1 -1 741 2980989 2991319 +5951945 5960061 8117 2693270.2587 2693678.0658 -6.5929 18.506 92.7103 run23.mat -1 -1 741 2991477 2995535 +6044354 6055971 11618 2697891.6708 2698473.3196 -6.5956 18.5075 93.2319 run23.mat -1 -1 742 3037684 3043492 +6056285 6076986 20702 2698489.1494 2699524.8473 -4.9467 18.5068 92.6283 run23.mat -1 -1 742 3043649 3054000 +6077293 6097967 20675 2699540.1834 2700571.9631 -3.3011 18.5075 92.5979 run23.mat -1 -1 742 3054154 3064491 +6098273 6118966 20694 2700587.1447 2701621.9159 -1.6527 18.5067 92.5889 run23.mat -1 -1 742 3064644 3074991 +6119275 6139944 20670 2701637.4936 2702671.495 -0.0071139 18.5065 92.7254 run23.mat -1 -1 742 3075146 3085481 +6224226 6244191 19966 2706885.3326 2707883.7911 1.6467 18.5064 92.9686 run23.mat -1 -1 743 3127624 3137607 +6244502 6265186 20685 2707899.4697 2708935.35 3.2968 18.5066 92.5378 run23.mat -1 -1 743 3137762 3148105 +6265495 6286187 20693 2708950.8 2709984.4731 4.9427 18.507 92.5381 run23.mat -1 -1 743 3148259 3158605 +6286492 6307166 20675 2709999.6051 2711033.2923 6.5948 18.5067 92.6008 run23.mat -1 -1 743 3158758 3169095 +6307473 6320000 12528 2711048.5235 2711674.1108 8.2468 18.5065 92.7452 run23.mat -1 -1 743 3169249 3175513 +6404254 6411457 7204 2715887.4437 2716246.9923 8.2482 18.5061 93.6835 run23.mat -1 -1 744 3217642 3221244 +6411771 6432469 20699 2716262.8253 2717297.2584 9.8964 18.5061 92.5158 run23.mat -1 -1 744 3221401 3231750 +6432776 6453449 20674 2717312.4927 2718346.0952 11.547 18.5071 92.6403 run23.mat -1 -1 744 3231903 3242240 +6453756 6474450 20695 2718361.4482 2719396.6604 13.1898 18.5075 92.5776 run23.mat -1 -1 744 3242394 3252741 +6474766 6495430 20665 2719412.591 2720446.3328 14.8444 18.5065 92.6183 run23.mat -1 -1 744 3252899 3263231 +6495739 6500040 4302 2720461.9137 2720677.8565 16.4912 18.5068 92.8524 run23.mat -1 -1 744 3263386 3265537 +6584351 6599794 15444 2724892.0827 2725666.0841 16.491 18.5071 93.0163 run23.mat -1 -1 745 3307694 3315416 +6600104 6620790 20687 2725681.4642 2726715.0133 18.1434 18.5063 92.5102 run23.mat -1 -1 745 3315571 3325914 +6621096 6641791 20696 2726730.4429 2727764.4683 19.7864 18.5063 92.7177 run23.mat -1 -1 745 3326067 3336415 +6642100 6662788 20689 2727780.0492 2728814.6475 21.4361 18.5066 92.5346 run23.mat -1 -1 745 3336570 3346914 +6663098 6680139 17042 2728830.0306 2729681.5848 23.0866 18.5067 92.6933 run23.mat -1 -1 745 3347069 3355590 +6764268 6766911 2644 2733889.7875 2734021.634 23.0852 18.5088 94.9974 run23.mat -1 -1 746 3397656 3398978 +6767220 6787909 20690 2734036.9674 2735070.5063 24.7334 18.5072 92.4794 run23.mat -1 -1 746 3399132 3409477 +6788215 6808911 20697 2735085.8122 2736120.4287 26.3826 18.5065 92.5922 run23.mat -1 -1 746 3409630 3419979 +6809220 6829890 20671 2736136.0065 2737170.1973 28.032 18.5064 92.6741 run23.mat -1 -1 746 3420134 3430469 +6830197 6850892 20696 2737185.538 2738221.2743 29.6843 18.5072 92.6596 run23.mat -1 -1 746 3430622 3440970 +6851197 6860019 8823 2738236.4093 2738676.0502 31.3315 18.5061 92.8937 run23.mat -1 -1 746 3441123 3445534 +6944266 6955181 10916 2742889.0641 2743435.2977 31.335 18.5073 93.1629 run23.mat -1 -1 747 3487660 3493117 +6955497 6976173 20677 2743450.9754 2744484.7619 32.9832 18.5061 92.4976 run23.mat -1 -1 747 3493275 3503614 +6976480 6997175 20696 2744499.9931 2745534.784 34.6309 18.5069 92.5788 run23.mat -1 -1 747 3503767 3514115 +6997480 7018166 20687 2745550.2216 2746583.4592 36.2854 18.5069 92.6855 run23.mat -1 -1 747 3514268 3524611 +7018475 7039153 20679 2746599.0369 2747633.89 37.9362 18.5073 92.6242 run23.mat -1 -1 747 3524766 3535105 +7039459 7040058 600 2747649.1929 2747679.1487 39.5879 18.5014 93.7148 run23.mat -1 -1 747 3535258 3535557 +7124234 7143484 19251 2751887.6957 2752850.8669 39.5844 18.5068 93.0729 run23.mat -1 -1 748 3577647 3587273 +7143794 7164471 20678 2752866.3728 2753896.8551 41.2323 18.5071 92.5751 run23.mat -1 -1 748 3587428 3597767 +7164778 7185473 20696 2753912.0893 2754947.0323 42.8826 18.507 92.5455 run23.mat -1 -1 748 3597920 3608268 +7185780 7206453 20674 2754962.5092 2755997.663 44.5308 18.5068 92.6461 run23.mat -1 -1 748 3608422 3618759 +7206758 7220119 13362 2756012.7979 2756681.6562 46.1797 18.506 92.7383 run23.mat -1 -1 748 3618911 3625592 +7304302 7310725 6424 2760888.8418 2761211.7865 46.183 18.5052 93.4978 run23.mat -1 -1 749 3667685 3670892 +7311040 7331734 20695 2761227.4146 2762260.8152 47.8252 18.5064 92.4951 run23.mat -1 -1 749 3671054 3681402 +7332039 7352732 20694 2762276.0683 2763311.9055 49.4774 18.5068 92.6695 run23.mat -1 -1 749 3681555 3691902 +7353040 7373714 20675 2763327.1863 2764361.8736 51.1263 18.5064 92.5695 run23.mat -1 -1 749 3692056 3702393 +7374026 7394714 20689 2764377.3528 2765409.8772 52.7765 18.5063 92.6824 run23.mat -1 -1 749 3702549 3712893 +7395022 7400138 5117 2765425.158 2765684.8555 54.4174 18.5054 92.7447 run23.mat -1 -1 749 3713047 3715605 +7484171 7498917 14747 2769882.2076 2770622.4435 54.4218 18.5071 93.2822 run23.mat -1 -1 750 3757624 3764997 +7499240 7519921 20682 2770638.5326 2771672.3735 56.0699 18.5063 92.5324 run23.mat -1 -1 750 3765159 3775499 +7520237 7540919 20683 2771688.3041 2772720.7521 57.7214 18.507 92.6047 run23.mat -1 -1 750 3775657 3785999 +7541234 7561914 20681 2772736.5051 2773772.3913 59.3716 18.5069 92.5813 run23.mat -1 -1 750 3786156 3796497 +7562221 7580077 17857 2773787.6225 2774679.4384 61.0213 18.5062 92.6724 run23.mat -1 -1 750 3796651 3805579 +7664178 7666047 1870 2778885.3024 2778978.0292 61.0165 18.5068 94.7295 run23.mat -1 -1 751 3847631 3848566 +7666357 7687054 20698 2778993.4092 2780028.4557 62.6736 18.5067 92.5503 run23.mat -1 -1 751 3848721 3859070 +7687362 7708034 20673 2780043.8589 2781077.716 64.3195 18.5068 92.5791 run23.mat -1 -1 751 3859224 3869560 +7708339 7729036 20698 2781092.9692 2782126.102 65.9728 18.5067 92.5802 run23.mat -1 -1 751 3869713 3880062 +7729339 7750014 20676 2782141.2578 2783177.5164 67.6205 18.5066 92.644 run23.mat -1 -1 751 3880213 3890551 +7750320 7759958 9639 2783193.0046 2783675.6668 69.2726 18.5071 92.7497 run23.mat -1 -1 751 3890704 3895523 +7844275 7854338 10064 2787888.5722 2788394.292 69.2701 18.5065 93.2601 run23.mat -1 -1 752 3937684 3942715 +7854655 7875337 20683 2788410.206 2789444.3228 70.9175 18.5066 92.5505 run23.mat -1 -1 752 3942874 3953215 +7875643 7896335 20693 2789459.7493 2790492.9536 72.5703 18.506 92.529 run23.mat -1 -1 752 3953368 3963715 +7896643 7917335 20693 2790508.4809 2791543.2884 74.2202 18.5067 92.6467 run23.mat -1 -1 752 3963869 3974215 +7917642 7938300 20659 2791558.7653 2792591.7756 75.8697 18.5069 92.7392 run23.mat -1 -1 752 3974369 3984698 +7938605 7940038 1434 2792606.9075 2792678.003 77.5155 18.5074 92.189 run23.mat -1 -1 752 3984851 3985567 +8024310 8042619 18310 2796890.3664 2797808.3526 77.5132 18.5066 92.9282 run23.mat -1 -1 753 4027705 4036860 +8042925 8063594 20670 2797823.6268 2798857.4591 79.1641 18.5073 92.5884 run23.mat -1 -1 753 4037013 4047348 +8063905 8084597 20693 2798873.0123 2799907.8696 80.8156 18.5067 92.5448 run23.mat -1 -1 753 4047504 4057850 +8084902 8105243 20342 2799923.1227 2800938.4259 82.4587 18.506 92.6038 run23.mat -1 -1 753 4058002 4068174 +275794 296205 20412 2900079.9341 2901099.8572 82.4669 20.1906 92.8223 run24.mat -1 -1 755 160415 170620 +296524 317218 20695 2901115.9391 2902151.4928 80.8145 20.19 92.5821 run24.mat -1 -1 755 170780 181127 +317527 338221 20695 2902166.8232 2903202.0278 79.1642 20.19 92.5865 run24.mat -1 -1 755 181282 191629 +338527 359239 20713 2903217.4574 2904252.2568 77.5132 20.1901 92.473 run24.mat -1 -1 755 191782 202139 +359546 371590 12045 2904267.488 2904868.2581 75.8615 20.1903 92.4963 run24.mat -1 -1 755 202292 208315 +455666 463355 7690 2909075.3259 2909459.2622 75.8629 20.1899 93.5393 run24.mat -1 -1 756 250354 254199 +463686 484379 20694 2909475.9524 2910507.9381 74.214 20.1896 92.5535 run24.mat -1 -1 756 254365 264711 +484685 505381 20697 2910523.1227 2911557.8498 72.5671 20.19 92.5311 run24.mat -1 -1 756 264864 275213 +505685 526380 20696 2911573.169 2912608.1205 70.9157 20.1906 92.5965 run24.mat -1 -1 756 275365 285712 +526688 547342 20655 2912623.5269 2913658.3061 69.2635 20.1901 92.6789 run24.mat -1 -1 756 285866 296194 +547659 551450 3792 2913674.2872 2913864.5247 67.6288 20.1911 93.2645 run24.mat -1 -1 756 296353 298248 +635717 651636 15920 2918075.4098 2918872.1093 67.6181 20.1897 92.8679 run24.mat -1 -1 757 340383 348344 +651963 672660 20698 2918888.5945 2919925.024 65.9719 20.1903 92.5446 run24.mat -1 -1 757 348507 358856 +672966 693660 20695 2919940.327 2920972.969 64.3187 20.1907 92.5247 run24.mat -1 -1 757 359009 369356 +693967 714661 20695 2920988.2033 2922022.8476 62.6756 20.1905 92.6211 run24.mat -1 -1 757 369510 379857 +714966 731510 16545 2922037.9796 2922866.7265 61.0205 20.1906 92.6123 run24.mat -1 -1 757 380010 388282 +815528 818719 3192 2927067.152 2927225.4672 61.025 20.1906 95.0917 run24.mat -1 -1 758 430293 431889 +819045 839741 20697 2927241.641 2928279.0952 59.375 20.1901 92.4647 run24.mat -1 -1 758 432052 442400 +840047 860726 20680 2928294.3984 2929326.8215 57.73 20.1905 92.6513 run24.mat -1 -1 758 442553 452893 +861044 881722 20679 2929342.853 2930377.6014 56.0751 20.1905 92.6729 run24.mat -1 -1 758 453052 463392 +882027 902701 20675 2930392.6232 2931425.0905 54.4268 20.1906 92.6357 run24.mat -1 -1 758 463544 473882 +903010 911329 8320 2931440.424 2931855.9423 52.7767 20.1907 92.8518 run24.mat -1 -1 758 474036 478196 +995463 1007018 11556 2936064.3892 2936640.3336 52.7731 20.1904 93.5074 run24.mat -1 -1 759 520265 526042 +1007350 1028020 20671 2936656.94 2937691.6962 51.1289 20.1903 92.4963 run24.mat -1 -1 759 526208 536544 +1028328 1049019 20692 2937706.977 2938740.4457 49.4719 20.1905 92.5911 run24.mat -1 -1 759 536698 547044 +1049327 1070007 20681 2938755.7265 2939791.4148 47.8275 20.1905 92.6207 run24.mat -1 -1 759 547198 557538 +1070320 1090981 20662 2939807.1942 2940842.3013 46.1757 20.1902 92.7141 run24.mat -1 -1 759 557695 568026 +1091288 1091369 82 2940857.5324 2940861.5511 44.4529 20.1873 87.7454 run24.mat -1 -1 759 568179 568220 +1175454 1195119 19666 2945063.3457 2946045.8405 44.5296 20.1901 92.8587 run24.mat -1 -1 760 610264 620097 +1195465 1216139 20675 2946063.1439 2947099.1027 42.8761 20.1903 92.6041 run24.mat -1 -1 760 620270 630608 +1216446 1237122 20677 2947114.4557 2948146.9258 41.2279 20.1903 92.5439 run24.mat -1 -1 760 630761 641099 +1237429 1258120 20692 2948162.4027 2949197.7704 39.5795 20.1904 92.6362 run24.mat -1 -1 760 641253 651599 +1258426 1271249 12824 2949212.952 2949855.2223 37.9304 20.1902 92.7001 run24.mat -1 -1 760 651752 658163 +1355370 1362360 6991 2954061.0383 2954409.0666 37.9362 20.1909 93.7039 run24.mat -1 -1 761 700226 703721 +1362699 1383382 20684 2954426.0231 2955460.0627 36.2839 20.1903 92.533 run24.mat -1 -1 761 703890 714232 +1383689 1404380 20692 2955475.3579 2956509.6255 34.6317 20.1897 92.5025 run24.mat -1 -1 761 714386 724732 +1404686 1425380 20695 2956524.9284 2957561.9173 32.9835 20.1911 92.5217 run24.mat -1 -1 761 724885 735233 +1425688 1446361 20674 2957577.3232 2958607.2417 31.3386 20.191 92.6657 run24.mat -1 -1 761 735387 745724 +1446666 1451149 4484 2958622.4949 2958848.3007 29.6831 20.1896 92.7738 run24.mat -1 -1 761 745876 748118 +1535496 1550720 15225 2963068.0154 2963828.8328 29.6919 20.1908 92.9287 run24.mat -1 -1 762 790293 797905 +1551047 1571741 20695 2963845.318 2964877.0115 28.0368 20.1903 92.5427 run24.mat -1 -1 762 798069 808416 +1572050 1592742 20693 2964892.345 2965927.1267 26.3882 20.1905 92.6421 run24.mat -1 -1 762 808571 818917 +1593049 1613720 20672 2965942.6067 2966977.8214 24.7373 20.1904 92.5728 run24.mat -1 -1 762 819071 829406 +1614028 1631269 17242 2966993.1052 2967855.3039 23.0898 20.1904 92.6051 run24.mat -1 -1 762 829560 838182 +1715524 1718001 2478 2972067.649 2972191.5503 23.0929 20.189 94.7437 run24.mat -1 -1 763 880311 881550 +1718307 1739019 20713 2972206.8532 2973244.0311 21.4334 20.1896 92.5164 run24.mat -1 -1 763 881703 892059 +1739329 1760007 20679 2973259.2991 2974291.7126 19.7891 20.1904 92.5541 run24.mat -1 -1 763 892214 902554 +1760314 1781023 20710 2974306.9438 2975341.4753 18.136 20.1899 92.5991 run24.mat -1 -1 763 902707 913062 +1781329 1802004 20676 2975356.7785 2976391.3852 16.4883 20.1904 92.6459 run24.mat -1 -1 763 913215 923553 +1802308 1811309 9002 2976406.4676 2976857.1762 14.8404 20.1902 92.8703 run24.mat -1 -1 763 923705 928206 +1895541 1906242 10702 2981067.9873 2981604.2136 14.8388 20.1908 93.2827 run24.mat -1 -1 764 970323 975674 +1906573 1927262 20690 2981620.6387 2982655.1071 13.1891 20.19 92.4807 run24.mat -1 -1 764 975839 986184 +1927570 1948244 20675 2982670.3849 2983704.6255 11.5433 20.1909 92.6159 run24.mat -1 -1 764 986338 996676 +1948554 1969264 20711 2983720.2537 2984755.9631 9.8897 20.1899 92.5694 run24.mat -1 -1 764 996831 1007187 +1969571 1990245 20675 2984771.1943 2985805.4806 8.2468 20.1906 92.6708 run24.mat -1 -1 764 1007340 1017678 +1990552 1991328 777 2985820.837 2985859.6532 6.6026 20.1902 92.1876 run24.mat -1 -1 764 1017831 1018219 +2075359 2094324 18966 2990058.9296 2991009.7967 6.5937 20.19 92.9406 run24.mat -1 -1 765 1060236 1069719 +2094651 2115345 20695 2991025.9021 2992058.8424 4.9464 20.1907 92.5788 run24.mat -1 -1 765 1069883 1080230 +2115653 2136327 20675 2992074.1232 2993107.2408 3.2957 20.1907 92.5925 run24.mat -1 -1 765 1080384 1090722 +2136634 2157327 20694 2993122.7177 2994156.7974 1.649 20.191 92.6286 run24.mat -1 -1 765 1090875 1101222 +2157634 2171188 13555 2994172.1538 2994851.593 -0.00016805 20.1909 92.7689 run24.mat -1 -1 765 1101375 1108153 +2255326 2259394 4069 2999058.1379 2999260.7908 0.0078821 20.1908 94.8683 run24.mat -1 -1 766 1150224 1152258 +2259704 2261605 1902 2999276.2354 2999371.1619 0.0052211 20.1923 93.2024 run24.mat -1 -1 766 1152413 1153364 +2261938 2282624 20687 2999387.8154 3000424.3463 -1.6459 20.1907 92.5588 run24.mat -1 -1 766 1153530 1163873 +2282933 2303627 20695 3000439.8022 3001473.3788 -3.2987 20.1907 92.6482 run24.mat -1 -1 766 1164028 1174376 +2303933 2324626 20694 3001488.5604 3002524.6776 -4.9474 20.1907 92.6131 run24.mat -1 -1 766 1174529 1184875 +2324931 2345608 20678 3002540.0536 3003572.3864 -6.5924 20.1913 92.5863 run24.mat -1 -1 766 1185028 1195366 +2345915 2351228 5314 3003587.6436 3003851.677 -8.2593 20.1903 93.0863 run24.mat -1 -1 766 1195520 1198177 +2435491 2449905 14415 3008066.7003 3008787.2404 -8.2492 20.1904 92.9635 run24.mat -1 -1 767 1240310 1247517 +2450235 2470908 20674 3008803.8768 3009836.0346 -9.8986 20.1904 92.5731 run24.mat -1 -1 767 1247682 1258019 +2471215 2491908 20694 3009851.4466 3010888.7233 -11.5489 20.1899 92.5216 run24.mat -1 -1 767 1258173 1268520 +2492217 2512907 20691 3010904.0568 3011938.5719 -13.1939 20.1902 92.6952 run24.mat -1 -1 767 1268674 1279020 +2513218 2531287 18070 3011954.0016 3012854.706 -14.8471 20.19 92.6902 run24.mat -1 -1 767 1279176 1288210 +2615269 2617007 1739 3017057.8426 3017144.2256 -14.8453 20.1914 97.7348 run24.mat -1 -1 768 1330203 1331072 +2617342 2638028 20687 3017160.846 3018195.1286 -16.4951 20.1904 92.4986 run24.mat -1 -1 768 1331240 1341583 +2638336 2659011 20676 3018210.4094 3019242.8096 -18.1402 20.1907 92.6571 run24.mat -1 -1 768 1341737 1352075 +2659317 2680007 20691 3019258.2361 3020291.747 -19.787 20.1905 92.6396 run24.mat -1 -1 768 1352228 1362574 +2680314 2701011 20698 3020306.9782 3021344.0035 -21.438 20.1901 92.6006 run24.mat -1 -1 768 1362727 1373076 +2701317 2711167 9851 3021359.3067 3021850.1787 -23.0922 20.1908 92.748 run24.mat -1 -1 768 1373229 1378154 +2795427 2805406 9980 3026063.3394 3026562.4056 -23.083 20.1906 93.7884 run24.mat -1 -1 769 1420286 1425276 +2805722 2826404 20683 3026578.0833 3027612.2339 -24.7403 20.1906 92.5612 run24.mat -1 -1 769 1425434 1435775 +2826711 2847408 20698 3027627.7077 3028662.6614 -26.3829 20.1911 92.567 run24.mat -1 -1 769 1435929 1446278 +2847716 2868387 20672 3028678.0646 3029713.8446 -28.0352 20.19 92.6138 run24.mat -1 -1 769 1446432 1456767 +2868695 2889369 20675 3029729.2505 3030759.231 -29.6844 20.1908 92.7365 run24.mat -1 -1 769 1456921 1467259 +2889676 2891186 1511 3030774.584 3030850.0985 -31.3447 20.1909 93.1445 run24.mat -1 -1 769 1467413 1468168 +2975517 2993827 18311 3035067.0687 3035982.5757 -31.3371 20.1909 93.0766 run24.mat -1 -1 770 1510335 1519491 +2994161 3014831 20671 3035999.2789 3037033.6229 -32.9825 20.1904 92.5687 run24.mat -1 -1 770 1519658 1529993 +3015137 3035831 20695 3037048.8075 3038084.5435 -34.6379 20.19 92.5461 run24.mat -1 -1 770 1530146 1540494 +3036138 3056811 20674 3038099.7777 3039133.6049 -36.2878 20.1903 92.6344 run24.mat -1 -1 770 1540647 1550984 +3057123 3071266 14144 3039149.2082 3039854.5922 -37.9372 20.1902 92.7506 run24.mat -1 -1 770 1551140 1558212 +3155290 3160908 5619 3044058.0351 3044340.5644 -37.9349 20.191 93.8638 run24.mat -1 -1 771 1600225 1603034 +3161233 3181912 20680 3044356.8555 3045388.9762 -39.5857 20.1902 92.6178 run24.mat -1 -1 771 1603197 1613537 +3182217 3202911 20695 3045404.1052 3046437.949 -41.2353 20.1907 92.6364 run24.mat -1 -1 771 1613690 1624037 +3203218 3223909 20692 3046453.4259 3047488.564 -42.8805 20.1904 92.5887 run24.mat -1 -1 771 1624191 1634537 +3224216 3244891 20676 3047504.0409 3048536.5863 -44.5313 20.1901 92.6724 run24.mat -1 -1 771 1634690 1645028 +3245202 3251126 5925 3048551.9036 3048850.326 -46.1877 20.1893 92.7644 run24.mat -1 -1 771 1645183 1648146 +3335215 3349031 13817 3053054.5817 3053744.097 -46.1777 20.1904 93.3224 run24.mat -1 -1 772 1690192 1697100 +3349337 3370052 20716 3053759.5235 3054795.8211 -47.8301 20.1897 92.5641 run24.mat -1 -1 772 1697253 1707611 +3370357 3391052 20696 3054811.1972 3055845.362 -49.4767 20.1904 92.6484 run24.mat -1 -1 772 1707764 1718111 +3391357 3412042 20686 3055860.497 3056896.6983 -51.1291 20.1902 92.6865 run24.mat -1 -1 772 1718264 1728607 +3412352 3431006 18655 3056912.1802 3057842.4828 -52.7718 20.1909 92.7147 run24.mat -1 -1 772 1728762 1738089 +3515298 3516373 1076 3062056.7585 3062110.0925 -52.7729 20.1902 97.6683 run24.mat -1 -1 773 1780237 1780775 +3516716 3537374 20659 3062127.1097 3063163.0535 -54.4252 20.1905 92.5766 run24.mat -1 -1 773 1780946 1791276 +3537681 3558375 20695 3063178.4064 3064211.4118 -56.0723 20.19 92.5568 run24.mat -1 -1 773 1791429 1801777 +3558681 3579372 20692 3064226.7149 3065262.3805 -57.727 20.1899 92.5408 run24.mat -1 -1 773 1801930 1812276 +3579681 3600355 20675 3065277.9583 3066311.7553 -59.3756 20.1902 92.5839 run24.mat -1 -1 773 1812430 1822768 +3600669 3611086 10418 3066327.3338 3066848.1217 -61.0258 20.1903 92.706 run24.mat -1 -1 773 1822925 1828133 +3695153 3704431 9279 3071052.1847 3071513.8035 -61.023 20.19 93.1775 run24.mat -1 -1 774 1870169 1874808 +3704759 3725435 20677 3071530.3425 3072564.7054 -62.6767 20.1903 92.5259 run24.mat -1 -1 774 1874972 1885311 +3725744 3746435 20692 3072580.2831 3073613.9342 -64.3229 20.1902 92.5854 run24.mat -1 -1 774 1885465 1895811 +3746739 3767436 20698 3073629.1371 3074665.4451 -65.9762 20.1904 92.5703 run24.mat -1 -1 774 1895963 1906312 +3767742 3788412 20671 3074680.6874 3075714.2777 -67.625 20.1902 92.6825 run24.mat -1 -1 774 1906465 1916800 +3788721 3790905 2185 3075729.7527 3075838.9754 -69.2708 20.188 93.2823 run24.mat -1 -1 774 1916955 1918047 +3875178 3892732 17555 3080051.0115 3080930.3412 -69.2744 20.1902 92.9875 run24.mat -1 -1 775 1960185 1968963 +3893059 3913741 20683 3080946.8264 3081979.4116 -70.9204 20.1903 92.5733 run24.mat -1 -1 775 1969126 1979468 +3914053 3934734 20682 3081995.1406 3083031.3083 -72.5728 20.1902 92.5736 run24.mat -1 -1 775 1979624 1989965 +3935040 3955749 20710 3083046.6113 3084080.312 -74.22 20.1901 92.5979 run24.mat -1 -1 775 1990118 2000473 +3956059 3970965 14907 3084095.815 3084841.024 -75.8674 20.1898 92.6481 run24.mat -1 -1 775 2000628 2008081 +4055024 4059832 4809 3089046.195 3089284.9825 -75.8708 20.19 94.0657 run24.mat -1 -1 776 2050112 2052516 +4060158 4080874 20717 3089301.1596 3090337.9377 -77.5149 20.1903 92.4823 run24.mat -1 -1 776 2052679 2063038 +4081181 4101872 20692 3090353.1719 3091386.3666 -79.1673 20.1905 92.5451 run24.mat -1 -1 776 2063191 2073537 +4102181 4122856 20676 3091401.8196 3092437.0767 -80.816 20.1906 92.6117 run24.mat -1 -1 776 2073692 2084030 +4123162 4143835 20674 3092452.267 3093485.9893 -82.4654 20.1908 92.5639 run24.mat -1 -1 776 2084183 2094520 +4144144 4150845 6702 3093501.3197 3093833.7765 -82.4639 21.8727 92.7153 run24.mat -1 -1 776 2094674 2098025 +4234916 4248002 13087 3098041.2876 3098692.5003 -82.4626 21.8747 93.2409 run24.mat -1 -1 777 2140062 2146606 +4248314 4268996 20683 3098708.2293 3099743.7755 -80.8173 21.8738 92.5215 run24.mat -1 -1 777 2146762 2157103 +4269302 4289996 20695 3099759.0785 3100793.4138 -79.1657 21.8742 92.5623 run24.mat -1 -1 777 2157256 2167603 +4290312 4310977 20666 3100809.3444 3101844.3947 -77.5155 21.8744 92.606 run24.mat -1 -1 777 2167761 2178094 +4311299 4330745 19447 3101860.4978 3102829.3413 -75.8655 21.8746 92.7417 run24.mat -1 -1 777 2178255 2187978 +4414822 4415154 333 3107034.8637 3107051.3352 -75.8754 21.8716 97.6288 run24.mat -1 -1 778 2230019 2230185 +4415466 4436118 20653 3107066.8144 3108101.7704 -74.2202 21.8742 92.5965 run24.mat -1 -1 778 2230341 2240668 +4436428 4457115 20688 3108117.3382 3109150.1219 -72.5749 21.8739 92.6468 run24.mat -1 -1 778 2240823 2251166 +4457420 4478095 20676 3109165.3524 3110197.641 -70.9221 21.8739 92.5661 run24.mat -1 -1 778 2251319 2261657 +4478401 4499097 20697 3110213.0706 3111249.1409 -69.2715 21.8731 92.6055 run24.mat -1 -1 778 2261810 2272159 +4499403 4510624 11222 3111264.3194 3111825.5151 -67.6281 21.8736 92.8816 run24.mat -1 -1 778 2272312 2277922 +4594659 4603164 8506 3116026.7465 3116451.5685 -67.6236 21.875 93.4516 run24.mat -1 -1 779 2319941 2324194 +4603481 4624155 20675 3116467.4056 3117503.4114 -65.972 21.8735 92.606 run24.mat -1 -1 779 2324352 2334690 +4624465 4645160 20696 3117518.9144 3118550.7467 -64.3214 21.8744 92.5708 run24.mat -1 -1 779 2334845 2345193 +4645465 4666159 20695 3118566.1259 3119600.9538 -62.6698 21.8747 92.673 run24.mat -1 -1 779 2345345 2355693 +4666468 4687138 20671 3119616.2842 3120650.8118 -61.0218 21.8734 92.7217 run24.mat -1 -1 779 2355847 2366183 +4687446 4690424 2979 3120666.0957 3120814.7229 -59.382 21.8727 93.0962 run24.mat -1 -1 779 2366337 2367826 +4774681 4791439 16759 3125028.6591 3125865.3178 -59.3738 21.8744 92.8698 run24.mat -1 -1 780 2409956 2418336 +4791747 4812418 20672 3125880.7852 3126915.0373 -57.7261 21.8741 92.5412 run24.mat -1 -1 780 2418490 2428826 +4812724 4833419 20696 3126930.3405 3127963.689 -56.0715 21.874 92.6221 run24.mat -1 -1 780 2428979 2439327 +4833726 4854418 20693 3127978.8092 3129015.5076 -54.4246 21.8744 92.6522 run24.mat -1 -1 780 2439480 2449827 +4854727 4870444 15718 3129030.9606 3129815.5705 -52.7784 21.8744 92.724 run24.mat -1 -1 780 2449981 2457840 +4954397 4958515 4119 3134012.7492 3134218.7341 -52.7823 21.8742 94.5914 run24.mat -1 -1 781 2499818 2501878 +4958828 4979519 20692 3134234.3906 3135271.1187 -51.1329 21.8745 92.4985 run24.mat -1 -1 781 2502034 2512380 +4979828 5000500 20673 3135286.4522 3136319.8011 -49.4792 21.8746 92.6033 run24.mat -1 -1 781 2512534 2522871 +5000810 5021499 20690 3136335.4324 3137368.9587 -47.8298 21.8738 92.5575 run24.mat -1 -1 781 2523026 2533371 +5021808 5042498 20691 3137384.2922 3138418.9805 -46.1844 21.8737 92.7162 run24.mat -1 -1 781 2533525 2543871 +5042806 5050304 7499 3138434.2644 3138808.3539 -44.5374 21.8734 92.7636 run24.mat -1 -1 781 2544025 2547774 +5134391 5146604 12214 3143013.1576 3143623.6135 -44.5343 21.8729 93.0308 run24.mat -1 -1 782 2589819 2595932 +5146912 5167580 20669 3143639.0167 3144674.7407 -42.8803 21.8742 92.5973 run24.mat -1 -1 782 2596080 2606414 +5167888 5188600 20713 3144690.1466 3145724.754 -41.2332 21.8747 92.5818 run24.mat -1 -1 782 2606568 2616925 +5188909 5209600 20692 3145740.0813 3146775.8643 -39.5871 21.8741 92.5645 run24.mat -1 -1 782 2617079 2627426 +5209906 5230183 20278 3146791.2908 3147801.6947 -37.9352 21.874 92.6841 run24.mat -1 -1 782 2627579 2637717 +5314256 5334657 20402 3152008.0393 3153028.6753 -36.2846 21.8743 92.8006 run24.mat -1 -1 783 2679756 2689956 +5334966 5355662 20697 3153044.3728 3154076.3451 -34.6341 21.8743 92.5813 run24.mat -1 -1 783 2690111 2700460 +5355969 5376659 20691 3154091.6983 3155128.3108 -32.9841 21.8744 92.5267 run24.mat -1 -1 783 2700613 2710958 +5376966 5397645 20680 3155143.5451 3156177.6788 -31.3344 21.8738 92.5791 run24.mat -1 -1 783 2711112 2721452 +5397960 5410044 12085 3156193.559 3156797.1755 -29.6862 21.8736 92.625 run24.mat -1 -1 783 2721609 2727652 +5493962 5501694 7733 3160993.175 3161380.7479 -29.6917 21.8751 93.9969 run24.mat -1 -1 784 2769613 2773479 +5502009 5522682 20674 3161396.3831 3162428.6641 -28.0308 21.8743 92.479 run24.mat -1 -1 784 2773636 2783974 +5522989 5543682 20694 3162444.0813 3163477.7368 -26.3859 21.8744 92.6276 run24.mat -1 -1 784 2784127 2794474 +5543993 5564686 20694 3163493.2928 3164529.3583 -24.7365 21.8742 92.6215 run24.mat -1 -1 784 2794629 2804976 +5564992 5585662 20671 3164544.7848 3165577.2876 -23.0891 21.8739 92.7127 run24.mat -1 -1 784 2805129 2815465 +5585971 5589863 3893 3165592.7405 3165788.5517 -21.4473 21.8738 92.8331 run24.mat -1 -1 784 2815619 2817565 +5673979 5689916 15938 3169994.6534 3170791.4856 -21.4362 21.8736 93.1148 run24.mat -1 -1 785 2859625 2867594 +5690235 5710901 20667 3170807.5675 3171841.3948 -19.7908 21.8739 92.5377 run24.mat -1 -1 785 2867754 2878087 +5711208 5731900 20693 3171856.8717 3172890.1494 -18.1427 21.8737 92.5477 run24.mat -1 -1 785 2878240 2888587 +5732210 5752901 20692 3172905.5616 3173938.5777 -16.4965 21.8732 92.5436 run24.mat -1 -1 785 2888742 2899088 +5753209 5769761 16553 3173954.1051 3174782.8836 -14.8473 21.8739 92.7929 run24.mat -1 -1 785 2899242 2907518 +5854024 5857188 3165 3178995.1877 3179154.6957 -14.8439 21.8722 94.7878 run24.mat -1 -1 786 2949652 2951234 +5857497 5878185 20689 3179170.2734 3180204.3265 -13.1928 21.8737 92.4832 run24.mat -1 -1 786 2951388 2961733 +5878493 5899167 20675 3180219.8538 3181255.6195 -11.5444 21.8745 92.5593 run24.mat -1 -1 786 2961887 2972224 +5899476 5920186 20711 3181271.0754 3182304.1227 -9.8936 21.8749 92.6595 run24.mat -1 -1 786 2972379 2982734 +5920491 5941164 20674 3182319.2576 3183352.9242 -8.2486 21.8746 92.5672 run24.mat -1 -1 786 2982886 2993224 +5941472 5949802 8331 3183368.205 3183785.5141 -6.5927 21.8751 92.7999 run24.mat -1 -1 786 2993378 2997543 +6033866 6045268 11403 3187986.4438 3188558.5807 -6.5927 21.8737 93.2358 run24.mat -1 -1 787 3039577 3045278 +6045581 6066265 20685 3188574.2372 3189608.7426 -4.9444 21.8741 92.5681 run24.mat -1 -1 787 3045434 3055777 +6066573 6087266 20694 3189624.0234 3190659.5047 -3.2975 21.874 92.6661 run24.mat -1 -1 787 3055931 3066278 +6087571 6100868 13298 3190674.8808 3191339.1458 -1.6465 21.8734 92.5535 run24.mat -1 -1 787 3066430 3073079 +6101118 6108264 7147 3191351.7491 3191710.1931 -1.6433 21.8748 92.7222 run24.mat -1 -1 787 3073204 3076777 +6108570 6129224 20655 3191725.4961 3192756.4466 -0.00060234 21.8738 92.7228 run24.mat -1 -1 787 3076930 3087258 +6129530 6129643 114 3192771.6312 3192777.2386 1.6567 21.8705 92.9667 run24.mat -1 -1 787 3087411 3087467 +6213727 6233407 19681 3196983.0146 3197967.6957 1.6516 21.8747 92.8308 run24.mat -1 -1 788 3129511 3139351 +6233728 6254404 20677 3197983.8784 3199014.2489 3.2979 21.8736 92.5695 run24.mat -1 -1 788 3139512 3149851 +6254710 6275405 20696 3199029.7654 3200066.0512 4.9461 21.8741 92.6084 run24.mat -1 -1 788 3150004 3160351 +6275711 6296388 20678 3200081.2358 3201115.3112 6.5922 21.8742 92.5571 run24.mat -1 -1 788 3160504 3170843 +6296694 6309562 12869 3201130.4928 3201774.7016 8.2498 21.8736 92.7902 run24.mat -1 -1 788 3170996 3177430 +6393618 6400455 6838 3205977.7249 3206319.7877 8.2415 21.8741 93.363 run24.mat -1 -1 789 3219461 3222879 +6400771 6421447 20677 3206335.6515 3207369.0423 9.894 21.8736 92.4684 run24.mat -1 -1 789 3223037 3233376 +6421750 6442446 20697 3207384.3176 3208418.7957 11.5382 21.8734 92.6229 run24.mat -1 -1 789 3233527 3243875 +6442754 6463444 20691 3208434.2022 3209467.712 13.1881 21.8743 92.5629 run24.mat -1 -1 789 3244030 3254375 +6463753 6484426 20674 3209483.0425 3210517.9312 14.8396 21.8728 92.6417 run24.mat -1 -1 789 3254530 3264867 +6484731 6489382 4652 3210533.3073 3210766.1879 16.492 21.8736 92.5733 run24.mat -1 -1 789 3265019 3267345 +6573576 6588720 15145 3214975.003 3215732.2187 16.4891 21.8742 92.9403 run24.mat -1 -1 790 3309444 3317016 +6589031 6609705 20675 3215747.6483 3216780.7856 18.1378 21.8744 92.5053 run24.mat -1 -1 790 3317171 3327509 +6610009 6630707 20699 3216795.9887 3217832.0407 19.785 21.8737 92.5184 run24.mat -1 -1 790 3327661 3338010 +6631015 6651685 20671 3217847.5712 3218881.0655 21.4378 21.8739 92.5682 run24.mat -1 -1 790 3338164 3348500 +6651991 6669402 17412 3218896.2471 3219765.3816 23.0893 21.8748 92.6615 run24.mat -1 -1 790 3348653 3357359 +6753427 6755776 2350 3223965.7812 3224083.2801 23.0927 21.8754 95.7236 run24.mat -1 -1 791 3399373 3400547 +6756092 6776767 20676 3224099.0867 3225135.1016 24.7401 21.8734 92.5474 run24.mat -1 -1 791 3400705 3411043 +6777075 6797770 20696 3225150.478 3226186.6093 26.386 21.875 92.6315 run24.mat -1 -1 791 3411197 3421546 +6798076 6818766 20691 3226201.9125 3227235.4987 28.0357 21.8734 92.6092 run24.mat -1 -1 791 3421699 3432044 +6819072 6839766 20695 3227250.9252 3228284.9588 29.6913 21.8742 92.5918 run24.mat -1 -1 791 3432197 3442544 +6840074 6849241 9168 3228300.3648 3228757.7491 31.3361 21.873 92.8101 run24.mat -1 -1 791 3442698 3447282 +6933311 6943861 10551 3232962.4614 3233489.5939 31.3356 21.8738 93.2963 run24.mat -1 -1 792 3489319 3494594 +6944174 6964867 20694 3233505.1258 3234538.7242 32.9832 21.8745 92.5639 run24.mat -1 -1 792 3494750 3505097 +6965173 6985867 20695 3234554.0271 3235589.7494 34.6334 21.8733 92.5368 run24.mat -1 -1 792 3505250 3515598 +6986174 7006867 20694 3235604.9806 3236637.5981 36.2866 21.8741 92.6202 run24.mat -1 -1 792 3515751 3526098 +7007174 7027829 20656 3236652.8293 3237685.9885 37.9289 21.8736 92.6411 run24.mat -1 -1 792 3526252 3536580 +7028136 7029101 966 3237701.4654 3237750.1143 39.5823 21.8741 92.7701 run24.mat -1 -1 792 3536734 3537216 +7113406 7132188 18783 3241964.8893 3242906.3933 39.5781 21.8735 92.8952 run24.mat -1 -1 793 3579370 3588761 +7132500 7153176 20677 3242921.8726 3243953.7519 41.2245 21.874 92.5442 run24.mat -1 -1 793 3588917 3599256 +7153488 7174169 20682 3243969.48 3245004.6603 42.8749 21.8738 92.5763 run24.mat -1 -1 793 3599412 3609753 +7174477 7195170 20694 3245020.0636 3246055.0192 44.5268 21.8735 92.6477 run24.mat -1 -1 793 3609907 3620254 +7195478 7209181 13704 3246070.4222 3246755.4923 46.1777 21.875 92.6299 run24.mat -1 -1 793 3620408 3627260 +7293202 7299214 6013 3250956.8939 3251259.2468 46.1837 21.8754 93.8181 run24.mat -1 -1 794 3669272 3672273 +7299534 7320211 20678 3251275.0074 3252307.2225 47.8265 21.8746 92.5446 run24.mat -1 -1 794 3672438 3682777 +7320518 7341208 20691 3252322.4537 3253357.5747 49.478 21.8738 92.6255 run24.mat -1 -1 794 3682931 3693276 +7341516 7362228 20713 3253373.102 3254410.0298 51.1283 21.8741 92.599 run24.mat -1 -1 794 3693430 3703787 +7362535 7383208 20674 3254425.383 3255457.277 52.7763 21.8741 92.5803 run24.mat -1 -1 794 3703940 3714277 +7383516 7388981 5466 3255472.683 3255744.178 54.4272 21.8735 92.8428 run24.mat -1 -1 794 3714431 3717164 +7472981 7487332 14352 3259945.7674 3260663.9732 54.4256 21.8745 93.2778 run24.mat -1 -1 795 3759166 3766342 +7487646 7508329 20684 3260679.803 3261715.4874 56.0784 21.8739 92.4963 run24.mat -1 -1 795 3766499 3776840 +7508637 7529330 20694 3261731.0147 3262762.468 57.7258 21.8741 92.584 run24.mat -1 -1 795 3776994 3787341 +7529637 7550329 20693 3262777.7023 3263812.9365 59.3774 21.8743 92.5883 run24.mat -1 -1 795 3787494 3797842 +7550636 7568861 18226 3263828.4134 3264739.7904 61.0232 21.8741 92.8004 run24.mat -1 -1 795 3797995 3807107 +7652838 7654440 1603 3268939.4194 3269020.1817 61.0115 21.8733 97.1548 run24.mat -1 -1 796 3849098 3849899 +7654757 7675430 20674 3269036.1627 3270070.2125 62.6724 21.8744 92.5459 run24.mat -1 -1 796 3850058 3860395 +7675737 7696429 20693 3270085.4437 3271118.5595 64.3194 21.8738 92.5409 run24.mat -1 -1 796 3860548 3870895 +7696739 7717431 20693 3271134.0625 3272166.8866 65.9689 21.8729 92.5764 run24.mat -1 -1 796 3871050 3881396 +7717738 7738410 20673 3272182.243 3273216.1571 67.6216 21.8744 92.5939 run24.mat -1 -1 796 3881549 3891886 +7738721 7748740 10020 3273231.7136 3273733.5168 69.2646 21.8732 92.5331 run24.mat -1 -1 796 3892042 3897051 +7832852 7842522 9671 3277939.8273 3278422.6603 69.2668 21.8744 93.2078 run24.mat -1 -1 797 3939109 3943944 +7842839 7863529 20691 3278438.6446 3279472.7472 70.9156 21.8735 92.5277 run24.mat -1 -1 797 3944103 3954448 +7863838 7884530 20693 3279488.2032 3280524.0333 72.5673 21.8731 92.5491 run24.mat -1 -1 797 3954603 3964949 +7884840 7905531 20692 3280539.5363 3281574.0974 74.2158 21.8736 92.604 run24.mat -1 -1 797 3965104 3975450 +7905842 7926510 20669 3281589.776 3282621.604 75.8615 21.8736 92.6184 run24.mat -1 -1 797 3975606 3985940 +7926817 7928599 1783 3282636.9569 3282726.0741 77.5192 21.8736 92.849 run24.mat -1 -1 797 3986094 3986985 +8012856 8030829 17974 3286941.2114 3287838.0896 77.5134 21.8734 92.7934 run24.mat -1 -1 798 4029115 4038102 +8031145 8051829 20685 3287853.8927 3288890.2854 79.1661 21.8747 92.6865 run24.mat -1 -1 798 4038260 4048603 +8052138 8072810 20673 3288905.6158 3289938.0274 80.8145 21.874 92.5529 run24.mat -1 -1 798 4048757 4059094 +8073116 8093469 20354 3289953.4539 3290969.5857 82.4627 21.8744 92.6059 run24.mat -1 -1 798 4059247 4069423 +288971 309376 20406 3496364.6753 3497386.095 82.4675 23.5583 92.7299 run25.mat -1 -1 800 161383 171587 +309683 330377 20695 3497401.4514 3498435.56 80.8141 23.5573 92.5964 run25.mat -1 -1 800 171740 182088 +330684 351376 20693 3498451.0369 3499487.0456 79.1678 23.5569 92.5289 run25.mat -1 -1 800 182241 192588 +351685 372360 20676 3499502.6265 3500533.5813 77.5103 23.5587 92.5863 run25.mat -1 -1 800 192742 203080 +372675 384757 12083 3500549.0985 3501153.9476 75.8652 23.5583 92.7645 run25.mat -1 -1 800 203238 209279 +468755 476455 7701 3505356.0391 3505740.6253 75.8586 23.5573 93.522 run25.mat -1 -1 801 251280 255130 +476784 497476 20693 3505757.2113 3506790.6441 74.2132 23.5576 92.5422 run25.mat -1 -1 801 255294 265641 +497783 518475 20693 3506805.9973 3507841.8857 72.5655 23.5579 92.5949 run25.mat -1 -1 801 265794 276140 +518784 539457 20674 3507857.2191 3508891.0577 70.9147 23.5573 92.5629 run25.mat -1 -1 801 276295 286632 +539765 560439 20675 3508906.3386 3509937.9657 69.2648 23.5563 92.7351 run25.mat -1 -1 801 286786 297124 +560745 564636 3892 3509953.5283 3510149.7935 67.6133 23.5567 92.8365 run25.mat -1 -1 801 297277 299222 +648897 664734 15838 3514361.7562 3515153.5526 67.6191 23.557 93.0133 run25.mat -1 -1 802 341355 349273 +665072 685739 20668 3515170.3251 3516202.9399 65.9713 23.5578 92.5238 run25.mat -1 -1 802 349442 359777 +686045 706738 20694 3516218.3664 3517254.1218 64.3191 23.5586 92.5662 run25.mat -1 -1 802 359930 370276 +707045 727738 20694 3517269.414 3518303.833 62.6728 23.5589 92.4506 run25.mat -1 -1 802 370430 380777 +728044 744676 16633 3518319.136 3519149.0075 61.0222 23.5577 92.6892 run25.mat -1 -1 802 380930 389246 +828933 832106 3174 3523363.7886 3523522.4915 61.0285 23.5559 94.9162 run25.mat -1 -1 803 431377 432963 +832416 853138 20723 3523537.9979 3524574.3631 59.3752 23.5577 92.502 run25.mat -1 -1 803 433118 443479 +853445 874117 20673 3524589.7195 3525621.5401 57.73 23.5586 92.5932 run25.mat -1 -1 803 443633 453970 +874426 895117 20692 3525636.9931 3526673.8521 56.0749 23.5577 92.6049 run25.mat -1 -1 803 454124 464470 +895424 916120 20697 3526689.205 3527724.8811 54.4268 23.5579 92.6756 run25.mat -1 -1 803 464624 474972 +916424 924715 8292 3527739.9635 3528154.8552 52.7776 23.5574 92.7774 run25.mat -1 -1 803 475124 479269 +1010852 1022297 11446 3532461.0961 3533033.5666 52.7774 23.558 93.2961 run25.mat -1 -1 804 522340 528063 +1022624 1043298 20675 3533049.92 3534082.9531 51.1308 23.5576 92.4828 run25.mat -1 -1 804 528226 538563 +1043607 1064301 20695 3534098.409 3535132.0966 49.4727 23.5589 92.5892 run25.mat -1 -1 804 538718 549066 +1064607 1085320 20714 3535147.2782 3536182.9004 47.8272 23.5563 92.5637 run25.mat -1 -1 804 549219 559576 +1085624 1106280 20657 3536197.9827 3537231.0347 46.1762 23.557 92.6934 run25.mat -1 -1 804 559728 570056 +1106589 1106675 87 3537246.6156 3537250.952 44.5107 23.5516 91.8609 run25.mat -1 -1 804 570211 570254 +1192650 1212316 19667 3541549.6133 3542535.2114 44.5273 23.5564 92.8506 run25.mat -1 -1 805 613243 623077 +1212640 1233305 20666 3542551.4145 3543584.0572 42.8751 23.5573 92.547 run25.mat -1 -1 805 623239 633571 +1233616 1254319 20704 3543599.4868 3544632.7057 41.2269 23.5574 92.582 run25.mat -1 -1 805 633727 644079 +1254626 1275297 20672 3544647.9369 3545682.5295 39.5797 23.5574 92.5932 run25.mat -1 -1 805 644232 654568 +1275605 1288436 12832 3545698.0569 3546340.1392 37.929 23.5578 92.7761 run25.mat -1 -1 805 654722 661138 +1372696 1379557 6862 3550551.6158 3550895.2715 37.935 23.5567 93.2544 run25.mat -1 -1 806 703270 706701 +1379892 1400579 20688 3550911.8918 3551945.7872 36.283 23.5574 92.5106 run25.mat -1 -1 806 706868 717212 +1400888 1421568 20681 3551961.2405 3552997.5463 34.6322 23.5583 92.5668 run25.mat -1 -1 806 717366 727707 +1421885 1442568 20684 3553013.3993 3554046.0058 32.9841 23.5573 92.5466 run25.mat -1 -1 806 727866 738208 +1442884 1463553 20670 3554061.9365 3555095.7714 31.3401 23.5589 92.5805 run25.mat -1 -1 806 738366 748700 +1463864 1468495 4632 3555111.201 3555341.9875 29.6874 23.5567 92.9186 run25.mat -1 -1 806 748856 751171 +1552785 1567896 15112 3559557.0573 3560312.8531 29.6897 23.557 92.9309 run25.mat -1 -1 807 793318 800875 +1568221 1588899 20679 3560329.1065 3561361.2641 28.0362 23.5583 92.5438 run25.mat -1 -1 807 801037 811376 +1589206 1609900 20695 3561376.617 3562413.4061 26.3906 23.557 92.5671 run25.mat -1 -1 807 811530 821877 +1610209 1630896 20688 3562428.9839 3563464.628 24.7362 23.5575 92.5573 run25.mat -1 -1 807 822032 832376 +1631205 1648595 17391 3563480.081 3564349.5677 23.0934 23.5581 92.7044 run25.mat -1 -1 807 832530 841225 +1732628 1734957 2330 3568551.2321 3568667.3963 23.0903 23.5534 95.4547 run25.mat -1 -1 808 883244 884408 +1735285 1755981 20697 3568683.6694 3569716.4872 21.4369 23.5573 92.526 run25.mat -1 -1 808 884572 894921 +1756286 1776980 20695 3569731.8633 3570766.2473 19.7898 23.5575 92.5951 run25.mat -1 -1 808 895074 905421 +1777284 1797978 20695 3570781.3296 3571815.8434 18.1406 23.5583 92.5252 run25.mat -1 -1 808 905573 915920 +1798286 1818961 20676 3571831.2464 3572868.2515 16.4945 23.5567 92.6439 run25.mat -1 -1 808 916074 926412 +1819271 1828434 9164 3572883.7547 3573341.9963 14.838 23.5572 92.7717 run25.mat -1 -1 808 926567 931149 +1912690 1923337 10648 3577553.3477 3578086.0817 14.8426 23.5573 93.6074 run25.mat -1 -1 809 973279 978603 +1923662 1944342 20681 3578102.466 3579137.9063 13.187 23.5571 92.4361 run25.mat -1 -1 809 978765 989105 +1944651 1965340 20690 3579153.2428 3580185.8579 11.539 23.5564 92.6351 run25.mat -1 -1 809 989260 999605 +1965647 1986338 20692 3580201.0891 3581235.1666 9.8905 23.5564 92.5787 run25.mat -1 -1 809 999759 1010104 +1986645 2007319 20675 3581250.6466 3582284.4886 8.242 23.5574 92.6733 run25.mat -1 -1 809 1010258 1020595 +2007626 2008454 829 3582299.7198 3582340.7994 6.5978 23.5525 91.9273 run25.mat -1 -1 809 1020749 1021163 +2094482 2113486 19005 3586643.8248 3587592.3895 6.5931 23.557 92.9946 run25.mat -1 -1 810 1064179 1073681 +2113799 2134482 20684 3587608.0427 3588640.5471 4.9461 23.5573 92.52 run25.mat -1 -1 810 1073838 1084180 +2134790 2155481 20692 3588655.8736 3589690.9613 3.2972 23.5575 92.5916 run25.mat -1 -1 810 1084334 1094680 +2155792 2176483 20692 3589706.6398 3590742.0183 1.6489 23.5573 92.5073 run25.mat -1 -1 810 1094835 1105181 +2176789 2190374 13586 3590757.3215 3591435.0546 0.0032878 23.5574 92.8002 run25.mat -1 -1 810 1105334 1112127 +2274691 2280799 6109 3595653.7519 3595957.6507 -0.0012454 23.5572 93.6584 run25.mat -1 -1 811 1154287 1157341 +2281135 2301821 20687 3595974.593 3597010.4357 -1.6481 23.5572 92.5723 run25.mat -1 -1 811 1157509 1167853 +2302128 2322805 20678 3597025.9157 3598059.1142 -3.2963 23.5576 92.509 run25.mat -1 -1 811 1168006 1178346 +2323116 2343824 20709 3598074.6707 3599108.7515 -4.9441 23.5584 92.5472 run25.mat -1 -1 811 1178501 1188855 +2344131 2364786 20656 3599123.9857 3600156.7645 -6.5917 23.5573 92.624 run25.mat -1 -1 811 1189009 1199337 +2365093 2370454 5362 3600172.2414 3600441.9121 -8.2467 23.5566 92.5214 run25.mat -1 -1 811 1199490 1202171 +2454837 2469331 14495 3604659.4552 3605384.3958 -8.2459 23.5585 93.1847 run25.mat -1 -1 812 1244364 1251612 +2469661 2490326 20666 3605400.899 3606436.0457 -9.9023 23.5563 92.5609 run25.mat -1 -1 812 1251777 1262109 +2490633 2511326 20694 3606451.2799 3607484.3534 -11.545 23.5575 92.5452 run25.mat -1 -1 812 1262263 1272610 +2511631 2532325 20695 3607499.5459 3608535.8268 -13.193 23.557 92.568 run25.mat -1 -1 812 1272763 1283110 +2532630 2550734 18105 3608551.08 3609456.5103 -14.8476 23.5569 92.767 run25.mat -1 -1 812 1283262 1292315 +2634995 2636622 1628 3613666.8125 3613748.835 -14.8526 23.5584 94.5693 run25.mat -1 -1 813 1334447 1335261 +2636957 2657623 20667 3613765.7235 3614799.1909 -16.4932 23.5576 92.5395 run25.mat -1 -1 813 1335428 1345762 +2657931 2678623 20693 3614814.4717 3615849.403 -18.1418 23.5565 92.6234 run25.mat -1 -1 813 1345916 1356262 +2678934 2699607 20674 3615865.0189 3616901.027 -19.79 23.5587 92.5983 run25.mat -1 -1 813 1356417 1366754 +2699914 2720606 20693 3616916.2612 3617949.6919 -21.437 23.5582 92.5762 run25.mat -1 -1 813 1366908 1377255 +2720913 2730793 9881 3617965.1688 3618458.8098 -23.0893 23.5593 92.841 run25.mat -1 -1 813 1377408 1382348 +2815122 2825045 9924 3622677.3955 3623169.7998 -23.0877 23.5553 93.3136 run25.mat -1 -1 814 1424514 1429476 +2825350 2846067 20718 3623184.9317 3624223.0169 -24.7395 23.5582 92.5175 run25.mat -1 -1 814 1429629 1439987 +2846374 2867061 20688 3624238.3728 3625272.4418 -26.3846 23.557 92.5913 run25.mat -1 -1 814 1440141 1450485 +2867368 2888067 20700 3625287.6761 3626322.6853 -28.0345 23.5572 92.5794 run25.mat -1 -1 814 1450639 1460989 +2888373 2909025 20653 3626337.8668 3627369.8925 -29.6857 23.5578 92.7042 run25.mat -1 -1 814 1461142 1471468 +2909332 2911013 1682 3627385.4282 3627470.0973 -31.3315 23.5621 92.5438 run25.mat -1 -1 814 1471621 1472462 +2995507 3013583 18077 3631694.2508 3632598.1363 -31.3363 23.558 92.821 run25.mat -1 -1 815 1514711 1523750 +3013913 3034587 20675 3632614.5086 3633647.5602 -32.9831 23.5579 92.5993 run25.mat -1 -1 815 1523915 1534252 +3034893 3055584 20692 3633662.8661 3634698.1125 -34.6327 23.5584 92.6094 run25.mat -1 -1 815 1534405 1544751 +3055891 3076565 20675 3634713.3437 3635748.9893 -36.2865 23.5573 92.5226 run25.mat -1 -1 815 1544905 1555242 +3076870 3091273 14404 3635764.1243 3636480.8531 -37.9318 23.5581 92.6589 run25.mat -1 -1 815 1555394 1562596 +3175824 3181123 5300 3640710.7396 3640973.6491 -37.9417 23.5565 93.8467 run25.mat -1 -1 816 1604874 1607523 +3181454 3202148 20695 3640990.071 3642026.9048 -39.5836 23.557 92.5308 run25.mat -1 -1 816 1607689 1618036 +3202452 3223145 20694 3642042.1077 3643075.4705 -41.2353 23.5574 92.5507 run25.mat -1 -1 816 1618188 1628535 +3223454 3244127 20674 3643091.0482 3644125.2285 -42.8797 23.5582 92.5859 run25.mat -1 -1 816 1628690 1639026 +3244437 3265107 20671 3644140.8566 3645175.5878 -44.5338 23.5566 92.5645 run25.mat -1 -1 816 1639181 1649517 +3265417 3271592 6176 3645191.2785 3645500.9992 -46.186 23.5592 92.5984 run25.mat -1 -1 816 1649672 1652759 +3355906 3369564 13659 3649714.2207 3650398.0071 -46.1812 23.5586 93.0388 run25.mat -1 -1 817 1694919 1701748 +3369900 3390568 20669 3650414.946 3651448.8742 -47.8308 23.558 92.5449 run25.mat -1 -1 817 1701916 1712250 +3390875 3411567 20693 3651464.3511 3652498.5989 -49.4777 23.5578 92.6268 run25.mat -1 -1 817 1712404 1722750 +3411874 3432548 20675 3652513.9538 3653546.2142 -51.13 23.5578 92.586 run25.mat -1 -1 817 1722904 1733241 +3432854 3451672 18819 3653561.6407 3654502.3978 -52.7793 23.5568 92.6523 run25.mat -1 -1 817 1733394 1742804 +3536116 3537104 989 3658725.7661 3658775.1851 -52.7759 23.5553 97.9082 run25.mat -1 -1 818 1785027 1785521 +3537437 3558112 20676 3658791.8415 3659824.9 -54.4273 23.5578 92.6533 run25.mat -1 -1 818 1785688 1796025 +3558425 3579110 20686 3659840.6786 3660875.4236 -56.0741 23.5577 92.5901 run25.mat -1 -1 818 1796182 1806525 +3579415 3600107 20693 3660890.8027 3661925.9984 -57.7233 23.558 92.6026 run25.mat -1 -1 818 1806678 1817024 +3600412 3621086 20675 3661941.3776 3662972.3803 -59.3747 23.5585 92.5961 run25.mat -1 -1 818 1817177 1827514 +3621395 3631991 10597 3662987.8332 3663518.1931 -61.0235 23.5582 92.5703 run25.mat -1 -1 818 1827669 1832967 +3716428 3725567 9140 3667741.7242 3668198.1095 -61.0252 23.5562 93.2003 run25.mat -1 -1 819 1875188 1879757 +3725888 3746571 20684 3668214.0353 3669247.2753 -62.671 23.5578 92.4713 run25.mat -1 -1 819 1879918 1890260 +3746877 3767569 20693 3669262.5785 3670299.4353 -64.3213 23.5571 92.6522 run25.mat -1 -1 819 1890413 1900759 +3767875 3788571 20697 3670314.7382 3671347.7962 -65.9732 23.5574 92.5772 run25.mat -1 -1 819 1900912 1911261 +3788877 3809549 20673 3671363.0994 3672398.7273 -67.6258 23.5564 92.7209 run25.mat -1 -1 819 1911414 1921750 +3809856 3812231 2376 3672413.9615 3672531.8158 -69.267 23.5565 93.1622 run25.mat -1 -1 819 1921903 1923091 +3896730 3914088 17359 3676757.0847 3677626.242 -69.2733 23.5571 92.857 run25.mat -1 -1 820 1965343 1974022 +3914394 3935092 20699 3677641.5479 3678672.7049 -70.9204 23.5578 92.5405 run25.mat -1 -1 820 1974175 1984524 +3935412 3956074 20663 3678688.708 3679722.0644 -72.5741 23.5569 92.6282 run25.mat -1 -1 820 1984684 1995016 +3956388 3977070 20683 3679737.7675 3680773.2433 -74.2265 23.5568 92.6402 run25.mat -1 -1 820 1995173 2005514 +3977377 3992511 15135 3680788.4745 3681546.2235 -75.8669 23.5572 92.7837 run25.mat -1 -1 820 2005668 2013235 +4077014 4081569 4556 3685770.7982 3685998.0726 -75.8631 23.559 94.0718 run25.mat -1 -1 821 2055488 2057766 +4081876 4102592 20717 3686013.5526 3687049.9346 -77.5143 23.5577 92.5647 run25.mat -1 -1 821 2057919 2068278 +4102898 4123591 20694 3687065.3674 3688099.1377 -79.1674 23.5585 92.4745 run25.mat -1 -1 821 2068431 2078778 +4123898 4144591 20694 3688114.4909 3689152.3098 -80.8153 23.5576 92.6434 run25.mat -1 -1 821 2078931 2089279 +4144899 4165572 20674 3689167.8403 3690197.9877 -82.4637 23.5576 92.6717 run25.mat -1 -1 821 2089433 2099769 +4165880 4172791 6912 3690213.515 3690559.6529 -82.4592 25.2441 92.9157 run25.mat -1 -1 821 2099923 2103379 +4257274 4270103 12830 3694784.1099 3695428.5848 -82.4637 25.2425 93.0054 run25.mat -1 -1 822 2145622 2152036 +4270416 4291093 20678 3695444.1167 3696474.4113 -80.8138 25.2418 92.5949 run25.mat -1 -1 822 2152193 2162532 +4291398 4312091 20694 3696489.6645 3697525.4144 -79.1679 25.2409 92.6043 run25.mat -1 -1 822 2162685 2173032 +4312398 4333093 20696 3697540.8913 3698574.9323 -77.5127 25.2426 92.4898 run25.mat -1 -1 822 2173185 2183533 +4333400 4353071 19672 3698590.2855 3699572.8577 -75.8655 25.2409 92.7363 run25.mat -1 -1 822 2183687 2193523 +4437562 4437650 89 3703799.7676 3703804.1336 -75.9101 25.2706 110.862 run25.mat -1 -1 823 2235770 2235814 +4437964 4458591 20628 3703819.712 3704849.1461 -74.2192 25.2401 92.6648 run25.mat -1 -1 823 2235971 2246285 +4458899 4479591 20693 3704864.4299 3705898.8415 -72.5727 25.2395 92.5066 run25.mat -1 -1 823 2246439 2256786 +4479898 4500590 20693 3705914.1974 3706950.6983 -70.9189 25.2394 92.5856 run25.mat -1 -1 823 2256939 2267285 +4500899 4521591 20693 3706966.0318 3707999.9474 -69.2727 25.2424 92.593 run25.mat -1 -1 823 2267440 2277786 +4521900 4533350 11451 3708015.5251 3708589.4469 -67.6275 25.2399 92.7476 run25.mat -1 -1 823 2277941 2283666 +4617700 4626177 8478 3712806.9558 3713229.3704 -67.6243 25.2425 93.8738 run25.mat -1 -1 824 2325843 2330082 +4626485 4647173 20689 3713244.8978 3714279.9723 -65.9768 25.2413 92.5357 run25.mat -1 -1 824 2330236 2340580 +4647480 4668173 20694 3714295.3255 3715330.2328 -64.3232 25.24 92.6796 run25.mat -1 -1 824 2340734 2351081 +4668479 4689173 20695 3715345.5359 3716378.4914 -62.6741 25.2416 92.6323 run25.mat -1 -1 824 2351234 2361581 +4689478 4710151 20674 3716393.7444 3717427.7389 -61.0261 25.241 92.671 run25.mat -1 -1 824 2361734 2372071 +4710460 4713589 3130 3717443.3166 3717601.0601 -59.3749 25.2486 92.5492 run25.mat -1 -1 824 2372225 2373790 +4798050 4814761 16712 3721823.7421 3722660.4416 -59.3763 25.241 93.0635 run25.mat -1 -1 825 2416022 2424378 +4815076 4835754 20679 3722676.1947 3723710.4513 -57.7254 25.2422 92.5593 run25.mat -1 -1 825 2424535 2434875 +4836059 4856755 20697 3723725.7045 3724758.8125 -56.0757 25.2419 92.6385 run25.mat -1 -1 825 2435028 2445376 +4857072 4877752 20681 3724774.6655 3725808.9221 -54.4243 25.2422 92.588 run25.mat -1 -1 825 2445534 2455875 +4878059 4893811 15753 3725824.2751 3726610.0319 -52.7769 25.2401 92.7169 run25.mat -1 -1 825 2456029 2463905 +4978280 4982254 3975 3730835.7003 3731033.9125 -52.7749 25.2401 94.2344 run25.mat -1 -1 826 2506141 2508128 +4982570 5003252 20683 3731049.5902 3732083.6247 -51.1298 25.2412 92.5645 run25.mat -1 -1 826 2508286 2518627 +5003557 5024254 20698 3732098.7567 3733133.6346 -49.4726 25.242 92.6129 run25.mat -1 -1 826 2518780 2529129 +5024558 5045234 20677 3733148.717 3734184.2914 -47.8272 25.24 92.5654 run25.mat -1 -1 826 2529281 2539619 +5045542 5066232 20691 3734199.6978 3735232.6647 -46.1775 25.2417 92.6434 run25.mat -1 -1 826 2539773 2550119 +5066540 5074089 7550 3735248.2541 3735627.0935 -44.5321 25.2404 92.8102 run25.mat -1 -1 826 2550273 2554048 +5158474 5170875 12402 3739843.7475 3740464.9581 -44.5339 25.2408 93.3209 run25.mat -1 -1 827 2596242 2602443 +5171183 5191872 20690 3740480.2418 3741515.72 -42.8777 25.2399 92.5266 run25.mat -1 -1 827 2602597 2612942 +5192179 5212874 20696 3741530.9512 3742566.5207 -41.2324 25.2425 92.5698 run25.mat -1 -1 827 2613095 2623443 +5213178 5233873 20696 3742581.7239 3743613.9046 -39.5818 25.2403 92.5993 run25.mat -1 -1 827 2623595 2633943 +5234180 5254369 20190 3743629.3815 3744640.7177 -37.9362 25.2404 92.6515 run25.mat -1 -1 827 2634097 2644192 +5338676 5359194 20519 3748856.2715 3749880.1417 -36.2897 25.2398 92.9049 run25.mat -1 -1 828 2686347 2696606 +5359500 5380195 20696 3749895.3263 3750931.5942 -34.6374 25.2414 92.5261 run25.mat -1 -1 828 2696759 2707107 +5380500 5401194 20695 3750946.9734 3751981.9909 -32.9863 25.2412 92.5975 run25.mat -1 -1 828 2707260 2717608 +5401499 5422173 20675 3751997.1228 3753031.3132 -31.3393 25.2416 92.5937 run25.mat -1 -1 828 2717760 2728097 +5422482 5434469 11988 3753046.7664 3753644.2716 -29.6929 25.2402 92.7591 run25.mat -1 -1 828 2728252 2734245 +5519101 5526850 7750 3757877.9831 3758263.9506 -29.687 25.2402 93.5922 run25.mat -1 -1 829 2776563 2780438 +5527173 5547855 20683 3758280.2341 3759312.7689 -28.0358 25.2419 92.511 run25.mat -1 -1 829 2780599 2790949 +5548161 5568854 20694 3759328.1954 3760363.9988 -26.3863 25.2414 92.5962 run25.mat -1 -1 829 2791094 2801441 +5569161 5589836 20676 3760379.23 3761412.5901 -24.7379 25.2405 92.5422 run25.mat -1 -1 829 2801594 2811932 +5590145 5610819 20675 3761428.0433 3762463.9988 -23.0874 25.2414 92.6559 run25.mat -1 -1 829 2812087 2822424 +5611132 5614889 3758 3762479.5772 3762666.0103 -21.4415 25.2375 92.4596 run25.mat -1 -1 829 2822581 2824459 +5699095 5715316 16222 3766878.0302 3767687.6382 -21.4358 25.2409 93.1798 run25.mat -1 -1 830 2866564 2874675 +5715628 5736316 20689 3767703.1175 3768739.5377 -19.7868 25.2415 92.5253 run25.mat -1 -1 830 2874831 2885176 +5736622 5757314 20693 3768754.7428 3769787.6653 -18.1386 25.2422 92.6222 run25.mat -1 -1 830 2885329 2895675 +5757624 5778315 20692 3769803.1717 3770836.0183 -16.4909 25.2411 92.5942 run25.mat -1 -1 830 2895830 2906176 +5778621 5794968 16348 3770851.3212 3771668.835 -14.8434 25.2407 92.6628 run25.mat -1 -1 830 2906329 2914503 +5879435 5882830 3396 3775892.2231 3776062.248 -14.8371 25.2391 94.8365 run25.mat -1 -1 831 2956738 2958436 +5883144 5903819 20676 3776078.0778 3777112.9903 -13.1925 25.2406 92.5668 run25.mat -1 -1 831 2958593 2968931 +5904131 5924817 20687 3777128.4695 3778162.95 -11.5416 25.2409 92.6282 run25.mat -1 -1 831 2969087 2979431 +5925120 5945838 20719 3778178.2283 3779213.2255 -9.899 25.2411 92.6588 run25.mat -1 -1 831 2979582 2989942 +5946142 5966817 20676 3779228.4318 3780263.446 -8.2482 25.2409 92.5911 run25.mat -1 -1 831 2990094 3000431 +5967123 5975249 8127 3780278.7055 3780684.4562 -6.5965 25.2398 92.7284 run25.mat -1 -1 831 3000584 3004647 +6059691 6071308 11618 3784906.0044 3785486.2718 -6.5984 25.2385 93.1791 run25.mat -1 -1 832 3046870 3052679 +6071625 6092294 20670 3785502.1284 3786537.6338 -4.949 25.2406 92.4845 run25.mat -1 -1 832 3052838 3063172 +6092603 6113298 20696 3786553.2115 3787586.567 -3.2994 25.241 92.5152 run25.mat -1 -1 832 3063327 3073675 +6113602 6134296 20695 3787601.8927 3788637.0167 -1.6504 25.2414 92.5613 run25.mat -1 -1 832 3073827 3084174 +6134606 6155276 20671 3788652.6449 3789684.9567 0.0015274 25.2432 92.7225 run25.mat -1 -1 832 3084329 3094664 +6239776 6259589 19814 3793912.3467 3794901.41 1.6495 25.2427 92.8385 run25.mat -1 -1 833 3136917 3146824 +6259903 6280598 20696 3794916.9885 3795951.5053 3.2976 25.2413 92.6344 run25.mat -1 -1 833 3146981 3157329 +6280903 6301578 20676 3795966.8814 3797001.3112 4.9455 25.2425 92.6147 run25.mat -1 -1 833 3157481 3167819 +6301889 6322598 20710 3797016.8057 3798054.0862 6.5911 25.241 92.5572 run25.mat -1 -1 833 3167975 3178329 +6322903 6335548 12646 3798069.3391 3798699.0324 8.2474 25.2401 92.8487 run25.mat -1 -1 833 3178482 3184805 +6419879 6427051 7173 3802916.3709 3803274.3765 8.2451 25.2409 94.0443 run25.mat -1 -1 834 3226972 3230580 +6427363 6448036 20674 3803290.1055 3804324.2353 9.895 25.2414 92.5683 run25.mat -1 -1 834 3230714 3241051 +6448343 6469033 20691 3804339.7122 3805374.7975 11.5434 25.2422 92.6745 run25.mat -1 -1 834 3241205 3251550 +6469342 6490036 20695 3805390.3507 3806423.5174 13.193 25.2404 92.5562 run25.mat -1 -1 834 3251705 3262052 +6490343 6511014 20672 3806438.9944 3807472.4645 14.8439 25.2414 92.7172 run25.mat -1 -1 834 3262206 3272542 +6511324 6515787 4464 3807487.9675 3807711.1613 16.4885 25.2405 92.7493 run25.mat -1 -1 834 3272697 3274928 +6600104 6615408 15305 3811929.0659 3812692.4096 16.4942 25.2416 93.0402 run25.mat -1 -1 835 3317089 3324741 +6615725 6636378 20654 3812708.1369 3813739.3736 18.1368 25.24 92.5961 run25.mat -1 -1 835 3324899 3335226 +6636690 6657377 20688 3813754.9796 3814790.95 19.7891 25.2405 92.598 run25.mat -1 -1 835 3335382 3345726 +6657684 6678397 20714 3814806.4857 3815843.8323 21.4336 25.2418 92.6042 run25.mat -1 -1 835 3345880 3356237 +6678704 6695907 17204 3815859.1855 3816717.5148 23.0896 25.2413 92.7586 run25.mat -1 -1 835 3356390 3364992 +6780200 6782699 2500 3820934.3447 3821059.3382 23.0859 25.2401 95.3445 run25.mat -1 -1 836 3407140 3408390 +6783008 6803697 20690 3821074.7942 3822108.6368 24.7345 25.2412 92.5516 run25.mat -1 -1 836 3408544 3418890 +6804005 6824696 20692 3822124.1641 3823157.2676 26.3848 25.2403 92.6588 run25.mat -1 -1 836 3419044 3429389 +6825002 6845680 20679 3823172.6941 3824205.3116 28.0301 25.2424 92.629 run25.mat -1 -1 836 3429542 3439882 +6845984 6866676 20693 3824220.4068 3825257.2105 29.6833 25.2403 92.6513 run25.mat -1 -1 836 3440034 3450380 +6866982 6875967 8986 3825272.5164 3825721.8946 31.3313 25.242 92.7761 run25.mat -1 -1 836 3450533 3455026 +6960424 6971174 10751 3829944.3353 3830482.3964 31.3353 25.2431 93.1662 run25.mat -1 -1 837 3497257 3502631 +6971487 6992161 20675 3830498.0494 3831530.3224 32.9845 25.242 92.5297 run25.mat -1 -1 837 3502788 3513126 +6992475 7013157 20683 3831546.1522 3832578.687 34.6316 25.2412 92.5608 run25.mat -1 -1 837 3513283 3523624 +7013465 7034157 20693 3832594.2144 3833629.3245 36.2849 25.2427 92.5513 run25.mat -1 -1 837 3523778 3534125 +7034464 7055137 20674 3833644.6774 3834680.5619 37.9334 25.2405 92.6584 run25.mat -1 -1 837 3534278 3544615 +7055444 7056226 783 3834695.9183 3834735.0346 39.583 25.2472 94.8333 run25.mat -1 -1 837 3544769 3545160 +7140490 7159489 19000 3838945.3167 3839897.5211 39.585 25.2408 92.9673 run25.mat -1 -1 838 3587294 3596793 +7159809 7180476 20668 3839913.6534 3840946.8547 41.2304 25.2423 92.6615 run25.mat -1 -1 838 3596953 3607287 +7180782 7201476 20695 3840962.0393 3841996.393 42.8776 25.2409 92.6251 run25.mat -1 -1 838 3607440 3617788 +7201783 7222475 20693 3842011.7459 3843048.478 44.5336 25.2412 92.6225 run25.mat -1 -1 838 3617941 3628287 +7222782 7236307 13526 3843063.9426 3843739.832 46.1802 25.2416 92.7466 run25.mat -1 -1 838 3628441 3635204 +7320606 7326921 6316 3847954.256 3848269.1927 46.1811 25.2395 94.2975 run25.mat -1 -1 839 3677356 3680513 +7327239 7347929 20691 3848285.0961 3849321.8389 47.8298 25.2392 92.4785 run25.mat -1 -1 839 3680672 3691018 +7348237 7368919 20683 3849337.1197 3850369.6626 49.4744 25.2408 92.5957 run25.mat -1 -1 839 3691172 3701513 +7369226 7389918 20693 3850385.0156 3851419.127 51.1282 25.2405 92.5482 run25.mat -1 -1 839 3701667 3712013 +7390226 7410898 20673 3851434.4109 3852468.0762 52.7738 25.2407 92.5798 run25.mat -1 -1 839 3712167 3722504 +7411204 7416506 5303 3852483.2578 3852747.6834 54.4219 25.2433 92.739 run25.mat -1 -1 839 3722657 3725308 +7500778 7515256 14479 3856962.2574 3857685.3386 54.4212 25.2414 92.9924 run25.mat -1 -1 840 3767445 3774684 +7515570 7536238 20669 3857701.0446 3858733.7217 56.0692 25.2415 92.5037 run25.mat -1 -1 840 3774841 3785176 +7536544 7557236 20693 3858748.9063 3859783.4934 57.7241 25.2397 92.5881 run25.mat -1 -1 840 3785329 3795676 +7557544 7578237 20694 3859798.7773 3860834.4141 59.3714 25.2429 92.4969 run25.mat -1 -1 840 3795830 3806177 +7578546 7596586 18041 3860849.7475 3861752.9732 61.022 25.2398 92.6692 run25.mat -1 -1 840 3806331 3815351 +7680874 7682728 1855 3865967.1412 3866060.6265 61.0204 25.2405 97.5082 run25.mat -1 -1 841 3857497 3858424 +7683046 7703718 20673 3866076.6612 3867110.845 62.6696 25.2432 92.5352 run25.mat -1 -1 841 3858583 3868920 +7704026 7724719 20694 3867126.2479 3868161.1675 64.3221 25.2408 92.5665 run25.mat -1 -1 841 3869074 3879421 +7725026 7745717 20692 3868176.3987 3869208.2142 65.9708 25.2413 92.5817 run25.mat -1 -1 841 3879574 3889920 +7746025 7766719 20695 3869223.8786 3870259.4285 67.6211 25.2409 92.6699 run25.mat -1 -1 841 3890074 3900422 +7767027 7776686 9660 3870275.0928 3870756.2414 69.2776 25.2422 92.6791 run25.mat -1 -1 841 3900576 3905405 +7861169 7871230 10062 3874980.5139 3875483.6791 69.271 25.2421 93.2295 run25.mat -1 -1 842 3947649 3952679 +7871551 7892239 20689 3875499.7353 3876535.6384 70.9208 25.2402 92.5849 run25.mat -1 -1 842 3952840 3963184 +7892552 7913237 20686 3876551.1673 3877585.8762 72.5692 25.2419 92.5036 run25.mat -1 -1 842 3963341 3973684 +7913545 7934242 20698 3877601.4066 3878636.559 74.2186 25.2423 92.5963 run25.mat -1 -1 842 3973838 3984187 +7934548 7955198 20651 3878651.7406 3879686.1457 75.8679 25.2405 92.6218 run25.mat -1 -1 842 3984340 3994665 +7955508 7956945 1438 3879701.5288 3879772.8368 77.5237 25.241 93.0793 run25.mat -1 -1 842 3994820 3995539 +8041114 8059548 18435 3883978.9444 3884900.0365 77.5137 25.2384 93.0912 run25.mat -1 -1 843 4037625 4046843 +8059867 8080541 20675 3884915.9896 3885951.8834 79.1654 25.2414 92.5348 run25.mat -1 -1 843 4047002 4057339 +8080847 8101540 20694 3885967.1939 3887000.3993 80.8133 25.2413 92.6435 run25.mat -1 -1 843 4057492 4067840 +8101846 8122186 20341 3887015.8258 3888032.7631 82.4647 25.2411 92.577 run25.mat -1 -1 843 4067993 4078163 +281502 302019 20518 3981939.484 3982968.2594 82.4625 26.9209 92.9103 run26.mat -1 -1 845 81817 92076 +302324 323013 20690 3982983.5126 3984016.2198 80.8153 26.9206 92.5585 run26.mat -1 -1 845 92229 102574 +323321 344015 20695 3984031.6228 3985068.6107 79.169 26.921 92.5121 run26.mat -1 -1 845 102728 113075 +344321 365017 20697 3985083.917 3986117.3838 77.5181 26.9206 92.5747 run26.mat -1 -1 845 113228 123576 +365325 377260 11936 3986132.6646 3986731.8861 75.8683 26.922 92.6218 run26.mat -1 -1 845 123730 129698 +461599 469396 7798 3990948.4 3991335.3517 75.8718 26.9211 93.2675 run26.mat -1 -1 846 171869 175769 +469702 490401 20700 3991350.5363 3992386.4279 74.2215 26.9209 92.4729 run26.mat -1 -1 846 175922 186271 +490705 511398 20694 3992401.7536 3993436.1433 72.5706 26.9206 92.6296 run26.mat -1 -1 846 186423 196770 +511707 532400 20694 3993451.4768 3994486.356 70.9176 26.9205 92.6289 run26.mat -1 -1 846 196925 207272 +532707 553377 20671 3994501.709 3995536.8893 69.2701 26.9212 92.6392 run26.mat -1 -1 846 207425 217761 +553684 557400 3717 3995552.1205 3995736.829 67.6156 26.9166 92.8749 run26.mat -1 -1 846 217914 219772 +641701 657717 16017 3999951.0091 4000754.6066 67.618 26.9209 92.9488 run26.mat -1 -1 847 261924 269933 +658047 678720 20674 4000770.9821 4001802.0557 65.9748 26.9209 92.5417 run26.mat -1 -1 847 270098 280435 +679026 699699 20674 4001817.4822 4002851.6624 64.3154 26.9214 92.5459 run26.mat -1 -1 847 280588 290925 +700006 720721 20716 4002867.1393 4003903.4748 62.6691 26.9217 92.5866 run26.mat -1 -1 847 291078 301436 +721027 737500 16474 4003918.9044 4004741.363 61.0198 26.9215 92.6877 run26.mat -1 -1 847 301589 309826 +821636 824877 3242 4008950.1486 4009112.2299 61.0199 26.9253 94.3338 run26.mat -1 -1 848 351896 353517 +825201 845880 20680 4009128.433 4010162.24 59.3724 26.9216 92.593 run26.mat -1 -1 848 353679 364018 +846187 866878 20692 4010177.72 4011210.7636 57.7221 26.9198 92.6647 run26.mat -1 -1 848 364172 374518 +867186 887879 20694 4011226.2941 4012260.2182 56.0713 26.9212 92.5422 run26.mat -1 -1 848 374672 385019 +888187 908859 20673 4012275.7455 4013311.4083 54.4227 26.9201 92.5826 run26.mat -1 -1 848 385173 395509 +909166 917420 8255 4013326.7613 4013737.8631 52.7773 26.9218 92.6221 run26.mat -1 -1 848 395663 399790 +1001895 1013477 11583 4017962.6096 4018540.6445 52.7774 26.9208 93.4094 run26.mat -1 -1 849 442029 447821 +1013801 1034499 20699 4018556.8477 4019592.0544 51.1288 26.9213 92.5873 run26.mat -1 -1 849 447983 458332 +1034806 1055498 20693 4019607.4074 4020642.2282 49.4773 26.9211 92.5792 run26.mat -1 -1 849 458486 468832 +1055805 1076500 20696 4020657.5841 4021691.495 47.8271 26.9206 92.5035 run26.mat -1 -1 849 468985 479334 +1076806 1097462 20657 4021706.9246 4022740.9831 46.1804 26.9205 92.7009 run26.mat -1 -1 849 479487 489815 +1181991 1201840 19850 4026965.5722 4027960.2709 44.532 26.9191 92.8441 run26.mat -1 -1 850 532081 542006 +1202145 1222820 20676 4027975.5241 4029009.5812 42.8805 26.9214 92.6043 run26.mat -1 -1 850 542159 552497 +1223128 1243819 20692 4029024.9844 4030058.7799 41.2316 26.9211 92.6364 run26.mat -1 -1 850 552651 562996 +1244126 1264820 20695 4030074.1358 4031107.1524 39.5835 26.9199 92.5167 run26.mat -1 -1 850 563150 573498 +1265128 1277759 12632 4031122.5583 4031755.4021 37.9361 26.9217 92.675 run26.mat -1 -1 850 573652 579968 +1362070 1369181 7112 4035971.3034 4036325.6372 37.9318 26.9199 93.6362 run26.mat -1 -1 851 622125 625680 +1369508 1390182 20675 4036341.9904 4037375.9938 36.2827 26.9213 92.4978 run26.mat -1 -1 851 625844 636181 +1390491 1411202 20712 4037391.4498 4038429.2682 34.6318 26.9212 92.6004 run26.mat -1 -1 851 636336 646692 +1411510 1432186 20677 4038444.6741 4039478.0202 32.98 26.921 92.6038 run26.mat -1 -1 851 646846 657184 +1432499 1453164 20666 4039493.5522 4040526.0015 31.3337 26.9214 92.6433 run26.mat -1 -1 851 657340 667674 +1453481 1457819 4339 4040541.8576 4040757.9734 29.6892 26.9207 92.578 run26.mat -1 -1 851 667832 670002 +1542053 1557520 15468 4044970.6599 4045742.7358 29.6847 26.9205 93.1636 run26.mat -1 -1 852 712120 719854 +1557848 1578523 20676 4045759.2747 4046793.6074 28.0333 26.9196 92.5943 run26.mat -1 -1 852 720018 730356 +1578830 1599524 20695 4046808.8416 4047843.9327 26.3835 26.9202 92.6571 run26.mat -1 -1 852 730510 740857 +1599830 1620523 20694 4047859.2356 4048894.5002 24.7385 26.9217 92.529 run26.mat -1 -1 852 741010 751357 +1620834 1637959 17126 4048909.9329 4049764.829 23.0921 26.921 92.7362 run26.mat -1 -1 852 751513 760075 +1722321 1725001 2681 4053985.6308 4054117.6255 23.0862 26.9185 95.9822 run26.mat -1 -1 853 802258 803598 +1725333 1746001 20669 4054133.9771 4055167.1636 21.4366 26.9205 92.6148 run26.mat -1 -1 853 803764 814098 +1746310 1767004 20695 4055182.497 4056219.2055 19.7896 26.9218 92.5616 run26.mat -1 -1 853 814253 824600 +1767309 1788002 20694 4056234.4613 4057269.4585 18.1401 26.9209 92.5757 run26.mat -1 -1 853 824753 835100 +1788309 1808984 20676 4057284.8115 4058318.8361 16.496 26.9214 92.7228 run26.mat -1 -1 853 835254 845591 +1809289 1818079 8791 4058334.092 4058772.9712 14.8389 26.9192 92.7493 run26.mat -1 -1 853 845744 850140 +1902360 1913280 10921 4062987.7606 4063532.0088 14.8425 26.9198 92.9776 run26.mat -1 -1 854 892282 897742 +1913605 1934288 20684 4063548.262 4064583.2146 13.1915 26.9217 92.6216 run26.mat -1 -1 854 897904 908246 +1934604 1955283 20680 4064598.7588 4065632.6744 11.5456 26.9209 92.5574 run26.mat -1 -1 854 908404 918744 +1955590 1976286 20697 4065648.0273 4066682.7146 9.8942 26.9218 92.5705 run26.mat -1 -1 854 918898 929247 +1976590 1997264 20675 4066697.7999 4067733.0649 8.2469 26.9219 92.6618 run26.mat -1 -1 854 929399 939736 +1997572 1998138 567 4067748.5954 4067776.9722 6.6256 26.9332 93.5765 run26.mat -1 -1 854 939890 940173 +2082426 2101621 19196 4071991.384 4072950.1913 6.5905 26.9202 92.9226 run26.mat -1 -1 855 982319 991916 +2101933 2122625 20693 4072965.6737 4073998.0423 4.9421 26.9214 92.6257 run26.mat -1 -1 855 992072 1002419 +2122933 2143624 20692 4074013.4453 4075048.3347 3.2926 26.9211 92.616 run26.mat -1 -1 855 1002573 1012919 +2143933 2164624 20692 4075063.9125 4076100.104 1.644 26.9213 92.6498 run26.mat -1 -1 855 1013074 1023419 +2164932 2178218 13287 4076115.3879 4076780.4469 -0.0038077 26.9221 92.674 run26.mat -1 -1 855 1023573 1030217 +2262436 2268942 6507 4080991.3832 4081314.9071 -0.00051879 26.9216 94.0277 run26.mat -1 -1 856 1072327 1075580 +2269270 2289966 20697 4081331.2182 4082368.0643 -1.6503 26.921 92.4484 run26.mat -1 -1 856 1075745 1086087 +2290271 2310944 20674 4082383.2568 4083416.4833 -3.2997 26.92 92.5277 run26.mat -1 -1 856 1086246 1096582 +2311251 2331956 20706 4083431.8392 4084466.4119 -4.9493 26.9204 92.5129 run26.mat -1 -1 856 1096736 1107089 +2332270 2352948 20679 4084482.2449 4085515.2337 -6.5956 26.9204 92.6587 run26.mat -1 -1 856 1107246 1117585 +2353254 2358317 5064 4085530.5366 4085785.2562 -8.2462 26.9222 92.8126 run26.mat -1 -1 856 1117738 1120270 +2442480 2457244 14765 4089993.0464 4090731.4585 -8.2438 26.9215 93.1917 run26.mat -1 -1 857 1162354 1169736 +2457567 2478248 20682 4090747.4867 4091781.7285 -9.8931 26.9213 92.5717 run26.mat -1 -1 857 1169897 1180239 +2478555 2499244 20690 4091796.9627 4092830.7701 -11.5397 26.9218 92.59 run26.mat -1 -1 857 1180392 1190737 +2499551 2520232 20682 4092846.247 4093878.817 -13.1935 26.9211 92.5562 run26.mat -1 -1 857 1190890 1201231 +2520544 2538377 17834 4093894.5135 4094787.4509 -14.8437 26.9201 92.7481 run26.mat -1 -1 857 1201387 1210304 +2622433 2624385 1953 4098990.46 4099087.3046 -14.8495 26.9227 97.1971 run26.mat -1 -1 858 1252334 1253310 +2624705 2645386 20682 4099103.1808 4100137.1657 -16.4933 26.9201 92.5677 run26.mat -1 -1 858 1253470 1263811 +2645693 2666386 20694 4100152.4034 4101187.0268 -18.143 26.9205 92.5953 run26.mat -1 -1 858 1263964 1274311 +2666696 2687389 20694 4101202.4068 4102239.9438 -19.7873 26.9207 92.565 run26.mat -1 -1 858 1274466 1284813 +2687694 2708381 20688 4102255.0758 4103287.5009 -21.4377 26.922 92.5702 run26.mat -1 -1 858 1284966 1295310 +2708689 2718277 9589 4103302.7817 4103783.5044 -23.096 26.9186 92.6795 run26.mat -1 -1 858 1295464 1300258 +2802515 2812666 10152 4107995.7877 4108503.1152 -23.0951 26.9198 93.4483 run26.mat -1 -1 859 1342379 1347455 +2812987 2833686 20700 4108519.1683 4109553.3285 -24.743 26.921 92.5092 run26.mat -1 -1 859 1347615 1357965 +2833995 2854670 20676 4109568.9062 4110602.6128 -26.3923 26.9216 92.5593 run26.mat -1 -1 859 1358119 1368458 +2854983 2875682 20700 4110618.1417 4111651.5862 -28.0382 26.9214 92.521 run26.mat -1 -1 859 1368614 1378963 +2875992 2896666 20675 4111666.8571 4112702.2358 -29.6906 26.9206 92.7232 run26.mat -1 -1 859 1379118 1389456 +2896975 2898317 1343 4112717.5662 4112784.1469 -31.3387 26.9176 93.1088 run26.mat -1 -1 859 1389611 1390282 +2982670 3001187 18518 4117004.3436 4117928.7892 -31.3358 26.92 93.0091 run26.mat -1 -1 860 1432461 1441719 +3001510 3022192 20683 4117944.9423 4118979.2529 -32.9859 26.9194 92.6011 run26.mat -1 -1 860 1441881 1452222 +3022508 3043190 20683 4118995.1042 4120027.5202 -34.632 26.9209 92.6103 run26.mat -1 -1 860 1452380 1462722 +3043497 3064175 20679 4120042.8761 4121079.0392 -36.2863 26.9211 92.5673 run26.mat -1 -1 860 1462875 1473214 +3064487 3078497 14011 4121094.6457 4121795.5975 -37.9321 26.9207 92.8415 run26.mat -1 -1 860 1473370 1480376 +3162810 3168510 5701 4126011.0991 4126296.2155 -37.9331 26.9201 93.5199 run26.mat -1 -1 861 1522534 1525384 +3168815 3189516 20702 4126311.4713 4127345.4675 -39.5803 26.9213 92.5159 run26.mat -1 -1 861 1525537 1535887 +3189828 3210510 20683 4127361.1997 4128395.8268 -41.2298 26.9218 92.5266 run26.mat -1 -1 861 1536043 1546385 +3210818 3231512 20695 4128411.23 4129444.186 -42.8774 26.9208 92.6306 run26.mat -1 -1 861 1546539 1556887 +3231817 3252492 20676 4129459.4389 4130493.491 -44.5312 26.9208 92.6292 run26.mat -1 -1 861 1557039 1567377 +3252803 3258595 5793 4130509.0469 4130800.4888 -46.1756 26.9209 92.6205 run26.mat -1 -1 861 1567533 1570429 +3342913 3356970 14058 4135014.6936 4135719.0526 -46.1775 26.9204 93.2354 run26.mat -1 -1 862 1612590 1619618 +3357296 3377972 20677 4135735.4874 4136768.0458 -47.8339 26.9209 92.5354 run26.mat -1 -1 862 1619781 1630120 +3378279 3398979 20701 4136783.399 4137816.8042 -49.482 26.9212 92.5507 run26.mat -1 -1 862 1630273 1640624 +3399293 3419976 20684 4137832.634 4138868.7655 -51.1327 26.9207 92.6799 run26.mat -1 -1 862 1640781 1651123 +3420287 3438715 18429 4138884.3185 4139805.765 -52.7804 26.9216 92.6812 run26.mat -1 -1 862 1651279 1660493 +3523009 3524294 1286 4144020.7776 4144085.0032 -52.7894 26.9195 96.7713 run26.mat -1 -1 863 1702641 1703284 +3524636 3545291 20656 4144101.9708 4145135.1617 -54.4277 26.9215 92.6246 run26.mat -1 -1 863 1703455 1713783 +3545599 3566294 20696 4145150.5649 4146184.775 -56.0761 26.9194 92.661 run26.mat -1 -1 863 1713937 1724285 +3566600 3587294 20695 4146199.9565 4147232.5245 -57.728 26.9203 92.507 run26.mat -1 -1 863 1724438 1734786 +3587599 3608276 20678 4147247.6565 4148285.6198 -59.3763 26.9206 92.6208 run26.mat -1 -1 863 1734938 1745277 +3608581 3618795 10215 4148301.1316 4148808.3409 -61.0202 26.921 92.7434 run26.mat -1 -1 863 1745430 1750537 +3703227 3712753 9527 4153030.2122 4153505.4598 -61.0189 26.9237 93.4795 run26.mat -1 -1 864 1792755 1797518 +3713078 3733756 20679 4153521.716 4154556.2691 -62.6729 26.9214 92.5251 run26.mat -1 -1 864 1797681 1808020 +3734061 3754755 20695 4154571.4011 4155606.0985 -64.317 26.9209 92.6603 run26.mat -1 -1 864 1808172 1818520 +3755062 3775752 20691 4155621.5001 4156657.2096 -65.9717 26.9204 92.5981 run26.mat -1 -1 864 1818674 1829019 +3776061 3796737 20677 4156672.6628 4157708.6707 -67.6199 26.9208 92.645 run26.mat -1 -1 864 1829173 1839512 +3797050 3799036 1987 4157724.3237 4157823.6428 -69.2611 26.9215 92.9623 run26.mat -1 -1 864 1839668 1840661 +3883401 3901134 17734 4162040.3428 4162925.3374 -69.271 26.9195 92.8744 run26.mat -1 -1 865 1882846 1891713 +3901438 3922118 20681 4162940.663 4163975.1666 -70.9186 26.921 92.5946 run26.mat -1 -1 865 1891865 1902204 +3922440 3943115 20676 4163991.403 4165025.7608 -72.5685 26.9208 92.6009 run26.mat -1 -1 865 1902365 1912704 +3943420 3964135 20716 4165041.1369 4166077.4346 -74.223 26.9214 92.5556 run26.mat -1 -1 865 1912856 1923214 +3964441 3979156 14716 4166092.8611 4166827.389 -75.8656 26.9199 92.6475 run26.mat -1 -1 865 1923367 1930725 +4063298 4068293 4996 4171036.184 4171286.0165 -75.8776 26.9211 94.2113 run26.mat -1 -1 866 1972798 1975296 +4068616 4089314 20699 4171302.1728 4172335.3442 -77.5189 26.921 92.4626 run26.mat -1 -1 866 1975457 1985807 +4089622 4110315 20694 4172350.7474 4173383.7407 -79.1719 26.9212 92.5726 run26.mat -1 -1 866 1985961 1996307 +4110619 4131304 20686 4173398.8455 4174435.3524 -80.8195 26.921 92.5958 run26.mat -1 -1 866 1996459 2006803 +4131616 4152295 20680 4174450.9554 4175484.5646 -82.4684 26.9209 92.5859 run26.mat -1 -1 866 2006959 2017299 +4152603 4159075 6473 4175500.092 4175824.1072 -82.4731 28.6036 92.7528 run26.mat -1 -1 866 2017453 2020689 +4243277 4256631 13355 4180033.4701 4180701.3047 -82.4645 28.6048 93.2574 run26.mat -1 -1 867 2062792 2069469 +4256946 4277636 20691 4180717.0577 4181753.8278 -80.8206 28.605 92.547 run26.mat -1 -1 867 2069626 2079972 +4277943 4298634 20692 4181769.1842 4182800.8838 -79.1697 28.6048 92.5888 run26.mat -1 -1 867 2080125 2090471 +4298941 4319636 20696 4182816.3608 4183850.4181 -77.516 28.6042 92.5752 run26.mat -1 -1 867 2090625 2100973 +4319941 4339175 19235 4183865.6744 4184829.7406 -75.8696 28.6041 92.6997 run26.mat -1 -1 867 2101125 2110743 +4425530 4426041 512 4189147.4422 4189172.9971 -75.8458 28.6092 97.9206 run26.mat -1 -1 868 2153922 2154178 +4426358 4447015 20658 4189188.8502 4190221.9571 -74.2191 28.6042 92.6896 run26.mat -1 -1 868 2154336 2164662 +4447320 4468017 20698 4190237.2103 4191271.3678 -72.5709 28.6046 92.6288 run26.mat -1 -1 868 2164817 2175166 +4468323 4489014 20692 4191286.6707 4192320.3971 -70.9168 28.6051 92.5816 run26.mat -1 -1 868 2175319 2185666 +4489322 4509997 20676 4192335.6779 4193370.424 -69.2696 28.6041 92.6146 run26.mat -1 -1 868 2185820 2196157 +4510301 4521315 11015 4193385.7527 4193935.1013 -67.6202 28.6043 92.7616 run26.mat -1 -1 868 2196309 2201817 +4605297 4614203 8907 4198134.7093 4198580.5815 -67.6213 28.6044 93.6854 run26.mat -1 -1 869 2243809 2248263 +4614520 4635217 20698 4198596.3088 4199631.1731 -65.9703 28.6051 92.5166 run26.mat -1 -1 869 2248421 2258770 +4635527 4656214 20688 4199646.5562 4200682.5247 -64.3196 28.6046 92.6002 run26.mat -1 -1 869 2258925 2269269 +4656523 4677201 20679 4200698.1024 4201730.402 -62.6694 28.6043 92.6284 run26.mat -1 -1 869 2269424 2279763 +4677519 4698175 20657 4201746.3051 4202777.7511 -61.0235 28.604 92.6408 run26.mat -1 -1 869 2279922 2290250 +4698486 4701154 2669 4202793.4328 4202927.9629 -59.3731 28.6054 92.6934 run26.mat -1 -1 869 2290406 2291740 +4785483 4802579 17097 4207144.0012 4207999.7815 -59.3809 28.6042 92.9772 run26.mat -1 -1 870 2333906 2342455 +4802888 4823580 20693 4208015.1119 4209049.2091 -57.7286 28.6043 92.5974 run26.mat -1 -1 870 2342609 2352956 +4823884 4844557 20674 4209064.412 4210099.567 -56.0797 28.6046 92.5785 run26.mat -1 -1 870 2353108 2363445 +4844865 4865556 20692 4210114.8478 4211149.3784 -54.4291 28.6052 92.6743 run26.mat -1 -1 870 2363599 2373945 +4865863 4881294 15432 4211164.6096 4211934.1572 -52.7841 28.6047 92.7392 run26.mat -1 -1 870 2374098 2381814 +4965636 4969920 4285 4216152.775 4216366.291 -52.783 28.603 94.4788 run26.mat -1 -1 871 2423987 2426129 +4970230 4990898 20669 4216381.6741 4217416.2013 -51.1328 28.6041 92.47 run26.mat -1 -1 871 2426284 2436619 +4991204 5011914 20711 4217431.5077 4218465.9357 -49.4818 28.6039 92.6393 run26.mat -1 -1 871 2436772 2447127 +5012221 5032916 20696 4218481.1699 4219518.5231 -47.8279 28.6046 92.5963 run26.mat -1 -1 871 2447280 2457628 +5033223 5053897 20675 4219534 4220566.0042 -46.1825 28.6032 92.6868 run26.mat -1 -1 871 2457781 2468119 +5054204 5061434 7231 4220581.3572 4220941.8523 -44.5318 28.6047 92.7801 run26.mat -1 -1 871 2468273 2471888 +5145751 5158252 12502 4225160.8646 4225782.5744 -44.5309 28.6048 93.2512 run26.mat -1 -1 872 2514048 2520299 +5158562 5179258 20697 4225797.9575 4226834.6471 -42.8785 28.6041 92.569 run26.mat -1 -1 872 2520454 2530802 +5179563 5200259 20697 4226849.9029 4227884.9596 -41.2306 28.604 92.6002 run26.mat -1 -1 872 2530955 2541304 +5200566 5221252 20687 4227900.3126 4228933.5942 -39.5804 28.6047 92.6213 run26.mat -1 -1 872 2541457 2551800 +5221563 5241534 19972 4228949.2759 4229947.2926 -37.9346 28.6035 92.7268 run26.mat -1 -1 872 2551956 2561942 +5325820 5346417 20598 4234161.7088 4235192.4267 -36.2854 28.6051 92.8249 run26.mat -1 -1 873 2604087 2614386 +5346726 5367400 20675 4235208.0044 4236243.2244 -34.6324 28.6052 92.5301 run26.mat -1 -1 873 2614540 2624878 +5367715 5388403 20689 4236258.9777 4237289.6682 -32.9839 28.6046 92.5877 run26.mat -1 -1 873 2625035 2635379 +5388715 5409402 20688 4237305.2747 4238341.8934 -31.3378 28.6037 92.6028 run26.mat -1 -1 873 2635535 2645880 +5409706 5421472 11767 4238357.0964 4238945.5645 -29.6903 28.6048 92.7562 run26.mat -1 -1 873 2646032 2651915 +5505713 5513704 7992 4243157.7041 4243556.1863 -29.6904 28.6036 93.2519 run26.mat -1 -1 874 2694037 2698033 +5514019 5534702 20684 4243571.8144 4244608.2158 -28.0384 28.6039 92.4826 run26.mat -1 -1 874 2698190 2708533 +5535010 5555688 20679 4244623.7463 4245656.1147 -26.3903 28.6045 92.6214 run26.mat -1 -1 874 2708687 2719026 +5556000 5576688 20689 4245671.7029 4246704.6001 -24.739 28.604 92.5356 run26.mat -1 -1 874 2719182 2729526 +5577002 5597662 20661 4246720.4299 4247756.5096 -23.0946 28.6039 92.6684 run26.mat -1 -1 874 2729683 2740014 +5597968 5601513 3546 4247771.6912 4247947.5694 -21.4321 28.6066 92.8742 run26.mat -1 -1 874 2740167 2741939 +5687867 5704196 16330 4252264.8218 4253081.5328 -21.4349 28.605 93.1627 run26.mat -1 -1 875 2785118 2793283 +5704511 5725180 20670 4253097.413 4254131.678 -19.7893 28.6039 92.6006 run26.mat -1 -1 875 2793441 2803775 +5725489 5746179 20691 4254147.1339 4255179.9463 -18.1415 28.6043 92.6713 run26.mat -1 -1 875 2803930 2814275 +5746488 5767178 20691 4255195.3993 4256232.0204 -16.4904 28.6043 92.573 run26.mat -1 -1 875 2814430 2824776 +5767488 5783672 16185 4256247.4005 4257053.7449 -14.8426 28.6052 92.7745 run26.mat -1 -1 875 2824931 2833023 +5868005 5871510 3506 4261271.3713 4261445.2649 -14.8402 28.6052 93.7723 run26.mat -1 -1 876 2875191 2876944 +5871825 5892521 20697 4261460.9002 4262497.7833 -13.1933 28.6042 92.4875 run26.mat -1 -1 876 2877101 2887450 +5892830 5913504 20675 4262513.1137 4263547.4149 -11.5403 28.6042 92.6394 run26.mat -1 -1 876 2887604 2897942 +5913816 5934503 20688 4263563.0179 4264596.7672 -9.8937 28.6051 92.6359 run26.mat -1 -1 876 2898098 2908441 +5934809 5955493 20685 4264611.9488 4265647.5813 -8.2425 28.6043 92.6084 run26.mat -1 -1 876 2908594 2918937 +5955805 5963772 7968 4265663.3134 4266060.4624 -6.5939 28.6042 92.6597 run26.mat -1 -1 876 2919093 2923077 +6047985 6059771 11787 4270271.9089 4270860.4979 -6.5955 28.6041 93.1473 run26.mat -1 -1 877 2965185 2971078 +6060090 6080783 20694 4270876.5798 4271912.2282 -4.9445 28.6049 92.5893 run26.mat -1 -1 877 2971238 2981585 +6081088 6101759 20672 4271927.3602 4272958.5319 -3.2986 28.6041 92.6071 run26.mat -1 -1 877 2981737 2992074 +6102068 6122762 20695 4272973.9883 4274010.9411 -1.6499 28.6042 92.5885 run26.mat -1 -1 877 2992228 3002575 +6123069 6143735 20667 4274026.1893 4275057.8715 -0.0015163 28.6046 92.6603 run26.mat -1 -1 877 3002729 3013062 +6227865 6247927 20063 4279264.715 4280267.995 1.6434 28.6047 93.0447 run26.mat -1 -1 878 3055129 3065160 +6248234 6268928 20695 4280283.2262 4281318.1552 3.2948 28.6048 92.5193 run26.mat -1 -1 878 3065314 3075661 +6269241 6289924 20684 4281333.8085 4282368.8217 4.9424 28.6042 92.6799 run26.mat -1 -1 878 3075818 3086160 +6290230 6310923 20694 4282384.2482 4283418.3376 6.5915 28.604 92.5794 run26.mat -1 -1 878 3086313 3096660 +6311230 6323753 12524 4283433.8145 4284061.1014 8.2435 28.6039 92.6418 run26.mat -1 -1 878 3096813 3103075 +6408035 6415220 7186 4288273.3413 4288634.6634 8.248 28.6047 93.4663 run26.mat -1 -1 879 3145218 3148811 +6415534 6436221 20688 4288650.3664 4289683.8425 9.893 28.6042 92.4643 run26.mat -1 -1 879 3148968 3159312 +6436530 6457221 20692 4289699.4202 4290731.9756 11.5439 28.6044 92.595 run26.mat -1 -1 879 3159466 3169812 +6457529 6478223 20695 4290747.2564 4291783.6369 13.1902 28.6041 92.5383 run26.mat -1 -1 879 3169966 3180314 +6478528 6499203 20676 4291798.8933 4292834.873 14.8461 28.6044 92.6219 run26.mat -1 -1 879 3180466 3190804 +6499509 6503812 4304 4292850.0546 4293063.5394 16.4962 28.6051 92.9856 run26.mat -1 -1 879 3190957 3193109 +6588046 6603508 15463 4297273.7729 4298046.631 16.4938 28.6042 92.9529 run26.mat -1 -1 880 3235227 3242959 +6603828 6624523 20696 4298062.6372 4299099.5975 18.1429 28.6047 92.4904 run26.mat -1 -1 880 3243119 3253467 +6624831 6645509 20679 4299114.9817 4300149.3 19.7933 28.6044 92.641 run26.mat -1 -1 880 3253621 3263960 +6645821 6666503 20683 4300164.9 4301195.9375 21.4372 28.6043 92.5453 run26.mat -1 -1 880 3264116 3274458 +6666813 6683912 17100 4301211.5656 4302067.8883 23.0891 28.6038 92.6781 run26.mat -1 -1 880 3274613 3283162 +6768011 6770623 2613 4306272.8984 4306403.5487 23.09 28.605 94.8395 run26.mat -1 -1 881 3325214 3326520 +6770942 6791640 20699 4306419.4033 4307454.6599 24.7369 28.6042 92.5594 run26.mat -1 -1 881 3326680 3337029 +6791950 6812622 20673 4307470.1632 4308504.2493 26.3855 28.6049 92.5565 run26.mat -1 -1 881 3337184 3347520 +6812929 6833623 20695 4308519.4805 4309555.3307 28.0336 28.6045 92.641 run26.mat -1 -1 881 3347674 3358021 +6833932 6854622 20691 4309570.7839 4310605.5412 29.6879 28.6054 92.6164 run26.mat -1 -1 881 3358176 3368521 +6854931 6863791 8861 4310620.9944 4311062.1631 31.3326 28.604 92.822 run26.mat -1 -1 881 3368676 3373106 +6947993 6958962 10970 4315272.3247 4315821.7863 31.331 28.6047 93.38 run26.mat -1 -1 882 3415209 3420693 +6959271 6979942 20672 4315837.1167 4316868.748 32.9815 28.6045 92.5911 run26.mat -1 -1 882 3420848 3431184 +6980249 7000943 20695 4316883.9792 4317920.6137 34.6295 28.6047 92.5514 run26.mat -1 -1 882 3431338 3441685 +7001250 7021940 20691 4317935.8466 4318968.7057 36.2809 28.6042 92.529 run26.mat -1 -1 882 3441839 3452184 +7022251 7042905 20655 4318984.2587 4320019.4971 37.9316 28.6047 92.6994 run26.mat -1 -1 882 3452340 3462667 +7043215 7043891 677 4320035.0627 4320069.0058 39.569 28.6024 93.6904 run26.mat -1 -1 882 3462822 3463160 +7128203 7147266 19064 4324282.7969 4325238.2906 39.5827 28.6046 92.8941 run26.mat -1 -1 883 3505318 3514849 +7147591 7168263 20673 4325254.3005 4326286.2689 41.231 28.6046 92.5689 run26.mat -1 -1 883 3515012 3525349 +7168569 7189265 20697 4326301.4505 4327336.2292 42.8793 28.6042 92.6081 run26.mat -1 -1 883 3525502 3535850 +7189572 7210246 20675 4327351.4604 4328385.1973 44.5308 28.605 92.5618 run26.mat -1 -1 883 3536004 3546341 +7210553 7223991 13439 4328400.4285 4329072.5507 46.1805 28.6041 92.7832 run26.mat -1 -1 883 3546495 3553214 +7308226 7314514 6289 4333282.7066 4333597.1704 46.18 28.6051 93.7309 run26.mat -1 -1 884 3595333 3598477 +7314829 7335504 20676 4333612.9234 4334649.9284 47.8292 28.6043 92.4894 run26.mat -1 -1 884 3598635 3608973 +7335811 7356506 20696 4334665.2814 4335699.7899 49.477 28.6036 92.6056 run26.mat -1 -1 884 3609126 3619474 +7356813 7377505 20693 4335715.2668 4336746.62 51.1288 28.6044 92.6315 run26.mat -1 -1 884 3619628 3629974 +7377812 7398486 20675 4336761.8512 4337797.8588 52.7782 28.6046 92.6225 run26.mat -1 -1 884 3630128 3640465 +7398791 7404031 5241 4337813.1118 4338074.6612 54.4255 28.6048 92.5569 run26.mat -1 -1 884 3640618 3643238 +7488264 7502759 14496 4342287.0179 4343011.9454 54.4278 28.6046 92.9325 run26.mat -1 -1 885 3685357 3692604 +7503074 7523766 20693 4343027.6636 4344062.3987 56.0702 28.6041 92.4688 run26.mat -1 -1 885 3692762 3703108 +7524072 7544765 20694 4344077.5803 4345111.1771 57.7267 28.6055 92.692 run26.mat -1 -1 885 3703261 3713608 +7545072 7565765 20694 4345126.654 4346161.3518 59.3694 28.6037 92.5766 run26.mat -1 -1 885 3713761 3724108 +7566071 7584030 17960 4346176.4071 4347074.5041 61.0214 28.6041 92.7558 run26.mat -1 -1 885 3724261 3733241 +7668075 7669888 1814 4351277.3141 4351367.9605 61.0254 28.607 97.0581 run26.mat -1 -1 886 3775266 3776172 +7670205 7690886 20682 4351383.9415 4352417.0244 62.67 28.6043 92.5691 run26.mat -1 -1 886 3776331 3786672 +7691195 7711886 20692 4352432.3548 4353468.6095 64.318 28.6047 92.5964 run26.mat -1 -1 886 3786826 3797172 +7712195 7732869 20675 4353484.1249 4354517.0921 65.9678 28.6044 92.5987 run26.mat -1 -1 886 3797327 3807663 +7733184 7753869 20686 4354532.7233 4355568.6628 67.6191 28.6049 92.5746 run26.mat -1 -1 886 3807821 3818164 +7754174 7763929 9756 4355584.042 4356070.0943 69.2693 28.604 92.755 run26.mat -1 -1 886 3818317 3823195 +7848181 7858231 10051 4360282.1463 4360785.4389 69.2641 28.6023 93.1401 run26.mat -1 -1 887 3865322 3870348 +7858545 7879226 20682 4360801.0828 4361835.1436 70.9176 28.6042 92.5286 run26.mat -1 -1 887 3870505 3880846 +7879531 7900227 20697 4361850.3967 4362883.5635 72.5698 28.605 92.5412 run26.mat -1 -1 887 3880998 3891346 +7900535 7921226 20692 4362899.094 4363935.1605 74.2193 28.6042 92.5767 run26.mat -1 -1 887 3891500 3901847 +7921531 7942207 20677 4363950.2925 4364983.0223 75.8674 28.6056 92.6161 run26.mat -1 -1 887 3901999 3912337 +7942515 7944029 1515 4364998.4255 4365074.1413 77.5104 28.6016 91.8637 run26.mat -1 -1 887 3912491 3913248 +8028210 8046547 18338 4369284.1814 4370201.9067 77.5178 28.6047 93.0469 run26.mat -1 -1 888 3955341 3964510 +8046857 8067528 20672 4370217.2898 4371250.8349 79.1659 28.6049 92.5291 run26.mat -1 -1 888 3964665 3975001 +8067839 8088546 20708 4371266.2676 4372300.8834 80.8158 28.6041 92.6043 run26.mat -1 -1 888 3975157 3985510 +8088852 8109183 20332 4372316.1864 4373331.9873 82.4662 28.6046 92.5377 run26.mat -1 -1 888 3985663 3995829 +261264 281797 20534 4465191.2044 4466219.4735 82.4643 30.288 92.8311 run27.mat -1 -1 890 166563 176829 +282103 302798 20696 4466234.9 4467267.9571 80.8194 30.2888 92.5506 run27.mat -1 -1 890 176982 187330 +303105 323798 20694 4467283.3135 4468319.917 79.1676 30.2881 92.5696 run27.mat -1 -1 890 187484 197831 +324119 344817 20699 4468335.9097 4469368.4444 77.5183 30.2879 92.4846 run27.mat -1 -1 890 197991 208340 +345122 357066 11945 4469383.7007 4469982.8611 75.8649 30.2877 92.2729 run27.mat -1 -1 890 208493 214466 +441379 449194 7816 4474198.6469 4474588.7128 75.8695 30.2882 93.4226 run27.mat -1 -1 891 256624 260532 +449532 470216 20685 4474605.6161 4475639.9484 74.2196 30.2881 92.4802 run27.mat -1 -1 891 260701 271043 +470523 491218 20696 4475655.4284 4476689.5102 72.5698 30.2881 92.5812 run27.mat -1 -1 891 271196 281545 +491525 512198 20674 4476704.8661 4477738.3015 70.9158 30.2877 92.5166 run27.mat -1 -1 891 281698 292035 +512506 533197 20692 4477753.8288 4478788.8016 69.2701 30.2876 92.7283 run27.mat -1 -1 891 292189 302535 +533503 537145 3643 4478804.2281 4478985.0579 67.6188 30.2886 92.5594 run27.mat -1 -1 891 302688 304509 +621200 637316 16117 4483188.3517 4483994.0477 67.6174 30.287 92.8197 run27.mat -1 -1 892 346538 354597 +637642 658318 20677 4484010.4202 4485042.8502 65.9697 30.2886 92.5206 run27.mat -1 -1 892 354760 365098 +658628 679338 20711 4485058.2366 4486095.4694 64.3188 30.288 92.4511 run27.mat -1 -1 892 365253 375609 +679646 700319 20674 4486111.0474 4487143.8112 62.6695 30.2883 92.63 run27.mat -1 -1 892 375763 386099 +700626 717005 16380 4487159.2912 4487977.8309 61.0207 30.2876 92.784 run27.mat -1 -1 892 386253 394443 +801236 804776 3541 4492190.6439 4492366.9191 61.0235 30.2882 95.4022 run27.mat -1 -1 893 436560 438331 +805083 825783 20701 4492382.396 4493417.9879 59.3747 30.2881 92.5267 run27.mat -1 -1 893 438484 448842 +826095 846785 20691 4493433.7169 4494469.6583 57.7265 30.2877 92.6279 run27.mat -1 -1 893 448991 459336 +847103 867781 20679 4494485.5644 4495516.2195 56.074 30.288 92.6602 run27.mat -1 -1 893 459495 469835 +868088 888781 20694 4495531.4538 4496568.1 54.4286 30.288 92.5779 run27.mat -1 -1 893 469988 480335 +889087 897105 8019 4496583.4 4496983.7416 52.7743 30.2879 92.764 run27.mat -1 -1 893 480488 484497 +981143 992819 11677 4501185.2767 4501769.8974 52.7775 30.2884 92.8926 run27.mat -1 -1 894 526518 532356 +993148 1013823 20676 4501786.4834 4502820.7365 51.1318 30.2884 92.5527 run27.mat -1 -1 894 532521 542858 +1014130 1034807 20678 4502835.9677 4503869.5825 49.4763 30.288 92.5524 run27.mat -1 -1 894 543012 553351 +1035125 1055803 20679 4503885.6172 4504920.5359 47.8288 30.2885 92.5364 run27.mat -1 -1 894 553510 563849 +1056110 1076784 20675 4504935.7701 4505968.5609 46.1795 30.2877 92.6311 run27.mat -1 -1 894 564003 574341 +1161172 1181321 20150 4510185.956 4511195.6342 44.528 30.2875 92.9599 run27.mat -1 -1 895 616536 626611 +1181647 1202323 20677 4511212.069 4512245.2779 42.8746 30.2877 92.601 run27.mat -1 -1 895 626774 637113 +1202629 1223323 20695 4512260.5809 4513296.0171 41.2276 30.2878 92.5548 run27.mat -1 -1 895 637266 647613 +1223630 1244324 20695 4513311.4941 4514346.7834 39.5763 30.2881 92.6081 run27.mat -1 -1 895 647767 658114 +1244629 1257065 12437 4514362.1411 4514983.1335 37.9302 30.2875 92.696 run27.mat -1 -1 895 658267 664485 +1341154 1348519 7366 4519186.0282 4519554.723 37.9322 30.288 93.7974 run27.mat -1 -1 896 706531 710214 +1348849 1369556 20708 4519571.0953 4520609.1452 36.2839 30.2888 92.497 run27.mat -1 -1 896 710379 720733 +1369867 1390543 20677 4520624.6985 4521655.0436 34.6328 30.2882 92.5944 run27.mat -1 -1 896 720888 731227 +1390848 1411543 20696 4521670.4228 4522706.6954 32.9814 30.2876 92.4922 run27.mat -1 -1 896 731379 741727 +1411849 1432524 20676 4522721.877 4523755.5881 31.3381 30.2882 92.7095 run27.mat -1 -1 896 741880 752218 +1432830 1436944 4115 4523771.0177 4523976.9097 29.6866 30.2894 92.713 run27.mat -1 -1 896 752371 754428 +1521031 1536642 15612 4528182.1561 4528960.4023 29.6892 30.2878 93.1025 run27.mat -1 -1 897 796474 804279 +1536968 1557661 20694 4528976.5761 4530012.1227 28.0358 30.2882 92.5886 run27.mat -1 -1 897 804442 814790 +1557967 1578643 20677 4530027.4259 4531061.2237 26.3879 30.2879 92.5404 run27.mat -1 -1 897 814943 825281 +1578952 1599642 20691 4531076.5541 4532110.65 24.7385 30.2882 92.6138 run27.mat -1 -1 897 825435 835781 +1599951 1616824 16874 4532126.1 4532971.4241 23.0905 30.2878 92.7828 run27.mat -1 -1 897 835935 844372 +1702866 1705761 2896 4537273.6426 4537417.2723 23.0898 30.2882 95.311 run27.mat -1 -1 898 887386 888811 +1706083 1726782 20700 4537433.2477 4538468.2436 21.4373 30.288 92.5114 run27.mat -1 -1 898 889004 899354 +1727090 1747783 20694 4538483.6495 4539518.8778 19.7911 30.288 92.6201 run27.mat -1 -1 898 899508 909855 +1748090 1768764 20675 4539534.3547 4540569.1655 18.1374 30.288 92.6388 run27.mat -1 -1 898 910008 920346 +1769072 1789764 20693 4540584.4463 4541617.1691 16.4916 30.2882 92.629 run27.mat -1 -1 898 920500 930846 +1790072 1798744 8673 4541632.4499 4542066.6792 14.8401 30.2878 92.7098 run27.mat -1 -1 898 931000 935336 +1883007 1894165 11159 4546278.6136 4546837.4499 14.843 30.2886 93.3715 run27.mat -1 -1 899 977469 983049 +1894470 1915163 20694 4546852.826 4547888.0432 13.1871 30.2881 92.5928 run27.mat -1 -1 899 983201 993549 +1915472 1936154 20683 4547903.624 4548938.728 11.5383 30.2885 92.5023 run27.mat -1 -1 899 993703 1004044 +1936467 1957144 20678 4548954.384 4549985.4439 9.8914 30.2889 92.5412 run27.mat -1 -1 899 1004200 1014540 +1957453 1978144 20692 4550000.8969 4551035.7039 8.2423 30.2879 92.7448 run27.mat -1 -1 899 1014694 1025041 +1978451 1978784 334 4551051.0571 4551067.7106 6.6104 30.2898 93.3872 run27.mat -1 -1 899 1025194 1025361 +2062895 2082384 19490 4555274.349 4556249.7685 6.5961 30.2887 93.0792 run27.mat -1 -1 900 1067418 1077162 +2082713 2103386 20674 4556266.3545 4557300.2266 4.9439 30.2881 92.5537 run27.mat -1 -1 900 1077327 1087664 +2103692 2124386 20695 4557315.4082 4558350.2425 3.2955 30.2884 92.5224 run27.mat -1 -1 900 1087817 1098164 +2124692 2145384 20693 4558365.4241 4559399.7665 1.6487 30.2882 92.5372 run27.mat -1 -1 900 1098317 1108664 +2145695 2158644 12950 4559415.445 4560062.1662 0.0020713 30.2885 92.7146 run27.mat -1 -1 900 1108819 1115294 +2242849 2249703 6855 4564272.4389 4564614.7761 -0.0015481 30.2879 94.2906 run27.mat -1 -1 901 1157399 1160825 +2250033 2270725 20693 4564631.1516 4565665.3904 -1.6487 30.2878 92.5191 run27.mat -1 -1 901 1160990 1171337 +2271032 2291725 20694 4565680.8673 4566714.9061 -3.2958 30.2875 92.5749 run27.mat -1 -1 901 1171491 1181838 +2292033 2312726 20694 4566730.312 4567767.2392 -4.9447 30.2878 92.6488 run27.mat -1 -1 901 1181992 1192338 +2313034 2333709 20676 4567782.6424 4568815.8107 -6.5951 30.2874 92.5988 run27.mat -1 -1 901 1192492 1202831 +2334015 2338743 4729 4568831.0083 4569069.3628 -8.254 30.2875 92.9248 run27.mat -1 -1 901 1202983 1205347 +2422824 2437966 15143 4573271.9601 4574028.885 -8.245 30.2883 93.1066 run27.mat -1 -1 902 1247390 1254961 +2438270 2458965 20696 4574044.0881 4575079.1409 -9.897 30.288 92.5403 run27.mat -1 -1 902 1255113 1265462 +2459273 2479966 20694 4575094.5473 4576129.1802 -11.5418 30.2883 92.5658 run27.mat -1 -1 902 1265616 1275962 +2480271 2500948 20678 4576144.3122 4577178.3144 -13.1964 30.2879 92.5333 run27.mat -1 -1 902 1276115 1286454 +2501260 2518623 17364 4577193.7967 4578062.2684 -14.8462 30.288 92.7224 run27.mat -1 -1 902 1286610 1295291 +2602780 2605224 2445 4582271.6149 4582392.893 -14.8447 30.2899 95.9175 run27.mat -1 -1 903 1337372 1338594 +2605553 2626246 20694 4582409.2157 4583443.8456 -16.4958 30.2882 92.4842 run27.mat -1 -1 903 1338759 1349105 +2626553 2647226 20674 4583459.0768 4584493.5423 -18.1467 30.2875 92.5899 run27.mat -1 -1 903 1349259 1359595 +2647532 2668226 20695 4584508.8487 4585541.7807 -19.7938 30.2877 92.5437 run27.mat -1 -1 903 1359748 1370096 +2668533 2689211 20679 4585557.1337 4586589.6305 -21.4392 30.2877 92.557 run27.mat -1 -1 903 1370250 1380589 +2689521 2698682 9162 4586605.0105 4587063.4844 -23.0934 30.2879 92.7096 run27.mat -1 -1 903 1380744 1385325 +2782744 2793284 10541 4591268.1698 4591795.2755 -23.093 30.2876 93.1359 run27.mat -1 -1 904 1427358 1432628 +2793610 2814286 20677 4591811.5789 4592844.2641 -24.7368 30.2881 92.5927 run27.mat -1 -1 904 1432791 1443130 +2814595 2835288 20694 4592859.5946 4593895.8594 -26.3882 30.2877 92.5509 run27.mat -1 -1 904 1443284 1453631 +2835595 2856285 20691 4593911.3364 4594945.8438 -28.0347 30.2883 92.6279 run27.mat -1 -1 904 1453784 1464130 +2856596 2877269 20674 4594961.2735 4595994.5271 -29.6861 30.288 92.6271 run27.mat -1 -1 904 1464285 1474622 +2877573 2878502 930 4596009.733 4596056.2008 -31.3292 30.2888 93.6385 run27.mat -1 -1 904 1474774 1475239 +2962835 2981739 18905 4600272.0689 4601219.2322 -31.3329 30.2882 92.96 run27.mat -1 -1 905 1517407 1526854 +2982048 3002728 20681 4601234.5657 4602266.9218 -32.985 30.2886 92.5876 run27.mat -1 -1 905 1527014 1537355 +3003033 3023731 20699 4602282.2978 4603316.6774 -34.6312 30.2879 92.56 run27.mat -1 -1 905 1537507 1547857 +3024045 3044724 20680 4603332.3807 4604368.1014 -36.2842 30.2886 92.6266 run27.mat -1 -1 905 1548014 1558354 +3045030 3058602 13573 4604383.5279 4605062.6766 -37.9309 30.2891 92.6872 run27.mat -1 -1 905 1558507 1565293 +3142624 3148865 6242 4609263.2475 4609575.1186 -37.9355 30.2886 94.1235 run27.mat -1 -1 906 1607306 1610427 +3149189 3169868 20680 4609591.4558 4610623.401 -39.5804 30.2879 92.5194 run27.mat -1 -1 906 1610589 1620928 +3170175 3190869 20695 4610638.5213 4611672.8996 -41.2313 30.2882 92.4992 run27.mat -1 -1 906 1621082 1631429 +3191173 3211886 20714 4611688.0004 4612724.3662 -42.8773 30.2887 92.5547 run27.mat -1 -1 906 1631582 1641938 +3212196 3232848 20653 4612740.0569 4613774.4896 -44.5363 30.2872 92.6326 run27.mat -1 -1 906 1642093 1652420 +3233155 3238521 5367 4613789.7208 4614056.975 -46.1786 30.2873 92.835 run27.mat -1 -1 906 1652573 1655256 +3322676 3337167 14492 4618265.1901 4618991.0581 -46.186 30.2882 93.1531 run27.mat -1 -1 907 1697336 1704582 +3337472 3358187 20716 4619006.1901 4620039.9548 -47.8299 30.2881 92.4993 run27.mat -1 -1 907 1704734 1715092 +3358494 3379187 20694 4620055.1859 4621090.5308 -49.4799 30.2884 92.6697 run27.mat -1 -1 907 1715245 1725592 +3379495 3400177 20683 4621105.7003 4622140.5353 -51.1334 30.2873 92.5856 run27.mat -1 -1 907 1725746 1736088 +3400489 3418581 18093 4622156.2674 4623059.2752 -52.7803 30.2882 92.7388 run27.mat -1 -1 907 1736244 1745290 +3502704 3504325 1622 4627266.2152 4627347.9353 -52.7714 30.289 96.805 run27.mat -1 -1 908 1787354 1788164 +3504652 3525328 20677 4627364.4204 4628397.3251 -54.4268 30.2879 92.5474 run27.mat -1 -1 908 1788328 1798666 +3525633 3546329 20697 4628412.457 4629449.1925 -56.0754 30.2882 92.5303 run27.mat -1 -1 908 1798819 1809167 +3546636 3567328 20693 4629464.4237 4630499.6105 -57.7279 30.2884 92.5161 run27.mat -1 -1 908 1809321 1819667 +3567636 3588329 20694 4630515.0138 4631547.1426 -59.3731 30.2883 92.6554 run27.mat -1 -1 908 1819821 1830168 +3588638 3598481 9844 4631562.7826 4632055.921 -61.0209 30.288 92.664 run27.mat -1 -1 908 1830323 1835244 +3682941 3692788 9848 4636278.245 4636769.7076 -61.0267 30.2876 93.1446 run27.mat -1 -1 909 1877476 1882400 +3693115 3713806 20692 4636786.1928 4637822.4716 -62.6688 30.2884 92.532 run27.mat -1 -1 909 1882563 1892909 +3714114 3734790 20677 4637837.8746 4638871.9591 -64.3193 30.2883 92.5701 run27.mat -1 -1 909 1893063 1903402 +3735095 3755810 20716 4638887.2155 4639922.7543 -65.9691 30.2888 92.5545 run27.mat -1 -1 909 1903555 1913912 +3756117 3776773 20657 4639937.9855 4640970.7461 -67.6193 30.2878 92.6251 run27.mat -1 -1 909 1914066 1924394 +3777087 3778721 1635 4640986.4078 4641067.4755 -69.2822 30.2873 92.6901 run27.mat -1 -1 909 1924551 1925368 +3862766 3880871 18106 4645269.2516 4646175.8132 -69.2703 30.2884 92.9563 run27.mat -1 -1 910 1967393 1976446 +3881177 3901889 20713 4646191.178 4647227.1603 -70.9205 30.2882 92.5993 run27.mat -1 -1 910 1976599 1986955 +3902195 3922889 20695 4647242.4208 4648277.0982 -72.5738 30.2878 92.561 run27.mat -1 -1 910 1987108 1997455 +3923196 3943890 20695 4648292.3294 4649327.77 -74.2211 30.2875 92.5285 run27.mat -1 -1 910 1997609 2007956 +3944195 3958561 14367 4649343.0231 4650060.1408 -75.871 30.288 92.8278 run27.mat -1 -1 910 2008109 2015292 +4042869 4048292 5424 4654274.3558 4654547.5492 -75.8706 30.2869 94.1765 run27.mat -1 -1 911 2057447 2060159 +4048600 4069309 20710 4654563.0198 4655598.522 -77.5186 30.2874 92.4395 run27.mat -1 -1 911 2060313 2070668 +4069619 4090329 20711 4655613.9051 4656648.6838 -79.1701 30.288 92.6093 run27.mat -1 -1 911 2070823 2081179 +4090636 4111312 20677 4656664.0367 4657697.8115 -80.8194 30.2884 92.5714 run27.mat -1 -1 911 2081332 2091671 +4111618 4132310 20693 4657713.238 4658748.1846 -82.4682 30.2877 92.5893 run27.mat -1 -1 911 2091824 2102170 +4132618 4138640 6023 4658763.4684 4659063.5606 -82.4596 31.9723 92.9444 run27.mat -1 -1 911 2102324 2105336 +4222939 4236649 13711 4663280.4126 4663965.4983 -82.4667 31.9721 92.8438 run27.mat -1 -1 912 2147487 2154342 +4236962 4257650 20689 4663981.2777 4665014.3307 -80.8155 31.972 92.6113 run27.mat -1 -1 912 2154499 2164850 +4257958 4278630 20673 4665029.858 4666061.8887 -79.1701 31.9718 92.557 run27.mat -1 -1 912 2164997 2175334 +4278942 4299633 20692 4666077.6177 4667114.6769 -77.514 31.9715 92.6524 run27.mat -1 -1 912 2175490 2185835 +4299953 4318700 18748 4667130.6799 4668066.2669 -75.8658 31.971 92.6126 run27.mat -1 -1 912 2185995 2195370 +4402895 4403991 1097 4672277.3707 4672332.4027 -75.8828 31.9713 97.926 run27.mat -1 -1 913 2237469 2238017 +4404311 4424971 20661 4672348.4704 4673381.0407 -74.2173 31.972 92.5999 run27.mat -1 -1 913 2238177 2248507 +4425287 4445971 20685 4673396.7184 4674432.1981 -72.566 31.972 92.5039 run27.mat -1 -1 913 2248665 2259008 +4446278 4466974 20697 4674447.6781 4675483.0489 -70.918 31.9715 92.6069 run27.mat -1 -1 913 2259161 2269510 +4467281 4487954 20674 4675498.2144 4676530.0345 -69.2691 31.9726 92.5609 run27.mat -1 -1 913 2269663 2280001 +4488262 4498780 10519 4676545.3153 4677071.1141 -67.6186 31.971 92.718 run27.mat -1 -1 913 2280155 2285414 +4582853 4592046 9194 4681275.2298 4681733.1992 -67.6269 31.971 93.3907 run27.mat -1 -1 914 2327452 2332049 +4592368 4613057 20690 4681749.3024 4682785.7478 -65.976 31.9707 92.5174 run27.mat -1 -1 914 2332209 2342555 +4613366 4634055 20690 4682801.0782 4683835.5272 -64.3244 31.9712 92.6301 run27.mat -1 -1 914 2342709 2353054 +4634361 4655054 20694 4683850.7118 4684885.3211 -62.6749 31.9716 92.5129 run27.mat -1 -1 914 2353207 2363554 +4655365 4676033 20669 4684900.7507 4685933.8707 -61.0266 31.971 92.6762 run27.mat -1 -1 914 2363709 2374044 +4676341 4678620 2280 4685949.4602 4686063.5022 -59.3751 31.9724 93.0396 run27.mat -1 -1 914 2374198 2375337 +4762900 4780356 17457 4690277.3406 4691150.9073 -59.3773 31.9718 92.9576 run27.mat -1 -1 915 2417479 2426208 +4780681 4801354 20674 4691167.0316 4692198.5994 -57.7277 31.9717 92.5936 run27.mat -1 -1 915 2426370 2436707 +4801662 4822355 20694 4692213.8833 4693250.5799 -56.0759 31.9714 92.5129 run27.mat -1 -1 915 2436861 2447208 +4822662 4843355 20694 4693265.8111 4694300.7005 -54.4245 31.9724 92.625 run27.mat -1 -1 915 2447361 2457709 +4843661 4858680 15020 4694315.9428 4695066.9205 -52.7765 31.9734 92.6554 run27.mat -1 -1 915 2457862 2465371 +4942993 4947705 4713 4699283.0669 4699518.5971 -52.7771 31.9705 94.0153 run27.mat -1 -1 916 2507530 2509886 +4948024 4968698 20675 4699534.4237 4700567.6799 -51.1252 31.9719 92.5295 run27.mat -1 -1 916 2510046 2520383 +4969004 4989701 20698 4700582.9858 4701617.0599 -49.4762 31.9718 92.5942 run27.mat -1 -1 916 2520536 2530885 +4990008 5010700 20693 4701632.5368 4702666.9055 -47.8294 31.9718 92.5257 run27.mat -1 -1 916 2531038 2541385 +5011006 5031684 20679 4702682.0901 4703717.5777 -46.1782 31.9718 92.6204 run27.mat -1 -1 916 2541538 2551877 +5031996 5038779 6784 4703733.3098 4704072.6659 -44.5285 31.9727 92.8822 run27.mat -1 -1 916 2552033 2555425 +5122933 5135987 13055 4708278.6825 4708931.3376 -44.5378 31.971 93.2258 run27.mat -1 -1 917 2597504 2604031 +5136303 5156980 20678 4708947.1409 4709983.3466 -42.8796 31.9724 92.5128 run27.mat -1 -1 917 2604189 2614528 +5157291 5177998 20708 4709998.8996 4711032.8431 -41.2337 31.9714 92.5517 run27.mat -1 -1 917 2614683 2625037 +5178306 5198988 20683 4711048.3704 4712080.8709 -39.5819 31.9719 92.6368 run27.mat -1 -1 917 2625191 2635532 +5199303 5218818 19516 4712096.7543 4713072.0148 -37.9396 31.971 92.6675 run27.mat -1 -1 917 2635690 2645448 +5303062 5303320 259 4717286.2509 4717299.1536 -37.9386 31.9705 107.5221 run27.mat -1 -1 918 2687572 2687701 +5303643 5324278 20636 4717315.3069 4718345.3141 -36.2893 31.9709 92.6969 run27.mat -1 -1 918 2687862 2698180 +5324586 5345278 20693 4718360.7171 4719396.5715 -34.6363 31.9716 92.6525 run27.mat -1 -1 918 2698334 2708681 +5345583 5366279 20697 4719411.9476 4720447.5494 -32.9863 31.9718 92.6046 run27.mat -1 -1 918 2708834 2719182 +5366584 5387280 20697 4720462.6844 4721496.9472 -31.3396 31.972 92.6208 run27.mat -1 -1 918 2719335 2729683 +5387587 5398859 11273 4721512.4272 4722075.9649 -29.6906 31.9716 92.7354 run27.mat -1 -1 918 2729836 2735473 +5483088 5491520 8433 4726286.8938 4726709.4113 -29.6883 31.9725 93.3463 run27.mat -1 -1 919 2777589 2781805 +5491830 5512541 20712 4726724.7944 4727759.991 -28.0363 31.9717 92.542 run27.mat -1 -1 919 2781960 2792316 +5512846 5533538 20693 4727775.2442 4728809.0802 -26.3869 31.9714 92.5139 run27.mat -1 -1 919 2792469 2802815 +5533846 5554521 20676 4728824.5889 4729860.5718 -24.7399 31.9715 92.616 run27.mat -1 -1 919 2802969 2813307 +5554830 5575496 20667 4729876.0277 4730908.3425 -23.09 31.9718 92.6114 run27.mat -1 -1 919 2813461 2823795 +5575806 5578878 3073 4730923.9738 4731078.7531 -21.4346 31.972 92.7458 run27.mat -1 -1 919 2823950 2825486 +5663131 5679805 16675 4735291.1404 4736124.9508 -21.4358 31.9715 92.9815 run27.mat -1 -1 920 2867614 2875952 +5680129 5700817 20689 4736140.8852 4737174.3344 -19.7863 31.9716 92.4358 run27.mat -1 -1 920 2876114 2886458 +5701124 5721801 20678 4737189.6903 4738221.8028 -18.1389 31.9719 92.6026 run27.mat -1 -1 920 2886612 2896951 +5722113 5742798 20686 4738237.4093 4739273.3122 -16.4908 31.9714 92.6198 run27.mat -1 -1 920 2897107 2907449 +5743105 5758937 15833 4739288.7891 4740080.9182 -14.8438 31.9715 92.6755 run27.mat -1 -1 920 2907603 2915519 +5842996 5846892 3897 4744283.556 4744478.9756 -14.8447 31.974 94.884 run27.mat -1 -1 921 2957551 2959499 +5847205 5867899 20695 4744494.6289 4745528.2068 -13.1901 31.9716 92.5121 run27.mat -1 -1 921 2959655 2970003 +5868206 5888899 20694 4745543.438 4746579.8466 -11.5437 31.9715 92.5761 run27.mat -1 -1 921 2970156 2980503 +5889208 5909902 20695 4746595.2999 4747628.434 -9.8977 31.9709 92.5953 run27.mat -1 -1 921 2980658 2991006 +5910208 5930882 20675 4747643.8605 4748678.9589 -8.2485 31.9715 92.5827 run27.mat -1 -1 921 2991159 3001496 +5931187 5938818 7632 4748694.0909 4749072.7289 -6.5994 31.9715 92.7825 run27.mat -1 -1 921 3001648 3005464 +6023096 6035328 12233 4753287.5809 4753900.2248 -6.5977 31.971 93.3197 run27.mat -1 -1 922 3047604 3053721 +6035645 6056323 20679 4753915.9522 4754948.2586 -4.947 31.9719 92.5302 run27.mat -1 -1 922 3053880 3064219 +6056628 6077320 20693 4754963.5118 4756001.3898 -3.3015 31.9716 92.5564 run27.mat -1 -1 922 3064372 3074718 +6077628 6098323 20696 4756016.7957 4757050.6096 -1.6508 31.9718 92.6315 run27.mat -1 -1 922 3074872 3085220 +6098630 6118878 20249 4757065.8408 4758077.8327 0.0014322 31.9721 92.7248 run27.mat -1 -1 922 3085374 3095498 +6203236 6223702 20467 4762294.8225 4763320.3257 1.6468 31.9721 92.8921 run27.mat -1 -1 923 3137679 3147912 +6224009 6244703 20695 4763335.5569 4764368.212 3.2993 31.9715 92.6839 run27.mat -1 -1 923 3148066 3158413 +6245008 6265681 20674 4764383.347 4765416.8975 4.9448 31.9715 92.5257 run27.mat -1 -1 923 3158565 3168903 +6265989 6286701 20713 4765432.3273 4766469.9089 6.5957 31.9714 92.5877 run27.mat -1 -1 923 3169057 3179413 +6287008 6299017 12010 4766485.1401 4767086.1283 8.2459 31.9723 92.8341 run27.mat -1 -1 923 3179567 3185572 +6383240 6390950 7711 4771294.7742 4771678.346 8.2474 31.9712 93.526 run27.mat -1 -1 924 3227684 3231540 +6391266 6411960 20695 4771694.4078 4772731.6755 9.8935 31.9716 92.548 run27.mat -1 -1 924 3231698 3242046 +6412273 6432960 20688 4772747.2665 4773781.6008 11.5453 31.9719 92.5682 run27.mat -1 -1 924 3242202 3252546 +6433267 6453962 20696 4773797.0746 4774833.4979 13.1909 31.971 92.5477 run27.mat -1 -1 924 3252700 3263047 +6454270 6474942 20673 4774848.9038 4775882.3898 14.8421 31.9719 92.6146 run27.mat -1 -1 924 3263202 3273537 +6475248 6479037 3790 4775897.5744 4776085.5705 16.502 31.9714 93.0931 run27.mat -1 -1 924 3273690 3275585 +6563051 6579081 16031 4780285.3174 4781086.826 16.4893 31.9725 92.963 run27.mat -1 -1 925 3317594 3325609 +6579397 6600083 20687 4781102.7566 4782138.624 18.1407 31.9718 92.5412 run27.mat -1 -1 925 3325767 3336111 +6600387 6621080 20694 4782153.9528 4783189.1065 19.7868 31.9718 92.586 run27.mat -1 -1 925 3336263 3346610 +6621389 6642070 20682 4783204.6842 4784237.3339 21.4336 31.9719 92.6225 run27.mat -1 -1 925 3346764 3357106 +6642386 6658878 16493 4784253.2646 4785078.6003 23.0862 31.9717 92.6908 run27.mat -1 -1 925 3357264 3365510 +6743140 6746369 3230 4789291.0246 4789452.5419 23.0887 31.9729 94.9474 run27.mat -1 -1 926 3407642 3409257 +6746689 6767384 20696 4789468.5486 4790505.3724 24.7358 31.9717 92.5268 run27.mat -1 -1 926 3409417 3419765 +6767690 6788381 20692 4790520.557 4791552.3267 26.3827 31.9713 92.6069 run27.mat -1 -1 926 3419918 3430264 +6788688 6809361 20674 4791567.8036 4792602.9839 28.0306 31.9709 92.6064 run27.mat -1 -1 926 3430418 3440755 +6809669 6830362 20694 4792618.5112 4793653.6997 29.6855 31.9717 92.7002 run27.mat -1 -1 926 3440909 3451255 +6830670 6838937 8268 4793669.2271 4794082.0119 31.3358 31.9709 92.8232 run27.mat -1 -1 926 3451409 3455543 +6925289 6936858 11570 4798399.8059 4798974.6941 31.3353 31.9722 93.3927 run27.mat -1 -1 927 3498721 3504506 +6937174 6957864 20691 4798990.4974 4800029.1363 32.9823 31.972 92.5608 run27.mat -1 -1 927 3504664 3515009 +6958171 6978844 20674 4800044.5761 4801074.5048 34.6357 31.9716 92.5551 run27.mat -1 -1 927 3515163 3525500 +6979152 6999843 20692 4801089.9112 4802126.7784 36.2847 31.9712 92.5886 run27.mat -1 -1 927 3525654 3536000 +7000149 7020823 20675 4802142.0843 4803174.5359 37.9353 31.9718 92.6678 run27.mat -1 -1 927 3536153 3546490 +7105120 7124971 19852 4807391.0779 4808383.4364 39.5854 31.9717 93.029 run27.mat -1 -1 928 3588641 3598567 +7125288 7145963 20676 4808399.1637 4809433.9006 41.2313 31.9714 92.6364 run27.mat -1 -1 928 3598725 3609063 +7146273 7166963 20691 4809449.2806 4810483.6939 42.8791 31.9717 92.618 run27.mat -1 -1 928 3609218 3619563 +7167271 7187963 20693 4810498.9778 4811532.8963 44.5314 31.9715 92.5192 run27.mat -1 -1 928 3619717 3630064 +7188270 7200936 12667 4811548.3764 4812182.0412 46.1789 31.9725 92.7325 run27.mat -1 -1 928 3630217 3636550 +7285118 7292306 7189 4816391.9121 4816749.7057 46.1802 31.9725 93.8356 run27.mat -1 -1 929 3678643 3682238 +7292617 7313305 20689 4816765.2616 4817798.5312 47.8253 31.9717 92.443 run27.mat -1 -1 929 3682393 3692738 +7313613 7334304 20692 4817813.815 4818849.1897 49.4747 31.9718 92.6308 run27.mat -1 -1 929 3692892 3703237 +7334613 7355303 20691 4818864.6456 4819899.4549 51.1254 31.9714 92.6001 run27.mat -1 -1 929 3703392 3713737 +7355610 7376282 20673 4819914.8081 4820950.6826 52.7748 31.9714 92.6742 run27.mat -1 -1 929 3713891 3724228 +7376593 7380935 4343 4820966.2386 4821182.9557 54.417 31.9708 92.9511 run27.mat -1 -1 929 3724383 3726554 +7465200 7480575 15376 4825393.929 4826164.8465 54.4194 31.9703 93.0551 run27.mat -1 -1 930 3768688 3776376 +7480896 7501585 20690 4826180.9613 4827214.9572 56.0725 31.9719 92.609 run27.mat -1 -1 930 3776537 3786882 +7501893 7522583 20691 4827230.4846 4828263.4441 57.725 31.9718 92.6385 run27.mat -1 -1 930 3787036 3797381 +7522891 7543588 20698 4828278.9746 4829313.115 59.373 31.9716 92.4825 run27.mat -1 -1 930 3797535 3807884 +7543896 7560976 17081 4829328.5215 4830182.7107 61.0214 31.9723 92.7312 run27.mat -1 -1 930 3808038 3816578 +7645103 7647953 2851 4834391.3578 4834532.7777 61.0263 31.9711 95.0318 run27.mat -1 -1 931 3858644 3860069 +7648267 7668944 20678 4834548.3593 4835582.9345 62.6722 31.9716 92.4951 run27.mat -1 -1 931 3860226 3870565 +7669253 7689944 20692 4835598.5122 4836632.0873 64.32 31.9719 92.6421 run27.mat -1 -1 931 3870719 3881065 +7690250 7710946 20697 4836647.2659 4837681.2182 65.9755 31.9719 92.5097 run27.mat -1 -1 931 3881218 3891567 +7711251 7731925 20675 4837696.5943 4838732.409 67.6195 31.9713 92.6829 run27.mat -1 -1 931 3891720 3902057 +7732234 7740995 8762 4838747.8623 4839185.9994 69.2734 31.9722 92.857 run27.mat -1 -1 931 3902211 3906592 +7825169 7836248 11080 4843392.1931 4843948.8034 69.2701 31.9716 93.492 run27.mat -1 -1 932 3948681 3954220 +7836557 7857267 20711 4843964.2593 4844998.0185 70.9174 31.9713 92.5357 run27.mat -1 -1 932 3954375 3964730 +7857573 7878247 20675 4845013.3244 4846049.3172 72.5704 31.9716 92.6308 run27.mat -1 -1 932 3964883 3975221 +7878554 7899249 20696 4846064.6701 4847098.7054 74.2174 31.9717 92.4895 run27.mat -1 -1 932 3975375 3985723 +7899555 7920226 20672 4847114.1319 4848146.8368 75.8672 31.9716 92.6762 run27.mat -1 -1 932 3985876 3996211 +7920532 7921075 544 4848162.14 4848189.2957 77.5208 31.9703 91.5171 run27.mat -1 -1 932 3996364 3996636 +8005338 8024569 19232 4852403.2068 4853364.3737 77.5122 31.9714 92.8697 run27.mat -1 -1 933 4038769 4048385 +8024877 8045566 20690 4853379.7767 4854412.4836 79.1642 31.9712 92.5794 run27.mat -1 -1 933 4048539 4058884 +8045872 8066546 20675 4854427.7868 4855463.4924 80.8122 31.9711 92.6127 run27.mat -1 -1 933 4059037 4069374 +8066854 8087210 20357 4855479.0198 4856495.3356 82.461 31.9713 92.4744 run27.mat -1 -1 933 4069528 4079707 +275014 295519 20506 4950491.624 4951518.1756 82.4612 33.6554 92.995 run28.mat -1 -1 935 155726 165979 +295830 316519 20690 4951533.8542 4952568.8915 80.813 33.6557 92.579 run28.mat -1 -1 935 166135 176480 +316825 337530 20706 4952584.318 4953620.1619 79.1666 33.6557 92.5238 run28.mat -1 -1 935 176633 186986 +337841 358518 20678 4953635.8405 4954667.954 77.5143 33.6547 92.5564 run28.mat -1 -1 935 187141 197480 +358824 370929 12106 4954683.257 4955287.5041 75.8669 33.6554 92.6929 run28.mat -1 -1 935 197633 203686 +455026 462657 7632 4959494.8056 4959875.1753 75.8714 33.6567 93.516 run28.mat -1 -1 936 245736 249569 +462988 483677 20690 4959891.7348 4960928.1478 74.2188 33.6555 92.5374 run28.mat -1 -1 936 249717 260062 +483987 504669 20683 4960943.4187 4961975.8488 72.5694 33.6558 92.533 run28.mat -1 -1 936 260217 270559 +504986 525661 20676 4961991.5761 4963026.1725 70.9201 33.6546 92.5456 run28.mat -1 -1 936 270717 281055 +525971 546644 20674 4963041.6758 4964075.783 69.271 33.6555 92.6407 run28.mat -1 -1 936 281210 291547 +546958 550831 3874 4964091.616 4964286.0206 67.6333 33.655 92.9147 run28.mat -1 -1 936 291704 293641 +636969 652959 15991 4968590.9214 4969391.3271 67.623 33.6557 93.0148 run28.mat -1 -1 937 336711 344707 +653265 673940 20676 4969406.7536 4970438.1921 65.9746 33.656 92.587 run28.mat -1 -1 937 344860 355198 +674247 694959 20713 4970453.4792 4971489.983 64.3204 33.655 92.6403 run28.mat -1 -1 937 355351 365708 +695265 715956 20692 4971505.549 4972541.547 62.6741 33.6555 92.555 run28.mat -1 -1 937 365861 376207 +716265 732749 16485 4972557.006 4973381.4336 61.0207 33.6547 92.7286 run28.mat -1 -1 937 376361 384604 +817038 820358 3321 4977594.8838 4977761.7662 61.0262 33.6555 94.5565 run28.mat -1 -1 938 426750 428410 +820678 841361 20684 4977777.6455 4978810.4672 59.3722 33.6547 92.5297 run28.mat -1 -1 938 428570 438912 +841667 862381 20715 4978825.7701 4979862.673 57.7246 33.6548 92.5858 run28.mat -1 -1 938 439065 449423 +862690 883362 20673 4979878.0034 4980911.6769 56.0685 33.6546 92.6561 run28.mat -1 -1 938 449577 459914 +883668 904341 20674 4980926.8615 4981958.3 54.4231 33.6543 92.6678 run28.mat -1 -1 938 460067 470403 +904650 912809 8160 4981973.7511 4982383.0468 52.7764 33.6546 92.6222 run28.mat -1 -1 938 470558 474638 +996809 1008539 11731 4986582.7764 4987169.0629 52.7702 33.6562 93.3007 run28.mat -1 -1 939 516639 522505 +1008866 1029541 20676 4987185.2864 4988220.9091 51.1266 33.6554 92.603 run28.mat -1 -1 939 522668 533006 +1029848 1050545 20698 4988236.3163 4989271.1447 49.4743 33.6552 92.5878 run28.mat -1 -1 939 533160 543509 +1050857 1071543 20687 4989286.6239 4990320.9065 47.826 33.6556 92.5804 run28.mat -1 -1 939 543665 554008 +1071850 1092520 20671 4990336.1377 4991368.8411 46.1814 33.6558 92.6179 run28.mat -1 -1 939 554162 564497 +1176682 1196616 19935 4995578.1767 4996572.6531 44.5331 33.6548 92.9187 run28.mat -1 -1 940 606580 616547 +1196952 1217621 20670 4996589.5954 4997623.8789 42.881 33.6547 92.5254 run28.mat -1 -1 940 616715 627050 +1217926 1238623 20698 4997639.0714 4998675.4196 41.2319 33.655 92.5412 run28.mat -1 -1 940 627203 637552 +1238930 1259601 20672 4998690.8966 4999725.1466 39.5835 33.6548 92.5719 run28.mat -1 -1 940 637705 648042 +1259911 1272469 12559 4999740.5972 5000367.6079 37.9347 33.6562 92.6997 run28.mat -1 -1 940 648197 654476 +1356739 1363900 7162 5004581.2203 5004939.3414 37.9364 33.6576 93.4431 run28.mat -1 -1 941 696612 700193 +1364206 1384924 20719 5004954.6444 5005990.6909 36.2858 33.6546 92.5403 run28.mat -1 -1 941 700346 710705 +1385240 1405923 20684 5006006.5804 5007039.8561 34.6339 33.6557 92.6077 run28.mat -1 -1 941 710863 721206 +1406230 1426924 20695 5007055.0873 5008088.366 32.9839 33.6549 92.5547 run28.mat -1 -1 941 721359 731707 +1427232 1447922 20691 5008103.769 5009139.5038 31.3388 33.6549 92.6308 run28.mat -1 -1 941 731861 742206 +1448229 1452528 4300 5009154.738 5009368.8716 29.6845 33.6545 93.1196 run28.mat -1 -1 941 742359 744509 +1536492 1552000 15509 5013567.5833 5014344.7664 29.685 33.655 93.1052 run28.mat -1 -1 942 786493 794247 +1552306 1573009 20704 5014360.0696 5015394.424 28.0316 33.6547 92.5216 run28.mat -1 -1 942 794400 804752 +1573326 1593999 20674 5015410.1544 5016441.788 26.3863 33.6552 92.5982 run28.mat -1 -1 942 804911 815247 +1594309 1615002 20694 5016457.1711 5017493.9674 24.7328 33.6548 92.567 run28.mat -1 -1 942 815402 825749 +1615308 1632367 17060 5017509.152 5018361.399 23.0883 33.6555 92.6158 run28.mat -1 -1 942 825902 834432 +1716648 1719307 2660 5022574.8746 5022708.9238 23.0873 33.6534 94.9369 run28.mat -1 -1 943 876575 877905 +1719640 1740322 20683 5022725.7114 5023758.4003 21.4345 33.6549 92.5241 run28.mat -1 -1 943 878071 888413 +1740629 1761319 20691 5023773.7532 5024808.8433 19.7858 33.6557 92.6059 run28.mat -1 -1 943 888566 898911 +1761631 1782303 20673 5024824.6384 5025859.6193 18.1391 33.6544 92.5881 run28.mat -1 -1 943 899067 909404 +1782609 1803306 20698 5025875.0458 5026908.3593 16.4903 33.6556 92.6506 run28.mat -1 -1 943 909557 919906 +1803620 1812428 8809 5026923.9408 5027364.922 14.8429 33.6569 92.8386 run28.mat -1 -1 943 920063 924467 +1896447 1907360 10914 5031565.6534 5032110.8754 14.8407 33.6558 93.3233 run28.mat -1 -1 944 966478 971935 +1907667 1928384 20718 5032126.3523 5033163.9721 13.1912 33.6553 92.5981 run28.mat -1 -1 944 972089 982448 +1928690 1949368 20679 5033179.2751 5034212.691 11.5444 33.656 92.5256 run28.mat -1 -1 944 982601 992940 +1949683 1970383 20701 5034228.5744 5035264.4914 9.8951 33.6557 92.581 run28.mat -1 -1 944 993098 1003448 +1970690 1991342 20653 5035279.8444 5036310.8469 8.2476 33.6552 92.686 run28.mat -1 -1 944 1003601 1013928 +1991652 1992247 596 5036326.4108 5036356.4067 6.5847 33.6512 93.5721 run28.mat -1 -1 944 1014083 1014381 +2076302 2095442 19141 5040558.9881 5041518.2243 6.5967 33.6558 92.7521 run28.mat -1 -1 945 1056409 1065980 +2095757 2116445 20689 5041533.9808 5042566.4569 4.9445 33.6557 92.4801 run28.mat -1 -1 945 1066137 1076482 +2116751 2137458 20708 5042581.8834 5043615.729 3.2988 33.6558 92.6166 run28.mat -1 -1 945 1076635 1086989 +2137770 2158444 20675 5043631.458 5044666.7573 1.6485 33.6545 92.6305 run28.mat -1 -1 945 1087145 1097482 +2158750 2172107 13358 5044681.9389 5045351.5457 4.3864e-07 33.6566 92.7781 run28.mat -1 -1 945 1097635 1104314 +2256364 2262702 6339 5049563.075 5049880.5498 -0.0083112 33.6541 93.5517 run28.mat -1 -1 946 1146445 1149614 +2263030 2283727 20698 5049896.9531 5050932.0598 -1.653 33.6548 92.5481 run28.mat -1 -1 946 1149778 1160127 +2284032 2304704 20673 5050947.3128 5051980.4245 -3.2999 33.6538 92.6397 run28.mat -1 -1 946 1160279 1170616 +2305012 2325722 20711 5051995.7053 5053029.8246 -4.9471 33.6546 92.5809 run28.mat -1 -1 946 1170770 1181125 +2326031 2346689 20659 5053045.2163 5054079.5701 -6.5985 33.6547 92.6682 run28.mat -1 -1 946 1181280 1191609 +2346999 2352147 5149 5054095.1982 5054351.2338 -8.2534 33.6529 92.6351 run28.mat -1 -1 946 1191764 1194338 +2436236 2450822 14587 5058555.3042 5059284.0262 -8.2472 33.6562 92.9886 run28.mat -1 -1 947 1236385 1243678 +2451143 2471826 20684 5059300.0854 5060335.5339 -9.8968 33.6544 92.5428 run28.mat -1 -1 947 1243839 1254181 +2472133 2492823 20691 5060350.8871 5061384.2389 -11.5442 33.655 92.5264 run28.mat -1 -1 947 1254334 1264679 +2493131 2513823 20693 5061399.4084 5062435.7228 -13.1937 33.655 92.5689 run28.mat -1 -1 947 1264833 1275180 +2514130 2532007 17878 5062450.954 5063343.9665 -14.845 33.6568 92.6327 run28.mat -1 -1 947 1275333 1284272 +2616027 2617943 1917 5067547.5371 5067642.6145 -14.8496 33.6528 96.9836 run28.mat -1 -1 948 1326284 1327242 +2618273 2638968 20696 5067658.9901 5068693.752 -16.4912 33.6558 92.6473 run28.mat -1 -1 948 1327407 1337755 +2639272 2659966 20695 5068708.9552 5069743.4482 -18.1405 33.6549 92.5473 run28.mat -1 -1 948 1337907 1348254 +2660275 2680966 20692 5069758.7817 5070793.3967 -19.7844 33.6558 92.613 run28.mat -1 -1 948 1348409 1358755 +2681273 2686009 4737 5070808.6279 5071043.5952 -21.4432 33.6546 92.4077 run28.mat -1 -1 948 1358909 1361277 +2686259 2701945 15687 5071055.9984 5071842.8744 -21.4392 33.6556 92.6223 run28.mat -1 -1 948 1361402 1369245 +2702252 2711906 9655 5071858.1665 5072338.5778 -23.09 33.6565 92.7631 run28.mat -1 -1 948 1369399 1374226 +2796164 2806244 10081 5076554.4653 5077056.0458 -23.0911 33.655 93.237 run28.mat -1 -1 949 1416357 1421397 +2806566 2827266 20701 5077072.0212 5078108.0327 -24.7366 33.6553 92.6065 run28.mat -1 -1 949 1421558 1431908 +2827572 2848245 20674 5078123.4592 5079158.2218 -26.3859 33.6544 92.5771 run28.mat -1 -1 949 1432061 1442398 +2848551 2869246 20696 5079173.5281 5080206.4943 -28.0332 33.6562 92.5988 run28.mat -1 -1 949 1442551 1452899 +2869552 2890237 20686 5080221.7973 5081254.3686 -29.6888 33.6543 92.6195 run28.mat -1 -1 949 1453052 1463395 +2890550 2891966 1417 5081270.148 5081341.5334 -31.3203 33.6569 93.1271 run28.mat -1 -1 949 1463552 1464260 +2976221 2994543 18323 5085557.3354 5086471.7106 -31.3361 33.6551 92.87 run28.mat -1 -1 950 1506389 1515550 +2994866 3015548 20683 5086487.9942 5087522.5627 -32.9888 33.6556 92.5 run28.mat -1 -1 950 1515712 1526053 +3015855 3036547 20693 5087538.0428 5088572.8176 -34.635 33.6538 92.5331 run28.mat -1 -1 950 1526207 1536553 +3036855 3057548 20694 5088588.2235 5089622.2 -36.2893 33.655 92.6194 run28.mat -1 -1 950 1536707 1547054 +3057855 3072005 14151 5089637.55 5090344.844 -37.9387 33.6552 92.7491 run28.mat -1 -1 950 1547208 1554283 +3156078 3161643 5566 5094549.1052 5094827.2497 -37.9339 33.655 94.199 run28.mat -1 -1 951 1596322 1599104 +3161975 3182667 20693 5094843.8531 5095878.365 -39.5856 33.6558 92.4968 run28.mat -1 -1 951 1599270 1609617 +3182974 3203668 20695 5095893.5962 5096927.0708 -41.2328 33.6554 92.5421 run28.mat -1 -1 951 1609770 1620118 +3203974 3224666 20693 5096942.3737 5097979.2313 -42.8799 33.6554 92.5913 run28.mat -1 -1 951 1620271 1630617 +3224971 3245627 20657 5097994.4845 5099026.7908 -44.5323 33.6559 92.6113 run28.mat -1 -1 951 1630770 1641097 +3245937 3251866 5930 5099042.2354 5099340.4284 -46.1713 33.6574 92.5419 run28.mat -1 -1 951 1641252 1644218 +3336121 3349944 13824 5103552.1073 5104240.7563 -46.1809 33.6552 93.1653 run28.mat -1 -1 952 1686347 1693259 +3350270 3370948 20679 5104256.9333 5105291.8734 -47.8269 33.6558 92.5398 run28.mat -1 -1 952 1693422 1703761 +3371262 3391966 20705 5105307.7032 5106344.4973 -49.4758 33.6553 92.5732 run28.mat -1 -1 952 1703918 1714270 +3392272 3412965 20694 5106359.7319 5107394.7084 -51.1276 33.6554 92.5439 run28.mat -1 -1 952 1714424 1724771 +3413272 3431925 18654 5107410.0614 5108342.7124 -52.778 33.6554 92.6577 run28.mat -1 -1 952 1724924 1734251 +3515993 3517064 1072 5112545.66 5112599.6528 -52.78 33.6562 97.7602 run28.mat -1 -1 953 1776287 1776822 +3517399 3538068 20670 5112616.5412 5113648.586 -54.4258 33.6552 92.531 run28.mat -1 -1 953 1776990 1787325 +3538374 3559069 20696 5113664.0125 5114696.7728 -56.0738 33.6553 92.6214 run28.mat -1 -1 953 1787478 1797826 +3559376 3580047 20672 5114712.1292 5115747.9223 -57.7262 33.6545 92.5476 run28.mat -1 -1 953 1797979 1808315 +3580356 3601047 20692 5115763.3753 5116798.182 -59.3773 33.6544 92.5211 run28.mat -1 -1 953 1808470 1818816 +3601354 3611806 10453 5116813.5349 5117334.2901 -61.0212 33.655 92.7668 run28.mat -1 -1 953 1818969 1824196 +3696060 3705426 9367 5121549.1109 5122015.5236 -61.0289 33.6547 93.5071 run28.mat -1 -1 954 1866325 1871008 +3705748 3726429 20682 5122031.6267 5123067.9317 -62.674 33.655 92.4944 run28.mat -1 -1 954 1871169 1881509 +3726735 3747446 20712 5123083.2347 5124118.6866 -64.3259 33.6539 92.619 run28.mat -1 -1 954 1881662 1892018 +3747755 3768446 20692 5124134.2644 5125168.2529 -65.976 33.6556 92.5012 run28.mat -1 -1 954 1892173 1902519 +3768753 3789405 20653 5125183.5753 5126214.5559 -67.6241 33.6545 92.6498 run28.mat -1 -1 954 1902672 1912999 +3789716 3791845 2130 5126230.1089 5126336.5793 -69.2727 33.6546 92.6965 run28.mat -1 -1 954 1913154 1914219 +3876139 3893808 17670 5130553.3466 5131434.3036 -69.273 33.6548 92.9798 run28.mat -1 -1 955 1956368 1965203 +3894135 3914809 20675 5131450.5271 5132487.8096 -70.9208 33.6552 92.6231 run28.mat -1 -1 955 1965366 1975703 +3915115 3935810 20696 5132503.2392 5133535.8311 -72.5723 33.6556 92.5636 run28.mat -1 -1 955 1975856 1986204 +3936115 3956809 20695 5133551.087 5134585.0343 -74.2156 33.6565 92.608 run28.mat -1 -1 955 1986357 1996705 +3957116 3971904 14789 5134600.5112 5135341.1203 -75.868 33.6557 92.7959 run28.mat -1 -1 955 1996858 2004252 +4056036 4061088 5053 5139549.7284 5139801.4063 -75.864 33.6532 94.0774 run28.mat -1 -1 956 2046320 2048846 +4061393 4082070 20678 5139816.4281 5140848.947 -77.5151 33.655 92.4632 run28.mat -1 -1 956 2048999 2059338 +4082380 4103088 20709 5140864.327 5141900.9145 -79.1681 33.6555 92.615 run28.mat -1 -1 956 2059493 2069847 +4103395 4124071 20677 5141916.2709 5142948.7094 -80.8145 33.6541 92.6188 run28.mat -1 -1 956 2070000 2080339 +4124386 4145069 20684 5142964.3406 5144001.4545 -82.4609 33.6556 92.681 run28.mat -1 -1 956 2080496 2090839 +4145376 4151785 6410 5144016.8519 5144336.2109 -82.4624 35.3347 92.8569 run28.mat -1 -1 956 2090992 2094197 +4238136 4251451 13316 5148652.0761 5149319.6672 -82.4657 35.334 93.0918 run28.mat -1 -1 957 2137374 2144032 +4251760 4272449 20690 5149334.9976 5150367.1686 -80.8159 35.3355 92.4968 run28.mat -1 -1 957 2144187 2154532 +4272755 4293449 20695 5150382.4718 5151418.5525 -79.1684 35.3346 92.6635 run28.mat -1 -1 957 2154685 2165032 +4293753 4314443 20691 5151433.8782 5152469.3849 -77.5141 35.335 92.5756 run28.mat -1 -1 957 2165184 2175529 +4314753 4333925 19173 5152484.8879 5153442.8881 -75.8692 35.3341 92.7294 run28.mat -1 -1 957 2175684 2185271 +4418033 4418600 568 5157647.9633 5157676.5534 -75.8912 35.3337 98.6994 run28.mat -1 -1 958 2227326 2227610 +4418918 4439566 20649 5157692.5881 5158723.3839 -74.2237 35.3334 92.6846 run28.mat -1 -1 958 2227769 2238094 +4439878 4460568 20691 5158739.1129 5159772.9996 -72.5714 35.3344 92.6028 run28.mat -1 -1 958 2238250 2248595 +4460876 4481569 20694 5159788.2834 5160822.966 -70.9209 35.3354 92.6539 run28.mat -1 -1 958 2248749 2259096 +4481875 4502552 20678 5160838.3278 5161875.0079 -69.2718 35.3341 92.5869 run28.mat -1 -1 958 2259249 2269588 +4502860 4513824 10965 5161890.2918 5162439.121 -67.6231 35.3331 92.8018 run28.mat -1 -1 958 2269742 2275224 +4598068 4606940 8873 5166650.4194 5167092.2882 -67.624 35.3329 93.6911 run28.mat -1 -1 959 2317348 2321784 +4607255 4627930 20676 5167107.9163 5168141.9567 -65.9749 35.3371 92.573 run28.mat -1 -1 959 2321942 2332280 +4628238 4648931 20694 5168157.3599 5169194.5391 -64.3204 35.3357 92.6337 run28.mat -1 -1 959 2332434 2342781 +4649240 4669931 20692 5169209.8726 5170243.3868 -62.671 35.3349 92.64 run28.mat -1 -1 959 2342935 2353281 +4670240 4690911 20672 5170258.6056 5171292.8379 -61.0236 35.3358 92.6503 run28.mat -1 -1 959 2353436 2363772 +4691218 4693843 2626 5171308.1911 5171438.7829 -59.3765 35.3381 92.9611 run28.mat -1 -1 959 2363925 2365238 +4778126 4795265 17140 5175653.6094 5176509.8781 -59.3744 35.3351 92.8482 run28.mat -1 -1 960 2407381 2415951 +4795582 4816251 20670 5176525.6086 5177559.7758 -57.7243 35.3349 92.5595 run28.mat -1 -1 960 2416109 2426444 +4816558 4837271 20714 5177575.2527 5178609.9178 -56.0752 35.3355 92.6191 run28.mat -1 -1 960 2426598 2436955 +4837576 4858250 20675 5178625.0528 5179658.9529 -54.4259 35.3347 92.6232 run28.mat -1 -1 960 2437107 2447445 +4858558 4873923 15366 5179674.3593 5180441.1287 -52.7774 35.3361 92.6533 run28.mat -1 -1 960 2447599 2455281 +4958023 4962465 4443 5184648.0438 5184868.5467 -52.7774 35.3355 94.3918 run28.mat -1 -1 961 2497334 2499555 +4962776 4983470 20695 5184883.9764 5185920.681 -51.1271 35.3339 92.5 run28.mat -1 -1 961 2499710 2510058 +4983775 5004469 20695 5185935.9527 5186970.91 -49.4761 35.3356 92.6721 run28.mat -1 -1 961 2510210 2520558 +5004775 5025470 20696 5186986.2132 5188020.6969 -47.8288 35.3338 92.6017 run28.mat -1 -1 961 2520711 2531058 +5025778 5046452 20675 5188036.2242 5189068.6557 -46.1767 35.3351 92.5827 run28.mat -1 -1 961 2531212 2541550 +5046757 5053803 7047 5189083.7877 5189437.0611 -44.5361 35.3313 92.9082 run28.mat -1 -1 961 2541703 2545226 +5137995 5150784 12790 5193647.0579 5194287.1234 -44.5317 35.3354 93.3328 run28.mat -1 -1 962 2587323 2593718 +5151097 5171791 20695 5194302.9028 5195337.1275 -42.8821 35.3342 92.5159 run28.mat -1 -1 962 2593875 2604212 +5172098 5192775 20678 5195352.4807 5196384.5353 -41.2315 35.3355 92.5539 run28.mat -1 -1 962 2604376 2614714 +5193083 5213769 20687 5196399.9385 5197436.3148 -39.587 35.3351 92.58 run28.mat -1 -1 962 2614868 2625212 +5214077 5233883 19807 5197451.8421 5198440.4928 -37.939 35.3344 92.7104 run28.mat -1 -1 962 2625366 2635269 +5317930 5317938 9 5202644.8825 5202645.2826 -37.9809 35.2938 88.3592 run28.mat -1 -1 963 2677295 2677299 +5318251 5338888 20638 5202660.9356 5203691.5141 -36.2904 35.3336 92.7666 run28.mat -1 -1 963 2677455 2687774 +5339199 5359876 20678 5203706.9468 5204740.4908 -34.6356 35.3358 92.5532 run28.mat -1 -1 963 2687930 2698269 +5360191 5380888 20698 5204756.371 5205789.5565 -32.9865 35.3351 92.6021 run28.mat -1 -1 963 2698426 2708775 +5381198 5401873 20676 5205805.0594 5206839.7366 -31.3372 35.3352 92.5633 run28.mat -1 -1 963 2708930 2719268 +5402180 5413743 11564 5206855.2136 5207435.1105 -29.6897 35.3357 92.752 run28.mat -1 -1 963 2719422 2725203 +5497977 5506222 8246 5211644.5245 5212057.1029 -29.6882 35.3374 93.61 run28.mat -1 -1 964 2767322 2771445 +5506539 5527222 20684 5212073.0871 5213107.9022 -28.0342 35.3358 92.5654 run28.mat -1 -1 964 2771603 2781945 +5527535 5548230 20696 5213123.7479 5214157.7822 -26.3857 35.3352 92.5448 run28.mat -1 -1 964 2782102 2792450 +5548537 5569230 20694 5214173.2591 5215209.1336 -24.7387 35.335 92.5782 run28.mat -1 -1 964 2792603 2802951 +5569536 5590211 20676 5215224.4368 5216256.484 -23.0894 35.3352 92.7279 run28.mat -1 -1 964 2803104 2813441 +5590519 5593742 3224 5216271.89 5216434.1666 -21.442 35.3357 92.7682 run28.mat -1 -1 964 2813595 2815207 +5677808 5694301 16494 5220637.0077 5221462.4207 -21.4347 35.3358 92.9507 run28.mat -1 -1 965 2857242 2865488 +5694620 5715291 20672 5221478.5058 5222511.1259 -19.7891 35.3352 92.5531 run28.mat -1 -1 965 2865648 2875984 +5715602 5736293 20692 5222526.6824 5223559.7463 -18.1363 35.3354 92.6104 run28.mat -1 -1 965 2876139 2886485 +5736599 5757291 20693 5223574.9309 5224611.7664 -16.4929 35.3342 92.6471 run28.mat -1 -1 965 2886638 2896985 +5757595 5773583 15989 5224626.9723 5225427.6203 -14.8415 35.3361 92.6128 run28.mat -1 -1 965 2897137 2905131 +5857906 5861710 3805 5229642.9083 5229833.1448 -14.8439 35.3342 94.1518 run28.mat -1 -1 966 2947295 2949197 +5862018 5882711 20694 5229848.5478 5230881.6333 -13.1947 35.3356 92.4748 run28.mat -1 -1 966 2949351 2959698 +5883019 5903710 20692 5230897.0985 5231934.1937 -11.5472 35.3361 92.6 run28.mat -1 -1 966 2959852 2970198 +5904020 5924693 20674 5231949.5768 5232983.2343 -9.8979 35.3339 92.5666 run28.mat -1 -1 966 2970353 2980690 +5925000 5945691 20692 5232998.7112 5234031.4448 -8.2513 35.3344 92.5696 run28.mat -1 -1 966 2980843 2991189 +5945998 5953662 7665 5234046.5462 5234430.3312 -6.5964 35.3346 92.7716 run28.mat -1 -1 966 2991342 2995175 +6037751 6049940 12190 5238635.4463 5239244.2727 -6.5939 35.3349 93.2007 run28.mat -1 -1 967 3037221 3043300 +6050254 6070951 20698 5239259.8543 5240294.7089 -4.9473 35.3349 92.5309 run28.mat -1 -1 967 3043473 3053822 +6071260 6091955 20696 5240310.0393 5241346.1057 -3.299 35.3365 92.6305 run28.mat -1 -1 967 3053976 3064324 +6092260 6112952 20693 5241361.4818 5242394.5005 -1.6517 35.335 92.631 run28.mat -1 -1 967 3064477 3074823 +6113260 6133502 20243 5242409.9034 5243425.0282 -0.00089479 35.336 92.6814 run28.mat -1 -1 967 3074977 3085099 +6217796 6238293 20498 5247636.9987 5248660.2091 1.6492 35.3348 92.8168 run28.mat -1 -1 968 3127248 3137497 +6238600 6259273 20674 5248675.686 5249712.4186 3.2968 35.3349 92.6379 run28.mat -1 -1 968 3137650 3147987 +6259580 6280277 20698 5249727.7745 5250762.2553 4.9477 35.335 92.5967 run28.mat -1 -1 968 3148141 3158489 +6280590 6301272 20683 5250777.7872 5251813.0907 6.5941 35.3349 92.5798 run28.mat -1 -1 968 3158646 3168988 +6301581 6313601 12021 5251828.3095 5252427.7051 8.2508 35.3359 92.7185 run28.mat -1 -1 968 3169142 3175152 +6397812 6405517 7706 5256638.6965 5257026.5159 8.2467 35.3338 93.5707 run28.mat -1 -1 969 3217259 3221112 +6405828 6426514 20687 5257042.0689 5258074.6404 9.8961 35.336 92.5846 run28.mat -1 -1 969 3221268 3231611 +6426822 6447514 20693 5258089.8128 5259123.5773 11.5436 35.3337 92.5896 run28.mat -1 -1 969 3231765 3242112 +6447821 6468497 20677 5259138.8085 5260174.1875 13.1901 35.3365 92.6573 run28.mat -1 -1 969 3242265 3252603 +6468815 6489473 20659 5260190.219 5261222.4036 14.8442 35.3346 92.6559 run28.mat -1 -1 969 3252762 3263092 +6489777 6493602 3826 5261237.6068 5261428.8966 16.4824 35.3333 92.357 run28.mat -1 -1 969 3263244 3265157 +6577911 6593958 16048 5265643.4324 5266445.994 16.4928 35.3331 93.1612 run28.mat -1 -1 970 3307313 3315337 +6594279 6614967 20689 5266462.0473 5267494.8306 18.138 35.3346 92.6198 run28.mat -1 -1 970 3315497 3325842 +6615277 6635953 20677 5267510.4588 5268546.7126 19.7857 35.3349 92.5951 run28.mat -1 -1 970 3325997 3336335 +6636262 6656955 20694 5268562.0461 5269596.5566 21.4336 35.3346 92.6545 run28.mat -1 -1 970 3336489 3346837 +6657259 6673681 16423 5269611.8822 5270434.2239 23.0862 35.3352 92.7432 run28.mat -1 -1 970 3346989 3355200 +6757742 6761065 3324 5274633.434 5274798.8191 23.0806 35.337 94.9328 run28.mat -1 -1 971 3397233 3398894 +6761381 6782055 20675 5274814.7497 5275851.3363 24.735 35.3359 92.5396 run28.mat -1 -1 971 3399052 3409389 +6782371 6803052 20682 5275867.1424 5276900.3108 26.3824 35.3342 92.5366 run28.mat -1 -1 971 3409547 3419888 +6803359 6824056 20698 5276915.5451 5277951.8875 28.0328 35.3361 92.6169 run28.mat -1 -1 971 3420042 3430391 +6824362 6845040 20679 5277967.1904 5278999.4077 29.6831 35.3346 92.5957 run28.mat -1 -1 971 3430544 3440883 +6845351 6853561 8211 5279014.9653 5279427.5156 31.3388 35.3366 92.5863 run28.mat -1 -1 971 3441039 3445144 +6937856 6949364 11509 5283641.217 5284217.3708 31.3346 35.3352 93.0046 run28.mat -1 -1 972 3487293 3493047 +6949681 6970371 20691 5284233.3519 5285266.29 32.9835 35.3362 92.5239 run28.mat -1 -1 972 3493206 3503551 +6970680 6991374 20695 5285281.8677 5286316.8071 34.6312 35.3359 92.6323 run28.mat -1 -1 972 3503706 3514053 +6991679 7012353 20675 5286331.942 5287365.6647 36.2872 35.3346 92.5721 run28.mat -1 -1 972 3514206 3524543 +7012659 7033329 20671 5287381.0911 5288414.2939 37.933 35.3336 92.6808 run28.mat -1 -1 972 3524696 3535032 +7117905 7137671 19767 5292642.9887 5293631.3936 39.5823 35.3361 92.8455 run28.mat -1 -1 973 3577322 3587205 +7137988 7158673 20686 5293647.3747 5294682.2103 41.2326 35.3347 92.6184 run28.mat -1 -1 973 3587364 3597707 +7158980 7179673 20694 5294697.6872 5295733.0224 42.8784 35.3348 92.5514 run28.mat -1 -1 973 3597860 3608207 +7179979 7200652 20674 5295748.204 5296779.9345 44.5335 35.3362 92.5563 run28.mat -1 -1 973 3608360 3618697 +7200962 7213679 12718 5296795.3145 5297433.1756 46.1798 35.3356 92.6299 run28.mat -1 -1 973 3618852 3625211 +7297763 7304726 6964 5301636.0655 5301984.2983 46.1777 35.3346 93.3133 run28.mat -1 -1 974 3667255 3670736 +7305039 7325736 20698 5301999.8271 5303034.4898 47.8274 35.3344 92.5767 run28.mat -1 -1 974 3670893 3681242 +7326041 7346734 20694 5303049.7457 5304084.6549 49.4719 35.3352 92.6225 run28.mat -1 -1 974 3681395 3691741 +7347043 7367732 20690 5304100.1081 5305136.8165 51.127 35.3346 92.597 run28.mat -1 -1 974 3691896 3702241 +7368041 7388713 20673 5305152.2695 5306186.126 52.7731 35.3352 92.6177 run28.mat -1 -1 974 3702395 3712732 +7389017 7393520 4504 5306201.3289 5306425.6061 54.4286 35.3341 92.4112 run28.mat -1 -1 974 3712884 3715135 +7477834 7493174 15341 5310642.4335 5311407.2901 54.4215 35.3334 92.9797 run28.mat -1 -1 975 3757294 3764965 +7493495 7514175 20681 5311423.5941 5312458.0304 56.0704 35.3342 92.5912 run28.mat -1 -1 975 3765125 3775466 +7514480 7535161 20682 5312473.2836 5313506.0365 57.7254 35.3348 92.6117 run28.mat -1 -1 975 3775618 3785959 +7535476 7556155 20680 5313521.6646 5314555.6476 59.3725 35.3358 92.6144 run28.mat -1 -1 975 3786116 3796457 +7556463 7573620 17158 5314571.0896 5315431.152 61.0208 35.3349 92.7458 run28.mat -1 -1 975 3796611 3805189 +7657894 7660558 2665 5319643.6616 5319777.9899 61.0216 35.3339 95.6643 run28.mat -1 -1 976 3847328 3848660 +7660883 7681554 20672 5319794.3776 5320827.3028 62.6698 35.3349 92.5787 run28.mat -1 -1 976 3848823 3859159 +7681862 7702573 20712 5320842.706 5321876.564 64.3205 35.3347 92.6416 run28.mat -1 -1 976 3859313 3869669 +7702879 7723576 20698 5321891.8669 5322927.9665 65.9715 35.3357 92.6525 run28.mat -1 -1 976 3869822 3880171 +7723880 7744555 20676 5322943.2922 5323978.2132 67.6232 35.3353 92.7173 run28.mat -1 -1 976 3880323 3890661 +7744861 7753659 8799 5323993.519 5324433.546 69.2688 35.3342 92.835 run28.mat -1 -1 976 3890814 3895212 +7837858 7848895 11038 5328643.6113 5329194.3848 69.2727 35.3336 93.2283 run28.mat -1 -1 977 3937314 3942833 +7849206 7869896 20691 5329210.0666 5330244.6547 70.9191 35.3351 92.5517 run28.mat -1 -1 977 3942988 3953334 +7870206 7890902 20697 5330260.0347 5331292.9063 72.5736 35.3355 92.579 run28.mat -1 -1 977 3953489 3963837 +7891214 7911897 20684 5331308.3856 5332342.5491 74.2181 35.3352 92.6519 run28.mat -1 -1 977 3963993 3974335 +7912205 7932875 20671 5332358.0571 5333393.4501 75.8692 35.3358 92.6748 run28.mat -1 -1 977 3974489 3984825 +7933180 7933759 580 5333408.5821 5333437.308 77.5094 35.3285 93.2951 run28.mat -1 -1 977 3984977 3985267 +8017913 8037180 19268 5337645.5514 5338607.4152 77.5134 35.335 93.0607 run28.mat -1 -1 978 4027345 4036980 +8037493 8058155 20663 5338623.0579 5339658.3567 79.1681 35.335 92.5108 run28.mat -1 -1 978 4037136 4047467 +8058463 8079172 20710 5339673.7599 5340708.4676 80.8136 35.3339 92.6109 run28.mat -1 -1 978 4047621 4057976 +8079481 8099819 20339 5340723.9206 5341740.2447 82.4637 35.3349 92.6637 run28.mat -1 -1 978 4058131 4068300 +276007 296437 20431 5468987.8387 5470008.3592 82.4615 37.0183 92.8507 run29.mat -1 -1 980 165795 176010 +296744 317437 20694 5470023.5904 5471057.3132 80.8147 37.0185 92.494 run29.mat -1 -1 980 176164 186510 +317743 338456 20714 5471072.6052 5472110.2284 79.1672 37.0169 92.5479 run29.mat -1 -1 980 186663 197021 +338764 359457 20694 5472125.5092 5473158.9667 77.5168 37.0187 92.5964 run29.mat -1 -1 980 197175 207522 +359763 371796 12034 5473174.2698 5473774.9113 75.8719 37.0171 92.5405 run29.mat -1 -1 980 207675 213691 +456256 463973 7718 5477999.1651 5478385.1212 75.868 37.022 93.4751 run29.mat -1 -1 981 255923 259782 +464314 485017 20704 5478402.1778 5479436.3594 74.2185 37.0178 92.4846 run29.mat -1 -1 981 259952 270304 +485322 505999 20678 5479451.7386 5480486.9527 72.5717 37.0187 92.6006 run29.mat -1 -1 981 270456 280795 +506305 526999 20695 5480502.2586 5481537.6841 70.9185 37.0186 92.6472 run29.mat -1 -1 981 280948 291296 +527307 547980 20674 5481553.2146 5482585.7192 69.271 37.0187 92.604 run29.mat -1 -1 981 291450 301787 +548293 552076 3784 5482601.2501 5482790.4729 67.6198 37.0174 92.6994 run29.mat -1 -1 981 301944 303835 +636345 652298 15954 5487005.0151 5487801.8327 67.6219 37.0189 92.9565 run29.mat -1 -1 982 345971 353948 +652635 673299 20665 5487818.6859 5488850.3965 65.9705 37.0189 92.5332 run29.mat -1 -1 982 354117 364449 +673607 694300 20694 5488865.6773 5489902.3712 64.3227 37.0187 92.5658 run29.mat -1 -1 982 364603 374950 +694608 715300 20693 5489917.655 5490951.3184 62.6674 37.0198 92.6599 run29.mat -1 -1 982 375104 385451 +715608 732136 16529 5490966.8457 5491794.7797 61.0224 37.0175 92.7431 run29.mat -1 -1 982 385605 393869 +816415 819559 3145 5496007.9811 5496164.1414 61.0248 37.0232 94.7695 run29.mat -1 -1 983 436011 437583 +819867 840560 20694 5496179.6687 5497216.3282 59.369 37.0189 92.4757 run29.mat -1 -1 983 437737 448084 +840866 861580 20715 5497231.6341 5498264.7285 57.7214 37.0195 92.558 run29.mat -1 -1 983 448236 458594 +861888 882559 20672 5498280.0093 5499314.5477 56.0708 37.0186 92.6766 run29.mat -1 -1 983 458748 469084 +882866 903558 20693 5499329.7789 5500364.4088 54.4247 37.0191 92.5546 run29.mat -1 -1 983 469237 479584 +903870 912176 8307 5500379.8881 5500795.0791 52.7748 37.0175 92.8803 run29.mat -1 -1 983 479740 483893 +996469 1007897 11429 5505009.9238 5505583.4186 52.7762 37.0176 93.3035 run29.mat -1 -1 984 526041 531756 +1008227 1028914 20688 5505599.925 5506634.2036 51.1281 37.0189 92.4948 run29.mat -1 -1 984 531921 542264 +1029225 1049901 20677 5506649.879 5507684.0998 49.4762 37.0184 92.4889 run29.mat -1 -1 984 542420 552758 +1050211 1070901 20691 5507699.487 5508733.968 47.8282 37.0173 92.5845 run29.mat -1 -1 984 552914 563259 +1071206 1091879 20674 5508749.1 5509780.3005 46.1798 37.0182 92.7581 run29.mat -1 -1 984 563411 573748 +1092188 1092276 89 5509795.8814 5509800.3187 44.5412 36.9919 97.5292 run29.mat -1 -1 984 573903 573947 +1176358 1196018 19661 5514007.4113 5514986.9521 44.5346 37.0193 92.8766 run29.mat -1 -1 985 615990 625820 +1196344 1217019 20676 5515003.2552 5516037.5994 42.8791 37.0194 92.6026 run29.mat -1 -1 985 625983 636321 +1217325 1238019 20695 5516053.029 5517086.7918 41.2347 37.0189 92.6349 run29.mat -1 -1 985 636474 646822 +1238327 1259005 20679 5517102.0726 5518136.9583 39.584 37.0181 92.5684 run29.mat -1 -1 985 646976 657315 +1259311 1272155 12845 5518152.1399 5518795.7575 37.9365 37.0184 92.7781 run29.mat -1 -1 985 657468 663891 +1356434 1363338 6905 5523008.8427 5523354.1629 37.9332 37.0188 93.3731 run29.mat -1 -1 986 706032 709484 +1363645 1384338 20694 5523369.5159 5524404.4914 36.286 37.0177 92.5266 run29.mat -1 -1 986 709637 719984 +1384646 1405337 20692 5524419.7722 5525456.3648 34.6325 37.0191 92.6271 run29.mat -1 -1 986 720138 730484 +1405646 1426340 20695 5525471.6952 5526506.0419 32.9847 37.0194 92.5814 run29.mat -1 -1 986 730639 740986 +1426648 1447318 20671 5526521.4449 5527555.2015 31.3299 37.0191 92.6849 run29.mat -1 -1 986 741140 751476 +1447624 1452275 4652 5527570.5047 5527802.9861 29.689 37.0169 92.7446 run29.mat -1 -1 986 751629 753954 +1536593 1551661 15069 5532018.7701 5532770.9964 29.6829 37.0197 92.9921 run29.mat -1 -1 987 796115 803650 +1551967 1572660 20694 5532786.178 5533820.8984 28.0314 37.0186 92.5396 run29.mat -1 -1 987 803803 814149 +1572966 1593679 20714 5533836.1457 5534870.5225 26.3823 37.0194 92.52 run29.mat -1 -1 987 814302 824660 +1593985 1614680 20696 5534885.949 5535921.7267 24.7336 37.0197 92.6062 run29.mat -1 -1 987 824813 835161 +1614986 1632355 17370 5535936.9083 5536804.5626 23.087 37.0196 92.6676 run29.mat -1 -1 987 835314 843998 +1716851 1719278 2428 5541029.9742 5541151.0448 23.0946 37.0203 95.5704 run29.mat -1 -1 988 886248 887468 +1719610 1740301 20692 5541167.7854 5542204.1401 21.4354 37.0173 92.5009 run29.mat -1 -1 988 887627 897973 +1740608 1761282 20675 5542219.496 5543252.8216 19.7839 37.018 92.573 run29.mat -1 -1 988 898127 908465 +1761588 1782279 20692 5543268.0639 5544301.0556 18.1402 37.0167 92.621 run29.mat -1 -1 988 908618 918963 +1782589 1803279 20691 5544316.4387 5545352.8357 16.4931 37.0178 92.5674 run29.mat -1 -1 988 919118 929464 +1803589 1812614 9026 5545368.2157 5545819.4853 14.8419 37.0167 92.6471 run29.mat -1 -1 988 929619 934132 +1896855 1907538 10684 5550030.6406 5550564.1359 14.8426 37.0191 93.1365 run29.mat -1 -1 989 976254 981596 +1907863 1928542 20680 5550580.3892 5551616.3848 13.1945 37.019 92.5114 run29.mat -1 -1 989 981759 992098 +1928850 1949560 20711 5551631.9153 5552665.8665 11.5423 37.0184 92.6343 run29.mat -1 -1 989 992252 1002608 +1949868 1970560 20693 5552681.3969 5553715.4803 9.8976 37.0187 92.5902 run29.mat -1 -1 989 1002762 1013108 +1970868 1991522 20655 5553731.0077 5554765.4193 8.2468 37.0173 92.7012 run29.mat -1 -1 989 1013262 1023590 +1991829 1992653 825 5554780.7725 5554821.981 6.5955 37.0203 94.0322 run29.mat -1 -1 989 1023743 1024155 +2076919 2095878 18960 5559034.1916 5559983.2517 6.5938 37.0191 92.9232 run29.mat -1 -1 990 1066290 1075770 +2096206 2116880 20675 5559999.528 5561032.5945 4.9442 37.0172 92.5943 run29.mat -1 -1 990 1075934 1086272 +2117184 2137882 20699 5561047.9201 5562081.4269 3.2974 37.0195 92.5247 run29.mat -1 -1 990 1086424 1096773 +2138187 2158879 20693 5562096.803 5563131.0689 1.6475 37.0184 92.5907 run29.mat -1 -1 990 1096925 1107272 +2159188 2172733 13546 5563146.3993 5563825.4253 0.00037835 37.0196 92.8109 run29.mat -1 -1 990 1107426 1114199 +2257026 2263178 6153 5568039.6824 5568345.9773 -0.0030651 37.0157 93.8554 run29.mat -1 -1 991 1156347 1159424 +2263514 2284221 20708 5568362.7808 5569399.8659 -1.652 37.0177 92.4803 run29.mat -1 -1 991 1159592 1169945 +2284528 2305200 20673 5569415.3428 5570447.7054 -3.2979 37.0198 92.6203 run29.mat -1 -1 991 1170099 1180436 +2305507 2326212 20706 5570463.0015 5571497.5561 -4.9481 37.0195 92.6137 run29.mat -1 -1 991 1180589 1190942 +2326523 2347183 20661 5571513.1091 5572547.7193 -6.5991 37.019 92.6298 run29.mat -1 -1 991 1191098 1201427 +2347495 2352834 5340 5572563.2047 5572829.0094 -8.2441 37.0162 92.9149 run29.mat -1 -1 991 1201584 1204254 +2437061 2451479 14419 5577042.5107 5577763.5211 -8.2512 37.018 93.0773 run29.mat -1 -1 992 1246369 1253578 +2451805 2472470 20666 5577779.695 5578811.5143 -9.8937 37.017 92.5433 run29.mat -1 -1 992 1253741 1264074 +2472783 2493484 20702 5578827.1673 5579863.5145 -11.5442 37.0176 92.5861 run29.mat -1 -1 992 1264231 1274582 +2493791 2514472 20682 5579878.7487 5580911.4485 -13.1898 37.0184 92.5979 run29.mat -1 -1 992 1274736 1285076 +2514789 2532853 18065 5580927.4295 5581830.098 -14.8446 37.0193 92.7 run29.mat -1 -1 992 1285235 1294267 +2617092 2618761 1670 5586041.8092 5586125.9492 -14.8529 37.0182 95.949 run29.mat -1 -1 993 1336389 1337223 +2619105 2639785 20681 5586143.2914 5587177.7883 -16.492 37.0188 92.515 run29.mat -1 -1 993 1337395 1347735 +2640092 2660765 20674 5587193.2621 5588227.528 -18.1383 37.0197 92.5697 run29.mat -1 -1 993 1347888 1358226 +2661071 2681762 20692 5588242.9576 5589276.8073 -19.7879 37.019 92.5432 run29.mat -1 -1 993 1358379 1368725 +2682073 2702763 20691 5589292.3603 5590325.7796 -21.4373 37.0179 92.5654 run29.mat -1 -1 993 1368880 1379226 +2703072 2712893 9822 5590341.3573 5590834.3629 -23.0871 37.02 92.5695 run29.mat -1 -1 993 1379380 1384291 +2797215 2807244 10030 5595048.3464 5595549.9093 -23.0927 37.0182 93.4245 run29.mat -1 -1 994 1426454 1431469 +2807571 2828245 20675 5595566.3944 5596600.6251 -24.7382 37.0193 92.5504 run29.mat -1 -1 994 1431632 1441970 +2828553 2849246 20694 5596616.1525 5597650.8454 -26.3908 37.0179 92.5716 run29.mat -1 -1 994 1442124 1452470 +2849553 2870254 20702 5597666.0766 5598702.4602 -28.0361 37.0187 92.5956 run29.mat -1 -1 994 1452624 1462975 +2870565 2891226 20662 5598718.1387 5599749.7538 -29.6925 37.0183 92.6574 run29.mat -1 -1 994 1463131 1473461 +2891540 2892972 1433 5599765.4598 5599837.0873 -31.3228 37.0256 92.884 run29.mat -1 -1 994 1473618 1474334 +2977300 2995605 18306 5604055.6114 5604969.2652 -31.3374 37.019 92.9605 run29.mat -1 -1 995 1516501 1525653 +2995935 3016607 20673 5604985.6407 5606019.2794 -32.986 37.0178 92.6175 run29.mat -1 -1 995 1525818 1536155 +3016913 3037606 20694 5606034.461 5607068.7628 -34.6339 37.0196 92.5933 run29.mat -1 -1 995 1536308 1546655 +3037916 3058605 20690 5607084.2658 5608120.0786 -36.2851 37.0182 92.6033 run29.mat -1 -1 995 1546810 1557154 +3058913 3073073 14161 5608135.3624 5608843.216 -37.9369 37.0184 92.6579 run29.mat -1 -1 995 1557308 1564389 +3157355 3162906 5552 5613057.5156 5613334.7689 -37.9321 37.0192 93.655 run29.mat -1 -1 996 1606532 1609307 +3163213 3183916 20704 5613350.2489 5614383.0417 -39.5797 37.0192 92.4681 run29.mat -1 -1 996 1609461 1619813 +3184230 3204929 20700 5614398.7482 5615435.9627 -41.2303 37.0188 92.5705 run29.mat -1 -1 996 1619970 1630320 +3205233 3225911 20679 5615451.1685 5616483.7999 -42.8794 37.0186 92.5786 run29.mat -1 -1 996 1630472 1640811 +3226218 3246893 20676 5616499.0341 5617532.7797 -44.5289 37.0185 92.6082 run29.mat -1 -1 996 1640964 1651303 +3247208 3253153 5946 5617548.4511 5617845.7741 -46.1796 37.0184 92.767 run29.mat -1 -1 996 1651460 1654433 +3337465 3351226 13762 5622061.5014 5622750.2346 -46.1776 37.0183 92.9503 run29.mat -1 -1 997 1696591 1703472 +3351552 3372247 20696 5622766.4117 5623799.2431 -47.8273 37.0179 92.5545 run29.mat -1 -1 997 1703635 1713982 +3372557 3393229 20673 5623814.6231 5624850.3259 -49.4762 37.0181 92.5446 run29.mat -1 -1 997 1714137 1724474 +3393537 3414243 20707 5624865.6098 5625900.1434 -51.1274 37.0181 92.5441 run29.mat -1 -1 997 1724628 1734981 +3414556 3433231 18676 5625915.9891 5626850.1511 -52.7806 37.0191 92.6866 run29.mat -1 -1 997 1735137 1744476 +3517692 3518748 1057 5631072.4757 5631125.3489 -52.7831 37.019 96.8823 run29.mat -1 -1 998 1786708 1787236 +3519070 3539729 20660 5631141.582 5632175.7422 -54.431 37.0194 92.5604 run29.mat -1 -1 998 1787397 1797727 +3540036 3560733 20698 5632190.9734 5633225.4749 -56.0789 37.0199 92.6309 run29.mat -1 -1 998 1797881 1808230 +3561041 3581731 20691 5633240.9371 5634276.7184 -57.7282 37.0194 92.5414 run29.mat -1 -1 998 1808384 1818729 +3582037 3602711 20675 5634291.9 5635325.5872 -59.3791 37.0185 92.6222 run29.mat -1 -1 998 1818882 1829219 +3603017 3613492 10476 5635340.7688 5635864.5334 -61.0247 37.0203 92.5629 run29.mat -1 -1 998 1829372 1834611 +3697798 3707027 9230 5640081.7393 5640541.5374 -61.0259 37.0179 93.2595 run29.mat -1 -1 999 1876765 1881380 +3707362 3728052 20691 5640558.2906 5641592.9347 -62.6724 37.018 92.5366 run29.mat -1 -1 999 1881547 1891893 +3728356 3749051 20696 5641608.2406 5642641.3085 -64.3194 37.0187 92.5707 run29.mat -1 -1 999 1892045 1902393 +3749357 3770032 20676 5642656.6115 5643690.618 -65.9747 37.0183 92.6131 run29.mat -1 -1 999 1902546 1912884 +3770354 3791013 20660 5643706.7211 5644740.8559 -67.6192 37.0186 92.6181 run29.mat -1 -1 999 1913045 1923375 +3791321 3793572 2252 5644756.1367 5644867.9023 -69.2635 37.0201 92.9702 run29.mat -1 -1 999 1923529 1924654 +3877840 3895328 17489 5649081.4449 5649954.8637 -69.269 37.0188 92.89 run29.mat -1 -1 1000 1966790 1975534 +3895656 3916333 20678 5649971.4026 5651006.6305 -70.9157 37.0192 92.5411 run29.mat -1 -1 1000 1975698 1986037 +3916642 3937334 20693 5651022.0835 5652054.991 -72.5701 37.0177 92.6403 run29.mat -1 -1 1000 1986192 1996539 +3937639 3958332 20694 5652070.2442 5653108.19 -74.2184 37.0184 92.6356 run29.mat -1 -1 1000 1996691 2007038 +3958639 3973631 14993 5653123.4374 5653873.1615 -75.8647 37.0184 92.7652 run29.mat -1 -1 1000 2007192 2014688 +4057924 4062610 4687 5658085.0408 5658321.0891 -75.8635 37.0183 93.7464 run29.mat -1 -1 1001 2056836 2059179 +4062936 4083609 20674 5658337.5239 5659370.604 -77.5147 37.02 92.5414 run29.mat -1 -1 1001 2059342 2069679 +4083920 4104615 20696 5659386.157 5660420.5993 -79.1688 37.0189 92.5957 run29.mat -1 -1 1001 2069835 2080183 +4104921 4125612 20692 5660435.7809 5661471.2233 -80.8191 37.0195 92.5642 run29.mat -1 -1 1001 2080336 2090682 +4125919 4146597 20679 5661486.5763 5662520.7657 -82.4642 37.017 92.7053 run29.mat -1 -1 1001 2090835 2101174 +4146912 4153710 6799 5662536.5217 5662876.5051 -82.4734 38.7034 92.7055 run29.mat -1 -1 1001 2101332 2104731 +4238022 4250928 12907 5667091.9619 5667736.6976 -82.4678 38.7021 93.0445 run29.mat -1 -1 1002 2146889 2153342 +4251244 4271934 20691 5667752.3753 5668787.638 -80.82 38.7022 92.5527 run29.mat -1 -1 1002 2153500 2163846 +4272239 4292932 20694 5668803.153 5669837.4395 -79.1725 38.7009 92.5269 run29.mat -1 -1 1002 2163998 2174345 +4293239 4313932 20694 5669852.7925 5670885.7306 -77.5196 38.703 92.5721 run29.mat -1 -1 1002 2174499 2184846 +4314239 4333770 19532 5670901.2075 5671879.8477 -75.8705 38.7022 92.6475 run29.mat -1 -1 1002 2184999 2194765 +4419897 4420138 242 5676186.1693 5676198.126 -75.892 38.7021 99.8443 run29.mat -1 -1 1003 2237831 2237951 +4420462 4441112 20651 5676214.2006 5677245.3651 -74.2209 38.7024 92.7301 run29.mat -1 -1 1003 2238113 2248439 +4441418 4462112 20695 5677260.6683 5678296.0957 -72.5702 38.7018 92.5218 run29.mat -1 -1 1003 2248592 2258939 +4462417 4483090 20674 5678311.1752 5679346.5149 -70.9169 38.7019 92.6052 run29.mat -1 -1 1003 2259092 2269429 +4483397 4504093 20697 5679361.7491 5680395.8875 -69.2721 38.7017 92.5177 run29.mat -1 -1 1003 2269582 2279930 +4504400 4515691 11292 5680411.3644 5680975.923 -67.6172 38.7025 92.761 run29.mat -1 -1 1003 2280084 2285730 +4599802 4608234 8433 5685181.8744 5685602.9609 -67.6203 38.7026 93.4041 run29.mat -1 -1 1004 2327787 2332003 +4608549 4629232 20684 5685618.8443 5686653.4916 -65.9717 38.7016 92.4507 run29.mat -1 -1 1004 2332160 2342502 +4629539 4650230 20692 5686668.9685 5687700.1866 -64.3186 38.7027 92.5932 run29.mat -1 -1 1004 2342656 2353002 +4650538 4671234 20697 5687715.8302 5688750.4175 -62.6721 38.7016 92.5729 run29.mat -1 -1 1004 2353156 2363504 +4671544 4692211 20668 5688765.9234 5689800.8801 -61.0243 38.7015 92.6825 run29.mat -1 -1 1004 2363659 2373994 +4692518 4695591 3074 5689816.1113 5689968.6298 -59.3735 38.7003 92.5922 run29.mat -1 -1 1004 2374147 2375684 +4779873 4796531 16659 5694183.2509 5695016.1149 -59.3733 38.7014 92.946 run29.mat -1 -1 1005 2417827 2426156 +4796841 4817531 20691 5695031.7431 5696068.2158 -57.7243 38.7025 92.5532 run29.mat -1 -1 1005 2426311 2436656 +4817838 4838528 20691 5696083.5688 5697117.1293 -56.0752 38.7022 92.6302 run29.mat -1 -1 1005 2436810 2447155 +4838839 4859533 20695 5697132.8078 5698168.5896 -54.4279 38.7022 92.5068 run29.mat -1 -1 1005 2447311 2457658 +4859839 4875650 15812 5698183.7712 5698973.5853 -52.7746 38.7021 92.8125 run29.mat -1 -1 1005 2457811 2465717 +4959932 4963855 3924 5703186.4253 5703382.6539 -52.78 38.703 94.293 run29.mat -1 -1 1006 2507860 2509821 +4964163 4984853 20691 5703397.9347 5704432.1669 -51.1314 38.7029 92.4693 run29.mat -1 -1 1006 2509975 2520321 +4985160 5005852 20693 5704447.5873 5705484.8879 -49.4806 38.7017 92.5778 run29.mat -1 -1 1006 2520474 2530821 +5006159 5026850 20692 5705500.2408 5706535.1451 -47.8328 38.7021 92.5421 run29.mat -1 -1 1006 2530974 2541320 +5027158 5047833 20676 5706550.5308 5707582.5671 -46.1837 38.7023 92.6008 run29.mat -1 -1 1006 2541474 2551812 +5048142 5055730 7589 5707598.0231 5707977.5 -44.5327 38.7013 92.5828 run29.mat -1 -1 1006 2551967 2555761 +5139994 5152159 12166 5712191.8404 5712799.3386 -44.5315 38.7014 92.9972 run29.mat -1 -1 1007 2597895 2603977 +5152478 5173152 20675 5712815.2947 5713850.7734 -42.8809 38.7022 92.5492 run29.mat -1 -1 1007 2604137 2614474 +5173458 5194138 20681 5713865.8473 5714897.4591 -41.2328 38.7014 92.6339 run29.mat -1 -1 1007 2614627 2624968 +5194450 5215138 20689 5714913.1912 5715948.1705 -39.5812 38.7025 92.6125 run29.mat -1 -1 1007 2625124 2635469 +5215453 5235789 20337 5715963.7986 5716979.3751 -37.9363 38.7021 92.6253 run29.mat -1 -1 1007 2635626 2645794 +5319848 5340241 20394 5721183.5531 5722202.8693 -36.283 38.7033 92.8364 run29.mat -1 -1 1008 2687826 2698023 +5340560 5361234 20675 5722218.8227 5723253.3747 -34.6328 38.7025 92.6192 run29.mat -1 -1 1008 2698182 2708520 +5361540 5382234 20695 5723268.7416 5724302.0387 -32.9822 38.7027 92.6509 run29.mat -1 -1 1008 2708673 2719020 +5382539 5403232 20694 5724317.2916 5725352.1966 -31.3374 38.7015 92.5543 run29.mat -1 -1 1008 2719173 2729519 +5403539 5415630 12092 5725367.5513 5725973.4013 -29.6832 38.703 92.7347 run29.mat -1 -1 1008 2729673 2735719 +5499888 5507544 7657 5730185.7407 5730570.1862 -29.6857 38.7035 93.5883 run29.mat -1 -1 1009 2777850 2781678 +5507857 5528550 20694 5730585.8392 5731616.9901 -28.0319 38.7017 92.5225 run29.mat -1 -1 1009 2781834 2792181 +5528860 5549539 20680 5731632.3732 5732668.457 -26.3866 38.7027 92.5523 run29.mat -1 -1 1009 2792336 2802679 +5549856 5570532 20677 5732684.3101 5733717.8365 -24.7381 38.7022 92.619 run29.mat -1 -1 1009 2802835 2813173 +5570839 5591513 20675 5733733.0677 5734767.7281 -23.0913 38.7016 92.6752 run29.mat -1 -1 1009 2813327 2823664 +5591819 5595708 3890 5734782.9127 5734976.4653 -21.438 38.7025 92.9823 run29.mat -1 -1 1009 2823817 2825762 +5679993 5695876 15884 5739191.791 5739983.7903 -21.4392 38.7023 93.1261 run29.mat -1 -1 1010 2867906 2875848 +5696184 5716871 20688 5739999.3176 5741034.5656 -19.7945 38.7024 92.5975 run29.mat -1 -1 1010 2876002 2886346 +5717179 5737856 20678 5741049.8464 5742085.3635 -18.1444 38.7032 92.5561 run29.mat -1 -1 1010 2886500 2896839 +5738165 5758876 20712 5742101.058 5743134.5854 -16.4964 38.7018 92.5726 run29.mat -1 -1 1010 2896993 2907349 +5759182 5775810 16629 5743149.767 5743981.122 -14.8444 38.7015 92.7185 run29.mat -1 -1 1010 2907502 2915816 +5860116 5863204 3089 5748198.4451 5748351.6501 -14.8459 38.7006 95.3713 run29.mat -1 -1 1011 2957971 2959515 +5863524 5884194 20671 5748367.5263 5749401.0647 -13.192 38.7025 92.5782 run29.mat -1 -1 1011 2959675 2970011 +5884506 5905195 20690 5749416.544 5750451.1567 -11.5466 38.7016 92.5807 run29.mat -1 -1 1011 2970167 2980512 +5905504 5926194 20691 5750466.6132 5751500.8495 -9.8925 38.7021 92.591 run29.mat -1 -1 1011 2980666 2991012 +5926501 5947173 20673 5751516.0838 5752548.5975 -8.2449 38.7025 92.6509 run29.mat -1 -1 1011 2991165 3001502 +5947485 5955909 8425 5752564.2035 5752987.104 -6.5938 38.7022 92.7327 run29.mat -1 -1 1011 3001658 3005870 +6039967 6051303 11337 5757188.5947 5757755.6076 -6.5957 38.7034 93.2885 run29.mat -1 -1 1012 3047901 3053569 +6051619 6072296 20678 5757771.4107 5758806.1392 -4.9432 38.7025 92.5573 run29.mat -1 -1 1012 3053727 3064066 +6072606 6093296 20691 5758821.7705 5759856.2726 -3.2971 38.702 92.6629 run29.mat -1 -1 1012 3064221 3074567 +6093603 6114296 20694 5759871.6876 5760908.341 -1.647 38.7025 92.5598 run29.mat -1 -1 1012 3074720 3085067 +6114603 6135277 20675 5760923.8179 5761954.439 4.4589e-06 38.7019 92.6532 run29.mat -1 -1 1012 3085221 3095558 +6135581 6135768 188 5761969.6422 5761978.9942 1.6434 38.6974 94.7314 run29.mat -1 -1 1012 3095710 3095804 +6219935 6239580 19646 5766187.2004 5767170.4855 1.6492 38.7023 93.0143 run29.mat -1 -1 1013 3137889 3147711 +6239887 6260576 20690 5767185.7807 5768220.5977 3.2931 38.7021 92.552 run29.mat -1 -1 1013 3147865 3158210 +6260885 6281558 20674 5768235.9282 5769271.5225 4.9443 38.7025 92.5802 run29.mat -1 -1 1013 3158365 3168702 +6281868 6302557 20690 5769286.9026 5770319.4765 6.5892 38.7011 92.5749 run29.mat -1 -1 1013 3168857 3179202 +6302863 6315828 12966 5770334.6581 5770983.0998 8.2439 38.7022 92.6914 run29.mat -1 -1 1013 3179355 3185838 +6400198 6406943 6746 5775201.317 5775541.3553 8.2405 38.7012 93.4993 run29.mat -1 -1 1014 3228025 3231397 +6407266 6427941 20676 5775557.6388 5776587.9373 9.8883 38.7031 92.4355 run29.mat -1 -1 1014 3231558 3241901 +6428249 6448936 20688 5776603.4646 5777637.7122 11.5381 38.7026 92.5815 run29.mat -1 -1 1014 3242051 3252395 +6449246 6469921 20676 5777653.2155 5778689.2963 13.1879 38.7022 92.6006 run29.mat -1 -1 1014 3252550 3262887 +6470229 6490923 20695 5778704.7022 5779738.9905 14.841 38.7018 92.5886 run29.mat -1 -1 1014 3263042 3273389 +6491232 6495947 4716 5779754.3853 5779989.9327 16.4827 38.7011 92.8493 run29.mat -1 -1 1014 3273544 3275901 +6580065 6595114 15050 5784195.6019 5784947.944 16.4905 38.7026 92.9205 run29.mat -1 -1 1015 3317962 3325487 +6595431 6616099 20669 5784963.858 5785996.1282 18.1408 38.7019 92.4491 run29.mat -1 -1 1015 3325645 3335980 +6616405 6637083 20679 5786011.4313 5787046.0288 19.7887 38.7036 92.6116 run29.mat -1 -1 1015 3336133 3346472 +6637389 6658099 20711 5787061.2104 5788096.7407 21.4393 38.7027 92.5018 run29.mat -1 -1 1015 3346625 3356981 +6658405 6675868 17464 5788112.0466 5788986.522 23.0918 38.702 92.7241 run29.mat -1 -1 1015 3357134 3365865 +6760100 6762413 2314 5793197.6382 5793314.2444 23.1002 38.7031 95.9143 run29.mat -1 -1 1016 3407984 3409140 +6762730 6783419 20690 5793330.2254 5794361.3422 24.7401 38.7021 92.5745 run29.mat -1 -1 1016 3409299 3419643 +6783727 6804419 20693 5794376.7451 5795411.629 26.3895 38.7027 92.58 run29.mat -1 -1 1016 3419797 3430144 +6804727 6825421 20695 5795427.1563 5796463.4457 28.0371 38.7016 92.4696 run29.mat -1 -1 1016 3430298 3440645 +6825726 6846401 20676 5796478.8217 5797512.221 29.6886 38.7016 92.6495 run29.mat -1 -1 1016 3440798 3451136 +6846708 6855947 9240 5797527.574 5797989.6139 31.3368 38.7023 92.6767 run29.mat -1 -1 1016 3451289 3455909 +6940223 6950715 10493 5802205.3336 5802729.8515 31.3323 38.7026 93.2006 run29.mat -1 -1 1017 3498049 3503295 +6951029 6971719 20691 5802745.4331 5803777.4853 32.9863 38.7025 92.4804 run29.mat -1 -1 1017 3503452 3513797 +6972027 6992720 20694 5803793.0157 5804828.0048 34.6282 38.7025 92.6757 run29.mat -1 -1 1017 3513951 3524298 +6993023 7013700 20678 5804843.0375 5805878.3855 36.2822 38.7016 92.6211 run29.mat -1 -1 1017 3524450 3534789 +7014007 7034680 20674 5805893.7384 5806926.6462 37.9279 38.7017 92.7304 run29.mat -1 -1 1017 3534942 3545279 +7034987 7036026 1040 5806941.9994 5806993.5808 39.5736 38.699 92.727 run29.mat -1 -1 1017 3545433 3545952 +7120293 7139086 18794 5811206.6214 5812148.3059 39.5799 38.7019 93.0658 run29.mat -1 -1 1018 3588088 3597484 +7139398 7160080 20683 5812164.0978 5813197.5919 41.226 38.7022 92.5993 run29.mat -1 -1 1018 3597640 3607982 +7160387 7181081 20695 5813212.8261 5814245.6075 42.8763 38.7022 92.583 run29.mat -1 -1 1018 3608136 3618483 +7181385 7202061 20677 5814260.8134 5815295.3043 44.5304 38.703 92.6019 run29.mat -1 -1 1018 3618635 3628974 +7202376 7216046 13671 5815311.1845 5815996.3001 46.1796 38.702 92.6936 run29.mat -1 -1 1018 3629131 3635966 +7300164 7306205 6042 5820200.2382 5820504.3281 46.18 38.7011 94.107 run29.mat -1 -1 1019 3678027 3681048 +7306524 7327239 20716 5820520.3051 5821554.616 47.8273 38.7022 92.5182 run29.mat -1 -1 1019 3681207 3691565 +7327546 7348220 20675 5821570.096 5822604.8865 49.4758 38.7017 92.6057 run29.mat -1 -1 1019 3691719 3702056 +7348526 7369219 20694 5822620.0681 5823651.874 51.129 38.7027 92.5521 run29.mat -1 -1 1019 3702209 3712556 +7369526 7390198 20673 5823667.227 5824702.9258 52.7786 38.7022 92.672 run29.mat -1 -1 1019 3712710 3723046 +7390505 7395965 5461 5824718.4677 5824990.945 54.431 38.705 92.6969 run29.mat -1 -1 1019 3723200 3725930 +7480291 7494579 14289 5829207.3386 5829921.5128 54.4259 38.702 93.0091 run29.mat -1 -1 1020 3768095 3775239 +7494889 7515581 20693 5829937.141 5830971.6562 56.0775 38.7022 92.5307 run29.mat -1 -1 1020 3775394 3785740 +7515887 7536578 20692 5830986.8408 5832024.1396 57.727 38.7029 92.5474 run29.mat -1 -1 1020 3785893 3796240 +7536887 7557580 20694 5832039.5961 5833072.5026 59.3767 38.7015 92.5286 run29.mat -1 -1 1020 3796394 3806741 +7557887 7576086 18200 5833087.8555 5833996.6146 61.0235 38.7029 92.7229 run29.mat -1 -1 1020 3806894 3815994 +7660171 7661732 1562 5838201.4255 5838279.4905 61.0261 38.7009 96.3308 run29.mat -1 -1 1021 3858039 3858819 +7662048 7682726 20679 5838295.2935 5839328.5216 62.6701 38.7023 92.6327 run29.mat -1 -1 1021 3858977 3869316 +7683034 7703725 20692 5839344.052 5840378.7081 64.3218 38.7019 92.6125 run29.mat -1 -1 1021 3869470 3879817 +7704030 7724723 20694 5840393.9612 5841429.5703 65.9662 38.7017 92.5892 run29.mat -1 -1 1021 3879969 3890316 +7725028 7745721 20694 5841444.9526 5842480.0119 67.6174 38.7019 92.6467 run29.mat -1 -1 1021 3890468 3900815 +7746027 7755986 9960 5842495.1965 5842993.3108 69.2689 38.7026 92.6972 run29.mat -1 -1 1021 3900968 3905948 +7840263 7850008 9746 5847207.1383 5847695.1218 69.2644 38.7011 93.295 run29.mat -1 -1 1022 3948088 3952961 +7850329 7871022 20694 5847711.0476 5848743.6805 70.9141 38.7019 92.5035 run29.mat -1 -1 1022 3953122 3963469 +7871327 7892002 20676 5848759.0597 5849793.313 72.5652 38.7013 92.6051 run29.mat -1 -1 1022 3963621 3973959 +7892310 7913022 20713 5849808.8403 5850844.0719 74.2165 38.7024 92.467 run29.mat -1 -1 1022 3974113 3984470 +7913327 7933980 20654 5850859.3886 5851894.231 75.8659 38.7017 92.6501 run29.mat -1 -1 1022 3984622 3994949 +7934290 7936046 1757 5851909.6141 5851996.7519 77.5166 38.7073 92.9283 run29.mat -1 -1 1022 3995104 3995982 +8020296 8038291 17996 5856208.3231 5857108.646 77.5144 38.7023 92.808 run29.mat -1 -1 1023 4038109 4047107 +8038611 8059304 20694 5857124.5221 5858161.2497 79.1689 38.7027 92.557 run29.mat -1 -1 1023 4047267 4057614 +8059612 8080283 20672 5858176.5444 5859208.4148 80.8148 38.7021 92.592 run29.mat -1 -1 1023 4057768 4068104 +8080592 8100931 20340 5859223.8712 5860239.0793 82.4696 38.7032 92.5957 run29.mat -1 -1 1023 4068258 4078428 +275451 295880 20430 10641634.4664 10642654.9927 82.46 -37.0191 92.9941 run3.mat -1 -1 1025 157794 168009 +296186 316879 20694 10642670.2986 10643703.2074 80.815 -37.0202 92.6061 run3.mat -1 -1 1025 168162 178509 +317184 337879 20696 10643718.4633 10644755.4868 79.1644 -37.0216 92.6037 run3.mat -1 -1 1025 178661 189009 +338186 358857 20672 10644770.8398 10645804.49 77.5138 -37.0206 92.6556 run3.mat -1 -1 1025 189162 199498 +359164 371278 12115 10645819.9669 10646425.8712 75.8665 -37.0218 92.7302 run3.mat -1 -1 1025 199652 205709 +455575 463179 7605 10650640.2907 10651020.6544 75.8635 -37.0192 93.6107 run3.mat -1 -1 1026 247860 251662 +463501 484180 20680 10651036.8875 10652069.447 74.2202 -37.0203 92.5478 run3.mat -1 -1 1026 251823 262163 +484487 505168 20682 10652084.8 10653119.1066 72.5706 -37.0208 92.5946 run3.mat -1 -1 1026 262316 272657 +505484 526161 20678 10653134.9096 10654168.5543 70.9179 -37.0211 92.6334 run3.mat -1 -1 1026 272815 283154 +526466 547144 20679 10654183.6862 10655217.5045 69.2699 -37.0205 92.6555 run3.mat -1 -1 1026 283307 293646 +547448 551359 3912 10655232.8302 10655429.3324 67.6181 -37.0255 92.7486 run3.mat -1 -1 1026 293798 295753 +635678 651480 15803 10659643.7092 10660435.7166 67.6216 -37.0214 92.9725 run3.mat -1 -1 1027 337915 345817 +651787 672461 20675 10660451.0698 10661483.9673 65.9737 -37.0205 92.6291 run3.mat -1 -1 1027 345970 356307 +672769 693452 20684 10661499.4947 10662532.8321 64.3202 -37.0212 92.7214 run3.mat -1 -1 1027 356461 366803 +693764 714445 20682 10662548.4351 10663583.691 62.6678 -37.0202 92.5522 run3.mat -1 -1 1027 366959 377300 +714753 731458 16706 10663599.0942 10664434.1913 61.022 -37.0216 92.6948 run3.mat -1 -1 1027 377454 385807 +815728 818743 3016 10668648.9829 10668798.5959 61.0172 -37.0217 94.9057 run3.mat -1 -1 1028 427944 429451 +819063 839745 20683 10668814.4752 10669846.615 59.3739 -37.0194 92.5751 run3.mat -1 -1 1028 429611 439953 +840051 860746 20696 10669861.7966 10670899.6042 57.7231 -37.0202 92.6355 run3.mat -1 -1 1028 440106 450454 +861053 881724 20672 10670914.9571 10671948.3672 56.0711 -37.0205 92.5146 run3.mat -1 -1 1028 450607 460943 +882033 902706 20674 10671963.7007 10672998.1417 54.4243 -37.0206 92.7272 run3.mat -1 -1 1028 461098 471435 +903012 911517 8506 10673013.4481 10673437.2035 52.7809 -37.0206 92.7744 run3.mat -1 -1 1028 471588 475841 +995723 1006923 11201 10677649.2977 10678209.4116 52.7762 -37.0209 93.4404 run3.mat -1 -1 1029 517946 523546 +1007248 1027924 20677 10678225.6647 10679256.9857 51.1262 -37.021 92.5336 run3.mat -1 -1 1029 523708 534047 +1028232 1048922 20691 10679272.2665 10680305.9263 49.4762 -37.0205 92.6448 run3.mat -1 -1 1029 534201 544546 +1049229 1069905 20677 10680321.2793 10681355.9696 47.8298 -37.0204 92.5642 run3.mat -1 -1 1029 544700 555038 +1070213 1090882 20670 10681371.2504 10682407.2313 46.1785 -37.021 92.7506 run3.mat -1 -1 1029 555192 565527 +1091191 1091497 307 10682422.809 10682438.2355 44.535 -37.0255 93.9116 run3.mat -1 -1 1029 565681 565834 +1175791 1195225 19435 10686652.0777 10687623.3723 44.533 -37.02 92.817 run3.mat -1 -1 1030 607983 617700 +1195549 1216227 20679 10687639.7096 10688672.4901 42.8769 -37.0212 92.5522 run3.mat -1 -1 1030 617862 628202 +1216535 1237215 20681 10688687.8933 10689721.1462 41.2314 -37.0217 92.6374 run3.mat -1 -1 1030 628356 638697 +1237528 1258206 20679 10689736.848 10690772.5975 39.5829 -37.0212 92.6749 run3.mat -1 -1 1030 638853 649193 +1258514 1271577 13064 10690787.8783 10691441.7349 37.9333 -37.0207 92.7786 run3.mat -1 -1 1030 649347 655878 +1355861 1362605 6745 10695654.4812 10695993.3894 37.9319 -37.0193 94.0273 run3.mat -1 -1 1031 698022 701394 +1362912 1383609 20698 10696008.6237 10697041.9154 36.2815 -37.0204 92.469 run3.mat -1 -1 1031 701548 711896 +1383917 1404608 20692 10697057.3213 10698092.2173 34.6302 -37.0213 92.5811 run3.mat -1 -1 1031 712050 722397 +1404916 1425589 20674 10698107.6203 10699140.4203 32.9819 -37.0197 92.6174 run3.mat -1 -1 1031 722551 732888 +1425902 1446582 20681 10699155.9492 10700190.9028 31.3319 -37.0201 92.7764 run3.mat -1 -1 1031 733044 743385 +1446891 1451656 4766 10700206.4837 10700443.7821 29.6793 -37.0175 93.1117 run3.mat -1 -1 1031 743540 745922 +1535941 1550988 15048 10704658.6898 10705412.1535 29.6845 -37.0211 93.132 run3.mat -1 -1 1032 788067 795590 +1551294 1571977 20684 10705427.4594 10706461.8852 28.0321 -37.0212 92.5597 run3.mat -1 -1 1032 795743 806085 +1572292 1592971 20680 10706477.6385 10707511.8912 26.3855 -37.0212 92.7085 run3.mat -1 -1 1032 806242 816582 +1593277 1613949 20673 10707527.1976 10708559.9754 24.7364 -37.0199 92.5878 run3.mat -1 -1 1032 816735 827072 +1614257 1631697 17441 10708575.2562 10709446.3834 23.0899 -37.0217 92.7802 run3.mat -1 -1 1032 827226 835946 +1715808 1718047 2240 10713651.7436 10713762.8271 23.0878 -37.0199 94.8606 run3.mat -1 -1 1033 878004 879123 +1718369 1739034 20666 10713778.8025 10714814 21.4388 -37.0212 92.589 run3.mat -1 -1 1033 879284 889617 +1739350 1760030 20681 10714829.6777 10715863.0579 19.7898 -37.0199 92.6106 run3.mat -1 -1 1033 889775 900116 +1760336 1781029 20694 10715878.3611 10716915.2386 18.1439 -37.0201 92.6904 run3.mat -1 -1 1033 900269 910615 +1781336 1802009 20674 10716930.5945 10717961.6526 16.4895 -37.0217 92.6956 run3.mat -1 -1 1033 910769 921106 +1802318 1811556 9239 10717977.2303 10718439.9479 14.8489 -37.0185 92.8245 run3.mat -1 -1 1033 921261 925879 +1895995 1906447 10453 10722662.6007 10723184.1587 14.8456 -37.0205 93.3292 run3.mat -1 -1 1034 968101 973328 +1906772 1927480 20709 10723200.4743 10724237.6991 13.189 -37.0218 92.5591 run3.mat -1 -1 1034 973490 983844 +1927795 1948451 20657 10724253.3303 10725284.083 11.5438 -37.0205 92.5795 run3.mat -1 -1 1034 984002 994330 +1948758 1969450 20693 10725299.3141 10726333.7975 9.8918 -37.0203 92.5709 run3.mat -1 -1 1034 994484 1004830 +1969758 1990409 20652 10726349.2271 10727384.2372 8.2464 -37.0206 92.7181 run3.mat -1 -1 1034 1004984 1015310 +1990716 1991776 1061 10727399.7172 10727453.1662 6.5851 -37.0127 91.8802 run3.mat -1 -1 1034 1015464 1015994 +2076033 2094730 18698 10731665.3147 10732598.6987 6.5906 -37.0203 92.9922 run3.mat -1 -1 1035 1058124 1067473 +2095052 2115719 20668 10732614.6741 10733646.3083 4.9423 -37.0192 92.5592 run3.mat -1 -1 1035 1067634 1077968 +2116034 2136712 20679 10733662.1885 10734699.0735 3.293 -37.0209 92.6206 run3.mat -1 -1 1035 1078126 1088465 +2137020 2157697 20678 10734714.4794 10735747.4353 1.6459 -37.02 92.6285 run3.mat -1 -1 1035 1088619 1098958 +2158011 2171836 13826 10735763.2683 10736453.7753 -0.0036546 -37.022 92.936 run3.mat -1 -1 1035 1099115 1106028 +2256063 2261991 5929 10740664.2765 10740962.1034 -0.0029137 -37.0235 93.9125 run3.mat -1 -1 1036 1148143 1151107 +2262296 2282993 20698 10740977.4795 10742014.1202 -1.6471 -37.0205 92.5169 run3.mat -1 -1 1036 1151260 1161609 +2283298 2303972 20675 10742029.3731 10743059.3272 -3.2976 -37.0193 92.5792 run3.mat -1 -1 1036 1161761 1172099 +2304279 2324974 20696 10743074.6804 10744111.1436 -4.9449 -37.0217 92.6007 run3.mat -1 -1 1036 1172252 1182600 +2325280 2345935 20656 10744126.5701 10745160.0427 -6.5941 -37.0197 92.6607 run3.mat -1 -1 1036 1182753 1193081 +2346246 2351875 5630 10745175.5987 10745455.3158 -8.2447 -37.0195 92.9818 run3.mat -1 -1 1036 1193236 1196051 +2436144 2450230 14087 10749668.8926 10750373.6542 -8.2432 -37.0201 93.2046 run3.mat -1 -1 1037 1238188 1245231 +2450551 2471233 20683 10750389.5832 10751423.536 -9.8956 -37.0217 92.6689 run3.mat -1 -1 1037 1245391 1255733 +2471539 2492231 20693 10751438.8419 10752475.6559 -11.5441 -37.021 92.553 run3.mat -1 -1 1037 1255886 1266232 +2492543 2513231 20689 10752491.1351 10753523.3795 -13.1902 -37.0208 92.6331 run3.mat -1 -1 1037 1266388 1276733 +2513539 2531935 18397 10753538.9068 10754460.396 -14.8456 -37.0216 92.7694 run3.mat -1 -1 1037 1276887 1286085 +2616199 2617510 1312 10758670.6895 10758736.3761 -14.8408 -37.0238 96.7774 run3.mat -1 -1 1038 1328219 1328875 +2617816 2638472 20657 10758751.8026 10759787.6607 -16.4912 -37.0214 92.6645 run3.mat -1 -1 1038 1329028 1339356 +2638783 2659475 20693 10759803.2137 10760836.8276 -18.1395 -37.0202 92.5106 run3.mat -1 -1 1038 1339511 1349858 +2659788 2680471 20684 10760852.607 10761886.13 -19.7842 -37.0212 92.6593 run3.mat -1 -1 1038 1350015 1360356 +2680779 2701454 20676 10761901.5332 10762934.0024 -21.4402 -37.0206 92.6865 run3.mat -1 -1 1038 1360510 1370848 +2701760 2711975 10216 10762949.184 10763459.9996 -23.0899 -37.0214 92.8837 run3.mat -1 -1 1038 1371001 1376109 +2796134 2805813 9680 10767671.8786 10768155.9471 -23.0956 -37.0218 93.721 run3.mat -1 -1 1039 1418191 1423030 +2806121 2826831 20711 10768171.3535 10769203.768 -24.7404 -37.0201 92.5062 run3.mat -1 -1 1039 1423184 1433540 +2827139 2847813 20675 10769219.0488 10770254.1739 -26.393 -37.0187 92.5706 run3.mat -1 -1 1039 1433694 1444031 +2848120 2868792 20673 10770269.6539 10771301.8546 -28.039 -37.0198 92.6462 run3.mat -1 -1 1039 1444185 1454521 +2869098 2889773 20676 10771317.2811 10772350.4375 -29.692 -37.0205 92.6846 run3.mat -1 -1 1039 1454674 1465012 +2890078 2891974 1897 10772365.5724 10772459.6574 -31.3326 -37.0207 93.0251 run3.mat -1 -1 1039 1465164 1466112 +2976254 2994112 17859 10776676.2525 10777568.5191 -31.339 -37.0221 92.8993 run3.mat -1 -1 1040 1508254 1517185 +2994427 3015114 20688 10777584.3993 10778618.2489 -32.9836 -37.0207 92.5677 run3.mat -1 -1 1040 1517341 1527685 +3015420 3036101 20682 10778633.4304 10779669.372 -34.6351 -37.021 92.6298 run3.mat -1 -1 1040 1527838 1538179 +3036412 3057088 20677 10779684.925 10780719.03 -36.2834 -37.0207 92.6259 run3.mat -1 -1 1040 1538335 1548673 +3057396 3072054 14659 10780734.4332 10781466.3001 -37.936 -37.0201 92.8064 run3.mat -1 -1 1040 1548827 1556157 +3156183 3161313 5131 10785672.3685 10785928.3656 -37.9307 -37.0181 94.4948 run3.mat -1 -1 1041 1598223 1600788 +3161620 3182333 20714 10785943.8425 10786980.0393 -39.5807 -37.0194 92.5464 run3.mat -1 -1 1041 1600942 1611298 +3182641 3203336 20696 10786995.5666 10788031.8955 -41.232 -37.0219 92.6123 run3.mat -1 -1 1041 1611452 1621800 +3203642 3224314 20673 10788047.3251 10789077.5658 -42.8766 -37.0203 92.547 run3.mat -1 -1 1041 1621953 1632290 +3224620 3245296 20677 10789092.8014 10790127.196 -44.5287 -37.0203 92.7612 run3.mat -1 -1 1041 1632443 1642781 +3245602 3252094 6493 10790142.6257 10790467.848 -46.174 -37.0232 92.8952 run3.mat -1 -1 1041 1642934 1646180 +3336368 3349573 13206 10794681.9593 10795341.1331 -46.1795 -37.0194 93.1478 run3.mat -1 -1 1042 1688319 1694922 +3349894 3370575 20682 10795357.3125 10796393.4628 -47.8297 -37.021 92.4976 run3.mat -1 -1 1042 1695083 1705424 +3370882 3391556 20675 10796408.8157 10797441.5574 -49.4792 -37.0211 92.5706 run3.mat -1 -1 1042 1705577 1715914 +3391862 3412575 20714 10797456.9839 10798491.9823 -51.127 -37.0194 92.5521 run3.mat -1 -1 1042 1716067 1726424 +3412882 3432133 19252 10798507.3355 10799469.1195 -52.7822 -37.0194 92.7437 run3.mat -1 -1 1042 1726578 1736204 +3516430 3516993 564 10803684.3485 10803712.2806 -52.7721 -37.0215 103.8979 run3.mat -1 -1 1043 1778354 1778636 +3517311 3537956 20646 10803728.0576 10804761.1518 -54.4286 -37.0205 92.7148 run3.mat -1 -1 1043 1778795 1789118 +3538262 3558936 20675 10804776.5783 10805810.9464 -56.0784 -37.0205 92.5835 run3.mat -1 -1 1043 1789271 1799608 +3559243 3579935 20693 10805826.2996 10806862.2064 -57.7299 -37.0208 92.6128 run3.mat -1 -1 1043 1799762 1810108 +3580241 3600898 20658 10806877.5093 10807909.1754 -59.3764 -37.0204 92.5947 run3.mat -1 -1 1043 1810261 1820590 +3601207 3612213 11007 10807924.7532 10808474.4782 -61.0244 -37.0223 92.8017 run3.mat -1 -1 1043 1820745 1826248 +3698331 3707155 8825 10812781.0633 10813222.2862 -61.0266 -37.0228 93.7753 run3.mat -1 -1 1044 1869309 1873721 +3707462 3728157 20696 10813237.5814 10814270.7898 -62.6746 -37.0216 92.5233 run3.mat -1 -1 1044 1873875 1884222 +3728463 3749137 20675 10814285.9714 10815321.4982 -64.3199 -37.0207 92.5921 run3.mat -1 -1 1044 1884375 1894713 +3749445 3770147 20703 10815336.8466 10816370.3126 -65.9718 -37.0194 92.6502 run3.mat -1 -1 1044 1894867 1905218 +3770457 3791119 20663 10816385.8191 10817421.2175 -67.6198 -37.021 92.8355 run3.mat -1 -1 1044 1905373 1915705 +3791425 3794233 2809 10817436.5205 10817576.9475 -69.2589 -37.0252 92.5858 run3.mat -1 -1 1044 1915858 1917262 +3878251 3895159 16909 10821779.0737 10822623.3799 -69.2726 -37.0202 92.9197 run3.mat -1 -1 1045 1959272 1967727 +3895470 3916177 20708 10822638.8126 10823674.1441 -70.9164 -37.0207 92.5767 run3.mat -1 -1 1045 1967882 1978236 +3916486 3937158 20673 10823689.4776 10824723.0976 -72.5705 -37.0206 92.63 run3.mat -1 -1 1045 1978391 1988728 +3937465 3958159 20695 10824738.3288 10825770.4326 -74.2181 -37.0215 92.6413 run3.mat -1 -1 1045 1988881 1999229 +3958468 3974051 15584 10825785.8856 10826565.6705 -75.8674 -37.0187 92.8942 run3.mat -1 -1 1045 1999383 2007175 +4058302 4062397 4096 10830780.5354 10830983.7249 -75.8701 -37.0242 94.0835 run3.mat -1 -1 1046 2049302 2051350 +4062717 4083419 20703 10830999.6042 10832036.7975 -77.5168 -37.0208 92.4945 run3.mat -1 -1 1046 2051510 2061861 +4083728 4104400 20673 10832052.131 10833083.8258 -79.1717 -37.0209 92.6114 run3.mat -1 -1 1046 2062015 2072352 +4104710 4125398 20689 10833099.2058 10834135.5975 -80.8187 -37.0203 92.6242 run3.mat -1 -1 1046 2072507 2082851 +4125705 4146379 20675 10834150.9321 10835182.7662 -82.4672 -37.0203 92.7098 run3.mat -1 -1 1046 2083004 2093342 +4146686 4154072 7387 10835198.0004 10835565.7841 -82.4701 -35.3371 92.7595 run3.mat -1 -1 1046 2093496 2097189 +4238389 4250804 12416 10839784.8129 10840404.5503 -82.4692 -35.3376 93.3968 run3.mat -1 -1 1047 2139350 2145557 +4251124 4271805 20682 10840420.5537 10841452.8615 -80.8197 -35.3367 92.5856 run3.mat -1 -1 1047 2145717 2156058 +4272121 4292799 20679 10841468.6646 10842503.5424 -79.1709 -35.3369 92.5669 run3.mat -1 -1 1047 2156216 2166556 +4293107 4313784 20678 10842519.0698 10843555.3505 -77.5178 -35.3383 92.5579 run3.mat -1 -1 1047 2166710 2177048 +4314102 4334151 20050 10843571.2566 10844572.0288 -75.8678 -35.3371 92.7951 run3.mat -1 -1 1047 2177207 2187233 +4418492 4439082 20591 10848788.9607 10849819.4253 -74.2202 -35.3365 92.8173 run3.mat -1 -1 1048 2229405 2239700 +4439388 4460061 20674 10849834.6676 10850869.6511 -72.569 -35.337 92.6054 run3.mat -1 -1 1048 2239853 2250190 +4460368 4481064 20697 10850885.1311 10851918.3817 -70.9174 -35.3362 92.6923 run3.mat -1 -1 1048 2250344 2260692 +4481379 4502060 20682 10851934.2619 10852966.7487 -69.2681 -35.3367 92.6527 run3.mat -1 -1 1048 2260850 2271191 +4502366 4514231 11866 10852982.1783 10853576.4308 -67.6234 -35.337 92.7489 run3.mat -1 -1 1048 2271344 2277276 +4598269 4606229 7961 10857777.825 10858175.9305 -67.6188 -35.3361 93.7203 run3.mat -1 -1 1049 2319297 2323278 +4606552 4627223 20672 10858191.9587 10859227.4965 -65.9724 -35.337 92.5843 run3.mat -1 -1 1049 2323439 2333775 +4627527 4648220 20694 10859242.6481 10860275.8507 -64.3185 -35.3378 92.6185 run3.mat -1 -1 1049 2333927 2344273 +4648526 4669199 20674 10860291.2804 10861324.9164 -62.6719 -35.3368 92.6401 run3.mat -1 -1 1049 2344426 2354764 +4669509 4690166 20658 10861340.4197 10862372.5132 -61.0239 -35.3375 92.6925 run3.mat -1 -1 1049 2354919 2365248 +4690476 4694052 3577 10862387.8932 10862565.8646 -59.3701 -35.3349 92.7507 run3.mat -1 -1 1049 2365403 2367191 +4778284 4794588 16305 10866779.4251 10867593.5087 -59.3776 -35.3365 93.1002 run3.mat -1 -1 1050 2409309 2417461 +4794905 4815544 20640 10867609.4929 10868643.0742 -57.7257 -35.3364 92.6478 run3.mat -1 -1 1050 2417619 2427940 +4815855 4836541 20687 10868658.6272 10869691.8363 -56.0793 -35.3372 92.6645 run3.mat -1 -1 1050 2428095 2438439 +4836847 4857539 20693 10869707.0179 10870740.5343 -54.431 -35.3366 92.7179 run3.mat -1 -1 1050 2438592 2448938 +4857847 4874051 16205 10870755.8793 10871568.2084 -52.7807 -35.3363 92.8277 run3.mat -1 -1 1050 2449092 2457194 +4958097 4961627 3531 10875767.6031 10875946.9215 -52.7804 -35.3391 95.0986 run3.mat -1 -1 1051 2499219 2500984 +4961947 4982622 20676 10875963.1778 10876996.192 -51.1323 -35.3373 92.5551 run3.mat -1 -1 1051 2501144 2511482 +4982928 5003610 20683 10877011.4949 10878046.8389 -49.4784 -35.3365 92.6463 run3.mat -1 -1 1051 2511635 2521977 +5003921 5024621 20701 10878062.2685 10879097.4005 -47.8307 -35.3366 92.5842 run3.mat -1 -1 1051 2522132 2532483 +5024926 5045586 20661 10879112.5324 10880144.2183 -46.1807 -35.3367 92.7081 run3.mat -1 -1 1051 2532635 2542966 +5045893 5053910 8018 10880159.5713 10880560.5044 -44.5326 -35.3379 92.8753 run3.mat -1 -1 1051 2543119 2547128 +5137931 5149629 11699 10884761.8202 10885346.8253 -44.5303 -35.3356 93.0204 run3.mat -1 -1 1052 2589140 2594994 +5149942 5170624 20683 10885362.6079 10886397.2993 -42.8803 -35.3369 92.5344 run3.mat -1 -1 1052 2595146 2605487 +5170929 5191620 20692 10886412.6785 10887445.7443 -41.2287 -35.3368 92.5723 run3.mat -1 -1 1052 2605640 2615985 +5191929 5212603 20675 10887461.0778 10888495.5072 -39.5823 -35.3363 92.6501 run3.mat -1 -1 1052 2616140 2626478 +5212908 5233564 20657 10888510.8832 10889542.8676 -37.9323 -35.3362 92.8093 run3.mat -1 -1 1052 2626630 2636959 +5317912 5337903 19992 10893760.05 10894759.8305 -36.2843 -35.3363 93.017 run3.mat -1 -1 1053 2679135 2689131 +5338217 5358902 20686 10894775.5336 10895810.4939 -34.6323 -35.3366 92.6243 run3.mat -1 -1 1053 2689288 2699631 +5359207 5379900 20694 10895825.6259 10896858.4877 -32.983 -35.3366 92.6998 run3.mat -1 -1 1053 2699783 2710130 +5380209 5400881 20673 10896873.7506 10897911.3354 -31.3351 -35.3366 92.6735 run3.mat -1 -1 1053 2710285 2720621 +5401188 5413790 12603 10897926.5666 10898554.4678 -29.688 -35.3374 92.7798 run3.mat -1 -1 1053 2720775 2727076 +5497847 5505046 7200 10902757.2481 10903118.1867 -29.6878 -35.3365 93.9023 run3.mat -1 -1 1054 2769106 2772706 +5505366 5526043 20678 10903134.2822 10904168.0687 -28.0399 -35.3362 92.5841 run3.mat -1 -1 1054 2772866 2783205 +5526348 5547041 20694 10904183.2006 10905218.518 -26.3898 -35.3369 92.679 run3.mat -1 -1 1054 2783357 2793704 +5547349 5568022 20674 10905233.9212 10906266.8238 -24.7413 -35.3368 92.5589 run3.mat -1 -1 1054 2793858 2804195 +5568329 5588992 20664 10906282.1768 10907317.027 -23.0923 -35.3371 92.6606 run3.mat -1 -1 1054 2804348 2814681 +5589302 5593610 4309 10907332.6552 10907547.3461 -21.4363 -35.3345 92.8061 run3.mat -1 -1 1054 2814836 2816990 +5677898 5693326 15429 10911758.1366 10912531.5822 -21.4405 -35.3371 93.1263 run3.mat -1 -1 1055 2859135 2866850 +5693636 5714306 20671 10912547.2103 10913580.8545 -19.792 -35.3367 92.5892 run3.mat -1 -1 1055 2867005 2877341 +5714614 5735304 20691 10913596.1353 10914631.9048 -18.1418 -35.3359 92.6664 run3.mat -1 -1 1055 2877495 2887840 +5735611 5756303 20693 10914647.3817 10915682.4516 -16.4923 -35.3375 92.6262 run3.mat -1 -1 1055 2887994 2898340 +5756609 5773689 17081 10915697.7546 10916550.9913 -14.8453 -35.3375 92.8048 run3.mat -1 -1 1055 2898493 2907033 +5857712 5860330 2619 10920751.0623 10920880.9492 -14.836 -35.3353 95.1991 run3.mat -1 -1 1056 2949047 2950356 +5860651 5881323 20673 10920896.875 10921930.9608 -13.1934 -35.3375 92.5118 run3.mat -1 -1 1056 2950516 2960852 +5881630 5902327 20698 10921946.3728 10922981.6809 -11.5436 -35.3368 92.6295 run3.mat -1 -1 1056 2961006 2971355 +5902633 5923305 20673 10922997.1105 10924032.8253 -9.8945 -35.3377 92.632 run3.mat -1 -1 1056 2971508 2981844 +5923612 5944286 20675 10924048.1813 10925079.3192 -8.2443 -35.337 92.6199 run3.mat -1 -1 1056 2981998 2992335 +5944592 5953489 8898 10925094.5038 10925539.9544 -6.594 -35.3354 92.7133 run3.mat -1 -1 1056 2992488 2996937 +6037750 6048587 10838 10929751.7199 10930294.9234 -6.5907 -35.3376 93.4022 run3.mat -1 -1 1057 3039070 3044488 +6048898 6069589 20692 10930310.353 10931343.8717 -4.9458 -35.3363 92.5507 run3.mat -1 -1 1057 3044644 3054990 +6069895 6090583 20689 10931359.1746 10932395.6515 -3.2923 -35.3366 92.6553 run3.mat -1 -1 1057 3055143 3065487 +6090890 6111565 20676 10932410.8827 10933446.2351 -1.6504 -35.3368 92.6277 run3.mat -1 -1 1057 3065641 3075979 +6111871 6132528 20658 10933461.5415 10934492.6946 7.1287e-05 -35.3369 92.7468 run3.mat -1 -1 1057 3076132 3086461 +6132835 6133569 735 10934507.9258 10934544.3417 1.6485 -35.3384 92.5062 run3.mat -1 -1 1057 3086614 3086981 +6217684 6236790 19107 10938748.556 10939705.8378 1.6449 -35.3369 93.0112 run3.mat -1 -1 1058 3129040 3138594 +6237102 6257777 20676 10939721.57 10940755.6042 3.2938 -35.336 92.4912 run3.mat -1 -1 1058 3138750 3149088 +6258090 6278766 20677 10940771.1362 10941804.917 4.9417 -35.3378 92.627 run3.mat -1 -1 1058 3149244 3159583 +6279072 6299746 20675 10941820.0986 10942851.54 6.5903 -35.3368 92.612 run3.mat -1 -1 1058 3159736 3170073 +6300052 6313448 13397 10942866.9665 10943538.0094 8.2397 -35.3371 92.6849 run3.mat -1 -1 1058 3170226 3176925 +6397693 6403987 6295 10947750.4038 10948066.5838 8.2444 -35.3383 93.7778 run3.mat -1 -1 1059 3219049 3222196 +6404307 6424986 20680 10948082.46 10949115.3729 9.8911 -35.3367 92.4829 run3.mat -1 -1 1059 3222356 3232696 +6425293 6445991 20699 10949130.9831 10950165.2384 11.5415 -35.3366 92.6703 run3.mat -1 -1 1059 3232849 3243199 +6446303 6466966 20664 10950180.9706 10951215.8944 13.1912 -35.3372 92.5715 run3.mat -1 -1 1059 3243355 3253687 +6467273 6487929 20657 10951231.2474 10952262.3105 14.843 -35.3368 92.7589 run3.mat -1 -1 1059 3253840 3264169 +6488232 6493468 5237 10952277.4663 10952539.3592 16.4877 -35.3369 92.807 run3.mat -1 -1 1059 3264320 3266939 +6579632 6594113 14482 10956847.5408 10957571.2636 16.4952 -35.3365 93.0077 run3.mat -1 -1 1060 3310022 3317263 +6594430 6615109 20680 10957587.1806 10958623.0093 18.1398 -35.3367 92.6331 run3.mat -1 -1 1060 3317421 3327762 +6615416 6636088 20673 10958638.2405 10959671.2356 19.7924 -35.3371 92.6357 run3.mat -1 -1 1060 3327915 3338252 +6636394 6657085 20692 10959686.5386 10960719.3465 21.437 -35.337 92.5675 run3.mat -1 -1 1060 3338405 3348750 +6657394 6675388 17995 10960734.7997 10961636.779 23.0903 -35.3377 92.7832 run3.mat -1 -1 1060 3348905 3357903 +6759468 6761215 1748 10965840.4266 10965929.2759 23.093 -35.3355 95.7991 run3.mat -1 -1 1061 3399944 3400818 +6761528 6782207 20680 10965945.1945 10966978.1427 24.7383 -35.3372 92.6418 run3.mat -1 -1 1061 3400974 3411314 +6782515 6803186 20672 10966993.5487 10968025.455 26.3857 -35.3375 92.6357 run3.mat -1 -1 1061 3411468 3421804 +6803493 6824169 20677 10968040.9351 10969076.2615 28.037 -35.3369 92.6417 run3.mat -1 -1 1061 3421958 3432296 +6824474 6845170 20697 10969091.3994 10970125.4524 29.6837 -35.3364 92.6557 run3.mat -1 -1 1061 3432448 3442797 +6845476 6855268 9793 10970140.5234 10970629.3517 31.3326 -35.3379 92.8202 run3.mat -1 -1 1061 3442950 3447847 +6939516 6949449 9934 10974842.212 10975340.9456 31.3312 -35.3374 93.3334 run3.mat -1 -1 1062 3489972 3494939 +6949756 6970447 20692 10975356.1798 10976388.6392 32.9815 -35.3373 92.4247 run3.mat -1 -1 1062 3495092 3505438 +6970756 6991456 20701 10976404.217 10977440.4312 34.6315 -35.3366 92.5932 run3.mat -1 -1 1062 3505593 3515944 +6991769 7012428 20660 10977456.0842 10978488.8974 36.282 -35.3372 92.5215 run3.mat -1 -1 1062 3516100 3526430 +7012737 7033389 20653 10978504.4751 10979536.6529 37.9316 -35.3365 92.6558 run3.mat -1 -1 1062 3526584 3536911 +7033696 7035327 1632 10979552.0088 10979633.5902 39.5714 -35.3369 92.2787 run3.mat -1 -1 1062 3537064 3537880 +7119434 7137678 18245 10983836.3382 10984751.344 39.5824 -35.3381 92.9341 run3.mat -1 -1 1063 3579935 3589057 +7137991 7158669 20679 10984766.9973 10985799.2761 41.2296 -35.3366 92.5903 run3.mat -1 -1 1063 3589214 3599554 +7158975 7179668 20694 10985814.7026 10986849.9032 42.879 -35.3377 92.6843 run3.mat -1 -1 1063 3599707 3610053 +7179974 7200648 20675 10986865.3328 10987899.5987 44.5328 -35.3367 92.6098 run3.mat -1 -1 1063 3610206 3620544 +7200958 7215207 14250 10987915.2269 10988628.1302 46.1783 -35.3366 92.868 run3.mat -1 -1 1063 3620699 3627824 +7299450 7304892 5443 10992840.7122 10993111.2646 46.1817 -35.3399 93.7917 run3.mat -1 -1 1064 3669947 3672673 +7305203 7325890 20688 10993126.8179 10994162.3954 47.8299 -35.3371 92.4736 run3.mat -1 -1 1064 3672824 3683168 +7326197 7346889 20693 10994177.8724 10995211.6711 49.476 -35.337 92.5878 run3.mat -1 -1 1064 3683321 3693667 +7347196 7367887 20692 10995227.0275 10996260.0911 51.1325 -35.3365 92.5722 run3.mat -1 -1 1064 3693821 3704167 +7368195 7388829 20635 10996275.3719 10997307.3372 52.7754 -35.3376 92.6969 run3.mat -1 -1 1064 3704321 3714638 +7389151 7395206 6056 10997323.5736 10997627.4927 54.4288 -35.337 92.6273 run3.mat -1 -1 1064 3714799 3717827 +7479271 7492979 13709 11001831.6083 11002515.1948 54.4259 -35.3362 93.2799 run3.mat -1 -1 1065 3759862 3766716 +7493296 7501712 8417 11002531.0479 11002952.6966 56.0697 -35.3366 92.4574 run3.mat -1 -1 1065 3766874 3771083 +7501964 7513975 12012 11002965.199 11003565.2597 56.0751 -35.3365 92.6335 run3.mat -1 -1 1065 3771209 3777214 +7514282 7534970 20689 11003580.6161 11004614.7327 57.7244 -35.3361 92.585 run3.mat -1 -1 1065 3777367 3787712 +7535275 7555951 20677 11004629.8647 11005665.5582 59.3747 -35.3371 92.6129 run3.mat -1 -1 1065 3787865 3798203 +7556257 7575086 18830 11005680.7398 11006620.9343 61.0184 -35.3375 92.75 run3.mat -1 -1 1065 3798356 3807771 +7659135 7660062 928 11010822.4312 11010869.1739 60.9975 -35.3434 100.3274 run3.mat -1 -1 1066 3849797 3850261 +7660376 7681052 20677 11010885.0069 11011919.2651 62.6664 -35.3366 92.6103 run3.mat -1 -1 1066 3850418 3860756 +7681359 7702031 20673 11011934.4963 11012967.521 64.3197 -35.3365 92.6137 run3.mat -1 -1 1066 3860910 3871247 +7702338 7723031 20694 11012982.8769 11014019.7386 65.9715 -35.3366 92.6254 run3.mat -1 -1 1066 3871400 3881747 +7723338 7744013 20676 11014035.183 11015068.3546 67.6176 -35.3369 92.68 run3.mat -1 -1 1066 3881901 3892238 +7744320 7754946 10627 11015083.8346 11015613.6027 69.2709 -35.3376 92.9056 run3.mat -1 -1 1066 3892392 3897705 +7839223 7848337 9115 11019830.8543 11020286.3833 69.2714 -35.335 93.3965 run3.mat -1 -1 1067 3939845 3944402 +7848651 7869331 20681 11020302.2131 11021334.7038 70.9183 -35.3366 92.571 run3.mat -1 -1 1067 3944559 3954900 +7869636 7890317 20682 11021349.9567 11022383.714 72.5702 -35.3372 92.6494 run3.mat -1 -1 1067 3955053 3965394 +7890632 7911311 20680 11022399.3421 11023432.2706 74.2214 -35.3364 92.6207 run3.mat -1 -1 1067 3965551 3975891 +7911617 7932273 20657 11023447.5736 11024481.4576 75.8675 -35.3378 92.7972 run3.mat -1 -1 1067 3976044 3986373 +7932579 7935026 2448 11024496.6392 11024618.5821 77.5171 -35.3376 93.1105 run3.mat -1 -1 1067 3986526 3987749 +8019082 8036500 17419 11028821.4693 11029693.0962 77.5153 -35.3376 93.1395 run3.mat -1 -1 1068 4029779 4038488 +8036820 8057471 20652 11029709.2285 11030743.1764 79.1682 -35.3374 92.6322 run3.mat -1 -1 1068 4038648 4048974 +8057779 8078471 20693 11030758.5793 11031791.4675 80.818 -35.3367 92.6722 run3.mat -1 -1 1068 4049128 4059474 +8078782 8099462 20681 11031807.0235 11032840.3321 82.4642 -35.3368 92.7043 run3.mat -1 -1 1068 4059630 4069971 +8099776 8114865 15090 11032856.0381 11033612.6453 82.4647 -33.657 92.6964 run3.mat -1 -1 1068 4070128 4077673 +8199081 8203696 4616 11037821.0861 11038052.8774 82.4585 -33.6571 94.3056 run3.mat -1 -1 1069 4119782 4122090 +8204022 8224717 20696 11038069.3154 11039103.7857 80.8136 -33.6568 92.5367 run3.mat -1 -1 1069 4122253 4132601 +8225023 8245696 20674 11039119.0921 11040154.9475 79.1662 -33.657 92.6055 run3.mat -1 -1 1069 4132754 4143091 +8246004 8266697 20694 11040170.3323 11041203.2674 77.5123 -33.6566 92.6529 run3.mat -1 -1 1069 4143245 4153592 +8267002 8287656 20655 11041218.5233 11042250.1738 75.8638 -33.6565 92.6783 run3.mat -1 -1 1069 4153744 4164072 +8287965 8294865 6901 11042265.7516 11042612.0809 74.2122 -33.6569 92.8721 run3.mat -1 -1 1069 4164226 4167676 +8379167 8391976 12810 11046826.4592 11047465.9104 74.2182 -33.6572 93.0894 run3.mat -1 -1 1070 4209829 4216234 +8392280 8412978 20699 11047481.1162 11048516.3149 72.5705 -33.6572 92.6175 run3.mat -1 -1 1070 4216386 4226736 +8413285 8433977 20693 11048531.6678 11049567.5541 70.9169 -33.6571 92.536 run3.mat -1 -1 1070 4226889 4237235 +8434284 8454958 20675 11049583.0311 11050616.5268 69.2714 -33.6574 92.6265 run3.mat -1 -1 1070 4237389 4247726 +8455267 8474945 19679 11050631.8603 11051615.7592 67.6195 -33.657 92.7635 run3.mat -1 -1 1070 4247881 4257720 +8559235 8559397 163 11055830.125 11055838.2267 67.6282 -33.6547 110.1083 run3.mat -1 -1 1071 4299867 4299948 +8559717 8580339 20623 11055854.23 11056886.5838 65.9753 -33.6565 92.6786 run3.mat -1 -1 1071 4300108 4310420 +8580648 8601348 20701 11056902.0367 11057937.243 64.321 -33.6568 92.5103 run3.mat -1 -1 1071 4310574 4320925 +8601661 8622339 20679 11057952.8962 11058985.0835 62.6713 -33.6581 92.6133 run3.mat -1 -1 1071 4321081 4331420 +8622646 8643317 20672 11059000.5604 11060035.7578 61.0237 -33.6571 92.6133 run3.mat -1 -1 1071 4331574 4341910 +8643626 8655003 11378 11060051.0913 11060616.778 59.3755 -33.6579 92.8491 run3.mat -1 -1 1071 4342064 4347754 +8739095 8747397 8303 11064822.2077 11065236.7906 59.3703 -33.6574 93.5661 run3.mat -1 -1 1072 4389801 4393952 +8747728 8768401 20674 11065253.3957 11066287.6333 57.7248 -33.6571 92.5019 run3.mat -1 -1 1072 4394118 4404455 +8768711 8789400 20690 11066303.2646 11067338.2392 56.0694 -33.6572 92.6417 run3.mat -1 -1 1072 4404610 4414955 +8789708 8810381 20674 11067353.7665 11068386.4042 54.4237 -33.6573 92.4878 run3.mat -1 -1 1072 4415109 4425446 +8810689 8831364 20676 11068401.5738 11069437.7443 52.7736 -33.6569 92.6873 run3.mat -1 -1 1072 4425600 4435937 +8831672 8834864 3193 11069453.2747 11069612.2858 51.1269 -33.6585 92.9274 run3.mat -1 -1 1072 4436091 4437688 +8919149 8935697 16549 11073825.5601 11074654.282 51.1274 -33.6576 92.9609 run3.mat -1 -1 1073 4479832 4488107 +8936021 8956698 20678 11074670.3566 11075702.1644 49.4722 -33.6578 92.6385 run3.mat -1 -1 1073 4488269 4498608 +8957005 8977688 20684 11075717.3986 11076752.1613 47.8244 -33.6572 92.5317 run3.mat -1 -1 1073 4498761 4509103 +8978005 8998682 20678 11076768.0806 11077804.2203 46.1776 -33.657 92.6446 run3.mat -1 -1 1073 4509261 4519601 +8998988 9014944 15957 11077819.4019 11078616.953 44.5305 -33.657 92.8408 run3.mat -1 -1 1073 4519754 4527732 +9099165 9102879 3715 11082828.7706 11083013.0333 44.5338 -33.6578 94.3418 run3.mat -1 -1 1074 4569844 4571701 +9103203 9123900 20698 11083029.108 11084065.8434 42.8799 -33.6566 92.5856 run3.mat -1 -1 1074 4571863 4582212 +9124206 9144880 20675 11084081.025 11085113.1079 41.2311 -33.6573 92.6129 run3.mat -1 -1 1074 4582365 4592703 +9145190 9165859 20670 11085128.6112 11086160.3867 39.5826 -33.6569 92.6538 run3.mat -1 -1 1074 4592858 4603193 +9166166 9186841 20676 11086175.7426 11087210.7814 37.9342 -33.6571 92.6193 run3.mat -1 -1 1074 4603346 4613684 +9187148 9194943 7796 11087226.2583 11087615.1976 36.2896 -33.6571 92.914 run3.mat -1 -1 1074 4613838 4617735 +9279241 9291299 12059 11091830.1516 11092434.2791 36.2879 -33.6575 93.3889 run3.mat -1 -1 1075 4659886 4665915 +9291622 9312322 20701 11092450.3073 11093486.4251 34.6354 -33.6573 92.5694 run3.mat -1 -1 1075 4666077 4676427 +9312628 9333304 20677 11093501.7283 11094534.7607 32.9844 -33.6572 92.489 run3.mat -1 -1 1075 4676580 4686918 +9333615 9354281 20667 11094550.3167 11095583.9296 31.336 -33.6567 92.6061 run3.mat -1 -1 1075 4687074 4697408 +9354596 9375043 20448 11095599.6856 11096622.1785 29.6856 -33.6569 92.6584 run3.mat -1 -1 1075 4697565 4707789 +9459312 9479575 20264 11100834.3835 11101847.6824 28.0331 -33.6572 93.0347 run3.mat -1 -1 1076 4749925 4760057 +9479882 9500560 20679 11101862.9166 11102896.7101 26.3844 -33.657 92.6595 run3.mat -1 -1 1076 4760211 4770550 +9500867 9521541 20675 11102912.1662 11103944.5638 24.7353 -33.6568 92.6196 run3.mat -1 -1 1076 4770704 4781041 +9521848 9542540 20693 11103960.0407 11104995.5888 23.09 -33.6574 92.6454 run3.mat -1 -1 1076 4781195 4791541 +9542850 9555083 12234 11105010.9688 11105624.2711 21.4318 -33.6576 92.8084 run3.mat -1 -1 1076 4791696 4797813 +9641173 9648679 7507 11109928.3921 11110302.6204 21.4356 -33.6576 93.658 run3.mat -1 -1 1077 4840860 4844613 +9648986 9669681 20696 11110318.1004 11111352.8547 19.7856 -33.6571 92.5965 run3.mat -1 -1 1077 4844766 4855114 +9669990 9690680 20691 11111368.1882 11112403.3 18.1352 -33.6576 92.6424 run3.mat -1 -1 1077 4855269 4865613 +9690988 9711660 20673 11112418.7 11113452.6048 16.4903 -33.6572 92.5756 run3.mat -1 -1 1077 4865767 4876105 +9711965 9732642 20678 11113467.8607 11114502.0119 14.8416 -33.657 92.7308 run3.mat -1 -1 1077 4876257 4886596 +9732946 9737002 4057 11114517.2148 11114720.0539 13.1874 -33.656 92.7641 run3.mat -1 -1 1077 4886748 4888776 +9821089 9836800 15712 11118922.9032 11119708.1973 13.1922 -33.6572 93.0815 run3.mat -1 -1 1078 4930822 4938678 +9837108 9857802 20695 11119723.622 11120760.3271 11.5409 -33.657 92.6489 run3.mat -1 -1 1078 4938832 4949179 +9858108 9878800 20693 11120775.5117 11121809.3101 9.8945 -33.6574 92.5858 run3.mat -1 -1 1078 4949332 4959679 +9879107 9899802 20696 11121824.7871 11122859.2356 8.2462 -33.6577 92.6501 run3.mat -1 -1 1078 4959832 4970180 +9900108 9916862 16755 11122874.4171 11123711.3344 6.5951 -33.6572 92.8359 run3.mat -1 -1 1078 4970333 4978711 +10001107 10004119 3013 11127924.6832 11128075.3264 6.5955 -33.6591 95.32 run3.mat -1 -1 1079 5020835 5022341 +10004439 10025120 20682 11128091.3331 11129125.894 4.9445 -33.6575 92.5485 run3.mat -1 -1 1079 5022501 5032842 +10025428 10046121 20694 11129141.1778 11130176.9777 3.2992 -33.6573 92.6021 run3.mat -1 -1 1079 5032996 5043343 +10046430 10067122 20693 11130192.4307 11131225.288 1.6502 -33.6574 92.6738 run3.mat -1 -1 1079 5043497 5053844 +10067429 10088099 20671 11131240.6412 11132272.605 0.0008432 -33.657 92.6905 run3.mat -1 -1 1079 5053997 5064333 +10088406 10096862 8457 11132287.8392 11132714.7199 -1.6466 -33.6577 92.808 run3.mat -1 -1 1079 5064486 5068715 +10181140 10192519 11380 11136925.9423 11137497.5599 -1.6465 -33.6576 93.4989 run3.mat -1 -1 1080 5110855 5116545 +10192844 10213502 20659 11137513.9476 11138543.346 -3.2966 -33.6573 92.5101 run3.mat -1 -1 1080 5116707 5127037 +10213810 10234510 20701 11138558.749 11139594.355 -4.9468 -33.6575 92.5466 run3.mat -1 -1 1080 5127191 5137541 +10234822 10255501 20680 11139610.0871 11140645.3435 -6.5971 -33.657 92.6213 run3.mat -1 -1 1080 5137697 5148037 +10255806 10276459 20654 11140660.4755 11141693.1347 -8.2454 -33.6575 92.7079 run3.mat -1 -1 1080 5148190 5158517 +10276768 10276921 154 11141708.7156 11141716.4304 -9.9414 -33.6583 94.9629 run3.mat -1 -1 1080 5158671 5158748 +10361003 10380561 19559 11145920.7035 11146898.1303 -9.8973 -33.6569 92.9058 run3.mat -1 -1 1081 5200791 5210570 +10380881 10401562 20682 11146914.2658 11147947.9735 -11.5464 -33.6573 92.665 run3.mat -1 -1 1081 5210730 5221071 +10401868 10422543 20676 11147963.2767 11148995.9766 -13.1956 -33.6568 92.669 run3.mat -1 -1 1081 5221224 5231562 +10422850 10443527 20678 11149011.2108 11150047.9686 -14.8457 -33.6569 92.6555 run3.mat -1 -1 1081 5231716 5242055 +10443839 10456782 12944 11150063.4479 11150710.6721 -16.4934 -33.6572 92.6884 run3.mat -1 -1 1081 5242211 5248682 +10541033 10547780 6748 11154920.4268 11155259.1881 -16.4907 -33.6589 93.6618 run3.mat -1 -1 1082 5290809 5294183 +10548088 10568801 20714 11155274.7155 11156311.2289 -18.143 -33.6572 92.4744 run3.mat -1 -1 1082 5294337 5304694 +10569109 10589783 20675 11156326.6349 11157361.5554 -19.7895 -33.6582 92.7108 run3.mat -1 -1 1082 5304848 5315186 +10590100 10610784 20685 11157377.3691 11158409.9102 -21.4372 -33.6573 92.6264 run3.mat -1 -1 1082 5315344 5325687 +10611090 10631762 20673 11158425.2131 11159457.8449 -23.0902 -33.6571 92.6587 run3.mat -1 -1 1082 5325840 5336176 +10632069 10636820 4752 11159473.3218 11159711.3331 -24.7402 -33.6575 92.8745 run3.mat -1 -1 1082 5336330 5338705 +10722948 10738000 15053 11164017.4344 11164770.6825 -24.7348 -33.6567 93.1666 run3.mat -1 -1 1083 5381771 5389323 +10738321 10759003 20683 11164786.8685 11165822.3329 -26.3852 -33.6573 92.573 run3.mat -1 -1 1083 5389458 5399800 +10759309 10779984 20676 11165837.8211 11166868.206 -28.0323 -33.6573 92.5439 run3.mat -1 -1 1083 5399953 5410290 +10780292 10800983 20692 11166883.603 11167921.9972 -29.6861 -33.6566 92.6696 run3.mat -1 -1 1083 5410445 5420790 +10801291 10818721 17431 11167937.2811 11168807.175 -31.3371 -33.6575 92.7917 run3.mat -1 -1 1083 5420944 5429660 +10902843 10905234 2392 11173012.687 11173131.4943 -31.3436 -33.6583 96.2362 run3.mat -1 -1 1084 5471723 5472918 +10905544 10926223 20680 11173147.1224 11174182.0197 -32.9858 -33.6577 92.5121 run3.mat -1 -1 1084 5473073 5483413 +10926530 10947224 20695 11174197.1429 11175231.4732 -34.6337 -33.6566 92.5821 run3.mat -1 -1 1084 5483566 5493914 +10947530 10968221 20692 11175246.7764 11176280.3315 -36.2876 -33.6572 92.6281 run3.mat -1 -1 1084 5494067 5504413 +10968529 10989203 20675 11176295.6153 11177331.9439 -37.938 -33.6575 92.6748 run3.mat -1 -1 1084 5504567 5514904 +10989512 10998741 9230 11177347.3972 11177810.0506 -39.5807 -33.6577 92.9619 run3.mat -1 -1 1084 5515059 5519674 +11083052 11093621 10570 11182023.5818 11182552.1377 -39.5866 -33.6584 93.4115 run3.mat -1 -1 1085 5561831 5567116 +11093926 11114618 20693 11182567.3909 11183602.3464 -41.2333 -33.6573 92.5772 run3.mat -1 -1 1085 5567268 5577615 +11114929 11135625 20697 11183617.874 11184654.0081 -42.8798 -33.6575 92.6495 run3.mat -1 -1 1085 5577770 5588119 +11135931 11156602 20672 11184669.311 11185702.3632 -44.5352 -33.6571 92.6006 run3.mat -1 -1 1085 5588272 5598608 +11156911 11177565 20655 11185717.6967 11186749.499 -46.1802 -33.6578 92.7827 run3.mat -1 -1 1085 5598762 5609089 +11177870 11178801 932 11186764.7549 11186811.3228 -47.8388 -33.6566 92.9424 run3.mat -1 -1 1085 5609242 5609708 +11262776 11266063 3288 11191011.092 11191176.2903 -47.828 -33.6581 96.2222 run3.mat -1 -1 1086 5651697 5653341 +11267281 11267683 403 11191236.719 11191256.6634 127.9375 127.9375 0.23634 run3.mat -1 -1 1086 5653950 5654151 +11268361 11268963 603 11191290.3011 11191320.1681 127.9375 127.9375 0.18702 run3.mat -1 -1 1086 5654490 5654791 +11269361 11269363 3 11191339.9141 11191340.0133 127.9375 127.9375 0 run3.mat -1 -1 1086 5654990 5654991 +11269701 11270163 463 11191356.7825 11191379.7037 127.9375 127.9375 0.2987 run3.mat -1 -1 1086 5655160 5655391 +265070 285477 20408 5980028.5033 5981050.7415 82.4614 40.3856 92.8854 run30.mat -1 -1 1088 154866 165070 +285783 306476 20694 5981065.7938 5982100.2649 80.8142 40.386 92.5938 run30.mat -1 -1 1088 165223 175570 +306784 327478 20695 5982115.6678 5983149.5628 79.1653 40.3858 92.5765 run30.mat -1 -1 1088 175724 186071 +327784 348496 20713 5983164.7444 5984199.7641 77.5121 40.3853 92.5258 run30.mat -1 -1 1088 186224 196580 +348802 360846 12045 5984215.07 5984817.6472 75.8672 40.3854 92.4459 run30.mat -1 -1 1088 196733 202756 +446957 454774 7818 5989123.754 5989514.2818 75.866 40.3854 93.8629 run30.mat -1 -1 1089 245813 249686 +455081 475794 20714 5989529.513 5990565.4761 74.219 40.3852 92.5098 run30.mat -1 -1 1089 249875 260232 +476104 496776 20673 5990581.1043 5991612.6302 72.5685 40.3853 92.5832 run30.mat -1 -1 1089 260387 270724 +497084 517776 20693 5991628.0362 5992663.9385 70.9179 40.3863 92.5474 run30.mat -1 -1 1089 270878 281224 +518084 538762 20679 5992679.2223 5993712.4343 69.2725 40.3859 92.5846 run30.mat -1 -1 1089 281378 291718 +539070 542766 3697 5993727.8373 5993912.6728 67.6127 40.3861 92.7363 run30.mat -1 -1 1089 291872 293720 +627042 643058 16017 5998126.8516 5998928.7686 67.6242 40.3857 92.9211 run30.mat -1 -1 1090 335859 343868 +643386 664077 20692 5998945.0417 5999979.9062 65.9727 40.3859 92.5686 run30.mat -1 -1 1090 344032 354378 +664384 685066 20683 5999995.3831 6001030.5252 64.3247 40.3856 92.5316 run30.mat -1 -1 1090 354532 364873 +685386 706075 20690 6001046.5314 6002079.4989 62.6727 40.3854 92.6597 run30.mat -1 -1 1090 365033 375378 +706384 722826 16443 6002094.8293 6002916.4961 61.0252 40.3858 92.7035 run30.mat -1 -1 1090 375533 383754 +806902 810156 3255 6007122.8509 6007283.048 61.029 40.3857 93.9143 run30.mat -1 -1 1091 425794 427420 +810490 831179 20690 6007299.4809 6008334.7618 59.3718 40.3859 92.5721 run30.mat -1 -1 1091 427587 437933 +831486 852161 20676 6008350.2388 6009383.4063 57.7255 40.3849 92.5794 run30.mat -1 -1 1091 438086 448424 +852468 873178 20711 6009398.7622 6010434.8927 56.0695 40.3855 92.5299 run30.mat -1 -1 1091 448578 458933 +873486 894158 20673 6010450.42 6011484.4995 54.422 40.3856 92.6136 run30.mat -1 -1 1091 459087 469423 +894466 902667 8202 6011500.0268 6011910.9917 52.7731 40.3856 92.6074 run30.mat -1 -1 1091 469577 473678 +986978 998499 11522 6016126.8768 6016703.2147 52.7733 40.3854 92.9872 run30.mat -1 -1 1092 515836 521596 +998806 1019499 20694 6016718.5711 6017750.1738 51.1268 40.386 92.5391 run30.mat -1 -1 1092 521750 532097 +1019806 1040503 20698 6017765.6507 6018802.0239 49.4748 40.3853 92.5311 run30.mat -1 -1 1092 532250 542599 +1040809 1061501 20693 6018817.3268 6019852.4906 47.824 40.3859 92.581 run30.mat -1 -1 1092 542752 553099 +1061810 1082462 20653 6019868.0684 6020899.4438 46.1793 40.3855 92.6245 run30.mat -1 -1 1092 553253 563580 +1167036 1186800 19765 6025127.8549 6026116.0282 44.5308 40.3856 92.8479 run30.mat -1 -1 1093 605868 615750 +1187107 1207806 20700 6026131.502 6027167.2899 42.8775 40.3855 92.4481 run30.mat -1 -1 1093 615904 626254 +1208125 1228819 20695 6027183.2429 6028218.2497 41.2289 40.3859 92.5749 run30.mat -1 -1 1093 626414 636762 +1229129 1249804 20676 6028233.6436 6029266.1718 39.5821 40.3857 92.5521 run30.mat -1 -1 1093 636917 647254 +1250107 1262805 12699 6029281.4502 6029915.9396 37.936 40.3861 92.6681 run30.mat -1 -1 1093 647406 653755 +1346886 1353899 7014 6034120.0396 6034472.4837 37.9319 40.3862 93.7898 run30.mat -1 -1 1094 695797 699304 +1354207 1374923 20717 6034488.1513 6035522.4257 36.2846 40.3859 92.5815 run30.mat -1 -1 1094 699458 709816 +1375229 1395919 20691 6035537.8522 6036573.1182 34.6338 40.386 92.6168 run30.mat -1 -1 1094 709969 720315 +1396232 1416921 20690 6036588.5369 6037622.8227 32.9844 40.3859 92.5145 run30.mat -1 -1 1094 720471 730817 +1417229 1437898 20670 6037638.3501 6038672.1956 31.3363 40.3853 92.6422 run30.mat -1 -1 1094 730971 741306 +1438207 1442665 4459 6038687.7765 6038911.3311 29.6766 40.3844 92.7464 run30.mat -1 -1 1094 741460 743689 +1526807 1542045 15239 6043117.4856 6043879.34 29.6894 40.3858 92.9307 run30.mat -1 -1 1095 785762 793381 +1542362 1563060 20699 6043895.321 6044929.6111 28.0332 40.386 92.5815 run30.mat -1 -1 1095 793540 803889 +1563367 1584043 20677 6044944.9675 6045979.582 26.3873 40.386 92.6815 run30.mat -1 -1 1095 804042 814381 +1584348 1605043 20696 6045994.717 6047027.3451 24.7334 40.3857 92.5607 run30.mat -1 -1 1095 814534 824882 +1605354 1622586 17233 6047042.8981 6047906.7399 23.0869 40.3853 92.8186 run30.mat -1 -1 1095 825037 833653 +1706807 1709308 2502 6052117.5193 6052241.626 23.0953 40.3862 95.3283 run30.mat -1 -1 1096 875766 877016 +1709620 1730327 20708 6052257.1084 6053292.4461 21.4322 40.3858 92.5099 run30.mat -1 -1 1096 877172 887526 +1730634 1751322 20689 6053307.6773 6054342.1993 19.7842 40.3854 92.5852 run30.mat -1 -1 1096 887680 898024 +1751628 1772323 20696 6054357.5619 6055393.1246 18.1359 40.3851 92.568 run30.mat -1 -1 1096 898177 908525 +1772629 1793302 20674 6055408.3062 6056441.5739 16.4894 40.3857 92.5476 run30.mat -1 -1 1096 908678 919015 +1793608 1802625 9018 6056457.0004 6056906.9638 14.8439 40.3859 92.8351 run30.mat -1 -1 1096 919168 923677 +1886703 1897442 10740 6061112.9533 6061648.3977 14.8461 40.3849 93.2918 run30.mat -1 -1 1097 965718 971087 +1897747 1918445 20699 6061663.7737 6062698.4651 13.1918 40.386 92.5092 run30.mat -1 -1 1097 971240 981589 +1918751 1939442 20692 6062713.7683 6063750.5259 11.5431 40.3855 92.6268 run30.mat -1 -1 1097 981742 992088 +1939752 1960443 20692 6063766.0289 6064799.4061 9.8939 40.3859 92.5055 run30.mat -1 -1 1097 992243 1002589 +1960751 1981417 20667 6064814.69 6065846.127 8.2471 40.3856 92.732 run30.mat -1 -1 1097 1002743 1013076 +1981725 1982485 761 6065861.4109 6065899.4974 6.5835 40.3868 92.4483 run30.mat -1 -1 1097 1013230 1013611 +2066772 2085745 18974 6070114.0073 6071063.8865 6.5941 40.386 92.8264 run30.mat -1 -1 1098 1055756 1065243 +2086054 2106785 20732 6071079.4642 6072115.1484 4.9454 40.3856 92.5942 run30.mat -1 -1 1098 1065398 1075764 +2107092 2127763 20672 6072130.3796 6073164.2597 3.2968 40.3862 92.6018 run30.mat -1 -1 1098 1075917 1086253 +2128067 2148766 20700 6073179.6467 6074216.952 1.6468 40.3857 92.5403 run30.mat -1 -1 1098 1086405 1096755 +2149073 2162564 13492 6074232.1862 6074907.4761 -0.00026454 40.3852 92.7302 run30.mat -1 -1 1098 1096908 1103655 +2246836 2253081 6246 6079120.8552 6079431.5524 -0.0035 40.386 93.9002 run30.mat -1 -1 1099 1145792 1148915 +2253413 2274105 20693 6079448.1556 6080481.4405 -1.6534 40.3858 92.4687 run30.mat -1 -1 1099 1149081 1159427 +2274411 2295103 20693 6080496.8701 6081533.2696 -3.3004 40.3854 92.5436 run30.mat -1 -1 1099 1159580 1169927 +2295410 2316085 20676 6081548.6228 6082582.948 -4.9468 40.3854 92.4898 run30.mat -1 -1 1099 1170081 1180418 +2316390 2337085 20696 6082598.4393 6083631.5045 -6.5991 40.3852 92.6125 run30.mat -1 -1 1099 1180571 1190919 +2337391 2342664 5274 6083646.686 6083911.5106 -8.2478 40.3853 92.6097 run30.mat -1 -1 1099 1191072 1193708 +2426741 2441183 14443 6088114.6716 6088837.0589 -8.2478 40.386 93.1728 run30.mat -1 -1 1100 1235749 1242970 +2441489 2462186 20698 6088852.2405 6089887.8262 -9.8999 40.3855 92.5201 run30.mat -1 -1 1100 1243123 1253472 +2462494 2483180 20687 6089903.3535 6090937.4756 -11.5448 40.3862 92.6221 run30.mat -1 -1 1100 1253626 1263969 +2483492 2504186 20695 6090953.0816 6091986.0883 -13.1924 40.3857 92.5461 run30.mat -1 -1 1100 1264125 1274473 +2504493 2522524 18032 6092001.4881 6092904.4389 -14.8461 40.3852 92.7733 run30.mat -1 -1 1100 1274626 1283642 +2606759 2608482 1724 6097115.0575 6097200.5238 -14.8473 40.385 95.6022 run30.mat -1 -1 1101 1325762 1326623 +2608814 2629485 20672 6097216.9921 6098251.648 -16.4932 40.3856 92.6395 run30.mat -1 -1 1101 1326789 1337125 +2629792 2650464 20673 6098267.0424 6099301.2216 -18.1396 40.3858 92.5341 run30.mat -1 -1 1101 1337278 1347615 +2650773 2671478 20706 6099316.7994 6100353.2165 -19.7876 40.3856 92.5161 run30.mat -1 -1 1101 1347770 1358123 +2671791 2692465 20675 6100368.7454 6101400.5255 -21.4376 40.3857 92.667 run30.mat -1 -1 1101 1358279 1368617 +2692771 2702563 9793 6101415.7071 6101906.4759 -23.0862 40.3863 92.8194 run30.mat -1 -1 1101 1368770 1373666 +2786850 2796782 9933 6106119.5275 6106616.2002 -23.0925 40.385 93.2726 run30.mat -1 -1 1102 1415811 1420777 +2797109 2817805 20697 6106632.6854 6107668.0756 -24.7336 40.3856 92.4687 run30.mat -1 -1 1102 1420941 1431289 +2818111 2838805 20695 6107683.5021 6108717.2863 -26.3865 40.3858 92.6362 run30.mat -1 -1 1102 1431442 1441790 +2839113 2859806 20694 6108732.6895 6109770.4569 -28.0326 40.3855 92.5911 run30.mat -1 -1 1102 1441944 1452291 +2860114 2880769 20656 6109785.9843 6110815.224 -29.6884 40.3857 92.6464 run30.mat -1 -1 1102 1452445 1462773 +2881085 2882663 1579 6110831.1547 6110910.707 -31.3502 40.3837 92.6126 run30.mat -1 -1 1102 1462931 1463720 +2966857 2985023 18167 6115120.6597 6116029.6995 -31.34 40.3853 93.0104 run30.mat -1 -1 1103 1505819 1514902 +2985331 3006029 20699 6116045.289 6117078.7987 -32.9875 40.386 92.4875 run30.mat -1 -1 1103 1515056 1525405 +3006338 3027028 20691 6117094.3284 6118129.0169 -34.6338 40.3854 92.5141 run30.mat -1 -1 1103 1525560 1535905 +3027335 3048028 20694 6118144.3728 6119178.5391 -36.2887 40.3859 92.6104 run30.mat -1 -1 1103 1536059 1546406 +3048334 3062642 14309 6119193.7237 6119909.322 -37.9392 40.386 92.6132 run30.mat -1 -1 1103 1546559 1553713 +3146942 3152330 5389 6124125.2813 6124393.1224 -37.9366 40.3857 93.9802 run30.mat -1 -1 1104 1595865 1598559 +3152639 3173331 20693 6124408.7001 6125445.7721 -39.5825 40.3859 92.481 run30.mat -1 -1 1104 1598714 1609060 +3173641 3194348 20708 6125461.4003 6126495.3608 -41.2301 40.3861 92.6298 run30.mat -1 -1 1104 1609215 1619569 +3194654 3215329 20676 6126510.7873 6127544.337 -42.8772 40.3858 92.4867 run30.mat -1 -1 1104 1619722 1630060 +3215636 3236330 20695 6127559.5682 6128594.9938 -44.5325 40.3869 92.6313 run30.mat -1 -1 1104 1630213 1640561 +3236636 3242722 6087 6128610.2968 6128914.4856 -46.1781 40.3849 92.6284 run30.mat -1 -1 1104 1640714 1643757 +3326811 3340467 13657 6133118.4907 6133800.9788 -46.1803 40.3858 93.1047 run30.mat -1 -1 1105 1685804 1692632 +3340787 3361464 20678 6133816.8549 6134850.4428 -47.8272 40.3861 92.5207 run30.mat -1 -1 1105 1692792 1703131 +3361775 3382469 20695 6134865.9958 6135900.9985 -49.476 40.3859 92.6177 run30.mat -1 -1 1105 1703286 1713634 +3382774 3403449 20676 6135916.2516 6136952.1425 -51.1263 40.3862 92.6028 run30.mat -1 -1 1105 1713786 1724124 +3403757 3422602 18846 6136967.4264 6137910.2393 -52.7781 40.3859 92.7141 run30.mat -1 -1 1105 1724278 1733701 +3506844 3507712 869 6142119.5419 6142162.3005 -52.7736 40.3857 97.7019 run30.mat -1 -1 1106 1775824 1776258 +3508053 3528712 20660 6142179.0985 6143214.1563 -54.4248 40.3863 92.5818 run30.mat -1 -1 1106 1776429 1786758 +3529020 3549714 20695 6143229.5627 6144263.9931 -56.077 40.3855 92.5729 run30.mat -1 -1 1106 1786912 1797260 +3550022 3570708 20687 6144279.2739 6145314.6061 -57.7265 40.386 92.5804 run30.mat -1 -1 1106 1797414 1807757 +3571016 3591705 20690 6145329.8869 6146364.9104 -59.3765 40.3858 92.6478 run30.mat -1 -1 1106 1807911 1818256 +3592013 3602622 10610 6146380.4311 6146911.1998 -61.0227 40.3857 92.8395 run30.mat -1 -1 1106 1818410 1823715 +3686892 3696108 9217 6151123.2093 6151584.9734 -61.0258 40.3856 93.2195 run30.mat -1 -1 1107 1865852 1870460 +3696415 3717108 20694 6151600.4534 6152633.8755 -62.6748 40.386 92.5253 run30.mat -1 -1 1107 1870613 1880960 +3717415 3738117 20703 6152648.9958 6153683.8168 -64.3251 40.3856 92.6377 run30.mat -1 -1 1107 1881114 1891465 +3738432 3759130 20699 6153699.3311 6154736.0029 -65.9776 40.3856 92.6216 run30.mat -1 -1 1107 1891623 1901972 +3759436 3780088 20653 6154751.3058 6155782.5833 -67.624 40.3856 92.6266 run30.mat -1 -1 1107 1902125 1912452 +3780399 3782682 2284 6155798.265 6155913.382 -69.2757 40.3869 92.1544 run30.mat -1 -1 1107 1912607 1913749 +3866978 3884469 17492 6160127.5368 6161001.6652 -69.2717 40.3851 92.9096 run30.mat -1 -1 1108 1955899 1964648 +3884775 3905489 20715 6161017.0948 6162053.3349 -70.9165 40.3855 92.5252 run30.mat -1 -1 1108 1964797 1975155 +3905796 3926470 20675 6162068.8119 6163102.075 -72.5729 40.3849 92.6033 run30.mat -1 -1 1108 1975308 1985646 +3926778 3947468 20691 6163117.4782 6164151.6081 -74.2181 40.3856 92.6285 run30.mat -1 -1 1108 1985800 1996146 +3947776 3962802 15027 6164166.95 6164918.1886 -75.866 40.3859 92.6588 run30.mat -1 -1 1108 1996300 2003813 +4047086 4051867 4782 6169132.6269 6169372.5268 -75.8742 40.3861 94.9255 run30.mat -1 -1 1109 2045957 2048347 +4052193 4072871 20679 6169388.83 6170423.0327 -77.5122 40.3863 92.531 run30.mat -1 -1 1109 2048510 2058850 +4073178 4093868 20691 6170438.3857 6171472.8205 -79.1665 40.3854 92.643 run30.mat -1 -1 1109 2059003 2069349 +4094177 4114886 20710 6171488.3983 6172525.2125 -80.8173 40.3853 92.6067 run30.mat -1 -1 1109 2069503 2079858 +4115197 4135854 20658 6172540.6422 6173571.5789 -82.461 40.3854 92.6755 run30.mat -1 -1 1109 2080014 2090343 +4136169 4142841 6673 6173587.207 6173920.5813 -82.4698 42.07 92.8466 run30.mat -1 -1 1109 2090500 2093837 +4226959 4240013 13055 6178126.0811 6178778.3519 -82.4657 42.0685 93.2492 run30.mat -1 -1 1110 2135897 2142424 +4240327 4261010 20684 6178794.0017 6179830.126 -80.8167 42.0688 92.55 run30.mat -1 -1 1110 2142581 2152923 +4261317 4282011 20695 6179845.3572 6180880.0367 -79.1685 42.0692 92.6056 run30.mat -1 -1 1110 2153077 2163425 +4282316 4303010 20695 6180895.1687 6181930.9066 -77.5132 42.0691 92.5934 run30.mat -1 -1 1110 2163577 2173924 +4303317 4322742 19426 6181946.263 6182916.8 -75.8686 42.0696 92.626 run30.mat -1 -1 1110 2174077 2183791 +4406989 4407353 365 6187128.9623 6187147.3128 -75.8705 42.0678 99.8223 run30.mat -1 -1 1111 2225916 2226098 +4407665 4428330 20666 6187163.0417 6188196.2778 -74.2226 42.0686 92.6439 run30.mat -1 -1 1111 2226254 2236587 +4428637 4449330 20694 6188211.509 6189244.077 -72.5721 42.0696 92.6507 run30.mat -1 -1 1111 2236740 2247087 +4449637 4470329 20693 6189259.3082 6190297 -70.9227 42.0689 92.5151 run30.mat -1 -1 1111 2247241 2257587 +4470636 4491312 20677 6190312.3532 6191346.0274 -69.2739 42.069 92.6347 run30.mat -1 -1 1111 2257741 2268079 +4491621 4502781 11161 6191361.3609 6191919.0226 -67.6285 42.0686 92.8283 run30.mat -1 -1 1111 2268234 2273814 +4586819 4595427 8609 6196121.9154 6196552.3677 -67.624 42.0698 93.2876 run30.mat -1 -1 1112 2315835 2320139 +4595741 4616428 20688 6196567.9524 6197600.3263 -65.9744 42.0695 92.5359 run30.mat -1 -1 1112 2320296 2330640 +4616739 4637429 20691 6197615.759 6198649.9863 -64.3204 42.0694 92.5767 run30.mat -1 -1 1112 2330796 2341141 +4637736 4658430 20695 6198665.4632 6199699.4816 -62.6728 42.0693 92.5784 run30.mat -1 -1 1112 2341295 2351642 +4658737 4679409 20673 6199714.8348 6200748.6886 -61.0229 42.0694 92.6659 run30.mat -1 -1 1112 2351796 2362132 +4679716 4682640 2925 6200764.0415 6200911.5286 -59.3725 42.0705 92.5771 run30.mat -1 -1 1112 2362286 2363748 +4766926 4783848 16923 6205125.1283 6205972.3071 -59.3767 42.07 92.8809 run30.mat -1 -1 1113 2405892 2414354 +4784161 4804839 20679 6205988.0865 6207021.3879 -57.7253 42.069 92.5573 run30.mat -1 -1 1113 2414510 2424850 +4805154 4825828 20675 6207037.0191 6208069.6031 -56.0736 42.0693 92.5822 run30.mat -1 -1 1113 2425007 2435344 +4826138 4846839 20702 6208085.2248 6209122.1711 -54.4239 42.0688 92.5761 run30.mat -1 -1 1113 2435500 2445851 +4847152 4862701 15550 6209137.6999 6209915.2133 -52.7751 42.0693 92.7769 run30.mat -1 -1 1113 2446007 2453782 +4946989 4951144 4156 6214128.5257 6214337.9933 -52.7753 42.0693 94.1426 run30.mat -1 -1 1114 2495928 2498005 +4951460 4972150 20691 6214353.9006 6215386.8673 -51.1278 42.0691 92.4927 run30.mat -1 -1 1114 2498164 2508509 +4972458 4993132 20675 6215402.3977 6216437.3267 -49.4784 42.07 92.5475 run30.mat -1 -1 1114 2508663 2519000 +4993439 5014151 20713 6216452.5578 6217488.1285 -47.8282 42.0693 92.5604 run30.mat -1 -1 1114 2519154 2529510 +5014459 5035112 20654 6217503.6558 6218535.5797 -46.1779 42.0697 92.6526 run30.mat -1 -1 1114 2529664 2539992 +5035421 5042760 7340 6218551.0327 6218916.2571 -44.5333 42.0696 92.8874 run30.mat -1 -1 1114 2540146 2543815 +5126977 5139460 12484 6223128.9736 6223752.3116 -44.5315 42.0705 93.3376 run30.mat -1 -1 1115 2585926 2592168 +5139779 5160449 20671 6223768.1381 6224801.6606 -42.8826 42.069 92.5355 run30.mat -1 -1 1115 2592327 2602663 +5160757 5181451 20695 6224816.9444 6225851.3403 -41.2328 42.0689 92.5961 run30.mat -1 -1 1115 2602817 2613164 +5181755 5202451 20697 6225866.5432 6226902.6513 -39.5862 42.0689 92.629 run30.mat -1 -1 1115 2613316 2623665 +5202758 5222859 20102 6226918.124 6227925.2544 -37.9376 42.0688 92.6136 run30.mat -1 -1 1115 2623818 2633869 +5306962 5327539 20578 6232130.2734 6233155.6445 -36.2902 42.0688 92.8552 run30.mat -1 -1 1116 2675922 2686211 +5327853 5348530 20678 6233171.3476 6234205.6734 -34.6356 42.0694 92.5747 run30.mat -1 -1 1116 2686368 2696707 +5348837 5369513 20677 6234221.1472 6235255.4502 -32.985 42.0697 92.5814 run30.mat -1 -1 1116 2696861 2707199 +5369820 5390511 20692 6235270.9302 6236305.9706 -31.3389 42.0694 92.5333 run30.mat -1 -1 1116 2707352 2717699 +5390818 5402700 11883 6236321.2018 6236916.5066 -29.6877 42.0697 92.6841 run30.mat -1 -1 1116 2717852 2723793 +5486947 5494785 7839 6241128.6378 6241519.0175 -29.6878 42.0704 93.6602 run30.mat -1 -1 1117 2765919 2769838 +5495098 5515791 20694 6241534.6708 6242570.7128 -28.0346 42.0691 92.5118 run30.mat -1 -1 1117 2769994 2780341 +5516098 5536792 20695 6242586.1898 6243617.9371 -26.3872 42.0691 92.6528 run30.mat -1 -1 1117 2780495 2790842 +5537102 5557791 20690 6243633.4401 6244668.2804 -24.7388 42.0696 92.5745 run30.mat -1 -1 1117 2790997 2801342 +5558097 5578773 20677 6244683.462 6245718.8257 -23.0875 42.0694 92.668 run30.mat -1 -1 1117 2801495 2811834 +5579078 5582741 3664 6245734.2049 6245918.9064 -21.4427 42.0697 93.0121 run30.mat -1 -1 1117 2811986 2813818 +5666869 5682949 16081 6250122.4889 6250927.7351 -21.4361 42.0698 92.9613 run30.mat -1 -1 1118 2855884 2863924 +5683263 5703972 20710 6250943.4529 6251980.6706 -19.7884 42.0691 92.4952 run30.mat -1 -1 1118 2864081 2874436 +5704279 5724952 20674 6251995.8988 6253029.0867 -18.1396 42.0697 92.5944 run30.mat -1 -1 1118 2874590 2884926 +5725259 5745952 20694 6253044.5605 6254076.7288 -16.4913 42.0691 92.6673 run30.mat -1 -1 1118 2885079 2895427 +5746258 5762640 16383 6254092.0317 6254913.1497 -14.842 42.0702 92.6155 run30.mat -1 -1 1118 2895580 2903771 +5846922 5850285 3364 6259125.1107 6259293.4912 -14.8466 42.0694 94.7121 run30.mat -1 -1 1119 2945914 2947596 +5850603 5871277 20675 6259309.5227 6260344.664 -13.1938 42.0689 92.5948 run30.mat -1 -1 1119 2947755 2958092 +5871588 5892273 20686 6260360.3457 6261394.4021 -11.5448 42.07 92.5823 run30.mat -1 -1 1119 2958248 2968591 +5892580 5913273 20694 6261409.6333 6262445.6528 -9.9 42.0688 92.4861 run30.mat -1 -1 1119 2968744 2979091 +5913591 5934272 20682 6262461.6842 6263494.1686 -8.2506 42.0694 92.6082 run30.mat -1 -1 1119 2979250 2989591 +5934580 5942719 8140 6263509.6024 6263918.0766 -6.5983 42.0681 92.791 run30.mat -1 -1 1119 2989745 2993815 +6026797 6038409 11613 6268121.7922 6268701.9079 -6.5946 42.07 93.2414 run30.mat -1 -1 1120 3035856 3041662 +6038724 6059395 20672 6268717.5391 6269751.1004 -4.9462 42.0693 92.5868 run30.mat -1 -1 1120 3041819 3052155 +6059700 6080416 20717 6269766.3536 6270802.4111 -3.2969 42.0699 92.5805 run30.mat -1 -1 1120 3052308 3062666 +6080721 6101394 20674 6270817.6643 6271850.7563 -1.6488 42.0698 92.6035 run30.mat -1 -1 1120 3062819 3073156 +6101702 6122374 20673 6271866.0371 6272898.8307 0.00076821 42.0692 92.6516 run30.mat -1 -1 1120 3073310 3083646 +6206841 6226803 19963 6277123.2632 6278120.5751 1.6501 42.069 93.1302 run30.mat -1 -1 1121 3125881 3135863 +6227119 6247774 20656 6278136.3781 6279168.0115 3.2956 42.0688 92.6117 run30.mat -1 -1 1121 3136021 3146349 +6248087 6268796 20710 6279183.5404 6280221.5526 4.9463 42.0692 92.4946 run30.mat -1 -1 1121 3146505 3156860 +6269102 6289794 20693 6280236.9823 6281271.9587 6.5936 42.0694 92.6835 run30.mat -1 -1 1121 3157013 3167360 +6290100 6302639 12540 6281287.2651 6281913.1179 8.251 42.0703 92.7316 run30.mat -1 -1 1121 3167513 3173783 +6386789 6393951 7163 6286120.1347 6286477.406 8.249 42.0684 93.522 run30.mat -1 -1 1122 3215860 3219441 +6394264 6414955 20692 6286492.9661 6287530.711 9.8961 42.0701 92.5598 run30.mat -1 -1 1122 3219597 3229943 +6415263 6435957 20695 6287546.117 6288577.9719 11.5446 42.0691 92.6043 run30.mat -1 -1 1122 3230097 3240445 +6436263 6456954 20692 6288593.514 6289627.2702 13.1905 42.0693 92.556 run30.mat -1 -1 1122 3240598 3250943 +6457262 6477931 20670 6289642.6732 6290677.2173 14.8439 42.0691 92.6438 run30.mat -1 -1 1122 3251097 3261432 +6478239 6482559 4321 6290692.4981 6290907.8524 16.4846 42.0683 92.8012 run30.mat -1 -1 1122 3261586 3263746 +6566853 6582264 15412 6295122.9129 6295895.4734 16.4896 42.0685 92.9328 run30.mat -1 -1 1123 3305895 3313601 +6582582 6603252 20671 6295911.3767 6296945.1338 18.1365 42.0693 92.5974 run30.mat -1 -1 1123 3313760 3324096 +6603559 6624253 20695 6296960.487 6297988.6313 19.7851 42.0689 92.64 run30.mat -1 -1 1123 3324249 3334596 +6624561 6645256 20696 6298003.5405 6299045.8088 21.4359 42.069 92.5966 run30.mat -1 -1 1123 3334750 3345098 +6645562 6662639 17078 6299061.1147 6299912.2697 23.0881 42.0699 92.756 run30.mat -1 -1 1123 3345251 3353791 +6746711 6749370 2660 6304117.8625 6304250.838 23.0823 42.0686 94.7379 run30.mat -1 -1 1124 3395828 3397158 +6749685 6770357 20673 6304266.5911 6305299.4852 24.7374 42.07 92.5127 run30.mat -1 -1 1124 3397315 3407652 +6770674 6791342 20669 6305315.3957 6306350.3592 26.3839 42.0701 92.5783 run30.mat -1 -1 1124 3407810 3418145 +6791655 6812354 20700 6306365.7589 6307399.8184 28.0352 42.0702 92.6021 run30.mat -1 -1 1124 3418301 3428651 +6812658 6833336 20679 6307415.0214 6308448.1814 29.687 42.0696 92.6183 run30.mat -1 -1 1124 3428803 3439143 +6833644 6842518 8875 6308463.4622 6308907.7468 31.3374 42.0693 92.7854 run30.mat -1 -1 1124 3439297 3443734 +6926817 6937656 10840 6313123.4101 6313664.7678 31.3343 42.0693 93.0843 run30.mat -1 -1 1125 3485885 3491305 +6937978 6958673 20696 6313680.7463 6314714.5074 32.9843 42.0695 92.5464 run30.mat -1 -1 1125 3491466 3501813 +6958982 6979655 20674 6314729.7291 6315765.4295 34.6327 42.0696 92.5409 run30.mat -1 -1 1125 3501968 3512305 +6979963 7000672 20710 6315780.9568 6316813.0954 36.2891 42.0693 92.6404 run30.mat -1 -1 1125 3512459 3522814 +7000981 7021637 20657 6316828.5487 6317863.6572 37.9331 42.0695 92.5769 run30.mat -1 -1 1125 3522969 3533297 +7021946 7022597 652 6317879.1131 6317911.6756 39.5787 42.0688 91.3597 run30.mat -1 -1 1125 3533452 3533777 +7106855 7125941 19087 6322124.5351 6323077.5777 39.5833 42.0687 92.9063 run30.mat -1 -1 1126 3575908 3585452 +7126254 7146936 20683 6323093.1066 6324130.1424 41.2297 42.0693 92.5852 run30.mat -1 -1 1126 3585608 3595949 +7147244 7167935 20692 6324145.5334 6325178.7932 42.8774 42.069 92.5583 run30.mat -1 -1 1126 3596104 3606450 +7168246 7188916 20671 6325194.4622 6326226.2176 44.5319 42.0694 92.6027 run30.mat -1 -1 1126 3606605 3616940 +7189225 7202636 13412 6326241.7953 6326913.8529 46.179 42.0695 92.7016 run30.mat -1 -1 1126 3617095 3623801 +7286896 7293230 6335 6331125.4662 6331443.8588 46.18 42.0689 93.8845 run30.mat -1 -1 1127 3665932 3669100 +7293546 7314237 20692 6331459.6619 6332494.5147 47.8264 42.0694 92.4414 run30.mat -1 -1 1127 3669258 3679604 +7314541 7335235 20695 6332509.7176 6333542.6721 49.4717 42.0686 92.586 run30.mat -1 -1 1127 3679756 3690103 +7335541 7356234 20694 6333557.975 6334594.2465 51.1268 42.0682 92.5955 run30.mat -1 -1 1127 3690256 3700603 +7356542 7377216 20675 6334609.7769 6335644.8855 52.7745 42.0694 92.6338 run30.mat -1 -1 1127 3700757 3711095 +7377522 7382717 5196 6335660.3737 6335916.6932 54.4212 42.0685 92.6475 run30.mat -1 -1 1127 3711248 3713845 +7467024 7481560 14537 6340132.1202 6340860.5979 54.4226 42.0693 92.9662 run30.mat -1 -1 1128 3756001 3763269 +7481880 7502555 20676 6340876.4772 6341909.3609 56.0706 42.069 92.4953 run30.mat -1 -1 1128 3763429 3773767 +7502863 7523556 20694 6341924.6447 6342961.1504 57.7248 42.0694 92.5782 run30.mat -1 -1 1128 3773921 3784268 +7523863 7544556 20694 6342976.5063 6344009.4582 59.3742 42.0692 92.54 run30.mat -1 -1 1128 3784421 3794768 +7544861 7562797 17937 6344024.7114 6344921.7815 61.0216 42.0696 92.6721 run30.mat -1 -1 1128 3794921 3803889 +7646895 7648699 1805 6349125.5227 6349215.0246 61.0134 42.0695 94.9913 run30.mat -1 -1 1129 3845940 3846842 +7649018 7669696 20679 6349230.8512 6350268.7555 62.6726 42.0689 92.6346 run30.mat -1 -1 1129 3847001 3857341 +7670004 7690676 20673 6350284.0363 6351315.0391 64.3217 42.0701 92.6469 run30.mat -1 -1 1129 3857495 3867832 +7690986 7711696 20711 6351330.6673 6352366.6624 65.971 42.0698 92.5153 run30.mat -1 -1 1129 3867987 3878342 +7712001 7732675 20675 6352382.0385 6353417.4436 67.6245 42.0693 92.556 run30.mat -1 -1 1129 3878495 3888832 +7732983 7742676 9694 6353432.9088 6353917.2551 69.2657 42.0685 92.7281 run30.mat -1 -1 1129 3888986 3893833 +7827036 7837162 10127 6358133.9177 6358640.5533 69.2725 42.0693 93.3929 run30.mat -1 -1 1130 3936015 3941078 +7837482 7858156 20675 6358656.4295 6359691.7676 70.9194 42.0696 92.491 run30.mat -1 -1 1130 3941238 3951575 +7858461 7879156 20696 6359707.1468 6360740.3417 72.5731 42.0699 92.6302 run30.mat -1 -1 1130 3951727 3962075 +7879463 7900155 20693 6360755.8217 6361788.8992 74.2174 42.0692 92.5969 run30.mat -1 -1 1130 3962229 3972576 +7900462 7921132 20671 6361804.2543 6362840.0571 75.8684 42.0694 92.6267 run30.mat -1 -1 1130 3972729 3983065 +7921441 7922795 1355 6362855.5101 6362923.2231 77.52 42.0709 92.6776 run30.mat -1 -1 1130 3983219 3983896 +8006965 8025531 18567 6367133.1605 6368058.2978 77.5114 42.0694 93.149 run30.mat -1 -1 1131 4025983 4035266 +8025848 8046520 20673 6368074.1521 6369108.3727 79.1659 42.0697 92.5093 run30.mat -1 -1 1131 4035425 4045761 +8046828 8067516 20689 6369123.9032 6370159.2788 80.8108 42.0698 92.5813 run30.mat -1 -1 1131 4045915 4056260 +8067824 8088176 20353 6370174.5596 6371191.3745 82.4627 42.0699 92.5551 run30.mat -1 -1 1131 4056414 4066590 +347292 388580 41289 6741344.3672 6743409.0089 41.228 -21.0362 103.6886 run31.mat 1 4 1133 175799 196444 +466178 491945 25768 6747288.4081 6748576.3614 41.2286 -21.0365 140.0593 run31.mat 11 4 1134 235244 248128 +570716 590814 20099 6752513.9894 6753520.7048 41.2287 -21.0367 158.3397 run31.mat 21 4 1135 287516 297565 +671297 691350 20054 6757543.5531 6758546.4803 41.2276 -21.0368 144.8606 run31.mat 31 4 1136 337808 347835 +771877 791960 20084 6762574.5802 6763579.0341 41.23 -21.0363 134.3269 run31.mat 41 4 1137 388100 398143 +872468 892577 20110 6767602.4102 6768608.355 41.23 -21.0345 126.3839 run31.mat 51 4 1138 438398 448455 +972862 992917 20056 6772624.4595 6773625.5109 41.2285 -21.0372 119.8952 run31.mat 61 4 1139 488597 498625 +1073199 1093261 20063 6777640.1432 6778644.4195 41.2294 -21.0366 114.5847 run31.mat 71 4 1140 538768 548799 +1175601 1195641 20041 6782760.3831 6783762.1353 41.2313 -21.0373 110.1419 run31.mat 81 4 1141 589971 599992 +1278039 1298050 20012 6787881.5687 6788882.2541 41.2285 -21.0361 105.9532 run31.mat 91 4 1142 641193 651199 +1380273 1400420 20148 6792992.9406 6794002.137 41.2291 -21.0364 102.8167 run31.mat 101 4 1143 692312 702386 +1482702 1502840 20139 6798116.2431 6799121.4844 41.2282 -21.0351 99.8272 run31.mat 111 4 1144 743528 753598 +1585224 1605286 20063 6803241.411 6804242.9052 41.2334 -21.0364 97.1373 run31.mat 121 4 1145 794792 804823 +1689424 1709583 20160 6808452.9875 6809457.6486 41.2301 -21.0367 94.873 run31.mat 131 4 1146 846894 856974 +1793828 1813888 20061 6813673.8894 6814675.0885 41.2305 -21.0361 92.7426 run31.mat 141 4 1147 899098 909128 +1898144 1918329 20186 6818888.5747 6819896.1727 41.2268 -21.0368 90.7779 run31.mat 151 4 1148 951259 961352 +2004506 2024640 20135 6824207.7404 6825211.7678 41.2279 -21.0356 88.8734 run31.mat 161 4 1149 1004442 1014509 +2110916 2130990 20075 6829526.395 6830530.2123 41.2265 -21.036 87.1736 run31.mat 171 4 1150 1057649 1067687 +2217239 2237449 20211 6834841.2977 6835854.2193 41.2268 -21.0362 85.8514 run31.mat 181 4 1151 1110813 1120919 +2323608 2343857 20250 6840161.6856 6841173.5554 41.2273 -21.0359 84.3114 run31.mat 191 4 1152 1164000 1174125 +2430241 2450398 20158 6845492.6915 6846500.8288 41.2331 -21.0359 82.3488 run31.mat 201 4 1153 1217319 1227398 +2536487 2556728 20242 6850805.9163 6851818.3578 41.2278 -21.0353 80.7786 run31.mat 211 4 1154 1270444 1280596 +2645158 2665464 20307 6856240.3705 6857253.9469 41.2316 -21.0357 79.0495 run31.mat 221 4 1155 1324782 1334935 +321629 323036 1408 7058717.222 7058787.8699 41.2192 0.0097647 146.3845 run32.mat 1 3 1157 169093 169797 +323302 417901 94600 7058801.2263 7063530.6961 41.2256 -0.0054795 145.8771 run32.mat 1 3 1157 169930 217231 +485536 487315 1780 7066913.0506 7067001.494 41.2215 -0.012312 152.7414 run32.mat 1 3 1158 251050 251940 +487619 488492 874 7067016.6397 7067060.1338 41.2255 -0.0018 158.9249 run32.mat 1 3 1158 252092 252528 +488754 488893 140 7067073.187 7067080.1121 41.2426 -0.057924 164.5861 run32.mat 1 3 1158 252659 252729 +489259 489511 253 7067098.3468 7067110.9017 41.2244 -0.022236 155.9149 run32.mat 1 3 1158 252912 253038 +489818 490209 392 7067126.1969 7067145.6771 41.2334 0.036661 153.2927 run32.mat 1 3 1158 253191 253387 +490469 490813 345 7067158.6306 7067175.7692 41.2195 0.030726 147.6315 run32.mat 1 3 1158 253517 253689 +491119 492140 1022 7067191.0145 7067242.0065 41.2315 0.0062202 141.4139 run32.mat 1 3 1158 253842 254353 +492395 493911 1517 7067254.7591 7067330.5741 41.2302 0.0030933 144.9927 run32.mat 1 3 1158 254480 255238 +494167 505929 11763 7067343.3767 7067933.39 41.225 -0.0070732 145 run32.mat 1 3 1158 255366 261247 +573594 575032 1439 7071316.6052 7071387.6358 41.2261 -0.00055173 243.9252 run32.mat 11 3 1159 295081 295800 +575283 580047 4765 7071400.034 7071639.7196 41.2187 0.00068616 233.1212 run32.mat 11 3 1159 295926 298308 +580307 580933 627 7071652.8822 7071684.5736 41.2234 -0.010669 235.0618 run32.mat 11 3 1159 298438 298751 +581183 635692 54510 7071697.2299 7074421.6344 41.2264 -0.0051104 231.8612 run32.mat 11 3 1159 298876 326132 +702065 748482 46418 7077739.1542 7080060.8337 41.2248 -0.0038857 274.3179 run32.mat 21 3 1160 359320 382529 +816400 862851 46452 7083453.3713 7085778.3549 41.2274 -0.0039378 250.133 run32.mat 31 3 1161 416489 439716 +930644 977034 46391 7089168.5614 7091486.3696 41.2271 -0.0036844 232.0078 run32.mat 41 3 1162 473614 496810 +1044925 1091191 46267 7094882.2466 7097195.455 41.2256 -0.0034203 217.6714 run32.mat 50.5224 3 1163 530757 553891 +1158926 1205301 46376 7100584.1597 7102900.9605 41.2264 -0.0028091 206.1898 run32.mat 61 3 1164 587760 610949 +1275191 1293633 18443 7106396.0609 7107318.8804 41.2275 -0.0038601 197.2497 run32.mat 71 3 1165 645895 655117 +1293887 1321487 27601 7107331.4341 7108710.2061 41.2268 -0.003936 196.3077 run32.mat 71 3 1165 655244 669044 +1391372 1437661 46290 7112205.4478 7114520.4616 41.2275 -0.0030111 188.2018 run32.mat 81 3 1166 703988 727133 +1507562 1553852 46291 7118015.8216 7120329.1453 41.2272 -0.0040108 181.2075 run32.mat 91 3 1167 762086 785232 +1623774 1670055 46282 7123826.1798 7126139.2363 41.2283 -0.0030547 175.0112 run32.mat 101 3 1168 820194 843336 +1739941 1786231 46291 7129632.3846 7131950.2846 41.2274 -0.0032091 169.574 run32.mat 111 3 1169 878280 901426 +1855914 1902397 46484 7135434.5898 7137757.4463 41.2275 -0.0026652 164.656 run32.mat 120.737 3 1170 936269 959512 +1972273 2018587 46315 7141251.9104 7143566.1021 41.2283 -0.0024279 160.1809 run32.mat 131 3 1171 994451 1017610 +2088445 2088572 128 7147057.611 7147063.9879 41.1668 0.012061 178.1655 run32.mat 141 3 1172 1052540 1052604 +2088837 2134784 45948 7147077.294 7149376.6638 41.2273 -0.0023533 156.0086 run32.mat 141 3 1172 1052736 1075711 +2204438 2250736 46299 7152858.87 7155172.9301 41.2267 -0.0025781 152.4638 run32.mat 151 3 1173 1110539 1133689 +2320739 2366915 46177 7158674.6453 7160982.4356 41.228 -0.0030797 148.8598 run32.mat 161 3 1174 1168692 1191781 +2436773 2483074 46302 7164477.2004 7166789.8625 41.229 -0.0025197 145.7625 run32.mat 171 3 1175 1226712 1249863 +2553017 2599311 46295 7170289.6938 7172604.3193 41.2257 -0.0025176 142.8413 run32.mat 181 3 1176 1284836 1307984 +2671066 2717333 46268 7176190.272 7178504.0266 41.2287 -0.0028447 140.132 run32.mat 191 3 1177 1343863 1366998 +2789207 2789247 41 7182097.0591 7182099.0367 41.3299 -0.0015244 162.8723 run32.mat 201 3 1178 1402936 1402956 +2789498 2835398 45901 7182111.4465 7184409.587 41.2263 -0.0028035 136.3918 run32.mat 201 3 1178 1403082 1426033 +2905509 2951686 46178 7187914.3765 7190224.6005 41.2291 -0.0025778 133.1298 run32.mat 210.6125 3 1179 1461090 1484180 +3024080 3069902 45823 7193840.1759 7196132.9067 41.2293 -0.0015275 130.0693 run32.mat 221 3 1180 1520378 1543290 +293552 313977 20426 7318112.8248 7319131.1955 82.4624 3.3598 92.9046 run33.mat 140 4 1182 163483 173696 +314284 334978 20695 7319146.4332 7320184.4241 80.8132 3.3633 92.5775 run33.mat 140 4 1182 173849 184197 +335284 355999 20716 7320199.7889 7321232.1151 79.1654 3.3613 92.4721 run33.mat 140 4 1182 184350 194708 +356307 377006 20700 7321247.4011 7322284.2636 77.5145 3.3643 92.5258 run33.mat 140 4 1182 194862 205212 +377322 389364 12043 7322299.9444 7322901.0463 75.8655 3.3634 92.4419 run33.mat 140 4 1182 205370 211391 +473654 481376 7723 7327116.8851 7327504.4078 75.8682 3.3631 93.382 run33.mat 140 4 1183 253538 257399 +481706 502380 20675 7327520.7208 7328553.5713 74.2184 3.3628 92.4746 run33.mat 140 4 1183 257564 267902 +502687 523400 20714 7328569.0482 7329604.2025 72.5697 3.3624 92.5298 run33.mat 140 4 1183 268055 278412 +523706 544380 20675 7329619.63 7330653.533 70.9173 3.3626 92.6156 run33.mat 140 4 1183 278565 288902 +544685 565358 20674 7330668.786 7331700.8556 69.2702 3.3632 92.6507 run33.mat 140 4 1183 289055 299392 +565664 569464 3801 7331716.095 7331906.703 67.6294 3.3596 92.7264 run33.mat 140 4 1183 299545 301445 +654034 670036 16003 7336134.1658 7336936.6682 67.622 3.3622 93.0615 run33.mat 140 4 1184 343732 351733 +670357 691038 20682 7336952.7896 7337986.2426 65.975 3.3628 92.6123 run33.mat 140 4 1184 351894 362235 +691345 712041 20697 7338001.5514 7339034.8481 64.3212 3.3615 92.5748 run33.mat 140 4 1184 362388 372737 +712348 733040 20693 7339050.2662 7340086.9181 62.6754 3.3625 92.6262 run33.mat 140 4 1184 372890 383237 +733345 749784 16440 7340102.1713 7340924.0298 61.0209 3.3617 92.8283 run33.mat 140 4 1184 383389 391609 +834027 837376 3350 7345134.3896 7345302.8871 61.0206 3.3625 95.6133 run33.mat 140 4 1185 433732 435407 +837710 858378 20669 7345319.4578 7346352.3805 59.3716 3.3616 92.52 run33.mat 140 4 1185 435574 445908 +858702 879379 20678 7346368.5868 7347402.6999 57.7266 3.3618 92.5758 run33.mat 140 4 1185 446070 456409 +879684 900390 20707 7347417.9558 7348454.1649 56.067 3.3605 92.6539 run33.mat 140 4 1185 456562 466916 +900703 921360 20658 7348469.6938 7349502.2872 54.4239 3.363 92.6305 run33.mat 140 4 1185 467072 477401 +921667 929903 8237 7349517.6436 7349928.4435 52.7726 3.363 92.6876 run33.mat 140 4 1185 477555 481673 +1014221 1025697 11477 7354143.9188 7354719.5148 52.7756 3.3611 93.099 run33.mat 140 4 1186 523833 529572 +1026025 1046699 20675 7354735.9216 7355769.6181 51.1252 3.361 92.5317 run33.mat 140 4 1186 529736 540073 +1047009 1067701 20693 7355785.2462 7356818.2508 49.4729 3.363 92.6236 run33.mat 140 4 1186 540228 550575 +1068007 1088701 20695 7356833.5538 7357866.9104 47.8264 3.3613 92.4961 run33.mat 140 4 1186 550728 561075 +1089007 1109679 20673 7357882.3401 7358917.484 46.1756 3.3635 92.7021 run33.mat 140 4 1186 561228 571564 +1194412 1214180 19769 7363153.9758 7364141.2089 44.5325 3.3623 92.9095 run33.mat 140 4 1187 613933 623817 +1214484 1235179 20696 7364156.4118 7365194.467 42.8775 3.3624 92.5788 run33.mat 140 4 1187 623969 634317 +1235484 1256159 20676 7365209.7199 7366241.6983 41.2313 3.3623 92.5715 run33.mat 140 4 1187 634470 644807 +1256465 1277163 20699 7366257.0042 7367292.1339 39.5827 3.3612 92.5944 run33.mat 140 4 1187 644961 655310 +1277470 1290183 12714 7367307.4868 7367942.7791 37.9313 3.3626 92.7222 run33.mat 140 4 1187 655464 661820 +1374394 1381620 7227 7372151.899 7372515.2726 37.936 3.364 93.7807 run33.mat 140 4 1188 703928 707541 +1381946 1402622 20677 7372531.576 7373563.632 36.2862 3.3622 92.4742 run33.mat 140 4 1188 707704 718042 +1402930 1423622 20693 7373579.035 7374615.7374 34.6342 3.3641 92.5507 run33.mat 140 4 1188 718196 728543 +1423928 1444604 20677 7374631.167 7375663.4038 32.9841 3.3617 92.5402 run33.mat 140 4 1188 728696 739034 +1444909 1465584 20676 7375678.783 7376712.7116 31.3376 3.3622 92.6378 run33.mat 140 4 1188 739187 749525 +1465890 1470283 4394 7376728.0148 7376947.7098 29.6892 3.3599 93.1772 run33.mat 140 4 1188 749678 751874 +1554609 1569944 15336 7381166.0475 7381931.0012 29.6848 3.3627 93.1454 run33.mat 140 4 1189 794039 801707 +1570249 1590924 20676 7381946.257 7382979.8952 28.0313 3.3604 92.603 run33.mat 140 4 1189 801859 812198 +1591232 1611923 20692 7382995.176 7384030.3491 26.3843 3.3623 92.5931 run33.mat 140 4 1189 812352 822698 +1612230 1632926 20697 7384045.826 7385080.0294 24.7341 3.3616 92.5618 run33.mat 140 4 1189 822851 833200 +1633233 1650383 17151 7385095.3826 7385953.169 23.0872 3.3614 92.7134 run33.mat 140 4 1189 833353 841928 +1734719 1737441 2723 7390169.0333 7390305.9449 23.0926 3.3598 97.0438 run33.mat 140 4 1190 884098 885467 +1737769 1758443 20675 7390322.4805 7391357.4281 21.434 3.3618 92.4276 run33.mat 140 4 1190 885623 895961 +1758750 1779422 20673 7391372.6593 7392405.8253 19.7876 3.3622 92.5896 run33.mat 140 4 1190 896114 906451 +1779730 1800444 20715 7392421.2312 7393455.2362 18.1393 3.3613 92.561 run33.mat 140 4 1190 906605 916962 +1800749 1821434 20686 7393470.452 7394506.664 16.4903 3.3629 92.5965 run33.mat 140 4 1190 917115 927458 +1821747 1830503 8757 7394522.1929 7394958.4997 14.8436 3.3631 92.7081 run33.mat 140 4 1190 927614 931992 +1915015 1925961 10947 7399183.5126 7399731.5179 14.8444 3.3622 93.2506 run33.mat 140 4 1191 974250 979723 +1926291 1946984 20694 7399748.0877 7400785.0085 13.1911 3.3628 92.6193 run33.mat 140 4 1191 979888 990235 +1947290 1967962 20673 7400800.3114 7401833.4291 11.5443 3.3615 92.6288 run33.mat 140 4 1191 990388 1000725 +1968271 1988965 20695 7401848.7595 7402883.6376 9.895 3.3621 92.67 run33.mat 140 4 1191 1000879 1011227 +1989273 2009937 20665 7402899.165 7403931.4876 8.2468 3.3619 92.7348 run33.mat 140 4 1191 1011381 1021713 +2010248 2010781 534 7403947.0408 7403973.6964 6.5876 3.363 92.9065 run33.mat 140 4 1191 1021869 1022135 +2095043 2114243 19201 7408187.905 7409148.1381 6.5949 3.3625 92.8643 run33.mat 140 4 1192 1064268 1073868 +2114549 2135244 20696 7409163.3197 7410195.6265 4.9445 3.3627 92.5266 run33.mat 140 4 1192 1074021 1084370 +2135553 2156235 20683 7410211.083 7411247.3297 3.2968 3.3626 92.6103 run33.mat 140 4 1192 1084524 1094866 +2156549 2177224 20676 7411263.1409 7412296.8849 1.6481 3.3615 92.6211 run33.mat 140 4 1192 1095023 1105360 +2177532 2190861 13330 7412312.1687 7412977.7719 -0.0026656 3.3619 92.734 run33.mat 140 4 1192 1105514 1112179 +2275141 2281502 6362 7417191.8549 7417511.4369 -0.0051793 3.3607 93.4991 run33.mat 140 4 1193 1154321 1157502 +2281834 2302506 20673 7417527.8063 7418558.2712 -1.6514 3.3626 92.5082 run33.mat 140 4 1193 1157668 1168004 +2302817 2323504 20688 7418573.9498 7419609.2192 -3.3001 3.3614 92.5228 run33.mat 140 4 1193 1168160 1178503 +2323815 2344503 20689 7419624.9605 7420660.2373 -4.9476 3.3607 92.5678 run33.mat 140 4 1193 1178659 1189004 +2344810 2365505 20696 7420675.4685 7421710.4021 -6.5985 3.3616 92.6218 run33.mat 140 4 1193 1189157 1199505 +2365812 2370902 5091 7421725.6333 7421981.1345 -8.2531 3.3612 92.6218 run33.mat 140 4 1193 1199658 1202204 +2455453 2470063 14611 7426207.6923 7426938.4533 -8.25 3.3628 92.9697 run33.mat 140 4 1194 1244481 1251786 +2470370 2491067 20698 7426953.7454 7427988.9758 -9.8976 3.3616 92.5143 run33.mat 140 4 1194 1251940 1262289 +2491373 2512066 20694 7428004.1604 7429038.6479 -11.5434 3.3637 92.5371 run33.mat 140 4 1194 1262442 1272789 +2512372 2533064 20693 7429054.0038 7430088.5689 -13.1928 3.3618 92.577 run33.mat 140 4 1194 1272941 1283288 +2533372 2551221 17850 7430103.8527 7430995.3096 -14.841 3.3638 92.786 run33.mat 140 4 1194 1283442 1292367 +2635578 2637585 2008 7435212.8642 7435313.3633 -14.8491 3.3607 96.7872 run33.mat 140 4 1195 1334547 1335551 +2637889 2658567 20679 7435328.8008 7436362.953 -16.492 3.363 92.5998 run33.mat 140 4 1195 1335703 1346042 +2658872 2679582 20711 7436378.3291 7437413.6683 -18.1424 3.3618 92.6036 run33.mat 140 4 1195 1346195 1356550 +2679893 2700565 20673 7437429.2215 7438461.9893 -19.7856 3.362 92.6038 run33.mat 140 4 1195 1356706 1367042 +2700872 2721547 20676 7438477.2205 7439513.2157 -21.4406 3.3621 92.6418 run33.mat 140 4 1195 1367196 1377534 +2721855 2731341 9487 7439528.6831 7440001.8859 -23.0891 3.3624 92.7881 run33.mat 140 4 1195 1377688 1382431 +2815651 2825886 10236 7444217.9794 7444729.1295 -23.087 3.3597 93.0498 run33.mat 140 4 1196 1424588 1429706 +2826192 2846887 20696 7444744.556 7445778.5777 -24.7406 3.3619 92.5361 run33.mat 140 4 1196 1429859 1440207 +2847195 2867887 20693 7445793.8585 7446829.462 -26.3867 3.3604 92.5799 run33.mat 140 4 1196 1440361 1450707 +2868194 2888887 20694 7446844.9389 7447881.207 -28.0358 3.3618 92.6705 run33.mat 140 4 1196 1450860 1461208 +2889190 2909868 20679 7447896.2397 7448928.2183 -29.6889 3.3611 92.6289 run33.mat 140 4 1196 1461359 1471698 +2910175 2911442 1268 7448943.4495 7449006.3092 -31.3299 3.3624 93.0511 run33.mat 140 4 1196 1471852 1472485 +2995901 3014506 18606 7453228.7999 7454159.7261 -31.34 3.3616 93.1526 run33.mat 140 4 1197 1514717 1524028 +3014831 3035488 20658 7454176.1138 7455210.743 -32.9867 3.361 92.4905 run33.mat 140 4 1197 1524182 1534511 +3035797 3056493 20697 7455226.1989 7456259.2813 -34.6376 3.3627 92.5378 run33.mat 140 4 1197 1534665 1545014 +3056805 3077490 20686 7456274.8846 7457307.849 -36.2876 3.3604 92.5732 run33.mat 140 4 1197 1545170 1555513 +3077796 3091680 13885 7457323.0306 7458018.3934 -37.9365 3.3632 92.7175 run33.mat 140 4 1197 1555666 1562608 +3175979 3181827 5849 7462234.1758 7462528.0113 -37.9339 3.3616 93.477 run33.mat 140 4 1198 1604760 1607684 +3182158 3202848 20691 7462544.7015 7463577.7677 -39.5821 3.3613 92.52 run33.mat 140 4 1198 1607850 1618195 +3203158 3223830 20673 7463593.3958 7464625.3032 -41.2306 3.3622 92.6194 run33.mat 140 4 1198 1618350 1628686 +3224137 3244831 20695 7464640.6564 7465677.6299 -42.8782 3.3635 92.6492 run33.mat 140 4 1198 1628840 1639187 +3245137 3265790 20654 7465692.9357 7466725.4253 -44.5318 3.3611 92.5957 run33.mat 140 4 1198 1639340 1649667 +3266097 3271781 5685 7466740.7174 7467025.9697 -46.1775 3.3608 92.713 run33.mat 140 4 1198 1649821 1652663 +3356319 3370348 14030 7471251.6211 7471952.7383 -46.1779 3.3624 93.0313 run33.mat 140 4 1199 1694934 1701948 +3370696 3391368 20673 7471970.2821 7473004.5146 -47.8299 3.3631 92.6086 run33.mat 140 4 1199 1702122 1712459 +3391674 3412371 20698 7473019.6962 7474053.4966 -49.4762 3.3629 92.5327 run33.mat 140 4 1199 1712612 1722961 +3412678 3433369 20692 7474068.7308 7475103.318 -51.1256 3.3619 92.5653 run33.mat 140 4 1199 1723115 1733460 +3433675 3452080 18406 7475118.5026 7476040.8806 -52.779 3.3624 92.7055 run33.mat 140 4 1199 1733613 1742816 +3538468 3539747 1280 7480358.9651 7480423.3072 -52.7799 3.3594 96.4746 run33.mat 140 4 1200 1786012 1786652 +3540077 3560756 20680 7480439.745 7481473.474 -54.4237 3.3633 92.6192 run33.mat 140 4 1200 1786817 1797156 +3561066 3581751 20686 7481489.1053 7482524.2048 -56.0789 3.3617 92.6149 run33.mat 140 4 1200 1797311 1807655 +3582057 3602743 20687 7482539.3894 7483572.9812 -57.7286 3.3623 92.6257 run33.mat 140 4 1200 1807808 1818151 +3603055 3623732 20678 7483588.5845 7484622.3668 -59.3798 3.3615 92.6632 run33.mat 140 4 1200 1818307 1828646 +3624039 3634240 10202 7484637.8437 7485146.4518 -61.0253 3.3597 92.7376 run33.mat 140 4 1200 1828799 1833900 +3718528 3728049 9522 7489363.2874 7489839.636 -61.028 3.3616 93.2387 run33.mat 140 4 1201 1876046 1880807 +3728369 3749070 20702 7489855.5122 7490890.6296 -62.674 3.3635 92.5521 run33.mat 140 4 1201 1880967 1891317 +3749378 3770073 20696 7490905.9135 7491940.7028 -64.3239 3.362 92.5644 run33.mat 140 4 1201 1891471 1901820 +3770381 3791073 20693 7491956.1092 7492990.5701 -65.9719 3.3626 92.4853 run33.mat 140 4 1201 1901974 1912320 +3791380 3812053 20674 7493005.8043 7494038.3363 -67.6221 3.3637 92.6383 run33.mat 140 4 1201 1912474 1922810 +3812359 3814339 1981 7494053.6422 7494152.6803 -69.2666 3.3591 91.9355 run33.mat 140 4 1201 1922963 1923953 +3898607 3916351 17745 7498367.4808 7499255.4624 -69.2671 3.3621 92.9254 run33.mat 140 4 1202 1966089 1974962 +3916685 3937356 20672 7499272.0331 7500303.714 -70.9196 3.3627 92.5426 run33.mat 140 4 1202 1975129 1985465 +3937664 3958354 20691 7500318.9948 7501353.4533 -72.5691 3.3622 92.5958 run33.mat 140 4 1202 1985619 1995964 +3958662 3979354 20693 7501368.9806 7502404.7707 -74.2168 3.3635 92.6382 run33.mat 140 4 1202 1996118 2006465 +3979662 3994399 14738 7502420.1772 7503156.513 -75.8663 3.3635 92.6742 run33.mat 140 4 1202 2006619 2013988 +4078717 4083671 4955 7507373.1223 7507619.9837 -75.8672 3.3619 94.1289 run33.mat 140 4 1203 2056148 2058625 +4083999 4104693 20695 7507636.26 7508671.4749 -77.5158 3.3631 92.5877 run33.mat 140 4 1203 2058790 2069137 +4105001 4125676 20676 7508687.0022 7509719.9313 -79.1694 3.3622 92.5595 run33.mat 140 4 1203 2069291 2079629 +4125985 4146693 20709 7509735.2618 7510769.7511 -80.8164 3.3629 92.6306 run33.mat 140 4 1203 2079784 2090138 +4147001 4167662 20662 7510785.1576 7511820.5122 -82.468 3.3616 92.5731 run33.mat 140 4 1203 2090292 2100623 +4167975 4174500 6526 7511836.1652 7512162.5106 -82.4625 5.0435 92.6149 run33.mat 140 4 1203 2100780 2104042 +4258861 4272201 13341 7516379.8833 7517047.75 -82.4707 5.0477 93.1682 run33.mat 140 4 1204 2146225 2152895 +4272522 4293214 20693 7517063.6808 7518097.1853 -80.8181 5.046 92.4549 run33.mat 140 4 1204 2153055 2163411 +4293521 4314213 20693 7518112.6622 7519148.1191 -79.1725 5.0465 92.5261 run33.mat 140 4 1204 2163555 2173902 +4314520 4335212 20693 7519163.3503 7520195.819 -77.519 5.0462 92.5564 run33.mat 140 4 1204 2174055 2184402 +4335520 4354779 19260 7520211.0998 7521174.7393 -75.8708 5.0466 92.6864 run33.mat 140 4 1204 2184556 2194186 +4439103 4439607 505 7525391.4072 7525416.4122 -75.8942 5.0499 99.2104 run33.mat 140 4 1205 2236350 2236602 +4439931 4460573 20643 7525432.4868 7526465.857 -74.2226 5.0461 92.7124 run33.mat 140 4 1205 2236764 2247085 +4460881 4481553 20673 7526481.2634 7527513.6597 -72.5719 5.0456 92.5313 run33.mat 140 4 1205 2247239 2257576 +4481863 4502558 20696 7527529.0397 7528565.6993 -70.9202 5.0459 92.5765 run33.mat 140 4 1205 2257731 2268078 +4502872 4523554 20683 7528581.3065 7529613.8073 -69.2714 5.0451 92.5461 run33.mat 140 4 1205 2268235 2278577 +4523864 4534878 11015 7529629.3105 7530180.1421 -67.6225 5.0434 92.8037 run33.mat 140 4 1205 2278732 2284239 +4621285 4629976 8692 7534500.6579 7534936.0052 -67.6176 5.0466 93.449 run33.mat 140 4 1206 2327444 2331790 +4630284 4650974 20691 7534951.5326 7535984.4707 -65.9728 5.0458 92.4773 run33.mat 140 4 1206 2331944 2342290 +4651281 4671995 20715 7535999.9476 7537035.3046 -64.3214 5.0454 92.5952 run33.mat 140 4 1206 2342443 2352801 +4672300 4692974 20675 7537050.4366 7538085.8016 -62.6723 5.0456 92.5483 run33.mat 140 4 1206 2352953 2363290 +4693282 4713951 20670 7538101.3289 7539134.1064 -61.0216 5.0449 92.6435 run33.mat 140 4 1206 2363444 2373779 +4714259 4717059 2801 7539149.5093 7539289.5363 -59.3701 5.0484 92.6211 run33.mat 140 4 1206 2373933 2375333 +4801297 4818244 16948 7543502.5044 7544348.0917 -59.3734 5.0473 92.8887 run33.mat 140 4 1207 2417455 2425928 +4818564 4839256 20693 7544364.0948 7545400.8748 -57.7258 5.0443 92.5801 run33.mat 140 4 1207 2426088 2436435 +4839563 4860255 20693 7545416.1669 7546450.6308 -56.0758 5.0464 92.6689 run33.mat 140 4 1207 2436588 2446935 +4860562 4881235 20674 7546466.1077 7547498.3776 -54.4239 5.0459 92.5847 run33.mat 140 4 1207 2447088 2457425 +4881542 4897097 15556 7547513.8576 7548291.9294 -52.7824 5.0456 92.7361 run33.mat 140 4 1207 2457579 2465356 +4981611 4985790 4180 7552517.4565 7552727.6124 -52.7793 5.0449 93.8242 run33.mat 140 4 1208 2507616 2509705 +4986106 5006780 20675 7552743.4155 7553775.3213 -51.1292 5.047 92.5098 run33.mat 140 4 1208 2509863 2520200 +5007087 5027798 20712 7553790.6745 7554827.7691 -49.4814 5.0468 92.6042 run33.mat 140 4 1208 2520354 2530710 +5028106 5048796 20691 7554843.2964 7555878.6915 -47.8298 5.0454 92.6092 run33.mat 140 4 1208 2530864 2541209 +5049105 5069760 20656 7555894.1445 7556923.2 -46.1818 5.0458 92.61 run33.mat 140 4 1208 2541364 2551692 +5070071 5077398 7328 7556938.7533 7557306.3253 -44.5318 5.0467 92.8775 run33.mat 140 4 1208 2551847 2555511 +5161629 5174142 12514 7561520.0786 7562144.5771 -44.5317 5.0453 93.1711 run33.mat 140 4 1209 2597629 2603885 +5174461 5195159 20699 7562160.5333 7563195.6984 -42.8778 5.0452 92.5763 run33.mat 140 4 1209 2604045 2614394 +5195466 5216140 20675 7563211.0515 7564245.0085 -41.2311 5.046 92.5791 run33.mat 140 4 1209 2614548 2624885 +5216445 5237144 20700 7564260.2617 7565294.7602 -39.5807 5.0456 92.5761 run33.mat 140 4 1209 2625037 2635387 +5237458 5257517 20060 7565310.3418 7566314.3526 -37.9344 5.0467 92.6732 run33.mat 140 4 1209 2635544 2645574 +5341892 5362472 20581 7570531.2193 7571562.5168 -36.2862 5.0464 92.8685 run33.mat 140 4 1210 2687763 2698054 +5362784 5383466 20683 7571578.1198 7572612.3366 -34.6314 5.0437 92.5392 run33.mat 140 4 1210 2698210 2708552 +5383776 5404482 20707 7572627.7166 7573661.134 -32.9843 5.0473 92.574 run33.mat 140 4 1210 2708707 2719060 +5404789 5425463 20675 7573676.3652 7574711.6826 -31.3363 5.0456 92.6534 run33.mat 140 4 1210 2719214 2729551 +5425771 5437597 11827 7574727.1907 7575317.2822 -29.6879 5.0467 92.7375 run33.mat 140 4 1210 2729705 2735618 +5521878 5529821 7944 7579529.9463 7579928.0836 -29.6904 5.0442 93.4496 run33.mat 140 4 1211 2777761 2781732 +5530133 5550821 20689 7579943.6868 7580978.344 -28.0351 5.0453 92.5144 run33.mat 140 4 1211 2781888 2792233 +5551129 5571822 20694 7580993.7472 7582030.5444 -26.3914 5.0462 92.5311 run33.mat 140 4 1211 2792387 2802734 +5572128 5592820 20693 7582045.7259 7583078.2443 -24.7407 5.047 92.5873 run33.mat 140 4 1211 2802887 2813233 +5593129 5613799 20671 7583093.5747 7584127.2183 -23.0914 5.0471 92.7243 run33.mat 140 4 1211 2813388 2823723 +5614108 5617717 3610 7584142.5487 7584322.3216 -21.4477 5.0474 93.0367 run33.mat 140 4 1211 2823878 2825682 +5701976 5718103 16128 7588536.9917 7589343.5595 -21.4421 5.045 92.8978 run33.mat 140 4 1212 2867814 2875878 +5718413 5739105 20693 7589359.0627 7590391.87 -19.7896 5.0455 92.5802 run33.mat 140 4 1212 2876033 2886379 +5739411 5760105 20695 7590407.1729 7591444.2087 -18.1418 5.0457 92.5592 run33.mat 140 4 1212 2886532 2896879 +5760412 5781104 20693 7591459.6856 7592491.8736 -16.4905 5.045 92.5773 run33.mat 140 4 1212 2897033 2907379 +5781411 5797756 16346 7592507.1048 7593326.0206 -14.8436 5.0458 92.6642 run33.mat 140 4 1212 2907533 2915706 +5882268 5885621 3354 7597551.8004 7597720.8691 -14.841 5.0467 94.5963 run33.mat 140 4 1213 2957963 2959640 +5885933 5906645 20713 7597736.5981 7598769.4085 -13.1918 5.0468 92.5305 run33.mat 140 4 1213 2959796 2970152 +5906951 5927654 20704 7598784.5931 7599821.7584 -11.5423 5.0435 92.6946 run33.mat 140 4 1213 2970305 2980657 +5927974 5948625 20652 7599837.7645 7600869.0845 -9.894 5.046 92.6002 run33.mat 140 4 1213 2980817 2991144 +5948934 5969626 20693 7600884.6622 7601919.8004 -8.2451 5.0446 92.5968 run33.mat 140 4 1213 2991298 3001644 +5969930 5978055 8126 7601935.126 7602342.5087 -6.5949 5.0455 92.7126 run33.mat 140 4 1213 3001796 3005859 +6062360 6073971 11612 7606555.9812 7607136.9952 -6.5941 5.0468 93.1138 run33.mat 140 4 1214 3048013 3053820 +6074282 6094965 20684 7607152.6737 7608188.6649 -4.9455 5.0457 92.4999 run33.mat 140 4 1214 3053975 3064317 +6095272 6115946 20675 7608204.0179 7609236.0442 -3.2986 5.0467 92.5813 run33.mat 140 4 1214 3064470 3074807 +6116257 6136959 20703 7609251.6002 7610286.9804 -1.6505 5.046 92.6024 run33.mat 140 4 1214 3074963 3085315 +6137268 6157928 20661 7610302.4336 7611335.3255 -0.0044989 5.0451 92.655 run33.mat 140 4 1214 3085469 3095800 +6242364 6262328 19965 7615557.0353 7616554.2134 1.6451 5.0467 92.878 run33.mat 140 4 1215 3138019 3148002 +6262643 6283324 20682 7616569.97 7617605.9129 3.2929 5.0462 92.6048 run33.mat 140 4 1215 3148159 3158500 +6283631 6304324 20694 7617621.3929 7618655.5484 4.9431 5.0461 92.5429 run33.mat 140 4 1215 3158654 3169001 +6304631 6325325 20695 7618670.8389 7619704.1051 6.5916 5.046 92.6041 run33.mat 140 4 1215 3169154 3179502 +6325632 6338276 12645 7619719.582 7620351.6116 8.2459 5.0465 92.5843 run33.mat 140 4 1215 3179655 3185978 +6422592 6429676 7085 7624568.4017 7624923.7136 8.248 5.0434 93.3523 run33.mat 140 4 1216 3228137 3231679 +6430004 6450668 20665 7624940.152 7625973.2935 9.891 5.0457 92.5676 run33.mat 140 4 1216 3231844 3242176 +6450980 6471666 20687 7625988.7728 7627021.1636 11.5427 5.0451 92.6095 run33.mat 140 4 1216 3242332 3252675 +6471972 6492665 20694 7627036.3482 7628073.0476 13.1913 5.0459 92.572 run33.mat 140 4 1216 3252828 3263175 +6492971 6513630 20660 7628088.2262 7629119.1191 14.844 5.0449 92.6669 run33.mat 140 4 1216 3263328 3273659 +6513934 6518375 4442 7629134.2044 7629357.1377 16.4944 5.0471 92.8393 run33.mat 140 4 1216 3273811 3276031 +6602837 6618168 15332 7633578.9975 7634345.7771 16.493 5.0448 93.0077 run33.mat 140 4 1217 3318264 3325930 +6618500 6639166 20667 7634362.3803 7635396.4844 18.143 5.0453 92.5734 run33.mat 140 4 1217 3326096 3336429 +6639473 6660166 20694 7635411.7156 7636446.3951 19.7914 5.046 92.5393 run33.mat 140 4 1217 3336583 3346930 +6660474 6681166 20693 7636461.6759 7637498.5084 21.4391 5.0445 92.617 run33.mat 140 4 1217 3347084 3357430 +6681472 6698635 17164 7637513.8113 7638369.4162 23.0879 5.0463 92.6297 run33.mat 140 4 1217 3357583 3366165 +6782916 6785518 2603 7642584.3285 7642714.4827 23.0865 5.0457 96.0695 run33.mat 140 4 1218 3408307 3409608 +6785834 6806526 20693 7642730.2893 7643763.1224 24.7371 5.0469 92.5226 run33.mat 140 4 1218 3409766 3420113 +6806833 6827526 20694 7643778.4526 7644815.4229 26.389 5.0454 92.6061 run33.mat 140 4 1218 3420266 3430613 +6827836 6848509 20674 7644830.9288 7645865.029 28.0307 5.0462 92.585 run33.mat 140 4 1218 3430768 3441105 +6848822 6869507 20686 7645880.5609 7646915.2154 29.6853 5.0456 92.6305 run33.mat 140 4 1218 3441262 3451605 +6869815 6878755 8941 7646930.7427 7647376.5728 31.3289 5.0467 92.7499 run33.mat 140 4 1218 3451759 3456229 +6963089 6973895 10807 7651593.9049 7652134.0861 31.3327 5.0458 93.2246 run33.mat 140 4 1219 3498398 3503801 +6974216 6994888 20673 7652150.0151 7653183.8855 32.9813 5.0468 92.5046 run33.mat 140 4 1219 3503961 3514298 +6995194 7015905 20712 7653199.4874 7654234.5167 34.6289 5.0452 92.5949 run33.mat 140 4 1219 3514451 3524807 +7016214 7036893 20680 7654250.0976 7655284.6949 36.2836 5.0455 92.6138 run33.mat 140 4 1219 3524961 3535301 +7037204 7057868 20665 7655300.2326 7656332.0702 37.9321 5.046 92.7088 run33.mat 140 4 1219 3535457 3545789 +7058175 7058874 700 7656347.5502 7656382.7963 39.5867 5.0402 91.9919 run33.mat 140 4 1219 3545943 3546292 +7143235 7162377 19143 7660600.591 7661557.6602 39.5833 5.0457 93.0533 run33.mat 140 4 1220 3588475 3598046 +7162696 7183368 20673 7661573.7207 7662607.4601 41.2296 5.0456 92.56 run33.mat 140 4 1220 3598206 3608542 +7183674 7204370 20697 7662622.7633 7663657.0353 42.8771 5.0455 92.512 run33.mat 140 4 1220 3608695 3619044 +7204677 7225368 20692 7663672.2665 7664708.1101 44.5321 5.0464 92.5828 run33.mat 140 4 1220 3619197 3629543 +7225673 7238994 13322 7664723.4893 7665390.4636 46.1807 5.0452 92.6934 run33.mat 140 4 1220 3629695 3636356 +7323304 7329714 6411 7669603.0369 7669925.9653 46.1751 5.0474 93.9159 run33.mat 140 4 1221 3678513 3681718 +7330025 7350727 20703 7669941.3949 7670975.5239 47.8305 5.0442 92.537 run33.mat 140 4 1221 3681874 3692225 +7351034 7371715 20682 7670990.8771 7672024.5733 49.4779 5.046 92.5996 run33.mat 140 4 1221 3692379 3702720 +7372026 7392726 20701 7672040.2519 7673076.0327 51.1285 5.0457 92.5549 run33.mat 140 4 1221 3702875 3713226 +7393037 7413692 20656 7673091.5887 7674122.5522 52.7782 5.045 92.6619 run33.mat 140 4 1221 3713381 3723709 +7414010 7419094 5085 7674138.4553 7674392.709 54.4212 5.046 92.9797 run33.mat 140 4 1221 3723868 3726410 +7503352 7518077 14726 7678607.6899 7679343.7544 54.4253 5.0448 93.1331 run33.mat 140 4 1222 3768541 3775904 +7518398 7539073 20676 7679359.9371 7680394.1504 56.0728 5.0457 92.5902 run33.mat 140 4 1222 3776065 3786402 +7539382 7560067 20686 7680409.6037 7681442.5969 57.7281 5.0472 92.5329 run33.mat 140 4 1222 3786557 3796900 +7560375 7581069 20695 7681458.1242 7682492.4925 59.3686 5.0464 92.5743 run33.mat 140 4 1222 3797054 3807401 +7581374 7599114 17741 7682507.7484 7683393.2808 61.0219 5.0463 92.7015 run33.mat 140 4 1222 3807554 3816424 +7683324 7685408 2085 7687605.7241 7687709.6713 61.0305 5.0521 96.9588 run33.mat 140 4 1223 3858531 3859573 +7685717 7706389 20673 7687725.0048 7688758.0988 62.6679 5.0465 92.5978 run33.mat 140 4 1223 3859727 3870079 +7706696 7727386 20691 7688773.5789 7689808.3939 64.3159 5.0468 92.6496 run33.mat 140 4 1223 3870217 3880563 +7727695 7748370 20676 7689823.7244 7690858.9387 65.9666 5.046 92.5796 run33.mat 140 4 1223 3880718 3891056 +7748677 7769370 20694 7690874.2919 7691909.1992 67.6189 5.0465 92.5835 run33.mat 140 4 1223 3891209 3901556 +7769675 7779213 9539 7691924.3614 7692400.4005 69.2649 5.0462 92.8046 run33.mat 140 4 1223 3901708 3906477 +7863585 7873859 10275 7696619.4901 7697132.4799 69.2642 5.0441 93.3458 run33.mat 140 4 1224 3948665 3953803 +7874180 7894870 20691 7697148.4056 7698185.6144 70.9169 5.0453 92.5636 run33.mat 140 4 1224 3953963 3964309 +7895177 7915868 20692 7698201.1533 7699233.6562 72.569 5.0458 92.5672 run33.mat 140 4 1224 3964462 3974808 +7916176 7936868 20693 7699248.9401 7700283.6644 74.2202 5.0454 92.5662 run33.mat 140 4 1224 3974962 3985309 +7937176 7957844 20669 7700298.9452 7701332.3348 75.8671 5.0464 92.7013 run33.mat 140 4 1224 3985463 3995797 +7958152 7959333 1182 7701347.6156 7701406.2086 77.5095 5.0464 93.6559 run33.mat 140 4 1224 3995951 3996542 +8043555 8062239 18685 7705619.8778 7706553.463 77.5185 5.045 93.1531 run33.mat 140 4 1225 4038655 4047997 +8062554 8083230 20677 7706569.216 7707600.4561 79.1677 5.0451 92.661 run33.mat 140 4 1225 4048154 4058493 +8083539 8104229 20691 7707615.7896 7708650.6864 80.8172 5.0449 92.6315 run33.mat 140 4 1225 4058647 4068993 +8104537 8124882 20346 7708666.2138 7709682.4679 82.4645 5.0456 92.6072 run33.mat 140 4 1225 4069147 4079319 +320814 359363 38550 7836957.9954 7838884.9182 41.2288 -21.0365 4.4189 run34.mat 1 4 1227 161907 181182 +437843 462681 24839 7842809.5642 7844050.1481 41.23 -21.0358 5.7822 run34.mat 11 4 1228 220423 232843 +542389 562057 19669 7848034.8637 7849018.6137 41.2302 -21.0367 6.4539 run34.mat 21 4 1229 272699 282533 +641078 660859 19782 7852972.0117 7853958.3035 41.2285 -21.0361 5.8883 run34.mat 31 4 1230 322046 331936 +741886 761662 19777 7858010.7924 7859001.9853 41.2283 -21.0379 5.451 run34.mat 41 4 1231 372452 382340 +842388 862212 19825 7863036.717 7864026.1656 41.2296 -21.037 5.108 run34.mat 51 4 1232 422705 432618 +942898 962656 19759 7868061.1769 7869048.6279 41.2292 -21.0372 4.8552 run34.mat 61 4 1233 472962 482841 +1043214 1063000 19787 7873077.567 7874066.5497 41.2282 -21.0361 4.6571 run34.mat 71 4 1234 523122 533016 +1145806 1165587 19782 7878207.2742 7879196.4858 41.2297 -21.0352 4.4612 run34.mat 81 4 1235 574421 584312 +1248253 1268032 19780 7883328.1834 7884317.9738 41.2257 -21.0362 4.2964 run34.mat 91 4 1236 625646 635536 +1350613 1370433 19821 7888446.9456 7889438.3112 41.2332 -21.0361 4.161 run34.mat 101 4 1237 676829 686739 +1453374 1472928 19555 7893586.9681 7894564.4345 41.2301 -21.0362 4.0074 run34.mat 111 4 1238 728211 737989 +1557898 1577399 19502 7898811.1333 7899788.6067 41.2351 -21.0361 3.9026 run34.mat 121 4 1239 780476 790227 +1662381 1681866 19486 7904035.7347 7905012.652 41.2292 -21.037 3.8172 run34.mat 131 4 1240 832720 842462 +1766678 1786189 19512 7909252.1875 7910227.6209 41.2323 -21.0365 3.734 run34.mat 141 4 1241 884871 894626 +1870916 1890718 19803 7914463.4455 7915451.8668 41.2253 -21.0357 3.6735 run34.mat 151 4 1242 936991 946893 +1975459 1994999 19541 7919692.1531 7920667.416 41.2294 -21.0364 3.5819 run34.mat 161 4 1243 989265 999036 +2080034 2095320 15287 7924920.0474 7925683.8685 41.2295 -21.0361 3.5155 run34.mat 171 4 1244 1041555 1049205 +2095571 2099449 3879 7925696.4211 7925889.9325 41.231 -21.0386 3.4735 run34.mat 171 4 1244 1049324 1051263 +2184598 2203977 19380 7930148.3054 7931118.8079 41.2301 -21.0373 3.4436 run34.mat 181 4 1245 1093839 1103529 +2291118 2310540 19423 7935475.3202 7936447.0754 41.2302 -21.0372 3.3787 run34.mat 191 4 1246 1147102 1156813 +2397543 2417070 19528 7940795.1017 7941771.7614 41.2341 -21.0358 3.3086 run34.mat 201 4 1247 1200317 1210080 +2504146 2513815 9670 7946125.0857 7946610.1357 41.2255 -21.0355 3.2628 run34.mat 211 4 1248 1253620 1258455 +2514153 2523522 9370 7946627.0392 7947094.9439 41.2319 -21.0351 3.2107 run34.mat 211 4 1248 1258624 1263309 +2612705 2632153 19449 7951553.7374 7952527.2152 41.231 -21.0359 3.1721 run34.mat 221 4 1249 1307902 1317627 +357019 359140 2122 8033903.0312 8034008.2604 41.2218 -0.0034661 7.7006 run35.mat 1 3 1251 188700 189760 +359406 360618 1213 8034021.4574 8034081.5884 41.2297 -0.023128 7.4962 run35.mat 1 3 1251 189893 190499 +360888 368482 7595 8034094.9839 8034473.3932 41.2245 -0.0015315 7.9794 run35.mat 1 3 1251 190634 194431 +368734 369533 800 8034485.9958 8034526.119 41.2317 -0.015314 7.9816 run35.mat 1 3 1251 194557 194957 +369871 370681 811 8034543.1622 8034584.0052 41.229 0.014437 7.6472 run35.mat 1 3 1251 195126 195531 +370934 373436 2503 8034596.7624 8034722.9221 41.2269 -0.015835 7.8251 run35.mat 1 3 1251 195657 196908 +373709 374400 692 8034736.6878 8034771.2838 41.2303 0.016631 7.7477 run35.mat 1 3 1251 197045 197390 +374663 377533 2871 8034784.3347 8034926.7523 41.2253 0.0052287 7.3355 run35.mat 1 3 1251 197522 198957 +377871 382761 4891 8034943.5248 8035188.3184 41.2251 -0.0074922 7.364 run35.mat 1 3 1251 199126 201571 +383015 383133 119 8035201.0721 8035206.9971 41.2947 -0.020985 7.5357 run35.mat 1 3 1251 201698 201757 +383471 386733 3263 8035223.9686 8035388.2442 41.2394 -0.0021836 7.2102 run35.mat 1 3 1251 201926 203557 +387071 389133 2063 8035405.2839 8035509.2363 41.2225 0.011019 6.852 run35.mat 1 3 1251 203726 204757 +389471 390081 611 8035526.1288 8035556.3927 41.2432 -0.0016878 7.0629 run35.mat 1 3 1251 204926 205231 +390348 390491 144 8035569.6394 8035576.7341 41.2443 -0.010349 5.6955 run35.mat 1 3 1251 205365 205436 +390793 391133 341 8035591.7172 8035608.5856 41.2309 -0.016587 7.0527 run35.mat 1 3 1251 205587 205757 +391471 391817 347 8035625.3548 8035642.5209 41.2198 0.0034537 6.1503 run35.mat 1 3 1251 205926 206099 +392088 392333 246 8035655.9661 8035668.1213 41.247 -0.011451 7.1904 run35.mat 1 3 1251 206235 206357 +392671 392733 63 8035684.8905 8035687.9665 41.2017 0.045579 6.203 run35.mat 1 3 1251 206526 206557 +393279 393533 255 8035715.0552 8035727.6569 41.2693 -0.010348 7.2285 run35.mat 1 3 1251 206830 206957 +393871 395362 1492 8035744.4261 8035818.8108 41.2231 -0.023744 7.1271 run35.mat 1 3 1251 207126 207872 +395624 399533 3910 8035831.9135 8036027.5728 41.2261 0.02168 6.9334 run35.mat 1 3 1251 208003 209957 +399871 400562 692 8036044.616 8036079.4587 41.2366 0.0012328 6.8691 run35.mat 1 3 1251 210126 210472 +400823 400888 66 8036092.6192 8036095.8967 41.2183 0.16374 6.409 run35.mat 1 3 1251 210602 210635 +401144 402032 889 8036108.8052 8036153.5813 41.2226 -0.0068036 6.4717 run35.mat 1 3 1251 210763 211207 +402341 408333 5993 8036169.1622 8036467.8553 41.2269 -0.0090845 6.8909 run35.mat 1 3 1251 211361 214358 +408738 413133 4396 8036487.9486 8036709.2081 41.2287 -0.012873 7.2748 run35.mat 1 3 1251 214560 216758 +413471 414333 863 8036726.2478 8036769.6024 41.2257 -0.0069321 7.3465 run35.mat 1 3 1251 216927 217358 +414671 417789 3119 8036786.5057 8036942.4357 41.2294 0.0091767 7.3216 run35.mat 1 3 1251 217527 219086 +418108 420473 2366 8036958.3887 8037076.2001 41.235 -0.0074696 7.189 run35.mat 1 3 1251 219245 220428 +420811 422333 1523 8037092.9726 8037168.4986 41.2169 -0.014321 7.2147 run35.mat 1 3 1251 220597 221358 +422671 423549 879 8037185.2711 8037228.84 41.2463 0.0082093 7.2426 run35.mat 1 3 1251 221527 221966 +423870 426333 2464 8037244.769 8037368.583 41.2342 -0.0029343 7.3327 run35.mat 1 3 1251 222126 223358 +426671 428333 1663 8037385.6227 8037469.4098 41.228 0.011438 7.2487 run35.mat 1 3 1251 223527 224358 +428671 428831 161 8037486.4495 8037494.5156 41.2791 0.021694 6.9444 run35.mat 1 3 1251 224527 224607 +429084 430473 1390 8037507.2702 8037576.8249 41.2137 -0.013815 7.2162 run35.mat 1 3 1251 224733 225428 +430811 432540 1730 8037593.732 8037680.218 41.2227 0.024341 7.3153 run35.mat 1 3 1251 225597 226462 +432793 434333 1541 8037692.8733 8037769.8002 41.2331 -0.013142 7.4299 run35.mat 1 3 1251 226588 227358 +434862 435361 500 8037796.0454 8037820.8023 41.2002 -0.074359 7.2714 run35.mat 1 3 1251 227623 227872 +435620 436073 454 8037833.6521 8037856.1268 41.2461 0.018879 7.4503 run35.mat 1 3 1251 228002 228228 +436411 436677 267 8037872.896 8037886.0931 41.2049 -0.038553 7.4329 run35.mat 1 3 1251 228397 228530 +436938 442891 5954 8037899.0421 8038197.4498 41.2248 0.0021431 7.3475 run35.mat 1 3 1251 228661 231638 +443196 453065 9870 8038212.829 8038706.3345 41.2259 -0.0028079 7.3265 run35.mat 1 3 1251 231790 236724 +521031 522361 1331 8042100.5027 8042167.5525 41.239 0.019963 10.3463 run35.mat 1 3 1252 270709 271374 +522614 537107 14494 8042180.3071 8042908.4117 41.2232 -0.0037684 10.8125 run35.mat 1 3 1252 271501 278747 +537425 555814 18390 8042924.379 8043842.9183 41.2271 -0.0065416 9.6316 run35.mat 1 3 1252 278906 288101 +556152 562992 6841 8043859.9581 8044202.3271 41.2298 -0.006085 8.7169 run35.mat 1 3 1252 288270 291690 +563244 564880 1637 8044214.8321 8044296.0151 41.2271 0.0087401 8.6695 run35.mat 1 3 1252 291816 292634 +565134 565374 241 8044308.7885 8044320.8877 41.2232 0.019673 7.615 run35.mat 1 3 1252 292762 292882 +565712 569852 4141 8044337.9274 8044546.6388 41.227 0.0057955 8.3082 run35.mat 1 3 1252 293051 295121 +570103 576614 6512 8044559.1133 8044882.8177 41.2249 -0.0049325 7.8716 run35.mat 1 3 1252 295246 298502 +576952 579374 2423 8044899.7212 8045020.8464 41.2217 -0.011856 7.629 run35.mat 1 3 1252 298671 299882 +579712 580184 473 8045037.7499 8045061.1693 41.2251 -0.022085 7.6098 run35.mat 1 3 1252 300051 300287 +580493 581508 1016 8045076.4997 8045126.8569 41.2198 -0.02541 7.6966 run35.mat 1 3 1252 300441 300949 +581765 582574 810 8045139.6075 8045179.7444 41.22 -0.061453 7.4813 run35.mat 1 3 1252 301077 301482 +582912 586650 3739 8045196.5136 8045383.5022 41.2235 -0.0021353 7.3953 run35.mat 1 3 1252 301651 303520 +587024 588432 1409 8045402.3606 8045473.357 41.2292 0.0045744 7.0417 run35.mat 1 3 1252 303707 304411 +588685 590367 1683 8045486.1142 8045570.6563 41.2264 -0.01679 6.789 run35.mat 1 3 1252 304538 305379 +590630 590982 353 8045583.8088 8045601.4122 41.2179 -0.0048651 7.0015 run35.mat 1 3 1252 305510 305686 +591244 591309 66 8045614.5147 8045617.7653 41.2941 0.11409 6.8888 run35.mat 1 3 1252 305817 305850 +591570 591623 54 8045630.8178 8045633.4684 41.2137 -0.10214 8.5403 run35.mat 1 3 1252 305980 306007 +591873 592711 839 8045645.9708 8045687.8788 41.2288 -0.0071791 7.7899 run35.mat 1 3 1252 306132 306551 +592974 593762 789 8045701.0314 8045740.4389 41.2189 -0.0062493 7.3117 run35.mat 1 3 1252 306682 307076 +594039 595141 1103 8045754.2916 8045809.3095 41.2314 -0.040243 7.1246 run35.mat 1 3 1252 307215 307765 +595405 595890 486 8045822.4048 8045846.4623 41.2255 -0.047924 6.6753 run35.mat 1 3 1252 307897 308140 +596160 596754 595 8045859.8552 8045889.3194 41.2141 -0.01708 6.5575 run35.mat 1 3 1252 308275 308572 +597092 597172 81 8045906.0853 8045910.0536 41.244 -0.10846 4.8628 run35.mat 1 3 1252 308741 308781 +597473 601836 4364 8045924.9841 8046142.1892 41.2179 0.0002761 6.5852 run35.mat 1 3 1252 308931 311113 +602279 603491 1213 8046164.3485 8046224.9737 41.2201 -0.012993 6.8185 run35.mat 1 3 1252 311334 311940 +603757 604238 482 8046238.2793 8046262.3393 41.2133 0.00088823 6.322 run35.mat 1 3 1252 312073 312314 +604499 607134 2636 8046275.3947 8046408.1593 41.2235 -0.011269 6.2392 run35.mat 1 3 1252 312444 313762 +607472 607554 83 8046425.2025 8046429.3372 41.1961 0.08285 7.2437 run35.mat 1 3 1252 313932 313973 +607898 608174 277 8046446.6829 8046460.5998 41.2409 0.033575 5.5739 run35.mat 1 3 1252 314145 314283 +608512 608979 468 8046477.643 8046501.1908 41.2487 0.02679 6.2194 run35.mat 1 3 1252 314452 314685 +609314 609977 664 8046518.0827 8046551.4026 41.223 0.0089861 6.3772 run35.mat 1 3 1252 314853 315184 +610248 610354 107 8046564.9552 8046570.2562 41.2518 0.051431 5.6187 run35.mat 1 3 1252 315320 315373 +610692 610767 76 8046587.1595 8046590.9102 41.2881 0.12577 5.0346 run35.mat 1 3 1252 315542 315579 +611073 611681 609 8046606.2131 8046636.619 41.2277 -6.4463e-05 5.6855 run35.mat 1 3 1252 315732 316036 +611934 612091 158 8046649.2714 8046657.1229 41.2978 0.035497 6.3243 run35.mat 1 3 1252 316163 316241 +612394 612894 501 8046672.2758 8046697.2806 41.2212 0.017783 6.0817 run35.mat 1 3 1252 316393 316643 +613477 614109 633 8046726.4362 8046758.0423 41.224 -0.0021521 6.1826 run35.mat 1 3 1252 316934 317250 +614676 615373 698 8046786.3978 8046821.2548 41.2167 -0.052935 6.2702 run35.mat 1 3 1252 317534 317882 +615634 615829 196 8046834.3076 8046844.0596 41.1699 0.039106 6.6391 run35.mat 1 3 1252 318013 318110 +616144 616174 31 8046859.8129 8046861.3132 41.2492 0.094985 7.224 run35.mat 1 3 1252 318268 318283 +616572 616574 3 8046881.2173 8046881.3174 41.1445 -0.050781 5.9619 run35.mat 1 3 1252 318482 318483 +616912 616993 82 8046898.2209 8046902.2717 41.1863 0.027129 6.2679 run35.mat 1 3 1252 318652 318692 +684911 685001 91 8050298.0415 8050302.5245 41.2807 0.052526 8.4961 run35.mat 1 3 1253 352653 352698 +753044 804894 51851 8053704.52 8056295.058 41.2267 -0.0038609 9.7567 run35.mat 11 3 1254 386721 412646 +805232 826911 21680 8056311.8305 8057397.2893 41.2249 -0.009038 9.7604 run35.mat 11 3 1254 412815 423656 +827169 849266 22098 8057410.0895 8058515.3869 41.2276 -0.0012224 9.7631 run35.mat 11 3 1254 423785 434834 +917310 918202 893 8061916.1146 8061960.7232 41.2151 0.005322 10.2052 run35.mat 11 3 1255 468857 469303 +918534 918711 178 8061977.3264 8061986.1781 41.1975 -0.0046513 10.0333 run35.mat 11 3 1255 469469 469558 +918966 919410 445 8061998.9306 8062021.1348 41.2061 0.0032992 9.4816 run35.mat 11 3 1255 469685 469907 +919666 921480 1815 8062033.9373 8062124.8588 41.2263 -0.0047036 9.7718 run35.mat 11 3 1255 470035 470942 +921735 922052 318 8062137.7168 8062153.7011 41.2409 -0.033995 9.9316 run35.mat 11 3 1255 471070 471228 +922313 936951 14639 8062166.8616 8062898.7175 41.2255 -0.0049698 9.7196 run35.mat 11 3 1255 471359 478678 +937254 948114 10861 8062913.9927 8063457.8587 41.2267 0.0048287 9.782 run35.mat 11 3 1255 478830 484260 +948452 948923 472 8063474.6279 8063497.9956 41.21 -0.011078 10.2029 run35.mat 11 3 1255 484429 484665 +949236 951795 2560 8063513.5245 8063641.1373 41.2206 -0.010567 9.9671 run35.mat 11 3 1255 484821 486100 +1019715 1020549 835 8067038.1849 8067080.2297 41.2273 0.016315 11.359 run35.mat 21 3 1256 520062 520479 +1020805 1031083 10279 8067093.1355 8067607.2024 41.2253 -0.0036769 10.9479 run35.mat 21 3 1256 520607 525746 +1031335 1031401 67 8067619.8072 8067623.1085 41.2261 0.0014051 18.3578 run35.mat 21 3 1256 525872 525905 +1031657 1032528 872 8067635.9134 8067679.4802 41.2238 -0.011539 11.17 run35.mat 21 3 1256 526033 526469 +1032846 1036063 3218 8067695.3863 8067856.2982 41.2296 -0.011032 10.963 run35.mat 21 3 1256 526628 528236 +1036314 1048923 12610 8067868.7951 8068498.5332 41.2256 -0.0067497 10.9517 run35.mat 21 3 1256 528362 534667 +1049173 1054200 5028 8068510.9365 8068762.4277 41.2288 0.002218 11.0453 run35.mat 21 3 1256 534792 537305 +1054456 1056152 1697 8068775.3335 8068860.8346 41.225 -0.0062467 10.9909 run35.mat 21 3 1256 537433 538281 +1056404 1115763 59360 8068873.5388 8071839.3822 41.2282 -0.0029041 10.9595 run35.mat 21 3 1256 538407 568088 +1183604 1190199 6596 8075232.3376 8075563.6394 41.2264 -0.0037321 11.0765 run35.mat 21 3 1257 602010 605308 +1257866 1354004 96139 8078944.5309 8083753.6168 41.2275 -0.0020221 9.9947 run35.mat 30.8577 3 1258 639143 687214 +1421820 1428449 6630 8087143.6403 8087476.8122 41.2287 -0.0044648 9.9939 run35.mat 31 3 1259 721123 724438 +1496203 1585951 89749 8090861.4025 8095349.8838 41.2272 -0.0047316 9.2687 run35.mat 40.6755 3 1260 758317 803192 +1586260 1592203 5944 8095365.4616 8095665.0684 41.2241 0.0010564 9.3032 run35.mat 41 3 1260 803347 806319 +1660070 1666880 6811 8099056.0083 8099395.4622 41.2269 -0.002026 9.3361 run35.mat 41 3 1261 840254 843659 +1734438 1830425 95988 8102776.0112 8107575.8558 41.2262 -0.0035673 8.7062 run35.mat 50.5188 3 1262 877439 925435 +1898317 1905132 6816 8110970.3791 8111311.2468 41.2258 -0.0026334 8.7436 run35.mat 51 3 1263 959382 962790 +1972636 2068642 96007 8114684.4495 8119483.8796 41.2261 -0.0037699 8.2444 run35.mat 61 3 1264 996544 1044549 +2138588 2145337 6750 8122983.0292 8123318.7238 41.2251 -0.0028503 8.2826 run35.mat 61 3 1265 1079523 1082898 +2214740 2239588 24849 8126790.0373 8128032.8317 41.2267 -0.004814 7.8664 run35.mat 71 3 1266 1117601 1130025 +2239839 2310763 70925 8128045.2846 8131591.1129 41.2287 -0.0029062 7.8561 run35.mat 71 3 1266 1130151 1165614 +2378796 2385499 6704 8134991.5145 8135328.0952 41.2274 -0.0094435 7.908 run35.mat 71 3 1267 1199632 1202983 +2454968 2550962 95995 8138801.1226 8143600.8982 41.228 -0.0038405 7.5304 run35.mat 80.5781 3 1268 1237720 1285719 +2621086 2627850 6765 8147107.9432 8147447.4974 41.223 -0.003292 7.5525 run35.mat 81 3 1269 1320783 1324164 +2697244 2768789 71546 8150915.4525 8154491.7695 41.2273 -0.0026014 7.2428 run35.mat 90.749 3 1270 1358863 1394638 +2769039 2793242 24204 8154504.3729 8155717.5003 41.2275 -0.0032036 7.2537 run35.mat 91 3 1270 1394763 1406865 +2861135 2867920 6786 8159111.3476 8159448.474 41.2261 -0.0048521 7.2723 run35.mat 91 3 1271 1440812 1444205 +2937411 2951628 14218 8162924.9823 8163636.0248 41.2295 -0.0031322 6.9958 run35.mat 99.8968 3 1272 1478952 1486061 +2951883 2955416 3534 8163648.7775 8163824.9202 41.2236 0.0046649 7.0237 run35.mat 101 3 1272 1486189 1487955 +2955674 2967207 11534 8163837.7204 8164413.1304 41.2263 -0.0038698 6.9999 run35.mat 101 3 1272 1488084 1493851 +2967534 2980428 12895 8164429.4839 8165075.8907 41.2274 -0.0007705 6.9955 run35.mat 101 3 1272 1494014 1500462 +2980679 3031099 50421 8165088.3435 8167610.0304 41.2282 -0.0034566 6.9972 run35.mat 101 3 1272 1500587 1525798 +3031349 3033108 1760 8167622.4336 8167709.7029 41.222 0.0041138 7.0579 run35.mat 101 3 1272 1525923 1526803 +3033363 3033381 19 8167722.3542 8167723.2473 41.1413 -0.01323 5.4875 run35.mat 101 3 1272 1526930 1526939 +3103316 3110117 6802 8171221.4861 8171561.4974 41.2244 -0.0026332 7.0218 run35.mat 101 3 1273 1561908 1565309 +3179501 3191819 12319 8175028.0985 8175643.87 41.233 -0.0058653 6.7818 run35.mat 111 3 1274 1600002 1606162 +3192069 3199079 7011 8175656.3726 8176006.9842 41.2294 -0.004955 6.7625 run35.mat 111 3 1274 1606287 1609791 +3199333 3206772 7440 8176019.6891 8176392.5574 41.2339 -0.0019512 6.7831 run35.mat 111 3 1274 1609918 1613639 +3207091 3214027 6937 8176408.6392 8176756.542 41.2221 -0.0015329 6.7685 run35.mat 111 3 1274 1613798 1617266 +3214519 3222679 8161 8176781.1468 8177188.3509 41.23 -0.00022628 6.7833 run35.mat 111 3 1274 1617512 1621592 +3222933 3236848 13916 8177201.1559 8177896.1378 41.2268 -0.0039855 6.7772 run35.mat 111 3 1274 1621719 1628677 +3237099 3273599 36501 8177908.5931 8179732.8834 41.2263 -0.0029764 6.7775 run35.mat 111 3 1274 1628802 1647053 +3273849 3275481 1633 8179745.3858 8179827.0031 41.221 -0.00038297 6.7283 run35.mat 111 3 1274 1647178 1647994 +3345434 3352242 6809 8183325.7063 8183668.1881 41.2281 -0.010114 6.7915 run35.mat 111 3 1275 1682972 1686377 +3421621 3453993 32373 8187135.4225 8188752.7307 41.2275 -0.0031003 6.5803 run35.mat 121 3 1276 1721068 1737254 +3454302 3517601 63300 8188768.0611 8191934.9895 41.2261 -0.0047052 6.5815 run35.mat 121 3 1276 1737409 1769060 +3587755 3594569 6815 8195442.0617 8195783.2146 41.2226 -0.0068236 6.6061 run35.mat 121 3 1277 1804139 1807545 +3663946 3677861 13916 8199251.1586 8199948.3948 41.2303 -0.00299 6.404 run35.mat 131 3 1278 1842235 1849193 +3678111 3722495 44385 8199960.8996 8202177.3671 41.2284 -0.0045172 6.4004 run35.mat 131 3 1278 1849318 1871511 +3722806 3749892 27087 8202193.0488 8203549.3606 41.2255 -0.0028005 6.4036 run35.mat 131 3 1278 1871666 1885210 +3750216 3759919 9704 8203565.4352 8204050.4362 41.227 -0.0056314 6.4058 run35.mat 131 3 1278 1885372 1890224 +3829881 3836727 6847 8207549.8858 8207890.9976 41.2288 -0.0012158 6.4031 run35.mat 131 3 1279 1925206 1928630 +3907908 3925897 17990 8211448.8127 8212349.0103 41.2302 -0.0040529 6.2443 run35.mat 141 3 1280 1964222 1973216 +3926218 3938101 11884 8212364.9393 8212959.9215 41.2308 -0.0046006 6.2369 run35.mat 141 3 1280 1973377 1979319 +3938353 3959681 21329 8212972.5264 8214040.1909 41.2306 -0.0016142 6.2371 run35.mat 141 3 1280 1979445 1990110 +3959984 3979242 19259 8214055.2267 8215017.568 41.2245 -0.0027479 6.2416 run35.mat 141 3 1280 1990261 1999891 +3979492 4003860 24369 8215030.0704 8216248.8125 41.225 -0.0031155 6.2497 run35.mat 141 3 1280 2000016 2012200 +4074055 4080957 6903 8219755.8754 8220103.2503 41.2248 -0.0037985 6.2561 run35.mat 141 3 1281 2047299 2050750 +4152077 4152590 514 8223660.4357 8223686.0906 41.2186 -0.0051952 6.1339 run35.mat 151 3 1282 2086312 2086568 +4152842 4229813 76972 8223698.693 8227544.8366 41.2268 -0.0030029 6.0908 run35.mat 151 3 1282 2086694 2125181 +4230063 4248040 17978 8227557.4425 8228457.6255 41.2315 -0.0030622 6.0991 run35.mat 151 3 1282 2125306 2134295 +4318209 4325072 6864 8231966.2459 8232308.14 41.2255 -0.0029596 6.1064 run35.mat 151 3 1283 2169381 2172813 +4396224 4468352 72129 8235865.5214 8239472.5408 41.2278 -0.0022136 5.9545 run35.mat 161 3 1284 2208390 2244456 +4468614 4492179 23566 8239485.5394 8240663.9848 41.2295 -0.0026826 5.9597 run35.mat 161 3 1284 2244587 2256370 +4562178 4569060 6883 8244165.8284 8244508.1548 41.2247 -0.001891 5.9738 run35.mat 161 3 1285 2291371 2294812 +4640391 4684204 43814 8248073.8355 8250265.6861 41.2283 -0.0031997 5.8264 run35.mat 171 3 1286 2330479 2352386 +4684458 4736339 51882 8250278.3914 8252871.6638 41.2264 -0.0026786 5.8287 run35.mat 171 3 1286 2352513 2378456 +4806357 4811462 5106 8256373.7366 8256630.0963 41.2227 -0.0050871 5.8554 run35.mat 171 3 1287 2413466 2416019 +4811719 4813268 1550 8256642.7383 8256718.9342 41.2175 -0.0035175 5.7742 run35.mat 171 3 1287 2416147 2416922 +4884375 4980338 95964 8260272.0957 8265070.3284 41.2271 -0.0026201 5.7099 run35.mat 181 3 1288 2452477 2500460 +5050335 5057241 6907 8268574.842 8268918.3447 41.2233 -0.0024499 5.7222 run35.mat 181 3 1289 2535460 2538913 +5128570 5224497 95928 8272483.2121 8277280.3939 41.2271 -0.0025759 5.6015 run35.mat 190.9588 3 1290 2574580 2622545 +5294487 5301407 6921 8280781.794 8281126.42 41.2241 -0.0030407 5.6153 run35.mat 191 3 1291 2657542 2661002 +5372706 5468637 95932 8284690.7039 8289486.5202 41.228 -0.0025882 5.4583 run35.mat 201 3 1292 2696653 2744621 +5538632 5539767 1136 8292988.284 8293045.0458 41.2062 -0.0020951 5.5743 run35.mat 201 3 1293 2779620 2780187 +5540027 5545551 5525 8293058.0486 8293334.3019 41.2236 -0.0026398 5.4548 run35.mat 201 3 1293 2780317 2783079 +5616628 5712578 95951 8296889.0133 8301684.7151 41.2277 -0.0025779 5.3209 run35.mat 211 3 1294 2818619 2866596 +5784630 5791545 6916 8305286.9446 8305632.1827 41.2281 -0.0017583 5.3413 run35.mat 211 3 1295 2902624 2906082 +5862848 5958783 95936 8309200.2512 8313997.4304 41.2285 -0.0027 5.2007 run35.mat 221 3 1296 2941735 2989704 +6030643 6037558 6916 8317588.1125 8317933.9985 41.2231 -0.0033081 5.2061 run35.mat 221 3 1297 3025636 3029093 +499474 500129 656 8403491.313 8403524.3405 41.225 -0.0069145 582.6811 run36.mat 1 1 1299 258959 259286 +500380 506911 6532 8403536.9968 8403865.0298 41.2275 -0.001355 294.5346 run36.mat 1 1 1299 259412 262677 +507249 511711 4463 8403881.9331 8404105.076 41.2264 -0.0047041 139.8194 run36.mat 1 1 1299 262846 265077 +512049 512338 290 8404121.9792 8404136.432 41.251 -0.010802 112.8453 run36.mat 1 1 1299 265246 265391 +584455 587071 2617 8407744.1419 8407873.0414 41.2252 0.0016936 245.3373 run36.mat 11 1 1300 301451 302759 +587409 596561 9153 8407889.6678 8408347.6705 41.2275 -0.0025029 225.8803 run36.mat 11 1 1300 302928 307504 +668899 678520 9622 8411963.8067 8412445.9316 41.2286 -0.0018449 264.8392 run36.mat 21 1 1301 343674 348485 +751426 761132 9707 8416090.0631 8416577.519 41.2273 -0.0013473 243.4513 run36.mat 31 1 1302 384940 389793 +833978 843646 9669 8420218.2272 8420701.8549 41.2293 -0.0021436 226.8519 run36.mat 41 1 1303 426218 431052 +916505 926203 9699 8424345.0288 8424829.363 41.2267 -0.0021302 214.2662 run36.mat 51 1 1304 467483 472332 +1000877 1010568 9692 8428561.8477 8429048.5432 41.2307 -0.0012942 203.6485 run36.mat 61 1 1305 509671 514517 +1085246 1094916 9671 8432782.1057 8433264.8094 41.2297 -0.0014885 194.0535 run36.mat 71 1 1306 551858 556692 +1169621 1179277 9657 8437002.4186 8437483.3115 41.2288 -0.0018897 186.5694 run36.mat 81 1 1307 594047 598875 +1253973 1263661 9689 8441218.0196 8441702.1664 41.229 -0.00051331 179.9414 run36.mat 91 1 1308 636225 641069 +1340203 1349858 9656 8445530.5351 8446013.541 41.2304 -0.0038808 174.101 run36.mat 101 1 1309 679342 684169 +1424546 1434211 9666 8449748.8888 8450230.2651 41.2311 -0.0023403 169.1173 run36.mat 111 1 1310 721515 726348 +1510775 1520439 9665 8454058.5707 8454541.7326 41.2288 -0.0026884 164.4919 run36.mat 121 1 1311 764632 769464 +1597183 1606852 9670 8458381.0473 8458862.0998 41.2287 -0.0020423 160.2228 run36.mat 131 1 1312 807837 812672 +1683268 1692911 9644 8462683.4711 8463166.3743 41.2291 -0.00056905 156.4619 run36.mat 141 1 1313 850881 855703 +1769707 1779358 9652 8467005.8439 8467488.0627 41.2293 -0.0016182 152.6355 run36.mat 151 1 1314 894103 898928 +1855957 1865557 9601 8471318.7374 8471798.211 41.2268 -0.00034121 149.9406 run36.mat 161 1 1315 937230 942030 +1942135 1951772 9638 8475627.5961 8476111.0419 41.2297 -0.00080243 146.9301 run36.mat 171 1 1316 980321 985139 +2028367 2038002 9636 8479937.8825 8480421.7288 41.2282 -0.0014906 144.0892 run36.mat 181 1 1317 1023439 1028256 +2116617 2126268 9652 8484350.462 8484833.4397 41.2259 0.00047064 141.7884 run36.mat 191 1 1318 1067566 1072391 +2204889 2214552 9664 8488764.5994 8489249.0171 41.2311 -0.0021083 138.2839 run36.mat 201 1 1319 1111703 1116535 +2293152 2302811 9660 8493176.6714 8493660.7717 41.2262 0.00063863 135.0619 run36.mat 211 1 1320 1155837 1160666 +2381628 2391271 9644 8497602.5951 8498084.6511 41.2289 -0.00041574 132.2173 run36.mat 221 1 1321 1200077 1204898 +716726 757995 41270 9044088.2656 9046152.2279 41.2285 -21.0386 103.7725 run37.mat 1 4 1323 369580 390215 +835442 861272 25831 9050026.5884 9051316.5039 41.2284 -21.0366 139.7929 run37.mat 11 4 1324 428940 441856 +938185 958311 20127 9055161.1686 9056169.8851 41.2299 -21.0354 158.0715 run37.mat 21 4 1325 480314 490377 +1037052 1057178 20127 9060106.6563 9061110.8348 41.2308 -21.038 144.3978 run37.mat 31 4 1326 529750 539813 +1137602 1157730 20129 9065130.8119 9066138.81 41.2274 -21.0382 134.2072 run37.mat 41 4 1327 580027 590091 +1238196 1258271 20076 9070162.5261 9071165.1803 41.2308 -21.0345 126.4185 run37.mat 51 4 1328 630326 640364 +1338589 1358668 20080 9075183.3208 9076185.118 41.2288 -21.0357 119.8652 run37.mat 61 4 1329 680525 690564 +1439124 1459152 20029 9080210.593 9081209.6732 41.228 -21.0379 114.4599 run37.mat 71 4 1330 730795 740809 +1541585 1561620 20036 9085333.123 9086333.1826 41.2278 -21.0369 109.8508 run37.mat 81 4 1331 782027 792044 +1644006 1664157 20152 9090454.0323 9091459.8487 41.2261 -21.036 106.1867 run37.mat 91 4 1332 833240 843316 +1746250 1766409 20160 9095565.643 9096573.2738 41.2267 -21.0355 102.7901 run37.mat 101 4 1333 884364 894444 +1850746 1870893 20148 9100789.5612 9101797.1735 41.2301 -21.0351 99.8219 run37.mat 111 4 1334 936615 946688 +1955083 1975165 20083 9106006.7499 9107013.1174 41.2282 -21.0367 97.257 run37.mat 121 4 1335 988785 998827 +2059443 2079600 20158 9111224.8557 9112233.7511 41.2312 -21.0354 94.9978 run37.mat 131 4 1336 1040967 1051046 +2163878 2183928 20051 9116446.2804 9117450.3311 41.2307 -21.036 92.7186 run37.mat 141 4 1337 1093187 1103213 +2268375 2288557 20183 9121672.3797 9122681.807 41.2333 -21.0361 90.8504 run37.mat 151 4 1338 1145438 1155529 +2374767 2394935 20169 9126992.7344 9128002.12 41.2326 -21.0353 88.9464 run37.mat 161 4 1339 1198636 1208721 +2481234 2501424 20191 9132314.6447 9133326.09 41.2262 -21.0365 87.2776 run37.mat 171 4 1340 1251872 1261967 +2587719 2607768 20050 9137639.1117 9138643.5184 41.2291 -21.0367 85.5549 run37.mat 181 4 1341 1305117 1315142 +2694100 2714349 20250 9142959.2333 9143971.3172 41.2296 -21.0363 84.3361 run37.mat 191 4 1342 1358310 1368435 +2800555 2820720 20166 9148283.7232 9149291.1928 41.2313 -21.0369 82.4655 run37.mat 201 4 1343 1411540 1421623 +2909105 2929265 20161 9153709.0871 9154719.0096 41.2291 -21.0352 80.7698 run37.mat 211 4 1344 1465817 1475898 +3017764 3037938 20175 9159144.1385 9160151.4732 41.2294 -21.0367 79.1775 run37.mat 221 4 1345 1520149 1530237 +324375 325233 859 9240792.0766 9240834.6446 41.2178 -0.002598 117.1703 run38.mat 1 3 1347 178080 178509 +325483 325996 514 9240847.0478 9240872.6042 41.1953 -0.0078106 197.862 run38.mat 1 3 1347 178634 178890 +326259 326561 303 9240885.8629 9240901.0877 41.2079 -0.013245 182.0894 run38.mat 1 3 1347 179022 179173 +326816 326853 38 9240913.9431 9240915.8084 41.2144 -0.13136 201.4874 run38.mat 1 3 1347 179300 179319 +327105 327807 703 9240928.5126 9240963.9028 41.225 -0.0049767 160.0082 run38.mat 1 3 1347 179445 179796 +328075 329333 1259 9240977.4136 9241040.8336 41.2328 0.0019252 138.6663 run38.mat 1 3 1347 179930 180559 +329583 420572 90990 9241053.437 9245602.0784 41.2258 -0.0055515 145.6196 run38.mat 1 3 1347 180684 226181 +488201 493981 5781 9248983.9167 9249272.9983 41.2222 -0.012876 150.2274 run38.mat 1 3 1348 259996 262886 +494241 496610 2370 9249286.0038 9249404.442 41.2251 -0.010898 147.3292 run38.mat 1 3 1348 263017 264201 +496916 498052 1137 9249419.6235 9249475.9839 41.2191 -0.014726 145.7583 run38.mat 1 3 1348 264354 264922 +498595 499153 559 9249502.9238 9249530.6079 41.2284 -0.018366 139.0925 run38.mat 1 3 1348 265194 265473 +499714 501422 1709 9249558.4408 9249643.1798 41.2207 0.0058515 144.4845 run38.mat 1 3 1348 265753 266607 +501675 501781 107 9249655.8017 9249661.1027 41.2348 0.0056476 158.2572 run38.mat 1 3 1348 266734 266787 +502035 504655 2621 9249673.8052 9249804.8304 41.2302 -0.002253 144.7557 run38.mat 1 3 1348 266914 268224 +504924 508650 3727 9249818.2829 9250005.4069 41.2218 0.00070484 145.0526 run38.mat 1 3 1348 268358 270221 +574402 578178 3777 9253293.1583 9253482.3351 41.2275 -0.0034747 231.6636 run38.mat 1 3 1349 303099 304986 +578437 578703 267 9253495.1874 9253508.3871 41.2651 -0.0058901 240.5102 run38.mat 1 3 1349 305116 305249 +578957 579634 678 9253520.9913 9253554.5859 41.2406 0.0097795 238.1754 run38.mat 10.7419 3 1349 305376 305714 +579884 581303 1420 9253566.9917 9253637.4065 41.2292 -0.0020604 228.28 run38.mat 11 3 1349 305839 306549 +581555 583195 1641 9253649.9115 9253733.0332 41.2292 0.012575 234.2224 run38.mat 11 3 1349 306675 307495 +583464 583803 340 9253746.6987 9253763.9203 41.2252 0.012155 247.2438 run38.mat 11 3 1349 307630 307799 +584055 636506 52452 9253776.7222 9256398.3036 41.2264 -0.0055673 231.8335 run38.mat 11 3 1349 307925 334152 +702866 749311 46446 9259716.2973 9262039.9069 41.2263 -0.0040171 274.2431 run38.mat 21 3 1350 367333 390557 +816994 863446 46453 9265422.8857 9267746.2055 41.2249 -0.0038252 250.1044 run38.mat 30.5864 3 1351 424400 447627 +931346 977780 46435 9271141.895 9273461.4424 41.2271 -0.0039976 232.0284 run38.mat 41 3 1352 481579 504797 +1045662 1091964 46303 9276856.4944 9279171.875 41.2273 -0.0033799 217.8193 run38.mat 51 3 1353 538739 561891 +1161863 1208138 46276 9282667.0563 9284982.4806 41.2276 -0.0038381 206.2623 run38.mat 61 3 1354 596842 619981 +1276013 1322486 46474 9288374.5066 9290699.3216 41.2268 -0.0037699 196.5949 run38.mat 71 3 1355 653920 677157 +1392184 1438474 46291 9294183.3967 9296498.3722 41.2281 -0.0030898 188.3233 run38.mat 81 3 1356 712008 735154 +1508346 1548504 40159 9299992.0694 9301998.0839 41.2258 -0.0028389 181.341 run38.mat 90.8577 3 1357 770092 790171 +1548834 1554640 5807 9302014.4562 9302305.7362 41.2268 -0.0049086 181.3028 run38.mat 91 3 1357 790336 793240 +1624533 1670814 46282 9305799.8568 9308113.37 41.2273 -0.0033281 175.0152 run38.mat 101 3 1358 828188 851329 +1740710 1758198 17489 9311609.0471 9312484.6449 41.2295 -0.0041123 170.0028 run38.mat 111 3 1359 886279 895022 +1758448 1786996 28549 9312497.1501 9313924.7337 41.226 -0.0033488 169.3529 run38.mat 111 3 1359 895147 909422 +1856712 1903002 46291 9317407.7402 9319724.522 41.2275 -0.0036249 164.6952 run38.mat 121 3 1360 944282 967428 +1972911 2019230 46320 9323220.162 9325534.7244 41.227 -0.0031106 160.1767 run38.mat 131 3 1361 1002384 1025545 +2089105 2089377 273 9329030.3233 9329043.9259 41.2292 0.011325 166.1542 run38.mat 141 3 1362 1060484 1060620 +2089678 2135400 45723 9329058.9788 9331344.2332 41.2278 -0.0028182 156.022 run38.mat 141 3 1362 1060770 1083632 +2205256 2251582 46327 9334837.7088 9337153.1968 41.2276 -0.0025669 152.4275 run38.mat 151 3 1363 1118561 1141726 +2321225 2367549 46325 9340635.1946 9342954.0583 41.2264 -0.0031279 148.9467 run38.mat 161 3 1364 1176549 1199712 +2437633 2483700 46068 9346455.5654 9348760.1684 41.2289 -0.0035527 145.713 run38.mat 170.7251 3 1365 1234755 1257790 +2553803 2599901 46099 9352265.5702 9354572.8307 41.2281 -0.002817 142.8091 run38.mat 181 3 1366 1292843 1315893 +2671659 2707478 35820 9358159.6727 9359947.155 41.2269 -0.0026526 140.1525 run38.mat 191 3 1367 1351774 1369684 +2707733 2717950 10218 9359959.9077 9360472.873 41.2268 -0.002912 139.8456 run38.mat 191 3 1367 1369811 1374920 +2787859 2834116 46258 9363969.927 9366280.9438 41.227 -0.0029516 136.4299 run38.mat 201 3 1368 1409876 1433006 +2904083 2904128 46 9369780.8895 9369783.1585 41.1109 -0.012339 145.631 run38.mat 211 3 1369 1467990 1468013 +2904561 2933408 28848 9369804.9919 9371246.7276 41.2283 -0.0026958 133.0649 run38.mat 211 3 1369 1468229 1482653 +2933662 2950396 16735 9371259.4325 9372094.3326 41.2273 -0.0022899 133.045 run38.mat 211 3 1369 1482780 1491148 +3022073 3068423 46351 9375678.9996 9377998.2139 41.2276 -0.0017715 130.0464 run38.mat 221 3 1370 1526988 1550164 +466627 475615 8989 9464090.997 9464541.9631 41.2274 -0.002784 274.4898 run39.mat 1 1 1372 247175 251669 +475953 476415 463 9464558.9371 9464582.1382 41.2247 0.00027504 139.3667 run39.mat 1 1 1372 251838 252069 +476753 478815 2063 9464599.1121 9464702.6633 41.2307 -0.002751 141.0463 run39.mat 1 1 1372 252238 253269 +479153 480415 1263 9464719.6372 9464782.905 41.2376 -0.0093827 128.8083 run39.mat 1 1 1372 253438 254069 +480753 481314 562 9464799.8082 9464827.8636 41.2329 -0.0087957 113.5283 run39.mat 1 1 1372 254238 254518 +553465 565630 12166 9468433.6502 9469040.805 41.2263 0.0025148 229.6458 run39.mat 11 1 1373 290595 296678 +638042 647661 9620 9472663.2779 9473143.2954 41.2272 0.002146 265.3076 run39.mat 21 1 1374 332886 337695 +720784 730425 9642 9476801.3677 9477279.7141 41.2263 -0.0031285 243.4764 run39.mat 31 1 1375 374259 379079 +803127 812805 9679 9480918.7229 9481402.0244 41.2277 -0.0016485 227.1418 run39.mat 41 1 1376 415432 420271 +887529 897205 9677 9485137.5035 9485622.5506 41.228 -0.0011492 214.2296 run39.mat 51 1 1377 457635 462473 +970028 979715 9688 9489261.0119 9489748.3522 41.2285 -0.0035166 203.1212 run39.mat 61 1 1378 498886 503729 +1054387 1064057 9671 9493479.1591 9493962.6462 41.2292 -0.0014655 194.3819 run39.mat 71 1 1379 541067 545902 +1138752 1148422 9671 9497699.09 9498182.0148 41.2279 -0.0018736 186.8211 run39.mat 81 1 1380 583251 588087 +1223123 1232797 9675 9501917.9098 9502401.4624 41.2286 -0.00048837 180.0744 run39.mat 91 1 1381 625439 630276 +1307394 1316976 9583 9506131.596 9506610.844 41.2275 -0.0024687 174.4892 run39.mat 101 1 1382 667576 672368 +1391646 1401309 9664 9510345.2891 9510825.199 41.2309 -0.0056597 168.6358 run39.mat 111 1 1383 709704 714536 +1478059 1487733 9675 9514662.3124 9515149.8052 41.2293 -0.0023517 164.6835 run39.mat 121 1 1384 752912 757749 +1564274 1573923 9650 9518974.5043 9519456.9189 41.2286 -0.0003298 159.7369 run39.mat 131 1 1385 796022 800847 +1650505 1660151 9647 9523287.7041 9523768.1634 41.2269 -0.0014252 156.5489 run39.mat 141 1 1386 839139 843963 +1736917 1746564 9648 9527607.2688 9528089.876 41.2296 -0.0015612 153.245 run39.mat 151 1 1387 882347 887151 +1823138 1832779 9642 9531920.0171 9532400.7345 41.2306 -0.00097758 149.8174 run39.mat 161 1 1388 925460 930280 +1909374 1918987 9614 9536232.4493 9536711.3642 41.2292 -0.0013107 146.7556 run39.mat 171 1 1389 968579 973386 +1997594 2007234 9641 9540643.6526 9541124.8309 41.2284 -0.00083546 144.1506 run39.mat 181 1 1390 1012691 1017512 +2083820 2093459 9640 9544955.2828 9545436.2493 41.2308 -0.00041808 141.1941 run39.mat 191 1 1391 1055806 1060626 +2172264 2181919 9656 9549374.9744 9549860.151 41.2311 -0.00074591 138.3266 run39.mat 201 1 1392 1100030 1104858 +2260533 2270202 9670 9553788.3844 9554272.4412 41.2303 -0.0015849 135.1722 run39.mat 211 1 1393 1144166 1149002 +2348801 2358436 9636 9558202.0392 9558683.9161 41.2309 0.00023111 131.9663 run39.mat 221 1 1394 1188302 1193121 +277691 298075 20385 11981861.7046 11982878.9972 82.4664 -43.7513 92.8652 run4.mat -1 -1 1396 164898 175090 +298384 319078 20695 11982894.3307 11983928.5777 80.8148 -43.7511 92.5362 run4.mat -1 -1 1396 175245 185592 +319383 340058 20676 11983943.9568 11984978.0699 79.1715 -43.7505 92.6227 run4.mat -1 -1 1396 185745 196083 +340366 361039 20674 11984993.3507 11986027.8088 77.5134 -43.7513 92.6406 run4.mat -1 -1 1396 196237 206573 +361348 373443 12096 11986043.3866 11986647.2808 75.8711 -43.7514 92.6385 run4.mat -1 -1 1396 206728 212776 +457390 465135 7746 11990846.3978 11991232.8464 75.8672 -43.7504 93.7675 run4.mat -1 -1 1397 254751 258624 +465459 486137 20679 11991248.921 11992282.8067 74.2162 -43.751 92.5932 run4.mat -1 -1 1397 258786 269125 +486444 507119 20676 11992298.0379 11993331.5432 72.5718 -43.7506 92.603 run4.mat -1 -1 1397 269279 279617 +507424 528117 20694 11993346.7961 11994383.6746 70.9167 -43.7517 92.6004 run4.mat -1 -1 1397 279769 290116 +528424 549080 20657 11994398.853 11995429.4075 69.2675 -43.7507 92.7352 run4.mat -1 -1 1397 290270 300598 +549389 553283 3895 11995444.9853 11995641.295 67.6089 -43.7506 92.8187 run4.mat -1 -1 1397 300753 302700 +637382 653217 15836 11999843.3865 12000637.1289 67.6153 -43.7506 93.143 run4.mat -1 -1 1398 344751 352669 +653540 674217 20678 12000653.4124 12001687.4444 65.9684 -43.7507 92.5132 run4.mat -1 -1 1398 352830 363169 +674524 695199 20676 12001702.7396 12002735.445 64.3174 -43.7519 92.6436 run4.mat -1 -1 1398 363323 373661 +695508 716199 20692 12002750.7785 12003786.2489 62.6709 -43.751 92.6507 run4.mat -1 -1 1398 373815 384161 +716507 733163 16657 12003801.6553 12004632.6411 61.0219 -43.751 92.7249 run4.mat -1 -1 1398 384315 392644 +817421 820477 3057 12008847.3962 12009000.2442 61.0275 -43.7503 95.0811 run4.mat -1 -1 1399 434774 436303 +820800 841478 20679 12009016.5929 12010048.8206 59.3761 -43.7515 92.5755 run4.mat -1 -1 1399 436464 446804 +841787 862478 20692 12010064.2738 12011101.081 57.7258 -43.7511 92.5952 run4.mat -1 -1 1399 446958 457304 +862788 883480 20693 12011116.584 12012149.7638 56.075 -43.751 92.5724 run4.mat -1 -1 1399 457459 467806 +883786 904457 20672 12012164.9454 12013198.5956 54.4262 -43.7505 92.7008 run4.mat -1 -1 1399 467959 478294 +904765 913222 8458 12013214.0008 12013636.9719 52.7841 -43.7503 92.8878 run4.mat -1 -1 1399 478448 482677 +997196 1008557 11362 12017836.6202 12018403.4279 52.7781 -43.7508 93.605 run4.mat -1 -1 1400 524666 530347 +1008886 1029581 20696 12018420.0139 12019453.4432 51.1288 -43.7507 92.5552 run4.mat -1 -1 1400 530511 540859 +1029888 1050560 20673 12019468.7992 12020502.9117 49.478 -43.7507 92.5613 run4.mat -1 -1 1400 541012 551349 +1050868 1071561 20694 12020518.439 12021552.9815 47.8301 -43.7507 92.5513 run4.mat -1 -1 1400 551503 561850 +1071867 1092500 20634 12021568.2874 12022602.1028 46.1793 -43.7514 92.702 run4.mat -1 -1 1400 562003 572320 +1092807 1093082 276 12022617.5798 12022631.4434 44.541 -43.751 92.5125 run4.mat -1 -1 1400 572474 572611 +1177203 1196797 19595 12026836.1077 12027816.9434 44.5326 -43.7513 92.9067 run4.mat -1 -1 1401 614674 624471 +1197103 1217781 20679 12027832.125 12028865.3718 42.8782 -43.7515 92.6156 run4.mat -1 -1 1401 624624 634963 +1218086 1238782 20697 12028880.6917 12029915.4682 41.2303 -43.751 92.6675 run4.mat -1 -1 1401 635116 645464 +1239088 1259752 20665 12029930.8947 12030964.6213 39.5755 -43.7511 92.6068 run4.mat -1 -1 1401 645617 655950 +1260068 1272981 12914 12030980.5519 12031625.8974 37.9308 -43.7516 92.9305 run4.mat -1 -1 1401 656108 662565 +1357318 1364201 6884 12035842.0879 12036186.6593 37.933 -43.75 94.0316 run4.mat -1 -1 1402 704735 708177 +1364517 1385200 20684 12036202.337 12037237.5075 36.2792 -43.751 92.5249 run4.mat -1 -1 1402 708335 718677 +1385509 1406202 20694 12037253.0883 12038286.4928 34.6301 -43.7512 92.5343 run4.mat -1 -1 1402 718831 729178 +1406511 1427198 20688 12038301.9458 12039334.7199 32.982 -43.7508 92.6117 run4.mat -1 -1 1402 729333 739677 +1427507 1448165 20659 12039350.2976 12040384.6767 31.3327 -43.7501 92.6859 run4.mat -1 -1 1402 739831 750160 +1448476 1453062 4587 12040400.1064 12040628.0613 29.6901 -43.7513 92.6917 run4.mat -1 -1 1402 750316 752609 +1539227 1554479 15253 12044939.4202 12045702.2691 29.6866 -43.751 93.2754 run4.mat -1 -1 1403 795693 803320 +1554802 1575480 20679 12045718.5559 12046751.6179 28.0356 -43.7513 92.571 run4.mat -1 -1 1403 803482 813821 +1575786 1596480 20695 12046766.9238 12047801.6196 26.3862 -43.7516 92.5821 run4.mat -1 -1 1403 813974 824321 +1596791 1617462 20672 12047817.3013 12048851.2531 24.7403 -43.7512 92.6667 run4.mat -1 -1 1403 824477 834813 +1617769 1635001 17233 12048866.6061 12049727.897 23.0897 -43.7504 92.816 run4.mat -1 -1 1403 834966 843583 +1719094 1721560 2467 12053931.7866 12054056.1311 23.0923 -43.7518 94.7923 run4.mat -1 -1 1404 885637 886881 +1721867 1742547 20681 12054071.6111 12055104.0373 21.439 -43.7509 92.6032 run4.mat -1 -1 1404 887017 897358 +1742852 1763544 20693 12055119.1693 12056152.582 19.7896 -43.7514 92.6256 run4.mat -1 -1 1404 897510 907857 +1763852 1784544 20693 12056168.1093 12057204.5685 18.1411 -43.7519 92.5917 run4.mat -1 -1 1404 908011 918357 +1784851 1805525 20675 12057219.9217 12058253.8905 16.4913 -43.7515 92.6548 run4.mat -1 -1 1404 918511 928848 +1805832 1814861 9030 12058269.3674 12058719.7857 14.844 -43.7514 92.7833 run4.mat -1 -1 1404 929002 933516 +1899120 1909802 10683 12062934.6133 12063468.6767 14.8394 -43.7507 93.3118 run4.mat -1 -1 1405 975648 980989 +1910124 1930807 20684 12063484.6521 12064518.4739 13.1904 -43.7503 92.4235 run4.mat -1 -1 1405 981150 991492 +1931116 1951805 20690 12064534.0516 12065567.3596 11.5382 -43.7503 92.6498 run4.mat -1 -1 1405 991647 1001992 +1952113 1972806 20694 12065582.532 12066616.5513 9.8905 -43.7508 92.5345 run4.mat -1 -1 1405 1002146 1012493 +1973113 1993747 20635 12066631.7825 12067663.5348 8.2436 -43.7508 92.6773 run4.mat -1 -1 1405 1012646 1022964 +1994055 1994921 867 12067678.9901 12067722.6481 6.5918 -43.7505 93.5773 run4.mat -1 -1 1405 1023118 1023551 +2078968 2097842 18875 12071926.5665 12072870.6776 6.5926 -43.7514 92.9899 run4.mat -1 -1 1406 1065576 1075013 +2098166 2118846 20681 12072886.8838 12073919.1424 4.9432 -43.751 92.5411 run4.mat -1 -1 1406 1075175 1085516 +2119151 2139846 20696 12073934.3982 12074967.4038 3.2939 -43.7513 92.612 run4.mat -1 -1 1406 1085668 1096016 +2140153 2160825 20673 12074982.757 12076017.1222 1.65 -43.7507 92.6081 run4.mat -1 -1 1406 1096170 1106506 +2161131 2174760 13630 12076032.5518 12076713.7026 8.0246e-05 -43.751 92.713 run4.mat -1 -1 1406 1106659 1113474 +2259068 2265241 6174 12080929.0355 12081241.3276 -0.0015848 -43.7512 94.1116 run4.mat -1 -1 1407 1155630 1158716 +2265548 2286240 20693 12081256.5588 12082289.232 -1.6471 -43.7514 92.5903 run4.mat -1 -1 1407 1158870 1169216 +2286549 2307248 20700 12082304.5624 12083340.5544 -3.2977 -43.7511 92.6319 run4.mat -1 -1 1407 1169371 1179721 +2307554 2328227 20674 12083355.8608 12084389.3092 -4.9433 -43.7508 92.6173 run4.mat -1 -1 1407 1179874 1190211 +2328533 2349205 20673 12084404.4908 12085436.0169 -6.5952 -43.751 92.7112 run4.mat -1 -1 1407 1190364 1200700 +2349511 2354820 5310 12085451.2032 12085720.6745 -8.2431 -43.7508 93.053 run4.mat -1 -1 1407 1200853 1203508 +2440964 2455385 14422 12090025.4688 12090747.2611 -8.2457 -43.7514 93.1168 run4.mat -1 -1 1408 1246582 1253793 +2455706 2476368 20663 12090763.4438 12091795.3121 -9.8922 -43.7506 92.6315 run4.mat -1 -1 1408 1253953 1264284 +2476676 2497367 20692 12091810.9765 12092846.2151 -11.5427 -43.7514 92.6118 run4.mat -1 -1 1408 1264438 1274785 +2497673 2518355 20683 12092861.3967 12093895.4597 -13.1906 -43.7511 92.5526 run4.mat -1 -1 1408 1274938 1285279 +2518673 2536740 18068 12093911.2398 12094813.6968 -14.8468 -43.7506 92.7491 run4.mat -1 -1 1408 1285438 1294472 +2621050 2622766 1717 12099029.6987 12099116.1821 -14.8434 -43.752 96.3958 run4.mat -1 -1 1409 1336628 1337487 +2623091 2643767 20677 12099132.5664 12100164.7729 -16.4955 -43.7505 92.5834 run4.mat -1 -1 1409 1337649 1347988 +2644073 2664765 20693 12100180.2025 12101217.4122 -18.1447 -43.7513 92.5355 run4.mat -1 -1 1409 1348141 1358487 +2665073 2685768 20696 12101232.9395 12102266.1297 -19.792 -43.7513 92.6038 run4.mat -1 -1 1409 1358641 1368989 +2686076 2706746 20671 12102281.657 12103315.3259 -21.4411 -43.7509 92.6947 run4.mat -1 -1 1409 1369143 1379478 +2707054 2716839 9786 12103330.6067 12103821.3057 -23.0926 -43.7507 92.7921 run4.mat -1 -1 1409 1379632 1384526 +2801304 2811207 9904 12108041.6439 12108536.9331 -23.0916 -43.7517 93.2059 run4.mat -1 -1 1410 1426760 1431711 +2811513 2832207 20695 12108552.1147 12109587.3737 -24.7392 -43.7512 92.5927 run4.mat -1 -1 1410 1431864 1442212 +2832514 2853185 20672 12109602.8506 12110637.9468 -26.3882 -43.7508 92.5993 run4.mat -1 -1 1410 1442365 1452701 +2853494 2874188 20695 12110653.5276 12111688.7467 -28.0375 -43.7509 92.5571 run4.mat -1 -1 1410 1452856 1463203 +2874494 2895150 20657 12111704.1732 12112735.1478 -29.6849 -43.7514 92.7278 run4.mat -1 -1 1410 1463356 1473684 +2895455 2897078 1624 12112750.1724 12112830.7108 -31.3406 -43.7501 92.1444 run4.mat -1 -1 1410 1473837 1474649 +2981397 2999624 18228 12117047.4389 12117959.0439 -31.3369 -43.751 93.1069 run4.mat -1 -1 1411 1516810 1525924 +2999931 3020630 20700 12117974.3998 12119009.8617 -32.9834 -43.7508 92.6049 run4.mat -1 -1 1411 1526077 1536427 +3020937 3041608 20672 12119025.3386 12120058.1378 -34.6328 -43.7508 92.6037 run4.mat -1 -1 1411 1536581 1546917 +3041914 3062603 20690 12120073.3224 12121107.948 -36.283 -43.7511 92.6798 run4.mat -1 -1 1411 1547070 1557415 +3062912 3077158 14247 12121123.5257 12121837.6818 -37.9357 -43.7511 92.81 run4.mat -1 -1 1411 1557570 1564693 +3161455 3166888 5434 12126050.6383 12126322.3828 -37.9294 -43.7506 94.1978 run4.mat -1 -1 1412 1606843 1609559 +3167193 3187887 20695 12126337.6387 12127372.6967 -39.5818 -43.7512 92.584 run4.mat -1 -1 1412 1609712 1620060 +3188196 3208891 20696 12127388.2745 12128422.6162 -41.2311 -43.7516 92.5093 run4.mat -1 -1 1412 1620214 1630562 +3209198 3229872 20675 12128437.8474 12129471.1218 -42.8792 -43.7511 92.6329 run4.mat -1 -1 1412 1630716 1641053 +3230183 3250849 20667 12129486.8004 12130519.5274 -44.5348 -43.7511 92.7704 run4.mat -1 -1 1412 1641208 1651542 +3251156 3257238 6083 12130534.8804 12130840.6701 -46.1819 -43.7515 92.977 run4.mat -1 -1 1412 1651696 1654737 +3341520 3355168 13649 12135054.5013 12135737.9154 -46.1825 -43.7505 93.1307 run4.mat -1 -1 1413 1696879 1703704 +3355487 3376170 20684 12135753.8684 12136788.2751 -47.8321 -43.7509 92.4974 run4.mat -1 -1 1413 1703863 1714205 +3376476 3397167 20692 12136803.578 12137835.0802 -49.4791 -43.7514 92.6231 run4.mat -1 -1 1413 1714358 1724704 +3397476 3418151 20676 12137850.4137 12138886.7173 -51.1308 -43.7507 92.6416 run4.mat -1 -1 1413 1724858 1735197 +3418461 3437317 18857 12138902.3454 12139844.0347 -52.7802 -43.7509 92.6634 run4.mat -1 -1 1413 1735352 1744780 +3521836 3522828 993 12144070.5006 12144120.1197 -52.7918 -43.7516 99.0393 run4.mat -1 -1 1414 1787042 1787538 +3523152 3543813 20662 12144136.3259 12145167.6911 -54.4275 -43.7513 92.6103 run4.mat -1 -1 1414 1787700 1798030 +3544116 3564805 20690 12145182.8474 12146220.4406 -56.075 -43.751 92.6158 run4.mat -1 -1 1414 1798182 1808527 +3565116 3585794 20679 12146235.8702 12147268.9474 -57.7283 -43.7513 92.6067 run4.mat -1 -1 1414 1808682 1819022 +3586105 3606770 20666 12147284.6259 12148315.424 -59.371 -43.751 92.6423 run4.mat -1 -1 1414 1819177 1829510 +3607078 3617618 10541 12148330.8273 12148858.6185 -61.0244 -43.7512 92.8329 run4.mat -1 -1 1414 1829664 1834934 +3701899 3711048 9150 12153073.3482 12153530.1349 -61.0218 -43.7505 93.2274 run4.mat -1 -1 1415 1877077 1881652 +3711372 3732073 20702 12153546.4688 12154582.3594 -62.6717 -43.7508 92.5251 run4.mat -1 -1 1415 1881814 1892164 +3732378 3753053 20676 12154597.4914 12155631.7503 -64.3165 -43.7509 92.5927 run4.mat -1 -1 1415 1892317 1902655 +3753360 3774033 20674 12155647.2303 12156680.1467 -65.975 -43.7511 92.6093 run4.mat -1 -1 1415 1902809 1913146 +3774339 3795012 20674 12156695.3282 12157727.1084 -67.6188 -43.7506 92.6583 run4.mat -1 -1 1415 1913299 1923635 +3795318 3797656 2339 12157742.3107 12157860.1773 -69.2755 -43.7509 92.7987 run4.mat -1 -1 1415 1923788 1924957 +3881858 3899351 17494 12162070.9621 12162945.4483 -69.2738 -43.7517 93.1059 run4.mat -1 -1 1416 1967060 1975807 +3899674 3920372 20699 12162961.3596 12163998.6977 -70.9193 -43.7509 92.5851 run4.mat -1 -1 1416 1975968 1986318 +3920680 3941350 20671 12164014.0637 12165046.1787 -72.5745 -43.751 92.5268 run4.mat -1 -1 1416 1986472 1996807 +3941658 3962355 20698 12165061.7092 12166097.866 -74.2196 -43.7507 92.6311 run4.mat -1 -1 1416 1996961 2007311 +3962660 3977756 15097 12166112.998 12166866.6695 -75.8718 -43.7514 92.7199 run4.mat -1 -1 1416 2007463 2015011 +4062016 4066729 4714 12171078.2215 12171315.6061 -75.8717 -43.7516 94.6129 run4.mat -1 -1 1417 2057143 2059500 +4067035 4087734 20700 12171330.909 12172365.6316 -77.5182 -43.7508 92.5574 run4.mat -1 -1 1417 2059653 2070002 +4088040 4108752 20713 12172380.8162 12173416.4727 -79.1706 -43.7512 92.6296 run4.mat -1 -1 1417 2070155 2080512 +4109059 4129732 20674 12173431.7039 12174466.6313 -80.8196 -43.7502 92.5963 run4.mat -1 -1 1417 2080666 2091003 +4130040 4150694 20655 12174482.0342 12175514.9898 -82.4649 -43.7505 92.6537 run4.mat -1 -1 1417 2091157 2101484 +4151003 4157796 6794 12175530.443 12175870.1596 -82.4729 -42.0708 92.818 run4.mat -1 -1 1417 2101639 2105035 +4242114 4255041 12928 12180084.1037 12180731.8038 -82.4646 -42.0707 92.9126 run4.mat -1 -1 1418 2147196 2153660 +4255361 4276032 20672 12180747.9361 12181781.8502 -80.8153 -42.0717 92.5353 run4.mat -1 -1 1418 2153820 2164156 +4276341 4297046 20706 12181797.4279 12182831.3972 -79.1693 -42.0711 92.5717 run4.mat -1 -1 1418 2164311 2174664 +4297358 4318036 20679 12182847.025 12183880.4001 -77.5154 -42.0709 92.6091 run4.mat -1 -1 1418 2174819 2185159 +4318342 4337895 19554 12183895.8266 12184875.4057 -75.8633 -42.0703 92.6803 run4.mat -1 -1 1418 2185312 2195089 +4422381 4422564 184 12189096.8694 12189105.9504 -75.8722 -42.0762 102.2712 run4.mat -1 -1 1419 2237333 2237425 +4422881 4443537 20657 12189121.8033 12190156.8734 -74.2207 -42.0714 92.7104 run4.mat -1 -1 1419 2237584 2247912 +4443845 4464535 20691 12190172.2793 12191207.3632 -72.568 -42.0714 92.6387 run4.mat -1 -1 1419 2248066 2258411 +4464845 4485516 20672 12191222.7463 12192256.4422 -70.919 -42.0705 92.6536 run4.mat -1 -1 1419 2258566 2268902 +4485827 4506498 20672 12192271.875 12193306.1692 -69.2684 -42.071 92.6431 run4.mat -1 -1 1419 2269058 2279394 +4506805 4518155 11351 12193321.6461 12193887.6946 -67.6254 -42.0715 92.9383 run4.mat -1 -1 1419 2279548 2285223 +4602434 4610883 8450 12198102.595 12198522.1965 -67.622 -42.0725 93.8234 run4.mat -1 -1 1420 2327364 2331589 +4611202 4631900 20699 12198538.0262 12199573.4857 -65.9793 -42.0714 92.4992 run4.mat -1 -1 1420 2331749 2342098 +4632217 4652877 20661 12199589.3387 12200622.7966 -64.3236 -42.0717 92.6029 run4.mat -1 -1 1420 2342256 2352587 +4653185 4673876 20692 12200638.0774 12201673.0605 -62.6751 -42.072 92.6142 run4.mat -1 -1 1420 2352741 2363086 +4674184 4694858 20675 12201688.591 12202722.2226 -61.0265 -42.0712 92.7409 run4.mat -1 -1 1420 2363240 2373578 +4695164 4698195 3032 12202737.529 12202889.1421 -59.3696 -42.0704 92.8767 run4.mat -1 -1 1420 2373731 2375247 +4782530 4799198 16669 12207105.9389 12207939.554 -59.3774 -42.0709 93.0694 run4.mat -1 -1 1421 2417416 2425751 +4799519 4820197 20679 12207955.607 12208988.2357 -57.729 -42.0712 92.5624 run4.mat -1 -1 1421 2425911 2436250 +4820503 4841194 20692 12209003.6622 12210039.9198 -56.0746 -42.0711 92.6242 run4.mat -1 -1 1421 2436403 2446749 +4841503 4862179 20677 12210055.3787 12211087.4305 -54.4244 -42.0716 92.6361 run4.mat -1 -1 1421 2446904 2457242 +4862487 4878274 15788 12211102.8334 12211892.3782 -52.7744 -42.0711 92.8 run4.mat -1 -1 1421 2457396 2465290 +4962552 4966499 3948 12216108.4109 12216305.0585 -52.7802 -42.0711 94.4396 run4.mat -1 -1 1422 2507431 2509405 +4966806 4987494 20689 12216320.2897 12217354.7212 -51.1286 -42.0716 92.558 run4.mat -1 -1 1422 2509558 2519902 +4987803 5008478 20676 12217370.0516 12218404.8155 -49.4726 -42.0711 92.6196 run4.mat -1 -1 1422 2520057 2530395 +5008783 5029478 20696 12218420.1916 12219454.5223 -47.8266 -42.0714 92.6451 run4.mat -1 -1 1422 2530547 2540896 +5029784 5050457 20674 12219469.955 12220502.2122 -46.1794 -42.0709 92.6623 run4.mat -1 -1 1422 2541049 2551386 +5050762 5058355 7594 12220517.5914 12220898.9842 -44.5329 -42.071 92.8958 run4.mat -1 -1 1422 2551538 2555335 +5142889 5155127 12239 12225123.8045 12225735.9472 -44.5285 -42.0705 93.3919 run4.mat -1 -1 1423 2597604 2603723 +5155440 5176118 20679 12225751.6309 12226787.8107 -42.8783 -42.072 92.5242 run4.mat -1 -1 1423 2603879 2614219 +5176424 5197118 20695 12226803.1137 12227835.3406 -41.2293 -42.0719 92.5662 run4.mat -1 -1 1423 2614372 2624719 +5197424 5218096 20673 12227850.5252 12228884.8645 -39.5843 -42.0714 92.5911 run4.mat -1 -1 1423 2624872 2635209 +5218405 5238674 20270 12228900.5045 12229913.4293 -37.9317 -42.0713 92.7364 run4.mat -1 -1 1423 2635363 2645498 +5322997 5343575 20579 12234128.7179 12235157.8739 -36.2861 -42.0716 92.9415 run4.mat -1 -1 1424 2687661 2697951 +5343881 5364559 20679 12235173.1771 12236209.3178 -34.6366 -42.0714 92.6239 run4.mat -1 -1 1424 2698104 2708444 +5364865 5385536 20672 12236224.6237 12237257.2251 -32.9879 -42.0716 92.6336 run4.mat -1 -1 1424 2708597 2718932 +5385846 5406536 20691 12237272.8564 12238307.6714 -31.3415 -42.071 92.6479 run4.mat -1 -1 1424 2719087 2729433 +5406845 5418754 11910 12238323.0018 12238917.8845 -29.6918 -42.0715 92.7296 run4.mat -1 -1 1424 2729587 2735542 +5503034 5510924 7891 12243131.4023 12243525.2769 -29.6887 -42.0728 94.1016 run4.mat -1 -1 1425 2777684 2781629 +5511243 5531917 20675 12243541.2967 12244575.404 -28.0367 -42.0716 92.48 run4.mat -1 -1 1425 2781788 2792126 +5532224 5552921 20698 12244590.7599 12245625.9117 -26.3887 -42.071 92.5665 run4.mat -1 -1 1425 2792279 2802628 +5553228 5573918 20691 12245641.2647 12246677.2231 -24.7374 -42.0713 92.5971 run4.mat -1 -1 1425 2802782 2813127 +5574226 5594885 20660 12246692.5069 12247723.547 -23.0916 -42.0717 92.6857 run4.mat -1 -1 1425 2813281 2823611 +5595200 5598794 3595 12247739.1782 12247918.8375 -21.4324 -42.0715 92.6482 run4.mat -1 -1 1425 2823769 2825566 +5683124 5699381 16258 12252134.8869 12252948.5408 -21.4347 -42.0717 93.29 run4.mat -1 -1 1426 2867733 2875862 +5699700 5720378 20679 12252964.6227 12253999.8277 -19.7891 -42.0712 92.6252 run4.mat -1 -1 1426 2876021 2886361 +5720684 5741361 20678 12254015.1306 12255048.2755 -18.1389 -42.0716 92.6328 run4.mat -1 -1 1426 2886514 2896852 +5741669 5762360 20692 12255063.682 12256096.609 -16.4918 -42.0709 92.6589 run4.mat -1 -1 1426 2897006 2907352 +5762666 5778893 16228 12256111.7906 12256924.8603 -14.842 -42.0717 92.7362 run4.mat -1 -1 1426 2907505 2915619 +5863414 5866888 3475 12261150.777 12261325.9131 -14.8484 -42.0708 94.0659 run4.mat -1 -1 1427 2957882 2959619 +5867205 5887881 20677 12261341.8941 12262376.192 -13.1894 -42.0704 92.4825 run4.mat -1 -1 1427 2959777 2970116 +5888191 5908877 20687 12262391.763 12263423.7068 -11.541 -42.0716 92.61 run4.mat -1 -1 1427 2970271 2980614 +5909185 5929856 20672 12263439.2341 12264474.4724 -9.8929 -42.0705 92.5554 run4.mat -1 -1 1427 2980768 2991104 +5930167 5950858 20692 12264490.0254 12265524.1113 -8.2502 -42.0716 92.6128 run4.mat -1 -1 1427 2991260 3001605 +5951162 5959193 8032 12265539.4401 12265939.7149 -6.5927 -42.0719 92.6945 run4.mat -1 -1 1427 3001757 3005773 +6043440 6055123 11684 12270152.4745 12270737.4715 -6.6002 -42.0721 93.4152 run4.mat -1 -1 1428 3047899 3053740 +6055444 6076138 20695 12270753.6542 12271788.8931 -4.9477 -42.0715 92.5637 run4.mat -1 -1 1428 3053901 3064248 +6076444 6097119 20676 12271804.3196 12272836.8408 -3.3017 -42.0711 92.5107 run4.mat -1 -1 1428 3064401 3074740 +6097424 6118117 20694 12272852.0971 12273886.1355 -1.6507 -42.0711 92.5772 run4.mat -1 -1 1428 3074892 3085239 +6118425 6139079 20655 12273901.666 12274935.2074 -0.0057397 -42.0716 92.7466 run4.mat -1 -1 1428 3085393 3095720 +6223518 6243402 19885 12279155.7431 12280148.5505 1.6453 -42.0709 92.8755 run4.mat -1 -1 1429 3137941 3147884 +6243711 6264379 20669 12280164.245 12281199.7534 3.2923 -42.0716 92.5319 run4.mat -1 -1 1429 3148039 3158373 +6264686 6285379 20694 12281215.0459 12282249.3744 4.9425 -42.0703 92.6558 run4.mat -1 -1 1429 3158526 3168874 +6285686 6306356 20671 12282264.6086 12283299.0419 6.5961 -42.0711 92.6189 run4.mat -1 -1 1429 3169027 3179363 +6306665 6319311 12647 12283314.6197 12283946.0655 8.2451 -42.0706 92.7174 run4.mat -1 -1 1429 3179517 3185840 +6403577 6410629 7053 12288159.4223 12288511.716 8.2454 -42.0718 93.5573 run4.mat -1 -1 1430 3227975 3231525 +6410944 6431618 20675 12288527.5994 12289562.2398 9.8966 -42.0712 92.6464 run4.mat -1 -1 1430 3231658 3241996 +6431927 6452618 20692 12289577.6931 12290613.5003 11.5431 -42.0715 92.5584 run4.mat -1 -1 1430 3242151 3252497 +6452924 6473599 20676 12290628.8032 12291660.8162 13.1935 -42.0713 92.595 run4.mat -1 -1 1430 3252650 3262987 +6473910 6494578 20669 12291676.3727 12292708.6438 14.8434 -42.0708 92.6977 run4.mat -1 -1 1430 3263143 3273477 +6494887 6499331 4445 12292724.2247 12292947.2411 16.4964 -42.0709 92.888 run4.mat -1 -1 1430 3273632 3275854 +6583566 6598967 15402 12297159.4934 12297929.9071 16.492 -42.0714 93.0127 run4.mat -1 -1 1431 3317974 3325674 +6599283 6619956 20674 12297945.7101 12298977.6143 18.1455 -42.0713 92.6412 run4.mat -1 -1 1431 3325832 3336169 +6620266 6640960 20695 12298993.1173 12300028.0981 19.7874 -42.0716 92.6312 run4.mat -1 -1 1431 3336324 3346672 +6641267 6661945 20679 12300043.454 12301080.2729 21.4383 -42.0705 92.5777 run4.mat -1 -1 1431 3346825 3357165 +6662260 6679472 17213 12301096.0866 12301954.9647 23.09 -42.0716 92.7634 run4.mat -1 -1 1431 3357322 3365929 +6763670 6766247 2578 12306166.2932 12306294.2897 23.082 -42.0722 95.6147 run4.mat -1 -1 1432 3408029 3409318 +6766571 6787240 20670 12306310.3644 12307341.7912 24.7397 -42.0714 92.522 run4.mat -1 -1 1432 3409480 3419815 +6787547 6808239 20693 12307357.0224 12308392.4221 26.3828 -42.0714 92.5751 run4.mat -1 -1 1432 3419968 3430315 +6808545 6829240 20696 12308407.728 12309443.1281 28.0316 -42.0716 92.5532 run4.mat -1 -1 1432 3430468 3440816 +6829546 6850221 20676 12309458.202 12310493.7478 29.6838 -42.0713 92.6426 run4.mat -1 -1 1432 3440969 3451307 +6850526 6859551 9026 12310508.8797 12310960.6559 31.3313 -42.0714 92.6204 run4.mat -1 -1 1432 3451459 3455972 +6944071 6954771 10701 12315185.1346 12315722.0062 31.3336 -42.0721 93.0397 run4.mat -1 -1 1433 3498234 3503584 +6955083 6975764 20682 12315737.6122 12316768.2464 32.9815 -42.071 92.5381 run4.mat -1 -1 1433 3503740 3514081 +6976078 6996779 20702 12316784.0762 12317820.9827 34.631 -42.071 92.5924 run4.mat -1 -1 1433 3514238 3524589 +6997087 7017745 20659 12317836.3886 12318868.4668 36.2823 -42.0709 92.6311 run4.mat -1 -1 1433 3524743 3535073 +7018050 7038703 20654 12318883.5987 12319917.7368 37.9345 -42.0714 92.7743 run4.mat -1 -1 1433 3535225 3545552 +7039012 7039871 860 12319933.3769 12319976.8552 39.579 -42.0693 94.1509 run4.mat -1 -1 1433 3545707 3546136 +7124194 7143063 18870 12324190.8658 12325136.027 39.579 -42.071 92.9994 run4.mat -1 -1 1434 3588299 3597734 +7143369 7164065 20697 12325151.2116 12326186.0611 41.2336 -42.0717 92.6322 run4.mat -1 -1 1434 3597887 3608236 +7164373 7185048 20676 12326201.3419 12327233.1717 42.879 -42.0718 92.6951 run4.mat -1 -1 1434 3608390 3618728 +7185360 7206042 20683 12327248.6509 12328284.797 44.533 -42.0711 92.6535 run4.mat -1 -1 1434 3618884 3629225 +7206350 7219950 13601 12328300.0778 12328978.7839 46.1789 -42.071 92.7228 run4.mat -1 -1 1434 3629379 3636179 +7304215 7310403 6189 12333193.6778 12333501.5977 46.1843 -42.0702 93.7362 run4.mat -1 -1 1435 3678314 3681408 +7310725 7331415 20691 12333517.5731 12334554.0119 47.8288 -42.0716 92.6878 run4.mat -1 -1 1435 3681569 3691914 +7331724 7352407 20684 12334569.3454 12335601.9179 49.4788 -42.0708 92.5893 run4.mat -1 -1 1435 3692069 3702411 +7352726 7373421 20696 12335617.8745 12336653.3645 51.1281 -42.0716 92.5819 run4.mat -1 -1 1435 3702570 3712918 +7373728 7394380 20653 12336668.4848 12337700.4219 52.7781 -42.071 92.6453 run4.mat -1 -1 1435 3713072 3723399 +7394689 7399970 5282 12337716.0028 12337979.3433 54.4327 -42.0718 93.0231 run4.mat -1 -1 1435 3723553 3726194 +7484476 7499028 14553 12342205.251 12342933.0959 54.4234 -42.0713 93.4202 run4.mat -1 -1 1436 3768449 3775725 +7499350 7520041 20692 12342949.0712 12343984.0311 56.0738 -42.0715 92.5769 run4.mat -1 -1 1436 3775886 3786232 +7520351 7541026 20676 12343999.6592 12345032.4302 57.7228 -42.0718 92.6331 run4.mat -1 -1 1436 3786387 3796724 +7541339 7562022 20684 12345048.0867 12346083.5711 59.3717 -42.0709 92.6616 run4.mat -1 -1 1436 3796880 3807223 +7562328 7580230 17903 12346098.9976 12346996.1818 61.0221 -42.0713 92.7412 run4.mat -1 -1 1436 3807376 3816328 +7664401 7666331 1931 12351203.2251 12351298.9972 61.0276 -42.0699 97.7295 run4.mat -1 -1 1437 3858415 3859380 +7666649 7687321 20673 12351314.7773 12352348.0115 62.6666 -42.0721 92.6428 run4.mat -1 -1 1437 3859539 3869875 +7687629 7708318 20690 12352363.5388 12353398.3114 64.3167 -42.0717 92.5052 run4.mat -1 -1 1437 3870029 3880374 +7708626 7729303 20678 12353413.7178 12354448.866 65.9693 -42.0717 92.5255 run4.mat -1 -1 1437 3880528 3890867 +7729612 7750280 20669 12354464.3192 12355495.9758 67.6211 -42.0708 92.631 run4.mat -1 -1 1437 3891022 3901356 +7750587 7760310 9724 12355511.3287 12355997.6241 69.266 -42.0708 92.8294 run4.mat -1 -1 1437 3901510 3906371 +7844805 7854788 9984 12360223.8196 12360722.282 69.2692 -42.0711 93.287 run4.mat -1 -1 1438 3948621 3953612 +7855104 7875797 20694 12360738.2158 12361772.4581 70.9182 -42.0715 92.5705 run4.mat -1 -1 1438 3953770 3964117 +7876106 7896782 20677 12361787.6798 12362820.6424 72.5683 -42.071 92.6316 run4.mat -1 -1 1438 3964272 3974611 +7897088 7917762 20675 12362835.824 12363870.9048 74.2185 -42.0718 92.6279 run4.mat -1 -1 1438 3974764 3985101 +7918069 7938742 20674 12363886.3817 12364920.442 75.8693 -42.0711 92.7815 run4.mat -1 -1 1438 3985254 3995592 +7939048 7940569 1522 12364935.6235 12365011.0849 77.5174 -42.0721 92.9955 run4.mat -1 -1 1438 3995745 3996505 +8024900 8043194 18295 12369228.0008 12370143.2801 77.5172 -42.0711 92.9467 run4.mat -1 -1 1439 4038672 4047819 +8043513 8064182 20670 12370159.362 12371190.3579 79.1678 -42.0713 92.6102 run4.mat -1 -1 1439 4047979 4058314 +8064488 8085181 20694 12371205.7844 12372241.0234 80.8184 -42.0711 92.5818 run4.mat -1 -1 1439 4058467 4068814 +8085488 8105815 20328 12372256.5003 12373273.209 82.4644 -42.071 92.6603 run4.mat -1 -1 1439 4068968 4079131 +390334 430794 40461 10302703.5051 10304726.5659 41.2281 -21.0369 84.1829 run40.mat 1 2 1441 233098 253329 +511653 537741 26089 10308771.0273 10310075.1174 41.2289 -21.0364 110.4427 run40.mat 11 2 1442 293760 306804 +620693 641143 20451 10314224.4519 10315244.6741 41.2296 -21.0369 124.9277 run40.mat 21 2 1443 348282 358508 +723336 743651 20316 10319356.7372 10320372.2751 41.2285 -21.0373 114.9718 run40.mat 31 2 1444 399606 409764 +828229 848526 20298 10324600.9554 10325615.1268 41.2296 -21.0374 107.1319 run40.mat 41 2 1445 452055 462204 +932704 952902 20199 10329824.8195 10330834.9877 41.2295 -21.036 101.5864 run40.mat 51 2 1446 504295 514394 +1037329 1057608 20280 10335054.8508 10336070.4271 41.2292 -21.0365 96.2783 run40.mat 61 2 1447 556609 566750 +1143855 1164090 20236 10340383.3525 10341395.3384 41.2297 -21.0358 92.0578 run40.mat 71 2 1448 609874 619993 +1250399 1270789 20391 10345709.755 10346729.4267 41.2298 -21.0378 88.6993 run40.mat 81 2 1449 663149 673345 +1357011 1377421 20411 10351039.6235 10352059.682 41.2317 -21.0361 85.6592 run40.mat 91 2 1450 716458 726663 +1465218 1485734 20517 10356450.2388 10357476.4508 41.2297 -21.0362 82.7478 run40.mat 101 2 1451 770563 780822 +1573986 1594494 20509 10361888.6459 10362913.353 41.229 -21.0333 80.8245 run40.mat 111 2 1452 824950 835204 +1682573 1702882 20310 10367316.8597 10368334.515 41.2271 -21.0353 79.0322 run40.mat 121 2 1453 879246 889401 +1791117 1811688 20572 10372746.0391 10373774.8854 41.231 -21.0377 76.3851 run40.mat 131 2 1454 933519 943806 +1901517 1921990 20474 10378264.7239 10379290.1057 41.2278 -21.0366 75.2485 run40.mat 141 2 1455 988723 998960 +2012097 2032591 20495 10383794.7042 10384820.7768 41.2333 -21.0364 73.4982 run40.mat 151 2 1456 1044015 1054262 +2122757 2143534 20778 10389328.0593 10390368.3104 41.2285 -21.0366 71.2253 run40.mat 161 2 1457 1099347 1109736 +2235197 2255921 20725 10394949.9103 10395986.0548 41.2301 -21.0361 70.1969 run40.mat 171 2 1458 1155570 1165932 +2347877 2368633 20757 10400582.7382 10401623.0048 41.2292 -21.0371 68.7391 run40.mat 181 2 1459 1211912 1222290 +2460578 2481272 20695 10406220.8148 10407255.2074 41.23 -21.037 67.9588 run40.mat 191 2 1460 1268265 1278613 +2573838 2595859 22022 10411881.1458 10412984.9143 41.2286 -21.0353 62.6427 run40.mat 201 2 1461 1324898 1335909 +933521 974150 40630 10727693.2599 10729724.2714 41.2268 -21.0364 83.8611 run41.mat 1 2 1463 473525 493840 +1054876 1080808 25933 10733759.5686 10735056.4541 41.2279 -21.0364 110.8229 run41.mat 11 2 1464 534206 547172 +1163910 1184304 20395 10739211.8534 10740231.8073 41.229 -21.0377 125.0408 run41.mat 21 2 1465 588725 598922 +1266766 1287039 20274 10744354.1186 10745368.8815 41.2289 -21.0373 115.4045 run41.mat 31 2 1466 640155 650292 +1371490 1391718 20229 10749591.5945 10750602.2155 41.2297 -21.0371 107.4534 run41.mat 41 2 1467 692519 702634 +1476001 1496262 20262 10754815.9544 10755830.1183 41.2293 -21.0368 101.43 run41.mat 51 2 1468 744777 754908 +1580649 1600882 20234 10760048.8952 10761059.2139 41.23 -21.0371 96.2788 run41.mat 61 2 1469 797103 807220 +1687262 1707420 20159 10765379.3021 10766387.3906 41.2319 -21.0377 92.2657 run41.mat 71 2 1470 850412 860492 +1793711 1814105 20395 10770701.5605 10771721.3655 41.2318 -21.0367 88.5425 run41.mat 81 2 1471 903639 913837 +1900170 1920589 20420 10776024.5102 10777046.1376 41.2298 -21.0368 85.7177 run41.mat 91 2 1472 956871 967081 +2006697 2027036 20340 10781352.4308 10782369.4954 41.2296 -21.0363 83.2506 run41.mat 101 2 1473 1010137 1020307 +2113136 2133492 20357 10786676.2188 10787693.8758 41.2302 -21.0361 80.9025 run41.mat 111 2 1474 1063358 1073537 +2221688 2242034 20347 10792102.8155 10793119.5586 41.2299 -21.0372 78.9934 run41.mat 121 2 1475 1117637 1127810 +2330108 2350582 20475 10797522.4106 10798544.3899 41.2278 -21.0366 76.6176 run41.mat 131 2 1476 1171849 1182087 +2440717 2461025 20309 10803055.1777 10804069.0232 41.23 -21.0358 75.5077 run41.mat 141 2 1477 1227156 1237311 +2551258 2571804 20547 10808579.7829 10809609.2808 41.2308 -21.0357 73.336 run41.mat 151 2 1478 1282429 1292703 +2664098 2684627 20530 10814223.1501 10815248.9592 41.2287 -21.0363 71.9516 run41.mat 161 2 1479 1338852 1349116 +2776538 2797182 20645 10819842.9577 10820877.0659 41.2305 -21.0358 70.6209 run41.mat 171 2 1480 1395074 1405397 +2887140 2907770 20631 10825373.5053 10826405.3001 41.23 -21.0375 69.3467 run41.mat 181 2 1481 1450378 1460693 +2999820 3020701 20882 10831008.8086 10832053.0685 41.2305 -21.0353 67.4498 run41.mat 191 2 1482 1506720 1517161 +3113380 3134468 21089 10836685.5474 10837743.4764 41.2296 -21.0366 65.5266 run41.mat 201 2 1483 1563502 1574047 +123796 162273 38478 11373940.25 11375862.6341 41.2282 -21.0384 4.4125 run42.mat 1 4 1485 34836 44456 +242292 267134 24843 11379863.5863 11381108.0314 41.227 -21.038 5.7778 run42.mat 11 4 1486 64461 70672 +346952 366574 19623 11385096.8673 11386077.3385 41.2294 -21.0358 6.4365 run42.mat 21 4 1487 90627 95533 +447631 467384 19754 11390130.3594 11391119.2103 41.232 -21.0358 5.8809 run42.mat 31 4 1488 115798 120737 +548157 568030 19874 11395157.0577 11396150.9554 41.2316 -21.0369 5.437 run42.mat 41 4 1489 140931 145899 +650755 670601 19847 11400286.2979 11401281.8975 41.2298 -21.0357 5.1106 run42.mat 51 4 1490 166582 171543 +751309 771103 19795 11405314.3601 11406304.5511 41.2261 -21.0366 4.8709 run42.mat 61 4 1491 191721 196670 +853645 873421 19777 11410431.5716 11411422.4607 41.2296 -21.0362 4.6624 run42.mat 71 4 1492 217306 222251 +956227 976040 19814 11415561.2741 11416554.5693 41.2308 -21.037 4.4583 run42.mat 81 4 1493 242953 247906 +1058906 1078442 19537 11420695.8104 11421674.0726 41.2321 -21.0357 4.2788 run42.mat 91 4 1494 268624 273508 +1161028 1180850 19823 11425801.8653 11426792.1072 41.2322 -21.0357 4.1569 run42.mat 101 4 1495 294156 299111 +1265606 1285143 19538 11431032.1591 11432007.4065 41.2319 -21.037 4.0055 run42.mat 111 4 1496 320301 325186 +1367734 1387572 19839 11436137.7669 11437130.0454 41.2268 -21.0351 3.9345 run42.mat 121 4 1497 345834 350794 +1472522 1490625 18104 11441376.2582 11442282.3904 41.2294 -21.0363 3.8207 run42.mat 131 4 1498 372032 376558 +1490942 1492058 1117 11442298.1177 11442353.4858 41.2273 -21.0426 3.7897 run42.mat 131 4 1498 376638 376917 +1578347 1598179 19833 11446666.5936 11447659.5563 41.2279 -21.0374 3.7504 run42.mat 141 4 1499 398490 403448 +1683189 1702677 19489 11451909.209 11452884.0842 41.2323 -21.0381 3.6463 run42.mat 151 4 1500 424701 429574 +1789179 1808087 18909 11457208.9046 11458154.7515 41.2242 -21.0375 3.5861 run42.mat 161 4 1501 451200 455927 +1808348 1809005 658 11458167.7005 11458200.5135 41.2626 -21.0339 3.5343 run42.mat 161 4 1501 455992 456157 +1896010 1912858 16849 11462551.7845 11463393.786 41.2259 -21.0354 3.506 run42.mat 171 4 1502 477909 482122 +1913108 1915287 2180 11463406.1917 11463515.5358 41.2243 -21.036 3.4898 run42.mat 171 4 1502 482184 482729 +2002411 2021691 19281 11467870.7962 11468836.7112 41.2278 -21.0366 3.4374 run42.mat 181 4 1503 504510 509331 +2110717 2130282 19566 11473288.0152 11474266.055 41.2293 -21.0367 3.3837 run42.mat 191 4 1504 531588 536480 +2217267 2236747 19481 11478615.91 11479589.0931 41.2329 -21.0364 3.3031 run42.mat 201 4 1505 558227 563097 +2323742 2343258 19517 11483938.5372 11484915.5159 41.2318 -21.0352 3.2368 run42.mat 211 4 1506 584847 589726 +2432017 2450614 18598 11489353.3009 11490284.4295 41.2264 -21.0386 3.1896 run42.mat 221 4 1507 611917 616566 +2450926 2451694 769 11490299.9119 11490338.0222 41.2124 -21.0378 3.1782 run42.mat 221 4 1507 616644 616836 +294815 294867 53 11561008.7588 11561011.3803 41.2247 0.2117 10.5473 run43.mat 1 3 1509 92971 92984 +295127 296448 1322 11561024.4878 11561091.0839 41.2256 0.0045796 8.2212 run43.mat 1 3 1509 93049 93379 +296713 297956 1244 11561104.4434 11561167.1073 41.2235 -0.016981 7.8642 run43.mat 1 3 1509 93446 93756 +298213 298632 420 11561180.0635 11561201.1867 41.2448 0.0059394 7.7782 run43.mat 1 3 1509 93820 93925 +298970 299530 561 11561218.1746 11561245.9524 41.2187 -0.050218 7.529 run43.mat 1 3 1509 94009 94149 +299781 301105 1325 11561258.4028 11561324.0774 41.2286 0.00019605 7.7774 run43.mat 1 3 1509 94212 94543 +301365 308174 6810 11561336.9742 11561678.1908 41.2283 -0.00037508 7.8359 run43.mat 1 3 1509 94608 96311 +308445 312292 3848 11561691.8556 11561883.1223 41.2262 -0.010985 7.5067 run43.mat 1 3 1509 96379 97341 +312630 315846 3217 11561899.8948 11562060.9871 41.2243 0.0037174 7.4457 run43.mat 1 3 1509 97425 98229 +316161 319319 3159 11562076.8673 11562235.9044 41.2318 -0.0076151 7.233 run43.mat 1 3 1509 98308 99097 +319572 320183 612 11562248.557 11562279.1134 41.2152 -0.033025 6.5846 run43.mat 1 3 1509 99160 99313 +320503 322700 2198 11562295.1167 11562404.9896 41.225 -0.0074055 7.2483 run43.mat 1 3 1509 99393 99942 +322966 323187 222 11562418.2924 11562429.3447 41.1842 -0.025194 7.2615 run43.mat 1 3 1509 100009 100064 +323442 323492 51 11562442.0973 11562444.5978 41.2366 0.037791 5.6352 run43.mat 1 3 1509 100128 100140 +323830 327844 4015 11562461.4497 11562660.5963 41.2231 -0.014306 6.8762 run43.mat 1 3 1509 100225 101229 +328164 330712 2549 11562676.4725 11562803.688 41.235 -0.0090218 6.5734 run43.mat 1 3 1509 101309 101946 +331050 331772 723 11562820.5945 11562856.7083 41.2258 -0.015371 6.5919 run43.mat 1 3 1509 102030 102210 +332110 333126 1017 11562873.6149 11562924.4344 41.2326 -0.038518 5.9318 run43.mat 1 3 1509 102295 102549 +333710 335786 2077 11562953.6456 11563056.7527 41.2331 -0.014447 7.4108 run43.mat 1 3 1509 102695 103214 +336095 337971 1877 11563072.0861 11563165.1786 41.2267 -0.0088 7.3853 run43.mat 1 3 1509 103291 103760 +338221 338860 640 11563177.5844 11563209.2934 41.2113 -0.025977 7.821 run43.mat 1 3 1509 103823 103983 +339113 342721 3609 11563221.957 11563403.8486 41.2296 -0.004487 7.2781 run43.mat 1 3 1509 104046 104948 +342986 346861 3876 11563417.2081 11563610.8271 41.2205 -0.0027896 7.4017 run43.mat 1 3 1509 105014 105983 +347379 348011 633 11563636.6346 11563668.1217 41.2276 -0.009051 7.3124 run43.mat 1 3 1509 106112 106270 +348261 358172 9912 11563680.577 11564177.7544 41.2244 -0.0060619 7.3051 run43.mat 1 3 1509 106333 108811 +358510 374189 15680 11564194.7941 11564977.2002 41.2247 -0.007986 7.3289 run43.mat 1 3 1509 108896 112816 +374445 375649 1205 11564990.0027 11565050.2143 41.2309 0.011886 7.3052 run43.mat 1 3 1509 112880 113181 +375955 385951 9997 11565065.5172 11565566.77 41.2265 -0.0032825 7.3411 run43.mat 1 3 1509 113257 115756 +386202 386209 8 11565579.2229 11565579.5702 41.2492 0.0041016 6.764 run43.mat 1 3 1509 115818 115820 +386461 388726 2266 11565592.0726 11565704.4461 41.2248 -0.0019018 7.2952 run43.mat 1 3 1509 115883 116449 +389036 390841 1806 11565719.8262 11565809.9654 41.2244 0.018418 7.3637 run43.mat 1 3 1509 116527 116978 +456817 457103 287 11569108.5292 11569122.9504 41.2269 0.017428 10.0264 run43.mat 1 3 1510 133473 133545 +457356 458351 996 11569135.7075 11569185.879 41.2146 0.017411 9.2376 run43.mat 1 3 1510 133608 133857 +458608 474630 16023 11569198.8378 11570001.4156 41.2266 -0.0031957 10.1731 run43.mat 1 3 1510 133921 137927 +474892 477462 2571 11570014.4142 11570141.9196 41.221 0.0087641 10.1788 run43.mat 1 3 1510 137992 138635 +477713 485883 8171 11570154.3725 11570562.2145 41.2255 -0.0025065 10.0183 run43.mat 1 3 1510 138698 140740 +486133 494074 7942 11570574.7169 11570971.8468 41.2237 -0.0065682 9.2396 run43.mat 1 3 1510 140803 142788 +494412 503091 8680 11570988.7507 11571422.8733 41.227 0.00020085 8.7909 run43.mat 1 3 1510 142872 145042 +503401 505713 2313 11571438.3797 11571554.0129 41.2344 0.010502 8.7711 run43.mat 1 3 1510 145120 145698 +506014 515573 9560 11571569.0658 11572048.707 41.224 -0.0049244 8.2972 run43.mat 1 3 1510 145773 148163 +515823 516214 392 11572061.1127 11572080.5153 41.227 0.012445 7.6047 run43.mat 1 3 1510 148225 148323 +516552 516834 283 11572097.2878 11572111.2815 41.2357 0.039191 8.2038 run43.mat 1 3 1510 148408 148478 +517172 518282 1111 11572128.054 11572183.1354 41.2308 -0.0029084 8.0029 run43.mat 1 3 1510 148562 148840 +518533 519032 500 11572195.5907 11572220.3525 41.2206 -0.040145 7.6073 run43.mat 1 3 1510 148903 149027 +519334 519634 301 11572235.3386 11572250.2769 41.2572 -0.016617 8.6007 run43.mat 1 3 1510 149103 149178 +519972 520231 260 11572267.3166 11572280.3737 41.1514 0.011255 7.1279 run43.mat 1 3 1510 149262 149327 +520540 520849 310 11572295.9514 11572311.5291 41.2318 -0.075112 7.7595 run43.mat 1 3 1510 149404 149482 +521163 521403 241 11572327.3589 11572339.4582 41.1855 0.06793 7.9969 run43.mat 1 3 1510 149560 149620 +521972 522922 951 11572368.1434 11572416.0361 41.2209 -0.015567 7.534 run43.mat 1 3 1510 149762 150000 +523183 525172 1990 11572429.194 11572529.2134 41.2293 -0.008394 7.7308 run43.mat 1 3 1510 150065 150563 +525426 526902 1477 11572541.9187 11572615.7495 41.2265 0.01144 7.6786 run43.mat 1 3 1510 150626 150995 +527156 528373 1218 11572628.4548 11572689.3301 41.22 0.0060029 7.7925 run43.mat 1 3 1510 151059 151363 +528626 529969 1344 11572701.9854 11572769.1624 41.2285 -0.015309 7.1865 run43.mat 1 3 1510 151426 151762 +530536 531219 684 11572797.5233 11572831.6864 41.2246 -0.043177 7.502 run43.mat 1 3 1510 151904 152075 +531473 532614 1142 11572844.3913 11572901.4633 41.219 0.024621 6.9734 run43.mat 1 3 1510 152138 152423 +532965 535493 2529 11572919.02 11573045.075 41.2283 0.00403 7.2292 run43.mat 1 3 1510 152511 153143 +535795 537163 1369 11573060.0581 11573127.9288 41.2352 -0.014074 7.2714 run43.mat 1 3 1510 153218 153560 +537735 538630 896 11573156.3074 11573200.7111 41.2314 -0.00034223 7.051 run43.mat 1 3 1510 153703 153927 +538886 539565 680 11573213.412 11573247.0992 41.2359 -0.018294 6.6107 run43.mat 1 3 1510 153991 154161 +539877 540372 496 11573262.5785 11573287.1369 41.2063 -0.040977 6.1536 run43.mat 1 3 1510 154239 154363 +540625 541080 456 11573299.689 11573322.2629 41.2437 -0.032249 6.4577 run43.mat 1 3 1510 154426 154540 +541333 541954 622 11573334.815 11573365.6247 41.2296 -0.03798 7.0291 run43.mat 1 3 1510 154603 154758 +542292 543769 1478 11573382.3939 11573455.6724 41.2344 -0.021891 6.3991 run43.mat 1 3 1510 154843 155212 +544026 544421 396 11573468.4229 11573488.02 41.2224 0.035304 6.6129 run43.mat 1 3 1510 155276 155375 +544674 545093 420 11573500.6298 11573521.753 41.2384 -0.0131 7.0448 run43.mat 1 3 1510 155439 155543 +545396 547110 1715 11573537.0282 11573623.4368 41.2337 -0.0014805 6.5044 run43.mat 1 3 1510 155619 156048 +547364 548231 868 11573636.2418 11573679.9502 41.2314 0.0051789 6.4948 run43.mat 1 3 1510 156111 156328 +548487 549025 539 11573692.856 11573719.9784 41.2431 0.0068066 5.9503 run43.mat 1 3 1510 156392 156526 +549426 550421 996 11573740.1942 11573789.6672 41.228 -0.0055656 6.3633 run43.mat 1 3 1510 156627 156876 +550674 551718 1045 11573802.2193 11573854.0153 41.2317 -0.0080358 6.1641 run43.mat 1 3 1510 156939 157200 +619100 635582 16483 11577225.6669 11578050.162 41.2273 -0.00073257 9.7677 run43.mat 11 3 1511 174046 178166 +635849 643248 7400 11578063.5145 11578432.0643 41.2259 -0.0037127 9.742 run43.mat 11 3 1511 178233 180083 +643511 659970 16460 11578445.1125 11579266.048 41.2244 -0.0058416 9.7485 run43.mat 11 3 1511 180149 184264 +660274 665574 5301 11579281.3737 11579548.1605 41.2291 -0.0063389 9.7697 run43.mat 11 3 1511 184340 185665 +665878 676544 10667 11579563.3636 11580096.8206 41.2274 -0.0072695 9.7632 run43.mat 11 3 1511 185741 188408 +676795 709251 32457 11580109.3732 11581730.6433 41.2268 -0.004646 9.7634 run43.mat 11 3 1511 188470 196585 +709509 715160 5652 11581743.5483 11582027.9167 41.2211 0.0052489 9.7769 run43.mat 11 3 1511 196649 198062 +783196 791236 8041 11585427.7825 11585831.4108 41.2227 -0.0051081 9.819 run43.mat 11 3 1512 215071 217082 +791488 796576 5089 11585843.9228 11586097.4291 41.2256 -0.0098272 9.719 run43.mat 11 3 1512 217145 218417 +796876 817728 20853 11586112.5531 11587154.82 41.2258 -0.0046093 9.7495 run43.mat 11 3 1512 218492 223705 +887260 890721 3462 11590630.2736 11590803.3902 41.2282 0.00040659 11.2644 run43.mat 21 3 1513 241089 241954 +890979 907423 16445 11590816.2951 11591635.7396 41.2267 -0.00097127 10.9383 run43.mat 21 3 1513 242019 246130 +907677 983501 75825 11591648.6406 11595443.8865 41.2268 -0.0042108 10.9673 run43.mat 21 3 1513 246194 265150 +1051319 1057945 6627 11598834.6716 11599167.0416 41.2255 -0.0035752 11.0674 run43.mat 21 3 1514 282105 283762 +1127716 1166213 38498 11602656.2106 11604581.3852 41.2243 -0.0025859 9.9955 run43.mat 31 3 1515 301206 310830 +1166522 1223739 57218 11604596.9661 11607455.9871 41.2262 -0.0047697 9.9932 run43.mat 31 3 1515 310907 325212 +1291568 1298240 6673 11610848.2631 11611183.6699 41.2233 0.00023641 10.0782 run43.mat 31 3 1516 342170 343838 +1365957 1461958 96002 11614566.9077 11619368.8316 41.2277 -0.0049709 9.2718 run43.mat 40.9499 3 1517 360768 384770 +1529852 1536621 6770 11622761.5315 11623100.3739 41.2252 0.00047804 9.3335 run43.mat 41 3 1518 401744 403436 +1608085 1664887 56803 11626676.0347 11629513.5201 41.2267 -0.0048095 8.7065 run43.mat 51 3 1519 421303 435504 +1665138 1704058 38921 11629526.1738 11631474.0542 41.2277 -0.0039379 8.7064 run43.mat 51 3 1519 435567 445298 +1774053 1780875 6823 11634971.757 11635312.9727 41.2254 -0.0019753 8.743 run43.mat 51 3 1520 462796 464502 +1848351 1944357 96007 11638687.5909 11643489.9909 41.2258 -0.0044369 8.2443 run43.mat 61 3 1521 481372 505375 +2012266 2019009 6744 11646883.2549 11647221.7149 41.228 -0.0074272 8.2766 run43.mat 61 3 1522 522352 524038 +2088411 2184437 96027 11650690.0044 11655490.4015 41.2272 -0.0030984 7.8588 run43.mat 71 3 1523 541390 565397 +2254570 2261342 6773 11658998.9923 11659336.3747 41.2267 -0.0077282 7.8696 run43.mat 71 3 1524 582932 584624 +2330740 2348237 17498 11662809.5097 11663684.6137 41.2237 -0.0037133 7.5363 run43.mat 81 3 1525 601975 606349 +2348488 2350625 2138 11663697.1685 11663803.8561 41.2225 0.0024889 7.5665 run43.mat 81 3 1525 606412 606946 +2350887 2357627 6741 11663816.8547 11664151.2465 41.2279 -0.0037144 7.5299 run43.mat 81 3 1525 607011 608697 +2357877 2389762 31886 11664163.6497 11665757.6168 41.2282 -0.0044797 7.5211 run43.mat 81 3 1525 608759 616731 +2390020 2426739 36720 11665770.4169 11667607.3374 41.2302 -0.0045165 7.5335 run43.mat 81 3 1525 616795 625975 +2496881 2503666 6786 11671113.8508 11671453.1897 41.2274 -0.003482 7.5437 run43.mat 81 3 1526 643512 645208 +2582890 2678896 96007 11675414.5223 11680216.0656 41.2279 -0.002996 7.2453 run43.mat 91 3 1527 665015 689018 +2747025 2753818 6794 11683620.5218 11683961.682 41.224 -0.0038739 7.2746 run43.mat 91 3 1528 706050 707749 +2823203 2877486 54284 11687431.0865 11690147.1891 41.2277 -0.0042584 6.9957 run43.mat 101 3 1529 725096 738667 +2877737 2908312 30576 11690159.7415 11691684.9944 41.2285 -0.0020466 6.9995 run43.mat 101 3 1529 738730 746374 +2908625 2919196 10572 11691700.5264 11692230.9121 41.2349 -0.0011207 6.9932 run43.mat 101 3 1529 746452 749095 +2989311 2996074 6764 11695737.7843 11696076.2261 41.2238 -0.0082974 7.0417 run43.mat 101 3 1530 766624 768315 +3065469 3091897 26429 11699547.2862 11700866.5244 41.2281 -0.0016465 6.7728 run43.mat 111 3 1531 785665 792272 +3092147 3114486 22340 11700878.9301 11701996.3578 41.2309 -0.0028695 6.7729 run43.mat 111 3 1531 792335 797919 +3114738 3161432 46695 11702008.9627 11704343.2615 41.2289 -0.0036709 6.7795 run43.mat 111 3 1531 797982 809657 +3231582 3238388 6807 11707849.8897 11708190.6461 41.227 -0.0017768 6.8012 run43.mat 111 3 1532 827195 828897 +3307715 3310830 3116 11711657.8162 11711813.3654 41.2183 -0.0025185 6.6861 run43.mat 121 3 1533 846229 847008 +3311081 3378578 67498 11711826.0192 11715200.1865 41.2273 -0.0031994 6.5751 run43.mat 121 3 1533 847071 863946 +3378841 3386446 7606 11715213.2321 11715593.1037 41.2302 -0.0022628 6.5812 run43.mat 121 3 1533 864012 865912 +3386702 3386865 164 11715606.0121 11715614.2311 41.2057 0.014155 6.6973 run43.mat 121 3 1533 865976 866017 +3387121 3393740 6620 11715627.1396 11715959.611 41.2276 -0.002695 6.5718 run43.mat 121 3 1533 866081 867737 +3393990 3403695 9706 11715972.1158 11716456.6737 41.2268 -0.0041615 6.5935 run43.mat 121 3 1533 867799 870225 +3473621 3480431 6811 11719953.6425 11720294.2447 41.2283 -0.0064842 6.5975 run43.mat 121 3 1534 887707 889410 +3549809 3551988 2180 11723760.4025 11723869.4324 41.2151 -0.013926 6.4805 run43.mat 131 3 1535 906755 907300 +3552320 3558231 5912 11723886.1731 11724183.2253 41.2255 0.00093546 6.3909 run43.mat 131 3 1535 907383 908861 +3558483 3618621 60139 11724195.8279 11727203.3831 41.2279 -0.0026785 6.3997 run43.mat 131 3 1535 908924 923959 +3618873 3639719 20847 11727215.8881 11728257.7287 41.2312 -0.0018517 6.405 run43.mat 131 3 1535 924022 929233 +3640026 3645752 5727 11728273.0846 11728557.5415 41.2221 -0.00188 6.408 run43.mat 131 3 1535 929310 930742 +3715924 3716862 939 11732066.9994 11732114.4859 41.2093 -0.0009801 6.5976 run43.mat 131 3 1536 948285 948520 +3717114 3722811 5698 11732127.2434 11732414.4419 41.232 -0.0045331 6.4054 run43.mat 131 3 1536 948583 950008 +3792112 3798002 5891 11735876.612 11736171.973 41.2244 -0.005073 6.2917 run43.mat 141 3 1537 967334 968806 +3798252 3825571 27320 11736184.5789 11737549.0467 41.2275 -0.0043689 6.2384 run43.mat 141 3 1537 968869 975699 +3825896 3874352 48457 11737565.3048 11739990.1039 41.2266 -0.0024171 6.2405 run43.mat 141 3 1537 975780 987894 +3874602 3884221 9620 11740002.7072 11740483.6509 41.2256 -0.0058185 6.2527 run43.mat 141 3 1537 987957 990362 +3884474 3888054 3581 11740496.4055 11740676.0694 41.2254 -0.005492 6.2407 run43.mat 141 3 1537 990425 991320 +3958171 3964960 6790 11744180.3275 11744520.1286 41.2237 -0.0068422 6.2578 run43.mat 141 3 1538 1008850 1010547 +4036293 4132235 95943 11748086.95 11752882.2469 41.2288 -0.0026794 6.0928 run43.mat 151 3 1539 1028381 1052368 +4202248 4209137 6890 11756384.9446 11756727.4806 41.2213 -0.0016556 6.1179 run43.mat 151 3 1540 1069872 1071595 +4280473 4280945 473 11760295.3224 11760318.9273 41.1819 -0.002063 6.2012 run43.mat 161 3 1541 1089429 1089547 +4281195 4318791 37597 11760331.4299 11762209.8844 41.2273 -0.0025392 5.9535 run43.mat 161 3 1541 1089610 1099009 +4319047 4365645 46599 11762222.7386 11764555.0012 41.2246 -0.0026351 5.9568 run43.mat 161 3 1541 1099073 1110723 +4365895 4371155 5261 11764567.6046 11764830.4963 41.2277 -0.00022609 5.97 run43.mat 161 3 1541 1110785 1112101 +4371405 4376413 5009 11764842.8996 11765093.8195 41.227 -0.0023956 5.9582 run43.mat 161 3 1541 1112163 1113415 +4446417 4453308 6892 11768592.6255 11768939.1246 41.2226 -0.0031661 5.9807 run43.mat 161 3 1542 1130917 1132640 +4524412 4620373 95962 11772491.456 11777291.7636 41.2274 -0.0029027 5.8289 run43.mat 171 3 1543 1150417 1174408 +4690548 4697432 6885 11780801.006 11781143.8294 41.2253 -0.0034397 5.8422 run43.mat 171 3 1544 1191953 1193674 +4768567 4790205 21639 11784700.9639 11785782.8207 41.2293 -0.0026868 5.7143 run43.mat 181 3 1545 1211458 1216868 +4790460 4864533 74074 11785795.6761 11789500.0909 41.2282 -0.002795 5.7101 run43.mat 181 3 1545 1216932 1235451 +4934738 4941621 6884 11793012.0603 11793355.8319 41.2269 -0.0031947 5.73 run43.mat 181 3 1546 1253002 1254724 +5012779 5108713 95935 11796911.2247 11801708.8144 41.2279 -0.0027308 5.5995 run43.mat 191 3 1547 1272514 1296498 +5178928 5185840 6913 11805218.8511 11805565.3148 41.2291 -0.0035605 5.6176 run43.mat 191 3 1548 1314053 1315781 +5256948 5352871 95924 11809118.8599 11813916.6562 41.2283 -0.0028199 5.4558 run43.mat 201 3 1549 1333559 1357540 +5422870 5429789 6920 11817417.7245 11817762.1067 41.2251 -0.0026164 5.4669 run43.mat 201 3 1550 1375041 1376771 +5501148 5597092 95945 11821331.9894 11826128.2586 41.2273 -0.0027377 5.323 run43.mat 211 3 1551 1394611 1418599 +5669147 5676066 6920 11829732.7104 11830077.3074 41.2225 -0.0023389 5.3482 run43.mat 211 3 1552 1436613 1438343 +5747341 5843291 95951 11833639.9921 11838437.8457 41.2273 -0.0021313 5.2008 run43.mat 221 3 1553 1456162 1480151 +5915352 5922274 6923 11842040.7888 11842388.4957 41.2239 -0.0027448 5.2186 run43.mat 221 3 1554 1498167 1499897 +245205 265750 20546 12012188.6092 12013214.0163 41.2261 -21.0444 4.5757 run44.mat 1 4 1556 73335 76760 +266002 280428 14427 12013226.5212 12013950.0186 41.2277 -21.0449 4.2038 run44.mat 1 4 1556 76802 79206 +280682 281169 488 12013962.8236 12013987.3749 41.2219 -21.0627 4.604 run44.mat 1 4 1556 79248 79329 +281424 283958 2535 12014000.2303 12014127.6653 41.2264 -21.036 4.2154 run44.mat 1 4 1556 79372 79794 +362085 387029 24945 12018033.2327 12019280.4467 41.2308 -21.0373 5.756 run44.mat 11 4 1557 92816 96974 +466684 486318 19635 12023262.2607 12024245.2224 41.2284 -21.0359 6.4402 run44.mat 21 4 1558 110250 113522 +565331 585081 19751 12028195.9617 12029180.4323 41.2304 -21.0348 5.8813 run44.mat 31 4 1559 126692 129984 +665881 685658 19778 12033222.4176 12034212.1669 41.23 -21.035 5.4495 run44.mat 41 4 1560 143451 146747 +766368 786176 19809 12038246.444 12039237.9689 41.2293 -21.0372 5.1118 run44.mat 51 4 1561 160199 163501 +866711 886511 19801 12043265.0758 12044254.2214 41.2278 -21.0364 4.863 run44.mat 61 4 1562 176924 180224 +967711 987045 19335 12048314.6075 12049281.2765 41.228 -21.0377 4.6326 run44.mat 71 4 1563 193758 196981 +1069844 1089317 19474 12053420.4885 12054394.2198 41.2304 -21.0378 4.4352 run44.mat 81 4 1564 210781 214026 +1172239 1191780 19542 12058541.4368 12059518.4006 41.2275 -21.036 4.2697 run44.mat 91 4 1565 227847 231104 +1274359 1294205 19847 12063648.6443 12064637.8774 41.2285 -21.0363 4.1593 run44.mat 101 4 1566 244868 248176 +1379084 1398630 19547 12068883.6164 12069860.2049 41.2268 -21.0352 4.0163 run44.mat 111 4 1567 262323 265581 +1483122 1497453 14332 12074086.3429 12074802.2476 41.2275 -21.0368 3.9553 run44.mat 121 4 1568 279664 282052 +1497760 1502987 5228 12074817.604 12075077.8313 41.2342 -21.0335 3.8734 run44.mat 121 4 1568 282104 282975 +1587974 1607476 19503 12079328.4048 12080302.9083 41.2331 -21.0357 3.8105 run44.mat 131 4 1569 297139 300390 +1691926 1711781 19856 12084527.434 12085516.4649 41.231 -21.0363 3.7434 run44.mat 141 4 1570 314466 317775 +1796449 1816275 19827 12089751.5479 12090744.1805 41.2311 -21.0353 3.6648 run44.mat 151 4 1571 331887 335192 +1903101 1922551 19451 12095084.0389 12096056.9734 41.2301 -21.0355 3.5713 run44.mat 161 4 1572 349663 352905 +2009436 2028847 19412 12100402.1917 12101371.6269 41.2289 -21.0347 3.5026 run44.mat 171 4 1573 367387 370621 +2116071 2135425 19355 12105732.2518 12106701.9454 41.2323 -21.0353 3.4433 run44.mat 181 4 1574 385159 388386 +2222394 2241807 19414 12111048.7644 12112021.6078 41.227 -21.0373 3.3785 run44.mat 191 4 1575 402881 406117 +2329006 2348454 19449 12116379.4755 12117353.5541 41.2238 -21.0364 3.3035 run44.mat 201 4 1576 420650 423892 +2435450 2454938 19489 12121701.4371 12122676.8507 41.2287 -21.0364 3.237 run44.mat 211 4 1577 438392 441640 +2543938 2563355 19418 12127127.2264 12128098.5501 41.225 -21.0328 3.1774 run44.mat 221 4 1578 456474 459710 +317479 318290 812 12191152.3832 12191193.2767 41.2169 0.00063982 8.7781 run45.mat 1 3 1580 59942 60077 +318572 322021 3450 12191207.4962 12191380.9604 41.2297 -0.011547 8.6801 run45.mat 1 3 1580 60124 60698 +322281 324031 1751 12191393.9629 12191481.4797 41.2284 -0.020971 8.7128 run45.mat 1 3 1580 60742 61034 +324282 332832 8551 12191494.0321 12191921.6143 41.2297 -0.0003264 8.4898 run45.mat 1 3 1580 61075 62500 +333082 333502 421 12191934.1168 12191955.1208 41.2351 -3.7114e-05 8.0908 run45.mat 1 3 1580 62542 62612 +333752 346569 12818 12191967.6232 12192608.6376 41.2236 -0.0049612 7.9958 run45.mat 1 3 1580 62654 64790 +346874 356933 10060 12192623.7725 12193126.8452 41.2267 -0.007209 7.8516 run45.mat 1 3 1580 64841 66517 +357271 357353 83 12193143.6144 12193147.6827 41.2025 -0.16837 7.0514 run45.mat 1 3 1580 66574 66587 +357691 359942 2252 12193164.4519 12193276.1308 41.2239 -0.021639 7.5221 run45.mat 1 3 1580 66644 67019 +360194 362813 2620 12193288.6333 12193419.563 41.2196 -0.0038491 7.4362 run45.mat 1 3 1580 67061 67497 +363151 364013 863 12193436.6027 12193480.0591 41.2298 0.017818 7.3012 run45.mat 1 3 1580 67554 67697 +364351 367229 2879 12193497.0988 12193641.6368 41.2287 -0.011943 7.207 run45.mat 1 3 1580 67753 68233 +367492 367673 182 12193654.6876 12193663.6693 41.2476 -0.084031 6.4864 run45.mat 1 3 1580 68277 68307 +368011 370151 2141 12193680.4418 12193786.6348 41.2277 0.010201 6.8531 run45.mat 1 3 1580 68363 68720 +370473 371273 801 12193802.6133 12193842.3116 41.2223 0.0061849 6.7615 run45.mat 1 3 1580 68774 68907 +371611 372553 943 12193859.1004 12193906.2103 41.2363 0.025336 7.124 run45.mat 1 3 1580 68964 69121 +372891 374561 1671 12193923.1138 12194006.6312 41.2285 0.010245 6.797 run45.mat 1 3 1580 69177 69455 +374825 375071 247 12194019.8339 12194032.1365 41.1587 -0.078525 7.4577 run45.mat 1 3 1580 69499 69540 +375411 376542 1132 12194049.14 12194105.7033 41.2336 0.018706 6.7689 run45.mat 1 3 1580 69597 69785 +376792 378951 2160 12194118.2082 12194226.1997 41.2293 0.0054086 6.8419 run45.mat 1 3 1580 69827 70187 +379202 379733 532 12194238.7545 12194265.3147 41.2269 -0.059457 6.6239 run45.mat 1 3 1580 70229 70317 +380071 380553 483 12194282.2212 12194306.3305 41.2269 -0.024661 6.3715 run45.mat 1 3 1580 70373 70454 +380891 381333 443 12194323.237 12194345.3455 41.2225 -0.084513 6.8201 run45.mat 1 3 1580 70510 70584 +381671 382342 672 12194362.2945 12194396.1287 41.2177 -0.0021775 7.0226 run45.mat 1 3 1580 70640 70752 +382593 382793 201 12194408.785 12194418.8697 41.2282 0.01306 6.6849 run45.mat 1 3 1580 70794 70827 +383131 384311 1181 12194435.9129 12194495.4127 41.2182 0.0073642 6.847 run45.mat 1 3 1580 70884 71080 +384562 385473 912 12194508.069 12194554.0048 41.216 -0.022658 6.6229 run45.mat 1 3 1580 71122 71274 +385811 386750 940 12194571.048 12194618.2125 41.2134 0.0053503 6.6912 run45.mat 1 3 1580 71331 71487 +387052 387073 22 12194633.1957 12194634.2375 41.353 0.039453 5.5366 run45.mat 1 3 1580 71538 71541 +387411 387813 403 12194651.0067 12194670.9512 41.2302 -0.011161 6.6695 run45.mat 1 3 1580 71597 71664 +388405 388692 288 12194700.3221 12194714.561 41.2125 0.0011997 6.6494 run45.mat 1 3 1580 71763 71811 +388943 389213 271 12194727.0139 12194740.4094 41.2148 -0.018651 6.2958 run45.mat 1 3 1580 71853 71898 +389551 390699 1149 12194757.1786 12194814.1344 41.2299 0.0026587 6.5661 run45.mat 1 3 1580 71954 72145 +390977 391962 986 12194827.9268 12194877.119 41.2327 -0.018492 6.8095 run45.mat 1 3 1580 72192 72356 +392212 394533 2322 12194889.7249 12195006.758 41.2268 0.0024286 6.4218 run45.mat 1 3 1580 72398 72784 +394871 395993 1123 12195023.8011 12195080.3764 41.2359 0.0051039 6.3916 run45.mat 1 3 1580 72841 73028 +396331 398673 2343 12195097.4195 12195213.7672 41.2275 0.022002 6.3989 run45.mat 1 3 1580 73084 73474 +399011 400622 1612 12195230.5364 12195310.463 41.2232 -0.025076 6.0988 run45.mat 1 3 1580 73531 73799 +400872 400953 82 12195322.8662 12195326.8849 41.1622 0.058067 7.0839 run45.mat 1 3 1580 73841 73854 +401291 401333 43 12195343.6541 12195345.7378 41.1955 -0.090362 6.0954 run45.mat 1 3 1580 73911 73918 +401854 402622 769 12195371.8245 12195410.5498 41.2148 -0.0058848 6.4721 run45.mat 1 3 1580 74004 74132 +403143 403213 71 12195436.8205 12195440.3501 41.1884 -0.05674 5.7712 run45.mat 1 3 1580 74219 74231 +404343 405136 794 12195497.3288 12195537.3146 41.2314 -0.0078875 6.3904 run45.mat 1 3 1580 74419 74551 +405406 405844 439 12195550.929 12195573.0145 41.2671 0.061783 6.3018 run45.mat 1 3 1580 74596 74669 +406103 406572 470 12195586.0742 12195609.7006 41.234 -0.017653 6.207 run45.mat 1 3 1580 74712 74791 +406889 407993 1105 12195625.5539 12195680.7654 41.2478 0.003642 6.1852 run45.mat 1 3 1580 74843 75027 +408471 408692 222 12195704.6703 12195715.7227 41.2499 -0.00010997 6.288 run45.mat 1 3 1580 75107 75144 +408992 409489 498 12195730.7258 12195755.581 41.2382 -0.0016621 5.6922 run45.mat 1 3 1580 75194 75277 +410011 410421 411 12195781.6864 12195802.1907 41.204 -0.021882 7.3733 run45.mat 1 3 1580 75364 75432 +410811 413524 2714 12195821.6947 12195956.5177 41.2259 -0.014922 7.3514 run45.mat 1 3 1580 75497 75949 +481554 493082 11529 12199356.8034 12199934.7818 41.227 0.0039738 9.5215 run45.mat 1 3 1581 87288 89209 +493333 495546 2214 12199947.2396 12200057.0768 41.2233 -0.035094 8.903 run45.mat 1 3 1581 89251 89620 +496055 504631 8577 12200082.3399 12200511.8004 41.2259 0.0024905 9.4202 run45.mat 1 3 1581 89705 91135 +504884 507531 2648 12200524.3525 12200656.4473 41.2233 -0.0059196 8.7565 run45.mat 1 3 1581 91177 91618 +507784 510602 2819 12200669.2019 12200811.2668 41.2304 -0.011233 9.3217 run45.mat 1 3 1581 91660 92130 +510852 518470 7619 12200823.8701 12201203.4973 41.2252 -0.0033619 8.5653 run45.mat 1 3 1581 92172 93442 +518774 525752 6979 12201218.4698 12201566.9635 41.2258 0.0046366 7.814 run45.mat 1 3 1581 93492 94655 +526002 526690 689 12201579.5668 12201614.2026 41.2294 -0.0068629 7.6943 run45.mat 1 3 1581 94697 94811 +527068 527608 541 12201633.1105 12201660.1217 41.2276 -0.03476 7.1949 run45.mat 1 3 1581 94874 94964 +527864 528002 139 12201672.9271 12201679.8299 41.1724 -0.045748 7.5261 run45.mat 1 3 1581 95007 95030 +528254 528298 45 12201692.4352 12201694.6361 41.2148 -0.085616 4.9604 run45.mat 1 3 1581 95072 95079 +528878 532070 3193 12201723.6482 12201883.3068 41.2242 -0.010836 7.5658 run45.mat 1 3 1581 95176 95708 +532324 536333 4010 12201896.0092 12202096.4978 41.224 0.019793 7.3478 run45.mat 1 3 1581 95750 96418 +536671 537612 942 12202113.401 12202160.4601 41.2315 -0.023278 6.8082 run45.mat 1 3 1581 96475 96631 +537914 538806 893 12202175.563 12202220.1716 41.231 -0.014075 6.6139 run45.mat 1 3 1581 96682 96831 +539066 545883 6818 12202233.1741 12202572.4552 41.2265 -0.011709 6.8021 run45.mat 1 3 1581 96874 98010 +546144 546386 243 12202585.4042 12202597.4106 41.2748 0.073042 7.3674 run45.mat 1 3 1581 98054 98094 +546788 546949 162 12202617.355 12202625.2294 41.2304 0.033458 6.1973 run45.mat 1 3 1581 98161 98188 +547212 547351 140 12202638.0762 12202644.866 41.2089 0.016643 7.1347 run45.mat 1 3 1581 98232 98255 +547654 549920 2267 12202659.6667 12202770.3544 41.2166 0.0075737 6.6008 run45.mat 1 3 1581 98306 98683 +550178 550193 16 12202782.957 12202783.6897 41.1184 0.097876 8.9734 run45.mat 1 3 1581 98726 98729 +550531 551269 739 12202800.2001 12202836.2493 41.221 0.041137 6.2624 run45.mat 1 3 1581 98785 98908 +551527 551979 453 12202848.8519 12202871.0959 41.2187 0.031451 6.4698 run45.mat 1 3 1581 98951 99027 +552243 552872 630 12202884.7176 12202917.1725 41.2398 -0.01543 6.305 run45.mat 1 3 1581 99071 99175 +553122 553128 7 12202930.0718 12202930.3814 41.1193 0.093359 8.7683 run45.mat 1 3 1581 99217 99218 +553565 554008 444 12202952.9295 12202975.7873 41.2473 0.011636 5.9794 run45.mat 1 3 1581 99291 99365 +554442 554773 332 12202998.1806 12203015.2594 41.2353 -0.024167 6.4014 run45.mat 1 3 1581 99437 99492 +555111 555267 157 12203032.6993 12203040.7486 41.2585 -0.019005 6.7375 run45.mat 1 3 1581 99549 99575 +555525 556653 1129 12203054.0607 12203112.2628 41.2208 -0.0088117 6.0276 run45.mat 1 3 1581 99618 99806 +556991 558132 1142 12203129.6567 12203186.9371 41.2273 -0.031412 6.172 run45.mat 1 3 1581 99862 100052 +558394 558442 49 12203200.09 12203202.4997 41.2379 -0.085682 6.7276 run45.mat 1 3 1581 100096 100104 +558692 559725 1034 12203215.0502 12203266.9088 41.2221 -0.0048233 5.7538 run45.mat 1 3 1581 100145 100317 +560043 560209 167 12203282.8731 12203291.2066 41.2405 -0.0077026 6.436 run45.mat 1 3 1581 100370 100398 +560593 561397 805 12203310.4841 12203350.8465 41.2271 -0.040485 5.6927 run45.mat 1 3 1581 100462 100596 +561667 561864 198 12203364.401 12203374.2908 41.1795 0.026248 6.03 run45.mat 1 3 1581 100641 100674 +562182 562223 42 12203390.2406 12203392.2751 41.3029 0.047098 5.5407 run45.mat 1 3 1581 100727 100734 +562484 562542 59 12203405.2267 12203408.1048 41.1836 -0.057968 6.7863 run45.mat 1 3 1581 100777 100787 +562921 563332 412 12203426.9119 12203447.3069 41.2311 -0.03429 6.0835 run45.mat 1 3 1581 100850 100918 +564581 564949 369 12203509.2858 12203527.547 41.2011 -0.02364 5.799 run45.mat 1 3 1581 101127 101188 +565258 566325 1068 12203542.8805 12203595.8281 41.2319 0.018876 6.0733 run45.mat 1 3 1581 101240 101417 +566584 567011 428 12203608.6804 12203629.8694 41.2242 0.015555 5.302 run45.mat 1 3 1581 101461 101532 +567523 567973 451 12203655.5356 12203678.2216 41.2325 -0.016689 5.8476 run45.mat 1 3 1581 101617 101692 +568311 568379 69 12203695.2613 12203698.6895 41.1953 0.080653 5.6738 run45.mat 1 3 1581 101749 101760 +568637 569173 537 12203711.6961 12203738.7177 41.2375 -0.018452 5.4781 run45.mat 1 3 1581 101803 101892 +569511 569573 63 12203755.7574 12203758.883 41.273 -0.047718 4.0819 run45.mat 1 3 1581 101949 101959 +569911 571514 1604 12203775.9228 12203856.7354 41.2185 -0.0308 5.4948 run45.mat 1 3 1581 102015 102283 +571784 572202 419 12203870.347 12203891.3814 41.2233 0.0081239 5.3623 run45.mat 1 3 1581 102328 102397 +572530 573633 1104 12203907.6545 12203962.3777 41.2184 -0.0022702 5.3467 run45.mat 1 3 1581 102452 102636 +573971 573992 22 12203979.1469 12203980.1887 41.2481 -0.204 6.1884 run45.mat 1 3 1581 102692 102696 +574262 574667 406 12203993.5842 12204013.6775 41.2023 -0.071325 5.4296 run45.mat 1 3 1581 102740 102808 +574925 575393 469 12204026.4777 12204049.6966 41.2231 0.0037205 5.5076 run45.mat 1 3 1581 102851 102929 +575731 576107 377 12204066.4658 12204085.1203 41.2328 -0.0021044 5.6231 run45.mat 1 3 1581 102985 103048 +576515 576533 19 12204105.3624 12204106.2554 41.3124 0.10972 5.4279 run45.mat 1 3 1581 103116 103119 +577558 577590 33 12204157.2538 12204158.8541 41.2914 0.18079 5.5263 run45.mat 1 3 1581 103289 103295 +645406 646590 1185 12207551.2346 12207609.9764 41.2217 0.0014768 9.2011 run45.mat 1 3 1582 114599 114796 +646854 648099 1246 12207623.0742 12207685.2193 41.23 -0.0043163 9.898 run45.mat 1 3 1582 114840 115047 +648356 648649 294 12207698.0746 12207712.7307 41.2051 -0.015578 10.2012 run45.mat 1 3 1582 115090 115139 +648965 650669 1705 12207728.5373 12207813.7728 41.2248 -0.014254 10.4159 run45.mat 1 3 1582 115192 115475 +650978 652367 1390 12207829.2293 12207898.7038 41.233 0.017988 10.2543 run45.mat 1 3 1582 115527 115758 +719575 722572 2998 12211259.6854 12211410.7743 41.2264 0.015296 10.0896 run45.mat 11 3 1583 126960 127460 +722822 750144 27323 12211423.3241 12212786.7897 41.2258 -0.0051652 9.7437 run45.mat 11 3 1583 127502 132055 +750411 751362 952 12212800.2501 12212848.1932 41.2241 0.0070624 10.2109 run45.mat 11 3 1583 132100 132258 +751612 762217 10606 12212860.7965 12213389.8293 41.2264 -0.00596 9.7694 run45.mat 11 3 1583 132300 134067 +762475 762933 459 12213402.632 12213425.4446 41.2297 0.0311 10.4647 run45.mat 11 3 1583 134110 134187 +763271 783130 19860 12213442.4844 12214435.4991 41.2257 -0.0061885 9.7294 run45.mat 11 3 1583 134243 137553 +783439 793742 10304 12214450.9542 12214968.1123 41.2251 -0.0047939 9.7698 run45.mat 11 3 1583 137605 139322 +793992 815648 21657 12214980.5181 12216063.8737 41.2255 -0.0044741 9.7789 run45.mat 11 3 1583 139364 142973 +883590 885631 2042 12219458.883 12219562.6847 41.2242 0.010954 10.0413 run45.mat 11 3 1584 154297 154637 +885884 886082 199 12219575.5518 12219585.6217 41.1833 -0.058224 10.1097 run45.mat 11 3 1584 154679 154712 +886332 918113 31782 12219598.3363 12221185.3977 41.2249 -0.0037634 9.7505 run45.mat 11 3 1584 154754 160052 +985780 1002527 16748 12224570.7495 12225407.9387 41.2253 -0.0034666 10.9815 run45.mat 21 3 1585 171330 174121 +1002787 1012791 10005 12225421.0462 12225921.3991 41.2275 -0.0087863 10.9499 run45.mat 21 3 1585 174164 175831 +1013092 1030791 17700 12225936.5735 12226819.9068 41.2253 -0.012006 10.9682 run45.mat 21 3 1585 175882 178832 +1031096 1081848 50753 12226834.9286 12229372.1246 41.2262 -0.004307 10.9675 run45.mat 21 3 1585 178883 187342 +1149856 1156482 6627 12232772.268 12233105.1134 41.2238 -0.0047366 11.0544 run45.mat 21 3 1586 198677 199782 +1224179 1233108 8930 12236491.5571 12236936.3984 41.2277 -0.0046143 10.0674 run45.mat 31 3 1587 211065 212553 +1233412 1320247 86836 12236951.5412 12241292.0498 41.2263 -0.0052204 9.9911 run45.mat 31 3 1587 212604 227076 +1390145 1396787 6643 12244786.2142 12245119.335 41.2246 -0.0022102 10.0532 run45.mat 31 3 1588 238727 239834 +1464513 1560528 96016 12248505.8115 12253306.8583 41.2264 -0.004594 9.2706 run45.mat 41 3 1589 251122 267125 +1628392 1635186 6795 12256700.4543 12257040.8058 41.2283 -0.0029763 9.3458 run45.mat 41 3 1590 278436 279569 +1702713 1798727 96015 12260416.2013 12265217.0325 41.2261 -0.0036517 8.7072 run45.mat 51 3 1591 290824 306827 +1868677 1875462 6786 12268715.8361 12269053.9395 41.2257 -0.0051722 8.7863 run45.mat 51 3 1592 318486 319616 +1944825 2040845 96021 12272524.1362 12277321.3043 41.2255 -0.003517 8.2494 run45.mat 61 3 1593 331178 347182 +2108919 2115691 6773 12280728.8348 12281065.5052 41.2248 -0.003737 8.32 run45.mat 61 3 1594 358528 359656 +2185169 2272685 87517 12284541.1055 12288914.1211 41.2273 -0.00358 7.8583 run45.mat 71 3 1595 371236 385824 +2272935 2281166 8232 12288926.6237 12289340.2643 41.2321 -0.0011755 7.8694 run45.mat 71 3 1595 385865 387237 +2351101 2357890 6790 12292834.9923 12293175.6571 41.225 -0.005927 7.8691 run45.mat 71 3 1596 398893 400025 +2427269 2523245 95977 12296645.3116 12301443.0368 41.2274 -0.0036909 7.5304 run45.mat 81 3 1597 411588 427585 +2593207 2599995 6789 12304942.3275 12305281.3842 41.2213 -0.002396 7.5848 run45.mat 81 3 1598 439246 440377 +2669346 2762025 92680 12308749.1053 12313384.338 41.2283 -0.0028642 7.2457 run45.mat 91 3 1599 400001 400001 +2762276 2765366 3091 12313396.9917 12313550.312 41.2223 -0.00038165 7.2367 run45.mat 91 3 1599 400001 400001 +2835272 2842085 6814 12317044.7393 12317384.7097 41.2263 -0.0041936 7.2504 run45.mat 91 3 1600 400001 400001 +2911478 2946823 35346 12320856.626 12322622.9121 41.2249 -0.0019534 6.9957 run45.mat 101 3 1601 400001 400001 +2947150 2969314 22165 12322639.3973 12323746.7017 41.2288 -0.0029204 6.9879 run45.mat 101 3 1601 400001 400001 +2969567 2979656 10090 12323759.4028 12324266.3974 41.2252 -0.0033423 6.9867 run45.mat 101 3 1601 400001 400001 +2979906 3000667 20762 12324278.8031 12325313.589 41.2288 -0.0045578 7.0001 run45.mat 101 3 1601 400001 400001 +3000981 3007464 6484 12325329.2955 12325656.5618 41.2276 0.0034944 6.9991 run45.mat 101 3 1601 400001 400001 +3077616 3084402 6787 12329163.12 12329502.5127 41.2302 -0.0024478 7.0498 run45.mat 101 3 1602 400001 400001 +3153820 3156125 2306 12332974.0792 12333089.5685 41.2334 -0.0061021 6.871 run45.mat 101.0412 3 1603 400001 400001 +3156377 3189866 33490 12333102.1711 12334776.0546 41.2282 -0.0042339 6.7631 run45.mat 111 3 1603 400001 400001 +3190116 3248316 58201 12334788.557 12337697.9885 41.227 -0.0030161 6.7787 run45.mat 111 3 1603 400001 400001 +3248569 3249442 874 12337710.5431 12337753.8638 41.2395 0.0031594 6.7428 run45.mat 111 3 1603 400001 400001 +3249700 3249702 3 12337766.6665 12337766.7658 41.1367 -0.011719 5.822 run45.mat 111 3 1603 400001 400001 +3319738 3326566 6829 12341268.4347 12341610.4854 41.2294 -0.0066561 6.803 run45.mat 111 3 1604 400001 400001 +3395886 3403491 7606 12345076.5709 12345455.1293 41.2287 -0.0085208 6.5989 run45.mat 120.3012 3 1605 400001 400001 +3403750 3472451 68702 12345468.0817 12348905.4637 41.2277 -0.0030988 6.5743 run45.mat 121 3 1605 400001 400001 +3472757 3491864 19108 12348920.5191 12349874.2299 41.2266 -0.0036027 6.5883 run45.mat 121 3 1605 400001 400001 +3561835 3568671 6837 12353376.0577 12353717.1516 41.2267 -0.0046882 6.5936 run45.mat 121 3 1606 400001 400001 +3640083 3660616 20534 12357287.7371 12358314.3586 41.2294 -0.003141 6.4029 run45.mat 131 3 1607 400001 400001 +3660921 3696691 35771 12358329.7378 12360117.8102 41.2276 -0.0029435 6.401 run45.mat 131 3 1607 400001 400001 +3696949 3736043 39095 12360130.6129 12362084.2973 41.2275 -0.00043474 6.4089 run45.mat 131 3 1607 400001 400001 +3806033 3812894 6862 12365584.5434 12365927.1432 41.2328 -0.010679 6.417 run45.mat 131 3 1608 400001 400001 +3884244 3894077 9834 12369493.9645 12369986.347 41.2216 -0.00088302 6.2548 run45.mat 141 3 1609 400001 400001 +3894329 3973128 78800 12369998.8519 12373939.3875 41.2287 -0.0026114 6.2407 run45.mat 141 3 1609 400001 400001 +3973389 3980179 6791 12373952.339 12374291.2103 41.2264 0.0019721 6.2399 run45.mat 141 3 1609 400001 400001 +4050178 4056068 5891 12377793.042 12378087.2874 41.2227 -0.004422 6.276 run45.mat 141 3 1610 400001 400001 +4056318 4057094 777 12378099.6906 12378138.1903 41.226 0.0044776 6.2498 run45.mat 141 3 1610 400001 400001 +4128402 4132247 3846 12381702.3045 12381894.5915 41.2164 -0.0035915 6.1821 run45.mat 151 3 1611 400001 400001 +4132500 4166037 33538 12381907.2439 12383583.5757 41.2284 -0.0039393 6.0852 run45.mat 151 3 1611 400001 400001 +4166291 4181518 15228 12383596.2781 12384358.9919 41.2267 -0.0024167 6.0906 run45.mat 151 3 1611 400001 400001 +4181770 4224343 42574 12384371.6935 12386501.2862 41.2268 -0.0034323 6.096 run45.mat 151 3 1611 400001 400001 +4294543 4301447 6905 12390009.786 12390355.8264 41.2215 -0.0030816 6.1048 run45.mat 151 3 1612 400001 400001 +4372542 4422311 49770 12393911.25 12396399.4037 41.2234 -0.0027618 5.9546 run45.mat 161 3 1613 400001 400001 +4422569 4468502 45934 12396412.2064 12398707.266 41.2289 -0.0026716 5.9557 run45.mat 161 3 1613 400001 400001 +4538660 4545538 6879 12402216.6872 12402558.8673 41.225 -0.0013768 5.9845 run45.mat 161 3 1614 400001 400001 +4616690 4712622 95933 12406117.2747 12410915.3299 41.2277 -0.0027021 5.8268 run45.mat 171 3 1615 400001 400001 +4782787 4789680 6894 12414421.3168 12414766.0358 41.2344 -0.0034689 5.844 run45.mat 171 3 1616 400001 400001 +4860804 4956735 95932 12418322.3765 12423121.0091 41.2275 -0.0027413 5.7103 run45.mat 181 3 1617 400001 400001 +5026947 5033848 6902 12426632.5014 12426977.2013 41.2272 -0.0044813 5.732 run45.mat 181 3 1618 400001 400001 +5104972 5200921 95950 12430532.9762 12435329.5857 41.2275 -0.0023908 5.6009 run45.mat 190.8845 3 1619 400001 400001 +5272950 5279838 6889 12438930.0042 12439275.3301 41.2229 -0.0016582 5.6247 run45.mat 191 3 1620 400001 400001 +5351197 5447133 95937 12442842.9778 12447641.5349 41.2289 -0.0024325 5.4579 run45.mat 201 3 1621 400001 400001 +5517136 5524048 6913 12451140.0625 12451488.3109 41.2205 -0.003163 5.4741 run45.mat 201 3 1622 400001 400001 +5595164 5691100 95937 12455042.4398 12459840.333 41.2265 -0.0024109 5.3219 run45.mat 211 3 1623 400001 400001 +5761301 5768243 6943 12463350.08 12463695.971 41.2193 -0.0027803 5.3389 run45.mat 211 3 1624 400001 400001 +5839525 5935455 95931 12467259.1935 12472056.0212 41.2284 -0.0026654 5.202 run45.mat 221 3 1625 400001 400001 +6007523 6014410 6888 12475659.9637 12476005.7377 41.2293 -0.0024421 5.2163 run45.mat 221 3 1626 400001 400001 +209663 251105 41443 12960800.9233 12962871.6164 41.2287 -21.0382 103.3055 run46.mat 1 4 1628 250027 270749 +328351 354172 25822 12966735.9533 12968024.9216 41.229 -21.0364 139.6694 run46.mat 11 4 1629 309374 322285 +433189 453306 20118 12971978.142 12972982.3464 41.2289 -21.0363 158.3718 run46.mat 21 4 1630 361795 371854 +531849 551909 20061 12976909.8022 12977913.0986 41.2285 -21.035 144.8065 run46.mat 31 4 1631 411128 421158 +632574 652677 20104 12981946.4816 12982950.6203 41.2273 -21.0365 134.5355 run46.mat 41 4 1632 461492 471545 +733082 753196 20115 12986971.4302 12987978.5354 41.2305 -21.0346 126.2368 run46.mat 51 4 1633 511748 521806 +833508 853579 20072 12991992.0534 12992996.8899 41.2271 -21.0372 119.8626 run46.mat 61 4 1634 561964 572000 +934061 954097 20037 12997021.6419 12998021.9996 41.2334 -21.0345 114.4979 run46.mat 71 4 1635 612242 622261 +1036287 1056302 20016 13002132.8488 13003132.363 41.2295 -21.0358 109.9116 run46.mat 81 4 1636 663358 673366 +1138727 1158767 20041 13007254.8153 13008258.0792 41.2315 -21.0369 106.0979 run46.mat 91 4 1637 714580 724600 +1241163 1261288 20126 13012376.8932 13013381.5777 41.2292 -21.0357 102.7148 run46.mat 101 4 1638 765800 775863 +1343547 1363708 20162 13017495.6029 13018503.6458 41.2262 -21.0352 99.9004 run46.mat 111 4 1639 816994 827075 +1445964 1466124 20161 13022617.6422 13023624.1314 41.2314 -21.0368 97.3327 run46.mat 121 4 1640 868205 878286 +1550271 1570440 20170 13027832.4132 13028840.8654 41.2304 -21.036 94.94 run46.mat 131 4 1641 920361 930446 +1654886 1675047 20162 13033063.4239 13034070.7483 41.2324 -21.0351 92.8105 run46.mat 141 4 1642 972671 982752 +1759168 1779347 20180 13038276.3735 13039285.1271 41.2302 -21.0357 90.7863 run46.mat 151 4 1643 1024814 1034904 +1865520 1885683 20164 13043595.9239 13044603.3204 41.2279 -21.0351 89.1353 run46.mat 161 4 1644 1077993 1088074 +1971848 1992004 20157 13048911.2378 13049918.1766 41.2265 -21.0366 87.3633 run46.mat 171 4 1645 1131158 1141237 +2078274 2098482 20209 13054229.417 13055243.0827 41.2296 -21.0365 85.8462 run46.mat 181 4 1646 1184374 1194478 +2184748 2205031 20284 13059556.9988 13060570.7681 41.2328 -21.0355 84.3589 run46.mat 191 4 1647 1237613 1247755 +2291217 2311485 20269 13064878.7983 13065891.5709 41.225 -21.0375 82.539 run46.mat 201 4 1648 1290850 1300985 +2399567 2419717 20151 13070297.0639 13071304.8153 41.2306 -21.0358 80.667 run46.mat 211 4 1649 1345028 1355103 +2508242 2528503 20262 13075731.2592 13076742.7372 41.2293 -21.0368 79.1462 run46.mat 221 4 1650 1399367 1409498 +288071 290070 2000 13154103.4082 13154203.43 41.2294 -0.0019565 147.5998 run47.mat 1 3 1652 173196 174195 +290385 291931 1547 13154219.0581 13154295.7599 41.2316 -0.00079148 162.6495 run47.mat 1 3 1652 174353 175126 +292416 293839 1424 13154319.8222 13154390.4215 41.2261 -0.0060392 145.6562 run47.mat 1 3 1652 175368 176080 +294107 295511 1405 13154403.7178 13154474.4752 41.2219 0.0070521 146.9077 run47.mat 1 3 1652 176214 176915 +295774 298290 2517 13154487.7366 13154614.6023 41.2194 -0.008867 144.1643 run47.mat 1 3 1652 177047 178305 +298544 301083 2540 13154627.4098 13154753.8369 41.222 -0.0076891 144.5868 run47.mat 1 3 1652 178432 179702 +301351 384304 82954 13154767.1332 13158913.8032 41.2254 -0.0049125 145.8917 run47.mat 1 3 1652 179836 221314 +452138 456323 4186 13162307.7237 13162516.6728 41.222 -0.0065739 152.4252 run47.mat 1 3 1653 255232 257325 +456573 458032 1460 13162529.1752 13162602.1393 41.2262 -0.021442 150.4871 run47.mat 1 3 1653 257450 258180 +458284 459751 1468 13162614.7417 13162687.867 41.2232 -0.022147 146.9304 run47.mat 1 3 1653 258306 259039 +460054 460810 757 13162702.8998 13162740.4072 41.2309 -0.0047205 143.7093 run47.mat 1 3 1653 259191 259569 +461335 472514 11180 13162766.4541 13163326.4202 41.2252 -0.0050072 145.0941 run47.mat 1 3 1653 259831 265421 +540404 546642 6239 13166719.8066 13167032.6078 41.2297 0.00086934 236.1838 run47.mat 11 3 1654 299368 302487 +546906 548573 1668 13167045.9169 13167129.956 41.2231 -0.0093398 231.4375 run47.mat 11 3 1654 302619 303452 +548823 551193 2371 13167142.5594 13167260.7049 41.2198 -0.010693 232.9486 run47.mat 11 3 1654 303577 304762 +551443 602494 51052 13167273.1082 13169825.0163 41.2252 -0.0054599 231.9915 run47.mat 11 3 1654 304887 330414 +670754 717180 46427 13173236.2736 13175557.9685 41.2247 -0.0045097 274.0564 run47.mat 21 3 1655 364545 387759 +785110 831568 46459 13178954.4422 13181279.8769 41.2281 -0.004193 250.261 run47.mat 30.3793 3 1656 421726 444956 +899450 945909 46460 13184671.9196 13186997.4711 41.2259 -0.0038423 232.1529 run47.mat 41 3 1657 478898 502129 +1013791 1060086 46296 13190389.5948 13192703.534 41.2263 -0.0037387 217.7537 run47.mat 51 3 1658 536071 559220 +1127932 1174222 46291 13196097.511 13198412.2 41.2261 -0.0034294 206.1816 run47.mat 61 3 1659 593144 616290 +1242066 1288497 46432 13201803.2001 13204126.426 41.2266 -0.0034844 196.6532 run47.mat 71 3 1660 650214 673430 +1356482 1402763 46282 13207522.5914 13209838.3595 41.2277 -0.0039276 188.3925 run47.mat 80.6211 3 1661 707424 730566 +1472489 1518949 46461 13213324.7934 13215649.8083 41.2261 -0.0031578 181.2888 run47.mat 91 3 1662 765430 788662 +1588636 1634927 46292 13219132.6656 13221447.5887 41.2291 -0.0035131 174.9861 run47.mat 101 3 1663 823506 846653 +1704832 1751127 46296 13224944.6872 13227257.3245 41.2268 -0.0032592 169.5548 run47.mat 111 3 1664 881607 904756 +1820982 1867290 46309 13230751.9004 13233066.4007 41.2266 -0.0030682 164.7336 run47.mat 121 3 1665 939684 962840 +1937183 1983508 46326 13236560.7342 13238876.4033 41.229 -0.0027724 160.1351 run47.mat 131 3 1666 997787 1020951 +2053368 2099695 46328 13242371.2462 13244687.2188 41.2256 -0.0024936 156.1176 run47.mat 141 3 1667 1055883 1079047 +2169536 2215843 46308 13248179.6283 13250493.1146 41.2279 -0.0030422 152.3932 run47.mat 151 3 1668 1113969 1137124 +2285726 2332008 46283 13253988.1636 13256301.8746 41.2281 -0.0025623 149.0017 run47.mat 160.2839 3 1669 1172067 1195209 +2401889 2448174 46286 13259798.1159 13262111.0532 41.2272 -0.0027077 145.7831 run47.mat 171 3 1670 1230151 1253294 +2518082 2564363 46282 13265605.9289 13267921.342 41.2266 -0.0031582 142.8706 run47.mat 181 3 1671 1288249 1311391 +2634098 2680370 46273 13271406.3694 13273718.5464 41.2304 -0.0025685 140.0046 run47.mat 191 3 1672 1346260 1369397 +2750284 2796537 46254 13277216.5158 13279527.5182 41.2287 -0.0026239 136.4501 run47.mat 201 3 1673 1404356 1427483 +2868505 2868963 459 13283128.2785 13283150.8358 41.2015 -0.0012404 141.3547 run47.mat 211 3 1674 1463469 1463698 +2869224 2914759 45536 13283163.6905 13285440.1658 41.2291 -0.002912 133.0415 run47.mat 211 3 1674 1463828 1486597 +2986774 3033099 46326 13289043.6599 13291358.2935 41.2308 -0.0022477 130.0887 run47.mat 221 3 1675 1522606 1545770 +327412 365909 38498 13456386.8334 13458310.9035 41.2297 -21.0336 4.4105 run48.mat 1 4 1677 169178 188427 +443995 468900 24906 13462214.0206 13463459.4244 41.2297 -21.0371 5.7505 run48.mat 11 4 1678 227471 239924 +548683 568300 19618 13467449.7089 13468429.2517 41.2295 -21.0376 6.4334 run48.mat 21 4 1679 279818 289627 +647261 666975 19715 13472379.7281 13473363.0453 41.2281 -21.0359 5.8749 run48.mat 31 4 1680 329109 338967 +745782 765586 19805 13477304.748 13478294.1585 41.2305 -21.0352 5.4332 run48.mat 41 4 1681 378372 388274 +846487 866317 19831 13482340.35 13483331.9809 41.2277 -21.0351 5.1141 run48.mat 51 4 1682 428727 438642 +948917 968696 19780 13487461.2814 13488450.7536 41.2295 -21.037 4.8506 run48.mat 61 4 1683 479943 489834 +1049566 1068999 19434 13492494.3189 13493466.4803 41.2274 -21.0363 4.641 run48.mat 71 4 1684 530270 539987 +1151771 1171553 19783 13497605.2458 13498593.9943 41.2284 -21.0348 4.4531 run48.mat 81 4 1685 581375 591266 +1254485 1273970 19486 13502741.5684 13503714.8545 41.2272 -21.0354 4.2782 run48.mat 91 4 1686 632734 642477 +1356885 1374254 17370 13507858.8105 13508728.802 41.2317 -21.0357 4.1492 run48.mat 101 4 1687 683936 692621 +1374504 1376407 1904 13508741.1623 13508835.2489 41.2294 -21.0365 4.0416 run48.mat 101 4 1687 692746 693698 +1463203 1472734 9532 13513175.4053 13513653.5339 41.2266 -21.0371 4.0519 run48.mat 111 4 1688 737098 741864 +1472986 1482700 9715 13513666.0879 13514151.1012 41.2245 -21.0347 3.9795 run48.mat 111 4 1688 741990 746847 +1567410 1587232 19823 13518386.403 13519374.8 41.2272 -21.036 3.928 run48.mat 121 4 1689 789203 799115 +1672181 1691728 19548 13523623.9112 13524600.614 41.2274 -21.0374 3.8156 run48.mat 131 4 1690 841591 851366 +1776545 1795957 19413 13528842.3604 13529813.3564 41.2292 -21.0361 3.7396 run48.mat 141 4 1691 893776 903482 +1880510 1900283 19774 13534039.891 13535029.235 41.2288 -21.0365 3.6638 run48.mat 151 4 1692 945761 955648 +1985055 2004890 19836 13539268.5744 13540260.4614 41.2282 -21.0354 3.5914 run48.mat 161 4 1693 998035 1007953 +2089709 2095405 5697 13544500.9691 13544787.2937 41.2212 -21.0347 3.5819 run48.mat 171 4 1694 1050365 1053213 +2095657 2109106 13450 13544799.9462 13545472.6328 41.2306 -21.0373 3.4807 run48.mat 171 4 1694 1053339 1060064 +2196451 2215763 19313 13549838.0996 13550805.752 41.2277 -21.0362 3.4352 run48.mat 181 4 1695 1103738 1113394 +2302699 2321941 19243 13555151.9769 13556114.2414 41.2302 -21.0349 3.3839 run48.mat 191 4 1696 1156864 1166486 +2409173 2428614 19442 13560477.0784 13561448.4966 41.2306 -21.0353 3.3063 run48.mat 201 4 1697 1210104 1219825 +2517744 2537117 19374 13565904.1637 13566871.3646 41.2269 -21.0374 3.2352 run48.mat 211 4 1698 1264392 1274079 +2626246 2644797 18552 13571329.6644 13572256.1266 41.2281 -21.0355 3.1768 run48.mat 221 4 1699 1318645 1327921 +2645135 2645754 620 13572272.8992 13572303.6157 41.2428 -21.0269 3.317 run48.mat 221 4 1699 1328090 1328399 +311003 314260 3258 13643167.8502 13643331.3569 41.2321 0.0066632 7.6996 run49.mat 1 3 1701 171235 172863 +314533 315793 1261 13643345.0619 13643408.3297 41.2344 -0.0096738 7.3107 run49.mat 1 3 1701 172999 173629 +316131 317808 1678 13643425.3035 13643509.5197 41.2259 -0.0022567 7.6182 run49.mat 1 3 1701 173798 174637 +318351 318482 132 13643536.7882 13643543.3668 41.2014 0.0068152 9.8843 run49.mat 1 3 1701 174909 174974 +318732 320013 1282 13643555.9214 13643620.248 41.2316 0.0092041 8.0321 run49.mat 1 3 1701 175099 175740 +320351 321393 1043 13643637.0094 13643688.6824 41.2191 -0.0063616 7.7104 run49.mat 1 3 1701 175909 176430 +321731 328281 6551 13643705.4439 13644031.6826 41.2272 -0.011805 7.9383 run49.mat 1 3 1701 176599 179874 +328534 333952 5419 13644044.3351 13644316.9139 41.2261 -0.0062442 8.0864 run49.mat 1 3 1701 180000 182710 +334206 340193 5988 13644329.7232 13644628.49 41.2275 -0.0084449 7.7551 run49.mat 1 3 1701 182837 185830 +340531 346607 6077 13644645.4616 13644950.2321 41.2306 0.0033906 7.3567 run49.mat 1 3 1701 185999 189037 +346913 349133 2221 13644965.5381 13645076.5815 41.2231 -0.026122 6.57 run49.mat 1 3 1701 189190 190300 +349471 350122 652 13645093.4881 13645126.0423 41.226 -0.0056497 6.9301 run49.mat 1 3 1701 190469 190795 +350396 350413 18 13645139.6906 13645140.5374 41.2451 0.0050456 9.3497 run49.mat 1 3 1701 190932 190940 +350751 355202 4452 13645157.3737 13645379.1009 41.2259 0.0015549 6.9628 run49.mat 1 3 1701 191109 193335 +355453 355798 346 13645391.6535 13645408.9071 41.2497 0.0091848 7.2808 run49.mat 1 3 1701 193460 193633 +356066 356359 294 13645422.3099 13645436.9629 41.2335 -0.083784 6.2038 run49.mat 1 3 1701 193767 193913 +356771 359153 2383 13645457.5672 13645576.692 41.2246 -0.0031994 6.3062 run49.mat 1 3 1701 194119 195310 +359491 360001 511 13645593.5955 13645619.0845 41.2625 -0.010949 6.8165 run49.mat 1 3 1701 195479 195734 +360252 360289 38 13645631.5872 13645633.4302 41.2376 0.18517 7.6709 run49.mat 1 3 1701 195860 195878 +360552 362822 2271 13645646.5307 13645759.6027 41.2231 -0.014569 6.2223 run49.mat 1 3 1701 196010 197145 +363132 364413 1282 13645775.0443 13645838.8527 41.1997 0.0058115 6.2015 run49.mat 1 3 1701 197300 197940 +364955 365393 439 13645865.8506 13645887.7544 41.2352 0.022565 6.1548 run49.mat 1 3 1701 198211 198430 +365731 366282 552 13645904.6578 13645932.2133 41.2519 0.010996 6.1682 run49.mat 1 3 1701 198599 198875 +366539 366898 360 13645945.0659 13645963.0196 41.2307 0.0048633 5.3678 run49.mat 1 3 1701 199003 199183 +367215 378273 11059 13645978.8728 13646532.599 41.2243 -0.0091074 7.2688 run49.mat 1 3 1701 199341 204871 +378611 379993 1383 13646549.3716 13646617.9504 41.2279 0.01204 7.5217 run49.mat 1 3 1701 205040 205731 +380254 382413 2160 13646631.1075 13646739.95 41.2254 -0.017336 7.5206 run49.mat 1 3 1701 205862 206941 +382751 385251 2501 13646756.9897 13646882.8459 41.2187 -0.030374 7.3238 run49.mat 1 3 1701 207110 208360 +385507 387646 2140 13646895.5994 13647002.1612 41.2295 -0.0072092 7.4846 run49.mat 1 3 1701 208488 209558 +387958 406032 18075 13647017.7045 13647919.6985 41.2271 -0.005384 7.3243 run49.mat 1 3 1701 209714 218751 +406284 407041 758 13647932.4027 13647970.5656 41.2285 -0.040519 7.1867 run49.mat 1 3 1701 218877 219256 +474759 475251 493 13651355.4839 13651380.1212 41.2072 0.022513 11.204 run49.mat 1 3 1702 253116 253362 +475503 475772 270 13651392.7771 13651406.2868 41.2079 0.019643 11.4815 run49.mat 1 3 1702 253488 253622 +476022 480601 4580 13651418.8423 13651648.657 41.2259 0.00030619 10.3571 run49.mat 1 3 1702 253747 256037 +480859 495811 14953 13651661.5595 13652408.7197 41.2248 -0.0089118 10.1145 run49.mat 1 3 1702 256166 263643 +496118 498593 2476 13652424.1977 13652548.9794 41.2276 -0.016724 10.0494 run49.mat 1 3 1702 263796 265034 +498931 505404 6474 13652566.0202 13652888.154 41.2247 0.0029845 9.4568 run49.mat 1 3 1702 265203 268439 +505721 506050 330 13652904.0071 13652920.4604 41.2209 -0.011309 8.6007 run49.mat 1 3 1702 268598 268762 +506305 509081 2777 13652933.2129 13653072.0405 41.2276 -0.017055 9.1101 run49.mat 1 3 1702 268890 270278 +509345 510041 697 13653085.2431 13653120.0504 41.2365 0.012389 8.9425 run49.mat 1 3 1702 270410 270758 +510359 510680 322 13653136.0851 13653152.2711 41.241 0.012759 9.8789 run49.mat 1 3 1702 270917 271077 +510943 511812 870 13653165.5325 13653209.3505 41.2237 -0.0036818 9.2638 run49.mat 1 3 1702 271209 271643 +512062 513393 1332 13653221.9564 13653289.0702 41.2325 -0.012693 8.7043 run49.mat 1 3 1702 271768 272434 +513803 514611 809 13653309.7438 13653350.4861 41.2476 0.019995 8.3508 run49.mat 1 3 1702 272639 273043 +514918 522333 7416 13653365.9661 13653736.3448 41.2255 -0.0093035 8.5121 run49.mat 1 3 1702 273196 276904 +522671 524193 1523 13653753.1801 13653828.9885 41.2197 0.0081241 7.7815 run49.mat 1 3 1702 277073 277834 +524531 526611 2081 13653845.8238 13653949.1304 41.2163 -0.0028415 8.5524 run49.mat 1 3 1702 278003 279043 +526862 527739 878 13653961.5887 13654005.1181 41.2163 -0.0063668 7.6251 run49.mat 1 3 1702 279168 279607 +528012 529621 1610 13654018.6683 13654098.5302 41.2231 -0.018861 7.8864 run49.mat 1 3 1702 279743 280548 +529874 530593 720 13654111.0877 13654147.0531 41.2228 -0.0040218 7.5233 run49.mat 1 3 1702 280674 281034 +530931 533421 2491 13654164.0258 13654289.0617 41.2245 -0.016209 7.5477 run49.mat 1 3 1702 281203 282448 +533673 534593 921 13654301.7159 13654347.9139 41.223 -0.0093341 7.4689 run49.mat 1 3 1702 282574 283034 +535060 535292 233 13654371.3507 13654382.953 41.2207 0.0068418 8.6676 run49.mat 1 3 1702 283268 283384 +535564 537133 1570 13654396.5558 13654475.0216 41.2328 0.0084415 7.3883 run49.mat 1 3 1702 283520 284304 +537471 541746 4276 13654491.925 13654706.098 41.2279 -0.017532 7.4617 run49.mat 1 3 1702 284473 286611 +542306 542993 688 13654734.2223 13654768.7247 41.218 -0.015226 7.4187 run49.mat 1 3 1702 286891 287235 +543331 543688 358 13654785.6997 13654803.6289 41.1831 -0.038981 7.311 run49.mat 1 3 1702 287404 287582 +544014 550273 6260 13654820.0012 13655133.9672 41.227 0.0034904 7.0935 run49.mat 1 3 1702 287745 290875 +550611 550993 383 13655150.6724 13655169.5523 41.2187 -0.01138 6.9942 run49.mat 1 3 1702 291044 291235 +551331 551947 617 13655186.2575 13655216.7025 41.235 -0.018415 6.7058 run49.mat 1 3 1702 291404 291712 +552260 552370 111 13655232.1721 13655237.6087 41.2298 -0.010842 6.7358 run49.mat 1 3 1702 291868 291923 +553004 553032 29 13655268.9433 13655270.3272 41.3722 -0.098889 6.7494 run49.mat 1 3 1702 292240 292254 +553282 553890 609 13655282.6831 13655312.7328 41.2221 -0.00686 7.1557 run49.mat 1 3 1702 292379 292683 +554207 555889 1683 13655328.4001 13655412.0591 41.2126 0.028185 6.563 run49.mat 1 3 1702 292842 293683 +556194 556413 220 13655427.3122 13655438.2644 41.206 -0.023148 6.9241 run49.mat 1 3 1702 293835 293945 +556751 556966 216 13655455.1678 13655465.9199 41.2222 0.035607 7.3286 run49.mat 1 3 1702 294114 294221 +557283 557793 511 13655481.7731 13655507.2783 41.213 -0.02207 6.3381 run49.mat 1 3 1702 294380 294635 +558671 559489 819 13655551.1871 13655592.0954 41.2292 0.008061 6.2651 run49.mat 1 3 1702 295074 295483 +559792 560691 900 13655607.2484 13655652.3624 41.2242 0.0094835 6.4021 run49.mat 1 3 1702 295634 296084 +561005 561549 545 13655668.131 13655695.4498 41.2183 -0.0091765 6.7914 run49.mat 1 3 1702 296241 296513 +561812 563232 1421 13655708.6572 13655779.9672 41.2182 -0.030255 6.3521 run49.mat 1 3 1702 296644 297355 +563560 563994 435 13655796.4389 13655818.2336 41.2204 -0.0015037 6.3721 run49.mat 1 3 1702 297519 297736 +564254 564441 188 13655831.2904 13655840.6812 41.2127 -0.019577 5.8049 run49.mat 1 3 1702 297866 297959 +565103 565318 216 13655873.9726 13655884.8548 41.1651 -0.030089 6.0093 run49.mat 1 3 1702 298290 298398 +565582 565615 34 13655898.2172 13655899.8875 41.2143 0.16376 11.5256 run49.mat 1 3 1702 298530 298546 +566145 566346 202 13655926.7135 13655936.8871 41.2338 -0.013806 5.9669 run49.mat 1 3 1702 298811 298912 +566606 566733 128 13655950.047 13655956.4751 41.1572 -0.030679 6.8905 run49.mat 1 3 1702 299042 299105 +567071 567393 323 13655973.583 13655989.881 41.218 -0.0059658 6.1824 run49.mat 1 3 1702 299274 299435 +567731 568232 502 13656006.9889 13656032.347 41.236 -0.0039031 5.7427 run49.mat 1 3 1702 299604 299855 +568542 568757 216 13656048.0377 13656058.9199 41.2319 0.004711 5.2799 run49.mat 1 3 1702 300010 300117 +569074 569468 395 13656074.9649 13656094.9072 41.2327 -0.011141 6.6305 run49.mat 1 3 1702 300276 300473 +569792 570281 490 13656111.3065 13656135.7196 41.214 -0.027822 6.3997 run49.mat 1 3 1702 300635 300879 +570671 570942 272 13656155.0687 13656168.5138 41.161 -0.042019 6.3517 run49.mat 1 3 1702 301074 301210 +705117 709033 3917 13662877.1564 13663069.8867 41.2246 0.0031677 9.9454 run49.mat 11 3 1704 368300 370258 +709338 731940 22603 13663084.8976 13664215.2142 41.2249 -0.0031304 9.7488 run49.mat 11 3 1704 370411 381712 +732258 738432 6175 13664231.1815 13664541.1887 41.2249 -0.0072327 9.7484 run49.mat 11 3 1704 381871 384958 +738685 741463 2779 13664553.8923 13664693.3753 41.2314 0.0020562 9.8436 run49.mat 11 3 1704 385085 386474 +741713 752861 11149 13664705.9274 13665262.8732 41.2267 -0.0043447 9.7694 run49.mat 11 3 1704 386599 392173 +753114 753983 870 13665275.4253 13665318.539 41.2226 -0.0051859 10.2714 run49.mat 11 3 1704 392300 392734 +754235 756063 1829 13665331.0415 13665422.4588 41.232 -0.016184 9.8388 run49.mat 11 3 1704 392860 393774 +756325 757013 689 13665435.6151 13665470.163 41.223 0.0070468 9.7737 run49.mat 11 3 1704 393905 394249 +757263 801181 43919 13665482.7167 13667679.6749 41.2251 -0.0011886 9.7621 run49.mat 11 3 1704 394374 416334 +869037 873669 4633 13671070.4319 13671303.575 41.2246 0.0097646 9.8974 run49.mat 11 3 1705 450264 452580 +873940 887936 13997 13671317.2361 13672017.5806 41.2274 -0.0005454 9.7225 run49.mat 11 3 1705 452715 459714 +888200 895622 7423 13672030.7832 13672400.9571 41.222 -0.0034888 9.788 run49.mat 11 3 1705 459846 463557 +895884 903563 7680 13672414.0597 13672797.4031 41.2259 -0.010373 9.7587 run49.mat 11 3 1705 463688 467528 +971437 998809 27373 13676191.0149 13677560.8561 41.2259 -0.0059356 10.9891 run49.mat 21 3 1706 501466 515152 +999066 1034648 35583 13677573.8569 13679352.0566 41.2249 -0.0052847 10.9617 run49.mat 21 3 1706 515281 533073 +1034964 1067502 32539 13679367.797 13680992.6174 41.2273 -0.005169 10.9651 run49.mat 21 3 1706 533231 549500 +1135361 1141989 6629 13684389.9551 13684720.1659 41.2244 -0.016459 11.0462 run49.mat 21 3 1707 583432 586746 +1209684 1238374 28691 13688101.2499 13689537.4139 41.2266 -0.0029975 10.0103 run49.mat 31 3 1708 620595 634940 +1238624 1305742 67119 13689549.8682 13692907.6788 41.2258 -0.0037201 9.9925 run49.mat 31 3 1708 635065 668626 +1373758 1380433 6676 13696307.0266 13696640.9672 41.2233 -0.0033547 10.0787 run49.mat 31 3 1709 702635 705973 +1448126 1544121 95996 13700026.0284 13704824.5849 41.227 -0.0035093 9.273 run49.mat 41 3 1710 739821 787821 +1612203 1618977 6775 13708230.5995 13708569.1608 41.2276 -0.0028152 9.3357 run49.mat 41 3 1711 821863 825250 +1688405 1784400 95996 13712041.6848 13716839.26 41.227 -0.0034812 8.7046 run49.mat 51 3 1712 859965 907965 +1852545 1859336 6792 13720245.6884 13720588.819 41.2277 -0.0044842 8.7444 run49.mat 51 3 1713 942039 945435 +1928755 2024760 96006 13724057.2879 13728856.0603 41.2268 -0.0042972 8.2478 run49.mat 61 3 1714 980146 1028150 +2092665 2099440 6776 13732254.2767 13732593.1416 41.2272 -0.0046019 8.3013 run49.mat 61 3 1715 1062105 1065492 +2169006 2264999 95994 13736068.6554 13740868.1379 41.2265 -0.0034795 7.8601 run49.mat 71 3 1716 1100277 1148275 +2332859 2339655 6797 13744263.3687 13744601.0246 41.2225 -0.0040834 7.9066 run49.mat 71 3 1717 1182207 1185605 +2409009 2505019 96011 13748069.8722 13752870.1982 41.2263 -0.0041975 7.5306 run49.mat 81 3 1718 1220284 1268290 +2575022 2580095 5074 13756371.2694 13756623.0647 41.2252 -0.0018124 7.6 run49.mat 81 3 1719 1303293 1305830 +2580406 2581816 1411 13756638.7124 13756709.7953 41.2223 -0.0015916 7.5721 run49.mat 81 3 1719 1305986 1306691 +2651175 2695089 43915 13760178.9721 13762375.2299 41.2256 -0.0038586 7.2448 run49.mat 91 3 1720 1341372 1363330 +2695340 2737989 42650 13762387.6852 13764519.6515 41.2261 -0.0042103 7.2444 run49.mat 91 3 1720 1363455 1384781 +2738244 2747199 8956 13764532.3028 13764978.6989 41.2245 -0.0023377 7.2594 run49.mat 91 3 1720 1384908 1389386 +2817321 2824082 6762 13768487.6349 13768825.7852 41.2247 -0.0040929 7.2939 run49.mat 91 3 1721 1424448 1427829 +2893495 2989498 96004 13772293.2784 13777093.7319 41.2295 -0.0039989 6.9972 run49.mat 101 3 1722 1462537 1510541 +3057421 3064194 6774 13780492.3867 13780828.4545 41.2186 -0.0015611 7.0351 run49.mat 101 3 1723 1544503 1547890 +3135651 3159190 23540 13784404.1916 13785580.5737 41.2242 -0.0041389 6.7824 run49.mat 111 3 1724 1583620 1595390 +3159441 3170938 11498 13785593.0266 13786167.1939 41.2282 -0.0030922 6.7836 run49.mat 111 3 1724 1595516 1601265 +3171246 3191519 20274 13786182.5968 13787194.5444 41.2267 0.00070342 6.7752 run49.mat 111 3 1724 1601419 1611556 +3191772 3231616 39845 13787207.1993 13789200.9462 41.227 -0.0028761 6.7827 run49.mat 111 3 1724 1611682 1631605 +3301614 3302396 783 13792699.8075 13792738.905 41.2167 -0.0053814 6.8553 run49.mat 111 3 1725 1666605 1666996 +3302661 3308433 5773 13792752.2646 13793042.6803 41.2222 -0.0023399 6.795 run49.mat 111 3 1725 1667129 1670015 +3377769 3406737 28969 13796507.5356 13797956.1927 41.2262 -0.0024512 6.5806 run49.mat 121 3 1726 1704685 1719169 +3407049 3439171 32123 13797971.796 13799580.3165 41.2274 -0.0023554 6.5839 run49.mat 121 3 1726 1719325 1735387 +3439421 3450690 11270 13799592.8191 13800153.1353 41.2268 -0.004804 6.5767 run49.mat 121 3 1726 1735512 1741147 +3450941 3461179 10239 13800165.5882 13800679.0362 41.2281 -0.004592 6.5893 run49.mat 121 3 1726 1741272 1746392 +3461483 3473758 12276 13800694.2391 13801309.6148 41.2367 -0.0077257 6.5919 run49.mat 121 3 1726 1746544 1752681 +3543888 3550710 6823 13804816.2052 13805156.8054 41.2252 -0.004062 6.5969 run49.mat 121 3 1727 1787748 1791159 +3620089 3629567 9479 13808625.769 13809100.6299 41.227 -0.0029898 6.4187 run49.mat 131 3 1728 1825850 1830589 +3629898 3702267 72370 13809117.1862 13812733.9518 41.2269 -0.0038331 6.3991 run49.mat 131 3 1728 1830755 1866941 +3702610 3706334 3725 13812751.2436 13812936.9829 41.2337 -0.0047478 6.411 run49.mat 131 3 1728 1867112 1868974 +3706654 3716056 9403 13812952.8591 13813423.1855 41.2277 -0.0045568 6.4078 run49.mat 131 3 1728 1869134 1873836 +3786062 3792917 6856 13816925.3695 13817267.5768 41.2277 -0.0021675 6.4107 run49.mat 131 3 1729 1908840 1912268 +3862231 3953093 90863 13820733.2559 13825277.2843 41.2278 -0.0027154 6.241 run49.mat 141 3 1730 1946926 1992359 +3953343 3958176 4834 13825289.7895 13825529.7748 41.2287 -0.0026646 6.2404 run49.mat 141 3 1730 1992484 1994901 +4028167 4035065 6899 13829030.5288 13829374.2133 41.2242 -0.0060314 6.264 run49.mat 141 3 1731 2029898 2033347 +4104363 4194992 90630 13832839.5148 13837371.3093 41.227 -0.0033719 6.0932 run49.mat 151 3 1732 2067998 2113314 +4195244 4200315 5072 13837383.9142 13837637.3136 41.2254 -0.0022973 6.1095 run49.mat 151 3 1732 2113440 2115976 +4270510 4277386 6877 13841146.4414 13841491.1068 41.2278 -0.0020968 6.111 run49.mat 151 3 1733 2151075 2154513 +4348529 4389612 41084 13845049.1791 13847101.9334 41.2292 -0.0032056 5.9539 run49.mat 160.7044 3 1734 2190086 2210629 +4389863 4400843 10981 13847114.4859 13847661.7269 41.2297 -0.0026881 5.9451 run49.mat 161 3 1734 2210754 2216244 +4401094 4431259 30166 13847674.1798 13849184.7735 41.2253 -0.0029339 5.9532 run49.mat 161 3 1734 2216370 2231453 +4431522 4444458 12937 13849197.9521 13849844.2465 41.2269 -0.0032884 5.9638 run49.mat 161 3 1734 2231584 2238053 +4514658 4521558 6901 13853352.8841 13853701.8498 41.2246 -0.0038222 5.9717 run49.mat 161 3 1735 2273154 2276604 +4592895 4670546 77652 13857267.3727 13861150.3251 41.2262 -0.0027846 5.8259 run49.mat 171 3 1736 2312274 2351102 +4670804 4688831 18028 13861163.2305 13862062.8396 41.2258 -0.00275 5.8358 run49.mat 171 3 1736 2351231 2360244 +4758837 4765731 6895 13865563.3499 13865908.2113 41.2227 -0.0039953 5.8494 run49.mat 171 3 1737 2395249 2398696 +4837062 4932104 95043 13869477.2667 13874227.5999 41.2281 -0.002899 5.7115 run49.mat 181 3 1738 2434159 2481681 +4932355 4932992 638 13874240.1517 13874272.2715 41.2639 0.00029542 5.7015 run49.mat 181 3 1738 2481806 2482125 +5003033 5009950 6918 13877775.0085 13878120.9565 41.2245 -0.0030343 5.7217 run49.mat 181 3 1739 2516255 2519713 +5081262 5161534 80273 13881685.484 13885702.1939 41.2266 -0.0028512 5.5979 run49.mat 191 3 1740 2555371 2595509 +5161784 5177192 15409 13885714.6963 13886484.2942 41.2272 -0.0025906 5.605 run49.mat 191 3 1740 2595634 2603339 +5247195 5254120 6926 13889985.3001 13890331.641 41.2237 -0.0030979 5.6155 run49.mat 191 3 1741 2638342 2641804 +5325417 5421355 95939 13893893.3824 13898691.6361 41.2277 -0.0025517 5.4587 run49.mat 201 3 1742 2677454 2725425 +5491556 5498485 6930 13902203.6954 13902548.7969 41.2244 -0.002564 5.4824 run49.mat 201 3 1743 2760528 2763992 +5569778 5662580 92803 13906113.903 13910753.2976 41.2271 -0.0025701 5.3217 run49.mat 211 3 1744 2799640 2846043 +5662886 5665713 2828 13910768.5799 13910908.8359 41.2326 -0.0036167 5.3159 run49.mat 211 3 1744 2846196 2847610 +5737784 5744664 6881 13914513.4466 13914855.5693 41.2283 -0.0023379 5.3473 run49.mat 211 3 1745 2883647 2887087 +5815951 5911893 95943 13918421.9329 13923217.6741 41.2272 -0.0026805 5.2028 run49.mat 221 3 1746 2922732 2970705 +5981880 5988805 6926 13926715.6086 13927061.9475 41.225 -0.0020034 5.2122 run49.mat 221 3 1747 3005700 3009163 +266273 286758 20486 12484011.9766 12485036.2035 82.4674 -40.3881 92.9756 run5.mat -1 -1 1749 157580 167823 +287063 307761 20699 12485051.5796 12486087.4941 80.813 -40.3872 92.5388 run5.mat -1 -1 1749 167976 178325 +308070 328756 20687 12486102.8246 12487135.0452 79.1678 -40.3882 92.5911 run5.mat -1 -1 1749 178479 188823 +329062 349757 20696 12487150.2268 12488184.5361 77.5115 -40.3863 92.5681 run5.mat -1 -1 1749 188976 199324 +350064 362015 11952 12488199.889 12488800.8916 75.8634 -40.389 92.7495 run5.mat -1 -1 1749 199477 205453 +446261 454135 7875 12493010.235 12493404.8857 75.8599 -40.3889 93.7509 run5.mat -1 -1 1750 247577 251515 +454465 475137 20673 12493421.2612 12494454.2858 74.213 -40.3867 92.5076 run5.mat -1 -1 1750 251680 262017 +475447 496138 20692 12494469.7888 12495506.5562 72.5679 -40.3874 92.6428 run5.mat -1 -1 1750 262172 272517 +496443 517137 20695 12495521.8706 12496554.6971 70.9168 -40.387 92.5367 run5.mat -1 -1 1750 272670 283017 +517444 538119 20676 12496569.9313 12497602.8316 69.2658 -40.3871 92.6728 run5.mat -1 -1 1750 283171 293509 +538424 542034 3611 12497618.2077 12497800.0087 67.6156 -40.3871 92.7611 run5.mat -1 -1 1750 293662 295466 +626304 642376 16073 12502011.7345 12502817.4064 67.6178 -40.3873 92.9787 run5.mat -1 -1 1751 337603 345640 +642701 663377 20677 12502833.5307 12503867.9133 65.973 -40.3866 92.612 run5.mat -1 -1 1751 345802 356141 +663685 684377 20693 12503883.3162 12504918.3826 64.3194 -40.3873 92.5076 run5.mat -1 -1 1751 356295 366641 +684685 705374 20690 12504933.6634 12505968.1243 62.674 -40.3867 92.7 run5.mat -1 -1 1751 366795 377140 +705682 722074 16393 12505983.4081 12506800.5424 61.022 -40.3875 92.8102 run5.mat -1 -1 1751 377294 385491 +806352 809656 3305 12511015.8276 12511179.9185 61.0259 -40.3859 95.6241 run5.mat -1 -1 1752 427631 429283 +809979 830680 20702 12511196.0719 12512232.3753 59.3757 -40.3874 92.4815 run5.mat -1 -1 1752 429445 439796 +830989 851659 20671 12512247.7057 12513282.6699 57.7295 -40.3882 92.6737 run5.mat -1 -1 1752 439951 450286 +851966 872678 20713 12513298.0258 12514331.8425 56.0724 -40.3875 92.5928 run5.mat -1 -1 1752 450440 460796 +872984 893654 20671 12514347.1454 12515380.9041 54.427 -40.3886 92.6348 run5.mat -1 -1 1752 460949 471284 +893963 902134 8172 12515396.3606 12515806.604 52.7741 -40.387 92.8762 run5.mat -1 -1 1752 471439 475525 +986320 997897 11578 12520014.4793 12520593.4881 52.7781 -40.3873 93.2675 run5.mat -1 -1 1753 517619 523408 +998226 1018902 20677 12520609.945 12521642.0847 51.1287 -40.3875 92.4785 run5.mat -1 -1 1753 523573 533911 +1019212 1039898 20687 12521657.716 12522693.9534 49.4744 -40.3882 92.5948 run5.mat -1 -1 1753 534066 544410 +1040204 1060880 20677 12522709.1957 12523743.24 47.828 -40.388 92.6189 run5.mat -1 -1 1753 544563 554901 +1061188 1081842 20655 12523758.7673 12524791.6406 46.1757 -40.388 92.8364 run5.mat -1 -1 1753 555055 565382 +1082152 1082173 22 12524807.0206 12524808.0625 44.5814 -40.3771 77.5362 run5.mat -1 -1 1753 565537 565548 +1166298 1185995 19698 12529015.1077 12529998.8644 44.5295 -40.387 93.0277 run5.mat -1 -1 1754 607612 617461 +1186303 1206999 20697 12530014.2674 12531049.4007 42.8766 -40.3878 92.5416 run5.mat -1 -1 1754 617615 627964 +1207305 1227966 20662 12531064.453 12532097.1881 41.2275 -40.388 92.53 run5.mat -1 -1 1754 628117 638448 +1228280 1248960 20681 12532113.0179 12533146.1616 39.5828 -40.3875 92.6569 run5.mat -1 -1 1754 638605 648945 +1249272 1262053 12782 12533161.6439 12533801.7813 37.9312 -40.3875 92.9266 run5.mat -1 -1 1754 649101 655492 +1346322 1353260 6939 12538016.2813 12538361.9478 37.9395 -40.3878 93.8338 run5.mat -1 -1 1755 697628 701097 +1353582 1374283 20702 12538377.9232 12539414.6458 36.284 -40.3879 92.5883 run5.mat -1 -1 1755 701258 711609 +1374590 1395262 20673 12539429.999 12540462.0397 34.6319 -40.3873 92.6075 run5.mat -1 -1 1755 711763 722099 +1395570 1416262 20693 12540477.567 12541512.6684 32.9855 -40.3875 92.6134 run5.mat -1 -1 1755 722253 732599 +1416566 1437241 20676 12541527.9972 12542561.3948 31.3389 -40.3875 92.6665 run5.mat -1 -1 1755 732751 743089 +1437549 1442133 4585 12542576.8007 12542805.2679 29.6922 -40.3862 92.9517 run5.mat -1 -1 1755 743244 745536 +1526440 1541699 15260 12547021.9266 12547782.7618 29.688 -40.3875 93.2347 run5.mat -1 -1 1756 787691 795321 +1542007 1562702 20696 12547798.165 12548834.0863 28.0367 -40.3889 92.6137 run5.mat -1 -1 1756 795475 805823 +1563010 1583702 20693 12548849.6136 12549884.8022 26.3875 -40.3881 92.5572 run5.mat -1 -1 1756 805977 816323 +1584011 1604702 20692 12549900.3799 12550932.1421 24.7389 -40.3866 92.6631 run5.mat -1 -1 1756 816478 826824 +1605008 1622232 17225 12550947.3237 12551811.1826 23.087 -40.3873 92.7323 run5.mat -1 -1 1756 826977 835589 +1706716 1709160 2445 12556036.5256 12556157.8039 23.0923 -40.3866 94.6086 run5.mat -1 -1 1757 877833 879055 +1709479 1730163 20685 12556173.6336 12557207.7839 21.435 -40.3884 92.6188 run5.mat -1 -1 1757 879214 889557 +1730468 1751161 20694 12557222.9159 12558257.5979 19.7897 -40.3881 92.6219 run5.mat -1 -1 1757 889709 900056 +1751468 1772143 20676 12558272.893 12559308.0192 18.1346 -40.3878 92.6748 run5.mat -1 -1 1757 900210 910548 +1772451 1793121 20671 12559323.4252 12560356.6026 16.4892 -40.3876 92.6438 run5.mat -1 -1 1757 910702 921037 +1793429 1802492 9064 12560371.8865 12560823.9108 14.8377 -40.3878 92.7998 run5.mat -1 -1 1757 921191 925723 +1886786 1897561 10776 12565037.6422 12565574.7191 14.8395 -40.3887 93.46 run5.mat -1 -1 1758 967872 973260 +1897882 1918560 20679 12565590.9018 12566627.7643 13.1896 -40.3872 92.6305 run5.mat -1 -1 1758 973420 983760 +1918867 1939559 20693 12566643.1175 12567677.0254 11.5382 -40.3888 92.6588 run5.mat -1 -1 1758 983913 994260 +1939868 1960542 20675 12567692.6063 12568726.8943 9.8922 -40.3877 92.5686 run5.mat -1 -1 1758 994414 1004751 +1960849 1981501 20653 12568742.3743 12569773.4081 8.2451 -40.3876 92.6922 run5.mat -1 -1 1758 1004905 1015231 +1981807 1982552 746 12569788.8346 12569826.2572 6.5794 -40.3916 92.9031 run5.mat -1 -1 1758 1015384 1015757 +2066860 2085939 19080 12574041.7841 12574997.2394 6.5956 -40.3875 93.0352 run5.mat -1 -1 1759 1057913 1067453 +2086271 2106942 20672 12575013.9766 12576046.443 4.9455 -40.3888 92.5911 run5.mat -1 -1 1759 1067619 1077955 +2107250 2127958 20709 12576061.8462 12577097.6447 3.2964 -40.3882 92.6036 run5.mat -1 -1 1759 1078109 1088463 +2128269 2148925 20657 12577113.3233 12578146.1127 1.6507 -40.387 92.6596 run5.mat -1 -1 1759 1088619 1098947 +2149233 2162651 13419 12578161.5157 12578834.5653 -0.00090372 -40.3886 92.89 run5.mat -1 -1 1759 1099101 1105810 +2246737 2253021 6285 12583035.4612 12583351.2001 0.0043272 -40.387 93.8142 run5.mat -1 -1 1760 1147856 1150997 +2253345 2274027 20683 12583367.4063 12584400.1208 -1.6479 -40.3876 92.5368 run5.mat -1 -1 1760 1151159 1161501 +2274339 2295045 20707 12584415.8498 12585452.3654 -3.2957 -40.3885 92.597 run5.mat -1 -1 1760 1161657 1172011 +2295351 2316025 20675 12585467.5469 12586500.3268 -4.9463 -40.3883 92.5983 run5.mat -1 -1 1760 1172164 1182501 +2316333 2337003 20671 12586515.7298 12587551.0585 -6.5914 -40.3886 92.6643 run5.mat -1 -1 1760 1182655 1192990 +2337310 2342532 5223 12587566.5354 12587826.3632 -8.2486 -40.3887 92.954 run5.mat -1 -1 1760 1193144 1195755 +2426802 2441302 14501 12592039.7645 12592766.0492 -8.2469 -40.3873 93.0323 run5.mat -1 -1 1761 1237892 1245142 +2441627 2462320 20694 12592782.4336 12593816.1354 -9.897 -40.3872 92.511 run5.mat -1 -1 1761 1245305 1255652 +2462629 2483303 20675 12593831.5884 12594866.3313 -11.5435 -40.3877 92.5405 run5.mat -1 -1 1761 1255806 1266144 +2483609 2504302 20694 12594881.7578 12595916.5212 -13.1952 -40.3871 92.6396 run5.mat -1 -1 1761 1266297 1276643 +2504611 2522610 18000 12595931.8547 12596831.8866 -14.8447 -40.3881 92.7498 run5.mat -1 -1 1761 1276798 1285798 +2607090 2608882 1793 12601056.4293 12601146.0465 -14.8509 -40.3867 97.032 run5.mat -1 -1 1762 1328040 1328936 +2609211 2629883 20673 12601162.4997 12602196.1492 -16.4951 -40.3887 92.524 run5.mat -1 -1 1762 1329100 1339437 +2630189 2650863 20675 12602211.3308 12603242.3424 -18.1453 -40.3878 92.6056 run5.mat -1 -1 1762 1339590 1349927 +2651171 2671864 20694 12603257.8697 12604292.0267 -19.793 -40.3882 92.5697 run5.mat -1 -1 1762 1350081 1360428 +2672168 2692846 20679 12604307.2298 12605342.8019 -21.4392 -40.3875 92.5634 run5.mat -1 -1 1762 1360580 1370919 +2693150 2702850 9701 12605358.1307 12605843.8715 -23.0927 -40.3887 92.7725 run5.mat -1 -1 1762 1371071 1375922 +2787077 2797082 10006 12610053.9814 12610554.8492 -23.0906 -40.388 93.2788 run5.mat -1 -1 1763 1418037 1423040 +2797411 2818104 20694 12610571.1719 12611606.1393 -24.7381 -40.3874 92.6364 run5.mat -1 -1 1763 1423204 1433551 +2818410 2831178 12769 12611621.5658 12612258.4696 -26.3893 -40.3881 92.781 run5.mat -1 -1 1763 1433704 1440088 +2832981 2833398 418 12612347.9397 12612368.6324 127.9375 127.9375 0.16831 run5.mat -1 -1 1763 1440990 1441198 +2833736 2834263 528 12612385.4049 12612411.5562 127.9375 127.9375 0.1104 run5.mat -1 -1 1763 1441367 1441631 +2834936 2834998 63 12612444.9524 12612448.029 127.9375 127.9375 0.27818 run5.mat -1 -1 1763 1441967 1441998 +357377 367656 10280 14034200.1066 14034714.181 41.2298 -21.0424 5.0161 run50.mat 1 4 1765 96403 98973 +367922 395965 28044 14034727.4836 14036130.3696 41.2308 -21.0347 4.1945 run50.mat 1 4 1765 99040 106050 +473954 498770 24817 14040029.4434 14041270.1585 41.2281 -21.0374 5.7728 run50.mat 11 4 1766 125549 131753 +576651 596306 19656 14045165.1896 14046146.101 41.2293 -21.0362 6.4363 run50.mat 21 4 1767 151224 156138 +675356 695110 19755 14050099.2027 14051087.0966 41.2294 -21.0367 5.8737 run50.mat 31 4 1768 175902 180840 +776105 795917 19813 14055136.908 14056129.7516 41.2287 -21.0368 5.4462 run50.mat 41 4 1769 201090 206043 +876607 896412 19806 14060162.9339 14061153.069 41.2269 -21.0356 5.1327 run50.mat 51 4 1770 226216 231168 +977168 996942 19775 14065191.4621 14066178.7545 41.2327 -21.0363 4.8739 run50.mat 61 4 1771 251358 256301 +1079491 1099242 19752 14070307.4393 14071293.9262 41.2298 -21.0369 4.6318 run50.mat 71 4 1772 276940 281878 +1182241 1201721 19481 14075445.8188 14076418.4106 41.2302 -21.0369 4.4466 run50.mat 81 4 1773 302628 307499 +1284492 1304289 19798 14080558.0353 14081547.5358 41.2293 -21.0382 4.2914 run50.mat 91 4 1774 328192 333142 +1387128 1406697 19570 14085689.5603 14086667.5777 41.2264 -21.0361 4.1249 run50.mat 101 4 1775 353852 358745 +1491387 1510905 19519 14090901.8454 14091877.3263 41.2284 -21.0364 4.0132 run50.mat 111 4 1776 379918 384798 +1595925 1607002 11078 14096128.491 14096683.2701 41.2254 -21.0368 3.945 run50.mat 121 4 1777 406054 408823 +1607336 1615462 8127 14096699.8408 14097104.9034 41.2303 -21.0369 3.8701 run50.mat 121 4 1777 408906 410938 +1699936 1719747 19812 14101329.3717 14102320.38 41.2285 -21.0347 3.8303 run50.mat 131 4 1778 432057 437010 +1804738 1824110 19373 14106569.848 14107536.7843 41.229 -21.0375 3.7296 run50.mat 141 4 1779 458260 463103 +1909019 1928512 19494 14111784.7139 14112758.0842 41.2344 -21.0372 3.6526 run50.mat 151 4 1780 484331 489204 +2013465 2032998 19534 14117007.8832 14117982.5369 41.2349 -21.0361 3.574 run50.mat 161 4 1781 510443 515327 +2117491 2125658 8168 14122208.7982 14122616.0577 41.2309 -21.0372 3.5881 run50.mat 171 4 1782 536451 538493 +2125910 2137232 11323 14122628.6626 14123193.6185 41.2298 -21.0361 3.4774 run50.mat 171 4 1782 538556 541387 +2224505 2232017 7513 14127559.2227 14127934.5837 41.225 -21.0376 3.4745 run50.mat 181 4 1783 563206 565084 +2232270 2243516 11247 14127947.2386 14128508.8955 41.2359 -21.0342 3.4144 run50.mat 181 4 1783 565147 567959 +2330795 2350197 19403 14132871.9968 14133844.0383 41.2247 -21.0374 3.3811 run50.mat 191 4 1784 589780 594630 +2437235 2456716 19482 14138193.9871 14139170.0736 41.2338 -21.0338 3.304 run50.mat 201 4 1785 616391 621261 +2545774 2555620 9847 14143622.6091 14144113.0835 41.2239 -21.0364 3.2576 run50.mat 211 4 1786 643527 645988 +2555958 2565094 9137 14144130.1232 14144587.0214 41.2287 -21.0381 3.2176 run50.mat 211 4 1786 646072 648357 +2654270 2673736 19467 14149047.8761 14150020.1072 41.2306 -21.0358 3.1688 run50.mat 221 4 1787 670652 675519 +311242 312483 1242 14217896.0659 14217957.6479 41.2291 0.0098823 8.9697 run51.mat 1 3 1789 85821 86131 +312733 316362 3630 14217970.0536 14218152.3674 41.2274 -0.0071071 8.4396 run51.mat 1 3 1789 86193 87101 +316623 318631 2009 14218165.5253 14218266.6481 41.2272 -0.0020947 8.0541 run51.mat 1 3 1789 87166 87668 +318902 325491 6590 14218280.0933 14218608.5582 41.227 -0.0089416 8.365 run51.mat 1 3 1789 87736 89383 +325750 328246 2497 14218621.6152 14218747.4471 41.2281 -0.0075588 8.0233 run51.mat 1 3 1789 89448 90072 +328504 336554 8051 14218760.4484 14219163.2989 41.2255 -0.0073217 7.941 run51.mat 1 3 1789 90137 92149 +336892 341354 4463 14219180.3386 14219402.9925 41.2218 -0.0011866 7.6915 run51.mat 1 3 1789 92233 93349 +341692 344452 2761 14219419.7617 14219557.4307 41.2417 -0.0030678 7.3216 run51.mat 1 3 1789 93434 94124 +344703 349842 5140 14219570.0845 14219828.0768 41.2244 -0.011078 7.0361 run51.mat 1 3 1789 94187 95471 +350101 353933 3833 14219840.9266 14220031.3711 41.2236 -0.0018858 6.8635 run51.mat 1 3 1789 95536 96494 +354185 355354 1170 14220044.0779 14220103.023 41.2244 -0.0065136 7.1155 run51.mat 1 3 1789 96557 96849 +355692 359592 3901 14220120.0662 14220315.8224 41.2209 -0.014595 7.0792 run51.mat 1 3 1789 96933 97909 +359843 365974 6132 14220328.2753 14220634.412 41.2312 -0.00016034 6.8854 run51.mat 1 3 1789 97972 99505 +366312 367574 1263 14220651.4517 14220715.0734 41.2229 -0.01352 6.7868 run51.mat 1 3 1789 99589 99905 +367912 368383 472 14220732.1131 14220755.8578 41.2416 -0.03808 6.5552 run51.mat 1 3 1789 99989 100107 +368633 374848 6216 14220768.3442 14221077.7977 41.2227 -0.016463 6.4635 run51.mat 1 3 1789 100169 101723 +375171 375574 404 14221094.0813 14221114.3979 41.2083 0.054795 6.414 run51.mat 1 3 1789 101804 101904 +375912 377043 1132 14221131.4376 14221188.4551 41.2221 0.014869 6.3119 run51.mat 1 3 1789 101989 102272 +377306 377774 469 14221201.7139 14221225.3073 41.2357 -0.017251 6.2215 run51.mat 1 3 1789 102337 102454 +378112 378954 843 14221242.347 14221284.422 41.2104 -0.023719 6.0436 run51.mat 1 3 1789 102539 102750 +379292 379997 706 14221301.1945 14221336.1786 41.2359 0.013384 5.8396 run51.mat 1 3 1789 102834 103010 +380264 389354 9091 14221349.4279 14221803.0125 41.2278 -0.0028481 6.9366 run51.mat 1 3 1789 103077 105349 +389696 391610 1915 14221820.2539 14221916.7451 41.2222 -0.0015578 7.4176 run51.mat 1 3 1789 105435 105913 +391920 399922 8003 14221932.3733 14222332.8952 41.2298 -0.0065248 7.3374 run51.mat 1 3 1789 105991 107992 +400174 400394 221 14222345.3977 14222356.3126 41.2581 -0.016387 7.4881 run51.mat 1 3 1789 108055 108110 +400732 402412 1681 14222373.0818 14222456.4316 41.2271 -0.00033358 7.3066 run51.mat 1 3 1789 108195 108615 +402718 407320 4603 14222471.6132 14222702.6576 41.2213 0.0015833 7.2676 run51.mat 1 3 1789 108691 109841 +475286 475452 167 14226100.8765 14226109.1139 41.2505 0.0085306 10.0589 run51.mat 1 3 1790 126834 126875 +475706 476093 388 14226121.7181 14226140.9222 41.1959 0.02422 9.684 run51.mat 1 3 1790 126939 127035 +476344 492231 15888 14226153.3775 14226948.918 41.2263 -0.0053905 11.1308 run51.mat 1 3 1790 127098 131070 +492484 494752 2269 14226961.5729 14227075.009 41.2143 -0.013507 10.4069 run51.mat 1 3 1790 131133 131701 +495006 503234 8229 14227087.7116 14227499.1937 41.2267 -0.010271 10.0915 run51.mat 1 3 1790 131764 133821 +503572 515961 12390 14227516.0969 14228135.7216 41.2273 -0.0077495 9.1939 run51.mat 1 3 1790 133905 137003 +516229 518233 2005 14228149.1244 14228249.3453 41.2227 -0.00099264 8.7283 run51.mat 1 3 1790 137070 137570 +518483 528362 9880 14228261.8479 14228752.1052 41.2273 -0.0073444 8.259 run51.mat 1 3 1790 137633 140103 +528613 531154 2542 14228764.558 14228892.5627 41.2199 -0.014219 7.6989 run51.mat 1 3 1790 140166 140801 +531693 532050 358 14228919.741 14228937.7422 41.1978 -0.026659 7.697 run51.mat 1 3 1790 140936 141026 +532367 533301 935 14228953.7265 14229000.8221 41.2233 -0.0017774 7.2228 run51.mat 1 3 1790 141105 141338 +533823 534703 881 14229027.101 14229071.1094 41.2157 -0.0053694 7.5957 run51.mat 1 3 1790 141469 141689 +535026 535712 687 14229087.2626 14229121.5691 41.2029 -0.0094367 6.903 run51.mat 1 3 1790 141770 141941 +536013 536614 602 14229136.622 14229166.6778 41.2277 0.0091901 7.0739 run51.mat 1 3 1790 142016 142166 +537352 537905 554 14229203.5849 14229231.2402 41.2325 -0.0040952 7.3188 run51.mat 1 3 1790 142351 142489 +538485 542112 3628 14229260.2458 14229440.3962 41.2269 -0.0037555 7.0847 run51.mat 1 3 1790 142634 143541 +542376 543037 662 14229453.4966 14229486.2973 41.2122 -0.012536 7.679 run51.mat 1 3 1790 143607 143772 +543364 546614 3251 14229502.524 14229665.898 41.2286 -0.0059663 6.9657 run51.mat 1 3 1790 143854 144667 +546952 548454 1503 14229682.9377 14229758.6586 41.2232 -0.0012673 6.9038 run51.mat 1 3 1790 144751 145127 +548967 549909 943 14229784.5005 14229831.6103 41.2472 0.011591 6.2272 run51.mat 1 3 1790 145255 145490 +550225 550834 610 14229847.4136 14229877.87 41.2174 -0.02376 6.799 run51.mat 1 3 1790 145569 145721 +551172 552401 1230 14229894.7735 14229956.2363 41.2338 0.0073242 6.6563 run51.mat 1 3 1790 145806 146113 +552657 552854 198 14229969.039 14229978.891 41.2113 0.0025085 7.3864 run51.mat 1 3 1790 146177 146226 +553312 553651 340 14230001.7958 14230018.7493 41.1934 -0.028139 6.7024 run51.mat 1 3 1790 146341 146425 +553921 555190 1270 14230032.252 14230095.7142 41.2197 0.017168 6.7304 run51.mat 1 3 1790 146493 146810 +555706 556114 409 14230121.5191 14230141.9231 41.2415 0.012003 6.8915 run51.mat 1 3 1790 146939 147041 +556452 556754 303 14230158.8263 14230173.9292 41.2695 -0.040524 5.8318 run51.mat 1 3 1790 147126 147201 +557112 557572 461 14230191.8327 14230214.8371 41.2409 -0.044032 6.4084 run51.mat 1 3 1790 147291 147406 +557823 558192 370 14230227.3895 14230245.843 41.1981 0.041245 6.4088 run51.mat 1 3 1790 147468 147561 +558444 558454 11 14230258.4455 14230258.9456 41.2449 -0.083984 4.9284 run51.mat 1 3 1790 147624 147626 +558964 559954 991 14230284.4505 14230333.9608 41.2408 0.01305 6.3448 run51.mat 1 3 1790 147754 148001 +561892 562012 121 14230430.881 14230436.8823 41.2166 0.0046778 5.4564 run51.mat 1 3 1790 148486 148516 +562265 562373 109 14230449.5349 14230454.936 41.225 -0.028489 6.6211 run51.mat 1 3 1790 148579 148606 +563032 563254 223 14230487.8929 14230498.9952 41.2416 -0.092074 5.2383 run51.mat 1 3 1790 148771 148826 +563592 563778 187 14230515.8987 14230525.1759 41.1723 -0.038793 7.4948 run51.mat 1 3 1790 148911 148958 +564792 564911 120 14230575.4934 14230581.3986 41.1936 0.013805 7.0266 run51.mat 1 3 1790 149211 149241 +565168 565281 114 14230594.1516 14230599.759 41.2396 0.075639 6.7863 run51.mat 1 3 1790 149305 149333 +565534 565634 101 14230612.3136 14230617.2759 41.2368 0.036609 7.9755 run51.mat 1 3 1790 149397 149422 +566156 566253 98 14230643.179 14230647.9925 41.2941 -0.012815 6.0433 run51.mat 1 3 1790 149552 149577 +566503 567494 992 14230660.3982 14230709.5744 41.2134 -0.023449 5.726 run51.mat 1 3 1790 149639 149887 +567832 568043 212 14230726.347 14230736.8174 41.2274 0.046492 5.9324 run51.mat 1 3 1790 149971 150024 +568293 569254 962 14230749.2231 14230797.1048 41.2226 -0.0048343 6.1967 run51.mat 1 3 1790 150087 150327 +569752 569809 58 14230822.0096 14230824.8602 41.2568 0.015585 4.1401 run51.mat 1 3 1790 150451 150466 +570633 570694 62 14230866.0681 14230869.1187 41.2527 -0.0031029 6.0805 run51.mat 1 3 1790 150671 150687 +571354 571360 7 14230902.125 14230902.4251 41.1859 -0.045703 6.4275 run51.mat 1 3 1790 150852 150853 +705458 708090 2633 14237608.6886 14237741.3767 41.2303 0.0059017 10.192 run51.mat 11 3 1792 184379 185037 +708402 719233 10832 14237757.1057 14238299.1013 41.2257 -3.9362e-05 9.7098 run51.mat 11 3 1792 185115 187823 +719483 729663 10181 14238311.6039 14238818.7137 41.2288 -0.0020178 9.7743 run51.mat 11 3 1792 187886 190431 +729913 730883 971 14238831.2185 14238879.7372 41.2141 -0.017677 9.9179 run51.mat 11 3 1792 190493 190736 +731133 763293 32161 14238892.242 14240500.688 41.2272 -0.0051099 9.7621 run51.mat 11 3 1792 190798 198838 +763543 767711 4169 14240513.1904 14240721.6661 41.2291 0.0072211 9.8068 run51.mat 11 3 1792 198901 199943 +767966 801540 33575 14240734.4214 14242412.5705 41.2253 -0.0044812 9.7586 run51.mat 11 3 1792 200007 208400 +869513 874653 5141 14245810.3068 14246069.2107 41.224 0.0025059 9.9375 run51.mat 11 3 1793 225394 226680 +875084 876099 1016 14246090.6733 14246141.0405 41.2214 -0.011752 9.9883 run51.mat 11 3 1793 226787 227041 +876362 881238 4877 14246154.0913 14246396.6279 41.2282 -0.0015659 9.7406 run51.mat 11 3 1793 227107 228326 +881562 890972 9411 14246412.8342 14246883.4582 41.2261 0.0035552 9.7657 run51.mat 11 3 1793 228407 230760 +891233 892868 1636 14246896.5109 14246978.278 41.2205 -0.016855 9.9317 run51.mat 11 3 1793 230825 231234 +893134 904034 10901 14246991.5807 14247539.5162 41.2266 -0.0059303 9.7602 run51.mat 11 3 1793 231300 234025 +971897 982327 10431 14250930.5526 14251451.4224 41.2264 -0.0014788 10.9909 run51.mat 21 3 1794 250991 253600 +982635 1003126 20492 14251466.8254 14252492.8947 41.2252 -0.00012055 10.9554 run51.mat 21 3 1794 253677 258800 +1003448 1004330 883 14252509.1278 14252553.5925 41.2283 0.0057063 11.0375 run51.mat 21 3 1794 258880 259101 +1004643 1005254 612 14252569.3718 14252599.9365 41.2559 -0.011664 11.0733 run51.mat 21 3 1794 259179 259332 +1005592 1014750 9159 14252616.709 14253074.9657 41.2223 -0.0042187 10.9566 run51.mat 21 3 1794 259416 261706 +1015007 1067959 52953 14253087.8776 14255734.2013 41.2264 -0.006227 10.9696 run51.mat 21 3 1794 261770 275008 +1135971 1142589 6619 14259136.6156 14259467.1792 41.2279 -0.0016323 11.0923 run51.mat 21 3 1795 292012 293667 +1212354 1308418 96065 14262954.4995 14267757.1497 41.2269 -0.0024593 9.996 run51.mat 31 3 1796 311109 335126 +1376212 1382905 6694 14271147.7576 14271481.7686 41.2272 -0.0031977 10.0747 run51.mat 31 3 1797 352075 353748 +1452634 1548618 95985 14274967.4432 14279767.18 41.2267 -0.0031397 9.2722 run51.mat 41 3 1798 371182 395178 +1616687 1623476 6790 14283170.6064 14283510.125 41.2248 -0.0049564 9.3266 run51.mat 41 3 1799 412197 413894 +1692908 1788898 95991 14286983.1155 14291783.3464 41.2267 -0.003629 8.7066 run51.mat 51 3 1800 431253 455251 +1856978 1863762 6785 14295184.2025 14295523.4714 41.226 -0.005 8.7438 run51.mat 51 3 1801 472272 473968 +1931304 2027277 95974 14298902.5296 14303701.3149 41.2279 -0.0034087 8.2461 run51.mat 61 3 1802 490854 514849 +2095174 2101953 6780 14307097.1833 14307434.2521 41.2238 -0.0041362 8.3057 run51.mat 61 3 1803 531823 533519 +2171527 2266125 94599 14310912.9996 14315644.5773 41.2275 -0.0034349 7.8593 run51.mat 71 3 1804 550912 574563 +2266377 2267517 1141 14315657.0798 14315713.6386 41.231 -0.0080994 7.8935 run51.mat 71 3 1804 574626 574911 +2337443 2344238 6796 14319209.6949 14319549.1355 41.2252 -0.004437 7.9126 run51.mat 71 3 1805 592393 594092 +2413614 2471045 57432 14323019.2255 14325889.6644 41.2254 -0.0037501 7.5275 run51.mat 81 3 1806 611437 625796 +2471295 2509616 38322 14325902.2703 14327818.1514 41.2271 -0.0039126 7.5327 run51.mat 81 3 1806 625858 635439 +2577688 2584457 6770 14331222.7469 14331559.9685 41.2249 -0.0013041 7.5645 run51.mat 81 3 1807 652457 654149 +2653858 2693783 39926 14335030.6295 14337028.4455 41.2258 -0.0027339 7.2506 run51.mat 91 3 1808 671501 681482 +2694039 2749836 55798 14337041.1552 14339829.4564 41.2281 -0.0034224 7.2476 run51.mat 91 3 1808 681546 695496 +2819771 2826539 6769 14343324.9183 14343666.1162 41.2224 -0.0054753 7.2888 run51.mat 91 3 1809 712980 714673 +2895950 2906428 10479 14347135.522 14347657.5527 41.2244 -0.0026473 7.0068 run51.mat 101 3 1810 732026 734646 +2906745 2920015 13271 14347673.4093 14348338.6503 41.2279 -0.0039571 6.9904 run51.mat 101 3 1810 734725 738043 +2920316 2952664 32349 14348353.5838 14349969.9765 41.2256 -0.0029915 6.9915 run51.mat 101 3 1810 738118 746205 +2952987 2977033 24047 14349986.1327 14351190.3866 41.2263 -0.0033711 6.9978 run51.mat 101 3 1810 746286 752297 +2977336 2985145 7810 14351205.4193 14351593.4637 41.2309 -0.005603 7.0034 run51.mat 101 3 1810 752373 754326 +2985395 2991932 6538 14351605.9661 14351934.0972 41.2268 -0.0054972 7.0124 run51.mat 101 3 1810 754388 756023 +3061838 3068587 6750 14355430.2154 14355766.7162 41.2317 -0.0034073 7.0102 run51.mat 101 3 1811 773500 775187 +3138021 3154305 16285 14359239.8879 14360054.5598 41.2272 -0.0039525 6.7889 run51.mat 111 3 1812 792547 796618 +3154557 3157170 2614 14360067.0623 14360196.7011 41.2311 -0.0035731 6.8275 run51.mat 111 3 1812 796681 797334 +3157478 3233995 76518 14360211.9819 14364036.4074 41.2275 -0.003611 6.7775 run51.mat 111 3 1812 797411 816541 +3304151 3310946 6796 14367547.9487 14367886.4763 41.223 -0.008406 6.8204 run51.mat 111 3 1813 834081 835780 +3380105 3476074 95970 14371342.8241 14376143.0349 41.2278 -0.0040564 6.5818 run51.mat 121 3 1814 853070 877063 +3546205 3553028 6824 14379647.3291 14379990.1605 41.2192 -0.0052867 6.5988 run51.mat 121 3 1815 894597 896303 +3624546 3720394 95849 14383564.7192 14388359.5115 41.2269 -0.0042895 6.4056 run51.mat 130.8946 3 1816 914183 938146 +3790399 3797268 6870 14391857.746 14392201.7812 41.2211 -0.0064538 6.425 run51.mat 131 3 1817 955648 957366 +3866594 3894215 27622 14395669.3118 14397049.9927 41.227 -0.0035978 6.2447 run51.mat 141 3 1818 974698 981603 +3894477 3900014 5538 14397063.2037 14397340.8852 41.2269 -0.0022594 6.2249 run51.mat 141 3 1818 981669 983053 +3900320 3908047 7728 14397356.1881 14397741.2002 41.2248 -0.0068997 6.2452 run51.mat 141 3 1818 983129 985062 +3908367 3908401 35 14397757.3325 14397759.0466 41.1323 -0.024777 7.7216 run51.mat 141 3 1818 985142 985150 +3908735 3921582 12848 14397775.8847 14398417.548 41.2277 0.0010822 6.2484 run51.mat 141 3 1818 985234 988445 +3921918 3945695 23778 14398434.3021 14399623.5752 41.2268 -0.0044198 6.2429 run51.mat 141 3 1818 988529 994474 +3945997 3949686 3690 14399638.681 14399822.104 41.2271 -0.0036323 6.2453 run51.mat 141 3 1818 994550 995472 +3949936 3960720 10785 14399834.5072 14400374.989 41.2294 -0.0037819 6.2434 run51.mat 141 3 1818 995534 998230 +3961051 3962254 1204 14400391.5424 14400451.8959 41.216 -0.0017727 6.3609 run51.mat 141 3 1818 998313 998614 +3962508 3962513 6 14400464.7009 14400464.953 41.1347 -0.02998 5.1128 run51.mat 141 3 1818 998678 998679 +4032698 4039597 6900 14403975.4378 14404319.9843 41.2223 0.0017327 6.2542 run51.mat 141 3 1819 1016226 1017951 +4108865 4169463 60599 14407784.4058 14410812.813 41.2264 -0.0026236 6.0925 run51.mat 151 3 1820 1035268 1050419 +4169718 4174571 4854 14410825.6629 14411068.4959 41.2289 -0.0050626 6.0739 run51.mat 151 3 1820 1050482 1051695 +4174880 4204793 29914 14411083.8264 14412577.8953 41.23 -0.0025715 6.0972 run51.mat 151 3 1820 1051773 1059251 +4274778 4281672 6895 14416078.9996 14416423.1375 41.2225 -0.0026114 6.098 run51.mat 151 3 1821 1076748 1078472 +4352991 4433255 80265 14419989.476 14424001.1149 41.2274 -0.0029207 5.9557 run51.mat 161 3 1822 1096302 1116369 +4433509 4444701 11193 14424013.9199 14424574.1135 41.2289 -0.0020715 5.9616 run51.mat 161 3 1822 1116433 1119231 +4444963 4448933 3971 14424587.3218 14424787.0108 41.2317 -0.0019074 5.958 run51.mat 161 3 1822 1119296 1120289 +4519102 4526000 6899 14428295.1911 14428639.445 41.2309 -0.0029581 5.9708 run51.mat 161 3 1823 1137832 1139557 +4613098 4659137 46040 14432992.7283 14435297.9057 41.2259 -0.002215 5.8261 run51.mat 170.4525 3 1824 1161332 1172842 +4659389 4701608 42220 14435310.4082 14437418.1741 41.2297 -0.0028305 5.8293 run51.mat 171 3 1824 1172905 1183460 +4701858 4709050 7193 14437430.6765 14437790.3913 41.2278 -0.0025832 5.8264 run51.mat 171 3 1824 1183523 1185321 +4787223 4794146 6924 14441699.8623 14442045.2928 41.2324 -0.0043373 5.8401 run51.mat 171 3 1825 1204865 1206596 +4875281 4971232 95952 14446102.0593 14450901.6995 41.2282 -0.0027061 5.7125 run51.mat 181 3 1826 1226881 1250869 +5041426 5048321 6896 14454412.1751 14454754.2993 41.2293 -0.0037386 5.7315 run51.mat 181 3 1827 1268419 1270143 +5119539 5215371 95833 14458318.2235 14463108.704 41.2272 -0.0026389 5.5993 run51.mat 191 3 1828 1287948 1311907 +5285537 5292439 6903 14466616.9312 14466960.9018 41.2267 -0.0030501 5.6419 run51.mat 191 3 1829 1329449 1331174 +5363761 5459691 95931 14470527.3061 14475324.5134 41.2278 -0.0027099 5.4558 run51.mat 201 3 1830 1349006 1372990 +5531910 5538831 6922 14478935.1448 14479282.7327 41.2307 -0.0034369 5.4638 run51.mat 201 3 1831 1391045 1392775 +5609921 5705851 95931 14482835.9587 14487632.3971 41.2283 -0.0025578 5.3234 run51.mat 211 3 1832 1410549 1434532 +5778114 5785062 6949 14491246.62 14491592.611 41.2224 -0.0018814 5.3551 run51.mat 211 3 1833 1452599 1454336 +5856178 5952050 95873 14495148.6995 14499943.3274 41.2293 -0.001771 5.1999 run51.mat 221 3 1834 1472116 1496085 +6022236 6029169 6934 14503452.591 14503798.497 41.2301 -4.0589e-05 5.2047 run51.mat 221 3 1835 1513632 1515365 +252391 260373 7983 14592633.0175 14593032.0925 41.2241 -21.0426 5.0238 run52.mat 1 4 1837 1 1 +260711 278731 18021 14593048.8617 14593950.9256 41.2277 -21.0411 4.2581 run52.mat 1 4 1837 1 1 +279040 291017 11978 14593966.256 14594564.4402 41.2248 -21.0452 4.2608 run52.mat 1 4 1837 1 1 +369195 393944 24750 14598473.2805 14599712.0466 41.2317 -21.0353 5.7931 run52.mat 11 4 1838 1 1 +471712 491340 19629 14603598.7282 14604580.214 41.2271 -21.0373 6.4426 run52.mat 21 4 1839 1 1 +572445 592147 19703 14608637.1387 14609622.7307 41.2265 -21.0359 5.9031 run52.mat 31 4 1840 1 1 +673023 692819 19797 14613664.9179 14614653.0162 41.2278 -21.036 5.454 run52.mat 41 4 1841 1 1 +773549 793341 19793 14618691.467 14619679.3153 41.2276 -21.0368 5.1281 run52.mat 51 4 1842 1 1 +874053 893822 19770 14623717.6425 14624707.6147 41.2287 -21.0374 4.8778 run52.mat 61 4 1843 1 1 +974852 994363 19512 14628758.2929 14629732.1687 41.2276 -21.0357 4.6405 run52.mat 71 4 1844 1 1 +1077349 1096849 19501 14633882.1751 14634857.3163 41.2303 -21.0369 4.4457 run52.mat 81 4 1845 1 1 +1179773 1199260 19488 14639001.6103 14639976.5625 41.2266 -21.0348 4.2756 run52.mat 91 4 1846 1 1 +1281876 1301695 19820 14644109.1399 14645098.6299 41.2307 -21.0364 4.162 run52.mat 101 4 1847 1 1 +1384263 1404114 19852 14649226.0589 14650218.8487 41.2233 -21.0368 4.0339 run52.mat 111 4 1848 1 1 +1488869 1508379 19511 14654457.2202 14655433.9593 41.2296 -21.035 3.911 run52.mat 121 4 1849 1 1 +1593093 1612913 19821 14659670.432 14660660.7467 41.2339 -21.0372 3.8285 run52.mat 131 4 1850 1 1 +1697758 1707953 10196 14664904.8818 14665412.8264 41.2348 -21.0379 3.7551 run52.mat 141 4 1851 1 1 +1708203 1717240 9038 14665425.2296 14665876.9129 41.2381 -21.0332 3.6877 run52.mat 141 4 1851 1 1 +1801680 1810509 8830 14670098.5927 14670540.1252 41.2323 -21.0375 3.7364 run52.mat 151 4 1852 1 1 +1810824 1821436 10613 14670555.7533 14671088.2795 41.2335 -21.0335 3.6174 run52.mat 151 4 1852 1 1 +1906182 1925991 19810 14675322.7818 14676316.3312 41.2316 -21.0354 3.5951 run52.mat 161 4 1853 1 1 +2010861 2027482 16622 14680558.9915 14681390.2063 41.228 -21.0365 3.5088 run52.mat 171 4 1854 1 1 +2027789 2030231 2443 14681405.5595 14681527.6849 41.2289 -21.0391 3.4786 run52.mat 171 4 1854 1 1 +2117349 2130044 12696 14685881.7043 14686517.8865 41.2271 -21.0354 3.456 run52.mat 181 4 1855 1 1 +2130294 2136748 6455 14686530.4898 14686851.9704 41.2265 -21.0357 3.4101 run52.mat 181 4 1855 1 1 +2223863 2243249 19387 14691208.1378 14692177.7249 41.2279 -21.0363 3.3749 run52.mat 191 4 1856 1 1 +2332118 2342691 10574 14696622.9808 14697149.7945 41.2264 -21.0379 3.3296 run52.mat 201 4 1857 1 1 +2342944 2351553 8610 14697162.4498 14697593.5776 41.2349 -21.0355 3.3005 run52.mat 201 4 1857 1 1 +2440697 2460112 19416 14702048.4034 14703021.288 41.235 -21.0343 3.2333 run52.mat 211 4 1858 1 1 +2549183 2568672 19490 14707474.2097 14708450.7229 41.2261 -21.0376 3.1771 run52.mat 221 4 1859 1 1 +548564 549545 982 15600865.1325 15600914.588 41.2286 -21.0436 3.6087 run53.mat 1 4 1861 200001 200001 +549857 566040 16184 15600930.317 15601739.7365 41.2275 -21.0383 4.7164 run53.mat 1 4 1861 200001 200001 +566293 569717 3425 15601752.3388 15601923.4259 41.2334 -21.0372 4.1615 run53.mat 1 4 1861 200001 200001 +569973 572551 2579 15601936.2283 15602065.1531 41.2331 -21.0388 4.0504 run53.mat 1 4 1861 200001 200001 +572851 587006 14156 15602080.156 15602788.096 41.2284 -21.0444 4.2791 run53.mat 1 4 1861 200001 200001 +665441 690188 24748 15606710.0889 15607946.5784 41.2291 -21.0363 5.7826 run53.mat 11 4 1862 200001 200001 +770015 789567 19553 15611939.0079 15612915.822 41.2274 -21.0365 6.4949 run53.mat 21 4 1863 200001 200001 +868677 888336 19660 15616872.9667 15617855.9108 41.2247 -21.0376 5.89 run53.mat 31 4 1864 200001 200001 +969380 989157 19778 15621908.3022 15622896.0175 41.2278 -21.0359 5.4276 run53.mat 41 4 1865 200001 200001 +1071930 1091756 19827 15627035.6156 15628025.047 41.2272 -21.0374 5.1255 run53.mat 51 4 1866 200001 200001 +1172264 1192067 19804 15632050.8996 15633043.1835 41.2286 -21.0366 4.8573 run53.mat 61 4 1867 200001 200001 +1275136 1294592 19457 15637195.7444 15638167.9433 41.2273 -21.0366 4.6231 run53.mat 71 4 1868 200001 200001 +1377618 1397020 19403 15642321.3198 15643291.4683 41.2266 -21.0354 4.441 run53.mat 81 4 1869 200001 200001 +1479560 1499370 19811 15647416.3601 15648407.2912 41.2288 -21.0347 4.3 run53.mat 91 4 1870 200001 200001 +1582341 1592713 10373 15652555.7202 15653075.9904 41.2247 -21.0387 4.1695 run53.mat 101 4 1871 200001 200001 +1592976 1601781 8806 15653089.1429 15653526.2778 41.2335 -21.0375 4.0983 run53.mat 101 4 1871 200001 200001 +1686273 1706126 19854 15657752.2855 15658746.1268 41.2311 -21.0353 4.0199 run53.mat 111 4 1872 200001 200001 +1791065 1796262 5198 15662991.998 15663253.1704 41.2294 -21.0348 3.9862 run53.mat 121 4 1873 200001 200001 +1796518 1810609 14092 15663265.9729 15663969.6686 41.2327 -21.0372 3.8705 run53.mat 121 4 1873 200001 200001 +1895591 1915115 19525 15668221.2434 15669196.3074 41.2313 -21.0369 3.8118 run53.mat 131 4 1874 200001 200001 +1999888 2019369 19482 15673435.0523 15674409.0593 41.2323 -21.0343 3.7301 run53.mat 141 4 1875 200001 200001 +2104321 2108639 4319 15678655.7453 15678870.6951 41.217 -21.0373 3.7559 run53.mat 151 4 1876 200001 200001 +2108898 2123856 14959 15678883.5474 15679634.0873 41.2305 -21.0363 3.6182 run53.mat 151 4 1876 200001 200001 +2208542 2228077 19536 15683867.0196 15684842.3153 41.226 -21.0363 3.5788 run53.mat 161 4 1877 200001 200001 +2315009 2334493 19485 15689191.371 15690165.3446 41.2302 -21.0356 3.5086 run53.mat 171 4 1878 200001 200001 +2421464 2438775 17312 15694514.0659 15695376.3709 41.2332 -21.0357 3.4451 run53.mat 181 4 1879 200001 200001 +2439025 2440831 1807 15695388.8757 15695479.4249 41.2291 -21.0409 3.3968 run53.mat 181 4 1879 200001 200001 +2527994 2546268 18275 15699839.2082 15700751.81 41.2307 -21.0343 3.3857 run53.mat 191 4 1880 200001 200001 +2546518 2547302 785 15700764.4159 15700803.948 41.2183 -21.0429 3.3463 run53.mat 191 4 1880 200001 200001 +2634603 2651108 16506 15705168.3447 15705994.1291 41.2323 -21.0361 3.3066 run53.mat 201 4 1881 200001 200001 +2651358 2653970 2613 15706006.7324 15706138.4122 41.2404 -21.0347 3.3179 run53.mat 201 4 1881 200001 200001 +2740992 2760361 19370 15710488.566 15711456.9985 41.2288 -21.0368 3.2364 run53.mat 211 4 1882 200001 200001 +2849524 2864679 15156 15715916.9478 15716673.5893 41.2314 -21.037 3.1842 run53.mat 221 4 1883 200001 200001 +2865017 2869108 4092 15716690.3552 15716896.2138 41.2321 -21.0418 3.1583 run53.mat 221 4 1883 200001 200001 +314251 314572 322 15798255.6329 15798271.5586 41.2279 0.025092 9.6568 run55.mat 1 3 1885 181434 181595 +314824 314882 59 15798284.0611 15798286.9387 41.2398 -0.1513 12.0297 run55.mat 1 3 1885 181721 181750 +315132 317032 1901 15798299.3419 15798394.2211 41.2208 -0.014079 9.5221 run55.mat 1 3 1885 181875 182825 +317282 323213 5932 15798406.8269 15798704.3029 41.2244 -0.0085452 8.8656 run55.mat 1 3 1885 182950 185916 +323551 325213 1663 15798721.0754 15798803.5486 41.2264 -0.016587 8.8187 run55.mat 1 3 1885 186085 186916 +325551 332176 6626 15798820.3212 15799150.9325 41.2277 0.0023202 8.3002 run55.mat 1 3 1885 187085 190397 +332432 334413 1982 15799163.636 15799261.9389 41.223 -0.0046777 7.9686 run55.mat 1 3 1885 190525 191516 +335011 335752 742 15799291.6133 15799328.3839 41.2366 -0.02554 7.79 run55.mat 1 3 1885 191815 192186 +336002 336413 412 15799340.7896 15799361.3059 41.2119 0.027138 7.8944 run55.mat 1 3 1885 192311 192516 +336751 342153 5403 15799378.2124 15799648.7506 41.225 -0.0068493 7.8043 run55.mat 1 3 1885 192685 195386 +342491 344813 2323 15799665.7903 15799782.8502 41.2308 -0.0025213 7.4993 run55.mat 1 3 1885 195555 196716 +345151 345230 80 15799799.8899 15799803.8726 41.1961 -0.0010156 7.0852 run55.mat 1 3 1885 196885 196925 +345494 346281 788 15799817.1817 15799856.8434 41.2329 -0.00033808 7.0026 run55.mat 1 3 1885 197057 197450 +346598 346893 296 15799872.5707 15799887.2066 41.1987 0.021001 8.3721 run55.mat 1 3 1885 197609 197756 +347231 347922 692 15799903.9758 15799938.2584 41.2164 -0.010328 7.0829 run55.mat 1 3 1885 197925 198271 +348172 349501 1330 15799950.6616 15800016.5973 41.2302 -0.0024561 7.1713 run55.mat 1 3 1885 198396 199060 +349764 350511 748 15800029.6456 15800066.7065 41.2379 -0.012735 7.4716 run55.mat 1 3 1885 199192 199565 +350824 352500 1677 15800082.2354 15800166.3448 41.23 0.0010876 7.113 run55.mat 1 3 1885 199722 200560 +353151 353710 560 15800199.1639 15800227.345 41.2278 -0.017068 7.0134 run55.mat 1 3 1885 200885 201165 +354214 354673 460 15800252.7534 15800275.8931 41.2396 0.00089929 6.989 run55.mat 1 3 1885 201417 201646 +355011 361632 6622 15800292.9328 15800622.5534 41.2311 -0.0061832 6.9301 run55.mat 1 3 1885 201815 205126 +361882 363613 1732 15800635.0561 15800721.6241 41.2113 -0.018999 6.7127 run55.mat 1 3 1885 205251 206117 +363951 364003 53 15800738.5276 15800741.1282 41.1142 -0.025755 5.8477 run55.mat 1 3 1885 206286 206312 +364276 364493 218 15800754.781 15800765.6333 41.2633 -0.0066845 8.2553 run55.mat 1 3 1885 206448 206557 +364831 365073 243 15800782.5368 15800794.6393 41.2223 0.027014 6.8442 run55.mat 1 3 1885 206726 206847 +365411 366153 743 15800811.5428 15800848.6925 41.2243 0.0034667 6.2953 run55.mat 1 3 1885 207016 207387 +366831 367891 1061 15800883.1356 15800936.9848 41.2167 0.010306 6.4693 run55.mat 1 3 1885 207726 208256 +368161 372013 3853 15800950.7011 15801145.4423 41.2252 -0.014981 6.545 run55.mat 1 3 1885 208391 210317 +372365 372673 309 15801162.9061 15801178.1869 41.2308 0.050363 6.8036 run55.mat 1 3 1885 210493 210647 +373011 373310 300 15801194.9561 15801209.7904 41.2268 0.00021094 6.7172 run55.mat 1 3 1885 210816 210965 +373618 374348 731 15801225.0712 15801261.2887 41.245 -0.012602 5.9775 run55.mat 1 3 1885 211119 211484 +374622 375133 512 15801274.8827 15801300.235 41.2162 -0.0098427 6.3425 run55.mat 1 3 1885 211621 211877 +375565 376013 449 15801321.6678 15801343.8944 41.247 -0.0022711 5.8841 run55.mat 1 3 1885 212093 212317 +376351 377362 1012 15801360.701 15801411.2615 41.2236 0.010922 5.8223 run55.mat 1 3 1885 212486 212991 +377613 378013 401 15801423.8141 15801443.8183 41.2252 0.0039686 6.2593 run55.mat 1 3 1885 213117 213317 +378351 378793 443 15801460.7218 15801482.8264 41.2307 -0.011465 5.7935 run55.mat 1 3 1885 213486 213707 +379131 380673 1543 15801499.7299 15801576.846 41.2327 0.0052619 6.4264 run55.mat 1 3 1885 213876 214647 +381285 381892 608 15801607.4544 15801637.8161 41.2339 -0.025075 5.9445 run55.mat 1 3 1885 214953 215256 +382156 382899 744 15801651.0212 15801688.1855 41.2251 -0.023976 6.1805 run55.mat 1 3 1885 215388 215760 +383159 383479 321 15801701.1905 15801717.1966 41.2433 -0.024048 5.901 run55.mat 1 3 1885 215890 216050 +383804 383873 70 15801733.4529 15801736.9042 41.2494 0.03257 6.0636 run55.mat 1 3 1885 216212 216247 +384211 386273 2063 15801753.8107 15801856.9426 41.2293 -0.011052 5.8312 run55.mat 1 3 1885 216416 217447 +386611 390571 3961 15801873.7118 15802070.1794 41.2247 0.0071036 7.1261 run55.mat 1 3 1885 217616 219596 +390824 396962 6139 15802082.7315 15802388.0475 41.2276 -0.0071922 7.3646 run55.mat 1 3 1885 219722 222791 +397212 397427 216 15802400.7647 15802411.7016 41.1612 -0.033922 7.5335 run55.mat 1 3 1885 222916 223024 +397682 400093 2412 15802424.6732 15802547.3184 41.2271 -0.007321 7.4575 run55.mat 1 3 1885 223151 224357 +400543 401631 1089 15802570.2094 15802625.0556 41.2347 0.0029503 7.2925 run55.mat 1 3 1885 224582 225126 +401938 403078 1141 15802640.4085 15802697.4195 41.2282 -0.00482 7.3037 run55.mat 1 3 1885 225280 225850 +403332 404673 1342 15802710.1219 15802777.1848 41.2365 -0.0054676 7.4421 run55.mat 1 3 1885 225977 226647 +405011 406508 1498 15802794.0881 15802868.8498 41.2276 -0.0032723 7.4183 run55.mat 1 3 1885 226816 227565 +406813 410305 3493 15802883.9817 15803057.2304 41.2291 -0.0032206 7.263 run55.mat 1 3 1885 227717 229463 +478096 483017 4922 15806447.0061 15806693.7408 41.228 0.0033752 9.3158 run55.mat 1 3 1886 263360 265821 +483288 483951 664 15806707.1886 15806740.0885 41.2249 -0.00057652 10.3607 run55.mat 1 3 1886 265956 266288 +484214 490176 5963 15806753.1393 15807052.0494 41.2299 -0.0025169 9.7217 run55.mat 1 3 1886 266420 269401 +490438 491502 1065 15807065.2577 15807118.8976 41.216 0.00044014 9.5785 run55.mat 1 3 1886 269532 270064 +491815 503246 11432 15807134.677 15807706.1413 41.2222 -0.0053422 9.4932 run55.mat 1 3 1886 270220 275936 +503505 509893 6389 15807719.0967 15808038.5868 41.2226 -0.0097881 9.2481 run55.mat 1 3 1886 276065 279260 +510231 514290 4060 15808055.4901 15808257.2778 41.224 -0.0089531 8.7973 run55.mat 1 3 1886 279429 281458 +514552 515101 550 15808270.2764 15808297.514 41.2348 -0.02301 8.1285 run55.mat 1 3 1886 281589 281864 +515415 520476 5062 15808313.0925 15808567.5688 41.2239 -0.00065612 8.3755 run55.mat 1 3 1886 282021 284551 +520734 521829 1096 15808580.5781 15808635.329 41.2272 0.022887 7.9358 run55.mat 1 3 1886 284680 285228 +522094 522451 358 15808648.4765 15808666.1883 41.2035 0.0090891 7.4453 run55.mat 1 3 1886 285361 285539 +522704 527561 4858 15808678.7404 15808920.7225 41.2288 -0.0058817 8.0464 run55.mat 1 3 1886 285666 288094 +527813 528312 500 15808933.4267 15808958.583 41.2517 -0.0080234 8.402 run55.mat 1 3 1886 288220 288470 +528567 528926 360 15808971.4384 15808989.5368 41.2261 -0.040522 7.4834 run55.mat 1 3 1886 288597 288777 +529185 531382 2198 15809002.5939 15809113.2512 41.2149 -0.011151 7.7839 run55.mat 1 3 1886 288906 290005 +531632 535261 3630 15809125.6545 15809305.7001 41.2289 -0.001517 7.3845 run55.mat 1 3 1886 290130 291944 +535525 537041 1517 15809318.798 15809394.3078 41.2256 -0.02553 7.9173 run55.mat 1 3 1886 292076 292834 +537365 538238 874 15809410.5111 15809454.1702 41.2406 -0.019475 7.4997 run55.mat 1 3 1886 292996 293433 +538494 540121 1628 15809466.9729 15809548.3399 41.2213 -0.011927 7.452 run55.mat 1 3 1886 293561 294374 +540433 540791 359 15809563.9431 15809581.8468 41.2238 -0.03264 7.4173 run55.mat 1 3 1886 294530 294709 +541242 544776 3535 15809604.4028 15809781.1708 41.2298 -0.00035388 7.0505 run55.mat 1 3 1886 294935 296702 +545042 545253 212 15809794.476 15809805.03 41.2147 0.058281 5.8125 run55.mat 1 3 1886 296835 296941 +546042 546188 147 15809844.4952 15809851.798 41.1746 -0.062528 4.8411 run55.mat 1 3 1886 297335 297408 +546452 546693 242 15809864.9365 15809876.8909 41.216 0.034438 7.8538 run55.mat 1 3 1886 297540 297661 +547031 547516 486 15809893.6567 15809917.7143 41.2143 -0.00018647 6.9002 run55.mat 1 3 1886 297830 298072 +548104 548132 29 15809946.881 15809948.2698 41.2616 0.036146 5.2487 run55.mat 1 3 1886 298366 298380 +548392 549493 1102 15809961.1667 15810015.7798 41.2252 0.012303 6.7781 run55.mat 1 3 1886 298510 299060 +549972 550513 542 15810039.5397 15810066.375 41.1982 -0.0009081 6.8433 run55.mat 1 3 1886 299300 299570 +550851 551108 258 15810083.1409 15810095.8889 41.2447 -0.0065975 6.3808 run55.mat 1 3 1886 299739 299868 +551363 552358 996 15810108.5631 15810158.7346 41.2177 -0.0039572 6.8295 run55.mat 1 3 1886 299995 300493 +552631 553493 863 15810172.5002 15810215.9653 41.2285 0.002174 6.4023 run55.mat 1 3 1886 300629 301060 +553956 556050 2095 15810239.3114 15810344.8983 41.2289 0.012172 6.3798 run55.mat 1 3 1886 301292 302339 +556309 557114 806 15810357.9426 15810397.8811 41.2287 0.017555 6.9617 run55.mat 1 3 1886 302469 302871 +557649 557701 53 15810424.4241 15810427.004 41.1042 -0.017398 5.393 run55.mat 1 3 1886 303139 303165 +557952 558293 342 15810439.4568 15810456.3749 41.2015 -0.014534 7.0538 run55.mat 1 3 1886 303290 303461 +558631 558762 132 15810473.1441 15810479.6434 41.2706 -0.0024148 6.0624 run55.mat 1 3 1886 303630 303695 +559022 559252 231 15810492.5428 15810503.9538 41.255 0.050553 6.3513 run55.mat 1 3 1886 303825 303940 +559569 560131 563 15810519.6811 15810547.5636 41.2209 0.0010602 6.7363 run55.mat 1 3 1886 304099 304380 +560921 561932 1012 15810586.7579 15810637.3993 41.2353 0.0075691 6.7191 run55.mat 1 3 1886 304775 305280 +562239 562784 546 15810652.8762 15810680.3515 41.2268 -0.031338 6.2431 run55.mat 1 3 1886 305434 305706 +563049 564067 1019 15810693.711 15810745.0319 41.2116 0.021113 6.5493 run55.mat 1 3 1886 305839 306348 +564373 564532 160 15810760.4584 15810768.4741 41.2184 0.08645 6.0268 run55.mat 1 3 1886 306501 306580 +564795 565864 1070 15810781.7328 15810835.6247 41.2298 0.018911 5.9027 run55.mat 1 3 1886 306712 307246 +566316 566833 518 15810858.3894 15810884.0445 41.2159 0.014652 6.3683 run55.mat 1 3 1886 307472 307731 +567171 568070 900 15810900.817 15810945.4279 41.2199 0.0059362 6.3628 run55.mat 1 3 1886 307900 308349 +568323 568919 597 15810957.9825 15810987.5578 41.2256 -0.0267 6.4416 run55.mat 1 3 1886 308476 308774 +569174 569649 476 15811000.2116 15811023.7825 41.2358 0.00014772 6.4154 run55.mat 1 3 1886 308901 309139 +569904 570792 889 15811036.4363 15811080.5014 41.2324 -0.035205 6.5074 run55.mat 1 3 1886 309266 309710 +571046 571769 724 15811093.1056 15811129.1546 41.2346 -0.0065203 6.4444 run55.mat 1 3 1886 309837 310199 +572076 572260 185 15811144.5078 15811153.7097 41.1864 0.091529 6.2429 run55.mat 1 3 1886 310353 310445 +572643 572648 6 15811172.8637 15811173.1138 41.1009 0.10215 10.3484 run55.mat 1 3 1886 310636 310639 +572904 573113 210 15811185.9164 15811196.3686 41.2361 -0.03994 5.4168 run55.mat 1 3 1886 310767 310871 +573451 573456 6 15811213.2721 15811213.5222 41.1487 0.15693 9.4888 run55.mat 1 3 1886 311040 311043 +573779 574156 378 15811229.6756 15811248.5295 41.2523 0.046719 5.4786 run55.mat 1 3 1886 311204 311393 +640307 641096 790 15814557.4858 15814597.2619 41.2424 0.045001 8.7122 run55.mat 1 3 1887 344469 344864 +641425 641486 62 15814613.8012 15814616.8518 41.1973 0.15901 9.9305 run55.mat 1 3 1887 345029 345059 +641795 641947 153 15814632.3051 15814639.9066 41.2597 -0.023454 8.6412 run55.mat 1 3 1887 345214 345290 +642260 642358 99 15814655.5599 15814660.4609 41.189 0.028072 9.9622 run55.mat 1 3 1887 345446 345495 +642613 642857 245 15814673.2136 15814685.4161 41.2961 0.015729 8.3429 run55.mat 1 3 1887 345623 345745 +643119 643133 15 15814698.5189 15814699.219 41.2453 -0.047812 8.4411 run55.mat 1 3 1887 345876 345883 +643471 643948 478 15814716.1225 15814739.9775 41.2472 -0.029457 8.9069 run55.mat 1 3 1887 346052 346290 +710354 723323 12970 15818062.2222 15818710.3339 41.2271 0.0010495 9.8019 run55.mat 11 3 1888 379495 385979 +723638 744929 21292 15818725.9651 15819789.4251 41.2264 -0.0028266 9.7613 run55.mat 11 3 1888 386137 396783 +745195 763240 18046 15819802.7276 15820703.4828 41.2268 -0.0040643 9.7609 run55.mat 11 3 1888 396916 405939 +763495 775750 12256 15820716.3382 15821328.8833 41.2269 -0.011394 9.7511 run55.mat 11 3 1888 406066 412194 +776052 784599 8548 15821343.9865 15821772.2466 41.2273 -0.0062105 9.7384 run55.mat 11 3 1888 412345 416619 +784859 806425 21567 15821785.3541 15822864.9846 41.226 -0.004327 9.753 run55.mat 11 3 1888 416749 427532 +874441 877501 3061 15826263.6182 15826416.682 41.2277 0.0072501 10.1646 run55.mat 11 3 1889 461541 463071 +877755 878505 751 15826429.3872 15826466.957 41.2178 0.0010668 9.6072 run55.mat 11 3 1889 463198 463574 +878767 884815 6049 15826480.1654 15826784.4786 41.2272 -0.0034407 9.7026 run55.mat 11 3 1889 463705 466729 +885153 891311 6159 15826801.3851 15827109.379 41.2253 -0.0097323 9.7047 run55.mat 11 3 1889 466898 469977 +891575 908695 17121 15827122.5818 15827978.8018 41.2253 -0.002786 9.7754 run55.mat 11 3 1889 470109 478669 +976872 988612 11741 15831387.8766 15831974.6466 41.2268 0.00090006 11.0221 run55.mat 21 3 1890 512759 518629 +988865 994629 5765 15831987.3009 15832273.9522 41.2262 0.0020634 10.9526 run55.mat 21 3 1890 518756 521638 +994940 996772 1833 15832289.6308 15832381.9881 41.2309 -0.037757 11.0521 run55.mat 21 3 1890 521794 522710 +997337 1054634 57298 15832410.4717 15835274.6584 41.2258 -0.0055721 10.9567 run55.mat 21 3 1890 522992 551642 +1054884 1072925 18042 15835287.1608 15836188.9411 41.2256 -0.0058589 10.9608 run55.mat 21 3 1890 551767 560788 +1140953 1147583 6631 15839590.7405 15839922.9012 41.2235 -0.0035983 11.0561 run55.mat 21 3 1891 594803 598118 +1215283 1239823 24541 15843308.2 15844536.5526 41.2248 -0.0029603 10.0061 run55.mat 31 3 1892 631970 644241 +1240084 1311344 71261 15844549.6051 15848111.6613 41.2274 -0.0058335 9.9948 run55.mat 31 3 1892 644371 680003 +1379341 1386009 6669 15851511.0553 15851842.9621 41.2268 -0.0012438 10.0925 run55.mat 31 3 1893 714002 717337 +1453737 1549744 96008 15855230.2325 15860032.4244 41.2274 -0.0026489 9.2727 run55.mat 41 3 1894 751202 799208 +1617833 1624574 6742 15863435.5617 15863772.8584 41.2303 0.00042217 9.3635 run55.mat 41 3 1895 833254 836625 +1691963 1787944 95982 15867140.7531 15871939.5841 41.2269 -0.0037606 8.7061 run55.mat 51 3 1896 870321 918313 +1858117 1864938 6822 15875449.678 15875790.832 41.2258 -0.0011455 8.788 run55.mat 51 3 1897 953401 956812 +1934260 2030263 96004 15879257.7752 15884057.0871 41.2283 -0.0043501 8.2425 run55.mat 61 3 1898 991474 1039478 +2098349 2105114 6766 15887461.4584 15887800.7814 41.2265 -0.004651 8.2735 run55.mat 61 3 1899 1073523 1076905 +2174674 2232295 57622 15891277.7685 15894159.4943 41.2261 -0.0043928 7.8526 run55.mat 71 3 1900 1111687 1140498 +2232549 2270502 37954 15894172.1968 15896069.5855 41.2273 -0.0044475 7.8613 run55.mat 71 3 1900 1140625 1159603 +2340453 2347235 6783 15899566.6425 15899905.5527 41.2233 -0.0037103 7.9071 run55.mat 71 3 1901 1194580 1197971 +2416842 2439407 22566 15903385.2816 15904514.0712 41.2229 -0.004578 7.5341 run55.mat 81 3 1902 1232776 1244059 +2439730 2512822 73093 15904530.3547 15908184.072 41.2271 -0.0024078 7.5266 run55.mat 81 3 1902 1244220 1280768 +2582766 2589566 6801 15911682.7128 15912024.7586 41.2289 -0.0045377 7.5922 run55.mat 81 3 1903 1315742 1319142 +2658907 2669118 10212 15915489.1066 15916000.7193 41.2257 -0.003194 7.2702 run55.mat 91 3 1904 1353814 1358919 +2669456 2693317 23862 15916017.4919 15917212.3405 41.2287 -0.0023682 7.2427 run55.mat 91 3 1904 1359088 1371020 +2693567 2698707 5141 15917224.9463 15917480.7297 41.2317 -0.0035111 7.2569 run55.mat 91 3 1904 1371145 1373715 +2698957 2729157 30201 15917493.133 15919001.2901 41.2259 -0.0036863 7.245 run55.mat 91 3 1904 1373840 1388940 +2729409 2754894 25486 15919013.8925 15920290.4474 41.2299 -0.0021543 7.2542 run55.mat 91 3 1904 1389066 1401809 +2825028 2831820 6793 15923794.9981 15924136.0266 41.2249 -0.003738 7.2795 run55.mat 91 3 1905 1436878 1440274 +2901012 2926248 25237 15927593.3122 15928856.2582 41.2253 -0.0052002 6.9985 run55.mat 101 3 1906 1474871 1487490 +2926571 2938928 12358 15928872.4144 15929491.6848 41.2253 -0.0064575 6.9923 run55.mat 101 3 1906 1487651 1493830 +2939259 2947788 8530 15929508.3716 15929934.8492 41.2258 -0.0041541 6.9962 run55.mat 101 3 1906 1493996 1498261 +2948038 2997001 48964 15929947.2524 15932395.357 41.2294 -0.0041436 6.9984 run55.mat 101 3 1906 1498386 1522868 +3067104 3070231 3128 15935900.4396 15936055.5795 41.2281 -0.0059487 7.037 run55.mat 101 3 1907 1557921 1559485 +3070547 3073891 3345 15936071.2572 15936239.6179 41.2326 -0.0040155 7.0153 run55.mat 101 3 1907 1559643 1561315 +3143265 3172509 29245 15939708.1735 15941170.0036 41.2266 -0.0049769 6.7794 run55.mat 111 3 1908 1596003 1610626 +3172759 3202598 29840 15941182.6095 15942676.7537 41.2258 -0.0023595 6.7733 run55.mat 111 3 1908 1610751 1625671 +3202849 3239241 36393 15942689.1182 15944507.2897 41.2275 -0.0017938 6.7825 run55.mat 111 3 1908 1625797 1643994 +3309184 3316030 6847 15948003.1416 15948345.1048 41.2266 -0.0015805 6.7801 run55.mat 111 3 1909 1678967 1682389 +3387407 3470500 83094 15951915.4567 15956072.1819 41.2275 -0.0035773 6.5786 run55.mat 121 3 1910 1718080 1759628 +3470753 3483380 12628 15956084.8345 15956714.7754 41.2258 -0.0026746 6.5788 run55.mat 121 3 1910 1759755 1766069 +3553376 3560215 6840 15960214.8333 15960556.3033 41.2245 -0.0049608 6.5932 run55.mat 121 3 1911 1801068 1804488 +3631587 3633667 2081 15964124.0583 15964228.1771 41.2249 -0.009645 6.5287 run55.mat 131 3 1912 1840175 1841215 +3633997 3727540 93544 15964244.8135 15968921.0042 41.2282 -0.003544 6.4014 run55.mat 131 3 1912 1841380 1888154 +3797727 3802897 5171 15972432.3296 15972692.1817 41.22 -0.0040334 6.446 run55.mat 131 3 1913 1923249 1925834 +3803208 3804609 1402 15972707.8603 15972777.4039 41.2366 -0.0012054 6.3603 run55.mat 131 3 1913 1925989 1926689 +3873740 3887300 13561 15976231.7998 15976912.8157 41.2285 -0.0039399 6.2529 run55.mat 141 3 1914 1961257 1968037 +3887561 3913909 26349 15976925.8707 15978241.6 41.2288 -0.0029948 6.2415 run55.mat 141 3 1914 1968167 1981342 +3914170 3914499 330 15978254.651 15978271.1073 41.2175 -0.0023615 6.0831 run55.mat 141 3 1914 1981473 1981637 +3914751 3924376 9626 15978283.7122 15978763.1093 41.2355 -0.0024304 6.2364 run55.mat 141 3 1914 1981763 1986576 +3924681 3969659 44979 15978778.4885 15981029.8111 41.2254 -0.0035274 6.249 run55.mat 141 3 1914 1986728 2009218 +4039849 4046756 6908 15984539.5208 15984882.9687 41.224 -0.0019536 6.2677 run55.mat 141 3 1915 2044315 2047769 +4116006 4151330 35325 15988345.6499 15990112.11 41.2279 -0.0015921 6.0961 run55.mat 151 3 1916 2082395 2100058 +4151580 4162500 10921 15990124.6126 15990671.8309 41.2273 -0.0014601 6.096 run55.mat 151 3 1916 2100183 2105643 +4162801 4211938 49138 15990686.7644 15993141.3129 41.2278 -0.0024237 6.0938 run55.mat 151 3 1916 2105794 2130363 +4281930 4288844 6915 15996642.4891 15996989.0814 41.2241 -0.0021359 6.1117 run55.mat 151 3 1917 2165361 2168818 +4360152 4419445 59294 16000552.9933 16003517.5187 41.2253 -0.0024068 5.9544 run55.mat 161 3 1918 2204474 2234121 +4419703 4426339 6637 16003530.5253 16003864.1419 41.229 -0.0017226 5.9436 run55.mat 161 3 1918 2234250 2237569 +4426649 4442785 16137 16003879.5444 16004684.6632 41.2332 -0.003524 5.9575 run55.mat 161 3 1918 2237724 2245792 +4443044 4451022 7979 16004697.6157 16005098.4183 41.2295 -0.0031357 5.9815 run55.mat 161 3 1918 2245921 2249911 +4451281 4456089 4809 16005111.478 16005350.2508 41.2346 -0.0015951 5.9641 run55.mat 161 3 1918 2250040 2252444 +4526287 4533176 6890 16008860.9673 16009204.6761 41.2278 -0.003837 5.9959 run55.mat 161 3 1919 2287545 2290989 +4604290 4657990 53701 16012760.1673 16015446.4502 41.2274 -0.0026929 5.8271 run55.mat 171 3 1920 2326548 2353399 +4658240 4700256 42017 16015458.8559 16017559.0947 41.2272 -0.0027766 5.829 run55.mat 171 3 1920 2353524 2374533 +4770428 4777300 6873 16021068.1996 16021410.8835 41.223 -0.0034257 5.8427 run55.mat 171 3 1921 2409620 2413057 +4848491 4944376 95886 16024971.9153 16029766.3326 41.2273 -0.0027376 5.7117 run55.mat 181 3 1922 2448654 2496598 +5014540 5021451 6912 16033272.6961 16033618.3866 41.2252 -0.0045922 5.7353 run55.mat 181 3 1923 2531682 2535137 +5092587 5188518 95932 16037176.5904 16041974.1971 41.2259 -0.0026528 5.6001 run55.mat 191 3 1924 2570707 2618675 +5258702 5265626 6925 16045481.4023 16045828.9631 41.223 -0.0023439 5.6264 run55.mat 191 3 1925 2653768 2657230 +5336938 5364391 27454 16049393.5749 16050765.4457 41.2264 -0.0031317 5.4495 run55.mat 201 3 1926 2692888 2706615 +5364641 5432857 68217 16050778.0004 16054188.9111 41.2287 -0.0026028 5.4571 run55.mat 201 3 1926 2706740 2740849 +5504940 5511860 6921 16057791.9451 16058140.4851 41.2308 -0.0035695 5.4892 run55.mat 201 3 1927 2776893 2780353 +5582970 5635127 52158 16061697.2278 16064301.7957 41.2266 -0.0026771 5.3226 run55.mat 211 3 1928 2815909 2841989 +5635386 5678896 43511 16064314.7482 16066493.8305 41.2282 -0.0023536 5.327 run55.mat 211 3 1928 2842118 2863874 +5749173 5755998 6826 16070005.3811 16070348.0006 41.2256 -0.0022645 5.3263 run55.mat 211 3 1929 2899014 2902427 +5827289 5923227 95939 16073912.4749 16078708.6845 41.2279 -0.0027154 5.202 run55.mat 221 3 1930 2938074 2986045 +5995383 6002174 6792 16082315.8571 16082655.3304 41.2212 -0.0011729 5.2124 run55.mat 221 3 1931 3022124 3025520 +321328 359805 38478 16215992.0292 16217918.0694 41.2289 -21.0353 4.422 run56.mat 1 4 1933 88270 97889 +438045 462907 24863 16221830.1877 16223071.6796 41.2291 -21.0348 5.7757 run56.mat 11 4 1934 117450 123666 +540721 560389 19669 16226963.3976 16227947.0383 41.2305 -21.0353 6.4245 run56.mat 21 4 1935 143120 148038 +641383 661111 19729 16231995.0058 16232983.4995 41.2296 -21.0372 5.8895 run56.mat 31 4 1936 168287 173219 +741922 761724 19803 16237022.124 16238014.2777 41.2287 -21.0374 5.459 run56.mat 41 4 1937 193423 198373 +842413 862240 19828 16242047.0761 16243040.3876 41.2301 -21.0366 5.1399 run56.mat 51 4 1938 218547 223504 +942969 962775 19807 16247075.6563 16248067.4342 41.2316 -21.0355 4.8668 run56.mat 61 4 1939 243686 248637 +1045382 1065161 19780 16252195.0984 16253185.1706 41.2268 -21.0367 4.6609 run56.mat 71 4 1940 269291 274236 +1145907 1165727 19821 16257222.6434 16258213.7508 41.2334 -21.0363 4.4566 run56.mat 81 4 1941 294423 299379 +1248285 1268085 19801 16262342.8834 16263331.2443 41.2289 -21.0369 4.2951 run56.mat 91 4 1942 320019 324969 +1350719 1370571 19853 16267464.3243 16268455.4054 41.2337 -21.0368 4.1589 run56.mat 101 4 1943 345628 350592 +1453136 1472968 19833 16272582.7619 16273574.7107 41.2303 -21.0361 4.0285 run56.mat 111 4 1944 371233 376192 +1557857 1571315 13459 16277819.3602 16278492.4755 41.2351 -21.0341 3.9261 run56.mat 121 4 1945 397415 400780 +1571566 1575044 3479 16278505.1293 16278680.0468 41.2316 -21.0315 3.8567 run56.mat 121 4 1945 400843 401713 +1575305 1577472 2168 16278692.9958 16278800.5072 41.2385 -21.0284 3.8584 run56.mat 121 4 1945 401778 402319 +1661927 1681732 19806 16283023.6743 16284015.1459 41.2299 -21.0357 3.8384 run56.mat 131 4 1946 423434 428385 +1766755 1786229 19475 16288264.9702 16289238.3124 41.2319 -21.0376 3.727 run56.mat 141 4 1947 449642 454511 +1871196 1890741 19546 16293487.6356 16294463.3514 41.2283 -21.0361 3.6547 run56.mat 151 4 1948 475754 480640 +1977538 1996938 19401 16298804.634 16299773.9443 41.2293 -21.0368 3.5757 run56.mat 161 4 1949 502340 507190 +2083578 2103384 19807 16304108.4094 16305097.7559 41.2343 -21.0352 3.5305 run56.mat 171 4 1950 528851 533803 +2188518 2207270 18753 16309353.7265 16310290.0674 41.2263 -21.0359 3.4509 run56.mat 181 4 1951 555087 559776 +2207590 2207832 243 16310306.2029 16310318.4054 41.2271 -21.0507 3.541 run56.mat 181 4 1951 559856 559916 +2294963 2312414 17452 16314675.662 16315549.5365 41.2299 -21.0348 3.3834 run56.mat 191 4 1952 581700 586063 +2312722 2314492 1771 16315565.067 16315653.6163 41.2447 -21.0319 3.3558 run56.mat 191 4 1952 586140 586583 +2401494 2420528 19035 16320003.1559 16320955.1082 41.2295 -21.0358 3.3023 run56.mat 201 4 1953 608334 613092 +2509791 2529330 19540 16325419.2763 16326394.7838 41.2303 -21.0364 3.2353 run56.mat 211 4 1954 635409 640294 +2618395 2637923 19529 16330848.7354 16331823.611 41.2291 -21.0342 3.1739 run56.mat 221 4 1955 662561 667444 +304045 304979 935 16396912.101 16396959.1871 41.2226 0.037338 8.171 run57.mat 1 3 1957 86332 86566 +305242 305931 690 16396972.4459 16397007.1807 41.2452 0.0079639 8.2888 run57.mat 1 3 1957 86631 86804 +306441 306806 366 16397032.8915 16397051.2924 41.2216 0.020105 7.7474 run57.mat 1 3 1957 86931 87022 +307061 313530 6470 16397064.1478 16397386.2461 41.2266 -0.010924 8.5262 run57.mat 1 3 1957 87086 88703 +313839 320138 6300 16397401.8269 16397718.4726 41.2278 -0.0061516 8.233 run57.mat 1 3 1957 88781 90356 +320391 323112 2722 16397731.125 16397867.152 41.2292 -0.0050483 7.8406 run57.mat 1 3 1957 90419 91099 +323470 324729 1260 16397884.9135 16397947.3763 41.229 0.0023828 8.4403 run57.mat 1 3 1957 91189 91503 +325056 327652 2597 16397963.5997 16398092.3951 41.2241 -0.0050984 7.9626 run57.mat 1 3 1957 91585 92234 +327990 328271 282 16398109.1643 16398123.3009 41.2197 -0.021973 6.5998 run57.mat 1 3 1957 92318 92389 +328521 330064 1544 16398135.9042 16398213.6921 41.2319 8.8295e-05 7.9668 run57.mat 1 3 1957 92451 92837 +330383 335060 4678 16398229.7739 16398464.7199 41.2295 -0.0044922 7.4777 run57.mat 1 3 1957 92917 94086 +335331 337324 1994 16398478.2726 16398577.9417 41.232 -0.013387 7.7294 run57.mat 1 3 1957 94154 94652 +337591 339201 1611 16398591.2943 16398671.4068 41.2215 -0.0054102 7.1442 run57.mat 1 3 1957 94719 95122 +339730 340343 614 16398697.6521 16398728.0649 41.2152 -0.0098521 6.4622 run57.mat 1 3 1957 95254 95407 +340665 344881 4217 16398744.0403 16398953.2251 41.224 -0.012642 7.0272 run57.mat 1 3 1957 95488 96542 +345132 348141 3010 16398965.6804 16399114.9956 41.232 0.010689 7.0395 run57.mat 1 3 1957 96604 97356 +348670 349792 1123 16399141.5728 16399198.148 41.2376 -0.022524 6.4506 run57.mat 1 3 1957 97489 97769 +350130 352098 1969 16399215.1912 16399314.4248 41.2253 -0.03023 6.5276 run57.mat 1 3 1957 97854 98346 +352543 352812 270 16399336.8633 16399350.4272 41.207 -0.022896 6.9179 run57.mat 1 3 1957 98457 98524 +353150 354430 1281 16399367.4704 16399431.5126 41.2207 -0.0069802 6.489 run57.mat 1 3 1957 98609 98929 +354681 355228 548 16399444.0652 16399471.4209 41.2151 -0.022553 6.7745 run57.mat 1 3 1957 98992 99129 +355491 356332 842 16399484.5737 16399526.6324 41.2276 -0.01489 6.7954 run57.mat 1 3 1957 99194 99405 +356670 357630 961 16399543.5359 16399591.5459 41.2194 -0.0094717 6.4631 run57.mat 1 3 1957 99489 99729 +357892 358052 161 16399604.6487 16399612.6503 41.2055 -0.039013 6.6381 run57.mat 1 3 1957 99795 99835 +358390 361321 2932 16399629.5536 16399776.1318 41.2309 -0.011112 6.2804 run57.mat 1 3 1957 99919 100652 +361573 361838 266 16399788.7342 16399801.9867 41.1958 0.028797 5.4777 run57.mat 1 3 1957 100714 100781 +362093 364470 2378 16399814.7392 16399933.6261 41.2307 -0.0040168 6.0611 run57.mat 1 3 1957 100844 101439 +364731 367010 2280 16399946.6815 16400060.679 41.2234 0.0054131 6.1596 run57.mat 1 3 1957 101504 102074 +367261 368509 1249 16400073.2343 16400135.6547 41.2322 0.01016 6.2832 run57.mat 1 3 1957 102137 102449 +368804 369812 1009 16400150.4076 16400200.8173 41.226 0.016433 6.2487 run57.mat 1 3 1957 102523 102775 +370191 370627 437 16400219.7709 16400241.5751 41.2229 -0.0085437 7.4522 run57.mat 1 3 1957 102869 102978 +370882 372447 1566 16400254.3276 16400332.5926 41.2375 -0.0010105 7.4452 run57.mat 1 3 1957 103042 103433 +372770 381701 8932 16400348.7457 16400794.81 41.2326 -0.0061288 7.3142 run57.mat 1 3 1957 103514 105747 +382017 382612 596 16400810.7438 16400840.7459 41.2155 -0.019523 7.4846 run57.mat 1 3 1957 105826 105975 +382950 395892 12943 16400857.789 16401504.1117 41.2261 -0.0031687 7.3469 run57.mat 1 3 1957 106059 109295 +396230 400106 3877 16401520.8809 16401714.687 41.221 -0.0014712 7.3418 run57.mat 1 3 1957 109379 110348 +466043 466820 778 16405013.6256 16405052.1826 41.2282 0.038163 8.9756 run57.mat 1 3 1958 126833 127028 +467208 469491 2284 16405071.4363 16405185.059 41.2228 -0.0018445 9.5272 run57.mat 1 3 1958 127125 127696 +469742 470673 932 16405197.6116 16405244.1713 41.2254 -0.022233 9.5813 run57.mat 1 3 1958 127758 127991 +470993 471121 129 16405260.1746 16405266.576 41.2612 0.0040849 10.5396 run57.mat 1 3 1958 128071 128103 +471371 479888 8518 16405279.0786 16405704.5124 41.2266 0.0028738 9.8844 run57.mat 1 3 1958 128165 130295 +480191 482531 2341 16405719.5451 16405835.6396 41.2267 -0.019932 9.8923 run57.mat 1 3 1958 130370 130955 +482782 489069 6288 16405848.0925 16406162.4497 41.2284 -0.010687 9.4916 run57.mat 1 3 1958 131018 132590 +489378 491655 2278 16406178.0274 16406292.8187 41.2269 -0.0016542 9.3561 run57.mat 1 3 1958 132668 133237 +491961 494771 2811 16406308.2452 16406448.8287 41.2284 -0.0052764 9.0527 run57.mat 1 3 1958 133313 134015 +495024 496294 1271 16406461.3808 16406524.3894 41.2271 -0.0097741 8.9801 run57.mat 1 3 1958 134079 134396 +496560 501939 5380 16406537.5864 16406805.8334 41.2284 -0.012745 8.9612 run57.mat 1 3 1958 134463 135808 +502194 503814 1621 16406818.5859 16406899.6029 41.229 0.007234 8.7129 run57.mat 1 3 1958 135871 136277 +504085 508849 4765 16406913.1581 16407151.4498 41.2247 0.0051422 8.0942 run57.mat 1 3 1958 136344 137536 +509102 509571 470 16407164.1025 16407187.5574 41.2114 0.03055 7.6612 run57.mat 1 3 1958 137599 137716 +509822 510369 548 16407200.11 16407227.4657 41.2325 0.023165 7.991 run57.mat 1 3 1958 137779 137916 +510621 511809 1189 16407240.0683 16407299.4807 41.2246 0.006685 8.1709 run57.mat 1 3 1958 137978 138275 +512079 513905 1827 16407312.9835 16407404.2561 41.2212 -0.0065211 8.3476 run57.mat 1 3 1958 138343 138799 +514169 519092 4924 16407417.4089 16407663.0625 41.223 0.0048988 7.8443 run57.mat 1 3 1958 138865 140096 +519430 519940 511 16407680.2299 16407706.1334 41.2216 0.076832 7.1098 run57.mat 1 3 1958 140181 140308 +520195 523111 2917 16407719.0852 16407867.1922 41.2272 -0.0093069 7.4508 run57.mat 1 3 1958 140372 141101 +523361 524692 1332 16407879.89 16407946.461 41.2373 -0.019883 7.2305 run57.mat 1 3 1958 141164 141496 +525030 526994 1965 16407963.2302 16408060.6702 41.2263 -0.0067163 7.4416 run57.mat 1 3 1958 141581 142072 +527262 527651 390 16408073.9665 16408093.2659 41.2199 0.027935 6.7666 run57.mat 1 3 1958 142138 142236 +527901 529777 1877 16408105.6692 16408199.1192 41.2319 0.0031727 7.2554 run57.mat 1 3 1958 142298 142767 +530032 530692 661 16408211.8745 16408244.8883 41.2203 0.012332 7.2227 run57.mat 1 3 1958 142831 142996 +531092 532599 1508 16408264.8966 16408340.278 41.222 -0.016233 6.8906 run57.mat 1 3 1958 143096 143473 +533170 533721 552 16408368.8399 16408396.4007 41.2389 -0.012994 7.4208 run57.mat 1 3 1958 143616 143754 +533971 535308 1338 16408408.9031 16408475.7659 41.2172 -0.031764 6.9803 run57.mat 1 3 1958 143816 144150 +535571 535799 229 16408488.9184 16408500.3206 41.2542 0.01425 7.2275 run57.mat 1 3 1958 144216 144273 +536058 537652 1595 16408513.2731 16408592.9885 41.2145 0.0048256 6.7518 run57.mat 1 3 1958 144338 144736 +537990 539069 1080 16408609.8917 16408663.9397 41.2215 -0.0041399 6.5833 run57.mat 1 3 1958 144821 145091 +539323 540059 737 16408676.7447 16408713.849 41.228 0.0058888 6.768 run57.mat 1 3 1958 145154 145338 +540372 540670 299 16408729.6284 16408744.6515 41.1868 0.024489 7.1289 run57.mat 1 3 1958 145417 145491 +540921 542811 1891 16408757.3053 16408852.5866 41.2226 0.0062844 6.6522 run57.mat 1 3 1958 145554 146026 +543113 543659 547 16408867.8115 16408895.3372 41.2319 0.010276 6.8271 run57.mat 1 3 1958 146102 146238 +543929 544715 787 16408908.8555 16408947.8591 41.2501 -0.0036844 6.7858 run57.mat 1 3 1958 146306 146502 +545183 546359 1177 16408971.0826 16409029.4391 41.2059 -0.0176 6.7203 run57.mat 1 3 1958 146619 146913 +546612 546849 238 16409041.9936 16409053.7543 41.2491 0.0067186 6.3571 run57.mat 1 3 1958 146976 147036 +547110 547740 631 16409066.7058 16409097.9682 41.2366 -0.01956 6.7623 run57.mat 1 3 1958 147101 147258 +548243 548329 87 16409122.9285 16409127.1961 41.3014 -0.063113 6.1286 run57.mat 1 3 1958 147384 147406 +548631 548712 82 16409142.1822 16409146.2017 41.2753 -0.045282 5.7296 run57.mat 1 3 1958 147481 147501 +549050 549719 670 16409163.1331 16409196.8596 41.21 -0.0034159 6.8088 run57.mat 1 3 1958 147586 147753 +549973 550144 172 16409209.6647 16409218.2853 41.2045 -0.014278 6.8682 run57.mat 1 3 1958 147817 147859 +550456 550592 137 16409234.0143 16409240.8705 41.2053 0.036593 7.0804 run57.mat 1 3 1958 147937 147971 +551170 551342 173 16409270.0095 16409278.6806 41.2234 0.073819 6.027 run57.mat 1 3 1958 148116 148159 +551602 551930 329 16409291.7881 16409308.3237 41.214 -0.0019205 6.7159 run57.mat 1 3 1958 148224 148306 +552650 553112 463 16409344.6213 16409367.9123 41.252 0.031543 6.5732 run57.mat 1 3 1958 148486 148601 +553777 554468 692 16409401.4372 16409435.7446 41.248 -0.0009156 6.457 run57.mat 1 3 1958 148768 148941 +554781 556150 1370 16409451.2735 16409519.1937 41.2321 -0.0071938 6.2675 run57.mat 1 3 1958 149019 149361 +556406 557348 943 16409531.8946 16409578.6301 41.2168 -0.0014258 6.1091 run57.mat 1 3 1958 149425 149661 +557655 557678 24 16409593.8613 16409595.0024 41.2226 -0.01499 3.97 run57.mat 1 3 1958 149737 149743 +558112 558499 388 16409616.5344 16409635.7347 41.214 -0.030811 5.6625 run57.mat 1 3 1958 149852 149948 +558751 559038 288 16409648.2372 16409662.478 41.2336 0.0022502 5.7055 run57.mat 1 3 1958 150011 150083 +559304 559990 687 16409675.6776 16409709.7189 41.2221 -0.012006 5.9284 run57.mat 1 3 1958 150150 150321 +560291 560546 256 16409724.6554 16409737.3092 41.2 -0.033478 5.8088 run57.mat 1 3 1958 150397 150460 +560853 562092 1240 16409752.5435 16409814.0262 41.2308 -0.0065631 6.1847 run57.mat 1 3 1958 150537 150847 +630266 633842 3577 16413224.2939 16413401.7101 41.2263 0.0012928 8.5807 run57.mat 1 3 1959 167891 168785 +700491 720579 20089 16416734.1116 16417739.1291 41.2241 0.00053742 9.7783 run57.mat 11 3 1960 185448 190470 +720841 721946 1106 16417752.3401 16417808.0581 41.2243 -0.0089568 9.7921 run57.mat 11 3 1960 190536 190812 +722218 733818 11601 16417821.7733 16418401.3501 41.2235 -0.0047578 9.759 run57.mat 11 3 1960 190880 193780 +734154 734270 117 16418418.0234 16418423.7797 41.1735 -0.017617 14.5241 run57.mat 11 3 1960 193864 193893 +734527 758297 23771 16418436.5328 16419624.6816 41.2266 -0.00023834 9.7673 run57.mat 11 3 1960 193957 199900 +758576 761931 3356 16419638.7469 16419806.9717 41.2183 -0.0045441 9.8009 run57.mat 11 3 1960 199969 200808 +762234 768757 6524 16419822.1246 16420147.6058 41.2218 -0.003528 9.7863 run57.mat 11 3 1960 200884 202515 +769077 771981 2905 16420163.5486 16420309.4565 41.2302 0.0079658 9.7991 run57.mat 11 3 1960 202595 203321 +772231 773447 1217 16420322.0599 16420383.3626 41.2345 -0.0014015 9.6333 run57.mat 11 3 1960 203384 203687 +773707 773844 138 16420396.4701 16420403.3767 41.2572 -0.046814 12.6202 run57.mat 11 3 1960 203752 203787 +774151 776781 2631 16420418.8536 16420550.6899 41.2239 -0.0053542 9.8236 run57.mat 11 3 1960 203863 204521 +777031 796551 19521 16420563.1951 16421538.049 41.2253 -0.0087354 9.753 run57.mat 11 3 1960 204583 209464 +862560 891547 28988 16424839.7938 16426289.0085 41.2252 -0.0022031 9.7723 run57.mat 11 3 1961 225967 233214 +891807 897082 5276 16426301.9079 16426564.334 41.2235 -0.013884 9.7508 run57.mat 11 3 1961 233279 234598 +965150 989420 24271 16429968.6409 16431182.8923 41.2259 -0.0013052 10.9727 run57.mat 21 3 1962 251616 257683 +989673 993278 3606 16431195.6469 16431375.4994 41.2316 -0.0064669 11.1105 run57.mat 21 3 1962 257746 258648 +993531 994961 1431 16431388.054 16431459.0147 41.2193 -0.0105 11.1441 run57.mat 21 3 1962 258711 259069 +995242 996109 868 16431472.9587 16431516.0517 41.2295 -0.0053382 11.2233 run57.mat 21 3 1962 259139 259356 +996413 1023109 26697 16431531.2547 16432866.3707 41.2241 -0.0025983 10.953 run57.mat 21 3 1962 259432 266106 +1023361 1033160 9800 16432878.9733 16433367.0212 41.2305 -0.0044274 10.9565 run57.mat 21 3 1962 266169 268619 +1033413 1035232 1820 16433379.6736 16433470.6411 41.2239 -0.0071399 11.0202 run57.mat 21 3 1962 268682 269137 +1035570 1060855 25286 16433487.5443 16434752.3374 41.2282 -0.0037866 10.9723 run57.mat 21 3 1962 269221 275543 +1061122 1061211 90 16434765.5867 16434770.0032 41.2101 0.023676 10.778 run57.mat 21 3 1962 275610 275632 +1129241 1131971 2731 16438173.3655 16438311.6158 41.2242 -0.0083575 11.1981 run57.mat 21 3 1963 292640 293323 +1132221 1135877 3657 16438324.0191 16438505.4042 41.223 -0.0057237 10.9299 run57.mat 21 3 1963 293385 294299 +1203597 1261612 58016 16441890.1196 16444792.686 41.2257 -0.0032479 9.9984 run57.mat 31 3 1964 311230 325734 +1261950 1299629 37680 16444809.5925 16446691.9735 41.2276 -0.0045176 10.0029 run57.mat 31 3 1964 325819 335239 +1367622 1374316 6695 16450093.4552 16450427.5844 41.2264 -0.0044191 10.069 run57.mat 31 3 1965 352238 353912 +1441980 1538009 96030 16453808.6383 16458609.9912 41.2274 -0.00357 9.2752 run57.mat 41 3 1966 370828 394837 +1606085 1612829 6745 16462014.7117 16462352.935 41.2216 -0.0056434 9.3386 run57.mat 41 3 1967 411857 413542 +1680232 1776210 95979 16465723.4569 16470522.3193 41.2264 -0.0041022 8.7096 run57.mat 51 3 1968 430394 454390 +1844323 1851109 6787 16473928.9072 16474266.3158 41.2276 -0.0030836 8.7361 run57.mat 51 3 1969 471418 473115 +1920563 2016528 95966 16477740.5229 16482537.9399 41.2272 -0.0038781 8.2448 run57.mat 61 3 1970 490480 514472 +2084637 2091413 6777 16485942.1699 16486282.3663 41.2254 -0.0047869 8.2766 run57.mat 61 3 1971 531499 533194 +2158950 2197141 38192 16489658.1927 16491567.5669 41.226 -0.0038799 7.8608 run57.mat 71 3 1972 550079 559627 +2197401 2254948 57548 16491580.5723 16494459.666 41.2262 -0.0023965 7.8562 run57.mat 71 3 1972 559692 574079 +2324915 2325199 285 16497958.8657 16497973.0712 41.2158 -0.017191 8.3934 run57.mat 71 3 1973 591572 591643 +2325529 2331698 6170 16497989.5775 16498296.1147 41.2246 -0.0024258 7.8597 run57.mat 71 3 1973 591725 593268 +2401277 2471243 69967 16501775.4676 16505273.8366 41.2264 -0.0043995 7.5276 run57.mat 81 3 1974 610663 628156 +2471493 2490013 18521 16505286.4425 16506211.8855 41.2279 -0.0023015 7.5243 run57.mat 81 3 1974 628218 632848 +2490263 2497267 7005 16506224.2887 16506573.799 41.2293 -0.0034914 7.5293 run57.mat 81 3 1974 632911 634661 +2567234 2573990 6757 16510074.0988 16510412.015 41.2261 -0.0074468 7.5605 run57.mat 81 3 1975 652154 653844 +2643378 2739367 95990 16513883.3088 16518679.6185 41.2274 -0.0028564 7.2459 run57.mat 91 3 1976 671191 695190 +2809510 2816309 6800 16522188.1374 16522527.0098 41.2219 -0.0050763 7.2721 run57.mat 91 3 1977 712726 714426 +2885697 2981687 95991 16525997.1449 16530796.3783 41.2283 -0.0035383 6.9966 run57.mat 101 3 1978 731774 755772 +3051839 3058627 6789 16534302.6244 16534643.9167 41.2264 -0.0032836 7.0312 run57.mat 101 3 1979 773311 775008 +3127988 3133135 5148 16538112.0975 16538369.4661 41.2186 -0.004939 6.7986 run57.mat 111 3 1980 792349 793636 +3133386 3150625 17240 16538381.9214 16539245.2098 41.226 -0.0045373 6.7724 run57.mat 111 3 1980 793699 798009 +3150877 3169995 19119 16539257.9165 16540211.0369 41.2296 -0.0027896 6.7829 run57.mat 111 3 1980 798072 802851 +3170248 3209746 39499 16540223.6918 16542200.5606 41.2271 -0.0025304 6.7759 run57.mat 111 3 1980 802915 812789 +3209996 3223986 13991 16542212.9639 16542909.7167 41.2248 -0.0027874 6.7823 run57.mat 111 3 1980 812852 816349 +3293942 3300757 6816 16546411.1573 16546751.9761 41.2216 -0.0036743 6.813 run57.mat 111 3 1981 833839 835543 +3370098 3390168 20071 16550218.8853 16551221.2912 41.2287 -0.0038819 6.5931 run57.mat 121 3 1982 852879 857897 +3390418 3466086 75669 16551233.8945 16555018.5232 41.2258 -0.0024177 6.5822 run57.mat 121 3 1982 857959 876877 +3538319 3545137 6819 16558627.0894 16558970.0662 41.2227 -0.004796 6.5972 run57.mat 121 3 1983 894936 896641 +3616318 3679286 62969 16562531.0696 16565677.5035 41.2242 -0.0019914 6.4021 run57.mat 131 3 1984 914437 930180 +3679612 3683665 4054 16565693.6773 16565896.2358 41.2311 -0.0049585 6.4003 run57.mat 131 3 1984 930261 931275 +3684001 3705147 21147 16565913.039 16566968.7233 41.2302 -0.0030059 6.4139 run57.mat 131 3 1984 931359 936645 +3705472 3712285 6814 16566985.1109 16567326.7394 41.2306 -0.0018358 6.4241 run57.mat 131 3 1984 936726 938430 +3782458 3789319 6862 16570836.8954 16571181.0807 41.2262 -0.0027242 6.417 run57.mat 131 3 1985 955974 957689 +3858621 3954565 95945 16574644.2824 16579442.4295 41.2272 -0.0041264 6.2431 run57.mat 141 3 1986 975016 999002 +4026777 4033663 6887 16583051.7034 16583397.0107 41.2293 -0.0026051 6.2705 run57.mat 141 3 1987 1017056 1018778 +4102938 4163628 60691 16586860.6198 16589895.554 41.2267 -0.003492 6.0918 run57.mat 151 3 1988 1036097 1051271 +4163878 4198883 35006 16589908.0093 16591657.3902 41.2289 -0.0028863 6.0961 run57.mat 151 3 1988 1051333 1060085 +4268870 4275750 6881 16595156.9663 16595499.9336 41.2264 -0.003166 6.1133 run57.mat 151 3 1989 1077582 1079302 +4345013 4387266 42254 16598963.6247 16601077.0183 41.2273 -0.0028347 5.9548 run57.mat 161 3 1990 1096619 1107182 +4387522 4396888 9367 16601089.7192 16601557.6618 41.2302 -0.0022414 5.9556 run57.mat 161 3 1990 1107246 1109588 +4397141 4440964 43824 16601570.4164 16603762.314 41.2289 -0.0031472 5.9573 run57.mat 161 3 1990 1109651 1120608 +4511097 4517974 6878 16607268.1153 16607612.8994 41.2272 -0.0051969 5.9865 run57.mat 161 3 1991 1138141 1139861 +4589121 4685062 95942 16611169.9754 16615966.5502 41.2285 -0.0030314 5.8278 run57.mat 171 3 1992 1157648 1181634 +4755249 4762142 6894 16619475.8631 16619821.8113 41.222 -0.0041473 5.8292 run57.mat 171 3 1993 1199183 1200905 +4833458 4929403 95946 16623388.2415 16628184.7011 41.228 -0.0026965 5.7124 run57.mat 181 3 1994 1218736 1242723 +4999339 5006245 6907 16631680.7206 16632027.3307 41.2301 -0.0043268 5.7398 run57.mat 181 3 1995 1260207 1261934 +5077577 5173523 95947 16635593.9444 16640391.5204 41.2275 -0.0027317 5.6023 run57.mat 191 3 1996 1279768 1303755 +5245547 5252448 6902 16643992.8934 16644337.2938 41.226 -0.0033806 5.6122 run57.mat 191 3 1997 1321762 1323487 +5323745 5419682 95938 16647904.3716 16652699.5153 41.228 -0.0027285 5.4577 run57.mat 201 3 1998 1341312 1365298 +5491738 5498653 6916 16656300.8708 16656646.7 41.2247 -0.0025469 5.4833 run57.mat 201 3 1999 1383313 1385041 +5569957 5665882 95926 16660212.7927 16665009.3512 41.228 -0.0028483 5.322 run57.mat 211 3 2000 1402868 1426851 +5736056 5742993 6938 16668518.9242 16668865.201 41.2245 -0.0020328 5.338 run57.mat 211 3 2001 1444395 1446129 +5814250 5906842 92593 16672426.7156 16677057.634 41.2274 -0.0024683 5.2009 run57.mat 221 3 2002 1463944 1487093 +5907093 5910200 3108 16677070.2878 16677226.9222 41.2359 0.00013021 5.2016 run57.mat 221 3 2002 1487156 1487933 +5982225 5989150 6926 16680829.4219 16681173.0139 41.2297 -0.0016289 5.2207 run57.mat 221 3 2003 1505940 1507671 +262663 301032 38370 -22204.3267 -20285.477 41.2289 -21.0379 4.4291 run58.mat 1 4 2005 1 1 +379136 404096 24961 -16379.4632 -15131.2032 41.2296 -21.0387 5.7361 run58.mat 11 4 2006 1 1 +483775 503451 19677 -11146.423 -10162.418 41.2256 -21.0363 6.4562 run58.mat 21 4 2007 1 1 +582702 602435 19734 -6199.0423 -5212.1867 41.2289 -21.0366 5.886 run58.mat 31 4 2008 1 1 +681103 700925 19823 -1277.9671 -286.6606 41.2281 -21.0359 5.4531 run58.mat 41 4 2009 1 1 +781753 801572 19820 3751.7476 4743.1129 41.2309 -21.037 5.1261 run58.mat 51 4 2010 1 1 +882202 901999 19798 8778.4969 9764.6478 41.2258 -21.0355 4.877 run58.mat 61 4 2011 1 1 +982706 1002490 19785 13802.0528 14789.4966 41.2306 -21.0367 4.6379 run58.mat 71 4 2012 1 1 +1085116 1104916 19801 18922.1767 19912.5328 41.2294 -21.0373 4.4608 run58.mat 81 4 2013 1 1 +1188080 1207550 19471 24069.84 25044.6989 41.2313 -21.0358 4.2754 run58.mat 91 4 2014 1 1 +1290416 1295063 4648 29186.613 29419.3307 41.2242 -21.0384 4.3023 run58.mat 101 4 2015 1 1 +1295315 1309960 14646 29432.0349 30163.7013 41.2276 -21.0382 4.0905 run58.mat 101 4 2015 1 1 +1392828 1412337 19510 34307.4803 35283.2012 41.2322 -21.0366 4.0184 run58.mat 111 4 2016 1 1 +1497304 1516845 19542 39532.3995 40510.3312 41.2314 -21.0361 3.9027 run58.mat 121 4 2017 1 1 +1603689 1623152 19464 44852.1583 45826.6556 41.2325 -21.035 3.8222 run58.mat 131 4 2018 1 1 +1707632 1727468 19837 50049.1139 51038.8137 41.2292 -21.0341 3.755 run58.mat 141 4 2019 1 1 +1812410 1825353 12944 55286.6813 55933.6406 41.2305 -21.0368 3.6643 run58.mat 151 4 2020 1 1 +1825660 1831942 6283 55948.9327 56264.673 41.2288 -21.0339 3.5958 run58.mat 151 4 2020 1 1 +1918444 1938297 19854 60589.1664 61581.6095 41.2271 -21.0368 3.5905 run58.mat 161 4 2021 1 1 +2024814 2044576 19763 65908.0756 66895.3045 41.2263 -21.0391 3.5295 run58.mat 171 4 2022 1 1 +2131761 2151191 19431 71255.4354 72226.2997 41.2269 -21.0364 3.4445 run58.mat 181 4 2023 1 1 +2238041 2257537 19497 76570.1956 77543.2951 41.2297 -21.0345 3.3859 run58.mat 191 4 2024 1 1 +2346703 2366014 19312 82001.7815 82966.7021 41.2266 -21.0371 3.3068 run58.mat 201 4 2025 1 1 +2453169 2472530 19362 87327.1892 88292.2705 41.231 -21.0338 3.2387 run58.mat 211 4 2026 1 1 +2561762 2581075 19314 92755.5398 93720.5489 41.234 -21.0341 3.1683 run58.mat 221 4 2027 1 1 +327183 365375 38193 166950.41 168861.6767 41.23 -21.039 4.4359 run59.mat 1 4 2029 1 1 +461648 486367 24720 173675.8019 174910.0975 41.2294 -21.0383 5.7654 run59.mat 11 4 2030 1 1 +564329 584053 19725 178808.9564 179793.4098 41.2298 -21.0381 6.4297 run59.mat 21 4 2031 1 1 +663052 682809 19758 183745.2675 184730.8231 41.2282 -21.0365 5.887 run59.mat 31 4 2032 1 1 +761733 781518 19786 188676.9771 189668.7779 41.2287 -21.0392 5.4642 run59.mat 41 4 2033 1 1 +862228 882031 19804 193704.737 194692.9585 41.2278 -21.0356 5.1265 run59.mat 51 4 2034 1 1 +962679 982469 19791 198724.8276 199714.2993 41.2291 -21.0349 4.8631 run59.mat 61 4 2035 1 1 +1065123 1084891 19769 203850.6115 204835.959 41.2306 -21.0366 4.6627 run59.mat 71 4 2036 1 1 +1167803 1187310 19508 208983.4783 209956.4158 41.2249 -21.0352 4.4484 run59.mat 81 4 2037 1 1 +1270109 1289654 19546 214095.6091 215073.1091 41.2281 -21.0353 4.2698 run59.mat 91 4 2038 1 1 +1372487 1392036 19550 219218.8223 220192.5672 41.2252 -21.0367 4.1318 run59.mat 101 4 2039 1 1 +1475158 1494702 19545 224352.684 225326.5203 41.2264 -21.0379 4.0085 run59.mat 111 4 2040 1 1 +1577273 1597104 19832 229456.1334 230447.1218 41.2301 -21.0371 3.9307 run59.mat 121 4 2041 1 1 +1682080 1701625 19546 234699.3677 235674.98 41.2339 -21.0363 3.8128 run59.mat 131 4 2042 1 1 +1786055 1805874 19820 239896.3586 240886.3233 41.2299 -21.0368 3.7407 run59.mat 141 4 2043 1 1 +1890760 1910333 19574 245130.6741 246109.6169 41.2259 -21.0375 3.652 run59.mat 151 4 2044 1 1 +1997195 2015905 18711 250451.7237 251387.9742 41.2254 -21.0366 3.5794 run59.mat 161 4 2045 1 1 +2016158 2016694 537 251400.5263 251427.1189 41.2229 -21.0252 3.6249 run59.mat 161 4 2045 1 1 +2103200 2123005 19806 255752.3051 256740.9115 41.2296 -21.0367 3.522 run59.mat 171 4 2046 1 1 +2210195 2229610 19416 261102.9986 262073.0726 41.2299 -21.0352 3.4379 run59.mat 181 4 2047 1 1 +2316734 2336174 19441 266430.6884 267401.2679 41.228 -21.0382 3.3812 run59.mat 191 4 2048 1 1 +2423136 2442604 19469 271751.9113 272722.1792 41.2289 -21.036 3.3102 run59.mat 201 4 2049 1 1 +2531720 2551041 19322 277178.8713 278144.9258 41.231 -21.0369 3.2372 run59.mat 211 4 2050 1 1 +2640229 2659739 19511 282606.2023 283580.1361 41.2299 -21.0352 3.1717 run59.mat 221 4 2051 1 1 +270951 291396 20446 12744540.0474 12745563.1044 82.4637 -40.3871 92.8532 run6.mat -1 -1 2053 160475 170698 +291704 312396 20693 12745578.3882 12746613.4493 80.8132 -40.3886 92.5813 run6.mat -1 -1 2053 170852 181199 +312702 333398 20697 12746628.8758 12747660.5407 79.1657 -40.3873 92.5943 run6.mat -1 -1 2053 181352 191700 +333704 354377 20674 12747675.8439 12748711.7988 77.5099 -40.388 92.5915 run6.mat -1 -1 2053 191853 202190 +354683 366776 12094 12748727.0064 12749331.8743 75.8615 -40.3872 92.8193 run6.mat -1 -1 2053 202343 208390 +450840 458476 7637 12753533.5721 12753917.0296 75.8621 -40.3883 93.7045 run6.mat -1 -1 2054 250424 254242 +458806 479498 20693 12753933.5365 12754966.5717 74.2151 -40.3878 92.5521 run6.mat -1 -1 2054 254407 264753 +479804 500479 20676 12754981.848 12756015.8041 72.5697 -40.3877 92.6486 run6.mat -1 -1 2054 264907 275244 +500784 521476 20693 12756031.0573 12757068.2308 70.9171 -40.3876 92.6191 run6.mat -1 -1 2054 275397 285743 +521782 542453 20672 12757083.5926 12758116.9861 69.2669 -40.3875 92.6834 run6.mat -1 -1 2054 285896 296232 +542762 546655 3894 12758132.3165 12758325.46 67.6226 -40.3872 92.7877 run6.mat -1 -1 2054 296387 298333 +630744 646555 15812 12762527.8042 12763320.5706 67.6247 -40.3883 93.0694 run6.mat -1 -1 2055 340379 348285 +646874 667560 20687 12763336.5267 12764370.8802 65.9712 -40.387 92.5165 run6.mat -1 -1 2055 348445 358788 +667866 688537 20672 12764386.3098 12765419.2294 64.3217 -40.3878 92.6601 run6.mat -1 -1 2055 358941 369277 +688848 709539 20692 12765434.7827 12766469.6399 62.6745 -40.3874 92.5515 run6.mat -1 -1 2055 369433 379779 +709845 726533 16689 12766484.9431 12767320.7586 61.0235 -40.3873 92.7722 run6.mat -1 -1 2055 379932 388276 +810762 813803 3042 12771531.1504 12771683.2297 61.0301 -40.3883 95.3364 run6.mat -1 -1 2056 430393 431913 +814115 834816 20702 12771698.8327 12772733.7469 59.3759 -40.3867 92.5595 run6.mat -1 -1 2056 432069 442420 +835124 855801 20678 12772749.2742 12773783.748 57.7252 -40.3868 92.545 run6.mat -1 -1 2056 442574 452913 +856106 876800 20695 12773798.9226 12774831.9063 56.0765 -40.389 92.6072 run6.mat -1 -1 2056 453066 463413 +877105 897780 20676 12774847.1593 12775881.2158 54.4236 -40.3887 92.6296 run6.mat -1 -1 2056 463566 473904 +898087 906575 8489 12775896.5688 12776322.9909 52.7756 -40.3873 92.8657 run6.mat -1 -1 2056 474057 478301 +990788 1002098 11311 12780533.418 12781097.4627 52.7742 -40.3883 93.2063 run6.mat -1 -1 2057 520410 526064 +1002422 1023100 20679 12781113.7999 12782149.2598 51.1269 -40.3877 92.5412 run6.mat -1 -1 2057 526226 536566 +1023406 1044079 20674 12782164.4414 12783196.1929 49.4725 -40.3882 92.5495 run6.mat -1 -1 2057 536719 547056 +1044388 1065081 20694 12783211.5264 12784247.4656 47.8253 -40.3877 92.6285 run6.mat -1 -1 2057 547210 557557 +1065385 1086040 20656 12784262.6719 12785296.6428 46.1775 -40.3878 92.6782 run6.mat -1 -1 2057 557709 568037 +1086346 1086574 229 12785311.946 12785323.3484 44.5467 -40.3961 90.5068 run6.mat -1 -1 2057 568190 568304 +1170677 1190317 19641 12789528.927 12790507.907 44.5283 -40.3866 92.9296 run6.mat -1 -1 2058 610358 620179 +1190626 1211300 20675 12790523.3635 12791557.7652 42.8788 -40.3883 92.5984 run6.mat -1 -1 2058 620333 630670 +1211607 1232300 20694 12791572.9964 12792607.6263 41.2282 -40.3877 92.6699 run6.mat -1 -1 2058 630824 641171 +1232608 1253281 20674 12792623.1017 12793657.5448 39.5832 -40.387 92.6475 run6.mat -1 -1 2058 641325 651662 +1253588 1266433 12846 12793672.7759 12794314.0242 37.9322 -40.388 92.8766 run6.mat -1 -1 2058 651815 658238 +1350701 1357559 6859 12798527.9484 12798870.0994 37.9359 -40.3881 93.5894 run6.mat -1 -1 2059 700374 703803 +1357881 1378579 20699 12798886.3035 12799923.2421 36.2869 -40.3882 92.5327 run6.mat -1 -1 2059 703964 714313 +1378885 1399580 20696 12799938.4237 12800972.3667 34.6317 -40.3867 92.619 run6.mat -1 -1 2059 714466 724814 +1399887 1420566 20680 12800987.8467 12802022.3689 32.987 -40.388 92.6659 run6.mat -1 -1 2059 724968 735308 +1420880 1441541 20662 12802037.9474 12803068.8782 31.3356 -40.3866 92.6494 run6.mat -1 -1 2059 735465 745796 +1441846 1446493 4648 12803084.0101 12803315.9665 29.6951 -40.3857 92.8776 run6.mat -1 -1 2059 745948 748272 +1530622 1545780 15159 12807524.5732 12808281.7317 29.6872 -40.3879 93.1862 run6.mat -1 -1 2060 790338 797918 +1546103 1566764 20662 12808297.7567 12809333.4394 28.0356 -40.3875 92.5804 run6.mat -1 -1 2060 798079 808410 +1567072 1587776 20705 12809348.9667 12810381.4102 26.385 -40.3882 92.5787 run6.mat -1 -1 2060 808564 818917 +1588089 1608761 20673 12810396.9391 12811432.453 24.7406 -40.3879 92.6017 run6.mat -1 -1 2060 819073 829410 +1609067 1626373 17307 12811447.8355 12812313.2937 23.0839 -40.3882 92.8301 run6.mat -1 -1 2060 829563 838216 +1710675 1713041 2367 12816526.534 12816644.8833 23.0907 -40.3898 94.859 run6.mat -1 -1 2061 880369 881552 +1713361 1734062 20702 12816660.89 12817696.1543 21.4338 -40.3876 92.5768 run6.mat -1 -1 2061 881712 892063 +1734367 1755041 20675 12817711.4102 12818747.0048 19.786 -40.388 92.6673 run6.mat -1 -1 2061 892215 902553 +1755349 1776044 20696 12818762.2886 12819796.1151 18.1373 -40.388 92.6105 run6.mat -1 -1 2061 902707 913054 +1776350 1797022 20673 12819811.2997 12820845.0583 16.4874 -40.3881 92.684 run6.mat -1 -1 2061 913207 923544 +1797328 1806453 9126 12820860.4848 12821316.9407 14.8432 -40.3872 92.7721 run6.mat -1 -1 2061 923697 928260 +1890677 1901261 10585 12825528.8516 12826055.3853 14.8423 -40.3872 93.2594 run6.mat -1 -1 2062 970374 975666 +1901590 1922284 20695 12826072.1176 12827107.8732 13.1905 -40.387 92.5816 run6.mat -1 -1 2062 975830 986178 +1922591 1943261 20671 12827123.2262 12828155.819 11.5432 -40.3876 92.5394 run6.mat -1 -1 2062 986331 996667 +1943569 1964243 20675 12828171.1028 12829207.6721 9.8913 -40.3875 92.6117 run6.mat -1 -1 2062 996821 1007158 +1964554 1985222 20669 12829223.4713 12830253.7249 8.2486 -40.3878 92.6931 run6.mat -1 -1 2062 1007313 1017648 +1985527 1986472 946 12830269.0488 12830316.6895 6.599 -40.3867 91.3889 run6.mat -1 -1 2062 1017801 1018273 +2070426 2089342 18917 12834514.0013 12835460.4211 6.5936 -40.3882 93.0789 run6.mat -1 -1 2063 1060252 1069710 +2089665 2110342 20678 12835476.4461 12836512.3028 4.9472 -40.3878 92.5327 run6.mat -1 -1 2063 1069872 1080211 +2110648 2131324 20677 12836527.6057 12837561.1274 3.2976 -40.3873 92.5619 run6.mat -1 -1 2063 1080364 1090703 +2131631 2152304 20674 12837576.6044 12838608.6854 1.651 -40.3879 92.5433 run6.mat -1 -1 2063 1090856 1101193 +2152614 2166312 13699 12838624.3136 12839308.5614 -0.0017059 -40.3865 92.8146 run6.mat -1 -1 2063 1101348 1108197 +2250615 2256621 6007 12843522.9532 12843824.9031 0.0041097 -40.3846 93.5945 run6.mat -1 -1 2064 1150351 1153354 +2256943 2277623 20681 12843840.8817 12844874.5124 -1.6477 -40.3873 92.5431 run6.mat -1 -1 2064 1153515 1163855 +2277933 2298623 20691 12844890.0154 12845926.8205 -3.2962 -40.3882 92.5847 run6.mat -1 -1 2064 1164010 1174356 +2298930 2319602 20673 12845942.1735 12846975.1906 -4.9444 -40.3886 92.6288 run6.mat -1 -1 2064 1174509 1184846 +2319913 2340583 20671 12846990.8691 12848023.9155 -6.5955 -40.3879 92.6338 run6.mat -1 -1 2064 1185001 1195336 +2340890 2346391 5502 12848039.1467 12848313.8466 -8.2435 -40.3893 93.0486 run6.mat -1 -1 2064 1195490 1198241 +2430522 2444863 14342 12852520.869 12853237.6285 -8.248 -40.3872 93.2404 run6.mat -1 -1 2065 1240308 1247479 +2445171 2465865 20695 12853253.0317 12854288.7183 -9.896 -40.388 92.4971 run6.mat -1 -1 2065 1247633 1257980 +2466171 2486846 20676 12854304.2604 12855337.2451 -11.5469 -40.3882 92.6107 run6.mat -1 -1 2065 1258133 1268471 +2487151 2507845 20695 12855352.4982 12856386.5724 -13.1936 -40.3889 92.505 run6.mat -1 -1 2065 1268624 1278971 +2508152 2526291 18140 12856402.0524 12857311.0394 -14.8466 -40.3883 92.7052 run6.mat -1 -1 2065 1279125 1288195 +2610559 2612243 1685 12861523.6006 12861607.833 -14.8496 -40.3873 98.071 run6.mat -1 -1 2066 1330331 1331173 +2612566 2633247 20682 12861623.9892 12862657.2555 -16.4939 -40.3872 92.5429 run6.mat -1 -1 2066 1331334 1341675 +2633552 2654245 20694 12862672.5114 12863706.9016 -18.1412 -40.3882 92.566 run6.mat -1 -1 2066 1341827 1352175 +2654552 2675226 20675 12863722.1328 12864755.5408 -19.7909 -40.3879 92.6174 run6.mat -1 -1 2066 1352328 1362665 +2675530 2696225 20696 12864770.8665 12865805.6638 -21.4344 -40.3879 92.684 run6.mat -1 -1 2066 1362817 1373165 +2696532 2706331 9800 12865820.898 12866312.3826 -23.0903 -40.3881 92.8342 run6.mat -1 -1 2066 1373319 1378218 +2790599 2800603 10005 12870525.0339 12871025.3537 -23.0886 -40.3877 93.6486 run6.mat -1 -1 2067 1420355 1425356 +2800907 2821624 20718 12871040.4391 12872076.8338 -24.738 -40.3872 92.6445 run6.mat -1 -1 2067 1425508 1435868 +2821930 2842603 20674 12872092.2634 12873124.8773 -26.3842 -40.3876 92.5793 run6.mat -1 -1 2067 1436021 1446357 +2842914 2863604 20691 12873140.4332 12874175.1272 -28.037 -40.3878 92.6524 run6.mat -1 -1 2067 1446513 1456858 +2863913 2884563 20651 12874190.6514 12875223.0951 -29.6838 -40.3874 92.6792 run6.mat -1 -1 2067 1457013 1467339 +2884870 2886371 1502 12875238.3263 12875312.7954 -31.3205 -40.3918 93.0845 run6.mat -1 -1 2067 1467492 1468243 +2970464 2988704 18241 12879518.0581 12880429.1227 -31.3395 -40.3869 92.9787 run6.mat -1 -1 2068 1510291 1519411 +2989011 3009691 20681 12880444.3569 12881480.4598 -32.9868 -40.3869 92.5402 run6.mat -1 -1 2068 1519564 1529905 +3009996 3030691 20696 12881495.7157 12882530.1786 -34.6382 -40.3879 92.6048 run6.mat -1 -1 2068 1530058 1540405 +3030997 3051687 20691 12882545.3632 12883579.0336 -36.288 -40.3878 92.5692 run6.mat -1 -1 2068 1540558 1550904 +3051994 3066230 14237 12883594.2736 12884305.7358 -37.9382 -40.3887 92.7478 run6.mat -1 -1 2068 1551058 1558176 +3150347 3155925 5579 12888512.9786 12888790.4563 -37.9378 -40.3867 94.7385 run6.mat -1 -1 2069 1600236 1603026 +3156272 3176929 20658 12888807.9498 12889841.7331 -39.5848 -40.3883 92.6074 run6.mat -1 -1 2069 1603199 1613528 +3177237 3197948 20712 12889857.0139 12890891.7778 -41.2322 -40.3878 92.5839 run6.mat -1 -1 2069 1613682 1624038 +3198254 3218926 20673 12890907.0808 12891941.4116 -42.8816 -40.3871 92.6146 run6.mat -1 -1 2069 1624191 1634527 +3219236 3239907 20672 12891956.7916 12892990.1115 -44.5294 -40.387 92.681 run6.mat -1 -1 2069 1634682 1645019 +3240214 3246089 5876 12893005.5884 12893297.7422 -46.1857 -40.3864 92.8583 run6.mat -1 -1 2069 1645172 1648109 +3330409 3344328 13920 12897513.6618 12898210.1512 -46.1775 -40.3874 93.1909 run6.mat -1 -1 2070 1690271 1697231 +3344653 3365348 20696 12898226.2755 12899262.8729 -47.8275 -40.3881 92.6198 run6.mat -1 -1 2070 1697393 1707741 +3365656 3386329 20674 12899278.4001 12900310.4844 -49.4743 -40.3871 92.6219 run6.mat -1 -1 2070 1707896 1718233 +3386638 3407330 20693 12900326.0621 12901362.2002 -51.1295 -40.3874 92.5452 run6.mat -1 -1 2070 1718387 1728734 +3407636 3426170 18535 12901377.6267 12902305.8013 -52.7745 -40.3882 92.7648 run6.mat -1 -1 2070 1728887 1738154 +3510225 3511429 1205 12906507.7328 12906567.9536 -52.7804 -40.3867 96.2477 run6.mat -1 -1 2071 1780183 1780785 +3511738 3532408 20671 12906583.4066 12907615.6532 -54.4244 -40.3871 92.6309 run6.mat -1 -1 2071 1780940 1791275 +3532718 3553409 20692 12907631.2782 12908665.2813 -56.0732 -40.387 92.6807 run6.mat -1 -1 2071 1791430 1801776 +3553716 3574410 20695 12908680.7582 12909715.6173 -57.7263 -40.3875 92.5492 run6.mat -1 -1 2071 1801930 1812277 +3574719 3595389 20671 12909730.9508 12910765.6544 -59.3735 -40.3882 92.6508 run6.mat -1 -1 2071 1812432 1822767 +3595695 3606029 10335 12910781.0809 12911296.4616 -61.0298 -40.388 92.8258 run6.mat -1 -1 2071 1822920 1828087 +3690288 3699649 9362 12915509.235 12915978.4773 -61.0256 -40.3875 93.4169 run6.mat -1 -1 2072 1870219 1874899 +3699972 3720651 20680 12915994.7608 12917028.3665 -62.6773 -40.3882 92.4679 run6.mat -1 -1 2072 1875061 1885401 +3720957 3741632 20676 12917043.5481 12918075.6813 -64.3237 -40.3876 92.6299 run6.mat -1 -1 2072 1885554 1895892 +3741942 3762631 20690 12918090.9303 12919127.3009 -65.9777 -40.3875 92.5231 run6.mat -1 -1 2072 1896047 1906392 +3762937 3783591 20655 12919142.4824 12920174.168 -67.6259 -40.3876 92.7435 run6.mat -1 -1 2072 1906545 1916872 +3783899 3786070 2172 12920189.6953 12920299.1428 -69.2776 -40.3867 92.6211 run6.mat -1 -1 2072 1917026 1918112 +3870160 3887690 17531 12924504.2254 12925378.9736 -69.2705 -40.3884 93.0515 run6.mat -1 -1 2073 1960158 1968924 +3887997 3908708 20712 12925394.4042 12926430.16 -70.9188 -40.3867 92.6325 run6.mat -1 -1 2073 1969077 1979434 +3909017 3929689 20673 12926445.6133 12927481.4844 -72.5701 -40.3872 92.5591 run6.mat -1 -1 2073 1979588 1989924 +3929997 3950689 20693 12927496.8903 12928529.8724 -74.2226 -40.3878 92.542 run6.mat -1 -1 2073 1990078 2000425 +3950998 3965948 14951 12928545.4501 12929293.929 -75.8641 -40.3865 92.7954 run6.mat -1 -1 2073 2000579 2008055 +4050229 4054969 4741 12933506.1393 12933743.8548 -75.8673 -40.3906 94.2894 run6.mat -1 -1 2074 2050197 2052567 +4055275 4075993 20719 12933759.2813 12934794.7251 -77.5142 -40.3874 92.5228 run6.mat -1 -1 2074 2052720 2063080 +4076298 4096971 20674 12934809.9781 12935844.4861 -79.1664 -40.388 92.5957 run6.mat -1 -1 2074 2063232 2073569 +4097279 4117969 20691 12935859.7639 12936894.0404 -80.8179 -40.3868 92.5904 run6.mat -1 -1 2074 2073723 2084068 +4118278 4138951 20674 12936909.4934 12937944.4023 -82.4634 -40.3882 92.6562 run6.mat -1 -1 2074 2084223 2094560 +4139259 4146028 6770 12937959.8028 12938298.3179 -82.4619 -38.7029 92.8721 run6.mat -1 -1 2074 2094714 2098099 +4230150 4243112 12963 12942503.8604 12943151.2271 -82.4603 -38.703 93.1685 run6.mat -1 -1 2075 2140161 2146643 +4243422 4264112 20691 12943166.8552 12944201.0873 -80.8151 -38.7049 92.4938 run6.mat -1 -1 2075 2146798 2157143 +4264420 4285080 20661 12944216.5364 12945251.4505 -79.1698 -38.7045 92.6254 run6.mat -1 -1 2075 2157297 2167627 +4285396 4306093 20698 12945267.1401 12946300.1774 -77.5169 -38.703 92.529 run6.mat -1 -1 2075 2167785 2178135 +4306399 4325928 19530 12946315.359 12947291.1018 -75.866 -38.7044 92.831 run6.mat -1 -1 2075 2178288 2188053 +4409997 4410175 179 12951496.2499 12951505.1516 -75.8502 -38.7065 103.4611 run6.mat -1 -1 2076 2230089 2230178 +4410495 4431133 20639 12951521.1546 12952553.0262 -74.2212 -38.705 92.6891 run6.mat -1 -1 2076 2230338 2240657 +4431441 4452115 20675 12952568.31 12953600.7 -72.5746 -38.7056 92.6305 run6.mat -1 -1 2076 2240811 2251149 +4452422 4473132 20711 12953616.05 12954653.7763 -70.9192 -38.7051 92.6205 run6.mat -1 -1 2076 2251303 2261658 +4473439 4494113 20675 12954669.1293 12955702.61 -69.2734 -38.7052 92.5915 run6.mat -1 -1 2076 2261811 2272149 +4494421 4505747 11327 12955717.8909 12956283.9561 -67.6263 -38.7025 92.7977 run6.mat -1 -1 2076 2272303 2277966 +4590021 4598508 8488 12960498.5586 12960921.2551 -67.6208 -38.7037 93.5242 run6.mat -1 -1 2077 2320105 2324348 +4598822 4619513 20692 12960936.9611 12961969.8199 -65.974 -38.7038 92.5405 run6.mat -1 -1 2077 2324505 2334851 +4619820 4640494 20675 12961985.1758 12963020.2588 -64.3205 -38.7028 92.6412 run6.mat -1 -1 2077 2335004 2345342 +4640799 4661494 20696 12963035.4513 12964072.4028 -62.6704 -38.7037 92.6096 run6.mat -1 -1 2077 2345495 2355843 +4661800 4682457 20658 12964087.706 12965120.3339 -61.0239 -38.7044 92.6933 run6.mat -1 -1 2077 2355996 2366325 +4682763 4685787 3025 12965135.5185 12965285.578 -59.3807 -38.7023 92.8098 run6.mat -1 -1 2077 2366478 2367990 +4769868 4786638 16771 12969490.0163 12970330.2078 -59.3736 -38.7046 93.1014 run6.mat -1 -1 2078 2410032 2418418 +4786946 4807635 20690 12970345.6137 12971378.8443 -57.7267 -38.7046 92.6393 run6.mat -1 -1 2078 2418572 2428916 +4807939 4828614 20676 12971394.1731 12972426.7672 -56.0709 -38.7039 92.5512 run6.mat -1 -1 2078 2429068 2439407 +4828921 4849604 20684 12972441.9984 12973476.1632 -54.4247 -38.7028 92.6046 run6.mat -1 -1 2078 2439560 2449902 +4849916 4865707 15792 12973491.6455 12974280.7439 -52.7784 -38.7044 92.7715 run6.mat -1 -1 2078 2450058 2457954 +4949771 4953667 3897 12978485.3304 12978679.9998 -52.7748 -38.7031 94.1485 run6.mat -1 -1 2079 2499988 2501936 +4953980 4974653 20674 12978695.5287 12979729.4322 -51.1296 -38.7031 92.5612 run6.mat -1 -1 2079 2502092 2512429 +4974962 4995674 20713 12979744.8852 12980781.0196 -49.4754 -38.7051 92.5636 run6.mat -1 -1 2079 2512584 2522940 +4995979 5016636 20658 12980796.1516 12981828.9954 -47.8277 -38.7047 92.6104 run6.mat -1 -1 2079 2523093 2533422 +5016944 5037614 20671 12981844.2762 12982876.7438 -46.1843 -38.7037 92.6765 run6.mat -1 -1 2079 2533576 2543911 +5037924 5045566 7643 12982892.3752 12983275.9411 -44.5315 -38.7047 92.9253 run6.mat -1 -1 2079 2544066 2547888 +5129824 5141924 12101 12987488.2884 12988092.1112 -44.5353 -38.7028 93.2861 run6.mat -1 -1 2080 2590018 2596069 +5142236 5162913 20678 12988107.7172 12989143.2024 -42.883 -38.7043 92.6451 run6.mat -1 -1 2080 2596224 2606563 +5163221 5183914 20694 12989158.4832 12990192.1497 -41.2349 -38.7035 92.6241 run6.mat -1 -1 2080 2606717 2617064 +5184221 5204896 20676 12990207.5056 12991242.1804 -39.5859 -38.7045 92.6221 run6.mat -1 -1 2080 2617218 2627556 +5205205 5225626 20422 12991257.5108 12992277.9718 -37.9391 -38.7052 92.6985 run6.mat -1 -1 2080 2627711 2637921 +5309713 5330018 20306 12996481.4439 12997497.7092 -36.2861 -38.7027 92.9269 run6.mat -1 -1 2081 2679967 2690120 +5330324 5350997 20674 12997513.1388 12998545.7388 -34.635 -38.7029 92.6142 run6.mat -1 -1 2081 2690273 2700609 +5351302 5372012 20711 12998560.8738 12999599.6051 -32.9854 -38.7034 92.6486 run6.mat -1 -1 2081 2700762 2711118 +5372321 5392976 20656 12999615.0583 13000646.0656 -31.3367 -38.704 92.6029 run6.mat -1 -1 2081 2711272 2721600 +5393283 5405506 12224 13000661.4185 13001273.1544 -29.6884 -38.7026 92.7882 run6.mat -1 -1 2081 2721753 2727865 +5489669 5497253 7585 13005481.0266 13005859.3546 -29.6904 -38.7049 93.9939 run6.mat -1 -1 2082 2769948 2773741 +5497565 5518240 20676 13005875.0867 13006909.2434 -28.0344 -38.7032 92.5235 run6.mat -1 -1 2082 2773897 2784234 +5518555 5539232 20678 13006924.8746 13007958.7426 -26.3865 -38.7037 92.7007 run6.mat -1 -1 2082 2784392 2794731 +5539541 5560233 20693 13007974.073 13009008.7029 -24.7372 -38.704 92.557 run6.mat -1 -1 2082 2794886 2805232 +5560541 5581196 20656 13009023.9837 13010056.6787 -23.0906 -38.7036 92.7319 run6.mat -1 -1 2082 2805386 2815714 +5581503 5585526 4024 13010071.9099 13010274.5337 -21.4338 -38.7011 92.6791 run6.mat -1 -1 2082 2815867 2817879 +5669601 5685301 15701 13014478.0063 13015263.0068 -21.4396 -38.704 93.1674 run6.mat -1 -1 2083 2859918 2867768 +5685618 5706315 20698 13015279.1323 13016312.9024 -19.7875 -38.7032 92.5198 run6.mat -1 -1 2083 2867927 2878276 +5706622 5727295 20674 13016328.3793 13017362.1588 -18.1405 -38.7046 92.6112 run6.mat -1 -1 2083 2878430 2888767 +5727602 5748294 20693 13017377.393 13018413.6158 -16.4915 -38.7039 92.6317 run6.mat -1 -1 2083 2888920 2899267 +5748601 5765405 16805 13018428.969 13019268.8328 -14.8462 -38.7048 92.7886 run6.mat -1 -1 2083 2899420 2907823 +5849589 5852599 3011 13023475.7574 13023626.6993 -14.8493 -38.7018 95.132 run6.mat -1 -1 2084 2949916 2951422 +5852913 5873594 20682 13023642.5291 13024678.6011 -13.1936 -38.7033 92.5634 run6.mat -1 -1 2084 2951579 2961919 +5873903 5894594 20692 13024693.9315 13025728.8084 -11.547 -38.7043 92.5421 run6.mat -1 -1 2084 2962074 2972420 +5894901 5915575 20675 13025744.2884 13026776.437 -9.899 -38.7047 92.5492 run6.mat -1 -1 2084 2972573 2982911 +5915881 5936554 20674 13026791.8635 13027826.1951 -8.249 -38.7047 92.6915 run6.mat -1 -1 2084 2983064 2993401 +5936862 5945466 8605 13027841.5799 13028271.3452 -6.601 -38.7029 92.7697 run6.mat -1 -1 2084 2993555 2997857 +6029583 6040703 11121 13032476.7057 13033034.0285 -6.5977 -38.7045 93.2104 run6.mat -1 -1 2085 3039918 3045478 +6041014 6061678 20665 13033049.5845 13034081.0587 -4.9462 -38.7038 92.5422 run6.mat -1 -1 2085 3045633 3055966 +6061984 6082682 20699 13034096.4852 13035129.8266 -3.297 -38.7044 92.6254 run6.mat -1 -1 2085 3056119 3066468 +6082991 6103679 20689 13035145.4043 13036180.8337 -1.6499 -38.7035 92.6511 run6.mat -1 -1 2085 3066623 3076967 +6103988 6124640 20653 13036196.1671 13037228.5825 -0.0014347 -38.7041 92.7001 run6.mat -1 -1 2085 3077121 3087448 +6124959 6125365 407 13037244.6057 13037264.9987 1.6486 -38.6943 95.9328 run6.mat -1 -1 2085 3087607 3087810 +6209616 6228944 19329 13041476.9446 13042445.6155 1.648 -38.7049 92.877 run6.mat -1 -1 2086 3129938 3139602 +6229258 6249928 20671 13042461.3188 13043494.5823 3.2987 -38.7035 92.5774 run6.mat -1 -1 2086 3139759 3150095 +6250242 6270918 20677 13043510.2231 13044545.3031 4.9444 -38.7037 92.6015 run6.mat -1 -1 2086 3150252 3160590 +6271224 6291909 20686 13044560.7296 13045593.4603 6.5977 -38.7039 92.6402 run6.mat -1 -1 2086 3160743 3171086 +6292222 6305405 13184 13045609.2428 13046267.9096 8.244 -38.7023 92.7033 run6.mat -1 -1 2086 3171243 3177834 +6389702 6396184 6483 13050482.3003 13050807.8323 8.2473 -38.7043 93.8562 run6.mat -1 -1 2087 3219985 3223226 +6396505 6417196 20692 13050823.8856 13051856.7411 9.897 -38.7038 92.5421 run6.mat -1 -1 2087 3223386 3233732 +6417503 6438175 20673 13051872.0941 13052907.8839 11.5429 -38.7026 92.6495 run6.mat -1 -1 2087 3233886 3244222 +6438484 6447630 9147 13052923.2143 13053380.7975 13.1915 -38.7039 92.6404 run6.mat -1 -1 2087 3244377 3248950 +6447880 6459175 11296 13053393.4002 13053956.7515 13.1938 -38.7055 92.469 run6.mat -1 -1 2087 3249075 3254722 +6459483 6480137 20655 13053972.282 13055005.9933 14.8436 -38.7034 92.7087 run6.mat -1 -1 2087 3254876 3265204 +6480441 6485464 5024 13055021.0786 13055270.313 16.4948 -38.7056 92.918 run6.mat -1 -1 2087 3265356 3267868 +6569775 6584577 14803 13059488.4105 13060227.2205 16.4882 -38.7046 93.1065 run6.mat -1 -1 2088 3310025 3317426 +6584889 6605576 20688 13060242.8265 13061276.6493 18.1358 -38.7039 92.646 run6.mat -1 -1 2088 3317582 3327927 +6605884 6626559 20676 13061291.9301 13062326.0432 19.7854 -38.7038 92.5251 run6.mat -1 -1 2088 3328081 3338419 +6626865 6647558 20694 13062341.4728 13063376.6333 21.4356 -38.7052 92.6317 run6.mat -1 -1 2088 3338572 3348918 +6647865 6665523 17659 13063391.8645 13064274.0117 23.0878 -38.7045 92.7688 run6.mat -1 -1 2088 3349072 3357901 +6749530 6751680 2151 13068474.1067 13068582.4955 23.0938 -38.7035 97.1181 run6.mat -1 -1 2089 3399907 3400982 +6751989 6772680 20692 13068598.0732 13069633.7852 24.7345 -38.7032 92.5549 run6.mat -1 -1 2089 3401136 3411482 +6772986 6793659 20674 13069649.0884 13070682.0369 26.3858 -38.7034 92.6068 run6.mat -1 -1 2089 3411635 3421972 +6793965 6814659 20695 13070697.3428 13071730.386 28.0365 -38.7053 92.6715 run6.mat -1 -1 2089 3422125 3432473 +6814966 6835639 20674 13071745.8629 13072781.2471 29.6879 -38.7035 92.6543 run6.mat -1 -1 2089 3432626 3442963 +6835944 6845425 9482 13072796.379 13073270.7787 31.3344 -38.7063 92.8428 run6.mat -1 -1 2089 3443116 3447857 +6929501 6939767 10267 13077473.0408 13077986.5317 31.3382 -38.704 93.3137 run6.mat -1 -1 2090 3489896 3495029 +6940080 6960759 20680 13078002.1011 13079038.3099 32.9874 -38.7053 92.5983 run6.mat -1 -1 2090 3495186 3505526 +6961066 6981742 20677 13079053.6628 13080084.3846 34.6352 -38.7034 92.687 run6.mat -1 -1 2090 3505679 3516018 +6982050 7002741 20692 13080099.9119 13081135.5116 36.2854 -38.7038 92.6192 run6.mat -1 -1 2090 3516172 3526518 +7003048 7023720 20673 13081151.0504 13082185.6064 37.936 -38.7044 92.6511 run6.mat -1 -1 2090 3526671 3537008 +7024026 7025303 1278 13082201.0329 13082265.2946 39.587 -38.6969 93.0109 run6.mat -1 -1 2090 3537161 3537799 +7109555 7128002 18448 13086477.0288 13087397.573 39.5807 -38.7052 93.0422 run6.mat -1 -1 2091 3579927 3589151 +7128323 7149021 20699 13087413.6261 13088449.4728 41.2304 -38.7044 92.5541 run6.mat -1 -1 2091 3589311 3599661 +7149328 7170001 20674 13088464.707 13089498.3592 42.8774 -38.7052 92.6104 run6.mat -1 -1 2091 3599815 3610151 +7170309 7190979 20671 13089513.64 13090548.2018 44.5322 -38.705 92.5535 run6.mat -1 -1 2091 3610305 3620641 +7191289 7205344 14056 13090563.7048 13091264.9933 46.1727 -38.7039 92.7763 run6.mat -1 -1 2091 3620796 3627824 +7289651 7295418 5768 13095480.5386 13095767.7438 46.1773 -38.7029 94.2602 run6.mat -1 -1 2092 3669979 3672863 +7295731 7316421 20691 13095783.2727 13096820.9542 47.8237 -38.7059 92.5216 run6.mat -1 -1 2092 3673019 3683365 +7316725 7337402 20678 13096836.1601 13097871.4145 49.4725 -38.7053 92.6702 run6.mat -1 -1 2092 3683517 3693855 +7337709 7358418 20710 13097886.5191 13098920.1714 51.1262 -38.7049 92.6209 run6.mat -1 -1 2092 3694009 3704364 +7358727 7379385 20659 13098935.7491 13099969.1228 52.7721 -38.7043 92.6633 run6.mat -1 -1 2092 3704519 3714848 +7379701 7385402 5702 13099985.0534 13100270.8837 54.4237 -38.7064 92.7304 run6.mat -1 -1 2092 3715006 3717856 +7469737 7483725 13989 13104486.393 13105185.272 54.4272 -38.7041 93.0886 run6.mat -1 -1 2093 3760026 3767020 +7484046 7504741 20696 13105201.3251 13106236.3279 56.0711 -38.7033 92.6435 run6.mat -1 -1 2093 3767181 3777529 +7505049 7525721 20673 13106251.7309 13107285.5874 57.7268 -38.7041 92.6015 run6.mat -1 -1 2093 3777683 3788019 +7526027 7546720 20694 13107300.8904 13108335.6743 59.374 -38.7044 92.6195 run6.mat -1 -1 2093 3788172 3798519 +7547028 7565523 18496 13108351.1985 13109275.5312 61.0235 -38.7034 92.7749 run6.mat -1 -1 2093 3798673 3807921 +7649605 7650823 1219 13113479.1789 13113540.5824 61.0184 -38.7052 97.321 run6.mat -1 -1 2094 3849964 3850573 +7651147 7671800 20654 13113556.9163 13114590.0133 62.6718 -38.7043 92.589 run6.mat -1 -1 2094 3850735 3861062 +7672108 7692801 20694 13114605.5438 13115640.7497 64.3233 -38.7043 92.5862 run6.mat -1 -1 2094 3861216 3871563 +7693107 7713784 20678 13115655.8397 13116688.8702 65.9741 -38.7029 92.5279 run6.mat -1 -1 2094 3871716 3882055 +7714099 7734762 20664 13116704.4983 13117737.0524 67.6204 -38.7031 92.7131 run6.mat -1 -1 2094 3882213 3892544 +7735068 7745382 10315 13117752.4758 13118267.4239 69.2708 -38.7056 92.7021 run6.mat -1 -1 2094 3892697 3897855 +7829535 7838964 9430 13122476.2641 13122946.0779 69.2721 -38.7033 93.3743 run6.mat -1 -1 2095 3939933 3944647 +7839274 7859959 20686 13122961.7092 13123995.8845 70.9159 -38.7047 92.5603 run6.mat -1 -1 2095 3944802 3955145 +7860265 7880945 20681 13124011.1909 13125047.0792 72.5682 -38.7036 92.6184 run6.mat -1 -1 2095 3955298 3965639 +7881250 7901941 20692 13125062.5168 13126097.1494 74.2135 -38.7054 92.6046 run6.mat -1 -1 2095 3965792 3976138 +7902248 7922907 20660 13126112.3806 13127143.4085 75.8659 -38.7039 92.7188 run6.mat -1 -1 2095 3976291 3986621 +7923214 7925342 2129 13127158.6427 13127265.5185 77.5116 -38.7063 93.5822 run6.mat -1 -1 2095 3986775 3987839 +8009593 8027309 17717 13131479.2894 13132366.2641 77.5124 -38.7046 93.1557 run6.mat -1 -1 2096 4029966 4038824 +8027632 8048302 20671 13132382.2891 13133415.3509 79.165 -38.7048 92.5469 run6.mat -1 -1 2096 4038986 4049321 +8048609 8069303 20695 13133430.831 13134463.9736 80.8118 -38.7036 92.5566 run6.mat -1 -1 2096 4049475 4059822 +8069610 8089936 20327 13134479.4505 13135497.5461 82.4618 -38.7037 92.5901 run6.mat -1 -1 2096 4059976 4070139 +306023 306079 57 365661.4375 365664.2164 41.2313 0.026456 10.6137 run60.mat 1 3 2098 60870 60879 +306330 306620 291 365676.6717 365691.0623 41.2308 -0.011299 9.1314 run60.mat 1 3 2098 60921 60970 +307147 307447 301 365717.2136 365732.2028 41.2389 0.032265 8.2 run60.mat 1 3 2098 61057 61108 +307753 308026 274 365747.5059 365761.1588 41.1953 -0.011907 7.9238 run60.mat 1 3 2098 61159 61204 +308402 308950 549 365779.9627 365807.3684 41.2288 -0.040553 7.9274 run60.mat 1 3 2098 61267 61358 +309200 312969 3770 365819.871 366008.758 41.2302 0.00012356 7.8789 run60.mat 1 3 2098 61400 62028 +313220 319692 6473 366021.4118 366346.5765 41.2267 -0.0038916 7.6868 run60.mat 1 3 2098 62070 63148 +319951 322350 2400 366359.5289 366479.4625 41.2275 -0.0013057 7.4711 run60.mat 1 3 2098 63191 63592 +322749 326631 3883 366499.3412 366692.7477 41.2303 -0.0081968 7.5026 run60.mat 1 3 2098 63658 64305 +326969 327620 652 366709.5873 366742.2827 41.2234 -0.02002 7.7072 run60.mat 1 3 2098 64362 64470 +327894 336552 8659 366756.096 367189.0415 41.2232 -0.0048522 7.22 run60.mat 1 3 2098 64516 65958 +336890 340632 3743 367205.8107 367394.2638 41.222 -0.00089553 7.3817 run60.mat 1 3 2098 66015 66638 +340990 347771 6782 367412.3154 367749.9062 41.2255 -0.011658 7.0962 run60.mat 1 3 2098 66698 67828 +348021 348292 272 367762.4088 367775.9617 41.2275 -0.0063764 7.3036 run60.mat 1 3 2098 67870 67915 +348630 351632 3003 367792.8652 367942.9965 41.2293 0.010458 6.7568 run60.mat 1 3 2098 67971 68472 +351970 352830 861 367959.9 368002.9165 41.2395 -0.00060136 6.5109 run60.mat 1 3 2098 68528 68671 +353112 356172 3061 368017.0219 368170.0808 41.2257 -0.0055643 6.5043 run60.mat 1 3 2098 68718 69228 +356510 356571 62 368186.9873 368190.0385 41.152 -0.012755 7.3646 run60.mat 1 3 2098 69285 69295 +356835 360502 3668 368203.2436 368385.3106 41.2249 0.001585 7.1009 run60.mat 1 3 2098 69339 69950 +360824 361522 699 368401.286 368435.9159 41.2233 -0.014123 7.6754 run60.mat 1 3 2098 70004 70120 +361845 362391 547 368451.9409 368479.1771 41.2069 -0.010108 7.5002 run60.mat 1 3 2098 70174 70265 +362641 366606 3966 368491.783 368691.7124 41.2266 0.00074584 7.3256 run60.mat 1 3 2098 70307 70968 +366862 366967 106 368704.6208 368709.9153 41.2499 0.0076393 7.7696 run60.mat 1 3 2098 71011 71028 +367237 371065 3829 368723.4729 368913.3915 41.2178 -0.0011079 7.3264 run60.mat 1 3 2098 71073 71711 +371327 376717 5391 368926.3902 369197.4148 41.224 -0.0066102 7.3281 run60.mat 1 3 2098 71755 72653 +377035 377407 373 369213.4463 369232.1025 41.2208 -0.033142 7.4836 run60.mat 1 3 2098 72706 72768 +377722 379479 1758 369247.8558 369335.7241 41.2191 0.012424 7.3224 run60.mat 1 3 2098 72820 73113 +379794 382618 2825 369351.4774 369492.4469 41.223 -0.02046 7.3562 run60.mat 1 3 2098 73166 73637 +383190 383890 701 369520.8256 369555.5547 41.2276 0.0094371 7.1542 run60.mat 1 3 2098 73732 73849 +384198 387652 3455 369570.8355 369742.4625 41.2272 -0.0039275 7.355 run60.mat 1 3 2098 73900 74476 +387990 388672 683 369759.369 369793.4821 41.2189 -0.004159 7.3284 run60.mat 1 3 2098 74532 74646 +389010 389458 449 369810.3886 369832.7972 41.1996 -0.003128 7.6309 run60.mat 1 3 2098 74702 74777 +389755 393652 3898 369847.6529 370043.1498 41.2263 -0.013515 7.3535 run60.mat 1 3 2098 74826 75475 +393990 394688 699 370060.1896 370095.3781 41.2275 -0.01229 7.6789 run60.mat 1 3 2098 75532 75648 +395009 395800 792 370111.5608 370151.4378 41.2236 -0.017292 7.4672 run60.mat 1 3 2098 75702 75834 +396114 399015 2902 370167.2676 370312.0321 41.2284 0.00019053 7.4203 run60.mat 1 3 2098 75886 76370 +399276 401888 2613 370324.9811 370454.5704 41.2267 -0.0015712 7.3264 run60.mat 1 3 2098 76413 76849 +467989 469292 1304 373761.2203 373825.866 41.2363 0.02964 10.1802 run60.mat 1 3 2099 87866 88083 +469630 474448 4819 373842.6352 374082.9722 41.2279 0.0059166 10.1143 run60.mat 1 3 2099 88139 88942 +474715 474961 247 374096.4325 374108.8342 41.2321 0.0099412 10.1639 run60.mat 1 3 2099 88987 89028 +475211 475709 499 374121.4376 374146.5435 41.2316 -0.027411 10.1888 run60.mat 1 3 2099 89069 89152 +475968 480178 4211 374159.6005 374370.875 41.2224 0.0099444 9.838 run60.mat 1 3 2099 89196 89897 +480444 489531 9088 374384.1777 374836.6368 41.2279 -0.0014906 10.0009 run60.mat 1 3 2099 89941 91456 +489785 498138 8354 374849.3417 375269.0095 41.2247 0.0054803 9.3895 run60.mat 1 3 2099 91498 92891 +498396 502401 4006 375281.8097 375480.5098 41.2195 0.0031466 8.8756 run60.mat 1 3 2099 92934 93601 +502651 504664 2014 375492.9131 375594.2836 41.2217 0.0081354 8.9674 run60.mat 1 3 2099 93642 93978 +504921 506861 1941 375607.2424 375705.0641 41.2163 -0.0016583 8.8591 run60.mat 1 3 2099 94021 94345 +507189 508511 1323 375721.6031 375787.9571 41.2282 -0.028544 8.7346 run60.mat 1 3 2099 94399 94620 +509023 510126 1104 375813.562 375868.7226 41.2306 0.00071455 8.3775 run60.mat 1 3 2099 94705 94889 +510442 513145 2704 375884.5257 376019.6327 41.2296 0.0017083 8.0954 run60.mat 1 3 2099 94941 95392 +513715 516530 2816 376047.9121 376187.5727 41.2252 -0.010753 8.2381 run60.mat 1 3 2099 95487 95956 +516785 518802 2018 376200.2241 376300.9274 41.2302 -0.00037078 8.1934 run60.mat 1 3 2099 95998 96335 +519114 519652 539 376316.6564 376343.7788 41.2161 -0.022947 7.6425 run60.mat 1 3 2099 96387 96476 +519990 525712 5723 376360.8185 376647.1155 41.2263 0.0040365 7.7116 run60.mat 1 3 2099 96533 97486 +526050 527459 1410 376663.8881 376733.8067 41.2227 0.012822 7.5808 run60.mat 1 3 2099 97543 97777 +527772 532577 4806 376749.3386 376987.7765 41.2291 -0.006925 7.1265 run60.mat 1 3 2099 97829 98630 +532831 534204 1374 377000.3807 377069.4291 41.2325 0.00011358 7.202 run60.mat 1 3 2099 98673 98902 +534514 536233 1720 377085.0573 377171.7179 41.2293 0.0055051 7.23 run60.mat 1 3 2099 98953 99240 +536499 539328 2830 377185.1278 377327.4802 41.2283 0.0093539 6.7496 run60.mat 1 3 2099 99285 99756 +539602 540147 546 377341.2382 377368.6035 41.2602 0.0031747 6.4802 run60.mat 1 3 2099 99802 99893 +540460 542084 1625 377384.3197 377465.8634 41.227 0.0012397 6.9273 run60.mat 1 3 2099 99945 100215 +542343 543403 1061 377478.8682 377532.0519 41.2312 -0.023482 6.3259 run60.mat 1 3 2099 100258 100435 +543714 544228 515 377547.6049 377573.3099 41.212 0.012363 5.9799 run60.mat 1 3 2099 100487 100573 +544484 545479 996 377586.1123 377635.8719 41.2204 0.018132 6.5927 run60.mat 1 3 2099 100615 100781 +545873 546412 540 377655.5757 377682.5309 41.245 -0.032355 7.1708 run60.mat 1 3 2099 100847 100937 +546683 546810 128 377696.0835 377702.4347 41.271 0.01534 7.6771 run60.mat 1 3 2099 100982 101003 +547271 548549 1279 377725.4891 377789.4015 41.2294 -0.0038676 6.4216 run60.mat 1 3 2099 101080 101293 +548805 550948 2144 377802.2042 377909.3765 41.2292 -0.0025383 6.5703 run60.mat 1 3 2099 101336 101693 +551391 551952 562 377931.5312 377959.587 41.208 -0.0035146 6.6828 run60.mat 1 3 2099 101766 101860 +552342 552770 429 377979.0911 378000.4955 41.2321 -0.016162 6.3295 run60.mat 1 3 2099 101925 101996 +553384 554001 618 378031.2018 378062.0577 41.214 -0.0014702 6.4142 run60.mat 1 3 2099 102098 102201 +554473 554674 202 378085.6622 378095.7142 41.2496 -0.017126 6.2908 run60.mat 1 3 2099 102280 102313 +554992 555971 980 378111.6172 378160.5766 41.215 0.0080058 6.4569 run60.mat 1 3 2099 102366 102530 +556290 556479 190 378176.5297 378185.9815 41.2071 -0.064755 6.7847 run60.mat 1 3 2099 102583 102614 +556792 557332 541 378201.6345 378228.6397 41.2593 -0.04552 6.045 run60.mat 1 3 2099 102667 102757 +557686 557861 176 378246.3431 378255.0948 41.2249 -0.039251 6.0276 run60.mat 1 3 2099 102816 102845 +558354 559480 1127 378279.7496 378335.6423 41.2295 0.02046 5.9586 run60.mat 1 3 2099 102927 103115 +560398 560435 38 378381.1961 378383.0322 41.2877 0.10059 5.5814 run60.mat 1 3 2099 103268 103274 +560701 561004 304 378396.2318 378411.2676 41.2359 -0.0063631 5.8641 run60.mat 1 3 2099 103318 103369 +561329 561680 352 378427.395 378444.8126 41.2513 0.0023704 6.0851 run60.mat 1 3 2099 103423 103482 +561941 561952 12 378457.7642 378458.31 41.0954 0.030859 4.4934 run60.mat 1 3 2099 103525 103527 +562290 563251 962 378475.0826 378522.7701 41.2277 -0.012532 6.2202 run60.mat 1 3 2099 103583 103743 +563501 563570 70 378535.2271 378538.7063 41.1998 0.036244 8.206 run60.mat 1 3 2099 103785 103797 +563881 564001 121 378554.3881 378560.4389 41.2024 0.1405 7.5496 run60.mat 1 3 2099 103848 103868 +629986 631448 1463 381860.7497 381934.4541 41.2344 0.022227 8.6912 run60.mat 1 3 2100 114867 115110 +631709 631761 53 381947.612 381950.2335 41.2182 -0.063687 8.5271 run60.mat 1 3 2100 115154 115162 +632011 632315 305 381962.8369 381978.1625 41.2527 -0.0021901 8.031 run60.mat 1 3 2100 115204 115255 +700198 700920 723 385371.296 385407.6945 41.2276 0.028881 10.6823 run60.mat 11 3 2101 126569 126689 +701174 729221 28048 385420.4995 386820.6955 41.2248 -0.0040918 9.7295 run60.mat 11 3 2101 126732 131406 +729471 740369 10899 386833.1012 387379.8718 41.2222 -0.003476 9.7743 run60.mat 11 3 2101 131448 133264 +740622 746021 5400 387392.4264 387661.0944 41.225 -0.0029337 9.7997 run60.mat 11 3 2101 133306 134206 +746271 755565 9295 387673.6977 388139.7209 41.2302 -0.00029376 9.7205 run60.mat 11 3 2101 134248 135797 +755876 757965 2090 388155.1536 388258.8158 41.2239 0.012361 9.7691 run60.mat 11 3 2101 135849 136197 +758272 773570 15299 388274.05 389038.5214 41.2275 1.7362e-05 9.7476 run60.mat 11 3 2101 136248 138798 +773833 784371 10539 389051.6764 389579.0151 41.2244 -0.0086818 9.7644 run60.mat 11 3 2101 138842 140598 +784674 796276 11603 389594.0478 390176.5838 41.2247 -0.0037002 9.7635 run60.mat 11 3 2101 140649 142582 +862256 874318 12063 393473.0171 394076.237 41.2271 -0.00028087 9.8296 run60.mat 11 3 2102 153579 155590 +874586 896783 22198 394089.6395 395201.4945 41.2257 -0.0011717 9.7559 run60.mat 11 3 2102 155634 159334 +964661 976290 11630 398593.8708 399175.1154 41.2264 0.0026177 10.9951 run60.mat 21 3 2103 170647 172586 +976545 981714 5170 399187.8703 399446.4099 41.2259 0.0030545 11.0031 run60.mat 21 3 2103 172629 173490 +982031 998558 16528 399462.2629 400290.8561 41.2244 -0.0039074 10.9686 run60.mat 21 3 2103 173543 176298 +998814 1060716 61903 400303.661 403398.4964 41.2262 -0.0016261 10.9583 run60.mat 21 3 2103 176341 186657 +1128721 1135339 6619 406797.7503 407128.1642 41.2233 -0.0023159 11.0916 run60.mat 21 3 2104 197993 199095 +1203036 1299095 96060 410514.7848 415315.5709 41.2266 -0.0044613 9.9985 run60.mat 31 3 2105 210379 226389 +1367100 1373748 6649 418717.7457 419048.7947 41.2249 -0.0042838 10.1221 run60.mat 31 3 2106 237724 238832 +1441454 1537475 96022 422434.5806 427237.7456 41.2268 -0.004104 9.2724 run60.mat 41 3 2107 250117 266121 +1605510 1612278 6769 430637.3745 430977.6281 41.224 -0.0058744 9.3272 run60.mat 41 3 2108 277461 278589 +1681716 1777694 95979 434448.0474 439247.4287 41.2267 -0.0035784 8.7068 run60.mat 51 3 2109 290162 306159 +1847636 1854447 6812 442742.8829 443087.38 41.2228 -0.0037388 8.7654 run60.mat 51 3 2110 317817 318952 +1924017 2019994 95978 446563.7039 451361.1587 41.2264 -0.0040441 8.2437 run60.mat 61 3 2111 330548 346544 +2088095 2094865 6771 454767.0512 455105.6441 41.2235 -0.0021291 8.3134 run60.mat 61 3 2112 357895 359023 +2164242 2260234 95993 458575.9659 463376.2904 41.2282 -0.0040113 7.8597 run60.mat 71 3 2113 370587 386586 +2330211 2337003 6793 466873.5756 467211.9629 41.224 -0.0061302 7.8975 run60.mat 71 3 2114 398249 399381 +2406385 2502373 95989 470682.6953 475482.1675 41.2262 -0.0028758 7.5313 run60.mat 81 3 2115 410946 426945 +2572516 2579284 6769 478990.3024 479328.0476 41.226 -0.0034249 7.5388 run60.mat 81 3 2116 438636 439764 +2648678 2697236 48559 482796.4221 485222.94 41.225 -0.0034663 7.2445 run60.mat 91 3 2117 451330 459423 +2697488 2738666 41179 485235.5448 487296.8144 41.2255 -0.0045653 7.2491 run60.mat 91 3 2117 459465 466328 +2738996 2744673 5678 487313.2555 487596.4166 41.2262 -0.00275 7.247 run60.mat 91 3 2117 466383 467330 +2814566 2821373 6808 491092.2464 491433.2606 41.2234 -0.0050138 7.2539 run60.mat 91 3 2118 478979 480113 +2890738 2907113 16376 494899.6803 495718.0192 41.2264 -0.0023073 6.9959 run60.mat 101 3 2119 491675 494404 +2907426 2921836 14411 495733.5481 496455.7798 41.2302 -0.0034764 7.0005 run60.mat 101 3 2119 494456 496858 +2922141 2974457 52317 496471.0327 499088.2949 41.2296 -0.0024457 6.9995 run60.mat 101 3 2119 496909 505629 +2974707 2979007 4301 499100.6982 499314.0345 41.2269 0.0012379 7.0048 run60.mat 101 3 2119 505671 506387 +2979334 2983809 4476 499330.2612 499552.3235 41.2248 -0.0072078 7.0012 run60.mat 101 3 2119 506442 507187 +2984128 2986713 2586 499568.2513 499698.5699 41.2247 -0.002216 7.0665 run60.mat 101 3 2119 507240 507671 +3054830 3061610 6781 503104.2043 503443.2922 41.2261 -0.007235 7.0001 run60.mat 101 3 2120 519025 520155 +3131036 3137975 6940 506916.4611 507262.2398 41.2256 -0.0021457 6.8068 run60.mat 111 3 2121 531726 532883 +3138230 3180527 42298 507274.8936 509389.953 41.229 -0.0023061 6.7724 run60.mat 111 3 2121 532925 539976 +3180848 3191046 10199 509406.1357 509914.1295 41.228 -0.0023765 6.7753 run60.mat 111 3 2121 540029 541728 +3191363 3210269 18907 509930.1138 510877.9135 41.2269 -0.0038485 6.7879 run60.mat 111 3 2121 541781 544933 +3210581 3216261 5681 510893.3927 511176.3578 41.2277 -0.0058833 6.7833 run60.mat 111 3 2121 544985 545931 +3216608 3218206 1599 511193.8548 511274.4316 41.2293 0.0061537 6.7394 run60.mat 111 3 2121 545989 546255 +3218531 3220162 1632 511290.8193 511372.9036 41.2249 -0.01727 6.8097 run60.mat 111 3 2121 546309 546581 +3220493 3226986 6494 511389.4568 511714.1693 41.2358 -0.0042368 6.7725 run60.mat 111 3 2121 546637 547719 +3297129 3303940 6812 515219.7095 515558.9344 41.227 -0.0093899 6.7951 run60.mat 111 3 2122 559410 560545 +3373137 3384517 11381 519020.6762 519590.2402 41.2252 -0.0052931 6.5984 run60.mat 121 3 2123 572078 573975 +3384767 3447937 63171 519602.6459 522759.6941 41.2284 -0.0028498 6.5757 run60.mat 121 3 2123 574017 584546 +3448188 3469129 20942 522772.2489 523821.5641 41.2264 -0.0017991 6.5902 run60.mat 121 3 2123 584587 588078 +3539277 3546097 6821 527328.1783 527670.0187 41.224 -0.0062255 6.6151 run60.mat 121 3 2124 599769 600906 +3615460 3709307 93848 531138.1377 535828.6511 41.2276 -0.0021149 6.4042 run60.mat 131 3 2125 612467 628109 +3709557 3711412 1856 535841.0544 535933.0865 41.2254 0.0013996 6.4119 run60.mat 131 3 2125 628151 628460 +3781386 3788252 6867 539433.5815 539778.5557 41.2243 -0.0011431 6.4397 run60.mat 131 3 2126 640123 641267 +3857566 3890437 32872 543241.7124 544885.3306 41.2291 -0.0055798 6.2407 run60.mat 141 3 2127 652820 658299 +3890741 3906085 15345 544900.413 545671.187 41.2279 -0.0028936 6.2417 run60.mat 141 3 2127 658349 660907 +3906338 3911445 5108 545683.8394 545937.7645 41.2314 -0.0038748 6.2538 run60.mat 141 3 2127 660949 661800 +3911700 3936917 25218 545950.4231 547211.1889 41.2242 -0.0039922 6.2412 run60.mat 141 3 2127 661843 666046 +3937167 3939726 2560 547223.6913 547351.0103 41.2329 -0.0063278 6.2425 run60.mat 141 3 2127 666087 666514 +3939977 3953530 13554 547363.4632 548041.8007 41.2266 -0.0028569 6.2538 run60.mat 141 3 2127 666556 668815 +4023674 4030556 6883 551547.5076 551892.3442 41.2189 -0.001184 6.2657 run60.mat 141 3 2128 680506 681653 +4099833 4106399 6567 555354.7631 555683.3347 41.2257 -0.0023475 6.1129 run60.mat 148.5537 3 2129 693200 694294 +4106649 4118588 11940 555695.7404 556293.1183 41.2268 -0.0015972 6.0917 run60.mat 151 3 2129 694335 696325 +4118839 4163588 44750 556305.701 558543.8231 41.2283 -0.0030117 6.0932 run60.mat 151 3 2129 696367 703826 +4163839 4172586 8748 558556.4769 558994.2056 41.2264 -0.00089433 6.1017 run60.mat 151 3 2129 703868 705325 +4172842 4195771 22930 559006.9091 560153.3716 41.227 -0.0034626 6.1006 run60.mat 151 3 2129 705368 709190 +4265818 4272695 6878 563655.7161 563999.6699 41.216 -0.0018194 6.1023 run60.mat 151 3 2130 720865 722011 +4344024 4430038 86015 567567.1099 571866.0597 41.2281 -0.0026273 5.9538 run60.mat 161 3 2131 733900 748236 +4430290 4439971 9682 571878.7664 572362.8306 41.229 -0.0031723 5.9647 run60.mat 161 3 2131 748278 749892 +4509937 4516812 6876 575862.9303 576204.8194 41.2213 -0.002861 5.967 run60.mat 161 3 2132 761554 762699 +4587932 4683891 95960 579761.1808 584558.4061 41.2272 -0.0028408 5.8288 run60.mat 171 3 2133 774553 790547 +4754033 4760920 6888 588066.5122 588409.6761 41.2189 -0.0044629 5.8288 run60.mat 171 3 2134 802238 803386 +4832063 4928026 95964 591968.2061 596768.7725 41.2275 -0.0027938 5.7106 run60.mat 181 3 2135 815243 831238 +4998195 5005080 6886 600276.4554 600619.6573 41.2244 -0.0038719 5.7201 run60.mat 181 3 2136 842933 844081 +5076281 5172209 95929 604180.5723 608977.9698 41.2271 -0.0027356 5.6012 run60.mat 191 3 2137 855948 871937 +5244286 5251205 6920 612580.4117 612928.0709 41.2224 -0.0034942 5.6198 run60.mat 191 3 2138 883951 885103 +5322506 5415990 93485 616494.0742 621167.1943 41.2263 -0.0024347 5.4576 run60.mat 201 3 2139 896987 912569 +5416241 5418429 2189 621179.6472 621288.2004 41.2348 -0.003391 5.4831 run60.mat 201 3 2139 912611 912976 +5488610 5495546 6937 624799.0576 625145.1016 41.2277 -0.0029145 5.4789 run60.mat 201 3 2140 924673 925829 +5566864 5662749 95886 628711.3794 633504.7472 41.2278 -0.0021608 5.3249 run60.mat 211 3 2141 937716 953697 +5734813 5741759 6947 637110.568 637456.3147 41.2265 -0.0028221 5.348 run60.mat 211 3 2142 965708 966866 +5813096 5908949 95854 641023.1143 645814.6739 41.228 -0.0022339 5.2012 run60.mat 221 3 2143 978756 994732 +5981012 5987931 6920 649417.1512 649763.9119 41.2297 -0.002536 5.209 run60.mat 221 3 2144 1006743 1007896 +284309 304699 20391 13238895.6297 13239918.382 82.462 -37.0193 92.7121 run7.mat -1 -1 2146 159529 169724 +305004 325714 20711 13239933.6349 13240969.4418 80.816 -37.0206 92.5011 run7.mat -1 -1 2146 169877 180232 +326021 346713 20693 13240984.7948 13242017.653 79.163 -37.0212 92.6187 run7.mat -1 -1 2146 180386 190732 +347023 367717 20695 13242033.156 13243066.5583 77.5127 -37.0201 92.5543 run7.mat -1 -1 2146 190887 201234 +368026 380092 12067 13243082.1392 13243685.6046 75.8597 -37.0194 92.7162 run7.mat -1 -1 2146 201389 207422 +464401 472016 7616 13247901.7458 13248281.5997 75.8579 -37.0197 93.188 run7.mat -1 -1 2147 249579 253386 +472338 493018 20681 13248297.7057 13249332.0094 74.2171 -37.0203 92.5416 run7.mat -1 -1 2147 253547 263888 +493327 514017 20691 13249347.4624 13250382.6925 72.5664 -37.0203 92.5506 run7.mat -1 -1 2147 264043 274388 +514327 535017 20691 13250397.9446 13251432.5864 70.9155 -37.021 92.597 run7.mat -1 -1 2147 274543 284888 +535326 555980 20655 13251448.1641 13252479.9387 69.2683 -37.0208 92.6733 run7.mat -1 -1 2147 285043 295370 +556285 560171 3887 13252495.1919 13252690.7856 67.6232 -37.0239 92.7273 run7.mat -1 -1 2147 295523 297466 +644192 660055 15864 13256891.2432 13257685.0343 67.6217 -37.0197 93.0758 run7.mat -1 -1 2148 339478 347410 +660379 681059 20681 13257701.3682 13258735.2997 65.9705 -37.0204 92.6295 run7.mat -1 -1 2148 347572 357912 +681364 702041 20678 13258750.4316 13259785.5949 64.3194 -37.0203 92.5942 run7.mat -1 -1 2148 358065 368404 +702347 723059 20713 13259801.0214 13260833.2139 62.6725 -37.0206 92.6343 run7.mat -1 -1 2148 368557 378914 +723365 740011 16647 13260848.6116 13261683.9688 61.0251 -37.021 92.6957 run7.mat -1 -1 2148 379067 387390 +824332 827495 3164 13265897.5729 13266057.0304 61.0294 -37.0162 95.6526 run7.mat -1 -1 2149 429552 431134 +827817 848498 20682 13266073.2636 13267105.75 59.3758 -37.0208 92.5188 run7.mat -1 -1 2149 431295 441636 +848805 869498 20694 13267121.1029 13268158.7245 57.729 -37.0203 92.5852 run7.mat -1 -1 2149 441789 452136 +869803 890476 20674 13268173.8565 13269204.9387 56.0761 -37.02 92.6238 run7.mat -1 -1 2149 452289 462625 +890784 911458 20675 13269220.4691 13270254.7067 54.4272 -37.0198 92.5876 run7.mat -1 -1 2149 462779 473117 +911766 920111 8346 13270270.2372 13270688.3656 52.7774 -37.0193 92.8131 run7.mat -1 -1 2149 473271 477444 +1004345 1015716 11372 13274900.1543 13275468.8648 52.7784 -37.0213 93.3197 run7.mat -1 -1 2150 519563 525248 +1016044 1036717 20674 13275485.2682 13276518.2362 51.1276 -37.0203 92.5968 run7.mat -1 -1 2150 525412 535749 +1037025 1057717 20693 13276533.52 13277569.4816 49.4782 -37.0189 92.5461 run7.mat -1 -1 2150 535904 546250 +1058027 1078699 20673 13277584.9848 13278616.4271 47.824 -37.0199 92.6297 run7.mat -1 -1 2150 546405 556741 +1079008 1099659 20652 13278632.0048 13279664.1926 46.1793 -37.0203 92.7313 run7.mat -1 -1 2150 556896 567222 +1099968 1100130 163 13279679.7703 13279687.9373 44.5215 -37.0308 92.9194 run7.mat -1 -1 2150 567376 567457 +1184203 1203877 19675 13283894.1643 13284874.8226 44.5271 -37.0196 92.9714 run7.mat -1 -1 2151 609496 619333 +1204204 1224881 20678 13284891.046 13285927.8475 42.875 -37.0209 92.628 run7.mat -1 -1 2151 619497 629835 +1225189 1245863 20675 13285943.2248 13286975.4135 41.2264 -37.0201 92.5275 run7.mat -1 -1 2151 629989 640327 +1246175 1266860 20686 13286991.1456 13288026.6415 39.5785 -37.02 92.5614 run7.mat -1 -1 2151 640483 650825 +1267166 1279971 12806 13288041.8261 13288683.1435 37.9312 -37.0202 92.9365 run7.mat -1 -1 2151 650978 657382 +1364281 1371276 6996 13292896.1039 13293246.8569 37.9307 -37.0212 93.74 run7.mat -1 -1 2152 699539 703036 +1371600 1392281 20682 13293263.1875 13294296.2003 36.2845 -37.0205 92.5113 run7.mat -1 -1 2152 703198 713539 +1392587 1413279 20693 13294311.7629 13295346.2729 34.6323 -37.0204 92.6545 run7.mat -1 -1 2152 713692 724039 +1413589 1434277 20689 13295361.6529 13296396.0695 32.9837 -37.02 92.5381 run7.mat -1 -1 2152 724194 734538 +1434585 1455243 20659 13296411.3533 13297445.761 31.3396 -37.0198 92.7295 run7.mat -1 -1 2152 734692 745022 +1455549 1460070 4522 13297461.1875 13297685.8025 29.6858 -37.0221 92.9548 run7.mat -1 -1 2152 745175 747435 +1544105 1559338 15234 13301888.2644 13302650.073 29.6916 -37.0205 93.0738 run7.mat -1 -1 2153 789454 797071 +1559656 1580340 20685 13302665.85 13303701.5895 28.0351 -37.0198 92.6186 run7.mat -1 -1 2153 797230 807573 +1580647 1601339 20693 13303716.9427 13304748.7816 26.3881 -37.0202 92.5493 run7.mat -1 -1 2153 807726 818073 +1601646 1622321 20676 13304764.2445 13305800.1571 24.739 -37.0212 92.6493 run7.mat -1 -1 2153 818226 828564 +1622629 1639889 17261 13305815.5601 13306676.8053 23.0884 -37.022 92.7107 run7.mat -1 -1 2153 828718 837349 +1724095 1726619 2525 13310888.4632 13311013.6864 23.0918 -37.0179 95.8252 run7.mat -1 -1 2154 879454 880716 +1726925 1747618 20694 13311028.868 13312065.5043 21.4348 -37.0217 92.5752 run7.mat -1 -1 2154 880869 891216 +1747927 1768619 20693 13312080.8347 13313114.0635 19.787 -37.0203 92.6491 run7.mat -1 -1 2154 891370 901717 +1768927 1789620 20694 13313129.4664 13314163.2458 18.1397 -37.0199 92.5723 run7.mat -1 -1 2154 901871 912218 +1789926 1810601 20676 13314178.6723 13315212.9534 16.4867 -37.0197 92.6381 run7.mat -1 -1 2154 912371 922708 +1810909 1819989 9081 13315228.4807 13315682.2775 14.8434 -37.0207 92.7111 run7.mat -1 -1 2154 922862 927402 +1903900 1914637 10738 13319876.98 13320414.8508 14.8392 -37.0203 93.6203 run7.mat -1 -1 2155 969360 974729 +1914943 1935654 20712 13320430.2773 13321467.055 13.1889 -37.0205 92.5199 run7.mat -1 -1 2155 974882 985237 +1935962 1956638 20677 13321482.4614 13322515.5326 11.5399 -37.0199 92.7283 run7.mat -1 -1 2155 985391 995730 +1956945 1977620 20676 13322530.8856 13323563.1993 9.8896 -37.0202 92.5985 run7.mat -1 -1 2155 995883 1006222 +1977928 1998596 20669 13323578.4831 13324613.9877 8.2434 -37.0206 92.7197 run7.mat -1 -1 2155 1006376 1016710 +1998907 1999789 883 13324629.4173 13324673.176 6.5888 -37.0168 92.3975 run7.mat -1 -1 2155 1016866 1017307 +2084045 2103019 18975 13328884.6951 13329835.492 6.5936 -37.0221 93.1751 run7.mat -1 -1 2156 1059436 1068924 +2103342 2124021 20680 13329851.6451 13330885.8517 4.9444 -37.021 92.5806 run7.mat -1 -1 2156 1069085 1079425 +2124329 2145019 20691 13330901.2547 13331935.0678 3.2973 -37.0201 92.5306 run7.mat -1 -1 2156 1079579 1089924 +2145329 2166001 20673 13331950.3359 13332982.5853 1.6499 -37.0198 92.631 run7.mat -1 -1 2156 1090079 1100416 +2166309 2179848 13540 13332997.8631 13333675.4719 0.002939 -37.0192 92.7468 run7.mat -1 -1 2156 1100570 1107340 +2263906 2270066 6161 13337878.935 13338185.144 0.0035109 -37.0182 93.663 run7.mat -1 -1 2157 1149371 1152451 +2270377 2291083 20707 13338200.8257 13339236.2 -1.6479 -37.0205 92.5389 run7.mat -1 -1 2157 1152606 1162960 +2291391 2312063 20673 13339251.6 13340286.4211 -3.2969 -37.0207 92.649 run7.mat -1 -1 2157 1163114 1173450 +2312369 2333063 20695 13340301.8475 13341338.4259 -4.9471 -37.0211 92.5581 run7.mat -1 -1 2157 1173603 1183951 +2333371 2354044 20674 13341353.8881 13342386.0905 -6.5918 -37.0194 92.6667 run7.mat -1 -1 2157 1184105 1194442 +2354351 2359689 5339 13342401.4469 13342668.3999 -8.2551 -37.0197 92.8912 run7.mat -1 -1 2157 1194596 1197265 +2443831 2458264 14434 13346876.0371 13347598.3362 -8.2489 -37.0184 93.114 run7.mat -1 -1 2158 1239338 1246554 +2458573 2479285 20713 13347613.9762 13348648.3263 -9.9007 -37.0198 92.4754 run7.mat -1 -1 2158 1246709 1257065 +2479591 2500284 20694 13348663.7528 13349696.9513 -11.5485 -37.0209 92.5531 run7.mat -1 -1 2158 1257218 1267565 +2500591 2521265 20675 13349712.3043 13350746.7655 -13.1947 -37.02 92.6347 run7.mat -1 -1 2158 1267718 1278056 +2521576 2539588 18013 13350762.444 13351664.6864 -14.8485 -37.0187 92.7362 run7.mat -1 -1 2158 1278211 1287218 +2623701 2625384 1684 13355869.6691 13355954.5148 -14.8488 -37.0253 96.2237 run7.mat -1 -1 2159 1329276 1330118 +2625713 2646385 20673 13355971.1 13357002.7844 -16.493 -37.0203 92.6315 run7.mat -1 -1 2159 1330282 1340619 +2646691 2667386 20696 13357017.969 13358051.9802 -18.1426 -37.0211 92.5876 run7.mat -1 -1 2159 1340772 1351119 +2667693 2688365 20673 13358067.4603 13359102.5234 -19.7889 -37.0211 92.6385 run7.mat -1 -1 2159 1351273 1361610 +2688672 2709347 20676 13359117.8763 13360151.1633 -21.4378 -37.0208 92.6299 run7.mat -1 -1 2159 1361763 1372101 +2709654 2719468 9815 13360166.6403 13360657.6649 -23.0895 -37.0207 92.6974 run7.mat -1 -1 2159 1372255 1377162 +2803686 2813604 9919 13364868.0839 13365364.0496 -23.0893 -37.0196 93.3054 run7.mat -1 -1 2160 1419273 1424232 +2813926 2834607 20682 13365380.2893 13366414.5715 -24.7361 -37.0209 92.5501 run7.mat -1 -1 2160 1424393 1434734 +2834913 2855612 20700 13366429.8779 13367463.4189 -26.3852 -37.0196 92.5908 run7.mat -1 -1 2160 1434887 1445237 +2855928 2876589 20662 13367479.1028 13368512.4131 -28.0318 -37.0195 92.7576 run7.mat -1 -1 2160 1445395 1455726 +2876897 2897563 20667 13368527.9435 13369561.7639 -29.6876 -37.0209 92.7662 run7.mat -1 -1 2160 1455880 1466213 +2897872 2899488 1617 13369577.3416 13369658.8096 -31.3386 -37.0192 93.0925 run7.mat -1 -1 2160 1466368 1467176 +2983650 3001766 18117 13373866.894 13374773.6975 -31.335 -37.0221 92.9333 run7.mat -1 -1 2161 1509258 1518317 +3002071 3022746 20676 13374788.8343 13375822.5312 -32.9843 -37.02 92.6329 run7.mat -1 -1 2161 1518470 1528807 +3023052 3043721 20670 13375837.7158 13376871.2112 -34.6316 -37.02 92.6391 run7.mat -1 -1 2161 1528960 1539295 +3044032 3064725 20694 13376886.6439 13377919.4301 -36.2872 -37.0208 92.6764 run7.mat -1 -1 2161 1539451 1549798 +3065033 3079408 14376 13377934.8333 13378654.7638 -37.9319 -37.0204 92.7832 run7.mat -1 -1 2161 1549952 1557140 +3163476 3168805 5330 13382858.4674 13383124.099 -37.939 -37.0192 94.2572 run7.mat -1 -1 2162 1599176 1601840 +3169111 3189806 20696 13383139.2806 13384174.4757 -39.5829 -37.0207 92.5891 run7.mat -1 -1 2162 1601993 1612341 +3190112 3210805 20694 13384189.9022 13385226.581 -41.2347 -37.0205 92.5717 run7.mat -1 -1 2162 1612494 1622841 +3211115 3231800 20686 13385242.087 13386276.5955 -42.8803 -37.0187 92.6024 run7.mat -1 -1 2162 1622996 1633339 +3232112 3252787 20676 13386292.0778 13387322.2193 -44.5347 -37.0189 92.6945 run7.mat -1 -1 2162 1633495 1643833 +3253094 3259267 6174 13387337.5757 13387646.3251 -46.1878 -37.0189 93.1471 run7.mat -1 -1 2162 1643986 1647073 +3343328 3356832 13505 13391849.1484 13392524.8581 -46.1809 -37.021 93.0346 run7.mat -1 -1 2163 1689105 1695858 +3357146 3377824 20679 13392540.662 13393574.7099 -47.8303 -37.0214 92.592 run7.mat -1 -1 2163 1696015 1706354 +3378133 3398825 20693 13393590.1632 13394625.8102 -49.4808 -37.021 92.5826 run7.mat -1 -1 2163 1706509 1716855 +3399134 3419826 20693 13394641.388 13395677.3308 -51.1302 -37.0212 92.6115 run7.mat -1 -1 2163 1717010 1727356 +3420134 3439087 18954 13395692.7338 13396639.9449 -52.7762 -37.0206 92.8226 run7.mat -1 -1 2163 1727510 1736987 +3523276 3524145 870 13400849.0191 13400891.8189 -52.78 -37.0146 100.6556 run7.mat -1 -1 2164 1779083 1779518 +3524466 3545146 20681 13400907.6287 13401942.3071 -54.4248 -37.0215 92.6644 run7.mat -1 -1 2164 1779678 1790019 +3545451 3566147 20697 13401957.6832 13402993.0734 -56.0734 -37.0217 92.5983 run7.mat -1 -1 2164 1790171 1800520 +3566455 3587146 20692 13403008.6007 13404043.614 -57.7274 -37.0206 92.6097 run7.mat -1 -1 2164 1800674 1811020 +3587453 3608126 20674 13404058.8452 13405092.4828 -59.3725 -37.0213 92.6073 run7.mat -1 -1 2164 1811173 1821510 +3608433 3619167 10735 13405107.714 13405641.9441 -61.0212 -37.019 92.8396 run7.mat -1 -1 2164 1821664 1827031 +3703208 3712166 8959 13409845.3011 13410295.0131 -61.022 -37.0198 93.3359 run7.mat -1 -1 2165 1869053 1873532 +3712501 3733167 20667 13410311.9016 13411343.6298 -62.6725 -37.0213 92.5626 run7.mat -1 -1 2165 1873700 1884034 +3733474 3754171 20698 13411359.1067 13412392.563 -64.3199 -37.0199 92.5431 run7.mat -1 -1 2165 1884187 1894536 +3754488 3775166 20679 13412408.5441 13413444.0717 -65.9711 -37.0204 92.6028 run7.mat -1 -1 2165 1894695 1905034 +3775474 3796128 20655 13413459.4749 13414490.4309 -67.6211 -37.0207 92.7522 run7.mat -1 -1 2165 1905188 1915515 +3796435 3798985 2551 13414505.7838 13414633.8415 -69.2736 -37.0218 93.152 run7.mat -1 -1 2165 1915669 1916944 +3883099 3900368 17270 13418841.0962 13419702.7696 -69.2753 -37.02 92.9297 run7.mat -1 -1 2166 1959003 1967638 +3900677 3921378 20702 13419718.2225 13420754.9837 -70.9183 -37.0206 92.5659 run7.mat -1 -1 2166 1967792 1978143 +3921694 3942369 20676 13420770.7273 13421802.925 -72.5744 -37.0197 92.6428 run7.mat -1 -1 2166 1978301 1988639 +3942676 3963368 20693 13421818.1592 13422854.5373 -74.2229 -37.02 92.6306 run7.mat -1 -1 2166 1988793 1999139 +3963675 3978826 15152 13422869.9515 13423627.6522 -75.8725 -37.0197 92.7361 run7.mat -1 -1 2166 1999293 2006868 +4062917 4067425 4509 13427830.7079 13428057.163 -75.8763 -37.0206 94.1821 run7.mat -1 -1 2167 2048916 2051170 +4067748 4088427 20680 13428073.4498 13429106.4776 -77.5188 -37.0218 92.5547 run7.mat -1 -1 2167 2051332 2061671 +4088735 4109428 20694 13429121.7614 13430158.4078 -79.1681 -37.0199 92.5746 run7.mat -1 -1 2167 2061825 2072172 +4109735 4130426 20692 13430173.639 13431206.1574 -80.8184 -37.0219 92.5676 run7.mat -1 -1 2167 2072326 2082672 +4130736 4151388 20653 13431221.5374 13432253.6614 -82.4645 -37.0202 92.6299 run7.mat -1 -1 2167 2082827 2093153 +4151696 4158705 7010 13432269.1887 13432619.3683 -82.4679 -35.3389 92.8531 run7.mat -1 -1 2167 2093307 2096812 +4242890 4255711 12822 13436829.4426 13437469.835 -82.4635 -35.3375 93.2648 run7.mat -1 -1 2168 2138906 2145317 +4256029 4276727 20699 13437485.8697 13438521.8647 -80.8166 -35.3374 92.6016 run7.mat -1 -1 2168 2145476 2155826 +4277033 4297708 20676 13438537.0462 13439571.0559 -79.1692 -35.337 92.6126 run7.mat -1 -1 2168 2155979 2166316 +4298016 4318710 20695 13439586.5832 13440620.2367 -77.5143 -35.337 92.6091 run7.mat -1 -1 2168 2166470 2176818 +4319014 4338784 19771 13440635.4399 13441623.1823 -75.8651 -35.3366 92.7512 run7.mat -1 -1 2168 2176970 2186855 +4423139 4443768 20630 13445842.0265 13446872.4558 -74.2185 -35.337 92.6873 run7.mat -1 -1 2169 2229035 2239350 +4444079 4464770 20692 13446888.0716 13447924.78 -72.5684 -35.3375 92.6594 run7.mat -1 -1 2169 2239505 2249851 +4465080 4485753 20674 13447940.4081 13448974.6418 -70.92 -35.3372 92.6136 run7.mat -1 -1 2169 2250006 2260343 +4486064 4506749 20686 13448990.1978 13450022.6641 -69.2663 -35.3369 92.5829 run7.mat -1 -1 2169 2260498 2270841 +4507056 4518644 11589 13450038.02 13450618.5938 -67.6237 -35.3369 92.6225 run7.mat -1 -1 2169 2270995 2276789 +4602666 4610834 8169 13454819.4259 13455227.3255 -67.6208 -35.3395 93.5657 run7.mat -1 -1 2170 2318802 2322886 +4611147 4631831 20685 13455242.9011 13456275.4055 -65.9772 -35.3366 92.6334 run7.mat -1 -1 2170 2323043 2333385 +4632136 4652811 20676 13456290.6584 13457326.6268 -64.323 -35.3367 92.5726 run7.mat -1 -1 2170 2333538 2343875 +4653118 4673812 20695 13457341.9827 13458375.8425 -62.677 -35.3368 92.6005 run7.mat -1 -1 2170 2344029 2354377 +4674121 4694791 20671 13458391.4202 13459426.2311 -61.0263 -35.3369 92.7558 run7.mat -1 -1 2170 2354531 2364867 +4695097 4698484 3388 13459441.5343 13459610.5459 -59.3767 -35.3366 93.0011 run7.mat -1 -1 2170 2365020 2366713 +4782588 4798935 16348 13463816.2593 13464633.7907 -59.3784 -35.3366 93.1847 run7.mat -1 -1 2171 2408767 2416941 +4799251 4819931 20681 13464649.5968 13465683.6195 -57.728 -35.3381 92.6161 run7.mat -1 -1 2171 2417099 2427439 +4820238 4840910 20673 13465699.1583 13466730.5559 -56.0784 -35.3371 92.5831 run7.mat -1 -1 2171 2427593 2437929 +4841217 4861911 20695 13466745.7871 13467780.4666 -54.4273 -35.337 92.5639 run7.mat -1 -1 2171 2438083 2448430 +4862216 4878364 16149 13467795.6514 13468603.2786 -52.776 -35.3366 92.8306 run7.mat -1 -1 2171 2448583 2456657 +4962462 4966033 3572 13472811.075 13472989.1062 -52.7746 -35.3366 94.4583 run7.mat -1 -1 2172 2498708 2500494 +4966342 4987010 20669 13473004.4979 13474037.6281 -51.1264 -35.3358 92.4849 run7.mat -1 -1 2172 2500648 2510982 +4987320 5008012 20693 13474053.2594 13475086.2525 -49.4755 -35.3369 92.6018 run7.mat -1 -1 2172 2511137 2521484 +5008317 5029003 20687 13475101.6317 13476134.4232 -47.8273 -35.3372 92.6325 run7.mat -1 -1 2172 2521636 2531980 +5029314 5049990 20677 13476150.1049 13477184.8819 -46.1771 -35.3372 92.6574 run7.mat -1 -1 2172 2532135 2542474 +5050296 5058244 7949 13477200.0635 13477596.6042 -44.536 -35.34 92.8864 run7.mat -1 -1 2172 2542627 2546601 +5142347 5154196 11850 13481803.7318 13482395.999 -44.53 -35.3377 93.4804 run7.mat -1 -1 2173 2588655 2594579 +5154510 5175188 20679 13482411.5775 13483445.0028 -42.8791 -35.3367 92.5201 run7.mat -1 -1 2173 2594736 2605076 +5175499 5196180 20682 13483460.6814 13484494.9274 -41.229 -35.337 92.657 run7.mat -1 -1 2173 2605231 2615572 +5196490 5217170 20681 13484510.3074 13485544.2427 -39.582 -35.3366 92.5574 run7.mat -1 -1 2173 2615727 2626067 +5217476 5238123 20648 13485559.4243 13486594.6301 -37.9328 -35.3375 92.769 run7.mat -1 -1 2173 2626220 2636545 +5322082 5342257 20176 13490789.8574 13491798.8806 -36.2869 -35.3368 93.0503 run7.mat -1 -1 2174 2678526 2688614 +5342579 5363249 20671 13491814.984 13492846.7394 -34.6341 -35.3362 92.6041 run7.mat -1 -1 2174 2688775 2699110 +5363557 5384230 20674 13492862.1423 13493899.0512 -32.9866 -35.3377 92.5464 run7.mat -1 -1 2174 2699264 2709601 +5384538 5405232 20695 13493914.4541 13494947.7761 -31.34 -35.3359 92.6034 run7.mat -1 -1 2174 2709755 2720102 +5405538 5417983 12446 13494963.2057 13495585.5977 -29.6914 -35.3367 92.7682 run7.mat -1 -1 2174 2720255 2726478 +5502098 5509458 7361 13499790.952 13500161.0637 -29.6923 -35.3368 93.5437 run7.mat -1 -1 2175 2768538 2772218 +5509770 5530453 20684 13500176.4944 13501209.1068 -28.0384 -35.3363 92.5165 run7.mat -1 -1 2175 2772374 2782716 +5530767 5551449 20683 13501224.8098 13502259.2328 -26.3887 -35.3366 92.5901 run7.mat -1 -1 2175 2782873 2793214 +5551755 5572449 20695 13502274.5387 13503310.5879 -24.743 -35.3366 92.5882 run7.mat -1 -1 2175 2793367 2803715 +5572756 5593411 20656 13503325.8222 13504357.9854 -23.0934 -35.3382 92.7554 run7.mat -1 -1 2175 2803868 2814196 +5593717 5597983 4267 13504373.2883 13504586.6318 -21.4407 -35.337 92.8005 run7.mat -1 -1 2175 2814349 2816482 +5682078 5697532 15455 13508789.481 13509564.4207 -21.4357 -35.3371 92.9891 run7.mat -1 -1 2176 2858531 2866259 +5697858 5718510 20653 13509580.7241 13510612.4295 -19.7883 -35.3371 92.5979 run7.mat -1 -1 2176 2866422 2876749 +5718820 5739509 20690 13510627.8126 13511661.8796 -18.1405 -35.337 92.6203 run7.mat -1 -1 2176 2876904 2887248 +5739816 5760491 20676 13511677.2355 13512709.3008 -16.4921 -35.337 92.6253 run7.mat -1 -1 2176 2887402 2897740 +5760800 5777862 17063 13512724.7538 13513579.0077 -14.8397 -35.3367 92.6916 run7.mat -1 -1 2176 2897894 2906426 +5863756 5866475 2720 13517872.9263 13518008.9027 -14.8497 -35.3395 94.895 run7.mat -1 -1 2177 2949375 2950734 +5866793 5887467 20675 13518024.806 13519061.3328 -13.1879 -35.3366 92.5607 run7.mat -1 -1 2177 2950893 2961231 +5887775 5908453 20679 13519076.8633 13520110.2978 -11.5438 -35.3369 92.5834 run7.mat -1 -1 2177 2961385 2971724 +5908764 5929443 20680 13520125.8538 13521158.7428 -9.8922 -35.3368 92.5561 run7.mat -1 -1 2177 2971879 2982219 +5929755 5950427 20673 13521174.4143 13522206.9047 -8.2447 -35.3369 92.6609 run7.mat -1 -1 2177 2982375 2992712 +5950737 5959582 8846 13522222.2878 13522665.8524 -6.5961 -35.3379 92.8759 run7.mat -1 -1 2177 2992867 2997290 +6043651 6054536 10886 13526869.0196 13527413.5112 -6.5965 -35.336 93.4645 run7.mat -1 -1 2178 3039326 3044769 +6054852 6075530 20679 13527429.4418 13528462.7807 -4.9481 -35.3374 92.5149 run7.mat -1 -1 2178 3044927 3055266 +6075836 6096532 20697 13528477.9623 13529512.7489 -3.2978 -35.3362 92.6312 run7.mat -1 -1 2178 3055419 3065768 +6096839 6117530 20692 13529528.1835 13530564.6144 -1.6514 -35.3374 92.596 run7.mat -1 -1 2178 3065922 3076267 +6117839 6138473 20635 13530579.9448 13531611.0631 -0.0037326 -35.3364 92.6543 run7.mat -1 -1 2178 3076422 3086739 +6138790 6139462 673 13531627.0442 13531660.922 1.6587 -35.3346 91.7551 run7.mat -1 -1 2178 3086898 3087234 +6223534 6242595 19062 13535864.0655 13536816.7053 1.644 -35.337 92.8892 run7.mat -1 -1 2179 3129272 3138802 +6242911 6263591 20681 13536832.5084 13537866.812 3.2957 -35.3372 92.5223 run7.mat -1 -1 2179 3138960 3149301 +6263897 6284587 20691 13537882.1152 13538914.9223 4.9437 -35.3371 92.6064 run7.mat -1 -1 2179 3149454 3159800 +6284898 6305571 20674 13538930.4753 13539966.3328 6.5908 -35.3366 92.5967 run7.mat -1 -1 2179 3159955 3170292 +6305878 6319321 13444 13539981.686 13540654.3421 8.2448 -35.3381 92.8461 run7.mat -1 -1 2179 3170445 3177167 +6403571 6409918 6348 13544868.4005 13545183.3148 8.2486 -35.3376 93.7639 run7.mat -1 -1 2180 3219294 3222467 +6410230 6430897 20668 13545198.7971 13546232.4682 9.8961 -35.3379 92.5782 run7.mat -1 -1 2180 3222623 3232958 +6431210 6451892 20683 13546248.2476 13547282.3899 11.5432 -35.3361 92.5602 run7.mat -1 -1 2180 3233114 3243455 +6452199 6472891 20693 13547297.7431 13548332.5929 13.1954 -35.3363 92.6289 run7.mat -1 -1 2180 3243609 3253955 +6473198 6493873 20676 13548347.9488 13549381.9629 14.8437 -35.3368 92.6866 run7.mat -1 -1 2180 3254109 3264447 +6494181 6499321 5141 13549397.3693 13549653.9589 16.4924 -35.3372 92.741 run7.mat -1 -1 2180 3264601 3267171 +6583423 6597961 14539 13553859.7178 13554586.4586 16.4923 -35.3355 93.0169 run7.mat -1 -1 2181 3309224 3316493 +6598288 6618970 20683 13554602.9437 13555633.682 18.1441 -35.3361 92.6514 run7.mat -1 -1 2181 3316657 3326999 +6619278 6639955 20678 13555649.3256 13556686.0273 19.788 -35.337 92.5872 run7.mat -1 -1 2181 3327153 3337491 +6640264 6660952 20689 13556701.2461 13557734.3224 21.4384 -35.3373 92.5895 run7.mat -1 -1 2181 3337646 3347990 +6661258 6679182 17925 13557749.5069 13558646.898 23.0897 -35.3375 92.7842 run7.mat -1 -1 2181 3348143 3357105 +6763415 6765183 1769 13562858.7415 13562946.8083 23.0926 -35.3335 95.7865 run7.mat -1 -1 2182 3399224 3400108 +6765511 6786192 20682 13562963.0814 13563996.5014 24.7404 -35.3367 92.6032 run7.mat -1 -1 2182 3400272 3410613 +6786501 6807174 20674 13564012.0823 13565045.1734 26.3837 -35.3374 92.5986 run7.mat -1 -1 2182 3410767 3421104 +6807480 6828172 20693 13565060.4766 13566097.3671 28.0336 -35.3364 92.5599 run7.mat -1 -1 2182 3421257 3431603 +6828478 6849152 20675 13566112.673 13567144.2463 29.6847 -35.338 92.6743 run7.mat -1 -1 2182 3431756 3442094 +6849462 6859221 9760 13567159.5172 13567649.0403 31.3318 -35.3366 92.8984 run7.mat -1 -1 2182 3442249 3447129 +6943180 6953225 10046 13571847.6419 13572348.5783 31.3335 -35.3356 93.6131 run7.mat -1 -1 2183 3489110 3494133 +6953543 6974216 20674 13572364.6739 13573399.1742 32.9792 -35.3376 92.5369 run7.mat -1 -1 2183 3494292 3504629 +6974533 6995213 20681 13573415.1553 13574449.6149 34.6303 -35.3366 92.5582 run7.mat -1 -1 2183 3504788 3515128 +6995520 7016195 20676 13574464.8491 13575497.3977 36.2826 -35.3365 92.5653 run7.mat -1 -1 2183 3515281 3525620 +7016505 7037174 20670 13575513.0258 13576544.8891 37.9316 -35.3371 92.6209 run7.mat -1 -1 2183 3525775 3536110 +7037481 7039081 1601 13576560.3629 13576641.0081 39.5829 -35.3398 93.2356 run7.mat -1 -1 2183 3536263 3537063 +7123297 7141520 18224 13580853.5829 13581763.7615 39.5835 -35.3366 93.0064 run7.mat -1 -1 2184 3579173 3588285 +7141837 7162498 20662 13581779.4888 13582813.114 41.2316 -35.3374 92.6156 run7.mat -1 -1 2184 3588443 3598774 +7162804 7183513 20710 13582828.4172 13583864.1246 42.8801 -35.3363 92.66 run7.mat -1 -1 2184 3598927 3609282 +7183821 7204496 20676 13583879.5278 13584912.4837 44.5331 -35.3377 92.6599 run7.mat -1 -1 2184 3609436 3619774 +7204805 7219180 14376 13584927.9367 13585646.8812 46.1776 -35.3369 92.7048 run7.mat -1 -1 2184 3619928 3627117 +7303177 7308501 5325 13589846.4171 13590114.0687 46.1839 -35.3368 93.726 run7.mat -1 -1 2185 3669117 3671771 +7308807 7329498 20692 13590129.3716 13591162.7414 47.8274 -35.3371 92.5149 run7.mat -1 -1 2185 3671932 3682278 +7329807 7350498 20692 13591178.259 13592214.9328 49.4727 -35.337 92.5379 run7.mat -1 -1 2185 3682432 3692778 +7350805 7371488 20684 13592230.4098 13593263.199 51.1292 -35.3361 92.6323 run7.mat -1 -1 2185 3692932 3703274 +7371800 7392456 20657 13593278.7164 13594311.5106 52.7742 -35.337 92.6882 run7.mat -1 -1 2185 3703430 3713758 +7392768 7398958 6191 13594326.9899 13594635.9911 54.4203 -35.34 92.7661 run7.mat -1 -1 2185 3713914 3717009 +7483195 7496807 13613 13598847.3646 13599527.9641 54.4238 -35.3382 93.1274 run7.mat -1 -1 2186 3759130 3765936 +7497119 7517818 20700 13599543.4433 13600580.4824 56.0688 -35.3376 92.6194 run7.mat -1 -1 2186 3766092 3776442 +7518125 7538798 20674 13600595.7136 13601628.5684 57.7231 -35.3367 92.6357 run7.mat -1 -1 2186 3776596 3786932 +7539108 7559799 20692 13601644.1997 13602676.3726 59.3743 -35.3375 92.564 run7.mat -1 -1 2186 3787087 3797433 +7560109 7579040 18932 13602691.8756 13603641.0955 61.0213 -35.3374 92.6809 run7.mat -1 -1 2186 3797588 3807054 +7663340 7664129 790 13607857.3308 13607896.4755 61.0244 -35.3401 100.4294 run7.mat -1 -1 2187 3849206 3849601 +7664441 7685103 20663 13607911.9548 13608943.1395 62.6711 -35.3374 92.6875 run7.mat -1 -1 2187 3849757 3860088 +7685410 7706101 20692 13608958.3707 13609993.9014 64.321 -35.3368 92.5028 run7.mat -1 -1 2187 3860242 3870588 +7706408 7727102 20695 13610009.1326 13611043.8121 65.9727 -35.3363 92.5645 run7.mat -1 -1 2187 3870741 3881089 +7727408 7748081 20674 13611058.9936 13612094.8027 67.6218 -35.3382 92.5839 run7.mat -1 -1 2187 3881242 3891579 +7748390 7759119 10730 13612110.2556 13612646.4951 69.2722 -35.337 92.8439 run7.mat -1 -1 2187 3891733 3897098 +7843204 7852278 9075 13616848.0942 13617301.0227 69.2695 -35.3373 93.6836 run7.mat -1 -1 2188 3939142 3943679 +7852590 7873282 20693 13617316.6287 13618353.6137 70.9181 -35.3373 92.578 run7.mat -1 -1 2188 3943835 3954182 +7873589 7894282 20694 13618368.8466 13619401.5694 72.5725 -35.3362 92.6711 run7.mat -1 -1 2188 3954335 3964682 +7894591 7915266 20676 13619416.8998 13620452.6114 74.2181 -35.3366 92.5838 run7.mat -1 -1 2188 3964837 3975174 +7915576 7936242 20667 13620467.9944 13621500.4247 75.8671 -35.3366 92.8335 run7.mat -1 -1 2188 3975329 3985663 +7936549 7938999 2451 13621515.7776 13621638.3534 77.523 -35.3319 92.8548 run7.mat -1 -1 2188 3985817 3987041 +8023076 8040345 17270 13625841.9131 13626704.5006 77.5138 -35.3365 93.0005 run7.mat -1 -1 2189 4029082 4037717 +8040667 8061347 20681 13626720.737 13627755.3276 79.1657 -35.3365 92.571 run7.mat -1 -1 2189 4037878 4048218 +8061654 8082341 20688 13627770.8076 13628805.5313 80.8135 -35.3365 92.5958 run7.mat -1 -1 2189 4048372 4058716 +8082646 8102975 20330 13628820.9104 13629836.2882 82.4629 -35.3375 92.5422 run7.mat -1 -1 2189 4058868 4069033 +301432 322019 20588 13912629.109 13913657.279 82.4616 -33.6572 93.0408 run8.mat -1 -1 2191 170647 180941 +322325 343020 20696 13913672.5213 13914709.2976 80.8173 -33.6572 92.6166 run8.mat -1 -1 2191 181094 191442 +343328 363999 20672 13914724.7014 13915758.6072 79.1647 -33.6577 92.5536 run8.mat -1 -1 2191 191596 201933 +364306 384981 20676 13915773.9602 13916806.5193 77.513 -33.6571 92.6096 run8.mat -1 -1 2191 202086 212424 +385291 397313 12023 13916822.1474 13917422.6799 75.8632 -33.6571 92.7852 run8.mat -1 -1 2191 212579 218590 +481602 489277 7676 13921638.16 13922021.1537 75.864 -33.6576 93.5015 run8.mat -1 -1 2192 260736 264574 +489613 510297 20685 13922037.9569 13923072.9821 74.215 -33.6572 92.547 run8.mat -1 -1 2192 264742 275085 +510605 531280 20676 13923088.5094 13924120.8207 72.5677 -33.657 92.6486 run8.mat -1 -1 2192 275239 285576 +531586 552277 20692 13924136.1237 13925171.819 70.9171 -33.6568 92.6245 run8.mat -1 -1 2192 285729 296076 +552584 573240 20657 13925187.0532 13926220.9411 69.2674 -33.6576 92.7612 run8.mat -1 -1 2192 296229 306558 +573546 577373 3828 13926236.3676 13926426.977 67.6096 -33.6572 93.0972 run8.mat -1 -1 2192 306711 308624 +661498 677377 15880 13930633.2317 13931427.779 67.6207 -33.6577 92.9467 run8.mat -1 -1 2193 350689 358628 +677699 698379 20681 13931444.0121 13932477.0221 65.9732 -33.6574 92.5819 run8.mat -1 -1 2193 358789 369130 +698687 719381 20695 13932492.4285 13933525.3907 64.3202 -33.6582 92.5712 run8.mat -1 -1 2193 369284 379631 +719685 740363 20679 13933540.5936 13934576.7009 62.6725 -33.6578 92.6188 run8.mat -1 -1 2193 379783 390123 +740674 757272 16599 13934592.1306 13935422.688 61.0261 -33.657 92.8041 run8.mat -1 -1 2193 390278 398578 +841550 844758 3209 13939634.8084 13939796.5346 61.0203 -33.6575 95.3308 run8.mat -1 -1 2194 440718 442322 +845079 865780 20702 13939812.7173 13940846.2603 59.3765 -33.6568 92.6161 run8.mat -1 -1 2194 442483 452834 +866086 886771 20686 13940861.6868 13941897.0598 57.728 -33.6572 92.6241 run8.mat -1 -1 2194 452987 463330 +887086 907762 20677 13941912.8128 13942946.0893 56.0738 -33.6572 92.564 run8.mat -1 -1 2194 463487 473826 +908069 928740 20672 13942961.3235 13943995.1914 54.4255 -33.6564 92.6452 run8.mat -1 -1 2194 473979 484315 +929049 937332 8284 13944010.7691 13944423.8141 52.774 -33.6573 92.7089 run8.mat -1 -1 2194 484470 488612 +1021589 1033040 11452 13948638.6313 13949209.5197 52.7788 -33.6577 93.433 run8.mat -1 -1 2195 530742 536468 +1033347 1054062 20716 13949224.8727 13950261.6716 51.125 -33.6573 92.5518 run8.mat -1 -1 2195 536621 546979 +1054368 1075040 20673 13950276.8531 13951310.5404 49.4736 -33.6575 92.6237 run8.mat -1 -1 2195 547132 557468 +1075346 1096040 20695 13951325.722 13952360.4511 47.8227 -33.6573 92.6554 run8.mat -1 -1 2195 557621 567969 +1096349 1117001 20653 13952375.7832 13953408.4765 46.1767 -33.6569 92.7915 run8.mat -1 -1 2195 568123 578450 +1117309 1117411 103 13953423.7573 13953428.8178 44.514 -33.6611 98.1337 run8.mat -1 -1 2195 578604 578655 +1201682 1221481 19800 13957642.7122 13958633.0327 44.5301 -33.6572 93.0934 run8.mat -1 -1 2196 620792 630692 +1221786 1242467 20682 13958648.1647 13959682.212 42.8749 -33.6574 92.5391 run8.mat -1 -1 2196 630845 641186 +1242788 1263465 20678 13959698.1409 13960732.9837 41.2294 -33.6575 92.5421 run8.mat -1 -1 2196 641346 651685 +1263770 1284450 20681 13960748.1187 13961783.4185 39.5805 -33.658 92.6035 run8.mat -1 -1 2196 651837 662178 +1284762 1297511 12750 13961799.025 13962434.1052 37.9357 -33.6576 92.8751 run8.mat -1 -1 2196 662334 668709 +1381883 1388822 6940 13966654.2288 13966999.3134 37.9329 -33.6566 93.5143 run8.mat -1 -1 2197 710897 714366 +1389143 1409825 20683 13967015.2391 13968050.3287 36.2857 -33.6578 92.5108 run8.mat -1 -1 2197 714527 724868 +1410131 1430823 20693 13968065.7552 13969101.0464 34.6334 -33.6568 92.623 run8.mat -1 -1 2197 725021 735368 +1431131 1451805 20675 13969116.4493 13970150.1211 32.9863 -33.6572 92.5595 run8.mat -1 -1 2197 735522 745859 +1452109 1472785 20677 13970165.2064 13971199.6666 31.3367 -33.6574 92.7206 run8.mat -1 -1 2197 746011 756350 +1473093 1477650 4558 13971215.0698 13971442.966 29.6849 -33.6591 92.8663 run8.mat -1 -1 2197 756504 758782 +1561941 1577124 15184 13975657.1989 13976416.5448 29.688 -33.6579 93.0738 run8.mat -1 -1 2198 800930 808522 +1577450 1598124 20675 13976432.7186 13977464.7516 28.033 -33.6565 92.609 run8.mat -1 -1 2198 808685 819022 +1598431 1619124 20694 13977480.3684 13978515.4797 26.3898 -33.6572 92.5842 run8.mat -1 -1 2198 819175 829523 +1619432 1640104 20673 13978530.8827 13979564.7392 24.7341 -33.6569 92.7445 run8.mat -1 -1 2198 829677 840013 +1640414 1657711 17298 13979580.2422 13980444.5979 23.0893 -33.6572 92.8103 run8.mat -1 -1 2198 840168 848817 +1741752 1744264 2513 13984647.2342 13984771.8869 23.0906 -33.6575 96.3962 run8.mat -1 -1 2199 890839 892095 +1744587 1765266 20680 13984787.915 13985822.8328 21.4346 -33.6574 92.5638 run8.mat -1 -1 2199 892256 902597 +1765571 1786264 20694 13985838.2089 13986871.8849 19.7832 -33.6567 92.7327 run8.mat -1 -1 2199 902749 913096 +1786573 1807228 20656 13986887.2153 13987918.4211 18.1365 -33.658 92.6127 run8.mat -1 -1 2199 913251 923579 +1807535 1828228 20694 13987933.9599 13988969.4147 16.491 -33.6569 92.6952 run8.mat -1 -1 2199 923732 934079 +1828533 1837650 9118 13988984.6676 13989441.0032 14.8397 -33.6572 92.8106 run8.mat -1 -1 2199 934232 938790 +1921988 1932683 10696 13993657.8043 13994192.4535 14.8413 -33.6575 93.5324 run8.mat -1 -1 2200 980961 986309 +1933010 1953666 20657 13994208.8103 13995242.4291 13.1913 -33.6575 92.5539 run8.mat -1 -1 2200 986472 996801 +1953976 1974667 20692 13995258.0573 13996293.3193 11.5425 -33.6573 92.6477 run8.mat -1 -1 2200 996956 1007302 +1974974 1995665 20692 13996308.5505 13997342.466 9.8952 -33.6578 92.6407 run8.mat -1 -1 2200 1007455 1017801 +1995971 2016625 20655 13997357.7724 13998392.6921 8.2445 -33.6573 92.6854 run8.mat -1 -1 2200 1017954 1028282 +2016935 2017750 816 13998408.195 13998448.8343 6.6054 -33.6546 92.6504 run8.mat -1 -1 2200 1028437 1028844 +2102077 2121124 19048 14002661.8281 14003615.2823 6.5967 -33.6576 92.9509 run8.mat -1 -1 2201 1071009 1080533 +2121445 2142105 20661 14003631.465 14004665.3905 4.9442 -33.6573 92.5759 run8.mat -1 -1 2201 1080694 1091024 +2142412 2163110 20699 14004680.7434 14005715.8504 3.2992 -33.6567 92.64 run8.mat -1 -1 2201 1091178 1101527 +2163424 2184109 20686 14005731.5569 14006764.1227 1.6487 -33.6577 92.562 run8.mat -1 -1 2201 1101684 1112027 +2184413 2197850 13438 14006779.3286 14007452.4015 0.0027516 -33.6577 92.7149 run8.mat -1 -1 2201 1112179 1118898 +2281836 2288191 6356 14011650.7822 14011968.6395 -0.0044987 -33.6562 93.7821 run8.mat -1 -1 2202 1160893 1164071 +2288506 2309209 20704 14011984.3955 14013018.1912 -1.6504 -33.6578 92.5627 run8.mat -1 -1 2202 1164228 1174580 +2309517 2330211 20695 14013033.7806 14014070.5907 -3.2992 -33.6578 92.6222 run8.mat -1 -1 2202 1174734 1185081 +2330517 2351210 20694 14014085.7753 14015121.4018 -4.9465 -33.6567 92.5959 run8.mat -1 -1 2202 1185234 1195582 +2351515 2372170 20656 14015136.6582 14016168.4986 -6.5981 -33.6576 92.7116 run8.mat -1 -1 2202 1195734 1206062 +2372477 2377729 5253 14016183.7328 14016447.1775 -8.2494 -33.6569 93.0242 run8.mat -1 -1 2202 1206215 1208842 +2462025 2476508 14484 14020661.5086 14021385.9301 -8.2498 -33.6573 93.0983 run8.mat -1 -1 2203 1250991 1258233 +2476813 2497528 20716 14021401.0621 14022437.4576 -9.898 -33.6565 92.4925 run8.mat -1 -1 2203 1258386 1268744 +2497835 2518511 20677 14022452.9345 14023484.2562 -11.5448 -33.6573 92.6689 run8.mat -1 -1 2203 1268897 1279235 +2518818 2539489 20672 14023499.3793 14024534.7231 -13.1922 -33.6571 92.6656 run8.mat -1 -1 2203 1279389 1289725 +2539795 2557829 18035 14024549.9591 14025451.3394 -14.8456 -33.6574 92.8524 run8.mat -1 -1 2203 1289878 1298896 +2642381 2644166 1786 14029677.6789 14029766.9475 -14.8512 -33.6564 96.7517 run8.mat -1 -1 2204 1341173 1342066 +2644490 2665150 20661 14029783.1516 14030818.2221 -16.4915 -33.6577 92.6421 run8.mat -1 -1 2204 1342228 1352558 +2665456 2686148 20693 14030833.4037 14031867.1589 -18.1396 -33.6577 92.573 run8.mat -1 -1 2204 1352711 1363058 +2686457 2707151 20695 14031882.7366 14032918.7797 -19.7865 -33.6574 92.5586 run8.mat -1 -1 2204 1363212 1373560 +2707456 2728131 20676 14032934.1589 14033966.1393 -21.4371 -33.6576 92.6632 run8.mat -1 -1 2204 1373712 1384050 +2728438 2738128 9691 14033981.3736 14034465.302 -23.0896 -33.6576 92.8863 run8.mat -1 -1 2204 1384203 1389049 +2822385 2832529 10145 14038679.6552 14039184.5201 -23.0873 -33.6572 93.1611 run8.mat -1 -1 2205 1431179 1436252 +2832853 2853533 20681 14039200.7232 14040237.2311 -24.7366 -33.6572 92.5341 run8.mat -1 -1 2205 1436414 1446754 +2853841 2874531 20691 14040252.7584 14041286.6241 -26.3863 -33.6577 92.6051 run8.mat -1 -1 2205 1446908 1457253 +2874839 2895532 20694 14041301.9049 14042338.4445 -28.0375 -33.6573 92.6241 run8.mat -1 -1 2205 1457407 1467754 +2895839 2916492 20654 14042353.8781 14043384.8584 -29.6894 -33.6566 92.6471 run8.mat -1 -1 2205 1467908 1478235 +2916798 2918168 1371 14043400.1614 14043468.6746 -31.3416 -33.6583 92.065 run8.mat -1 -1 2205 1478388 1479073 +3002477 3020810 18334 14047683.0143 14048601.2035 -31.3392 -33.6568 92.8992 run8.mat -1 -1 2206 1521229 1530396 +3021117 3041833 20717 14048616.5594 14049651.0522 -32.9876 -33.6572 92.4357 run8.mat -1 -1 2206 1530549 1540908 +3042139 3062814 20676 14049666.4787 14050700.7797 -34.6331 -33.6573 92.6255 run8.mat -1 -1 2206 1541061 1551399 +3063121 3083793 20673 14050716.2598 14051751.417 -36.29 -33.6567 92.6878 run8.mat -1 -1 2206 1551552 1561889 +3084105 3098268 14164 14051767.146 14052473.1351 -37.937 -33.6574 92.7408 run8.mat -1 -1 2206 1562045 1569127 +3182601 3188130 5530 14056691.1127 14056966.3436 -37.9385 -33.6581 93.6992 run8.mat -1 -1 2207 1611295 1614059 +3188457 3209112 20656 14056982.6999 14058015.9964 -39.585 -33.6571 92.5374 run8.mat -1 -1 2207 1614223 1624551 +3209420 3230132 20713 14058031.5237 14059068.0373 -41.2337 -33.6574 92.5979 run8.mat -1 -1 2207 1624705 1635062 +3230439 3251112 20674 14059083.3903 14060115.3313 -42.8797 -33.6575 92.6167 run8.mat -1 -1 2207 1635215 1645553 +3251421 3272094 20674 14060130.7872 14061164.7562 -44.5311 -33.6574 92.6693 run8.mat -1 -1 2207 1645707 1656044 +3272402 3278387 5986 14061180.2835 14061480.928 -46.1764 -33.658 92.8607 run8.mat -1 -1 2207 1656198 1659190 +3364499 3378252 13754 14065786.0103 14066474.9192 -46.1817 -33.657 93.0882 run8.mat -1 -1 2208 1702248 1709125 +3378576 3399254 20679 14066491.1254 14067525.3154 -47.8256 -33.657 92.6705 run8.mat -1 -1 2208 1709287 1719626 +3399561 3420235 20675 14067540.6684 14068571.4441 -49.4748 -33.6573 92.6177 run8.mat -1 -1 2208 1719780 1730117 +3420542 3441235 20694 14068586.9242 14069620.8825 -51.1274 -33.658 92.5585 run8.mat -1 -1 2208 1730271 1740618 +3441540 3460327 18788 14069636.1357 14070577.1123 -52.7764 -33.6572 92.7512 run8.mat -1 -1 2208 1740770 1750165 +3544604 3545535 932 14074789.7207 14074836.2886 -52.7766 -33.6565 98.829 run8.mat -1 -1 2209 1792304 1792770 +3545860 3566536 20677 14074852.5448 14075888.6297 -54.4232 -33.6577 92.6004 run8.mat -1 -1 2209 1792932 1803271 +3566842 3587536 20695 14075903.9329 14076937.3574 -56.0778 -33.6573 92.5062 run8.mat -1 -1 2209 1803424 1813772 +3587842 3608525 20684 14076952.539 14077989.5799 -57.7285 -33.6573 92.6906 run8.mat -1 -1 2209 1813925 1824267 +3608840 3629500 20661 14078005.208 14079036.5665 -59.3788 -33.6572 92.6135 run8.mat -1 -1 2209 1824424 1834754 +3629810 3640407 10598 14079052.0729 14079582.1177 -61.0221 -33.6563 92.7951 run8.mat -1 -1 2209 1834909 1840209 +3724696 3733914 9219 14083796.9432 14084256.5119 -61.0263 -33.656 93.6697 run8.mat -1 -1 2210 1882355 1886964 +3734239 3754917 20679 14084272.8279 14085306.2315 -62.6756 -33.6571 92.5986 run8.mat -1 -1 2210 1887127 1897466 +3755223 3775917 20695 14085321.658 14086358.2674 -64.3244 -33.6569 92.5701 run8.mat -1 -1 2210 1897619 1907966 +3776223 3796915 20693 14086373.5703 14087407.512 -65.9745 -33.6574 92.6455 run8.mat -1 -1 2210 1908119 1918466 +3797224 3817877 20654 14087423.0897 14088454.8368 -67.624 -33.6573 92.8057 run8.mat -1 -1 2210 1918620 1928947 +3818182 3820447 2266 14088470.09 14088583.3626 -69.2826 -33.6565 92.3427 run8.mat -1 -1 2210 1929100 1930232 +3904772 3922356 17585 14092801.6587 14093678.0931 -69.268 -33.6571 93.0809 run8.mat -1 -1 2211 1972396 1981189 +3922680 3943362 20683 14093694.1677 14094728.2874 -70.919 -33.6573 92.6278 run8.mat -1 -1 2211 1981351 1991693 +3943675 3964357 20683 14094743.8194 14095779.6031 -72.569 -33.6572 92.591 run8.mat -1 -1 2211 1991849 2002191 +3964664 3985340 20677 14095795.0831 14096827.4836 -74.2155 -33.6571 92.6333 run8.mat -1 -1 2211 2002344 2012682 +3985647 4000547 14901 14096842.9605 14097588.0323 -75.8657 -33.6572 92.8208 run8.mat -1 -1 2211 2012836 2020286 +4084648 4089556 4909 14101794.8952 14102038.6383 -75.8616 -33.6591 94.7055 run8.mat -1 -1 2212 2062339 2064792 +4089883 4110577 20695 14102054.865 14103091.6094 -77.516 -33.6571 92.5617 run8.mat -1 -1 2212 2064956 2075304 +4110885 4131561 20677 14103106.8903 14104138.7793 -79.167 -33.6567 92.6214 run8.mat -1 -1 2212 2075458 2085796 +4131868 4152577 20710 14104154.0135 14105189.167 -80.8157 -33.657 92.6177 run8.mat -1 -1 2212 2085949 2096304 +4152884 4173539 20656 14105204.647 14106237.4995 -82.4667 -33.6569 92.6374 run8.mat -1 -1 2212 2096458 2106786 +4173847 4180406 6560 14106252.7803 14106583.0028 -82.4646 -31.9735 92.7786 run8.mat -1 -1 2212 2106940 2110219 +4264741 4277902 13162 14110797.4676 14111455.2717 -82.4704 -31.9743 93.1555 run8.mat -1 -1 2213 2152389 2158978 +4278209 4298884 20676 14111470.6249 14112505.8699 -80.8172 -31.9732 92.5558 run8.mat -1 -1 2213 2159123 2169461 +4299202 4319882 20681 14112521.9014 14113557.7915 -79.172 -31.9736 92.6908 run8.mat -1 -1 2213 2169620 2179961 +4320189 4340860 20672 14113573.1445 14114602.958 -77.5193 -31.9736 92.5526 run8.mat -1 -1 2213 2180114 2190450 +4341169 4360506 19338 14114618.5389 14115585.6277 -75.871 -31.9746 92.7789 run8.mat -1 -1 2213 2190604 2200274 +4444839 4445343 505 14119803.6374 14119828.7453 -75.8659 -31.9725 99.4791 run8.mat -1 -1 2214 2242442 2242694 +4445658 4466299 20642 14119844.4378 14120877.5554 -74.2206 -31.9741 92.7011 run8.mat -1 -1 2214 2242851 2253172 +4466607 4487282 20676 14120892.9226 14121925.2646 -72.5695 -31.9734 92.5999 run8.mat -1 -1 2214 2253326 2263665 +4487591 4508284 20694 14121940.8423 14122976.7249 -70.9187 -31.9739 92.6241 run8.mat -1 -1 2214 2263819 2274166 +4508588 4529263 20676 14122991.8073 14124023.534 -69.2692 -31.973 92.6733 run8.mat -1 -1 2214 2274318 2284656 +4529575 4540585 11011 14124039.0195 14124590.838 -67.6196 -31.9729 92.9377 run8.mat -1 -1 2214 2284812 2290317 +4624853 4633657 8805 14128805.1213 14129244.0258 -67.6204 -31.9736 93.8813 run8.mat -1 -1 2215 2332453 2336855 +4633976 4654662 20687 14129259.8524 14130294.1855 -65.9696 -31.9738 92.5467 run8.mat -1 -1 2215 2337015 2347358 +4654974 4675663 20690 14130309.9145 14131343.5326 -64.3188 -31.9733 92.6035 run8.mat -1 -1 2215 2347514 2357859 +4675969 4696643 20675 14131358.8355 14132394.7905 -62.6698 -31.9736 92.5468 run8.mat -1 -1 2215 2358012 2368350 +4696949 4717608 20660 14132410.0935 14133442.2976 -61.0221 -31.9734 92.7151 run8.mat -1 -1 2215 2368503 2378832 +4717923 4720624 2702 14133458.0752 14133594.2418 -59.3675 -31.974 92.8624 run8.mat -1 -1 2215 2378990 2380341 +4804887 4821953 17067 14137807.3192 14138660.3519 -59.3731 -31.9734 92.9219 run8.mat -1 -1 2216 2422474 2431007 +4822270 4842945 20676 14138676.3329 14139709.7007 -57.7249 -31.9737 92.6066 run8.mat -1 -1 2216 2431166 2441504 +4843258 4863926 20669 14139725.3537 14140757.224 -56.0778 -31.9741 92.6313 run8.mat -1 -1 2216 2441660 2451995 +4864238 4884943 20706 14140772.953 14141809.6535 -54.4237 -31.9737 92.6133 run8.mat -1 -1 2216 2452151 2462504 +4885249 4900684 15436 14141824.8351 14142596.4882 -52.7844 -31.974 92.75 run8.mat -1 -1 2216 2462657 2470374 +4985027 4989269 4243 14146816.0117 14147026.476 -52.7813 -31.974 94.1045 run8.mat -1 -1 2217 2512548 2514669 +4989583 5010262 20680 14147042.0576 14148076.6666 -51.1313 -31.9739 92.4995 run8.mat -1 -1 2217 2514826 2525166 +5010567 5031262 20696 14148091.9198 14149126.975 -49.4802 -31.9741 92.6375 run8.mat -1 -1 2217 2525318 2535666 +5031567 5052242 20676 14149142.2279 14150173.8176 -47.8333 -31.9737 92.7023 run8.mat -1 -1 2217 2535819 2546157 +5052549 5073223 20675 14150188.9379 14151221.5893 -46.1834 -31.9739 92.6573 run8.mat -1 -1 2217 2546310 2556648 +5073527 5080805 7279 14151236.7923 14151600.8161 -44.5298 -31.975 92.7243 run8.mat -1 -1 2217 2556800 2560439 +5165133 5177572 12440 14155819.3586 14156440.852 -44.5331 -31.974 92.9966 run8.mat -1 -1 2218 2602605 2608824 +5177892 5198581 20690 14156456.9875 14157490.4926 -42.8819 -31.9735 92.5521 run8.mat -1 -1 2218 2608984 2619329 +5198890 5219563 20674 14157505.823 14158541.5728 -41.2313 -31.974 92.6311 run8.mat -1 -1 2218 2619484 2629821 +5219868 5240562 20695 14158556.7078 14159590.1541 -39.5847 -31.9738 92.5461 run8.mat -1 -1 2218 2629973 2640321 +5240870 5260925 20056 14159605.6846 14160606.5985 -37.9324 -31.9732 92.8356 run8.mat -1 -1 2218 2640475 2650503 +5345309 5365882 20574 14164827.5055 14165857.968 -36.2865 -31.9738 92.8624 run8.mat -1 -1 2219 2692697 2702984 +5366189 5386865 20677 14165873.1992 14166904.9028 -34.6308 -31.9735 92.4874 run8.mat -1 -1 2219 2703137 2713476 +5387171 5407863 20693 14166920.0813 14167954.8779 -32.9857 -31.9739 92.6212 run8.mat -1 -1 2219 2713629 2723975 +5408171 5428848 20678 14167970.2808 14169006.3858 -31.3328 -31.9732 92.6295 run8.mat -1 -1 2219 2724129 2734468 +5429166 5441004 11839 14169022.2889 14169614.0345 -29.686 -31.9742 92.8354 run8.mat -1 -1 2219 2734627 2740546 +5525269 5533251 7983 14173827.7255 14174225.8482 -29.687 -31.9749 93.7556 run8.mat -1 -1 2220 2782680 2786672 +5533562 5554246 20685 14174241.2778 14175276.4921 -28.036 -31.9736 92.525 run8.mat -1 -1 2220 2786827 2797170 +5554551 5575244 20694 14175291.8713 14176325.0467 -26.3881 -31.9736 92.5393 run8.mat -1 -1 2220 2797322 2807669 +5575552 5596224 20673 14176340.4499 14177372.5265 -24.7412 -31.9734 92.6022 run8.mat -1 -1 2220 2807823 2818159 +5596530 5617205 20676 14177387.953 14178422.2341 -23.0918 -31.9736 92.6783 run8.mat -1 -1 2220 2818312 2828651 +5617512 5621043 3532 14178437.711 14178615.4899 -21.4378 -31.9736 93.1935 run8.mat -1 -1 2220 2828804 2830569 +5705225 5721552 16328 14182822.8886 14183641.4283 -21.4414 -31.9742 93.2199 run8.mat -1 -1 2221 2872662 2880826 +5721877 5742526 20650 14183657.5558 14184690.0588 -19.7936 -31.9733 92.5623 run8.mat -1 -1 2221 2880989 2891314 +5742841 5763545 20705 14184705.69 14185739.7876 -18.1437 -31.9741 92.6338 run8.mat -1 -1 2221 2891471 2901824 +5763852 5784525 20674 14185755.1435 14186788.8912 -16.4934 -31.9737 92.5932 run8.mat -1 -1 2221 2901977 2912314 +5784837 5801124 16288 14186804.3736 14187620.0619 -14.8461 -31.973 92.7641 run8.mat -1 -1 2221 2912470 2920614 +5885225 5888645 3421 14191824.3291 14191995.1149 -14.8459 -31.9731 94.9171 run8.mat -1 -1 2222 2962667 2964377 +5888956 5909645 20690 14192010.6063 14193045.7285 -13.1944 -31.9737 92.5641 run8.mat -1 -1 2222 2964532 2974877 +5909952 5930640 20689 14193060.9597 14194096.0105 -11.543 -31.9736 92.467 run8.mat -1 -1 2222 2975030 2985375 +5930951 5951644 20694 14194111.6891 14195146.6891 -9.8936 -31.9735 92.6475 run8.mat -1 -1 2222 2985530 2995878 +5951952 5972604 20653 14195162.3535 14196193.3291 -8.2456 -31.9731 92.7071 run8.mat -1 -1 2222 2996032 3006358 +5972913 5981023 8111 14196208.6626 14196613.8891 -6.5922 -31.9735 92.7491 run8.mat -1 -1 2222 3006512 3010567 +6065310 6076935 11626 14200827.9831 14201408.8765 -6.5912 -31.9736 93.3539 run8.mat -1 -1 2223 3052713 3058526 +6077253 6097941 20689 14201424.6566 14202461.0032 -4.9473 -31.973 92.5393 run8.mat -1 -1 2223 3058685 3069029 +6098251 6118924 20674 14202476.3832 14203508.6492 -3.2917 -31.9734 92.6116 run8.mat -1 -1 2223 3069184 3079521 +6119230 6139926 20697 14203524.0194 14204560.2167 -1.6495 -31.9738 92.5995 run8.mat -1 -1 2223 3079674 3090022 +6140232 6160868 20637 14204575.2877 14205606.2682 0.0034501 -31.9731 92.7132 run8.mat -1 -1 2223 3090175 3100494 +6245210 6265036 19827 14209825.8011 14210815.3886 1.6449 -31.9741 92.9397 run8.mat -1 -1 2224 3142667 3152580 +6265346 6286028 20683 14210830.7686 14211865.0075 3.2941 -31.9733 92.5847 run8.mat -1 -1 2224 3152735 3163077 +6286335 6307007 20673 14211880.2387 14212913.8083 4.9412 -31.9741 92.5738 run8.mat -1 -1 2224 3163230 3173566 +6307315 6328011 20697 14212929.0921 14213963.5416 6.5897 -31.9735 92.5962 run8.mat -1 -1 2224 3173720 3184069 +6328318 6341002 12685 14213978.8946 14214611.2681 8.2435 -31.974 92.7086 run8.mat -1 -1 2224 3184223 3190565 +6425133 6432270 7138 14218819.9581 14219177.998 8.2405 -31.9747 93.9125 run8.mat -1 -1 2225 3232632 3236212 +6432582 6453269 20688 14219193.727 14220226.6241 9.8923 -31.9736 92.5439 run8.mat -1 -1 2225 3236357 3246701 +6453576 6474268 20693 14220241.8583 14221276.4454 11.541 -31.9737 92.653 run8.mat -1 -1 2225 3246854 3257201 +6474575 6495270 20696 14221291.7229 14222328.7191 13.1911 -31.9734 92.5933 run8.mat -1 -1 2225 3257354 3267702 +6495575 6516231 20657 14222343.975 14223375.7614 14.8424 -31.9739 92.7244 run8.mat -1 -1 2225 3267855 3278183 +6516537 6521042 4506 14223391.1879 14223617.0568 16.4916 -31.9735 92.9861 run8.mat -1 -1 2225 3278336 3280589 +6605312 6620529 15218 14227829.3284 14228592.1318 16.4928 -31.9737 93.047 run8.mat -1 -1 2226 3322726 3330334 +6620841 6641533 20693 14228607.6141 14229639.9023 18.1428 -31.974 92.6491 run8.mat -1 -1 2226 3330490 3340837 +6641841 6662511 20671 14229655.549 14230689.7033 19.7906 -31.9736 92.6425 run8.mat -1 -1 2226 3340991 3351326 +6662831 6683514 20684 14230705.9813 14231740.4617 21.4369 -31.9737 92.672 run8.mat -1 -1 2226 3351486 3361828 +6683820 6701082 17263 14231755.7676 14232617.1056 23.0899 -31.9738 92.7833 run8.mat -1 -1 2226 3361981 3370613 +6785419 6787881 2463 14236835.7752 14236958.1854 23.0884 -31.9748 95.0967 run8.mat -1 -1 2227 3412783 3414014 +6788202 6808869 20668 14236974.1143 14238007.4298 24.7378 -31.9733 92.5691 run8.mat -1 -1 2227 3414175 3424509 +6809176 6829889 20714 14238022.661 14239058.3328 26.3895 -31.9734 92.5037 run8.mat -1 -1 2227 3424662 3435019 +6830200 6850873 20674 14239073.7625 14240108.3517 28.0326 -31.9739 92.6526 run8.mat -1 -1 2227 3435175 3445511 +6851178 6871850 20673 14240123.4867 14241155.5622 29.687 -31.9739 92.655 run8.mat -1 -1 2227 3445664 3456001 +6872160 6881202 9043 14241171.0652 14241625.0746 31.3293 -31.9734 92.88 run8.mat -1 -1 2227 3456156 3460677 +6965310 6976074 10765 14245829.1296 14246369.0032 31.3342 -31.9735 93.4417 run8.mat -1 -1 2228 3502732 3508115 +6976395 6997070 20676 14246385.1859 14247417.3678 32.982 -31.9738 92.4736 run8.mat -1 -1 2228 3508275 3518613 +6997377 7018070 20694 14247432.8447 14248467.5635 34.6323 -31.974 92.6888 run8.mat -1 -1 2228 3518767 3529114 +7018376 7039065 20690 14248482.8666 14249517.572 36.2787 -31.9739 92.6224 run8.mat -1 -1 2228 3529267 3539612 +7039375 7060031 20657 14249533.075 14250565.9587 37.928 -31.9738 92.803 run8.mat -1 -1 2228 3539767 3550095 +7060336 7061081 746 14250581.3962 14250619.1045 39.5658 -31.9724 93.1128 run8.mat -1 -1 2228 3550248 3550620 +7145370 7164377 19008 14254833.2345 14255782.8244 39.5801 -31.9734 93.0175 run8.mat -1 -1 2229 3592766 3602271 +7164695 7185351 20657 14255798.8558 14256832.1791 41.23 -31.9728 92.531 run8.mat -1 -1 2229 3602430 3612758 +7185658 7206370 20713 14256847.656 14257881.3557 42.8772 -31.9739 92.6112 run8.mat -1 -1 2229 3612911 3623267 +7206677 7227351 20675 14257896.5899 14258930.5305 44.5303 -31.9739 92.6295 run8.mat -1 -1 2229 3623421 3633759 +7227656 7241181 13526 14258945.9096 14259623.8123 46.1837 -31.9744 92.8127 run8.mat -1 -1 2229 3633911 3640674 +7325204 7331379 6176 14263824.6005 14264132.412 46.1787 -31.9742 93.5391 run8.mat -1 -1 2230 3682688 3685775 +7331692 7352375 20684 14264147.9409 14265184.2554 47.8298 -31.9738 92.5649 run8.mat -1 -1 2230 3685932 3696274 +7352682 7373371 20690 14265199.6084 14266232.8616 49.4764 -31.9741 92.5496 run8.mat -1 -1 2230 3696427 3706772 +7373678 7394370 20693 14266248.3417 14267281.6479 51.1295 -31.9737 92.5856 run8.mat -1 -1 2230 3706925 3717272 +7394677 7415350 20674 14267296.8791 14268331.3227 52.7775 -31.9733 92.5537 run8.mat -1 -1 2230 3717426 3727763 +7415656 7421001 5346 14268346.7523 14268612.8863 54.4262 -31.9733 92.8635 run8.mat -1 -1 2230 3727916 3730588 +7505247 7519641 14395 14272826.0542 14273547.532 54.428 -31.9733 93.1907 run8.mat -1 -1 2231 3772713 3779910 +7519953 7540625 20673 14273563.0143 14274594.6642 56.0744 -31.9738 92.5453 run8.mat -1 -1 2231 3780066 3790403 +7540936 7561631 20696 14274610.0939 14275646.6127 57.7289 -31.9736 92.5543 run8.mat -1 -1 2231 3790558 3800906 +7561938 7582610 20673 14275662.0519 14276696.6982 59.3761 -31.9738 92.7397 run8.mat -1 -1 2231 3801060 3811397 +7582920 7601060 18141 14276712.0782 14277617.6903 61.0223 -31.9733 92.7761 run8.mat -1 -1 2231 3811552 3820621 +7685332 7686896 1565 14281832.45 14281910.6305 61.0224 -31.9747 95.4533 run8.mat -1 -1 2232 3862759 3863541 +7687213 7707890 20678 14281926.3641 14282958.4549 62.6703 -31.9733 92.6001 run8.mat -1 -1 2232 3863700 3874037 +7708200 7728890 20691 14282973.8996 14284008.7378 64.3151 -31.9738 92.5926 run8.mat -1 -1 2232 3874194 3884539 +7729196 7749873 20678 14284024.1674 14285057.4268 65.9694 -31.9734 92.633 run8.mat -1 -1 2232 3884692 3895031 +7750180 7770854 20675 14285072.78 14286105.2751 67.6168 -31.974 92.6326 run8.mat -1 -1 2232 3895185 3905522 +7771159 7781120 9962 14286120.407 14286621.68 69.2678 -31.9737 92.7745 run8.mat -1 -1 2232 3905675 3910656 +7865189 7874962 9774 14290824.9385 14291313.6224 69.266 -31.9736 93.3875 run8.mat -1 -1 2233 3952692 3957578 +7875283 7895955 20673 14291329.8084 14292364.5144 70.9165 -31.9731 92.5531 run8.mat -1 -1 2233 3957739 3968076 +7896262 7916936 20675 14292379.8708 14293411.8369 72.5699 -31.9738 92.6635 run8.mat -1 -1 2233 3968229 3978566 +7917241 7937951 20711 14293427.0898 14294460.8481 74.2219 -31.9735 92.6057 run8.mat -1 -1 2233 3978719 3989074 +7938261 7958914 20654 14294476.3524 14295509.5825 75.8688 -31.974 92.7694 run8.mat -1 -1 2233 3989229 3999556 +7959222 7960979 1758 14295525.1129 14295613.7071 77.5092 -31.9737 93.3531 run8.mat -1 -1 2233 3999710 4000588 +8045131 8063096 17966 14299820.3191 14300720.764 77.5196 -31.9733 92.8197 run8.mat -1 -1 2234 4042667 4051650 +8063405 8084080 20676 14300736.259 14301768.0941 79.1674 -31.9747 92.5039 run8.mat -1 -1 2234 4051804 4062142 +8084398 8105079 20682 14301783.8742 14302817.9651 80.8169 -31.973 92.6236 run8.mat -1 -1 2234 4062301 4072642 +8105385 8125726 20342 14302833.1497 14303851.0319 82.4641 -31.9736 92.5981 run8.mat -1 -1 2234 4072795 4082966 +291687 312240 20554 14532654.4141 14533684.3179 82.4617 -30.2903 93.1691 run9.mat -1 -1 2236 166289 176566 +312547 333236 20690 14533699.6709 14534731.3334 80.815 -30.2905 92.5642 run9.mat -1 -1 2236 176720 187065 +333543 354218 20676 14534746.5646 14535780.337 79.1651 -30.2899 92.5748 run9.mat -1 -1 2236 187218 197556 +354529 375221 20693 14535795.7697 14536832.1982 77.5152 -30.2893 92.6883 run9.mat -1 -1 2236 197712 208058 +375528 387442 11915 14536847.5266 14537443.1474 75.8635 -30.2897 92.7244 run9.mat -1 -1 2236 208212 214169 +471755 479660 7906 14541657.3901 14542055.5813 75.8692 -30.2884 93.7109 run9.mat -1 -1 2237 256327 260280 +479967 500661 20695 14542070.9342 14543105.561 74.2215 -30.2895 92.4379 run9.mat -1 -1 2237 260434 270781 +500969 521644 20676 14543121.0883 14544151.3744 72.5679 -30.29 92.5897 run9.mat -1 -1 2237 270935 281273 +521962 542642 20681 14544167.253 14545201.5101 70.9193 -30.2906 92.5758 run9.mat -1 -1 2237 281432 291773 +542949 563607 20659 14545216.8633 14546252.0686 69.268 -30.2899 92.7628 run9.mat -1 -1 2237 291926 302256 +563919 567522 3604 14546267.6718 14546447.8586 67.6252 -30.2872 92.6962 run9.mat -1 -1 2237 302412 304213 +651686 668002 16317 14550656.096 14551471.9615 67.6197 -30.2908 93.0843 run9.mat -1 -1 2238 346297 354455 +668308 689006 20699 14551487.1461 14552522.7185 65.9683 -30.2887 92.5312 run9.mat -1 -1 2238 354608 364958 +689312 710004 20693 14552538.0217 14553569.9145 64.316 -30.2901 92.6128 run9.mat -1 -1 2238 365111 375457 +710312 730988 20677 14553585.4418 14554618.2816 62.6684 -30.2905 92.5775 run9.mat -1 -1 2238 375611 385950 +731297 747581 16285 14554633.7346 14555451.0355 61.0197 -30.2906 92.8073 run9.mat -1 -1 2238 386104 394247 +831689 835124 3436 14559653.6286 14559827.3051 61.0178 -30.2886 94.4337 run9.mat -1 -1 2239 436303 438020 +835430 856125 20696 14559842.8472 14560877.1113 59.3736 -30.2899 92.4621 run9.mat -1 -1 2239 438173 448521 +856433 877126 20694 14560892.6386 14561926.3438 57.7241 -30.29 92.5485 run9.mat -1 -1 2239 448675 459022 +877432 898126 20695 14561941.5284 14562977.3524 56.0738 -30.2893 92.5841 run9.mat -1 -1 2239 459175 469522 +898430 919084 20655 14562992.5555 14564023.8927 54.4232 -30.2896 92.7268 run9.mat -1 -1 2239 469674 480002 +919392 927481 8090 14564039.42 14564443.7019 52.7768 -30.2899 92.7566 run9.mat -1 -1 2239 480156 484200 +1011669 1023366 11698 14568653.3046 14569239.9277 52.7787 -30.2906 93.3897 run9.mat -1 -1 2240 526296 532145 +1023671 1044365 20695 14569255.0627 14570288.5406 51.129 -30.2896 92.6344 run9.mat -1 -1 2240 532297 542645 +1044672 1065345 20674 14570304.0175 14571338.7067 49.4764 -30.2905 92.5647 run9.mat -1 -1 2240 542798 553135 +1065654 1086345 20692 14571354.0371 14572387.7771 47.8301 -30.2899 92.6107 run9.mat -1 -1 2240 553290 563636 +1086653 1107327 20675 14572403.18 14573437.7265 46.1804 -30.2897 92.7714 run9.mat -1 -1 2240 563790 574127 +1191834 1211684 19851 14577664.6285 14578655.3764 44.533 -30.29 92.9454 run9.mat -1 -1 2241 616383 626308 +1212010 1232683 20674 14578671.6796 14579704.6298 42.879 -30.2898 92.6811 run9.mat -1 -1 2241 626471 636808 +1232991 1253667 20677 14579719.7835 14580754.8098 41.2297 -30.2897 92.6196 run9.mat -1 -1 2241 636962 647300 +1253978 1274666 20689 14580770.4884 14581803.3257 39.5835 -30.29 92.6347 run9.mat -1 -1 2241 647456 657801 +1274972 1287640 12669 14581818.7522 14582452.0684 37.9334 -30.2913 92.768 run9.mat -1 -1 2241 657954 664287 +1371647 1378733 7087 14586654.5483 14587007.1981 37.9349 -30.2908 93.7778 run9.mat -1 -1 2242 706293 709836 +1379045 1399726 20682 14587022.6773 14588058.8234 36.2836 -30.2901 92.5242 run9.mat -1 -1 2242 709992 720333 +1400037 1420744 20708 14588074.253 14589108.4051 34.6307 -30.2903 92.5684 run9.mat -1 -1 2242 720489 730843 +1421053 1441726 20674 14589123.9829 14590159.7003 32.9819 -30.2908 92.6874 run9.mat -1 -1 2242 730997 741334 +1442032 1462705 20674 14590174.8819 14591206.7116 31.3323 -30.291 92.6808 run9.mat -1 -1 2242 741487 751824 +1463014 1467500 4487 14591222.0421 14591446.4549 29.682 -30.2906 92.6228 run9.mat -1 -1 2242 751979 754222 +1551778 1567024 15247 14595661.3146 14596421.3714 29.6845 -30.2904 92.9863 run9.mat -1 -1 2243 796363 803985 +1567355 1588029 20675 14596437.9973 14597474.6052 28.0313 -30.2905 92.6001 run9.mat -1 -1 2243 804151 814489 +1588335 1609026 20692 14597489.9111 14598524.0369 26.3844 -30.2906 92.5323 run9.mat -1 -1 2243 814642 824988 +1609334 1630009 20676 14598539.5642 14599572.5681 24.7371 -30.2895 92.5774 run9.mat -1 -1 2243 825142 835480 +1630314 1647560 17247 14599587.7031 14600450.6673 23.0883 -30.2897 92.69 run9.mat -1 -1 2243 835633 844256 +1731697 1734146 2450 14604658.6217 14604780.1481 23.0895 -30.2902 94.7387 run9.mat -1 -1 2244 886320 887525 +1734463 1755145 20683 14604795.8785 14605827.8662 21.4394 -30.29 92.5344 run9.mat -1 -1 2244 887709 898050 +1755454 1776133 20680 14605843.1967 14606877.2991 19.7909 -30.2896 92.5602 run9.mat -1 -1 2244 898205 908545 +1776452 1797127 20676 14606893.343 14607929.3072 18.143 -30.2895 92.5148 run9.mat -1 -1 2244 908704 919043 +1797437 1818114 20678 14607944.8102 14608976.9156 16.4954 -30.2902 92.6651 run9.mat -1 -1 2244 919198 929537 +1818431 1827479 9049 14608992.7689 14609445.6164 14.843 -30.2908 92.7695 run9.mat -1 -1 2244 929695 934219 +1911604 1922368 10765 14613653.5676 14614191.5808 14.8425 -30.2895 93.5983 run9.mat -1 -1 2245 976283 981665 +1922691 1943369 20679 14614207.609 14615240.2668 13.1917 -30.2896 92.5303 run9.mat -1 -1 2245 981827 992167 +1943677 1964370 20694 14615255.6697 14616290.12 11.5415 -30.2901 92.594 run9.mat -1 -1 2245 992321 1002668 +1964679 1985350 20672 14616305.7632 14617340.3816 9.8951 -30.2902 92.5226 run9.mat -1 -1 2245 1002822 1013158 +1985655 2006330 20676 14617355.7608 14618390.0032 8.2436 -30.2897 92.7065 run9.mat -1 -1 2245 1013311 1023648 +2006636 2007499 864 14618405.4297 14618448.6644 6.5953 -30.2886 92.6096 run9.mat -1 -1 2245 1023801 1024233 +2091552 2110464 18913 14622648.5485 14623595.5067 6.5899 -30.2908 92.8627 run9.mat -1 -1 2246 1066262 1075718 +2110771 2131451 20681 14623610.9867 14624645.2381 4.9435 -30.2901 92.6139 run9.mat -1 -1 2246 1075871 1086212 +2131759 2152449 20691 14624660.519 14625695.0992 3.2936 -30.2909 92.594 run9.mat -1 -1 2246 1086366 1096711 +2152757 2173452 20696 14625710.38 14626745.5605 1.6448 -30.2892 92.6922 run9.mat -1 -1 2246 1096865 1107213 +2173758 2187379 13622 14626760.8637 14627440.0981 -0.0018193 -30.2902 92.7364 run9.mat -1 -1 2246 1107366 1114177 +2271625 2277690 6066 14631652.8863 14631957.8079 -0.0023506 -30.2898 93.7627 run9.mat -1 -1 2247 1156302 1159335 +2277995 2298691 20697 14631972.9399 14633007.7186 -1.6499 -30.2906 92.5415 run9.mat -1 -1 2247 1159487 1169835 +2299000 2319691 20692 14633023.049 14634058.5234 -3.2972 -30.2898 92.6031 run9.mat -1 -1 2247 1169990 1180336 +2319998 2340670 20673 14634073.8766 14635106.4485 -4.947 -30.2897 92.6708 run9.mat -1 -1 2247 1180490 1190826 +2340978 2361650 20673 14635121.7293 14636154.9842 -6.5935 -30.2899 92.6829 run9.mat -1 -1 2247 1190980 1201316 +2361956 2367418 5463 14636170.2901 14636445.4455 -8.2444 -30.2906 92.9543 run9.mat -1 -1 2247 1201469 1204201 +2451480 2465750 14271 14640646.7191 14641359.3675 -8.2451 -30.2891 93.1221 run9.mat -1 -1 2248 1246234 1253369 +2466082 2486751 20670 14641375.8391 14642408.733 -9.8922 -30.29 92.496 run9.mat -1 -1 2248 1253535 1263870 +2487059 2507750 20692 14642424.136 14643460.5599 -11.5414 -30.29 92.5772 run9.mat -1 -1 2248 1264024 1274370 +2508058 2528732 20675 14643476.0904 14644511.3241 -13.1933 -30.2898 92.5113 run9.mat -1 -1 2248 1274524 1284861 +2529041 2547278 18238 14644526.6545 14645438.1633 -14.8442 -30.2901 92.7872 run9.mat -1 -1 2248 1285016 1294134 +2631612 2633089 1478 14649653.5924 14649726.8708 -14.8498 -30.2904 95.5931 run9.mat -1 -1 2249 1336303 1337042 +2633421 2654073 20653 14649743.3423 14650776.0454 -16.4928 -30.2909 92.6456 run9.mat -1 -1 2249 1337208 1347534 +2654379 2675079 20701 14650791.3507 14651826.2592 -18.1396 -30.2903 92.6071 run9.mat -1 -1 2249 1347687 1358037 +2675393 2696073 20681 14651841.8408 14652877.9266 -19.7921 -30.2896 92.6382 run9.mat -1 -1 2249 1358194 1368535 +2696379 2717053 20675 14652893.1082 14653925.9115 -21.4388 -30.2895 92.6573 run9.mat -1 -1 2249 1368688 1379025 +2717360 2727377 10018 14653941.1457 14654442.1613 -23.0953 -30.2896 92.7288 run9.mat -1 -1 2249 1379179 1384188 +2811324 2821229 9906 14658638.4514 14659135.1293 -23.0893 -30.2886 93.4423 run9.mat -1 -1 2250 1426163 1431115 +2821537 2842252 20716 14659150.5352 14660186.5053 -24.7418 -30.2901 92.5563 run9.mat -1 -1 2250 1431269 1441628 +2842560 2863233 20674 14660202.0327 14661234.8844 -26.3937 -30.2903 92.6567 run9.mat -1 -1 2250 1441782 1452119 +2863540 2884229 20690 14661250.2375 14662283.1871 -28.0371 -30.2907 92.6493 run9.mat -1 -1 2250 1452273 1462617 +2884538 2905193 20656 14662298.5176 14663333.409 -29.6909 -30.2897 92.7465 run9.mat -1 -1 2250 1462772 1473099 +2905497 2907217 1721 14663348.6149 14663434.6479 -31.3432 -30.2888 93.3129 run9.mat -1 -1 2250 1473251 1474111 +2991534 3009528 17995 14667650.6134 14668550.1226 -31.337 -30.2903 92.9234 run9.mat -1 -1 2251 1516272 1525270 +3009835 3030513 20679 14668565.6027 14669600.0421 -32.9849 -30.2892 92.6446 run9.mat -1 -1 2251 1525423 1535762 +3030820 3051493 20674 14669615.403 14670647.0262 -34.6332 -30.2897 92.54 run9.mat -1 -1 2251 1535916 1546253 +3051801 3072496 20696 14670662.31 14671698.0786 -36.2866 -30.2901 92.6216 run9.mat -1 -1 2251 1546407 1556755 +3072801 3087297 14497 14671713.2106 14672437.0289 -37.9305 -30.2899 92.8734 run9.mat -1 -1 2251 1556907 1564156 +3171447 3176774 5328 14676646.6091 14676912.8174 -37.9273 -30.2894 94.7235 run9.mat -1 -1 2252 1606232 1608896 +3177079 3180977 3899 14676927.9494 14677121.3409 -39.5824 -30.2919 92.6106 run9.mat -1 -1 2252 1609049 1610998 +3181227 3197774 16548 14677133.7562 14677962.6943 -39.5828 -30.2898 92.562 run9.mat -1 -1 2252 1611123 1619396 +3198081 3218775 20695 14677977.9285 14679012.6388 -41.2275 -30.2898 92.6092 run9.mat -1 -1 2252 1619550 1629898 +3219083 3239775 20693 14679027.9196 14680061.3626 -42.8792 -30.2896 92.5235 run9.mat -1 -1 2252 1630052 1640398 +3240083 3260735 20653 14680076.8899 14681110.0069 -44.5312 -30.2895 92.6817 run9.mat -1 -1 2252 1640552 1650878 +3261041 3267217 6177 14681125.4365 14681432.3603 -46.1744 -30.289 92.8998 run9.mat -1 -1 2252 1651031 1654120 +3351353 3364891 13539 14685643.1802 14686318.8948 -46.1793 -30.2891 93.0087 run9.mat -1 -1 2253 1696189 1702958 +3365212 3385913 20702 14686334.8237 14687367.9532 -47.8274 -30.2905 92.6078 run9.mat -1 -1 2253 1703119 1713470 +3386220 3406895 20676 14687383.1844 14688417.1013 -49.4779 -30.2911 92.6259 run9.mat -1 -1 2253 1713624 1723961 +3407201 3427892 20692 14688432.4077 14689467.6903 -51.1317 -30.291 92.6335 run9.mat -1 -1 2253 1724114 1734461 +3428199 3447138 18940 14689483.1672 14690431.7396 -52.7773 -30.2904 92.8049 run9.mat -1 -1 2253 1734614 1744084 +3531208 3532012 805 14694634.9072 14694675.4396 -52.7901 -30.2889 96.7869 run9.mat -1 -1 2254 1786121 1786523 +3532330 3552974 20645 14694691.4711 14695723.7259 -54.4291 -30.2902 92.6651 run9.mat -1 -1 2254 1786682 1797004 +3553281 3573959 20679 14695738.9571 14696772.8428 -56.0761 -30.2905 92.6316 run9.mat -1 -1 2254 1797158 1807497 +3574273 3594956 20684 14696788.4213 14697820.1452 -57.7327 -30.2902 92.5821 run9.mat -1 -1 2254 1807654 1817996 +3595264 3615939 20676 14697835.6126 14698870.0363 -59.3765 -30.2897 92.7289 run9.mat -1 -1 2254 1818150 1828488 +3616251 3626997 10747 14698885.6395 14699424.9272 -61.0227 -30.2894 92.8205 run9.mat -1 -1 2254 1828644 1834018 +3711180 3720236 9057 14703632.8697 14704086.2676 -61.0247 -30.2891 93.4522 run9.mat -1 -1 2255 1876110 1880639 +3720543 3741256 20714 14704101.5018 14705138.6199 -62.6729 -30.2902 92.497 run9.mat -1 -1 2255 1880792 1891150 +3741565 3762236 20672 14705154.0758 14706185.5518 -64.3204 -30.2905 92.6797 run9.mat -1 -1 2255 1891304 1901640 +3762545 3783217 20673 14706201.1327 14707235.2517 -65.9723 -30.2906 92.6623 run9.mat -1 -1 2255 1901795 1912131 +3783525 3804197 20673 14707250.6549 14708284.0054 -67.6198 -30.2909 92.6931 run9.mat -1 -1 2255 1912285 1922621 +3804505 3806935 2431 14708299.2862 14708419.8458 -69.2686 -30.2894 92.5982 run9.mat -1 -1 2255 1922775 1923990 +3891050 3908455 17406 14712626.4541 14713495.7938 -69.2644 -30.2901 93.0842 run9.mat -1 -1 2256 1966050 1974753 +3908760 3929437 20678 14713511.0467 14714546.7138 -70.9207 -30.2905 92.6496 run9.mat -1 -1 2256 1974905 1985244 +3929747 3950438 20692 14714561.9818 14715597.0512 -72.5673 -30.2899 92.5575 run9.mat -1 -1 2256 1985399 1995745 +3950746 3971436 20691 14715612.3351 14716645.6243 -74.219 -30.2902 92.609 run9.mat -1 -1 2256 1995899 2006245 +3971743 3986955 15213 14716661.1012 14717422.8779 -75.8653 -30.2901 92.6855 run9.mat -1 -1 2256 2006398 2014004 +4070947 4075520 4574 14721620.1837 14721850.5171 -75.8672 -30.2903 94.4194 run9.mat -1 -1 2257 2056002 2058289 +4075852 4096539 20688 14721867.1874 14722901.9274 -77.5184 -30.2905 92.5326 run9.mat -1 -1 2257 2058455 2068799 +4096849 4117527 20679 14722917.3104 14723950.3231 -79.1672 -30.2903 92.6244 run9.mat -1 -1 2257 2068954 2079293 +4117840 4138518 20679 14723965.9761 14724998.1329 -80.8187 -30.291 92.6448 run9.mat -1 -1 2257 2079450 2089789 +4138824 4159497 20674 14725013.4361 14726047.2932 -82.4676 -30.29 92.6721 run9.mat -1 -1 2257 2089942 2100279 +4159804 4166835 7032 14726062.6464 14726415.5825 -82.4682 -28.6069 92.7686 run9.mat -1 -1 2257 2100433 2103948 +4251091 4263801 12711 14730629.1365 14731264.1055 -82.4694 -28.6073 93.295 run9.mat -1 -1 2258 2146078 2152434 +4264121 4284796 20676 14731280.2377 14732312.9277 -80.8191 -28.6077 92.5051 run9.mat -1 -1 2258 2152594 2162932 +4285104 4305796 20693 14732328.3336 14733363.2485 -79.172 -28.6075 92.5953 run9.mat -1 -1 2258 2163086 2173432 +4306101 4326797 20697 14733378.5016 14734414.5589 -77.5177 -28.6063 92.6043 run9.mat -1 -1 2258 2173585 2183933 +4327105 4346895 19791 14734429.9621 14735417.6714 -75.8673 -28.6053 92.7334 run9.mat -1 -1 2258 2184087 2193982 +4431011 4431109 99 14739624.6005 14739629.5014 -75.8747 -28.5954 121.7651 run9.mat -1 -1 2259 2236043 2236092 +4431423 4452044 20622 14739645.2045 14740674.801 -74.2164 -28.6056 92.8064 run9.mat -1 -1 2259 2236249 2246559 +4452359 4473056 20698 14740690.6812 14741726.4477 -72.5712 -28.6056 92.5617 run9.mat -1 -1 2259 2246717 2257066 +4473361 4494037 20677 14741741.8853 14742776.779 -70.919 -28.6065 92.6624 run9.mat -1 -1 2259 2257218 2267556 +4494345 4515017 20673 14742792.3063 14743826.4752 -69.2697 -28.6068 92.6486 run9.mat -1 -1 2259 2267710 2278047 +4515324 4526794 11471 14743841.9552 14744415.4631 -67.6204 -28.6049 92.7141 run9.mat -1 -1 2259 2278200 2283936 +4611026 4619280 8255 14748626.046 14749038.572 -67.6228 -28.6065 93.5975 run9.mat -1 -1 2260 2326053 2330181 +4619597 4640295 20699 14749054.4251 14750089.5318 -65.9704 -28.606 92.5273 run9.mat -1 -1 2260 2330339 2340689 +4640603 4661276 20674 14750104.9348 14751138.4767 -64.3193 -28.6065 92.5621 run9.mat -1 -1 2260 2340843 2351180 +4661582 4682277 20696 14751153.9032 14752187.2587 -62.669 -28.6064 92.5795 run9.mat -1 -1 2260 2351333 2361681 +4682581 4703240 20660 14752202.5844 14753237.6112 -61.0234 -28.606 92.6294 run9.mat -1 -1 2260 2361833 2372163 +4703549 4706814 3266 14753253.0644 14753416.3484 -59.3688 -28.608 92.7429 run9.mat -1 -1 2260 2372317 2373950 +4791123 4807720 16598 14757631.868 14758461.8962 -59.3731 -28.6069 93.135 run9.mat -1 -1 2261 2416106 2424405 +4808029 4828715 20687 14758477.2266 14759510.2712 -57.7274 -28.6057 92.5983 run9.mat -1 -1 2261 2424560 2434903 +4829022 4849698 20677 14759525.7481 14760559.3196 -56.0751 -28.6072 92.5725 run9.mat -1 -1 2261 2435056 2445395 +4850008 4870697 20690 14760574.8229 14761608.3816 -54.4278 -28.6056 92.5462 run9.mat -1 -1 2261 2445550 2455895 +4871004 4886914 15911 14761623.6128 14762419.7372 -52.7786 -28.6069 92.7908 run9.mat -1 -1 2261 2456048 2464004 +4970988 4974804 3817 14766625.3608 14766816.6133 -52.7809 -28.6062 94.3759 run9.mat -1 -1 2262 2506043 2507951 +4975116 4995792 20677 14766832.0957 14767864.8496 -51.1295 -28.6069 92.5361 run9.mat -1 -1 2262 2508107 2518445 +4996103 5016780 20678 14767880.4055 14768912.5347 -49.4792 -28.6071 92.545 run9.mat -1 -1 2262 2518601 2528940 +5017096 5037777 20682 14768928.338 14769965.3908 -47.8331 -28.6074 92.5615 run9.mat -1 -1 2262 2529098 2539438 +5038084 5058777 20694 14769980.8677 14771014.1783 -46.1833 -28.6075 92.5711 run9.mat -1 -1 2262 2539592 2549939 +5059084 5066793 7710 14771029.6583 14771414.1586 -44.5365 -28.6056 92.9301 run9.mat -1 -1 2262 2550092 2553947 +5150977 5162980 12004 14775624.0324 14776226.2493 -44.532 -28.6069 93.301 run9.mat -1 -1 2263 2596041 2602042 +5163299 5183977 20679 14776242.3344 14777272.7893 -42.8801 -28.6063 92.51 run9.mat -1 -1 2263 2602202 2612542 +5184283 5204975 20693 14777288.2158 14778324.4966 -41.233 -28.6066 92.6288 run9.mat -1 -1 2263 2612695 2623041 +5205284 5225977 20694 14778339.8301 14779373.9548 -39.5828 -28.6067 92.6259 run9.mat -1 -1 2263 2623195 2633543 +5226283 5246773 20491 14779389.3813 14780413.3261 -37.9347 -28.6063 92.6969 run9.mat -1 -1 2263 2633696 2643941 +5330889 5351084 20196 14784619.7623 14785629.1876 -36.2844 -28.6078 92.7626 run9.mat -1 -1 2264 2686001 2696099 +5351406 5372057 20652 14785645.2943 14786680.2501 -34.6333 -28.6056 92.5957 run9.mat -1 -1 2264 2696260 2706586 +5372364 5393057 20694 14786695.727 14787727.4259 -32.9861 -28.6062 92.6031 run9.mat -1 -1 2264 2706739 2717086 +5393365 5414042 20678 14787742.8319 14788777.051 -31.3326 -28.6057 92.6262 run9.mat -1 -1 2264 2717240 2727579 +5414356 5426653 12298 14788792.6724 14789409.6499 -29.6885 -28.608 92.8274 run9.mat -1 -1 2264 2727736 2733885 +5510691 5518105 7415 14793611.385 14793981.7683 -29.6875 -28.6068 93.3704 run9.mat -1 -1 2265 2775906 2779613 +5518423 5539096 20674 14793997.7998 14795028.6801 -28.0317 -28.6052 92.6226 run9.mat -1 -1 2265 2779772 2790109 +5539402 5560098 20697 14795043.8617 14796078.8141 -26.387 -28.6075 92.6365 run9.mat -1 -1 2265 2790262 2800611 +5560403 5581094 20692 14796094.1902 14797129.2896 -24.7386 -28.6063 92.6308 run9.mat -1 -1 2265 2800763 2811109 +5581404 5602059 20656 14797144.9209 14798178.2293 -23.0904 -28.6063 92.7043 run9.mat -1 -1 2265 2811264 2821592 +5602366 5606492 4127 14798193.7062 14798400.4462 -21.4354 -28.6078 93.054 run9.mat -1 -1 2265 2821745 2823808 +5690713 5706381 15669 14802611.9385 14803394.3936 -21.4455 -28.6065 92.8802 run9.mat -1 -1 2266 2865921 2873755 +5706691 5727378 20688 14803410.0218 14804443.9254 -19.7924 -28.6067 92.6442 run9.mat -1 -1 2266 2873910 2884254 +5727684 5748360 20677 14804459.2286 14805492.9246 -18.1433 -28.6062 92.5158 run9.mat -1 -1 2266 2884407 2894745 +5748668 5769360 20693 14805508.2054 14806544.4441 -16.4956 -28.6066 92.6642 run9.mat -1 -1 2266 2894899 2905245 +5769670 5786592 16923 14806560.0754 14807405.7545 -14.8465 -28.6075 92.717 run9.mat -1 -1 2266 2905400 2913862 +5870617 5873479 2863 14811606.0952 14811750.3783 -14.849 -28.6055 96.8566 run9.mat -1 -1 2267 2955877 2957308 +5873796 5894478 20683 14811766.3593 14812799.2878 -13.1923 -28.607 92.4865 run9.mat -1 -1 2267 2957466 2967807 +5894787 5915477 20691 14812814.6213 14813849.5143 -11.5439 -28.6056 92.6406 run9.mat -1 -1 2267 2967962 2978307 +5915785 5936458 20674 14813865.0448 14814897.2829 -9.8983 -28.607 92.4752 run9.mat -1 -1 2267 2978461 2988799 +5936763 5957440 20678 14814912.659 14815946.9655 -8.2449 -28.6066 92.649 run9.mat -1 -1 2267 2988951 2999290 +5957747 5966492 8746 14815962.1997 14816398.6663 -6.5935 -28.606 92.6871 run9.mat -1 -1 2267 2999444 3003816 +6050802 6061766 10965 14820614.9277 14821165.1896 -6.5913 -28.6065 93.0739 run9.mat -1 -1 2268 3045973 3051456 +6062083 6082779 20697 14821181.1706 14822214.4112 -4.9444 -28.6067 92.555 run9.mat -1 -1 2268 3051614 3061962 +6083087 6103759 20673 14822229.9385 14823263.2874 -3.2976 -28.6051 92.6899 run9.mat -1 -1 2268 3062116 3072453 +6104065 6124758 20694 14823278.4689 14824314.5603 -1.6491 -28.6068 92.5936 run9.mat -1 -1 2268 3072606 3082953 +6125066 6145720 20655 14824330.0908 14825362.4348 0.00281 -28.6047 92.7246 run9.mat -1 -1 2268 3083107 3093434 +6146028 6146612 585 14825377.9621 14825407.4035 1.6563 -28.607 93.8805 run9.mat -1 -1 2268 3093588 3093880 +6230925 6250066 19142 14829623.5134 14830580.9327 1.6484 -28.6071 92.8766 run9.mat -1 -1 2269 3136039 3145610 +6250384 6271053 20670 14830596.8388 14831629.4884 3.2947 -28.6059 92.713 run9.mat -1 -1 2269 3145769 3156103 +6271364 6292060 20697 14831645.1017 14832679.816 4.946 -28.606 92.5709 run9.mat -1 -1 2269 3156259 3166607 +6292365 6313039 20675 14832694.948 14833728.2001 6.5945 -28.6059 92.6246 run9.mat -1 -1 2269 3166760 3177097 +6313345 6326691 13347 14833743.6297 14834410.3461 8.2416 -28.6071 92.7786 run9.mat -1 -1 2269 3177250 3183924 +6410863 6417321 6459 14838620.6759 14838943.8607 8.245 -28.6049 93.9395 run9.mat -1 -1 2270 3226012 3229241 +6417631 6438321 20691 14838959.3637 14839992.878 9.8901 -28.6068 92.632 run9.mat -1 -1 2270 3229396 3239741 +6438632 6459318 20687 14840008.5566 14841043.3711 11.5398 -28.6069 92.6289 run9.mat -1 -1 2270 3239897 3250240 +6459628 6480320 20693 14841059.0024 14842092.0593 13.1866 -28.607 92.5342 run9.mat -1 -1 2270 3250395 3260742 +6480624 6501280 20657 14842107.385 14843139.0756 14.8413 -28.6075 92.6992 run9.mat -1 -1 2270 3260894 3271222 +6501586 6506751 5166 14843154.2572 14843414.4206 16.4897 -28.6062 92.7317 run9.mat -1 -1 2270 3271375 3273958 +6590978 6605654 14677 14847624.3265 14848359.3287 16.49 -28.6071 93.2158 run9.mat -1 -1 2271 3316073 3323411 +6605969 6626658 20690 14848375.2089 14849410.2424 18.1382 -28.6053 92.6075 run9.mat -1 -1 2271 3323569 3333913 +6626966 6647640 20675 14849425.7729 14850458.7575 19.7904 -28.6073 92.6319 run9.mat -1 -1 2271 3334067 3344405 +6647947 6668643 20697 14850474.1104 14851507.7879 21.4365 -28.6064 92.671 run9.mat -1 -1 2271 3344559 3354907 +6668950 6686870 17921 14851523.2648 14852418.7478 23.0912 -28.6056 92.793 run9.mat -1 -1 2271 3355061 3364021 +6771183 6772974 1792 14856636.5137 14856726.0981 23.0969 -28.6127 96.2409 run9.mat -1 -1 2272 3406180 3407075 +6773288 6793961 20674 14856741.8893 14857775.7093 24.7375 -28.6063 92.5546 run9.mat -1 -1 2272 3407232 3417569 +6794268 6814962 20695 14857791.0625 14858825.9896 26.3894 -28.6072 92.5847 run9.mat -1 -1 2272 3417723 3428070 +6815272 6835942 20671 14858841.496 14859873.3293 28.0363 -28.6061 92.5574 run9.mat -1 -1 2272 3428225 3438561 +6836251 6856941 20691 14859888.7823 14860921.8831 29.6894 -28.6058 92.6643 run9.mat -1 -1 2272 3438715 3449060 +6857249 6866971 9723 14860937.1639 14861423.4707 31.3365 -28.6084 92.7912 run9.mat -1 -1 2272 3449214 3454075 +6951038 6961036 9999 14865629.5055 14866129.5551 31.3341 -28.6057 93.2215 run9.mat -1 -1 2273 3496111 3501110 +6961347 6982022 20676 14866144.9847 14867176.8472 32.9846 -28.6076 92.4918 run9.mat -1 -1 2273 3501266 3511603 +6982329 7003022 20694 14867192.0814 14868228.3951 34.6316 -28.6064 92.6155 run9.mat -1 -1 2273 3511757 3522104 +7003328 7024004 20677 14868243.6983 14869277.6529 36.281 -28.6074 92.5841 run9.mat -1 -1 2273 3522257 3532595 +7024310 7044982 20673 14869292.8952 14870326.42 37.9338 -28.6065 92.6367 run9.mat -1 -1 2273 3532748 3543085 +7045290 7046811 1522 14870341.9474 14870418.6261 39.5692 -28.6049 92.4679 run9.mat -1 -1 2273 3543239 3543999 +7130970 7149286 18317 14874626.1156 14875539.5844 39.5786 -28.6071 93.0992 run9.mat -1 -1 2274 3586081 3595239 +7149606 7170283 20678 14875555.6455 14876589.6549 41.2295 -28.6073 92.5867 run9.mat -1 -1 2274 3595399 3605738 +7170590 7191263 20674 14876605.0079 14877639.4688 42.8757 -28.6064 92.5552 run9.mat -1 -1 2274 3605892 3616229 +7191572 7212265 20694 14877655.0466 14878690.3425 44.5271 -28.6073 92.5938 run9.mat -1 -1 2274 3616383 3626730 +7212570 7226869 14300 14878705.4745 14879421.6707 46.1777 -28.6059 92.8079 run9.mat -1 -1 2274 3626883 3634033 +7311132 7316527 5396 14883634.613 14883903.3881 46.1789 -28.6057 94.2503 run9.mat -1 -1 2275 3676166 3678875 +7316837 7337526 20690 14883919.0226 14884951.9772 47.8256 -28.6065 92.4917 run9.mat -1 -1 2275 3679019 3689364 +7337833 7358527 20695 14884967.4541 14886004.4619 49.4801 -28.6079 92.6034 run9.mat -1 -1 2275 3689517 3699864 +7358835 7379506 20672 14886019.8683 14887051.6896 51.1294 -28.607 92.6171 run9.mat -1 -1 2275 3700018 3710354 +7379814 7400486 20673 14887067.0925 14888102.9458 52.7797 -28.6063 92.6561 run9.mat -1 -1 2275 3710508 3720845 +7400792 7406929 6138 14888118.1274 14888423.8383 54.421 -28.6066 92.8391 run9.mat -1 -1 2275 3720998 3724066 +7491076 7504770 13695 14892630.6991 14893315.5372 54.4251 -28.6058 93.1594 run9.mat -1 -1 2276 3766142 3772989 +7505093 7525767 20675 14893331.6906 14894367.49 56.0765 -28.6064 92.5983 run9.mat -1 -1 2276 3773150 3783488 +7526074 7546768 20695 14894382.9669 14895416.0075 57.7258 -28.6065 92.5335 run9.mat -1 -1 2276 3783641 3793989 +7547076 7567768 20693 14895431.4105 14896465.5417 59.3756 -28.6074 92.6142 run9.mat -1 -1 2276 3794143 3804489 +7568074 7586849 18776 14896480.7202 14897420.5668 61.0209 -28.6077 92.7222 run9.mat -1 -1 2276 3804642 3814030 +7671084 7672053 970 14901632.347 14901680.5526 61.0284 -28.6113 98.919 run9.mat -1 -1 2277 3856150 3856634 +7672369 7693028 20660 14901696.2334 14902729.2165 62.6679 -28.607 92.629 run9.mat -1 -1 2277 3856792 3867122 +7693336 7714008 20673 14902744.4973 14903778.0615 64.3181 -28.6068 92.6428 run9.mat -1 -1 2277 3867276 3877613 +7714313 7735008 20696 14903793.1965 14904829.3378 65.9677 -28.6075 92.6483 run9.mat -1 -1 2277 3877765 3888113 +7735313 7755993 20681 14904844.591 14905876.6751 67.618 -28.607 92.6397 run9.mat -1 -1 2277 3888266 3898606 +7756312 7766909 10598 14905892.757 14906420.9575 69.2672 -28.608 92.8178 run9.mat -1 -1 2277 3898766 3904064 +7850979 7860118 9140 14910625.9706 14911082.9929 69.2666 -28.6047 93.3274 run9.mat -1 -1 2278 3946101 3950671 +7860431 7881108 20678 14911098.5838 14912132.274 70.9154 -28.6067 92.4861 run9.mat -1 -1 2278 3950827 3961166 +7881418 7902108 20691 14912147.7799 14913182.6851 72.5694 -28.6069 92.6409 run9.mat -1 -1 2278 3961321 3971667 +7902414 7923107 20694 14913197.8666 14914234.7086 74.2177 -28.606 92.5781 run9.mat -1 -1 2278 3971820 3982167 +7923414 7944086 20673 14914250.0616 14915283.328 75.8658 -28.6053 92.712 run9.mat -1 -1 2278 3982320 3992657 +7944394 7946789 2396 14915298.6089 14915417.432 77.514 -28.6031 93.0201 run9.mat -1 -1 2278 3992811 3994008 +8030937 8048297 17361 14919625.2361 14920494.4954 77.516 -28.6056 93.1086 run9.mat -1 -1 2279 4036084 4044764 +8048615 8069287 20673 14920510.2755 14921541.2077 79.1689 -28.6074 92.6292 run9.mat -1 -1 2279 4044923 4055260 +8069596 8090267 20672 14921556.7854 14922590.9153 80.8172 -28.6065 92.5952 run9.mat -1 -1 2279 4055414 4065751 +8090576 8110932 20357 14922606.493 14923623.3838 82.4637 -28.6065 92.6356 run9.mat -1 -1 2279 4065905 4076083 diff --git a/Scripts_20180425/Scripts_20180425/offsetcor.C b/Scripts_20180425/Scripts_20180425/offsetcor.C new file mode 100644 index 0000000..09f6cc1 --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/offsetcor.C @@ -0,0 +1,84 @@ +#include "TFile.h" +#include "TTree.h" +#include "TH2.h" +#include "TF1.h" + +void offsetcor(string rootfilename, string outfilename) +{ + + ofstream outfile(outfilename.c_str(), ofstream::out); + + TFile *rootFile = new TFile(rootfilename.c_str(),"OPEN"); + TTree* tree; + rootFile->GetObject("t",tree); + tree->Print(); + + TFile *newrootFile = new TFile("offsetcor.root","RECREATE"); + + TH2D* th2_beamSignal_b0_ic1[30]; + TH2D* th2_beamSignal_b1_ic1[30]; + TH2D* th2_beamSignal_b2_ic1[30]; + TH2D* th2_beamSignal_b3_ic1[30]; + + TProfile * prof_beamSignal_b0_ic1[30]; + TProfile * prof_beamSignal_b1_ic1[30]; + TProfile * prof_beamSignal_b2_ic1[30]; + TProfile * prof_beamSignal_b3_ic1[30]; + + char histname[30] = ""; + char fitname[30] = ""; + + TCanvas* c1; + TF1 * fit_beamSignal_b0_ic1[30]; + TF1 * fit_beamSignal_b1_ic1[30]; + TF1 * fit_beamSignal_b2_ic1[30]; + TF1 * fit_beamSignal_b3_ic1[30]; + + + for (int iii=0; iii<=29; iii++){ + ///b0 + sprintf(histname,"th2_beamSignal_b0_ic1_%d",iii); + sprintf(fitname,"fit_beamSignal_b0_ic1_%d",iii); + th2_beamSignal_b0_ic1[iii] = new TH2D(histname,histname,100,0,500,100,0,50000); + tree->Project(histname,"beamSignal_b0:ic1_avg",Form("energy_index==%i",1+iii*10),"coloz"); + prof_beamSignal_b0_ic1[iii] = th2_beamSignal_b0_ic1[iii]->ProfileX(); + fit_beamSignal_b0_ic1[iii] = new TF1(fitname,"pol1",10,150); + prof_beamSignal_b0_ic1[iii]->Fit(fit_beamSignal_b0_ic1[iii],"R"); + + ///b1 + sprintf(histname,"th2_beamSignal_b1_ic1_%d",iii); + sprintf(fitname,"fit_beamSignal_b1_ic1_%d",iii); + th2_beamSignal_b1_ic1[iii] = new TH2D(histname,histname,100,0,500,100,0,50000); + tree->Project(histname,"beamSignal_b1:ic1_avg",Form("energy_index==%i",1+iii*10),"coloz"); + prof_beamSignal_b1_ic1[iii] = th2_beamSignal_b1_ic1[iii]->ProfileX(); + fit_beamSignal_b1_ic1[iii] = new TF1(fitname,"pol1",10,150); + prof_beamSignal_b1_ic1[iii]->Fit(fit_beamSignal_b1_ic1[iii],"R"); + + ///b2 + sprintf(histname,"th2_beamSignal_b2_ic1_%d",iii); + sprintf(fitname,"fit_beamSignal_b2_ic1_%d",iii); + th2_beamSignal_b2_ic1[iii] = new TH2D(histname,histname,100,0,500,100,0,50000); + tree->Project(histname,"beamSignal_b2:ic1_avg",Form("energy_index==%i",1+iii*10),"coloz"); + prof_beamSignal_b2_ic1[iii] = th2_beamSignal_b2_ic1[iii]->ProfileX(); + fit_beamSignal_b2_ic1[iii] = new TF1(fitname,"pol1",10,150); + prof_beamSignal_b2_ic1[iii]->Fit(fit_beamSignal_b2_ic1[iii],"R"); + + ///b3 + sprintf(histname,"th2_beamSignal_b3_ic1_%d",iii); + sprintf(fitname,"fit_beamSignal_b3_ic1_%d",iii); + th2_beamSignal_b3_ic1[iii] = new TH2D(histname,histname,100,0,500,100,0,50000); + tree->Project(histname,"beamSignal_b3:ic1_avg",Form("energy_index==%i",1+iii*10),"coloz"); + prof_beamSignal_b3_ic1[iii] = th2_beamSignal_b3_ic1[iii]->ProfileX(); + fit_beamSignal_b3_ic1[iii] = new TF1(fitname,"pol1",10,150); + prof_beamSignal_b3_ic1[iii]->Fit(fit_beamSignal_b3_ic1[iii],"R"); + + + outfile << fit_beamSignal_b0_ic1[iii]->GetParameter(0) << " " << fit_beamSignal_b1_ic1[iii]->GetParameter(0) << " " << fit_beamSignal_b2_ic1[iii]->GetParameter(0) << " " << fit_beamSignal_b3_ic1[iii]->GetParameter(0) << std::endl; + } + + newrootFile->Write(); + newrootFile->Close(); + outfile.close(); + rootFile->Close(); +} + diff --git a/Scripts_20180425/Scripts_20180425/offspills_library.csv b/Scripts_20180425/Scripts_20180425/offspills_library.csv new file mode 100644 index 0000000..255a3d6 --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/offspills_library.csv @@ -0,0 +1,2281 @@ +startptr endptr nr_samples start_timestamp end_timestamp mean_X mean_Y mean_IC1 run_id energy ionsort profile data_start_index data_end_index +2 260368 260367 8556537.0077 8569552.6943 127.9375 127.9375 1.756e-05 run1.mat -1 -1 18805 148953 +362642 424464 61823 8574665.1206 8577758.7991 127.9375 127.9375 2.4651e-05 run1.mat -1 -1 200092 231005 +526737 588470 61734 8582870.5459 8585957.396 127.9375 127.9375 0 run1.mat -1 -1 282143 313011 +690732 752524 61793 8591071.5781 8594161.051 127.9375 127.9375 0 run1.mat -1 -1 364145 395042 +854790 916582 61793 8599273.3928 8602364.524 127.9375 127.9375 2.4663e-05 run1.mat -1 -1 446177 477074 +1018857 1080615 61759 8607477.0577 8610567 127.9375 127.9375 4.9352e-05 run1.mat -1 -1 528214 559094 +1182892 1244732 61841 8615680.8453 8618771.8591 127.9375 127.9375 0 run1.mat -1 -1 610235 641156 +1346991 1408788 61798 8623884.2087 8626975.2271 127.9375 127.9375 4.9321e-05 run1.mat -1 -1 692288 723188 +1511056 1572996 61941 8632087.8423 8635185.1359 127.9375 127.9375 0 run1.mat -1 -1 774325 805296 +1675273 1736881 61609 8640299.5225 8643381.802 127.9375 127.9375 0.0001546 run1.mat -1 -1 856437 887242 +1839164 1901092 61929 8648494.7589 8651591.4382 127.9375 127.9375 2.4608e-05 run1.mat -1 -1 938386 969351 +2003367 2067040 63674 8656703.7943 8659886.0921 127.9375 127.9375 0 run1.mat -1 -1 1020491 1052329 +2169329 2231104 61776 8665001.4307 8668090.7227 127.9375 127.9375 2.4669e-05 run1.mat -1 -1 1103476 1134365 +2333364 2397180 63817 8673203.6528 8676395.4422 127.9375 127.9375 9.5521e-05 run1.mat -1 -1 1185497 1217406 +2499427 2561293 61867 8681507.3026 8684599.4313 127.9375 127.9375 0 run1.mat -1 -1 1268532 1299466 +2663529 2725334 61806 8689711.5813 8692801.7144 127.9375 127.9375 2.4657e-05 run1.mat -1 -1 1350586 1381490 +2827627 2889357 61731 8697916.8942 8701003.9371 127.9375 127.9375 5.1432e-05 run1.mat -1 -1 1432639 1463505 +2991641 3053448 61808 8706118.4985 8709207.9823 127.9375 127.9375 2.4657e-05 run1.mat -1 -1 1514649 1545554 +3155721 3217593 61873 8714322.9939 8717417.0987 127.9375 127.9375 5.1314e-05 run1.mat -1 -1 1596693 1627630 +3319836 3381792 61957 8722527.5672 8725624.9524 127.9375 127.9375 0 run1.mat -1 -1 1678754 1709733 +3484079 3545903 61825 8730742.8988 8733833.2914 127.9375 127.9375 0 run1.mat -1 -1 1760879 1791793 +3648167 3709938 61772 8738946.469 8742034.7229 127.9375 127.9375 2.4671e-05 run1.mat -1 -1 1842926 1873814 +3812205 3874144 61940 8747148.0019 8750244.7126 127.9375 127.9375 0.00010252 run1.mat -1 -1 1924950 1955920 +3976427 4038237 61811 8755358.7611 8758448.1225 127.9375 127.9375 2.4655e-05 run1.mat -1 -1 2007064 2037970 +4140517 4202266 61750 8763562.3899 8766648.771 127.9375 127.9375 0 run1.mat -1 -1 2089113 2119988 +4304524 4366547 62024 8771762.974 8774866.85 127.9375 127.9375 5.1189e-05 run1.mat -1 -1 2171120 2202133 +4468818 4530599 61782 8779980.3882 8783066.5052 127.9375 127.9375 0 run1.mat -1 -1 2253270 2284162 +4632883 4694634 61752 8788181.2354 8791269.4748 127.9375 127.9375 5.3471e-05 run1.mat -1 -1 2335306 2366183 +4796919 4858758 61840 8796382.8837 8799475.7953 127.9375 127.9375 2.4644e-05 run1.mat -1 -1 2417328 2448249 +4961019 5022848 61830 8804588.8391 8807680.6825 127.9375 127.9375 4.9296e-05 run1.mat -1 -1 2499382 2530297 +5125122 5187069 61948 8812795.4388 8815890.4176 127.9375 127.9375 2.4601e-05 run1.mat -1 -1 2581437 2612412 +5289364 5351162 61799 8821006.3279 8824095.553 127.9375 127.9375 0 run1.mat -1 -1 2663561 2694462 +5453411 5515190 61780 8829208.3687 8832299.086 127.9375 127.9375 2.6723e-05 run1.mat -1 -1 2745589 2776479 +5617479 5679411 61933 8837414.0046 8840508.5487 127.9375 127.9375 0 run1.mat -1 -1 2827626 2858593 +5781691 5843517 61827 8845625.89 8848715.8019 127.9375 127.9375 0 run1.mat -1 -1 2909736 2940650 +5945780 6007512 61733 8853829.578 8856914.752 127.9375 127.9375 2.4687e-05 run1.mat -1 -1 2991784 3022651 +6109793 6171784 61992 8862029.0919 8865128.7273 127.9375 127.9375 9.8333e-05 run1.mat -1 -1 3073794 3104791 +6274073 6335864 61792 8870243.5934 8873332.4787 127.9375 127.9375 2.4663e-05 run1.mat -1 -1 3155937 3186834 +6438127 6500073 61947 8878446.6104 8881543.6441 127.9375 127.9375 0 run1.mat -1 -1 3237968 3268943 +6602349 6664130 61782 8886657.176 8889748.2896 127.9375 127.9375 0 run1.mat -1 -1 3320083 3350974 +6766416 6828167 61752 8894860.48 8897949.0986 127.9375 127.9375 0 run1.mat -1 -1 3402119 3432997 +6930445 6992382 61938 8903062.9377 8906159.7063 127.9375 127.9375 2.4605e-05 run1.mat -1 -1 3484138 3515108 +7094660 7156488 61829 8911272.825 8914365.6213 127.9375 127.9375 5.751e-05 run1.mat -1 -1 3566249 3597164 +7258763 7320582 61820 8919479.2909 8922568.7326 127.9375 127.9375 3.9031e-05 run1.mat -1 -1 3648304 3679215 +7422838 7484577 61740 8927684.7717 8930770.7105 127.9375 127.9375 2.4684e-05 run1.mat -1 -1 3730345 3761216 +7586869 7648653 61785 8935883.032 8938973.7225 127.9375 127.9375 0 run1.mat -1 -1 3812364 3843258 +7750933 7812900 61968 8944087.9962 8947186.2283 127.9375 127.9375 0 run1.mat -1 -1 3894400 3925385 +7915199 7976936 61738 8952299.7579 8955387.806 127.9375 127.9375 4.9369e-05 run1.mat -1 -1 3976536 4007407 +8079206 8141247 62042 8960502.1898 8963602.0441 127.9375 127.9375 4.9127e-05 run1.mat -1 -1 4058544 4089565 +8243499 8305247 61749 8968716.9365 8971803.1315 127.9375 127.9375 5.3473e-05 run1.mat -1 -1 4140693 4171569 +8407528 8469510 61983 8976917.456 8980015.9972 127.9375 127.9375 4.9174e-05 run1.mat -1 -1 4222712 4253704 +8571778 8633532 61755 8985129.5249 8988216.829 127.9375 127.9375 2.4678e-05 run1.mat -1 -1 4304840 4335719 +8735811 8797754 61944 8993332.7894 8996430.7875 127.9375 127.9375 4.9205e-05 run1.mat -1 -1 4386860 4417833 +8900015 8961881 61867 9001544.122 9004635.2013 127.9375 127.9375 0 run1.mat -1 -1 4468966 4499900 +9064077 9125898 61822 9009746.2214 9012837.9702 127.9375 127.9375 0 run1.mat -1 -1 4551001 4581912 +9136943 9241248 104306 9013387.9849 9018606.0815 127.9375 127.9375 1.4611e-05 run1.mat -1 -1 4587435 4639597 +2 289621 289620 15023574.4159 15038058.7979 127.9375 127.9375 2.1048e-05 run10.mat -1 -1 15191 160032 +391412 469564 78153 15043149.0601 15047055.1032 127.9375 127.9375 0 run10.mat -1 -1 210930 250007 +571352 649656 78305 15052146.0277 15056061.1858 127.9375 127.9375 0 run10.mat -1 -1 300904 340057 +751432 829525 78094 15061150.2746 15065053.3906 127.9375 127.9375 1.9515e-05 run10.mat -1 -1 390948 429996 +931291 1009419 78129 15070142.9428 15074049.7111 127.9375 127.9375 1.9506e-05 run10.mat -1 -1 480881 519947 +1111311 1189592 78282 15079144.3067 15083060.3163 127.9375 127.9375 0 run10.mat -1 -1 570895 610038 +1269899 1501450 231552 15087075.3943 15098653.1242 127.9375 127.9375 1.3163e-05 run10.mat -1 -1 650192 765973 +1603210 1681237 78028 15103737.6624 15107642.9771 127.9375 127.9375 0 run10.mat -1 -1 816855 855871 +1783109 1861211 78103 15112733.7891 15116639.9379 127.9375 127.9375 0 run10.mat -1 -1 906808 945862 +1962990 2041297 78308 15121728.6815 15125646.0877 127.9375 127.9375 0 run10.mat -1 -1 996753 1035909 +2143090 2221174 78085 15130733.4556 15134640.1379 127.9375 127.9375 1.9517e-05 run10.mat -1 -1 1086807 1125851 +2322968 2401061 78094 15139729.6598 15143632.5959 127.9375 127.9375 0 run10.mat -1 -1 1176750 1215798 +2502848 2582988 80141 15148722.7812 15152729.2732 127.9375 127.9375 3.9617e-05 run10.mat -1 -1 1266694 1306766 +2684769 2762859 78091 15157820.6251 15161724.1593 127.9375 127.9375 7.9687e-05 run10.mat -1 -1 1357659 1396705 +2864649 2942706 78058 15166812.7524 15170715.5775 127.9375 127.9375 0 run10.mat -1 -1 1447602 1486633 +3044527 3122643 78117 15175807.2106 15179714.97 127.9375 127.9375 0 run10.mat -1 -1 1537545 1576605 +3224387 3302631 78245 15184802.4035 15188712.3962 127.9375 127.9375 0 run10.mat -1 -1 1627479 1666603 +3404407 3482440 78034 15193802.6165 15197702.564 127.9375 127.9375 0 run10.mat -1 -1 1717493 1756512 +3584287 3662383 78097 15202796.2896 15206700.416 127.9375 127.9375 0 run10.mat -1 -1 1807437 1846487 +3764167 3842156 77990 15211789.1771 15215691.0701 127.9375 127.9375 0 run10.mat -1 -1 1897381 1936378 +3944006 4022072 78067 15220783.208 15224684.5626 127.9375 127.9375 0 run10.mat -1 -1 1987304 2026339 +4123866 4203909 80044 15229775.9575 15233776.7646 127.9375 127.9375 1.9039e-05 run10.mat -1 -1 2077239 2117262 +4305726 4383800 78075 15238868.9101 15242772.604 127.9375 127.9375 1.9519e-05 run10.mat -1 -1 2168172 2207211 +4485585 4563688 78104 15247860.8378 15251767.0728 127.9375 127.9375 0 run10.mat -1 -1 2258106 2297159 +4665485 4743587 78103 15256856.5702 15260763.6882 127.9375 127.9375 0 run10.mat -1 -1 2348060 2387113 +4845365 4925475 80111 15265851.0048 15269858.4461 127.9375 127.9375 1.9023e-05 run10.mat -1 -1 2438004 2478061 +5027264 5105359 78096 15274945.3622 15278850.4707 127.9375 127.9375 0 run10.mat -1 -1 2528957 2568007 +5207164 5285237 78074 15283942.5166 15287843.2801 127.9375 127.9375 4.3919e-05 run10.mat -1 -1 2618911 2657949 +5387024 5465107 78084 15292932.9794 15296839.0712 127.9375 127.9375 1.9517e-05 run10.mat -1 -1 2708846 2747889 +5566883 5644948 78066 15301928.8963 15305831.7181 127.9375 127.9375 0 run10.mat -1 -1 2798779 2837813 +5746783 5824863 78081 15310921.5665 15314825.8191 127.9375 127.9375 1.9518e-05 run10.mat -1 -1 2888732 2927774 +5926642 6004730 78089 15319916.8236 15323818.2547 127.9375 127.9375 1.9516e-05 run10.mat -1 -1 2978666 3017712 +6106502 6184574 78073 15328909.8276 15332812.9577 127.9375 127.9375 0 run10.mat -1 -1 3068600 3107637 +6286342 6364321 77980 15337902.0687 15341800.6741 127.9375 127.9375 0 run10.mat -1 -1 3158524 3197515 +6466222 6544220 77999 15346894.8248 15350795.7765 127.9375 127.9375 1.9538e-05 run10.mat -1 -1 3248468 3287469 +6646061 6724141 78081 15355887.8123 15359792.2692 127.9375 127.9375 0 run10.mat -1 -1 3338391 3377433 +6825901 6903821 77921 15364879.903 15368776.1018 127.9375 127.9375 0 run10.mat -1 -1 3428316 3467277 +7005741 7083842 78102 15373870.9835 15377777.1027 127.9375 127.9375 0 run10.mat -1 -1 3518239 3557292 +7185621 7263709 78089 15382866.24 15386771.7954 127.9375 127.9375 0 run10.mat -1 -1 3608183 3647229 +7365481 7443559 78079 15391860.3811 15395764.2113 127.9375 127.9375 0 run10.mat -1 -1 3698117 3737158 +7545340 7623392 78053 15400853.2028 15404753.7744 127.9375 127.9375 0 run10.mat -1 -1 3788050 3827078 +7725180 7803199 78020 15409843.8098 15413744.2586 127.9375 127.9375 0 run10.mat -1 -1 3877975 3916986 +7905040 7983150 78111 15418836.3388 15422744.0056 127.9375 127.9375 1.951e-05 run10.mat -1 -1 3967908 4006965 +8084900 8162971 78072 15427829.1246 15431735.701 127.9375 127.9375 0 run10.mat -1 -1 4057842 4096880 +8264758 8342853 78096 15436825.3132 15440728.0433 127.9375 127.9375 1.9514e-05 run10.mat -1 -1 4147776 4186825 +8358026 8675316 317291 15441486.8931 15457348.6427 127.9375 127.9375 9.6061e-06 run10.mat -1 -1 4194412 4350323 +2 285929 285928 15540253.6561 15554551.7337 127.9375 127.9375 1.599e-05 run11.mat -1 -1 17081 160051 +387698 465758 78061 15559639.8531 15563543.5488 127.9375 127.9375 0 run11.mat -1 -1 210937 249978 +567558 645651 78094 15568633.1748 15572536.4621 127.9375 127.9375 0 run11.mat -1 -1 300872 339920 +747437 825494 78058 15577625.7297 15581528.2877 127.9375 127.9375 0 run11.mat -1 -1 390815 429845 +927317 1005342 78026 15586620.7776 15590522.015 127.9375 127.9375 3.9063e-05 run11.mat -1 -1 480759 519773 +1107137 1185124 77988 15595612.4891 15599512.2066 127.9375 127.9375 0 run11.mat -1 -1 570673 609668 +1287036 1365006 77971 15604607.5547 15608503.9611 127.9375 127.9375 1.9545e-05 run11.mat -1 -1 660626 699613 +1466896 1544973 78078 15613602.0832 15617505.323 127.9375 127.9375 7.8074e-05 run11.mat -1 -1 750560 789601 +1646755 1724770 78016 15622593.3729 15626495.3105 127.9375 127.9375 4.2324e-05 run11.mat -1 -1 840494 879503 +1826655 1904724 78070 15631587.3485 15635491.8404 127.9375 127.9375 1.9521e-05 run11.mat -1 -1 930448 969484 +2006515 2084556 78042 15640581.1227 15644481.9396 127.9375 127.9375 1.9528e-05 run11.mat -1 -1 1020382 1059404 +2186395 2264723 78329 15649574.2325 15653493.9871 127.9375 127.9375 0 run11.mat -1 -1 1110325 1149491 +2366475 2444595 78121 15658581.4963 15662485.8673 127.9375 127.9375 1.9508e-05 run11.mat -1 -1 1200370 1239431 +2546375 2624485 78111 15667574.87 15671482.0988 127.9375 127.9375 2.2762e-05 run11.mat -1 -1 1290323 1329380 +2726253 2804267 78015 15676571.11 15680471.2814 127.9375 127.9375 2.1162e-05 run11.mat -1 -1 1380267 1419275 +2906074 2984159 78086 15685561.3785 15689464.484 127.9375 127.9375 0 run11.mat -1 -1 1470181 1509225 +3085953 3164275 78323 15694553.9778 15698470.5518 127.9375 127.9375 0 run11.mat -1 -1 1560124 1599287 +3266052 3344141 78090 15703559.7595 15707466.0091 127.9375 127.9375 3.9031e-05 run11.mat -1 -1 1650178 1689224 +3445913 3524223 78311 15712553.495 15716469.1448 127.9375 127.9375 6.0003e-05 run11.mat -1 -1 1740112 1779269 +3625993 3704136 78144 15721558.7664 15725465.9587 127.9375 127.9375 0 run11.mat -1 -1 1830156 1869229 +3806032 3884537 78506 15730558.0667 15734485.5066 127.9375 127.9375 0 run11.mat -1 -1 1920180 1959434 +3986352 4064602 78251 15739574.8697 15743488.2898 127.9375 127.9375 0 run11.mat -1 -1 2010344 2049470 +4166411 4244700 78290 15748576.9885 15752494.7096 127.9375 127.9375 1.9466e-05 run11.mat -1 -1 2100377 2139523 +4346491 4425007 78517 15757582.1721 15761509.2063 127.9375 127.9375 2.1027e-05 run11.mat -1 -1 2190421 2229681 +4526771 4604913 78143 15766598.1817 15770505.5952 127.9375 127.9375 1.9502e-05 run11.mat -1 -1 2280565 2319637 +4706811 4785182 78372 15775600.7879 15779517.1408 127.9375 127.9375 3.8891e-05 run11.mat -1 -1 2370589 2409776 +4887070 4965305 78236 15784612.0941 15788523.3558 127.9375 127.9375 0 run11.mat -1 -1 2460723 2499841 +5067131 5145536 78406 15793615.664 15797537.3134 127.9375 127.9375 0 run11.mat -1 -1 2550757 2589961 +5247429 5325915 78487 15802632.0183 15806553.5296 127.9375 127.9375 1.9417e-05 run11.mat -1 -1 2640910 2680154 +5427689 5506168 78480 15811643.8011 15815570.2206 127.9375 127.9375 1.9419e-05 run11.mat -1 -1 2731043 2770285 +5607930 5686221 78292 15820654.0194 15824570.8162 127.9375 127.9375 0 run11.mat -1 -1 2821168 2860315 +5788029 5866492 78464 15829660.9527 15833584.4257 127.9375 127.9375 2.1041e-05 run11.mat -1 -1 2911222 2950455 +5968308 6046724 78417 15838676.1071 15842596.5006 127.9375 127.9375 0 run11.mat -1 -1 3001365 3040575 +6148608 6226867 78260 15847689.6244 15851603.8087 127.9375 127.9375 3.8946e-05 run11.mat -1 -1 3091519 3130650 +6328688 6407167 78480 15856693.1373 15860617.2242 127.9375 127.9375 0 run11.mat -1 -1 3181563 3220804 +6508947 6587436 78490 15865706.4223 15869631.9282 127.9375 127.9375 0 run11.mat -1 -1 3271696 3310942 +6689227 6767506 78280 15874721.5389 15878635.469 127.9375 127.9375 1.9468e-05 run11.mat -1 -1 3361840 3400981 +6869287 6947759 78473 15883723.7457 15887648.5931 127.9375 127.9375 1.942e-05 run11.mat -1 -1 3451874 3491112 +7049567 7127854 78288 15892740.0024 15896654.4133 127.9375 127.9375 0 run11.mat -1 -1 3542018 3581164 +7229627 7308012 78386 15901742.9373 15905660.9587 127.9375 127.9375 3.8884e-05 run11.mat -1 -1 3632052 3671246 +7409826 7488172 78347 15910753.0692 15914670.5078 127.9375 127.9375 3.8903e-05 run11.mat -1 -1 3722156 3761330 +7589965 7668392 78428 15919759.8964 15923681.4652 127.9375 127.9375 0 run11.mat -1 -1 3812229 3851444 +7770265 7848505 78241 15928774.2848 15932685.547 127.9375 127.9375 3.8956e-05 run11.mat -1 -1 3902383 3941504 +7950326 8028698 78373 15937778.8661 15941694.7537 127.9375 127.9375 1.9445e-05 run11.mat -1 -1 3992418 4031605 +8114885 8390766 275882 15946005.8692 15959801.5591 127.9375 127.9375 1.6572e-05 run11.mat -1 -1 4074700 4212664 +2 281757 281756 16051377.7729 16065470.6079 127.9375 127.9375 5.4088e-06 run12.mat -1 -1 12320 153233 +383545 461833 78289 16070560.1747 16074473.6916 127.9375 127.9375 1.9466e-05 run12.mat -1 -1 204129 243276 +563625 641921 78297 16079564.4487 16083477.4567 127.9375 127.9375 2.2708e-05 run12.mat -1 -1 294173 333323 +743684 821686 78003 16088564.9937 16092465.9929 127.9375 127.9375 0 run12.mat -1 -1 384207 423210 +923585 1001843 78259 16097561.8608 16101474.7404 127.9375 127.9375 0 run12.mat -1 -1 474162 513292 +1103604 1181870 78267 16106562.6466 16110474.6866 127.9375 127.9375 0 run12.mat -1 -1 564175 603310 +1283624 1361924 78301 16115564.0083 16119479.1527 127.9375 127.9375 1.9463e-05 run12.mat -1 -1 654189 693341 +1463684 1543851 80168 16124568.5159 16128575.296 127.9375 127.9375 1.901e-05 run12.mat -1 -1 744223 784308 +1645623 1723898 78276 16133663.8061 16137578.7085 127.9375 127.9375 4.0561e-05 run12.mat -1 -1 835197 874336 +1825703 1903916 78214 16142668.145 16146578.0173 127.9375 127.9375 1.9485e-05 run12.mat -1 -1 925240 964348 +2005743 2083695 77953 16151669.3325 16155568.4042 127.9375 127.9375 0 run12.mat -1 -1 1015264 1054242 +2185582 2263834 78253 16160661.5168 16164573.0657 127.9375 127.9375 1.9475e-05 run12.mat -1 -1 1105188 1144315 +2365642 2443940 78299 16169665.2505 16173582.1117 127.9375 127.9375 3.8927e-05 run12.mat -1 -1 1195221 1234373 +2545702 2623922 78221 16178669.597 16182579.6542 127.9375 127.9375 0 run12.mat -1 -1 1285256 1324367 +2725741 2803794 78054 16187669.895 16191572.8152 127.9375 127.9375 1.9525e-05 run12.mat -1 -1 1375279 1414307 +2905581 2983803 78223 16196661.8244 16200573.6302 127.9375 127.9375 0 run12.mat -1 -1 1465203 1504316 +3085621 3163906 78286 16205664.122 16209580.2868 127.9375 127.9375 0 run12.mat -1 -1 1555227 1594371 +3265701 3343979 78279 16214669.1922 16218584.1673 127.9375 127.9375 0 run12.mat -1 -1 1645271 1684412 +3445779 3523853 78075 16223673.9643 16227577.3344 127.9375 127.9375 0 run12.mat -1 -1 1735314 1774352 +3625660 3703786 78127 16232668.7638 16236572.3465 127.9375 127.9375 0 run12.mat -1 -1 1825258 1864322 +3805680 3883999 78320 16241667.8887 16245585.1521 127.9375 127.9375 1.9458e-05 run12.mat -1 -1 1915272 1954433 +3985740 4064024 78285 16250673.1823 16254585.8789 127.9375 127.9375 0 run12.mat -1 -1 2005306 2044450 +4165819 4244126 78308 16259677.4407 16263591.7111 127.9375 127.9375 1.9461e-05 run12.mat -1 -1 2095349 2134505 +4345918 4424282 78365 16268680.5166 16272598.45 127.9375 127.9375 0 run12.mat -1 -1 2185403 2224586 +4526038 4604164 78127 16277686.6993 16281594.0151 127.9375 127.9375 0 run12.mat -1 -1 2275467 2314531 +4706058 4784333 78276 16286688.7858 16290603.5003 127.9375 127.9375 0 run12.mat -1 -1 2365481 2404620 +4886118 4964420 78303 16295691.0726 16299608.5273 127.9375 127.9375 0 run12.mat -1 -1 2455515 2494667 +5066158 5144218 78061 16304694.2161 16308598.6376 127.9375 127.9375 0 run12.mat -1 -1 2545539 2584570 +5246037 5324295 78259 16313687.9946 16317600.0015 127.9375 127.9375 1.9473e-05 run12.mat -1 -1 2635482 2674612 +5426117 5504327 78211 16322692.923 16326601.3282 127.9375 127.9375 0 run12.mat -1 -1 2725526 2764633 +5606117 5684392 78276 16331690.9083 16335607.8875 127.9375 127.9375 1.9469e-05 run12.mat -1 -1 2815530 2854669 +5786176 5864468 78293 16340698.2854 16344610.8236 127.9375 127.9375 1.9465e-05 run12.mat -1 -1 2905564 2944711 +5966256 6044522 78267 16349699.8912 16353613.1774 127.9375 127.9375 0 run12.mat -1 -1 2995607 3034742 +6146316 6224594 78279 16358702.177 16362618.0313 127.9375 127.9375 0 run12.mat -1 -1 3085641 3124782 +6326395 6404595 78201 16367707.8435 16371617.2348 127.9375 127.9375 0 run12.mat -1 -1 3175685 3214787 +6506394 6584577 78184 16376707.0004 16380615.2037 127.9375 127.9375 4.2233e-05 run12.mat -1 -1 3265689 3304782 +6686476 6764524 78049 16385711.8105 16389612.0943 127.9375 127.9375 0 run12.mat -1 -1 3355733 3394759 +6866375 6944668 78294 16394705.1043 16398623.3372 127.9375 127.9375 0 run12.mat -1 -1 3445687 3484835 +7046474 7124544 78071 16403711.1025 16407615.1836 127.9375 127.9375 1.952e-05 run12.mat -1 -1 3535740 3574777 +7226314 7304551 78238 16412705.3774 16416614.2827 127.9375 127.9375 3.8957e-05 run12.mat -1 -1 3625664 3664785 +7406333 7484442 78110 16421703.7276 16425611.3946 127.9375 127.9375 4.0647e-05 run12.mat -1 -1 3715678 3754734 +7586213 7664532 78320 16430698.355 16434616.5124 127.9375 127.9375 0 run12.mat -1 -1 3805622 3844783 +7766313 7844276 77964 16439704.0339 16443601.953 127.9375 127.9375 0 run12.mat -1 -1 3895675 3934659 +7946173 8024384 78212 16448695.9901 16452609.4947 127.9375 127.9375 2.1109e-05 run12.mat -1 -1 3985609 4024717 +8111085 8356762 245678 16456941.7124 16469229.0282 127.9375 127.9375 1.8609e-05 run12.mat -1 -1 4068069 4190917 +2 288209 288208 -199898.1731 -185365.7507 127.9375 127.9375 1.0576e-05 run13.mat -1 -1 1 1 +390104 468091 77988 -180227.8423 -176295.4603 127.9375 127.9375 0 run13.mat -1 -1 1 1 +569984 648133 78150 -171157.6527 -167217.1021 127.9375 127.9375 0 run13.mat -1 -1 1 1 +750023 828362 78340 -162079.4457 -158129.3146 127.9375 127.9375 3.8907e-05 run13.mat -1 -1 1 1 +930122 1008336 78215 -152998.2134 -149054.3852 127.9375 127.9375 1.9484e-05 run13.mat -1 -1 1 1 +1110162 1188425 78264 -143919.956 -139973.6571 127.9375 127.9375 0 run13.mat -1 -1 1 1 +1290222 1368323 78102 -134840.6902 -130902.5599 127.9375 127.9375 1.9513e-05 run13.mat -1 -1 1 1 +1470102 1548445 78344 -125770.5006 -121820.1678 127.9375 127.9375 1.9452e-05 run13.mat -1 -1 1 1 +1650202 1728393 78192 -116689.2178 -112746.5494 127.9375 127.9375 2.1114e-05 run13.mat -1 -1 1 1 +1830281 1908550 78270 -107608.9939 -103662.3925 127.9375 127.9375 7.7883e-05 run13.mat -1 -1 1 1 +2010320 2088371 78052 -98530.787 -94595.1779 127.9375 127.9375 0 run13.mat -1 -1 1 1 +2190220 2268375 78156 -89459.5889 -85518.7358 127.9375 127.9375 0 run13.mat -1 -1 1 1 +2370280 2448345 78066 -80380.3231 -76444.0081 127.9375 127.9375 0 run13.mat -1 -1 1 1 +2550140 2628459 78320 -71311.142 -67362.0194 127.9375 127.9375 3.8917e-05 run13.mat -1 -1 1 1 +2730240 2808507 78268 -62229.8592 -58283.3586 127.9375 127.9375 4.0565e-05 run13.mat -1 -1 1 1 +2910279 2988426 78148 -53151.6523 -49211.2025 127.9375 127.9375 4.2252e-05 run13.mat -1 -1 1 1 +3090179 3168456 78278 -44080.4542 -40133.4494 127.9375 127.9375 1.9469e-05 run13.mat -1 -1 1 1 +3270259 3348533 78275 -35000.1799 -31053.3263 127.9375 127.9375 4.2184e-05 run13.mat -1 -1 1 1 +3450358 3528461 78104 -25918.9476 -21980.7164 127.9375 127.9375 0 run13.mat -1 -1 1 1 +3630238 3708364 78127 -16848.758 -12909.3671 127.9375 127.9375 0 run13.mat -1 -1 1 1 +3810258 3888380 78123 -7771.5091 -3832.3199 127.9375 127.9375 0 run13.mat -1 -1 1 1 +3990278 4068259 77982 1298.5493 5196.6556 127.9375 127.9375 7.817e-05 run13.mat -1 -1 1 1 +4170137 4248463 78327 10289.2909 14205.9218 127.9375 127.9375 4.2156e-05 run13.mat -1 -1 1 1 +4350236 4428297 78062 19294.2345 23196.6737 127.9375 127.9375 2.1149e-05 run13.mat -1 -1 1 1 +4530117 4608366 78250 28288.6434 32201.8561 127.9375 127.9375 1.9476e-05 run13.mat -1 -1 1 1 +4710157 4788387 78231 37292.4928 41204.3198 127.9375 127.9375 0 run13.mat -1 -1 1 1 +4890237 4968446 78210 46295.7104 50207.2303 127.9375 127.9375 1.9486e-05 run13.mat -1 -1 1 1 +5070335 5148446 78112 55302.3336 59207.01 127.9375 127.9375 1.951e-05 run13.mat -1 -1 1 1 +5250196 5328425 78230 64294.7985 68207.231 127.9375 127.9375 2.1104e-05 run13.mat -1 -1 1 1 +5430315 5508565 78251 73299.5249 77211.503 127.9375 127.9375 0 run13.mat -1 -1 1 1 +5610335 5688435 78101 82299.8799 86206.4105 127.9375 127.9375 0 run13.mat -1 -1 1 1 +5790215 5870392 80178 91294.8768 95304.6761 127.9375 127.9375 1.9007e-05 run13.mat -1 -1 1 1 +5972155 6050427 78273 100392.2709 104307.4441 127.9375 127.9375 1.947e-05 run13.mat -1 -1 1 1 +6152233 6230323 78091 109398.611 113303.0004 127.9375 127.9375 0 run13.mat -1 -1 1 1 +6332093 6410362 78270 118389.8302 122302.4033 127.9375 127.9375 1.9471e-05 run13.mat -1 -1 1 1 +6512133 6590208 78076 127391.2112 131296.5171 127.9375 127.9375 2.1146e-05 run13.mat -1 -1 1 1 +6691993 6770274 78282 136385.5041 140298.2764 127.9375 127.9375 0 run13.mat -1 -1 1 1 +6872052 6950225 78174 145388.7551 149297.4459 127.9375 127.9375 0 run13.mat -1 -1 1 1 +7052112 7130229 78118 154391.1285 158297.7882 127.9375 127.9375 0 run13.mat -1 -1 1 1 +7231992 7310254 78263 163386.7435 167299.0675 127.9375 127.9375 1.9472e-05 run13.mat -1 -1 1 1 +7412012 7490063 78052 172387.0881 176288.3557 127.9375 127.9375 1.9525e-05 run13.mat -1 -1 1 1 +7536607 7615980 79374 178615.364 182586.5633 127.9375 127.9375 0 run13.mat -1 -1 1 1 +7717871 7796110 78240 187680.9639 191591.7087 127.9375 127.9375 0 run13.mat -1 -1 1 1 +7897891 7975958 78068 196680.0617 200587.2222 127.9375 127.9375 0 run13.mat -1 -1 1 1 +8077751 8155819 78069 205673.3605 209577.7792 127.9375 127.9375 3.9042e-05 run13.mat -1 -1 1 1 +8201784 8468048 266265 211876.1624 225190.3868 127.9375 127.9375 2.9095e-05 run13.mat -1 -1 1 1 +2 276864 276863 333925.5737 347771.9692 127.9375 127.9375 3.3027e-05 run14.mat -1 -1 25706 164160 +378661 456924 78264 352862.1 356773.8256 127.9375 127.9375 0 run14.mat -1 -1 215060 254194 +558721 636789 78069 361865.4459 365770.001 127.9375 127.9375 1.9521e-05 run14.mat -1 -1 305094 344130 +738581 816657 78077 370858.9823 374761.1717 127.9375 127.9375 0 run14.mat -1 -1 395028 434068 +918440 996665 78226 379850.4181 383761.1357 127.9375 127.9375 0 run14.mat -1 -1 484961 524076 +1098459 1176442 77984 388852.6358 392750.6392 127.9375 127.9375 1.9542e-05 run14.mat -1 -1 574975 613968 +1278339 1356390 78052 397847.0947 401748.1514 127.9375 127.9375 0 run14.mat -1 -1 664919 703946 +1458219 1536194 77976 406842.309 410739.2682 127.9375 127.9375 1.9544e-05 run14.mat -1 -1 754863 793853 +1638098 1716356 78259 415834.337 419749.2478 127.9375 127.9375 0 run14.mat -1 -1 844806 883937 +1818138 1896247 78110 424837.8395 428742.4168 127.9375 127.9375 0 run14.mat -1 -1 934831 973887 +1998139 2076426 78288 433838.3659 437752.1179 127.9375 127.9375 1.9466e-05 run14.mat -1 -1 1024835 1063980 +2178198 2256310 78113 442840.2063 446746.202 127.9375 127.9375 0 run14.mat -1 -1 1114869 1153926 +2358058 2436312 78255 451833.1036 455745.8684 127.9375 127.9375 1.9474e-05 run14.mat -1 -1 1204802 1243931 +2538137 2616327 78191 460836.5494 464748.7354 127.9375 127.9375 3.8981e-05 run14.mat -1 -1 1294846 1333943 +2718177 2796445 78269 469841.4244 473754.2442 127.9375 127.9375 0 run14.mat -1 -1 1384869 1424005 +2898217 2976384 78168 478843.2209 482749.4623 127.9375 127.9375 0 run14.mat -1 -1 1474893 1513979 +3078296 3156409 78114 487844.6117 491750.5963 127.9375 127.9375 0 run14.mat -1 -1 1564937 1603995 +3258156 3338512 80357 496839.6681 500855.7726 127.9375 127.9375 2.2126e-05 run14.mat -1 -1 1654871 1695051 +3440276 3518383 78108 505944.3485 509848.8411 127.9375 127.9375 0 run14.mat -1 -1 1745935 1784990 +3620155 3698354 78200 514938.401 518848.8531 127.9375 127.9375 0 run14.mat -1 -1 1835879 1874979 +3800175 3878138 77964 523940.1116 527836.9555 127.9375 127.9375 0 run14.mat -1 -1 1925892 1964875 +3980014 4058273 78260 532934.4505 536846.691 127.9375 127.9375 0 run14.mat -1 -1 2015816 2054947 +4160094 4238124 78031 541938.5594 545838.4345 127.9375 127.9375 1.953e-05 run14.mat -1 -1 2105860 2144877 +4339935 4418217 78283 550928.9432 554841.9625 127.9375 127.9375 3.8935e-05 run14.mat -1 -1 2195784 2234927 +4519994 4597976 77983 559932.388 563831.702 127.9375 127.9375 0 run14.mat -1 -1 2285818 2324810 +4699793 4778090 78298 568922.3092 572836.7977 127.9375 127.9375 1.9464e-05 run14.mat -1 -1 2375721 2414871 +4879873 4957965 78093 577924.858 581829.4939 127.9375 127.9375 0 run14.mat -1 -1 2465765 2504813 +5059733 5138043 78311 586919.7041 590835.6501 127.9375 127.9375 1.9461e-05 run14.mat -1 -1 2555699 2594856 +5239813 5317833 78021 595925.2446 599825.2428 127.9375 127.9375 1.9533e-05 run14.mat -1 -1 2645743 2684754 +5419694 5497600 77907 604919.2904 608813.4086 127.9375 127.9375 0 run14.mat -1 -1 2735688 2774642 +5599492 5677565 78074 613907.6593 617810.6733 127.9375 127.9375 0 run14.mat -1 -1 2825590 2864629 +5779392 5857513 78122 622904.2706 626807.3751 127.9375 127.9375 0 run14.mat -1 -1 2915544 2954606 +5959292 6037591 78300 631898.0814 635813.2497 127.9375 127.9375 6.1633e-05 run14.mat -1 -1 3005498 3044650 +6139371 6217435 78065 640900.2059 644806.5477 127.9375 127.9375 0 run14.mat -1 -1 3095542 3134576 +6319251 6397295 78045 649896.2452 653798.445 127.9375 127.9375 0 run14.mat -1 -1 3185486 3224509 +6499091 6577170 78080 658889.0337 662792.0482 127.9375 127.9375 1.9518e-05 run14.mat -1 -1 3275410 3314451 +6678991 6757279 78289 667884.1129 671797.2081 127.9375 127.9375 0 run14.mat -1 -1 3365363 3404510 +6859050 6937048 77999 676887.1552 680785.0851 127.9375 127.9375 0 run14.mat -1 -1 3455397 3494398 +7038930 7116916 77987 685880.1498 689778.85 127.9375 127.9375 0 run14.mat -1 -1 3545341 3584336 +7218809 7296840 78032 694874.807 698776.9619 127.9375 127.9375 3.906e-05 run14.mat -1 -1 3635284 3674302 +7398629 7476717 78089 703866.1471 707770.523 127.9375 127.9375 0 run14.mat -1 -1 3725198 3764244 +7578529 7656832 78304 712861.1435 716776.2073 127.9375 127.9375 1.9462e-05 run14.mat -1 -1 3815152 3854305 +7758609 7836662 78054 721865.4608 725768.999 127.9375 127.9375 0 run14.mat -1 -1 3905196 3944225 +7938468 8016730 78263 730858.9343 734771.8903 127.9375 127.9375 0 run14.mat -1 -1 3995130 4034263 +8103086 8233051 129966 739089.5821 745595.1199 127.9375 127.9375 0 run14.mat -1 -1 4077442 4131951 +2 194456 194455 822418.0169 832146.4681 127.9375 127.9375 2.4818e-05 run15.mat -1 -1 67558 164844 +296241 374483 78243 837236.8713 841147.8575 127.9375 127.9375 3.8955e-05 run15.mat -1 -1 215739 254862 +476300 554441 78142 846238.5562 850144.1409 127.9375 127.9375 1.9503e-05 run15.mat -1 -1 305772 344844 +656200 734396 78197 855232.6829 859141.2401 127.9375 127.9375 3.8978e-05 run15.mat -1 -1 395726 434826 +836299 914548 78250 864237.0613 868149.3493 127.9375 127.9375 1.9476e-05 run15.mat -1 -1 485780 524905 +1016319 1094449 78131 873237.1575 877145.7392 127.9375 127.9375 0 run15.mat -1 -1 575794 614860 +1196219 1274511 78293 882234.566 886148.2 127.9375 127.9375 0 run15.mat -1 -1 665747 704895 +1376279 1454402 78124 891237.0758 895143.2766 127.9375 127.9375 1.9507e-05 run15.mat -1 -1 755781 794845 +1556178 1634504 78327 900231.4332 904148.7208 127.9375 127.9375 3.8913e-05 run15.mat -1 -1 845735 884900 +1736258 1814539 78282 909236.6897 913151.3597 127.9375 127.9375 1.9468e-05 run15.mat -1 -1 935779 974921 +1916318 1994521 78204 918238.9031 922150.6737 127.9375 127.9375 0 run15.mat -1 -1 1025813 1064916 +2096417 2174500 78084 927246.5688 931150.395 127.9375 127.9375 1.9517e-05 run15.mat -1 -1 1115866 1154909 +2276297 2354506 78210 936239.4429 940149.5963 127.9375 127.9375 1.9486e-05 run15.mat -1 -1 1205810 1244917 +2456397 2534542 78146 945243.4876 949150.7515 127.9375 127.9375 0 run15.mat -1 -1 1295864 1334938 +2636317 2714564 78248 954239.7108 958150.8065 127.9375 127.9375 0 run15.mat -1 -1 1385828 1424954 +2816356 2894583 78228 963240.8441 967153.3348 127.9375 127.9375 1.9481e-05 run15.mat -1 -1 1475851 1514967 +2996476 3074565 78090 972248.5422 976153.2908 127.9375 127.9375 1.9516e-05 run15.mat -1 -1 1565915 1604961 +3176336 3254584 78249 981240.4171 985155.8695 127.9375 127.9375 0 run15.mat -1 -1 1655849 1694975 +3356355 3434694 78340 990243.702 994160.3632 127.9375 127.9375 0 run15.mat -1 -1 1745863 1785034 +3536476 3614539 78064 999249.9842 1003151.0913 127.9375 127.9375 0 run15.mat -1 -1 1835927 1874960 +3716335 3794611 78277 1008240.2593 1012157.7288 127.9375 127.9375 0 run15.mat -1 -1 1925861 1965001 +3896395 3974352 77958 1017243.6813 1021144.4309 127.9375 127.9375 4.0726e-05 run15.mat -1 -1 2015895 2054875 +4076254 4154534 78281 1026238.1097 1030151.8049 127.9375 127.9375 3.8936e-05 run15.mat -1 -1 2105828 2144970 +4256353 4334490 78138 1035243.9875 1039150.0899 127.9375 127.9375 0 run15.mat -1 -1 2195882 2234952 +4436253 4514401 78149 1044239.3251 1048147.026 127.9375 127.9375 0 run15.mat -1 -1 2285836 2324911 +4616294 4694587 78294 1053241.3437 1057155.6614 127.9375 127.9375 0 run15.mat -1 -1 2375860 2415008 +4796353 4876306 79954 1062245.3429 1066241.4189 127.9375 127.9375 1.9061e-05 run15.mat -1 -1 2465894 2505871 +4978092 5056373 78282 1071330.711 1075246.17 127.9375 127.9375 1.9468e-05 run15.mat -1 -1 2556767 2595909 +5158173 5236222 78050 1080334.2185 1084237.5632 127.9375 127.9375 3.9051e-05 run15.mat -1 -1 2646811 2685838 +5338031 5416320 78290 1089327.7962 1093242.6458 127.9375 127.9375 1.9466e-05 run15.mat -1 -1 2736744 2775890 +5518051 5596114 78064 1098328.052 1102232.7786 127.9375 127.9375 0 run15.mat -1 -1 2826758 2865791 +5697912 5775885 77974 1107323.0335 1111222.702 127.9375 127.9375 1.9545e-05 run15.mat -1 -1 2916693 2955681 +5877771 5955896 78126 1116317.3368 1120223.4644 127.9375 127.9375 3.9013e-05 run15.mat -1 -1 3006626 3045690 +6057691 6135702 78012 1125312.3283 1129213.6841 127.9375 127.9375 0 run15.mat -1 -1 3096590 3135597 +6237591 6315832 78242 1134305.9508 1138220.2307 127.9375 127.9375 0 run15.mat -1 -1 3186544 3225666 +6417610 6495598 77989 1143310.0801 1147209.7723 127.9375 127.9375 1.9541e-05 run15.mat -1 -1 3276557 3315553 +6597490 6675663 78174 1152304.4734 1156211.1706 127.9375 127.9375 1.9495e-05 run15.mat -1 -1 3366501 3405590 +6777450 6855548 78099 1161300.0392 1165204.6789 127.9375 127.9375 3.9027e-05 run15.mat -1 -1 3456485 3495536 +6957329 7035378 78050 1170294.5418 1174197.7124 127.9375 127.9375 0 run15.mat -1 -1 3546429 3585455 +7137249 7215535 78287 1179291.285 1183206.2475 127.9375 127.9375 2.1089e-05 run15.mat -1 -1 3636393 3675538 +7317289 7395382 78094 1188294.2295 1192198.2239 127.9375 127.9375 0 run15.mat -1 -1 3726417 3765465 +7497209 7575285 78077 1197288.3989 1201192.252 127.9375 127.9375 4.3917e-05 run15.mat -1 -1 3816380 3855421 +7677068 7755382 78315 1206282.1026 1210197.4445 127.9375 127.9375 0 run15.mat -1 -1 3906314 3945473 +7857148 7935248 78101 1215286.3571 1219192.034 127.9375 127.9375 0 run15.mat -1 -1 3996358 4035410 +8021982 8270112 248131 1223528.7047 1235936.7171 127.9375 127.9375 1.8425e-05 run15.mat -1 -1 4078779 4202863 +2 297847 297846 1337595.2377 1352484.5818 127.9375 127.9375 2.0467e-05 run16.mat -1 -1 16413 165315 +399726 477892 78167 1357576.9148 1361486.4616 127.9375 127.9375 0 run16.mat -1 -1 216256 255341 +579806 657864 78059 1366581.9647 1370483.8182 127.9375 127.9375 0 run16.mat -1 -1 306300 345331 +759665 837935 78271 1375573.6709 1379488.0558 127.9375 127.9375 0 run16.mat -1 -1 396234 435370 +939725 1017842 78118 1384579.4346 1388485.6926 127.9375 127.9375 1.9509e-05 run16.mat -1 -1 486268 525328 +1119725 1198046 78322 1393580.217 1397494.8701 127.9375 127.9375 0 run16.mat -1 -1 576272 615434 +1299804 1377867 78064 1402583.4704 1406484.7707 127.9375 127.9375 1.9522e-05 run16.mat -1 -1 666315 705348 +1479664 1557994 78331 1411575.4925 1415493.3945 127.9375 127.9375 0 run16.mat -1 -1 756249 795416 +1659744 1737709 77966 1420581.2709 1424478.0714 127.9375 127.9375 0 run16.mat -1 -1 846293 885277 +1839623 1917875 78253 1429574.7044 1433485.9615 127.9375 127.9375 1.9475e-05 run16.mat -1 -1 936237 975364 +2019644 2097685 78042 1438573.1766 1442478.237 127.9375 127.9375 1.9528e-05 run16.mat -1 -1 1026251 1065273 +2199503 2277605 78103 1447568.2872 1451474.7855 127.9375 127.9375 0 run16.mat -1 -1 1116184 1155237 +2379383 2457623 78241 1456562.5621 1460474.1365 127.9375 127.9375 0 run16.mat -1 -1 1206128 1245250 +2559443 2637522 78080 1465567.0206 1469470.8834 127.9375 127.9375 0 run16.mat -1 -1 1296162 1335204 +2739301 2817277 77977 1474558.9978 1478458.0871 127.9375 127.9375 0 run16.mat -1 -1 1386095 1425085 +2919082 2997185 78104 1483548.6161 1487453.1355 127.9375 127.9375 1.9512e-05 run16.mat -1 -1 1475990 1515043 +3098961 3179095 80135 1492541.4739 1496549.4527 127.9375 127.9375 1.9018e-05 run16.mat -1 -1 1565933 1606002 +3280901 3358859 77959 1501638.777 1505536.7907 127.9375 127.9375 0 run16.mat -1 -1 1656907 1695888 +3460761 3538746 77986 1510630.7603 1514533.58 127.9375 127.9375 1.9542e-05 run16.mat -1 -1 1746841 1785835 +3640601 3718818 78218 1519623.2063 1523535.7553 127.9375 127.9375 0 run16.mat -1 -1 1836765 1875875 +3820601 3898672 78072 1528624.5959 1532529.2418 127.9375 127.9375 2.1147e-05 run16.mat -1 -1 1926769 1965806 +4000460 4078449 77990 1537619.6365 1541518.2414 127.9375 127.9375 2.1169e-05 run16.mat -1 -1 2016702 2055698 +4180340 4258417 78078 1546612.7705 1550514.6921 127.9375 127.9375 1.9519e-05 run16.mat -1 -1 2106646 2145687 +4360200 4438082 77883 1555604.5608 1559499.5406 127.9375 127.9375 0 run16.mat -1 -1 2196580 2235523 +4539898 4618182 78285 1564590.2629 1568504.1625 127.9375 127.9375 1.9467e-05 run16.mat -1 -1 2286433 2325577 +4719899 4797982 78084 1573592.1096 1577495.7477 127.9375 127.9375 3.9034e-05 run16.mat -1 -1 2376438 2415481 +4899798 4977773 77976 1582587.4576 1586484.6841 127.9375 127.9375 0 run16.mat -1 -1 2466391 2505380 +5079678 5157758 78081 1591578.9173 1595484.2287 127.9375 127.9375 0 run16.mat -1 -1 2556335 2595377 +5259559 5337565 78007 1600574.9631 1604474.1076 127.9375 127.9375 1.9536e-05 run16.mat -1 -1 2646280 2685284 +5439458 5517695 78238 1609568.6536 1613480.7112 127.9375 127.9375 0 run16.mat -1 -1 2736233 2775353 +5619458 5697540 78083 1618569.6362 1622473.5592 127.9375 127.9375 6.0178e-05 run16.mat -1 -1 2826237 2865280 +5799318 5877448 78131 1627562.7352 1631467.4721 127.9375 127.9375 0 run16.mat -1 -1 2916171 2955238 +5979217 6057490 78274 1636557.8752 1640470.5982 127.9375 127.9375 0 run16.mat -1 -1 3006124 3045262 +6159296 6237241 77946 1645561.902 1649460.1416 127.9375 127.9375 1.9552e-05 run16.mat -1 -1 3096168 3135142 +6339136 6417418 78283 1654555.3251 1658468.4901 127.9375 127.9375 1.9467e-05 run16.mat -1 -1 3186091 3225234 +6519156 6597243 78088 1663555.6149 1667458.0304 127.9375 127.9375 2.2769e-05 run16.mat -1 -1 3276105 3315151 +6699016 6777284 78269 1672548.9915 1676460.9548 127.9375 127.9375 6.0035e-05 run16.mat -1 -1 3366040 3405175 +6879095 6957197 78103 1681552.4243 1685458.334 127.9375 127.9375 0 run16.mat -1 -1 3456083 3495136 +7058975 7139152 80178 1690546.0484 1694554.8786 127.9375 127.9375 2.0591e-05 run16.mat -1 -1 3546027 3586117 +7240914 7320990 80077 1699645.434 1703647.7698 127.9375 127.9375 3.8063e-05 run16.mat -1 -1 3637001 3677040 +7422794 7500976 78183 1708738.6112 1712648.0325 127.9375 127.9375 0 run16.mat -1 -1 3727945 3767037 +7602774 7680874 78101 1717736.3889 1721642.3038 127.9375 127.9375 4.0652e-05 run16.mat -1 -1 3817938 3856990 +7782654 7862708 80055 1726730.6786 1730732.9109 127.9375 127.9375 1.9037e-05 run16.mat -1 -1 3907882 3947911 +7964613 8042712 78100 1735830.0571 1739734.3146 127.9375 127.9375 0 run16.mat -1 -1 3998866 4037917 +8128938 8301089 172152 1744044.9841 1752653.3957 127.9375 127.9375 1.918e-05 run16.mat -1 -1 4081032 4167129 +2 271358 271357 1835317.1204 1848887.0921 127.9375 127.9375 1.1232e-05 run17.mat -1 -1 1 121684 +373163 451270 78108 1853978.9661 1857882.7503 127.9375 127.9375 6.0159e-05 run17.mat -1 -1 172589 211644 +553062 631157 78096 1862971.3853 1866876.6837 127.9375 127.9375 0 run17.mat -1 -1 262542 301591 +732942 811145 78204 1871964.7458 1875877.5249 127.9375 127.9375 1.9487e-05 run17.mat -1 -1 352486 391590 +913041 991083 78043 1880969.483 1884874.1877 127.9375 127.9375 0 run17.mat -1 -1 442540 481562 +1092881 1171143 78263 1889965.4005 1893876.0052 127.9375 127.9375 1.9472e-05 run17.mat -1 -1 532464 571596 +1272921 1351230 78310 1898966.6922 1902880.6644 127.9375 127.9375 1.9461e-05 run17.mat -1 -1 622487 661643 +1453020 1531139 78120 1907969.9929 1911876.9332 127.9375 127.9375 0 run17.mat -1 -1 712541 751602 +1633060 1711226 78167 1916973.1177 1920882.1188 127.9375 127.9375 0 run17.mat -1 -1 802565 841650 +1813120 1891142 78023 1925977.7992 1929878.8511 127.9375 127.9375 0 run17.mat -1 -1 892599 931611 +1992960 2071257 78298 1934967.2354 1938882.0254 127.9375 127.9375 0 run17.mat -1 -1 982523 1021673 +2173019 2251207 78189 1943969.8545 1947880.8914 127.9375 127.9375 3.8982e-05 run17.mat -1 -1 1072556 1111652 +2353099 2431059 77961 1952975.0077 1956874.4035 127.9375 127.9375 0 run17.mat -1 -1 1162600 1201582 +2532978 2611268 78291 1961968.2852 1965882.6218 127.9375 127.9375 1.9465e-05 run17.mat -1 -1 1252544 1291690 +2713058 2791076 78019 1970973.613 1974874.6896 127.9375 127.9375 1.9533e-05 run17.mat -1 -1 1342588 1381599 +2892879 2971010 78132 1979965.0921 1983872.8232 127.9375 127.9375 2.113e-05 run17.mat -1 -1 1432502 1471570 +3072798 3151118 78321 1988960.9365 1992876.4692 127.9375 127.9375 0 run17.mat -1 -1 1522466 1561627 +3252878 3330991 78114 1997965.8345 2001871.1752 127.9375 127.9375 0 run17.mat -1 -1 1612510 1651568 +3432818 3510928 78111 2006962.2096 2010868.5806 127.9375 127.9375 0 run17.mat -1 -1 1702483 1741540 +3612717 3690934 78218 2015957.9651 2019868.803 127.9375 127.9375 0 run17.mat -1 -1 1792437 1831547 +3792756 3870839 78084 2024958.5455 2028863.6766 127.9375 127.9375 0 run17.mat -1 -1 1882460 1921504 +3972657 4050760 78104 2033954.9992 2037860.7741 127.9375 127.9375 0 run17.mat -1 -1 1972415 2011468 +4152555 4230889 78335 2042948.5838 2046865.8294 127.9375 127.9375 1.9455e-05 run17.mat -1 -1 2062368 2101537 +4332675 4410770 78096 2051954.924 2055861.8962 127.9375 127.9375 1.9514e-05 run17.mat -1 -1 2152432 2191481 +4512576 4590530 77955 2060952.4277 2064849.1616 127.9375 127.9375 0 run17.mat -1 -1 2242386 2281365 +4692415 4770712 78298 2069944.361 2073858.2644 127.9375 127.9375 0 run17.mat -1 -1 2332310 2371460 +4872475 4950559 78085 2078947.7181 2082851.4188 127.9375 127.9375 1.9517e-05 run17.mat -1 -1 2422343 2461387 +5052355 5130686 78332 2087942.4376 2091857.97 127.9375 127.9375 1.9455e-05 run17.mat -1 -1 2512288 2551455 +5232455 5310420 77966 2096945.5535 2100845.0185 127.9375 127.9375 0 run17.mat -1 -1 2602342 2641326 +5412314 5490447 78134 2105940.0073 2109846.4994 127.9375 127.9375 0 run17.mat -1 -1 2692275 2731343 +5592333 5670471 78139 2114941.4248 2118847.486 127.9375 127.9375 1.9503e-05 run17.mat -1 -1 2782289 2821359 +5772233 5850545 78313 2123936.0363 2127850.6765 127.9375 127.9375 0 run17.mat -1 -1 2872242 2911400 +5952313 6030608 78296 2132940.389 2136854.8903 127.9375 127.9375 0 run17.mat -1 -1 2962286 3001435 +6132394 6210521 78128 2141942.432 2145849.9225 127.9375 127.9375 1.9506e-05 run17.mat -1 -1 3052331 3091396 +6312272 6390485 78214 2150937.8731 2154845.8042 127.9375 127.9375 2.2732e-05 run17.mat -1 -1 3142274 3181382 +6492313 6570607 78295 2159938.643 2163852.1506 127.9375 127.9375 1.9464e-05 run17.mat -1 -1 3232298 3271447 +6672372 6750518 78147 2168943.7438 2172848.6792 127.9375 127.9375 0 run17.mat -1 -1 3322331 3361406 +6852251 6930365 78115 2177937.8684 2181843.666 127.9375 127.9375 3.9019e-05 run17.mat -1 -1 3412275 3451333 +7032151 7110458 78308 2186933.1674 2190846.689 127.9375 127.9375 3.8923e-05 run17.mat -1 -1 3502229 3541384 +7212232 7290308 78077 2195935.0461 2199839.1077 127.9375 127.9375 0 run17.mat -1 -1 3592274 3631313 +7392091 7470119 78029 2204929.1559 2208830.4072 127.9375 127.9375 2.1158e-05 run17.mat -1 -1 3682207 3721223 +7571950 7650245 78296 2213922.3897 2217838.9695 127.9375 127.9375 0 run17.mat -1 -1 3772140 3811290 +7752031 7830071 78041 2222926.1482 2226829.5908 127.9375 127.9375 0 run17.mat -1 -1 3862185 3901206 +7931950 8009976 78027 2231924.117 2235824.4248 127.9375 127.9375 1.9531e-05 run17.mat -1 -1 3952148 3991163 +8097157 9092827 995671 2240181.5022 2289961.353 127.9375 127.9375 1.25e-05 run17.mat -1 -1 4034755 4274755 +2 286288 286287 -127014.2697 -112810.7571 127.9375 127.9375 1.597e-05 run18.mat -1 -1 1 1 +388089 466272 78184 -107760.1022 -103881.2076 127.9375 127.9375 1.9492e-05 run18.mat -1 -1 1 1 +568169 646434 78266 -98825.7898 -94942.8269 127.9375 127.9375 1.9472e-05 run18.mat -1 -1 1 1 +748268 826460 78193 -89890.5348 -86011.1937 127.9375 127.9375 0 run18.mat -1 -1 1 1 +928267 1006507 78241 -80960.2411 -77078.5186 127.9375 127.9375 1.9478e-05 run18.mat -1 -1 1 1 +1108268 1186268 78001 -72029.8482 -68160.0327 127.9375 127.9375 0 run18.mat -1 -1 1 1 +1288148 1366434 78287 -63105.4584 -59221.4537 127.9375 127.9375 0 run18.mat -1 -1 1 1 +1468208 1546264 78057 -54172.1383 -50299.5446 127.9375 127.9375 0 run18.mat -1 -1 1 1 +1648027 1726183 78157 -45250.775 -41373.2199 127.9375 127.9375 1.9499e-05 run18.mat -1 -1 1 1 +1828026 1906316 78291 -36320.4812 -32436.278 127.9375 127.9375 0 run18.mat -1 -1 1 1 +2008086 2086240 78155 -27387.1611 -23509.7053 127.9375 127.9375 1.9499e-05 run18.mat -1 -1 1 1 +2188065 2266300 78236 -18457.8597 -14576.3852 127.9375 127.9375 0 run18.mat -1 -1 1 1 +2368065 2446382 78318 -9527.5164 -5641.9736 127.9375 127.9375 1.9459e-05 run18.mat -1 -1 1 1 +2548166 2626381 78216 -592.1621 3312.9379 127.9375 127.9375 0 run18.mat -1 -1 1 1 +2728265 2806505 78241 8408.2485 12319.241 127.9375 127.9375 1.9478e-05 run18.mat -1 -1 1 1 +2908324 2986650 78327 17409.8965 21326.7748 127.9375 127.9375 1.9457e-05 run18.mat -1 -1 1 1 +3088404 3166873 78470 26413.6755 30336.8243 127.9375 127.9375 0 run18.mat -1 -1 1 1 +3268684 3346935 78252 35427.5868 39341.5911 127.9375 127.9375 2.1098e-05 run18.mat -1 -1 1 1 +3448743 3527089 78347 44430.5354 48348.2647 127.9375 127.9375 0 run18.mat -1 -1 1 1 +3628883 3707256 78374 53437.5643 57357.0621 127.9375 127.9375 0 run18.mat -1 -1 1 1 +3809143 3887322 78180 62451.8309 66359.8397 127.9375 127.9375 0 run18.mat -1 -1 1 1 +3989163 4067496 78334 71454.1663 75368.8984 127.9375 127.9375 0 run18.mat -1 -1 1 1 +4169282 4247537 78256 80460.1651 84370.8676 127.9375 127.9375 0 run18.mat -1 -1 1 1 +4349362 4427506 78145 89464.1048 93369.3311 127.9375 127.9375 1.9502e-05 run18.mat -1 -1 1 1 +4529401 4607828 78428 98467.4495 102388.6822 127.9375 127.9375 3.8863e-05 run18.mat -1 -1 1 1 +4709622 4787816 78195 107476.6786 111386.6179 127.9375 127.9375 0 run18.mat -1 -1 1 1 +4889622 4967933 78312 116475.9973 120392.7014 127.9375 127.9375 1.946e-05 run18.mat -1 -1 1 1 +5069721 5148193 78473 125482.1024 129406.672 127.9375 127.9375 0 run18.mat -1 -1 1 1 +5250001 5328287 78287 134495.0985 138410.0613 127.9375 127.9375 2.1089e-05 run18.mat -1 -1 1 1 +5430061 5508452 78392 143500.7938 147419.4543 127.9375 127.9375 0 run18.mat -1 -1 1 1 +5610260 5688547 78288 152508.7443 156424.5284 127.9375 127.9375 0 run18.mat -1 -1 1 1 +5790320 5868727 78408 161511.0875 165432.7264 127.9375 127.9375 0 run18.mat -1 -1 1 1 +5970520 6049036 78517 170523.2646 174450.6023 127.9375 127.9375 0 run18.mat -1 -1 1 1 +6150819 6229058 78240 179535.5043 183450.3045 127.9375 127.9375 1.9478e-05 run18.mat -1 -1 1 1 +6330839 6409280 78442 188537.1594 192462.1785 127.9375 127.9375 0 run18.mat -1 -1 1 1 +6511099 6589522 78424 197553.4952 201473.9427 127.9375 127.9375 0 run18.mat -1 -1 1 1 +6691319 6769782 78464 206563.0473 210486.5906 127.9375 127.9375 1.9423e-05 run18.mat -1 -1 1 1 +6871558 6949816 78259 215574.4279 219488.6088 127.9375 127.9375 0 run18.mat -1 -1 1 1 +7051578 7130014 78437 224575.6991 228497.7112 127.9375 127.9375 0 run18.mat -1 -1 1 1 +7231817 7310079 78263 233588.8954 237502.9288 127.9375 127.9375 3.8945e-05 run18.mat -1 -1 1 1 +7411857 7490229 78373 242591.7654 246510.9188 127.9375 127.9375 4.3751e-05 run18.mat -1 -1 1 1 +7591997 7670319 78323 251597.7099 255513.4815 127.9375 127.9375 0 run18.mat -1 -1 1 1 +7772117 7850642 78526 260604.6757 264529.459 127.9375 127.9375 0 run18.mat -1 -1 1 1 +7952437 8030757 78321 269620.6634 273535.696 127.9375 127.9375 0 run18.mat -1 -1 1 1 +8116849 8384572 267724 277840.8875 291228.0029 127.9375 127.9375 1.1385e-05 run18.mat -1 -1 1 1 +2 276776 276775 410771.0183 424614.0296 127.9375 127.9375 5.5062e-06 run19.mat -1 -1 55595 194004 +378682 456997 78316 429709.6921 433624.3737 127.9375 127.9375 2.1081e-05 run19.mat -1 -1 244959 284118 +558782 637093 78312 438713.1461 442630.9361 127.9375 127.9375 2.1082e-05 run19.mat -1 -1 335013 374170 +738841 817336 78496 447717.0425 451642.4776 127.9375 127.9375 0 run19.mat -1 -1 425046 464295 +919101 997268 78168 456731.4235 460637.5308 127.9375 127.9375 0 run19.mat -1 -1 515180 554266 +1099121 1177387 78267 465732.0942 469644.4609 127.9375 127.9375 0 run19.mat -1 -1 605194 644329 +1279160 1357601 78442 474734.757 478654.6951 127.9375 127.9375 0 run19.mat -1 -1 695218 734440 +1459400 1537629 78230 483744.832 487656.5705 127.9375 127.9375 2.1104e-05 run19.mat -1 -1 785342 824458 +1639420 1717828 78409 492748.3103 496667.3921 127.9375 127.9375 0 run19.mat -1 -1 875355 914562 +1819699 1897932 78234 501761.604 505673.5967 127.9375 127.9375 3.8959e-05 run19.mat -1 -1 965499 1004617 +1999699 2077900 78202 510761.1625 514671.1266 127.9375 127.9375 0 run19.mat -1 -1 1055503 1094605 +2179780 2258261 78482 519765.584 523687.713 127.9375 127.9375 0 run19.mat -1 -1 1145547 1184790 +2360038 2440196 80159 528777.7871 532786.3493 127.9375 127.9375 0 run19.mat -1 -1 1235680 1275761 +2541958 2620224 78267 537875.0997 541786.377 127.9375 127.9375 3.8943e-05 run19.mat -1 -1 1326644 1365779 +2722018 2800408 78391 546876.8884 550798.0727 127.9375 127.9375 0 run19.mat -1 -1 1416678 1455875 +2902237 2980540 78304 555889.3708 559804.9476 127.9375 127.9375 0 run19.mat -1 -1 1506792 1545945 +3082317 3160590 78274 564893.3586 568806.878 127.9375 127.9375 0 run19.mat -1 -1 1596835 1635974 +3262357 3340625 78269 573893.821 577807.3777 127.9375 127.9375 0 run19.mat -1 -1 1686860 1725996 +3442437 3520656 78220 582898.8234 586810.4912 127.9375 127.9375 0 run19.mat -1 -1 1776904 1816015 +3622536 3700771 78236 591904.6574 595815.9682 127.9375 127.9375 4.2205e-05 run19.mat -1 -1 1866957 1906076 +3802556 3880787 78232 600905.1147 604817.3648 127.9375 127.9375 1.948e-05 run19.mat -1 -1 1956971 1996088 +3982556 4060829 78274 609905.5451 613820.4386 127.9375 127.9375 0 run19.mat -1 -1 2046975 2086113 +4162655 4240912 78258 618912.4378 622824.1236 127.9375 127.9375 0 run19.mat -1 -1 2137029 2176159 +4342676 4420916 78241 627913.433 631823.5084 127.9375 127.9375 1.9478e-05 run19.mat -1 -1 2227043 2266165 +4522735 4600937 78203 636913.921 640824.1501 127.9375 127.9375 2.1111e-05 run19.mat -1 -1 2317076 2356179 +4702754 4781022 78269 645918.137 649829.757 127.9375 127.9375 1.9471e-05 run19.mat -1 -1 2407090 2446226 +4882814 4961137 78324 654918.2101 658835.8 127.9375 127.9375 1.9457e-05 run19.mat -1 -1 2497124 2536287 +5063033 5141144 78112 663931.1902 667837.5812 127.9375 127.9375 0 run19.mat -1 -1 2587237 2626294 +5242953 5321255 78303 672926.3918 676842.5427 127.9375 127.9375 1.9462e-05 run19.mat -1 -1 2677201 2716354 +5423034 5501351 78318 681931.4519 685846.9516 127.9375 127.9375 1.9459e-05 run19.mat -1 -1 2767246 2806406 +5603153 5681198 78046 690936.9722 694838.5107 127.9375 127.9375 0 run19.mat -1 -1 2857309 2896333 +5783013 5861265 78253 699929.6741 703841.443 127.9375 127.9375 0 run19.mat -1 -1 2947243 2986371 +5963072 6041368 78297 708932.802 712848.9053 127.9375 127.9375 0 run19.mat -1 -1 3037276 3076426 +6143132 6221298 78167 717936.2635 721844.5298 127.9375 127.9375 0 run19.mat -1 -1 3127310 3166395 +6323191 6401604 78414 726939.8613 730859.7924 127.9375 127.9375 0 run19.mat -1 -1 3217344 3256552 +6503391 6581495 78105 735949.1654 739855.5253 127.9375 127.9375 0 run19.mat -1 -1 3307448 3346502 +6683250 6761519 78270 744942.5658 748856.2732 127.9375 127.9375 0 run19.mat -1 -1 3397381 3436517 +6863311 6941627 78317 753946.6098 757861.777 127.9375 127.9375 0 run19.mat -1 -1 3487416 3526575 +7043410 7121656 78247 762951.4461 766864.4327 127.9375 127.9375 0 run19.mat -1 -1 3577469 3616593 +7223451 7301495 78045 771952.594 775856.9007 127.9375 127.9375 6.3462e-05 run19.mat -1 -1 3667494 3706517 +7403249 7481522 78274 780944.9935 784857.6429 127.9375 127.9375 0 run19.mat -1 -1 3757396 3796534 +7583289 7661552 78264 789945.8524 793858.5676 127.9375 127.9375 1.9472e-05 run19.mat -1 -1 3847420 3886554 +7763329 7841536 78208 798947.6123 802858.3043 127.9375 127.9375 1.9486e-05 run19.mat -1 -1 3937445 3976550 +7943409 8021854 78446 807953.0171 811874.9831 127.9375 127.9375 1.9427e-05 run19.mat -1 -1 4027488 4066713 +8108544 8322708 214165 816208.3664 826914.7365 127.9375 127.9375 7.7088e-06 run19.mat -1 -1 4110060 4217106 +2 290087 290086 9695111.7899 9709620.4369 127.9375 127.9375 2.6268e-05 run2.mat -1 -1 18186 163263 +391838 469997 78160 9714706.2874 9718616.2184 127.9375 127.9375 3.8996e-05 run2.mat -1 -1 214141 253223 +571877 650224 78348 9723711.366 9727628.472 127.9375 127.9375 3.8903e-05 run2.mat -1 -1 304165 343340 +751998 830273 78276 9732716.9041 9736629.466 127.9375 127.9375 0 run2.mat -1 -1 394230 433369 +932037 1012145 80109 9741717.3401 9745724.8349 127.9375 127.9375 1.9024e-05 run2.mat -1 -1 484253 524308 +1113916 1191985 78070 9750814.3593 9754715.5459 127.9375 127.9375 0 run2.mat -1 -1 575197 614233 +1293757 1372048 78292 9759804.2752 9763720.818 127.9375 127.9375 2.1087e-05 run2.mat -1 -1 665121 704268 +1473816 1551937 78122 9768808.3844 9772715.7479 127.9375 127.9375 1.9508e-05 run2.mat -1 -1 755154 794216 +1653697 1731951 78255 9777804.1619 9781713.989 127.9375 127.9375 3.8949e-05 run2.mat -1 -1 845099 884227 +1833756 1911800 78045 9786806.456 9790707.6406 127.9375 127.9375 3.9054e-05 run2.mat -1 -1 935132 974156 +2013555 2091838 78284 9795795.895 9799710.9226 127.9375 127.9375 0 run2.mat -1 -1 1025035 1064179 +2193655 2271782 78128 9804802.0387 9808707.6747 127.9375 127.9375 0 run2.mat -1 -1 1115090 1154155 +2373534 2451618 78085 9813794.739 9817697.9608 127.9375 127.9375 3.9034e-05 run2.mat -1 -1 1205033 1244077 +2553374 2631477 78104 9822787.1068 9826693.3537 127.9375 127.9375 0 run2.mat -1 -1 1294957 1334010 +2733253 2811492 78240 9831782.4687 9835691.5444 127.9375 127.9375 1.9478e-05 run2.mat -1 -1 1384900 1424022 +2913273 2991261 77989 9840782.5721 9844681.3842 127.9375 127.9375 0 run2.mat -1 -1 1474914 1513910 +3093154 3171326 78173 9849778.0897 9853685.4658 127.9375 127.9375 4.0614e-05 run2.mat -1 -1 1564859 1603946 +3273231 3351373 78143 9858782.2685 9862688.2596 127.9375 127.9375 0 run2.mat -1 -1 1654901 1693974 +3453273 3531294 78022 9867784.1362 9871685.1681 127.9375 127.9375 1.9533e-05 run2.mat -1 -1 1744926 1783938 +3633111 3711169 78059 9876775.9137 9880677.7928 127.9375 127.9375 1.9523e-05 run2.mat -1 -1 1834849 1873880 +3812931 3891186 78256 9885765.6434 9889680.2653 127.9375 127.9375 0 run2.mat -1 -1 1924763 1963892 +3992971 4071049 78079 9894767.1455 9898671.8994 127.9375 127.9375 0 run2.mat -1 -1 2014787 2053828 +4172871 4250848 77978 9903763.7092 9907662.5817 127.9375 127.9375 2.1172e-05 run2.mat -1 -1 2104741 2143731 +4352750 4430997 78248 9912758.6868 9916669.1081 127.9375 127.9375 1.9476e-05 run2.mat -1 -1 2194684 2233810 +4532791 4610852 78062 9921758.3314 9925661.9649 127.9375 127.9375 1.9523e-05 run2.mat -1 -1 2284709 2323741 +4712631 4790911 78281 9930751.8915 9934664.5607 127.9375 127.9375 0 run2.mat -1 -1 2374633 2413775 +4892689 4970778 78090 9939755.5723 9943659.3745 127.9375 127.9375 0 run2.mat -1 -1 2464666 2503712 +5072549 5150603 78055 9948748.8177 9952651.5562 127.9375 127.9375 1.9524e-05 run2.mat -1 -1 2554600 2593628 +5252448 5330634 78187 9957742.7316 9961653.5434 127.9375 127.9375 1.9491e-05 run2.mat -1 -1 2644553 2683648 +5432469 5510392 77924 9966743.9613 9970638.8798 127.9375 127.9375 0 run2.mat -1 -1 2734568 2773531 +5612288 5690432 78145 9975736.0924 9979644.0655 127.9375 127.9375 0 run2.mat -1 -1 2824480 2863555 +5792327 5870450 78124 9984739.2404 9988645.1282 127.9375 127.9375 0 run2.mat -1 -1 2914505 2953568 +5972208 6052320 80113 9993732.3663 9997736.6806 127.9375 127.9375 5.7068e-05 run2.mat -1 -1 3004449 3044507 +6154107 6232390 78284 10002828.1486 10006740.8145 127.9375 127.9375 1.9467e-05 run2.mat -1 -1 3095402 3134546 +6334147 6412150 78004 10011829.9919 10015728.8217 127.9375 127.9375 0 run2.mat -1 -1 3185426 3224430 +6513947 6592230 78284 10020820.3288 10024735.1729 127.9375 127.9375 1.9467e-05 run2.mat -1 -1 3275331 3314474 +6694006 6772154 78149 10029822.7224 10033731.1567 127.9375 127.9375 1.9501e-05 run2.mat -1 -1 3365364 3404439 +6873906 6951955 78050 10038819.0652 10042721.3001 127.9375 127.9375 1.9526e-05 run2.mat -1 -1 3455318 3494344 +7053766 7131856 78091 10047812.5086 10051714.5231 127.9375 127.9375 7.8061e-05 run2.mat -1 -1 3545252 3584298 +7233645 7311682 78038 10056805.7225 10060706.4371 127.9375 127.9375 5.8586e-05 run2.mat -1 -1 3635195 3674216 +7413464 7491788 78325 10065796 10069713.3114 127.9375 127.9375 3.8914e-05 run2.mat -1 -1 3725108 3764272 +7593564 7671614 78051 10074801.9155 10078704.9679 127.9375 127.9375 0 run2.mat -1 -1 3815162 3854189 +7773384 7853551 80168 10083793.708 10087799.9829 127.9375 127.9375 3.8019e-05 run2.mat -1 -1 3905076 3945161 +7955324 8033414 78091 10092888.5455 10096793.9284 127.9375 127.9375 1.9515e-05 run2.mat -1 -1 3996050 4035097 +8135183 8213416 78234 10101882.626 10105794.3651 127.9375 127.9375 0 run2.mat -1 -1 4085984 4125102 +8315182 8393268 78087 10110881.7926 10114787.8588 127.9375 127.9375 0 run2.mat -1 -1 4175987 4215032 +8495063 8573314 78252 10119876.6649 10123787.5672 127.9375 127.9375 1.9475e-05 run2.mat -1 -1 4265932 4305059 +8675142 8753187 78046 10128879.1081 10132785.0734 127.9375 127.9375 1.9527e-05 run2.mat -1 -1 4355975 4394999 +8854982 8933034 78053 10137874.4451 10141776.0552 127.9375 127.9375 7.9726e-05 run2.mat -1 -1 4445899 4484927 +9034822 9114809 79988 10146866.8931 10150863.8117 127.9375 127.9375 0 run2.mat -1 -1 4535823 4575818 +9216682 9294754 78073 10155959.133 10159861.7494 127.9375 127.9375 6.1813e-05 run2.mat -1 -1 4626757 4665795 +9396562 9474608 78047 10164952.0322 10168854.2278 127.9375 127.9375 6.0206e-05 run2.mat -1 -1 4716701 4755726 +9576420 9654514 78095 10173946.1344 10177851.4019 127.9375 127.9375 3.9029e-05 run2.mat -1 -1 4806634 4845683 +9756301 9834353 78053 10182940.7022 10186842.1166 127.9375 127.9375 3.905e-05 run2.mat -1 -1 4896578 4935606 +9936140 10014194 78055 10191933.7695 10195834.4737 127.9375 127.9375 6.1827e-05 run2.mat -1 -1 4986502 5025530 +10115940 10193965 78026 10200922.669 10204824.5409 127.9375 127.9375 1.9532e-05 run2.mat -1 -1 5076406 5115420 +10295820 10373901 78082 10209916.6067 10213819.3855 127.9375 127.9375 1.9518e-05 run2.mat -1 -1 5166350 5205392 +10475660 10553748 78089 10218910.9752 10222813.522 127.9375 127.9375 3.9032e-05 run2.mat -1 -1 5256274 5295320 +10655520 10733824 78305 10227901.3416 10231816.7285 127.9375 127.9375 4.2167e-05 run2.mat -1 -1 5346208 5385361 +10835579 10913561 77983 10236905.1188 10240804.3467 127.9375 127.9375 0 run2.mat -1 -1 5436241 5475234 +11015379 11093475 78097 10245894.5741 10249800.065 127.9375 127.9375 1.9514e-05 run2.mat -1 -1 5526145 5565195 +11195298 11273400 78103 10254889.5835 10258795.7139 127.9375 127.9375 7.9675e-05 run2.mat -1 -1 5616108 5655161 +11375178 11453257 78080 10263886.8654 10267790.8134 127.9375 127.9375 2.1144e-05 run2.mat -1 -1 5706052 5745094 +11555018 11632978 77961 10272878.9496 10276774.2043 127.9375 127.9375 0 run2.mat -1 -1 5795976 5834958 +11734897 11813161 78265 10281871.7495 10285784.8853 127.9375 127.9375 4.0566e-05 run2.mat -1 -1 5885920 5925053 +11914936 11993008 78073 10290875.3081 10294778.2569 127.9375 127.9375 0 run2.mat -1 -1 5975943 6014981 +2 286602 286601 898545.2646 912874.8964 127.9375 127.9375 5.3174e-06 run20.mat -1 -1 13837 157138 +388403 466724 78322 917964.7967 921881.2144 127.9375 127.9375 0 run20.mat -1 -1 208040 247203 +568503 646650 78148 926970.4408 930876.9391 127.9375 127.9375 0 run20.mat -1 -1 298095 337170 +748543 826755 78213 935973.0973 939883.5288 127.9375 127.9375 0 run20.mat -1 -1 388118 427226 +928643 1006773 78131 944978.0639 948883.8152 127.9375 127.9375 0 run20.mat -1 -1 478172 517239 +1108602 1186938 78337 953975.1155 957893.2844 127.9375 127.9375 0 run20.mat -1 -1 568156 607326 +1288681 1366998 78318 962980.6217 966896.7388 127.9375 127.9375 0 run20.mat -1 -1 658199 697359 +1468761 1547009 78249 971985.1998 975895.9597 127.9375 127.9375 1.9476e-05 run20.mat -1 -1 748243 787368 +1648821 1727118 78298 980985.843 984900.4868 127.9375 127.9375 1.9464e-05 run20.mat -1 -1 838277 877427 +1828862 1907298 78437 989988.0123 993911.0177 127.9375 127.9375 0 run20.mat -1 -1 928301 967521 +2009060 2087343 78284 998999.996 1002913.0349 127.9375 127.9375 0 run20.mat -1 -1 1018404 1057548 +2189119 2267202 78084 1008002.8072 1011906.0472 127.9375 127.9375 5.8551e-05 run20.mat -1 -1 1108438 1147481 +2368980 2447160 78181 1016994.0425 1020906.8173 127.9375 127.9375 1.9493e-05 run20.mat -1 -1 1198372 1237464 +2549060 2627367 78308 1026000.6166 1029914.6424 127.9375 127.9375 0 run20.mat -1 -1 1288416 1327571 +2729140 2807355 78216 1035003.5225 1038915.3732 127.9375 127.9375 0 run20.mat -1 -1 1378460 1417569 +2909138 2987421 78284 1044004.7832 1047918.3733 127.9375 127.9375 0 run20.mat -1 -1 1468463 1507607 +3089198 3167417 78220 1053008.004 1056917.2419 127.9375 127.9375 1.9483e-05 run20.mat -1 -1 1558497 1597608 +3269239 3347343 78105 1062009.3832 1065914.49 127.9375 127.9375 1.9512e-05 run20.mat -1 -1 1648521 1687575 +3449099 3527270 78172 1071001.149 1074912.8108 127.9375 127.9375 0 run20.mat -1 -1 1738456 1777543 +3629158 3707103 77946 1080007.5282 1083903.6809 127.9375 127.9375 4.2362e-05 run20.mat -1 -1 1828489 1867463 +3808997 3887261 78265 1088998.2025 1092910.4291 127.9375 127.9375 1.9472e-05 run20.mat -1 -1 1918412 1957546 +3989057 4067330 78274 1098000.3606 1101915.1308 127.9375 127.9375 1.947e-05 run20.mat -1 -1 2008446 2047585 +4169096 4247240 78145 1107002.1464 1110910.1208 127.9375 127.9375 0 run20.mat -1 -1 2098470 2137544 +4348997 4427298 78302 1115998.0304 1119912.3798 127.9375 127.9375 0 run20.mat -1 -1 2188424 2227577 +4529076 4607303 78228 1125000.5357 1128912.5091 127.9375 127.9375 0 run20.mat -1 -1 2278468 2317583 +4709076 4787150 78075 1134001.7801 1137905.6531 127.9375 127.9375 4.0665e-05 run20.mat -1 -1 2368472 2407510 +4888936 4967122 78187 1142995.7438 1146904.7146 127.9375 127.9375 6.1722e-05 run20.mat -1 -1 2458405 2497500 +5068996 5147081 78086 1151997.7287 1155902.8274 127.9375 127.9375 6.0176e-05 run20.mat -1 -1 2548439 2587484 +5248855 5327094 78240 1160991.0589 1164903.3138 127.9375 127.9375 0 run20.mat -1 -1 2638373 2677494 +5428895 5506822 77928 1169994.3494 1173890.3498 127.9375 127.9375 0 run20.mat -1 -1 2728397 2767362 +5608714 5686997 78284 1178985.6935 1182900.8955 127.9375 127.9375 1.9467e-05 run20.mat -1 -1 2818310 2857454 +5788774 5867056 78283 1187988.8957 1191903.1559 127.9375 127.9375 0 run20.mat -1 -1 2908344 2947487 +5968854 6046931 78078 1196992.2664 1200895.08 127.9375 127.9375 1.9519e-05 run20.mat -1 -1 2998388 3037429 +6148693 6226933 78241 1205983.798 1209896.7376 127.9375 127.9375 1.9478e-05 run20.mat -1 -1 3088312 3127433 +6328753 6406957 78205 1214988.3618 1218897.4769 127.9375 127.9375 1.9487e-05 run20.mat -1 -1 3178346 3217450 +6508773 6586771 77999 1223989.2593 1227891.0327 127.9375 127.9375 1.9538e-05 run20.mat -1 -1 3268359 3307360 +6688593 6766811 78219 1232980.0706 1236889.5658 127.9375 127.9375 0 run20.mat -1 -1 3358274 3397384 +6868632 6946669 78038 1241983.8607 1245884.001 127.9375 127.9375 0 run20.mat -1 -1 3448297 3487317 +7048472 7128832 80361 1250974.1027 1254991.3249 127.9375 127.9375 1.8964e-05 run20.mat -1 -1 3538221 3578403 +7230591 7308625 78035 1260082.115 1263981.1441 127.9375 127.9375 2.6037e-05 run20.mat -1 -1 3629284 3668303 +7410412 7488694 78283 1269071.9825 1272987.9875 127.9375 127.9375 0 run20.mat -1 -1 3719199 3758342 +7590452 7668550 78099 1278072.4425 1281980.4104 127.9375 127.9375 2.4391e-05 run20.mat -1 -1 3809223 3848274 +7770311 7848594 78284 1287066.027 1290982.9946 127.9375 127.9375 0 run20.mat -1 -1 3899156 3938299 +7950390 8028435 78046 1296071.5971 1299973.7513 127.9375 127.9375 0 run20.mat -1 -1 3989200 4028224 +8116047 8270111 154065 1304353.7384 1312058.3687 127.9375 127.9375 1.0716e-05 run20.mat -1 -1 4072032 4149085 +2 279365 279364 1404286.7663 1418256.5731 127.9375 127.9375 5.9097e-06 run21.mat -1 -1 27421 167140 +381153 459397 78245 1423346.0432 1427257.7789 127.9375 127.9375 1.9477e-05 run21.mat -1 -1 218036 257160 +561213 639245 78033 1432348.1147 1436250.879 127.9375 127.9375 1.953e-05 run21.mat -1 -1 308070 347088 +741053 819139 78087 1441339.6942 1445246.9315 127.9375 127.9375 1.9516e-05 run21.mat -1 -1 397994 437039 +920933 999135 78203 1450335.079 1454245.015 127.9375 127.9375 3.8975e-05 run21.mat -1 -1 487938 527041 +1100952 1179068 78117 1459338.1777 1463242.3886 127.9375 127.9375 1.9509e-05 run21.mat -1 -1 577952 617011 +1280832 1359064 78233 1468331.3136 1472243.1412 127.9375 127.9375 0 run21.mat -1 -1 667896 707014 +1460892 1538875 77984 1477334.2628 1481232.5455 127.9375 127.9375 1.9542e-05 run21.mat -1 -1 757930 796922 +1640732 1720882 80151 1486325.3534 1490332.0533 127.9375 127.9375 1.9014e-05 run21.mat -1 -1 847854 887930 +1822651 1900718 78068 1495423.2325 1499326.8925 127.9375 127.9375 3.9042e-05 run21.mat -1 -1 938817 977852 +2002491 2080594 78104 1504414.5531 1508320.9776 127.9375 127.9375 0 run21.mat -1 -1 1028741 1067794 +2182390 2260552 78163 1513409.8482 1517318.1966 127.9375 127.9375 6.3366e-05 run21.mat -1 -1 1118694 1157777 +2362311 2440458 78148 1522404.6626 1526311.1735 127.9375 127.9375 0 run21.mat -1 -1 1208659 1247734 +2542210 2620345 78136 1531401.0754 1535306.1885 127.9375 127.9375 0 run21.mat -1 -1 1298612 1337682 +2722129 2800323 78195 1540395.4751 1544306.8809 127.9375 127.9375 0 run21.mat -1 -1 1388576 1427675 +2902149 2980223 78075 1549397.8571 1553303.4479 127.9375 127.9375 0 run21.mat -1 -1 1478590 1517628 +3082009 3160061 78053 1558391.6197 1562293.2997 127.9375 127.9375 0 run21.mat -1 -1 1568523 1607551 +3261848 3340139 78292 1567383.497 1571296.9173 127.9375 127.9375 0 run21.mat -1 -1 1658447 1697594 +3441908 3519995 78088 1576385.7213 1580291.2643 127.9375 127.9375 1.9516e-05 run21.mat -1 -1 1748481 1787526 +3621787 3699892 78106 1585381.114 1589285.3887 127.9375 127.9375 1.9512e-05 run21.mat -1 -1 1838424 1877479 +3801787 3879858 78072 1594380.8258 1598285.3708 127.9375 127.9375 0 run21.mat -1 -1 1928429 1967466 +3981627 4059911 78285 1603374.6412 1607287.9581 127.9375 127.9375 1.9467e-05 run21.mat -1 -1 2018353 2057496 +4161707 4239706 78000 1612377.7963 1616277.9881 127.9375 127.9375 3.9076e-05 run21.mat -1 -1 2108396 2147397 +4341587 4419866 78280 1621371.6435 1625286.7017 127.9375 127.9375 0 run21.mat -1 -1 2198341 2237482 +4521646 4599701 78056 1630374.5757 1634279.0936 127.9375 127.9375 0 run21.mat -1 -1 2288374 2327403 +4701466 4779751 78286 1639364.1312 1643279.4451 127.9375 127.9375 0 run21.mat -1 -1 2378287 2417432 +4881505 4959675 78171 1648369.3026 1652277.5171 127.9375 127.9375 0 run21.mat -1 -1 2468311 2507397 +5061565 5139539 77975 1657369.9728 1661270.6836 127.9375 127.9375 1.9544e-05 run21.mat -1 -1 2558345 2597334 +5241425 5319665 78241 1666365.284 1670275.4498 127.9375 127.9375 1.9478e-05 run21.mat -1 -1 2648278 2687401 +5421504 5499537 78034 1675367.0869 1679271.0548 127.9375 127.9375 0 run21.mat -1 -1 2738322 2777341 +5601325 5679643 78319 1684359.0077 1688274.9615 127.9375 127.9375 0 run21.mat -1 -1 2828237 2867398 +5781405 5859528 78124 1693363.4469 1697271.6576 127.9375 127.9375 0 run21.mat -1 -1 2918281 2957344 +5961283 6039367 78085 1702358.0012 1706260.9954 127.9375 127.9375 0 run21.mat -1 -1 3008224 3047268 +6141183 6219237 78055 1711352.1579 1715256.5541 127.9375 127.9375 0 run21.mat -1 -1 3098178 3137207 +6321024 6399265 78242 1720345.6002 1724257.7273 127.9375 127.9375 0 run21.mat -1 -1 3188102 3227224 +6501043 6579173 78131 1729346.6612 1733251.5699 127.9375 127.9375 1.9505e-05 run21.mat -1 -1 3278115 3317183 +6680943 6759030 78088 1738341.0639 1742245.2889 127.9375 127.9375 1.9516e-05 run21.mat -1 -1 3368070 3407115 +6860822 6938905 78084 1747336.6888 1751239.8909 127.9375 127.9375 1.9517e-05 run21.mat -1 -1 3458013 3497056 +7040702 7118748 78047 1756331.5078 1760231.8313 127.9375 127.9375 3.9053e-05 run21.mat -1 -1 3547957 3586982 +7220542 7298762 78221 1765321.4838 1769233.339 127.9375 127.9375 4.2213e-05 run21.mat -1 -1 3637881 3676993 +7400561 7478668 78108 1774322.8475 1778228.2926 127.9375 127.9375 5.8533e-05 run21.mat -1 -1 3727895 3766949 +7580462 7658525 78064 1783316.9464 1787223.0427 127.9375 127.9375 5.8566e-05 run21.mat -1 -1 3817849 3856882 +7760321 7838573 78253 1792310.5971 1796223.2132 127.9375 127.9375 0 run21.mat -1 -1 3907782 3946910 +7940381 8018374 77994 1801313.9196 1805213.6851 127.9375 127.9375 2.1168e-05 run21.mat -1 -1 3997816 4036814 +8105507 8372180 266674 1809571.03 1822902.0889 127.9375 127.9375 1.1906e-05 run21.mat -1 -1 4080383 4213698 +2 285540 285539 1906854.7713 1921137.8013 127.9375 127.9375 1.1119e-05 run22.mat -1 -1 12972 155800 +387307 465600 78294 1926227.2899 1930140.6093 127.9375 127.9375 1.9465e-05 run22.mat -1 -1 206686 245834 +567387 645464 78078 1935230.3243 1939134.5214 127.9375 127.9375 3.9037e-05 run22.mat -1 -1 296730 335770 +747266 825523 78258 1944224.9379 1948136.201 127.9375 127.9375 0 run22.mat -1 -1 386673 425804 +927326 1005358 78033 1953226.7667 1957129.4969 127.9375 127.9375 0 run22.mat -1 -1 476707 515725 +1107126 1185336 78211 1962217.5382 1966127.5729 127.9375 127.9375 1.9485e-05 run22.mat -1 -1 566611 605718 +1287206 1365149 77944 1971221.87 1975119.7361 127.9375 127.9375 2.2811e-05 run22.mat -1 -1 656655 695629 +1467045 1545146 78102 1980212.0627 1984119.9663 127.9375 127.9375 1.9513e-05 run22.mat -1 -1 746579 785631 +1646905 1725204 78300 1989207.5688 1993120.4543 127.9375 127.9375 1.9463e-05 run22.mat -1 -1 836513 875664 +1826985 1905031 78047 1998211.359 2002112.2288 127.9375 127.9375 1.9526e-05 run22.mat -1 -1 926556 965582 +2006825 2085117 78293 2007202.419 2011117.9683 127.9375 127.9375 0 run22.mat -1 -1 1016480 1055628 +2186904 2265104 78201 2016205.5943 2020117.6272 127.9375 127.9375 0 run22.mat -1 -1 1106524 1145626 +2366944 2445011 78068 2025209.939 2029111.2847 127.9375 127.9375 0 run22.mat -1 -1 1196548 1235583 +2546824 2626855 80032 2034202.3757 2038205.1079 127.9375 127.9375 0 run22.mat -1 -1 1286492 1326509 +2728744 2806933 78190 2043299.4354 2047209.3208 127.9375 127.9375 2.1115e-05 run22.mat -1 -1 1377456 1416552 +2908743 2986833 78091 2052300.1323 2056202.8507 127.9375 127.9375 0 run22.mat -1 -1 1467459 1506506 +3088624 3166756 78133 2061292.8062 2065202.1365 127.9375 127.9375 0 run22.mat -1 -1 1557404 1596471 +3268642 3346885 78244 2070293.5256 2074207.0912 127.9375 127.9375 0 run22.mat -1 -1 1647416 1686540 +3448682 3526644 77963 2079298.9944 2083195.8181 127.9375 127.9375 0 run22.mat -1 -1 1737441 1776423 +3628541 3706781 78241 2088289.6634 2092201.701 127.9375 127.9375 1.9478e-05 run22.mat -1 -1 1827373 1866496 +3808542 3886652 78111 2097290.1438 2101195.8524 127.9375 127.9375 1.951e-05 run22.mat -1 -1 1917379 1956435 +3988421 4066769 78349 2106284.8576 2110202.3294 127.9375 127.9375 0 run22.mat -1 -1 2007322 2046498 +4168541 4248650 80110 2115290.2759 2119296.2804 127.9375 127.9375 3.8047e-05 run22.mat -1 -1 2097386 2137442 +4350440 4428711 78272 2124384.0875 2128298.4987 127.9375 127.9375 6.0033e-05 run22.mat -1 -1 2188339 2227477 +4530501 4608547 78047 2133389.0875 2137290.9625 127.9375 127.9375 0 run22.mat -1 -1 2278373 2317399 +4710341 4788496 78156 2142380.8476 2146290.6203 127.9375 127.9375 1.9499e-05 run22.mat -1 -1 2368298 2407377 +4890400 4968415 78016 2151383.8036 2155285.5759 127.9375 127.9375 0 run22.mat -1 -1 2458331 2497340 +5070260 5148563 78304 2160380.0873 2164292.0597 127.9375 127.9375 3.8925e-05 run22.mat -1 -1 2548265 2587418 +5250360 5328606 78247 2169380.7023 2173296.1137 127.9375 127.9375 0 run22.mat -1 -1 2638319 2677444 +5430398 5508408 78011 2178383.1607 2182286.4473 127.9375 127.9375 3.9071e-05 run22.mat -1 -1 2728342 2767348 +5610239 5688525 78287 2187378.2405 2191292.6179 127.9375 127.9375 1.9466e-05 run22.mat -1 -1 2818266 2857411 +5790279 5868520 78242 2196377.728 2200290.6078 127.9375 127.9375 0 run22.mat -1 -1 2908291 2947413 +5970359 6048431 78073 2205382.4753 2209285.4069 127.9375 127.9375 1.952e-05 run22.mat -1 -1 2998334 3037372 +6150218 6228360 78143 2214374.8922 2218284.3348 127.9375 127.9375 0 run22.mat -1 -1 3088268 3127340 +6330258 6408386 78129 2223379.0948 2227285.5756 127.9375 127.9375 0 run22.mat -1 -1 3178292 3217357 +6510277 6588304 78028 2232380.2236 2236282.1379 127.9375 127.9375 0 run22.mat -1 -1 3268305 3307320 +6690138 6768408 78271 2241373.661 2245285.0004 127.9375 127.9375 0 run22.mat -1 -1 3358240 3397377 +6870197 6948505 78309 2250374.6626 2254294.0381 127.9375 127.9375 0 run22.mat -1 -1 3448273 3487429 +7050257 7128573 78317 2259380.5944 2263294.7844 127.9375 127.9375 1.9459e-05 run22.mat -1 -1 3538307 3577467 +7230357 7308385 78029 2268384.3204 2272286.2708 127.9375 127.9375 1.9531e-05 run22.mat -1 -1 3628361 3667377 +7410157 7488424 78268 2277372.1576 2281287.0246 127.9375 127.9375 0 run22.mat -1 -1 3718265 3757400 +7590216 7668191 77976 2286377.2554 2290276.9448 127.9375 127.9375 0 run22.mat -1 -1 3808298 3847287 +7770076 7848371 78296 2295370.4434 2299285.6813 127.9375 127.9375 1.9464e-05 run22.mat -1 -1 3898232 3937381 +7950156 8028241 78086 2304374.791 2308279.1009 127.9375 127.9375 3.9033e-05 run22.mat -1 -1 3988276 4027321 +8114842 8316516 201675 2312609.0227 2322696.1635 127.9375 127.9375 2.3929e-05 run22.mat -1 -1 4070622 4153237 +2 280039 280038 2395666.3276 2409670.2616 127.9375 127.9375 1.6326e-05 run23.mat -1 -1 15335 155400 +381809 459936 78128 2414758.5767 2418664.5274 127.9375 127.9375 0 run23.mat -1 -1 206287 245353 +561729 640064 78336 2423754 2427671.5696 127.9375 127.9375 1.9454e-05 run23.mat -1 -1 296251 335420 +741828 819826 77999 2432760.7915 2436661.7685 127.9375 127.9375 0 run23.mat -1 -1 386305 425305 +921729 999934 78206 2441757.7905 2445665.9522 127.9375 127.9375 1.9487e-05 run23.mat -1 -1 476259 515363 +1101727 1179971 78245 2450756.6449 2454669.2785 127.9375 127.9375 2.7592e-05 run23.mat -1 -1 566262 605386 +1281807 1359903 78097 2459760.216 2463664.7439 127.9375 127.9375 1.9514e-05 run23.mat -1 -1 656306 695355 +1461687 1539995 78309 2468753.8025 2472668.9238 127.9375 127.9375 1.9461e-05 run23.mat -1 -1 746250 785405 +1641786 1719897 78112 2477758.3299 2481664.7302 127.9375 127.9375 5.853e-05 run23.mat -1 -1 836303 875361 +1821666 1899910 78245 2486752.2244 2490665.6195 127.9375 127.9375 0 run23.mat -1 -1 926247 965371 +2001726 2080041 78316 2495756.1535 2499673.1002 127.9375 127.9375 3.8919e-05 run23.mat -1 -1 1016281 1055440 +2181826 2259930 78105 2504761.9833 2508668.2066 127.9375 127.9375 1.9512e-05 run23.mat -1 -1 1106335 1145389 +2361705 2440008 78304 2513756.5723 2517670.808 127.9375 127.9375 2.2706e-05 run23.mat -1 -1 1196278 1235432 +2541785 2619870 78086 2522759.9885 2526663.3022 127.9375 127.9375 3.9033e-05 run23.mat -1 -1 1286322 1325366 +2721645 2799749 78105 2531753.6717 2535657.7086 127.9375 127.9375 1.9512e-05 run23.mat -1 -1 1376256 1415310 +2901665 2979990 78326 2540755.0266 2544671.0015 127.9375 127.9375 0 run23.mat -1 -1 1466270 1505435 +3081744 3161897 80154 2549759.8036 2553768.1296 127.9375 127.9375 0 run23.mat -1 -1 1556314 1596392 +3263704 3341774 78071 2558856.3506 2562761.91 127.9375 127.9375 0 run23.mat -1 -1 1647297 1686334 +3443584 3521644 78061 2567852.1359 2571753.8971 127.9375 127.9375 0 run23.mat -1 -1 1737242 1776273 +3623444 3701493 78050 2576844.3587 2580747.2617 127.9375 127.9375 0 run23.mat -1 -1 1827176 1866202 +3803264 3881515 78252 2585834.7906 2589749.4786 127.9375 127.9375 1.9475e-05 run23.mat -1 -1 1917090 1956217 +3983364 4061466 78103 2594842.049 2598745.6125 127.9375 127.9375 0 run23.mat -1 -1 2007144 2046196 +4163262 4241560 78299 2603835.3338 2607753.0395 127.9375 127.9375 0 run23.mat -1 -1 2097096 2136247 +4343321 4421364 78044 2612837.6297 2616742.6841 127.9375 127.9375 0 run23.mat -1 -1 2187130 2226153 +4523183 4601417 78235 2621833.3626 2625744.9479 127.9375 127.9375 0 run23.mat -1 -1 2277065 2316184 +4703203 4781328 78126 2630834.1264 2634739.0398 127.9375 127.9375 1.9507e-05 run23.mat -1 -1 2367079 2406143 +4883101 4961360 78260 2639827.9611 2643741.5204 127.9375 127.9375 1.9473e-05 run23.mat -1 -1 2457032 2496163 +5063181 5141484 78304 2648833.2123 2652748.5784 127.9375 127.9375 1.9462e-05 run23.mat -1 -1 2547076 2586229 +5243281 5321348 78068 2657838.8398 2661739.9387 127.9375 127.9375 0 run23.mat -1 -1 2637130 2676165 +5423121 5501365 78245 2666828.1318 2670743.6059 127.9375 127.9375 0 run23.mat -1 -1 2727053 2766177 +5603161 5681377 78217 2675833.5081 2679742.3926 127.9375 127.9375 1.9484e-05 run23.mat -1 -1 2817077 2856187 +5783201 5861158 77958 2684834.9006 2688730.874 127.9375 127.9375 0 run23.mat -1 -1 2907102 2946082 +5963061 6041355 78295 2693827.6391 2697740.8402 127.9375 127.9375 0 run23.mat -1 -1 2997035 3036184 +6143140 6221227 78088 2702832.2685 2706735.2129 127.9375 127.9375 0 run23.mat -1 -1 3087079 3126124 +6323000 6401255 78256 2711822.9794 2715737.6763 127.9375 127.9375 2.1097e-05 run23.mat -1 -1 3177013 3216142 +6503040 6581352 78313 2720826.6956 2724742.0231 127.9375 127.9375 0 run23.mat -1 -1 3267037 3306195 +6683139 6761269 78131 2729830.4534 2733738.5977 127.9375 127.9375 0 run23.mat -1 -1 3357090 3396157 +6863019 6941267 78249 2738826.0791 2742737.8439 127.9375 127.9375 1.9476e-05 run23.mat -1 -1 3447034 3486160 +7043058 7121235 78178 2747828.0703 2751736.5059 127.9375 127.9375 1.9494e-05 run23.mat -1 -1 3537058 3576148 +7223119 7301303 78185 2756830.5801 2760738.8606 127.9375 127.9375 1.9492e-05 run23.mat -1 -1 3627092 3666186 +7403138 7481172 78035 2765833.7241 2769733.3886 127.9375 127.9375 1.9529e-05 run23.mat -1 -1 3717105 3756124 +7583077 7661179 78103 2774829.2229 2778736.3944 127.9375 127.9375 0 run23.mat -1 -1 3807079 3846131 +7762958 7841276 78319 2783825.207 2787738.9359 127.9375 127.9375 3.8917e-05 run23.mat -1 -1 3897024 3936184 +7943038 8021311 78274 2792826.9529 2796740.1775 127.9375 127.9375 0 run23.mat -1 -1 3987067 4026205 +8108243 8356761 248519 2801088.2747 2813510.8966 127.9375 127.9375 1.2264e-05 run23.mat -1 -1 4069674 4193901 +2 272795 272794 2886286.6233 2899928.7245 127.9375 127.9375 5.0279e-05 run24.mat -1 -1 22466 158915 +374590 452667 78078 2905019.4983 2908924.3962 127.9375 127.9375 3.9037e-05 run24.mat -1 -1 209815 248874 +554450 632718 78269 2914013.3638 2917925.424 127.9375 127.9375 5.8413e-05 run24.mat -1 -1 299748 338884 +734510 812529 78020 2923015.5951 2926917.2224 127.9375 127.9375 0 run24.mat -1 -1 389783 428794 +914329 992464 78136 2932007.1825 2935913.2218 127.9375 127.9375 1.9504e-05 run24.mat -1 -1 479696 518765 +1094369 1172455 78087 2941010.3902 2944913.3645 127.9375 127.9375 1.9516e-05 run24.mat -1 -1 569720 608765 +1274249 1352371 78123 2950004.0909 2953909.8181 127.9375 127.9375 0 run24.mat -1 -1 659663 698726 +1454149 1532497 78349 2958998.7196 2962918.0077 127.9375 127.9375 1.9451e-05 run24.mat -1 -1 749618 788793 +1634269 1712525 78257 2968005.915 2971917.5193 127.9375 127.9375 1.9474e-05 run24.mat -1 -1 839682 878811 +1814309 1892542 78234 2977007.2109 2980918.3998 127.9375 127.9375 4.0583e-05 run24.mat -1 -1 929705 968823 +1994328 2072360 78033 2986009.7073 2989909.2018 127.9375 127.9375 5.859e-05 run24.mat -1 -1 1019719 1058737 +2174188 2252327 78140 2995000.432 2998909.3485 127.9375 127.9375 0 run24.mat -1 -1 1109653 1148724 +2354228 2432492 78265 3004002.9171 3007916.7191 127.9375 127.9375 3.8944e-05 run24.mat -1 -1 1199677 1238811 +2534287 2612270 77984 3013004.7372 3016907.8349 127.9375 127.9375 1.9542e-05 run24.mat -1 -1 1289710 1328703 +2714167 2792428 78262 3022001.4494 3025914.5204 127.9375 127.9375 1.9473e-05 run24.mat -1 -1 1379654 1418786 +2894186 2972518 78333 3031001.848 3034918.2497 127.9375 127.9375 1.9455e-05 run24.mat -1 -1 1469668 1508835 +3074266 3152291 78026 3040005.7451 3043909.2457 127.9375 127.9375 3.9063e-05 run24.mat -1 -1 1559712 1598726 +3254126 3332216 78091 3048999.946 3052903.3614 127.9375 127.9375 3.9031e-05 run24.mat -1 -1 1649646 1688692 +3434006 3512299 78294 3057992.9976 3061907.969 127.9375 127.9375 0 run24.mat -1 -1 1739589 1778738 +3614086 3692154 78069 3066997.6159 3070901.1948 127.9375 127.9375 0 run24.mat -1 -1 1829633 1868669 +3793905 3872179 78275 3075988.7586 3079902.2054 127.9375 127.9375 1.9469e-05 run24.mat -1 -1 1919546 1958686 +3973965 4052025 78061 3084990.4881 3088895.0052 127.9375 127.9375 1.9523e-05 run24.mat -1 -1 2009581 2048613 +4153845 4231917 78073 3093983.7014 3097891.3063 127.9375 127.9375 0 run24.mat -1 -1 2099525 2138563 +4333745 4411823 78079 3102980.8597 3106885.8173 127.9375 127.9375 0 run24.mat -1 -1 2189479 2228520 +4513624 4591660 78037 3111975.7729 3115876.185 127.9375 127.9375 1.9529e-05 run24.mat -1 -1 2279422 2318442 +4693424 4771682 78259 3120964.7538 3124877.8211 127.9375 127.9375 3.8947e-05 run24.mat -1 -1 2369326 2408457 +4873444 4951398 77955 3129966.8106 3133862.7703 127.9375 127.9375 0 run24.mat -1 -1 2459340 2498319 +5053304 5131392 78089 3138958.3828 3142864.3681 127.9375 127.9375 0 run24.mat -1 -1 2549274 2588320 +5233183 5311257 78075 3147951.7256 3151859.2499 127.9375 127.9375 4.0665e-05 run24.mat -1 -1 2639218 2678256 +5413044 5490963 77920 3156946.5159 3160844.0923 127.9375 127.9375 0 run24.mat -1 -1 2729152 2768113 +5592863 5670980 78118 3165939.4198 3169844.9121 127.9375 127.9375 1.9509e-05 run24.mat -1 -1 2819065 2858125 +5772761 5851025 78265 3174934.75 3178846.5327 127.9375 127.9375 0 run24.mat -1 -1 2909019 2948152 +5952802 6030867 78066 3183934.3827 3187838.4741 127.9375 127.9375 2.1148e-05 run24.mat -1 -1 2999043 3038077 +6132643 6210728 78086 3192926.1072 3196833.5839 127.9375 127.9375 1.9517e-05 run24.mat -1 -1 3088967 3128011 +6312562 6390619 78058 3201924.8795 3205827.7124 127.9375 127.9375 2.115e-05 run24.mat -1 -1 3178930 3217961 +6492382 6570577 78196 3210916.2182 3214825.6616 127.9375 127.9375 2.1113e-05 run24.mat -1 -1 3268845 3307944 +6672402 6750428 78027 3219915.4105 3223816.382 127.9375 127.9375 0 run24.mat -1 -1 3358858 3397873 +6852241 6930312 78072 3228908.7229 3232811.3683 127.9375 127.9375 1.952e-05 run24.mat -1 -1 3448782 3487819 +7032101 7110407 78307 3237901.3545 3241816.9064 127.9375 127.9375 0 run24.mat -1 -1 3538716 3577870 +7212181 7290203 78023 3246904.3609 3250806.9127 127.9375 127.9375 0 run24.mat -1 -1 3628760 3667773 +7391981 7469982 78002 3255895.05 3259796.9484 127.9375 127.9375 0 run24.mat -1 -1 3718664 3757666 +7571861 7649839 77979 3264890.4219 3268788.5594 127.9375 127.9375 4.0715e-05 run24.mat -1 -1 3808608 3847599 +7751740 7829853 78114 3273883.3909 3277789.9254 127.9375 127.9375 1.951e-05 run24.mat -1 -1 3898551 3937609 +7931599 8009857 78259 3282876.1058 3286791.2122 127.9375 127.9375 0 run24.mat -1 -1 3988484 4027616 +8096469 8498993 402525 3291120.8564 3311241.1576 127.9375 127.9375 2.3032e-05 run24.mat -1 -1 4070924 4217381 +2 285972 285971 3481914.7981 3496215.2408 127.9375 127.9375 1.5987e-05 run25.mat -1 -1 16863 159884 +387757 465756 78000 3501305.2182 3505206.2528 127.9375 127.9375 1.9538e-05 run25.mat -1 -1 210779 249769 +567636 645898 78263 3510297.5488 3514212.9254 127.9375 127.9375 0 run25.mat -1 -1 300722 339855 +747676 825934 78259 3519300.2476 3523213.8098 127.9375 127.9375 1.9473e-05 run25.mat -1 -1 390746 429877 +927715 1007853 80139 3528304.1866 3532311.1725 127.9375 127.9375 1.9017e-05 run25.mat -1 -1 480770 520840 +1109675 1189651 79977 3537402.2227 3541400.3183 127.9375 127.9375 1.9055e-05 run25.mat -1 -1 571754 611744 +1291436 1369697 78262 3546490.1675 3550402.1181 127.9375 127.9375 1.9473e-05 run25.mat -1 -1 662638 701771 +1471495 1549786 78292 3555493.2582 3559406.0177 127.9375 127.9375 0 run25.mat -1 -1 752672 791819 +1651595 1729629 78035 3564498.4363 3568400.0423 127.9375 127.9375 3.9059e-05 run25.mat -1 -1 842725 881744 +1831434 1909691 78258 3573491.0119 3577402.1275 127.9375 127.9375 1.9474e-05 run25.mat -1 -1 932649 971779 +2011454 2091483 80030 3582490.4379 3586492.635 127.9375 127.9375 1.9043e-05 run25.mat -1 -1 1022663 1062679 +2193374 2271692 78319 3591586.2948 3595504.9625 127.9375 127.9375 1.9459e-05 run25.mat -1 -1 1113627 1152788 +2373454 2451838 78385 3600590.7511 3604509.4431 127.9375 127.9375 3.8884e-05 run25.mat -1 -1 1203671 1242864 +2553734 2631996 78263 3609606.5416 3613517.7085 127.9375 127.9375 2.2718e-05 run25.mat -1 -1 1293815 1332948 +2733793 2812123 78331 3618608.8386 3622527.3878 127.9375 127.9375 0 run25.mat -1 -1 1383848 1423015 +2914013 2992508 78496 3627618.9659 3631545.4614 127.9375 127.9375 1.9415e-05 run25.mat -1 -1 1473962 1513212 +3094273 3172825 78553 3636631.7723 3640561.9206 127.9375 127.9375 2.1017e-05 run25.mat -1 -1 1564096 1603374 +3274592 3352907 78316 3645651.0569 3649565.4017 127.9375 127.9375 0 run25.mat -1 -1 1654259 1693419 +3454672 3533117 78446 3654653.5443 3658575.7584 127.9375 127.9375 0 run25.mat -1 -1 1744304 1783528 +3634991 3713429 78439 3663668.5168 3667591.7449 127.9375 127.9375 1.9429e-05 run25.mat -1 -1 1834467 1873688 +3815231 3893731 78501 3672681.1 3676606.3888 127.9375 127.9375 1.9413e-05 run25.mat -1 -1 1924591 1963843 +3995511 4074015 78505 3681695.852 3685622.0087 127.9375 127.9375 0 run25.mat -1 -1 2014735 2053989 +4175791 4254275 78485 3690709.1372 3694634.761 127.9375 127.9375 0 run25.mat -1 -1 2104879 2144123 +4356071 4434563 78493 3699722.5413 3703650.8958 127.9375 127.9375 0 run25.mat -1 -1 2195023 2234270 +4536350 4614701 78352 3708739.3417 3712656.9082 127.9375 127.9375 0 run25.mat -1 -1 2285166 2324344 +4716589 4795051 78463 3717751.6664 3721674.7387 127.9375 127.9375 0 run25.mat -1 -1 2375290 2414523 +4896811 4975281 78471 3726760.5248 3730685.696 127.9375 127.9375 1.9421e-05 run25.mat -1 -1 2465405 2504641 +5077089 5155475 78387 3735776.4126 3739692.7411 127.9375 127.9375 0 run25.mat -1 -1 2555548 2594743 +5257369 5335677 78309 3744791.1933 3748707.3959 127.9375 127.9375 2.1083e-05 run25.mat -1 -1 2645692 2684847 +5437469 5516102 78634 3753795.2541 3757728.0019 127.9375 127.9375 0 run25.mat -1 -1 2735745 2775064 +5617889 5696096 78208 3762816.3904 3766728.0514 127.9375 127.9375 5.8458e-05 run25.mat -1 -1 2825960 2865065 +5797968 5876436 78469 3771819.4936 3775742.2438 127.9375 127.9375 0 run25.mat -1 -1 2916003 2955239 +5978249 6056692 78444 3780834.7186 3784755.7428 127.9375 127.9375 1.9428e-05 run25.mat -1 -1 3006148 3045370 +6158488 6236777 78290 3789844.6695 3793762.9399 127.9375 127.9375 0 run25.mat -1 -1 3096271 3135417 +6338548 6416880 78333 3798851.6071 3802765.6305 127.9375 127.9375 0 run25.mat -1 -1 3186305 3225473 +6518787 6597105 78319 3807861.1925 3811778.0242 127.9375 127.9375 0 run25.mat -1 -1 3276428 3315589 +6698907 6777201 78295 3816867.5725 3820784.3634 127.9375 127.9375 1.9464e-05 run25.mat -1 -1 3366492 3405641 +6878967 6957425 78459 3825872.4334 3829793.1456 127.9375 127.9375 0 run25.mat -1 -1 3456526 3495757 +7059226 7137491 78266 3834885.0717 3838795.309 127.9375 127.9375 1.9472e-05 run25.mat -1 -1 3546660 3585794 +7239307 7317607 78301 3843890.3668 3847805.3271 127.9375 127.9375 1.9463e-05 run25.mat -1 -1 3636704 3675856 +7419506 7497779 78274 3852897.7245 3856813.2955 127.9375 127.9375 0 run25.mat -1 -1 3726807 3765946 +7599586 7677875 78290 3861903.9073 3865816.541 127.9375 127.9375 1.9466e-05 run25.mat -1 -1 3816851 3855998 +7779686 7858170 78485 3870906.3769 3874831.6946 127.9375 127.9375 0 run25.mat -1 -1 3906906 3946149 +7959945 8038115 78171 3879921.7054 3883829.1229 127.9375 127.9375 1.9495e-05 run25.mat -1 -1 3997039 4036126 +8125186 8257765 132580 3888182.7943 3894810.4114 127.9375 127.9375 0 run25.mat -1 -1 4079663 4145955 +2 278503 278502 3967869.3081 3981790.1504 127.9375 127.9375 2.8728e-05 run26.mat -1 -1 1 80318 +380260 458600 78341 3986880.7547 3990798.45 127.9375 127.9375 0 run26.mat -1 -1 131198 170370 +560400 638702 78303 3995888.0692 3999802.2197 127.9375 127.9375 0 run26.mat -1 -1 221272 260425 +740500 818637 78138 4004892.6337 4008800.1673 127.9375 127.9375 0 run26.mat -1 -1 311327 350397 +920420 998896 78477 4013887.5728 4017811.4198 127.9375 127.9375 1.9419e-05 run26.mat -1 -1 401290 440530 +1100659 1178992 78334 4022900.865 4026815.5868 127.9375 127.9375 2.918e-05 run26.mat -1 -1 491413 530581 +1280759 1359071 78313 4031906.0834 4035822.0375 127.9375 127.9375 1.946e-05 run26.mat -1 -1 581468 620625 +1460819 1539054 78236 4040906.8901 4044820.6803 127.9375 127.9375 3.8958e-05 run26.mat -1 -1 671502 710621 +1640959 1719322 78364 4049916.0996 4053835.6352 127.9375 127.9375 2.1068e-05 run26.mat -1 -1 761576 800759 +1821079 1899361 78283 4058920.7265 4062837.8712 127.9375 127.9375 2.109e-05 run26.mat -1 -1 851640 890782 +2001138 2079427 78290 4067925.8113 4071840.7779 127.9375 127.9375 3.8931e-05 run26.mat -1 -1 941673 980819 +2181218 2259437 78220 4076929.3475 4080841.4043 127.9375 127.9375 0 run26.mat -1 -1 1031717 1070828 +2361317 2439481 78165 4085935.1359 4089844.0967 127.9375 127.9375 1.9497e-05 run26.mat -1 -1 1121771 1160854 +2541377 2619434 78058 4094938.3099 4098841.1766 127.9375 127.9375 0 run26.mat -1 -1 1211804 1250834 +2721277 2799516 78240 4103933.5578 4107845.9367 127.9375 127.9375 3.8956e-05 run26.mat -1 -1 1301758 1340879 +2901317 2979671 78355 4112932.9859 4116854.7082 127.9375 127.9375 1.945e-05 run26.mat -1 -1 1391782 1430961 +3081497 3159811 78315 4121946.2324 4125861.1202 127.9375 127.9375 2.1081e-05 run26.mat -1 -1 1481876 1521035 +3261595 3339914 78320 4130949.3278 4134864.7148 127.9375 127.9375 4.0538e-05 run26.mat -1 -1 1571929 1611090 +3441715 3520010 78296 4139954.6336 4143870.7699 127.9375 127.9375 1.9464e-05 run26.mat -1 -1 1661993 1701142 +3621795 3700228 78434 4148959.4211 4152882.5062 127.9375 127.9375 0 run26.mat -1 -1 1752037 1791255 +3802036 3880402 78367 4157972.8003 4161890.9285 127.9375 127.9375 0 run26.mat -1 -1 1842161 1881346 +3982156 4060299 78144 4166977.0719 4170886.2028 127.9375 127.9375 0 run26.mat -1 -1 1932225 1971298 +4162075 4240278 78204 4175973.5745 4179883.4794 127.9375 127.9375 5.8461e-05 run26.mat -1 -1 2022189 2061292 +4342175 4422531 80357 4184980.3283 4188997.4634 127.9375 127.9375 0 run26.mat -1 -1 2112243 2152423 +4524315 4602298 77984 4194086.3719 4197985.9198 127.9375 127.9375 1.9542e-05 run26.mat -1 -1 2203317 2242310 +4704154 4782484 78331 4203079.6104 4206992.9131 127.9375 127.9375 0 run26.mat -1 -1 2293240 2332407 +4884294 4962637 78344 4212083.5775 4216003.0278 127.9375 127.9375 0 run26.mat -1 -1 2383314 2422487 +5064434 5142752 78319 4221091.0071 4225009.9885 127.9375 127.9375 1.9459e-05 run26.mat -1 -1 2473388 2512549 +5244534 5322674 78141 4230097.2544 4234003.9492 127.9375 127.9375 1.9503e-05 run26.mat -1 -1 2563442 2602514 +5424472 5502714 78243 4239095.5957 4243007.721 127.9375 127.9375 0 run26.mat -1 -1 2653415 2692538 +5604513 5684868 80356 4248096.4084 4252115.1585 127.9375 127.9375 3.9511e-05 run26.mat -1 -1 2743439 2783619 +5786672 5865006 78335 4257204.9851 4261121.8816 127.9375 127.9375 0 run26.mat -1 -1 2834523 2873692 +5966772 6044986 78215 4266210.4936 4270121.2178 127.9375 127.9375 0 run26.mat -1 -1 2924577 2963686 +6146812 6224866 78055 4275211.7807 4279115.896 127.9375 127.9375 0 run26.mat -1 -1 3014600 3053629 +6326753 6405036 78284 4284211.1302 4288123.3601 127.9375 127.9375 0 run26.mat -1 -1 3104575 3143718 +6506812 6585047 78236 4293212.3784 4297124.9539 127.9375 127.9375 2.2725e-05 run26.mat -1 -1 3194609 3233728 +6686912 6765012 78101 4302217.9234 4306122.8907 127.9375 127.9375 1.9513e-05 run26.mat -1 -1 3284663 3323714 +6866791 6944994 78204 4311212.2104 4315121.8658 127.9375 127.9375 0 run26.mat -1 -1 3374606 3413709 +7046891 7125204 78314 4320219.4563 4324132.2338 127.9375 127.9375 0 run26.mat -1 -1 3464660 3503818 +7226991 7305227 78237 4329223.7909 4333132.7273 127.9375 127.9375 4.0581e-05 run26.mat -1 -1 3554714 3593834 +7407031 7485265 78235 4338223.5003 4342137.0158 127.9375 127.9375 0 run26.mat -1 -1 3644738 3683857 +7587030 7665076 78047 4347224.533 4351128.5247 127.9375 127.9375 3.9053e-05 run26.mat -1 -1 3734741 3773766 +7766929 7845182 78254 4356220.9326 4360133.3568 127.9375 127.9375 0 run26.mat -1 -1 3824695 3863823 +7947029 8025211 78183 4365225.0662 4369135.3364 127.9375 127.9375 2.2741e-05 run26.mat -1 -1 3914748 3953841 +8112183 8282513 170331 4373482.7116 4381997.3945 127.9375 127.9375 8.9471e-06 run26.mat -1 -1 3997329 4082493 +2 258265 258264 4452125.4146 4465042.3855 127.9375 127.9375 1.1802e-05 run27.mat -1 -1 35886 165063 +360066 438380 78315 4470132.1866 4474046.0907 127.9375 127.9375 3.8919e-05 run27.mat -1 -1 215965 255124 +540145 618201 78057 4479134.4649 4483037.426 127.9375 127.9375 2.1151e-05 run27.mat -1 -1 306009 345038 +720005 798237 78233 4488128.2704 4492041.2486 127.9375 127.9375 0 run27.mat -1 -1 395943 435061 +900105 978144 78040 4497133.8498 4501034.3428 127.9375 127.9375 9.764e-05 run27.mat -1 -1 485997 525018 +1079905 1158173 78269 4506123.4772 4510036.0201 127.9375 127.9375 0 run27.mat -1 -1 575901 615037 +1260065 1338155 78091 4515133.8503 4519035.6595 127.9375 127.9375 0 run27.mat -1 -1 665985 705031 +1439944 1518032 78089 4524125.7488 4528031.2013 127.9375 127.9375 0 run27.mat -1 -1 755928 794974 +1619824 1699867 80044 4533120.2631 4537123.3804 127.9375 127.9375 1.9039e-05 run27.mat -1 -1 845872 885896 +1801744 1880008 78265 4542215.5478 4546128.6274 127.9375 127.9375 1.9472e-05 run27.mat -1 -1 936836 975970 +1981784 2059896 78113 4551217.7418 4555124.3413 127.9375 127.9375 2.1136e-05 run27.mat -1 -1 1026861 1065918 +2161644 2239850 78207 4560213.4063 4564122.4264 127.9375 127.9375 6.333e-05 run27.mat -1 -1 1116794 1155899 +2341743 2419825 78083 4569217.3892 4573120.7703 127.9375 127.9375 0 run27.mat -1 -1 1206848 1245890 +2521623 2599781 78159 4578212.058 4582122.3438 127.9375 127.9375 1.9498e-05 run27.mat -1 -1 1296791 1335872 +2701682 2779745 78064 4587212.9656 4591118.6133 127.9375 127.9375 0 run27.mat -1 -1 1386825 1425858 +2881502 2959836 78335 4596206.2593 4600122.0784 127.9375 127.9375 4.053e-05 run27.mat -1 -1 1476739 1515907 +3061602 3139625 78024 4605212.1429 4609113.3039 127.9375 127.9375 3.9064e-05 run27.mat -1 -1 1566793 1605806 +3241521 3319677 78157 4614207.1654 4618115.2473 127.9375 127.9375 1.9499e-05 run27.mat -1 -1 1656756 1695836 +3421581 3499705 78125 4623209.4804 4627115.5368 127.9375 127.9375 1.9507e-05 run27.mat -1 -1 1746790 1785854 +3601481 3679942 78462 4632204.7896 4636128.1287 127.9375 127.9375 1.9423e-05 run27.mat -1 -1 1836744 1875976 +3781721 3859767 78047 4641216.3145 4645120.4403 127.9375 127.9375 3.9053e-05 run27.mat -1 -1 1926868 1965893 +3961561 4039870 78310 4650211.3809 4654124.8855 127.9375 127.9375 4.0543e-05 run27.mat -1 -1 2016792 2055948 +4141640 4219940 78301 4659214.8008 4663129.2228 127.9375 127.9375 1.9463e-05 run27.mat -1 -1 2106836 2145987 +4321700 4399896 78197 4668216.2982 4672127.1796 127.9375 127.9375 1.9489e-05 run27.mat -1 -1 2196870 2235969 +4501780 4579854 78075 4677219.9532 4681126.4164 127.9375 127.9375 1.9519e-05 run27.mat -1 -1 2286914 2325952 +4681620 4759901 78282 4686212.3708 4690128.0853 127.9375 127.9375 2.109e-05 run27.mat -1 -1 2376837 2415980 +4861680 4939994 78315 4695218.1912 4699132.2244 127.9375 127.9375 4.0541e-05 run27.mat -1 -1 2466872 2506030 +5041779 5119934 78156 4704222.6947 4708128.4764 127.9375 127.9375 0 run27.mat -1 -1 2556925 2596004 +5221818 5300063 78246 4713222.0461 4717135.0954 127.9375 127.9375 0 run27.mat -1 -1 2646948 2686073 +5401859 5480089 78231 4722224.8039 4726136.8861 127.9375 127.9375 1.948e-05 run27.mat -1 -1 2736973 2776089 +5581878 5660132 78255 4731228.7843 4735139.9506 127.9375 127.9375 1.9474e-05 run27.mat -1 -1 2826986 2866115 +5761937 5839997 78061 4740229.9067 4744132.3662 127.9375 127.9375 0 run27.mat -1 -1 2917020 2956051 +5941818 6020097 78280 4749222.8503 4753136.6208 127.9375 127.9375 1.9468e-05 run27.mat -1 -1 3006964 3046105 +6121878 6200237 78360 4758228.3448 4762144.8362 127.9375 127.9375 1.9448e-05 run27.mat -1 -1 3096998 3136180 +6302017 6380241 78225 4767235.8625 4771146.8824 127.9375 127.9375 0 run27.mat -1 -1 3187072 3226185 +6482037 6560052 78016 4776234.8034 4780135.6158 127.9375 127.9375 0 run27.mat -1 -1 3277085 3316095 +6661878 6740141 78264 4785229.8405 4789141.7539 127.9375 127.9375 3.8944e-05 run27.mat -1 -1 3367010 3406143 +6841937 6922290 80354 4794233.2501 4798248.137 127.9375 127.9375 0 run27.mat -1 -1 3457043 3497221 +7024056 7102121 78066 4803336.7626 4807240.4146 127.9375 127.9375 0 run27.mat -1 -1 3548107 3587141 +7203936 7282119 78184 4812332.0989 4816242.2283 127.9375 127.9375 0 run27.mat -1 -1 3638050 3677144 +7383935 7462201 78267 4821331.7948 4825243.699 127.9375 127.9375 0 run27.mat -1 -1 3728054 3767189 +7563976 7642104 78129 4830332.7732 4834242.5684 127.9375 127.9375 5.8518e-05 run27.mat -1 -1 3818078 3857144 +7743995 7822170 78176 4839336.0306 4843243.4037 127.9375 127.9375 2.1119e-05 run27.mat -1 -1 3908092 3947181 +7924075 8002339 78265 4848339.3497 4852254.4173 127.9375 127.9375 0 run27.mat -1 -1 3998136 4037270 +8090210 8325793 235584 4856646.5757 4868422.9147 127.9375 127.9375 1.3477e-05 run27.mat -1 -1 4081207 4187927 +2 272015 272014 4936738.5054 4950341.7456 127.9375 127.9375 5.6026e-06 run28.mat -1 -1 18165 154227 +373929 452027 78099 4955436.6576 4959345.0337 127.9375 127.9375 0 run28.mat -1 -1 205186 244237 +553831 633970 80140 4964436.0494 4968442.0487 127.9375 127.9375 3.9617e-05 run28.mat -1 -1 295141 335212 +735749 814039 78291 4973530.9111 4977444.2864 127.9375 127.9375 1.9465e-05 run28.mat -1 -1 386104 425251 +915809 993810 78002 4982533.441 4986432.387 127.9375 127.9375 0 run28.mat -1 -1 476138 515140 +1095629 1173683 78055 4991524.923 4995428.5031 127.9375 127.9375 1.9524e-05 run28.mat -1 -1 566052 605080 +1275469 1353740 78272 5000516.9704 5004431.2399 127.9375 127.9375 0 run28.mat -1 -1 655976 695113 +1455528 1533493 77966 5009519.0149 5013416.8009 127.9375 127.9375 1.9547e-05 run28.mat -1 -1 746009 784993 +1635367 1713649 78283 5018510.3008 5022425.1481 127.9375 127.9375 0 run28.mat -1 -1 835933 875076 +1815428 1893448 78021 5027513.7611 5031416.75 127.9375 127.9375 0 run28.mat -1 -1 925967 964978 +1995247 2073303 78057 5036507.6469 5040408.9804 127.9375 127.9375 0 run28.mat -1 -1 1015881 1054910 +2175107 2253365 78259 5045500.3848 5049411.8853 127.9375 127.9375 0 run28.mat -1 -1 1105814 1144945 +2355147 2433237 78091 5054501.0229 5058406.5148 127.9375 127.9375 0 run28.mat -1 -1 1195838 1234885 +2535007 2613028 78022 5063493.9316 5067397.8804 127.9375 127.9375 2.116e-05 run28.mat -1 -1 1285772 1324784 +2714906 2793165 78260 5072488.9693 5076404.4853 127.9375 127.9375 0 run28.mat -1 -1 1375725 1414857 +2894966 2973222 78257 5081492.7735 5085406.7963 127.9375 127.9375 0 run28.mat -1 -1 1465760 1504889 +3075005 3153079 78075 5090493.7126 5094400.3157 127.9375 127.9375 1.9519e-05 run28.mat -1 -1 1555783 1594822 +3254866 3333122 78257 5099487.9996 5103400.9175 127.9375 127.9375 0 run28.mat -1 -1 1645718 1684848 +3434925 3512994 78070 5108492.0062 5112394.4703 127.9375 127.9375 1.9521e-05 run28.mat -1 -1 1735751 1774787 +3614806 3693061 78256 5117484.3197 5121399.0678 127.9375 127.9375 2.1097e-05 run28.mat -1 -1 1825695 1864825 +3794845 3873140 78296 5126486.9609 5130402.1569 127.9375 127.9375 0 run28.mat -1 -1 1915719 1954868 +3974904 4053037 78134 5135492.8329 5139399.1196 127.9375 127.9375 0 run28.mat -1 -1 2005752 2044821 +4154785 4235137 80353 5144483.7821 5148502.0952 127.9375 127.9375 0 run28.mat -1 -1 2095697 2135875 +4336925 4415034 78110 5153593.3959 5157497.3351 127.9375 127.9375 0 run28.mat -1 -1 2186771 2225827 +4516824 4595069 78246 5162589.1498 5166500.45 127.9375 127.9375 1.9477e-05 run28.mat -1 -1 2276724 2315848 +4696843 4775127 78285 5171587.6514 5175504.82 127.9375 127.9375 2.2711e-05 run28.mat -1 -1 2366738 2405881 +4876923 4955024 78102 5180592.3994 5184498.0313 127.9375 127.9375 4.3903e-05 run28.mat -1 -1 2456781 2495834 +5056803 5134996 78194 5189587.2278 5193494.534 127.9375 127.9375 0 run28.mat -1 -1 2546726 2585824 +5236883 5314931 78049 5198590.5444 5202494.9036 127.9375 127.9375 0 run28.mat -1 -1 2636769 2675795 +5416743 5494978 78236 5207585.7303 5211494.5375 127.9375 127.9375 0 run28.mat -1 -1 2726703 2765823 +5596742 5674809 78068 5216584.8129 5220487.1385 127.9375 127.9375 1.9521e-05 run28.mat -1 -1 2816707 2855742 +5776583 5854907 78325 5225577.5923 5229492.0432 127.9375 127.9375 1.9457e-05 run28.mat -1 -1 2906631 2945795 +5956662 6034752 78091 5234579.1703 5238484.2565 127.9375 127.9375 0 run28.mat -1 -1 2996675 3035722 +6136502 6214797 78296 5243573.8672 5247487.0175 127.9375 127.9375 0 run28.mat -1 -1 3086599 3125748 +6316601 6394813 78213 5252577.5257 5256487.5068 127.9375 127.9375 0 run28.mat -1 -1 3176652 3215760 +6496602 6574912 78311 5261578.9773 5265493.4535 127.9375 127.9375 1.9461e-05 run28.mat -1 -1 3266657 3305813 +6676681 6754743 78063 5270583.4122 5274484.6383 127.9375 127.9375 0 run28.mat -1 -1 3356700 3395733 +6856561 6934857 78297 5279577.0814 5283490.3901 127.9375 127.9375 0 run28.mat -1 -1 3446644 3485794 +7036621 7114906 78286 5288579.2037 5292492.3244 127.9375 127.9375 1.9467e-05 run28.mat -1 -1 3536678 3575823 +7216679 7294764 78086 5297583.025 5301486.0843 127.9375 127.9375 1.9517e-05 run28.mat -1 -1 3626711 3665755 +7396520 7474835 78316 5306574.4478 5310491.8608 127.9375 127.9375 3.8919e-05 run28.mat -1 -1 3716635 3755795 +7576620 7654895 78276 5315580.0173 5319493.4148 127.9375 127.9375 2.1092e-05 run28.mat -1 -1 3806689 3845828 +7756659 7834859 78201 5324583.5257 5328492.8947 127.9375 127.9375 1.9488e-05 run28.mat -1 -1 3896713 3935814 +7936759 8014914 78156 5333586.1471 5337494.6731 127.9375 127.9375 0 run28.mat -1 -1 3986767 4025846 +8102819 8978380 875562 5341889.1178 5385668.1262 127.9375 127.9375 1.0588e-05 run28.mat -1 -1 4069800 4309800 +2 273008 273007 5455183.9972 5468836.6489 127.9375 127.9375 2.2794e-05 run29.mat -1 -1 27746 164295 +374796 453257 78462 5473925.7324 5477849.1574 127.9375 127.9375 2.1042e-05 run29.mat -1 -1 215191 254423 +555076 633346 78271 5482941.1573 5486855.9946 127.9375 127.9375 0 run29.mat -1 -1 305335 344472 +735136 813416 78281 5491944.8102 5495858.476 127.9375 127.9375 0 run29.mat -1 -1 395369 434511 +915176 993470 78295 5500945.4398 5504860.4428 127.9375 127.9375 1.9464e-05 run29.mat -1 -1 485393 524542 +1095276 1173359 78084 5509951.3227 5513855.6694 127.9375 127.9375 0 run29.mat -1 -1 575447 614491 +1275155 1353435 78281 5518945.7863 5522858.8638 127.9375 127.9375 1.9468e-05 run29.mat -1 -1 665391 704532 +1455275 1533594 78320 5527951.8547 5531867.5804 127.9375 127.9375 1.9458e-05 run29.mat -1 -1 755454 794616 +1635355 1713852 78498 5536955.5974 5540881.1848 127.9375 127.9375 0 run29.mat -1 -1 845499 884749 +1815614 1893856 78243 5545969.7728 5549881.8487 127.9375 127.9375 3.8955e-05 run29.mat -1 -1 935632 974755 +1995653 2073920 78268 5554971.5317 5558883.7916 127.9375 127.9375 1.9471e-05 run29.mat -1 -1 1025655 1064790 +2175733 2254027 78295 5563975.4545 5567890.8782 127.9375 127.9375 1.9464e-05 run29.mat -1 -1 1115699 1154848 +2355834 2434062 78229 5572979.096 5576892.5303 127.9375 127.9375 5.8443e-05 run29.mat -1 -1 1205754 1244869 +2535853 2614093 78241 5581981.3687 5585893.0739 127.9375 127.9375 0 run29.mat -1 -1 1295767 1334889 +2715893 2794216 78324 5590981.9643 5594898.7694 127.9375 127.9375 1.9457e-05 run29.mat -1 -1 1385791 1424954 +2895972 2974301 78330 5599987.1451 5603904.8423 127.9375 127.9375 5.9989e-05 run29.mat -1 -1 1475835 1515001 +3076073 3154356 78284 5608994.4561 5612906.755 127.9375 127.9375 3.8934e-05 run29.mat -1 -1 1565889 1605032 +3256153 3334466 78314 5617995.8319 5621912.6525 127.9375 127.9375 1.946e-05 run29.mat -1 -1 1655933 1695091 +3436231 3514693 78463 5627000.1823 5630923.6862 127.9375 127.9375 1.9423e-05 run29.mat -1 -1 1745976 1785209 +3616492 3694799 78308 5636013.3725 5639929.1831 127.9375 127.9375 0 run29.mat -1 -1 1836111 1875265 +3796572 3874841 78270 5645017.9335 5648931.4661 127.9375 127.9375 0 run29.mat -1 -1 1926154 1965291 +3976631 4054925 78295 5654022.0006 5657935.0331 127.9375 127.9375 0 run29.mat -1 -1 2016188 2055336 +4156710 4235023 78314 5663026.5339 5666940.7721 127.9375 127.9375 0 run29.mat -1 -1 2106231 2145390 +4336770 4416898 80129 5672028.7831 5676035.3276 127.9375 127.9375 0 run29.mat -1 -1 2196265 2236331 +4518691 4596803 78113 5681124.7621 5685030.6846 127.9375 127.9375 1.951e-05 run29.mat -1 -1 2287230 2326287 +4698591 4776874 78284 5690119.8699 5694034.4319 127.9375 127.9375 0 run29.mat -1 -1 2377184 2416327 +4878650 4956933 78284 5699123.1222 5703035.278 127.9375 127.9375 1.9467e-05 run29.mat -1 -1 2467217 2506360 +5058730 5136995 78266 5708126.8249 5712042.7669 127.9375 127.9375 0 run29.mat -1 -1 2557261 2596395 +5238789 5316849 78061 5717128.6365 5721033.596 127.9375 127.9375 0 run29.mat -1 -1 2647294 2686326 +5418630 5496889 78260 5726122.2603 5730036.079 127.9375 127.9375 1.9473e-05 run29.mat -1 -1 2737219 2776350 +5598708 5676994 78287 5735126.4966 5739040.9492 127.9375 127.9375 0 run29.mat -1 -1 2827262 2866407 +5778810 5857117 78308 5744131.1797 5748047.4723 127.9375 127.9375 2.1083e-05 run29.mat -1 -1 2917316 2956472 +5958909 6036968 78060 5753135.9726 5757038.6159 127.9375 127.9375 0 run29.mat -1 -1 3007370 3046401 +6138768 6216936 78169 5762129.0235 5766038.411 127.9375 127.9375 0 run29.mat -1 -1 3097304 3136389 +6318828 6397199 78372 5771132.8105 5775050.2681 127.9375 127.9375 3.8891e-05 run29.mat -1 -1 3187338 3226525 +6498947 6577066 78120 5780139.9625 5784045.4535 127.9375 127.9375 0 run29.mat -1 -1 3277401 3316462 +6678868 6757101 78234 5789135.3878 5793047.79 127.9375 127.9375 1.948e-05 run29.mat -1 -1 3367366 3406484 +6858947 6937224 78278 5798139.6451 5802054.488 127.9375 127.9375 0 run29.mat -1 -1 3457409 3496549 +7039026 7117294 78269 5807142.4494 5811057.8319 127.9375 127.9375 1.9471e-05 run29.mat -1 -1 3547453 3586588 +7219046 7297165 78120 5816146.3578 5820050.2569 127.9375 127.9375 3.9016e-05 run29.mat -1 -1 3637466 3676528 +7398965 7477292 78328 5825141.2836 5829056.1488 127.9375 127.9375 0 run29.mat -1 -1 3727430 3766595 +7579086 7657172 78087 5834146.0796 5838051.4463 127.9375 127.9375 5.8549e-05 run29.mat -1 -1 3817494 3856539 +7758986 7837264 78279 5843142.5082 5847056.8118 127.9375 127.9375 0 run29.mat -1 -1 3907448 3946588 +7939046 8017297 78252 5852145.8046 5856057.9677 127.9375 127.9375 1.9475e-05 run29.mat -1 -1 3997482 4036609 +8103931 8319626 215696 5860389.137 5871176.7927 127.9375 127.9375 7.6541e-06 run29.mat -1 -1 4079928 4184305 +2 272452 272451 10627862.8956 10641484.8875 127.9375 127.9375 1.1653e-05 run3.mat -1 -1 20078 156294 +374278 452576 78299 10646575.8079 10650490.8176 127.9375 127.9375 1.9463e-05 run3.mat -1 -1 207209 246360 +554359 632679 78321 10655579.3902 10659494.2989 127.9375 127.9375 1.9458e-05 run3.mat -1 -1 297253 336416 +734458 812729 78272 10664583.0599 10668498.1434 127.9375 127.9375 1.947e-05 run3.mat -1 -1 387307 426445 +914517 992724 78208 10673588.4436 10677498.1127 127.9375 127.9375 0 run3.mat -1 -1 477341 516446 +1094497 1172792 78296 10682587.1318 10686502.07 127.9375 127.9375 1.9464e-05 run3.mat -1 -1 567335 606484 +1274577 1352862 78286 10691591.7962 10695505.0966 127.9375 127.9375 1.9467e-05 run3.mat -1 -1 657378 696523 +1454656 1532942 78287 10700593.2669 10704507.597 127.9375 127.9375 2.1089e-05 run3.mat -1 -1 747422 786567 +1634697 1712809 78113 10709596.2101 10713502.3862 127.9375 127.9375 1.951e-05 run3.mat -1 -1 837446 876504 +1814556 1892996 78441 10718590.0096 10722513.0823 127.9375 127.9375 4.0475e-05 run3.mat -1 -1 927380 966601 +1994776 2073034 78259 10727604.4369 10731514.4269 127.9375 127.9375 0 run3.mat -1 -1 1017494 1056624 +2174836 2253064 78229 10736603.833 10740514.2701 127.9375 127.9375 4.0585e-05 run3.mat -1 -1 1107528 1146643 +2354875 2433145 78271 10745606.556 10749520.1032 127.9375 127.9375 1.947e-05 run3.mat -1 -1 1197551 1236688 +2534935 2613200 78266 10754609.3985 10758520.7083 127.9375 127.9375 0 run3.mat -1 -1 1287585 1326720 +2714975 2793135 78161 10763611.7965 10767521.8996 127.9375 127.9375 0 run3.mat -1 -1 1377609 1416691 +2894974 2973255 78282 10772609.4221 10776525.5165 127.9375 127.9375 1.9468e-05 run3.mat -1 -1 1467612 1506754 +3075054 3153184 78131 10781616.3499 10785523.0881 127.9375 127.9375 3.9011e-05 run3.mat -1 -1 1557657 1596723 +3255094 3333369 78276 10790617.2059 10794532.2904 127.9375 127.9375 1.9469e-05 run3.mat -1 -1 1647680 1686820 +3435133 3513431 78299 10799618.7355 10803535.1398 127.9375 127.9375 1.9463e-05 run3.mat -1 -1 1737704 1776855 +3615213 3695332 80120 10808624.5088 10812629.8431 127.9375 127.9375 4.2797e-05 run3.mat -1 -1 1827748 1867809 +3797233 3875252 78020 10817725.917 10821626.5499 127.9375 127.9375 2.1161e-05 run3.mat -1 -1 1918762 1957773 +3977051 4055303 78253 10826715.2696 10830631.746 127.9375 127.9375 1.9475e-05 run3.mat -1 -1 2008675 2047803 +4157072 4235390 78319 10835716.4102 10839633.6981 127.9375 127.9375 0 run3.mat -1 -1 2098689 2137850 +4337151 4415427 78277 10844722.0592 10848635.2304 127.9375 127.9375 3.8938e-05 run3.mat -1 -1 2188733 2227873 +4517231 4595270 78040 10853725.4377 10857627.4121 127.9375 127.9375 5.8584e-05 run3.mat -1 -1 2278776 2317798 +4697052 4775285 78234 10862715.8958 10866629.6255 127.9375 127.9375 0 run3.mat -1 -1 2368691 2407809 +4877051 4955098 78048 10871718.2396 10875618.8137 127.9375 127.9375 2.1153e-05 run3.mat -1 -1 2458694 2497720 +5056910 5134932 78023 10880710.5621 10884612.4356 127.9375 127.9375 3.9065e-05 run3.mat -1 -1 2548628 2587641 +5236731 5314913 78183 10889701.7665 10893610.1 127.9375 127.9375 1.9492e-05 run3.mat -1 -1 2638542 2677635 +5416790 5494848 78059 10898705.0315 10902608.0536 127.9375 127.9375 5.857e-05 run3.mat -1 -1 2728576 2767606 +5596610 5674899 78290 10907697.0432 10911608.5637 127.9375 127.9375 0 run3.mat -1 -1 2818490 2857636 +5776689 5854713 78025 10916701.5862 10920601.2758 127.9375 127.9375 0 run3.mat -1 -1 2908533 2947547 +5956489 6034751 78263 10925688.7934 10929602.6015 127.9375 127.9375 2.1095e-05 run3.mat -1 -1 2998437 3037570 +6136569 6214685 78117 10934693.1808 10938600.7762 127.9375 127.9375 0 run3.mat -1 -1 3088481 3127541 +6316448 6394694 78247 10943688.0406 10947600.3724 127.9375 127.9375 0 run3.mat -1 -1 3178425 3217549 +6496468 6576633 80166 10952689.3905 10956696.7221 127.9375 127.9375 3.802e-05 run3.mat -1 -1 3268439 3308523 +6678388 6756469 78082 10961786.4923 10965689.3382 127.9375 127.9375 0 run3.mat -1 -1 3359402 3398444 +6858268 6936517 78250 10970778.2003 10974692.7336 127.9375 127.9375 6.005e-05 run3.mat -1 -1 3449346 3488473 +7038327 7116435 78109 10979783.6479 10983686.7972 127.9375 127.9375 3.9022e-05 run3.mat -1 -1 3539380 3578436 +7218207 7296451 78245 10988776.9988 10992690.3245 127.9375 127.9375 1.9477e-05 run3.mat -1 -1 3629324 3668448 +7398206 7476272 78067 10997776.3613 11001680.7152 127.9375 127.9375 0 run3.mat -1 -1 3719327 3758362 +7578086 7656136 78051 11006769.7734 11010673.0079 127.9375 127.9375 2.2779e-05 run3.mat -1 -1 3809271 3848298 +7757946 7836224 78279 11015764.8429 11019680.3681 127.9375 127.9375 5.8405e-05 run3.mat -1 -1 3899205 3938346 +7938026 8016083 78058 11024769.8528 11028672.6799 127.9375 127.9375 8.4602e-05 run3.mat -1 -1 3989249 4028279 +8117865 8196082 78218 11033762.7024 11037672.2967 127.9375 127.9375 1.9484e-05 run3.mat -1 -1 4079173 4118283 +8297865 8376168 78304 11042762.1401 11046675.3286 127.9375 127.9375 4.0546e-05 run3.mat -1 -1 4169176 4208330 +8477945 8556236 78292 11051766.4638 11055679.9032 127.9375 127.9375 1.9465e-05 run3.mat -1 -1 4259220 4298368 +8658003 8736096 78094 11060767.1033 11064672.1449 127.9375 127.9375 3.9029e-05 run3.mat -1 -1 4349253 4388302 +8837864 8916150 78287 11069761.304 11073676.3538 127.9375 127.9375 1.9466e-05 run3.mat -1 -1 4439188 4478333 +9017944 9096166 78223 11078765.792 11082678.7938 127.9375 127.9375 2.1106e-05 run3.mat -1 -1 4529232 4568344 +9197943 9276242 78300 11087766.4378 11091681.3622 127.9375 127.9375 3.8926e-05 run3.mat -1 -1 4619235 4658387 +9378043 9456313 78271 11096771.2528 11100685.5645 127.9375 127.9375 4.0563e-05 run3.mat -1 -1 4709289 4748426 +9558083 9638174 80092 11105774.7223 11109778.3844 127.9375 127.9375 0 run3.mat -1 -1 4799313 4839360 +9740002 9818090 78089 11114870.0827 11118774.1137 127.9375 127.9375 0 run3.mat -1 -1 4890276 4929322 +9919862 9998108 78247 11123861.371 11127774.7044 127.9375 127.9375 3.8953e-05 run3.mat -1 -1 4980211 5019335 +10099862 10178141 78280 11132863.5882 11136774.8694 127.9375 127.9375 0 run3.mat -1 -1 5070215 5109355 +10279921 10358004 78084 11141866.8379 11145771.4794 127.9375 127.9375 3.9034e-05 run3.mat -1 -1 5160248 5199291 +10459782 10538034 78253 11150860.6645 11154771.1121 127.9375 127.9375 1.9475e-05 run3.mat -1 -1 5250182 5289310 +10639820 10719949 80130 11159860.2017 11163868.645 127.9375 127.9375 0 run3.mat -1 -1 5340205 5380271 +10821721 10899844 78124 11168957.619 11172863.7979 127.9375 127.9375 1.9507e-05 run3.mat -1 -1 5431160 5470223 +11001741 11080053 78313 11177960.3034 11181873.6005 127.9375 127.9375 1.946e-05 run3.mat -1 -1 5521174 5560332 +11181801 11259777 77977 11186960.7359 11190860.4042 127.9375 127.9375 8.3061e-05 run3.mat -1 -1 5611208 5650197 +11273353 12000001 726649 11191539.1281 11227873.4928 127.9375 127.9375 1.0836e-05 run3.mat -1 -1 5656986 5896986 +2 262071 262070 5966777.4142 5979879.5824 127.9375 127.9375 0 run30.mat -1 -1 22346 153366 +363846 443958 80113 5984968.8569 5988973.4031 127.9375 127.9375 0 run30.mat -1 -1 204256 244314 +545766 624043 78278 5994062.7017 5997976.5291 127.9375 127.9375 0 run30.mat -1 -1 295220 334360 +725826 803903 78078 6003067.7362 6006970.5282 127.9375 127.9375 1.9519e-05 run30.mat -1 -1 385254 424294 +905667 983979 78313 6012059.8603 6015975.687 127.9375 127.9375 1.946e-05 run30.mat -1 -1 475178 514336 +1085746 1164037 78292 6021064.7906 6024979.0655 127.9375 127.9375 1.9465e-05 run30.mat -1 -1 565222 604369 +1265805 1343887 78083 6030066.7628 6033972.0461 127.9375 127.9375 7.9696e-05 run30.mat -1 -1 655255 694298 +1445665 1523808 78144 6039061.3614 6042967.4876 127.9375 127.9375 0 run30.mat -1 -1 745189 784262 +1625586 1703808 78223 6048056.7976 6051967.0228 127.9375 127.9375 0 run30.mat -1 -1 835153 874266 +1805625 1883704 78080 6057056.9927 6060962.9723 127.9375 127.9375 0 run30.mat -1 -1 925177 964218 +1985485 2063773 78289 6066050.7681 6069965.2179 127.9375 127.9375 1.9466e-05 run30.mat -1 -1 1015111 1054257 +2165564 2243837 78274 6075056.3151 6078969.6655 127.9375 127.9375 1.947e-05 run30.mat -1 -1 1105155 1144293 +2345664 2423742 78079 6084062.3156 6087965.8148 127.9375 127.9375 0 run30.mat -1 -1 1195209 1234249 +2525524 2603760 78237 6093054.8301 6096966.0896 127.9375 127.9375 0 run30.mat -1 -1 1285142 1324262 +2705563 2783851 78289 6102056.2398 6105969.5085 127.9375 127.9375 3.8932e-05 run30.mat -1 -1 1375166 1414312 +2885663 2963858 78196 6111061.6622 6114971.4792 127.9375 127.9375 6.0091e-05 run30.mat -1 -1 1465220 1504319 +3065642 3143943 78302 6120061.7253 6123975.3707 127.9375 127.9375 1.9463e-05 run30.mat -1 -1 1555213 1594365 +3245722 3323812 78091 6129063.3247 6132969.6717 127.9375 127.9375 0 run30.mat -1 -1 1645257 1684304 +3425602 3503845 78244 6138059.3038 6141971.8079 127.9375 127.9375 1.9477e-05 run30.mat -1 -1 1735201 1774324 +3605622 3683893 78272 6147061.6391 6150973.1685 127.9375 127.9375 0 run30.mat -1 -1 1825214 1864352 +3785682 3863979 78298 6156063.308 6159978.7474 127.9375 127.9375 0 run30.mat -1 -1 1915249 1954399 +3965802 4044087 78286 6165068.9871 6168981.4497 127.9375 127.9375 3.8933e-05 run30.mat -1 -1 2005313 2044457 +4145841 4223960 78120 6174071.0828 6177975.9883 127.9375 127.9375 7.9658e-05 run30.mat -1 -1 2095337 2134397 +4325742 4403990 78249 6183065.639 6186978.2259 127.9375 127.9375 1.9476e-05 run30.mat -1 -1 2185291 2224417 +4505781 4583820 78040 6192068.0544 6195971.9354 127.9375 127.9375 2.1155e-05 run30.mat -1 -1 2275314 2314335 +4685640 4763927 78288 6201063.3163 6204974.78 127.9375 127.9375 0 run30.mat -1 -1 2365248 2404393 +4865701 4943990 78290 6210064.0524 6213978.3028 127.9375 127.9375 0 run30.mat -1 -1 2455282 2494428 +5045760 5123978 78219 6219067.4973 6222980.1842 127.9375 127.9375 1.9483e-05 run30.mat -1 -1 2545315 2584426 +5225859 5303947 78089 6228074.0935 6231978.2771 127.9375 127.9375 0 run30.mat -1 -1 2635369 2674415 +5405700 5483948 78249 6237065.6233 6240977.4481 127.9375 127.9375 1.9476e-05 run30.mat -1 -1 2725293 2764419 +5585741 5663870 78130 6246068.0202 6249972.5076 127.9375 127.9375 0 run30.mat -1 -1 2815318 2854384 +5765640 5843923 78284 6255063.3763 6258976.3213 127.9375 127.9375 0 run30.mat -1 -1 2905271 2944415 +5945719 6023798 78080 6264068.681 6267972.5781 127.9375 127.9375 1.9518e-05 run30.mat -1 -1 2995315 3034356 +6125620 6203842 78223 6273061.6638 6276974.0371 127.9375 127.9375 0 run30.mat -1 -1 3085269 3124382 +6305639 6383790 78152 6282062.4756 6285969.0909 127.9375 127.9375 0 run30.mat -1 -1 3175283 3214359 +6485559 6563854 78296 6291058.4681 6294973.3511 127.9375 127.9375 1.9464e-05 run30.mat -1 -1 3265247 3304396 +6665639 6743712 78074 6300061.5388 6303967.1964 127.9375 127.9375 0 run30.mat -1 -1 3355291 3394329 +6845518 6923818 78301 6309056.5858 6312972.5898 127.9375 127.9375 1.9463e-05 run30.mat -1 -1 3445234 3484386 +7025597 7103856 78260 6318061.7334 6321975.744 127.9375 127.9375 0 run30.mat -1 -1 3535278 3574409 +7205636 7283897 78262 6327063.9154 6330977.9139 127.9375 127.9375 0 run30.mat -1 -1 3625301 3664433 +7385717 7464025 78309 6336066.4031 6339980.9 127.9375 127.9375 7.9466e-05 run30.mat -1 -1 3715345 3754501 +7565797 7643896 78100 6345071.0121 6348976.7333 127.9375 127.9375 0 run30.mat -1 -1 3805389 3844441 +7745676 7824037 78362 6354067.4396 6357983.3438 127.9375 127.9375 1.9448e-05 run30.mat -1 -1 3895333 3934515 +7925795 8003966 78172 6363073.2543 6366982.4802 127.9375 127.9375 0 run30.mat -1 -1 3985396 4024484 +8091176 8362919 271744 6371341.5474 6384930.1134 127.9375 127.9375 1.1684e-05 run30.mat -1 -1 4068090 4187516 +2 344293 344292 6723982.4391 6741193.9798 127.9375 127.9375 3.1354e-05 run31.mat 138.4168 4 2186 174299 +391580 463179 71600 6743557.848 6747137.2184 127.9375 127.9375 4.6116e-05 run31.mat 1.4145 4 197944 233745 +494945 567717 72773 6748727.6321 6752364.0081 127.9375 127.9375 0 run31.mat 13.4163 4 249629 286016 +593814 668298 74485 6753670.4058 6757394.7636 127.9375 127.9375 2.046e-05 run31.mat 24.7812 4 299065 336309 +694350 768878 74529 6758697.2442 6762423.3904 127.9375 127.9375 2.0448e-05 run31.mat 32.1438 4 349335 386601 +794960 869469 74510 6763727.8732 6767453.4217 127.9375 127.9375 2.0453e-05 run31.mat 43.5977 4 399643 436898 +895577 969863 74287 6768759.6257 6772473.2146 127.9375 127.9375 4.1029e-05 run31.mat 54.9939 4 449953 487097 +995917 1070200 74284 6773775.5397 6777490.3811 127.9375 127.9375 0 run31.mat 62.3228 4 500125 537268 +1096261 1172602 76342 6778793.2586 6782609.2062 127.9375 127.9375 0 run31.mat 73.9376 4 550299 588472 +1198641 1275040 76400 6783911.4736 6787732.4527 127.9375 127.9375 5.9842e-05 run31.mat 85.5739 4 601492 639693 +1301050 1377274 76225 6789032.2829 6792842.715 127.9375 127.9375 0 run31.mat 93.2457 4 652699 690812 +1403420 1479703 76284 6794151.1537 6797966.2643 127.9375 127.9375 1.9978e-05 run31.mat 104.8732 4 703886 742029 +1505840 1582225 76386 6799271.5421 6803090.8842 127.9375 127.9375 0 run31.mat 112.4829 4 755097 793292 +1608286 1686425 78140 6804394.1454 6808302.2698 127.9375 127.9375 1.9503e-05 run31.mat 124.3642 4 806323 845395 +1712583 1790829 78247 6809608.9193 6813523.9081 127.9375 127.9375 3.8953e-05 run31.mat 132.338 4 858474 897599 +1816888 1895145 78258 6814825.8633 6818736.0509 127.9375 127.9375 1.9474e-05 run31.mat 144.1669 4 910628 949759 +1921329 2001507 80179 6820045.5634 6824054.8318 127.9375 127.9375 0 run31.mat 152.3951 4 962852 1002942 +2027640 2107917 80278 6825363.3118 6829375.2053 127.9375 127.9375 2.3729e-05 run31.mat 164.4624 4 1016010 1056150 +2133990 2214240 80251 6830680.9335 6834691.6515 127.9375 127.9375 0 run31.mat 172.7618 4 1069187 1109314 +2240449 2320609 80161 6836003.0583 6840011.6881 127.9375 127.9375 3.8023e-05 run31.mat 184.7958 4 1122419 1162500 +2346857 2427242 80386 6841322.4507 6845343.7469 127.9375 127.9375 1.8958e-05 run31.mat 193.0999 4 1175625 1215819 +2453398 2533488 80091 6846650.8666 6850654.7266 127.9375 127.9375 0 run31.mat 205.1659 4 1228898 1268944 +2559728 2642159 82432 6851968.0623 6856089.9734 127.9375 127.9375 1.8488e-05 run31.mat 213.6731 4 1282065 1323282 +2668464 2730975 62512 6857404.0023 6860527.2729 127.9375 127.9375 2.4379e-05 run31.mat 221 4 1336436 1367667 +2 318630 318629 7042634.1258 7058568.3247 127.9375 127.9375 1.8216e-05 run32.mat 1 3.9326 8261 167594 +420901 482537 61637 7063681.9363 7066764.2612 127.9375 127.9375 2.4725e-05 run32.mat 1 3 218731 249546 +508929 570595 61667 7068084.1276 7071167.0406 127.9375 127.9375 0 run32.mat 1.568 3 262747 293582 +638692 699066 60375 7074571.2261 7077589.6744 127.9375 127.9375 0 run32.mat 12.9401 3 327632 357820 +751482 813401 61920 7080209.7023 7083303.9867 127.9375 127.9375 0 run32.mat 21.9767 3 384029 414990 +865851 927645 61795 7085930.2 7089016.7669 127.9375 127.9375 0 run32.mat 31.086 3 441216 472115 +980034 1041926 61893 7091637.0048 7094733.4099 127.9375 127.9375 2.6674e-05 run32.mat 41 3 498310 529257 +1094191 1155927 61737 7097345.5766 7100432.9412 127.9375 127.9375 0 run32.mat 54.0506 3 555391 586260 +1208301 1272192 63892 7103050.5182 7106244.2664 127.9375 127.9375 0 run32.mat 63.3318 3 612449 644396 +1324487 1388373 63887 7108860.2296 7112055.4373 127.9375 127.9375 4.7708e-05 run32.mat 72.7248 3 670544 702488 +1440661 1504563 63903 7114670.4918 7117865.2518 127.9375 127.9375 0 run32.mat 82.1595 3 728633 760586 +1556852 1620775 63924 7120478.6538 7123676.6435 127.9375 127.9375 8.1452e-05 run32.mat 91.5601 3 786732 818695 +1673055 1736942 63888 7126289.615 7129482.4043 127.9375 127.9375 0 run32.mat 101 3 844836 876781 +1789231 1852915 63685 7132098.9486 7135284.5773 127.9375 127.9375 0 run32.mat 111 3 902926 934770 +1905397 1969274 63878 7137908.1119 7141102.5212 127.9375 127.9375 0 run32.mat 124.4657 3 961012 992952 +2021587 2085446 63860 7143717.3936 7146908.3143 127.9375 127.9375 0 run32.mat 133.8391 3 1019110 1051040 +2137784 2201439 63656 7149526.2426 7152709.3969 127.9375 127.9375 0 run32.mat 143.2501 3 1077211 1109040 +2253736 2317607 63872 7155323.3865 7158516.7506 127.9375 127.9375 2.386e-05 run32.mat 152.6081 3 1135189 1167126 +2369915 2433774 63860 7161133.0708 7164326.6343 127.9375 127.9375 0 run32.mat 162.0145 3 1193281 1225212 +2486074 2550018 63945 7166939.8927 7170140.3142 127.9375 127.9375 2.3833e-05 run32.mat 171.4383 3 1251363 1283337 +2602311 2668067 65757 7172755.1744 7176041.4182 127.9375 127.9375 0 run32.mat 181.1508 3 1309484 1342363 +2720333 2786130 65798 7178654.6618 7181944.4755 127.9375 127.9375 4.6323e-05 run32.mat 191 3 1368498 1401398 +2838398 2902344 63947 7184559.6341 7187754.179 127.9375 127.9375 2.5818e-05 run32.mat 201 3 1427533 1459507 +2954686 3020552 65867 7190374.6289 7193663.9836 127.9375 127.9375 0 run32.mat 214.5609 3 1485680 1518614 +3072902 3170128 97227 7196282.6279 7201141.8789 127.9375 127.9375 0 run32.mat 221 3 1544790 1593393 +2 290553 290552 7303427.4653 7317962.9524 127.9375 127.9375 5.2451e-06 run33.mat 215.669 3.0658 16653 161984 +392364 470655 78292 7323051.1882 7326966.578 127.9375 127.9375 1.9465e-05 run33.mat 140 4 212891 252038 +572464 651035 78572 7332057.0631 7335983.5743 127.9375 127.9375 5.8188e-05 run33.mat 140 4 302945 342232 +752784 831028 78245 7341073.7557 7344983.9746 127.9375 127.9375 0 run33.mat 140 4 393109 432233 +932903 1011222 78320 7350077.8427 7353994.5737 127.9375 127.9375 0 run33.mat 140 4 483173 522333 +1112983 1191413 78431 7359082.0611 7363005.1727 127.9375 127.9375 1.9431e-05 run33.mat 140 4 573216 612433 +1293183 1371395 78213 7368091.6182 7372001.9202 127.9375 127.9375 1.9485e-05 run33.mat 140 4 663320 702428 +1473283 1551610 78328 7377097.7386 7381016.0663 127.9375 127.9375 0 run33.mat 140 4 753374 792540 +1653383 1731720 78338 7386104.4397 7390019.0208 127.9375 127.9375 1.9454e-05 run33.mat 140 4 843428 882598 +1833503 1912016 78514 7395109.758 7399034.7232 127.9375 127.9375 0 run33.mat 140 4 933492 972751 +2013781 2092044 78264 7404124.7971 7408035.3489 127.9375 127.9375 1.9472e-05 run33.mat 140 4 1023635 1062768 +2193861 2272142 78282 7413127.3311 7417043.0655 127.9375 127.9375 1.9468e-05 run33.mat 140 4 1113679 1152821 +2373902 2452454 78553 7422130.9716 7426056.5025 127.9375 127.9375 3.8801e-05 run33.mat 140 4 1203704 1242982 +2554221 2632579 78359 7431145.0212 7435062.8565 127.9375 127.9375 7.7794e-05 run33.mat 140 4 1293867 1333048 +2734341 2812652 78312 7440151.9143 7444067.9238 127.9375 127.9375 2.1082e-05 run33.mat 140 4 1383931 1423088 +2914442 2992902 78461 7449156.4086 7453079.0397 127.9375 127.9375 1.9423e-05 run33.mat 140 4 1473985 1513217 +3094680 3172980 78301 7458167.6403 7462084.1967 127.9375 127.9375 0 run33.mat 140 4 1564108 1603260 +3274781 3353320 78540 7467176.0149 7471100.7539 127.9375 127.9375 4.0424e-05 run33.mat 140 4 1654163 1693434 +3455080 3535469 80390 7476190.5215 7480207.7754 127.9375 127.9375 0 run33.mat 140 4 1744316 1784513 +3637240 3715529 78290 7485298.3655 7489214.4684 127.9375 127.9375 3.8931e-05 run33.mat 140 4 1835400 1874546 +3817339 3895608 78270 7494302.7206 7498216.2606 127.9375 127.9375 0 run33.mat 140 4 1925454 1964590 +3997399 4075718 78320 7503306.2654 7507222.8044 127.9375 127.9375 1.9458e-05 run33.mat 140 4 2015488 2054649 +4177500 4255862 78363 7512312.55 7516230.1642 127.9375 127.9375 1.9448e-05 run33.mat 140 4 2105542 2144725 +4357779 4436104 78326 7521325.7558 7525241.5333 127.9375 127.9375 0 run33.mat 140 4 2195686 2234850 +4537878 4618286 80409 7530330.3378 7534350.6503 127.9375 127.9375 1.8953e-05 run33.mat 140 4 2285739 2325945 +4720059 4798298 78240 7539440.2154 7543352.4982 127.9375 127.9375 0 run33.mat 140 4 2376833 2415955 +4900097 4978612 78516 7548442.7606 7552366.4375 127.9375 127.9375 1.941e-05 run33.mat 140 4 2466856 2506116 +5080398 5158630 78233 7557456.8579 7561370.2646 127.9375 127.9375 1.948e-05 run33.mat 140 4 2557011 2596129 +5260517 5338806 78290 7566465.144 7570377.7367 127.9375 127.9375 0 run33.mat 140 4 2647075 2686221 +5440597 5518879 78283 7575468.458 7579379.8737 127.9375 127.9375 0 run33.mat 140 4 2737119 2776261 +5620717 5698977 78261 7584473.5618 7588385.802 127.9375 127.9375 0 run33.mat 140 4 2827182 2866314 +5800756 5879269 78514 7593474.8892 7597400.0058 127.9375 127.9375 3.882e-05 run33.mat 140 4 2917206 2956464 +5981055 6059361 78307 7602492.5664 7606405.9687 127.9375 127.9375 7.7846e-05 run33.mat 140 4 3007359 3046514 +6161136 6239365 78230 7611496.1221 7615405.8455 127.9375 127.9375 0 run33.mat 140 4 3097404 3136520 +6341276 6419593 78318 7620501.6671 7624419.3801 127.9375 127.9375 3.8918e-05 run33.mat 140 4 3187478 3226638 +6521375 6599838 78464 7629507.8623 7633428.9931 127.9375 127.9375 0 run33.mat 140 4 3277531 3316764 +6701635 6779917 78283 7638520.2212 7642434.9819 127.9375 127.9375 6.0025e-05 run33.mat 140 4 3367665 3406808 +6881755 6960090 78336 7647526.766 7651444.4341 127.9375 127.9375 0 run33.mat 140 4 3457729 3496898 +7061874 7140236 78363 7656534.067 7660451.1413 127.9375 127.9375 0 run33.mat 140 4 3547792 3586975 +7241994 7320305 78312 7665540.4924 7669453.0194 127.9375 127.9375 0 run33.mat 140 4 3637856 3677014 +7422094 7500353 78260 7674542.7716 7678457.6774 127.9375 127.9375 0 run33.mat 140 4 3727910 3767041 +7602114 7680325 78212 7683544.0831 7687455.7164 127.9375 127.9375 0 run33.mat 140 4 3817924 3857031 +7782213 7860586 78374 7692550.5487 7696468.2699 127.9375 127.9375 1.9445e-05 run33.mat 140 4 3907977 3947166 +7962333 8040556 78224 7701556.5003 7705471.0081 127.9375 127.9375 1.9482e-05 run33.mat 140 4 3998042 4037155 +8127882 8307313 179432 7709833.0498 7718802.1615 127.9375 127.9375 3.4681e-05 run33.mat 140 4 4080820 4170495 +2 317815 317814 7820918.5319 7836807.2293 127.9375 127.9375 3.9926e-05 run34.mat 132.9403 4 1552 160407 +362363 434844 72482 7839033.7868 7842658.3745 127.9375 127.9375 1.5246e-05 run34.mat 2.8143 4 182682 218924 +465681 539390 73710 7844199.4739 7847885.9438 127.9375 127.9375 3.033e-05 run34.mat 14.7682 4 234343 271200 +565057 638079 73023 7849167.6683 7852821.9353 127.9375 127.9375 2.4528e-05 run34.mat 21.8798 4 284034 320546 +663859 738887 75029 7854109.5437 7857861.3328 127.9375 127.9375 3.7585e-05 run34.mat 33.2888 4 333436 370952 +764662 839389 74728 7859150.8539 7862886.1857 127.9375 127.9375 4.6575e-05 run34.mat 44.6927 4 383841 421206 +865212 939899 74688 7864176.1945 7867910.8774 127.9375 127.9375 2.398e-05 run34.mat 52.0717 4 434118 471462 +965656 1040215 74560 7869198.6856 7872927.0345 127.9375 127.9375 3.1859e-05 run34.mat 63.4625 4 484341 521623 +1066000 1142807 76808 7874215.3888 7878056.0845 127.9375 127.9375 7.938e-06 run34.mat 75.0507 4 534516 572921 +1168587 1245254 76668 7879346.1268 7883178.7402 127.9375 127.9375 5.3018e-05 run34.mat 82.7634 4 585812 624147 +1271032 1347614 76583 7884469.214 7888298.1266 127.9375 127.9375 2.2226e-05 run34.mat 94.3871 4 637036 675329 +1373433 1450375 76943 7889588.6027 7893436.4791 127.9375 127.9375 2.3607e-05 run34.mat 102.0996 4 688239 726712 +1475928 1554899 78972 7894713.244 7898660.5835 127.9375 127.9375 4.3912e-05 run34.mat 113.9307 4 739488 778976 +1580399 1659382 78984 7899937.4457 7903885.1839 127.9375 127.9375 2.1871e-05 run34.mat 125.7715 4 791727 831220 +1684866 1763679 78814 7905162.6809 7909100.9978 127.9375 127.9375 1.3861e-05 run34.mat 133.7841 4 843962 883371 +1789189 1867917 78729 7910377.998 7914311.093 127.9375 127.9375 2.0813e-05 run34.mat 145.5168 4 896126 935492 +1893718 1972460 78743 7915601.4752 7919542.052 127.9375 127.9375 2.2261e-05 run34.mat 153.6343 4 948393 987766 +1997999 2077035 79037 7920817.4449 7924769.3727 127.9375 127.9375 9.5355e-06 run34.mat 165.4433 4 1000536 1040055 +2102449 2181599 79151 7926038.8011 7929998.8359 127.9375 127.9375 3.1777e-05 run34.mat 173.4842 4 1052763 1092340 +2206977 2288119 81143 7931266.5911 7935324.6459 127.9375 127.9375 8.7763e-06 run34.mat 185.4936 4 1105030 1145602 +2313540 2394544 81005 7936595.9145 7940643.9946 127.9375 127.9375 9.1916e-06 run34.mat 193.7909 4 1158313 1198817 +2420070 2501147 81078 7941920.6719 7945976.2668 127.9375 127.9375 9.3912e-06 run34.mat 205.8657 4 1211581 1252121 +2526522 2609706 83185 7947245.1342 7951402.9762 127.9375 127.9375 5.645e-06 run34.mat 214.3599 4 1264809 1306402 +2635153 2891805 256653 7952676.0838 7965505.8726 127.9375 127.9375 1.0533e-05 run34.mat 221 4 1319127 1447422 +2 354020 354019 8016052.5705 8033754.052 127.9375 127.9375 2.9601e-05 run35.mat 205.4837 3.9295 10184 187200 +456065 518032 61968 8038855.2759 8041950.5463 127.9375 127.9375 2.7468e-05 run35.mat 1 3 238224 269210 +620184 681912 61729 8047061.8546 8050148.6569 127.9375 127.9375 0 run35.mat 1 3 320288 351153 +688001 750045 62045 8050451.4176 8053555.5944 127.9375 127.9375 9.0077e-06 run35.mat 1.1503 3 354197 385220 +852266 914311 62046 8058664.9865 8061766.7216 127.9375 127.9375 1.8015e-05 run35.mat 11 3 436334 467358 +954795 1016716 61922 8063792.3775 8066886.9952 127.9375 127.9375 1.7847e-05 run35.mat 11 3 487600 518563 +1118763 1180605 61843 8071990.288 8075082.8117 127.9375 127.9375 3.7382e-05 run35.mat 21 3 569588 600510 +1193199 1254867 61669 8075713.5638 8078795.3598 127.9375 127.9375 9.8867e-06 run35.mat 21 3 606808 637643 +1357004 1418821 61818 8083903.6481 8086994.8214 127.9375 127.9375 4.6233e-05 run35.mat 31 3 688714 719623 +1431449 1493204 61756 8087626.8699 8090711.5053 127.9375 127.9375 3.7023e-05 run35.mat 31 3 725938 756817 +1595203 1657071 61869 8095814.458 8098905.1186 127.9375 127.9375 4.6401e-05 run35.mat 41 3 807819 838754 +1669880 1731439 61560 8099545.0748 8102625.2698 127.9375 127.9375 9.2855e-06 run35.mat 41 3 845159 875940 +1833425 1895318 61894 8107725.8871 8110820.4003 127.9375 127.9375 1.8471e-05 run35.mat 51 3 926935 957883 +1908132 1969637 61506 8111460.149 8114535.1154 127.9375 127.9375 3.8413e-05 run35.mat 54.3363 3 964290 995044 +2071642 2135589 63948 8119634.263 8122833.0504 127.9375 127.9375 1.3508e-05 run35.mat 61 3 1046049 1078034 +2148337 2211741 63405 8123469.6305 8126641.2183 127.9375 127.9375 1.9032e-05 run35.mat 64.5523 3 1084398 1116101 +2313763 2375797 62035 8131740.9996 8134841.5345 127.9375 127.9375 9.0092e-06 run35.mat 71 3 1167114 1198133 +2388499 2451969 63471 8135478.8128 8138652.1589 127.9375 127.9375 1.9613e-05 run35.mat 71 3 1204484 1236221 +2553962 2618087 64126 8143750.8112 8146959.1538 127.9375 127.9375 0 run35.mat 81 3 1287219 1319283 +2630850 2694245 63396 8147596.366 8150766.663 127.9375 127.9375 2.705e-05 run35.mat 81 3 1325664 1357364 +2796242 2858136 61895 8155867.5291 8158962.8717 127.9375 127.9375 2.9142e-05 run35.mat 91 3 1408365 1439313 +2870920 2934412 63493 8159598.5172 8162775.0035 127.9375 127.9375 8.8023e-06 run35.mat 91 3 1445705 1477452 +3036381 3100317 63937 8167872.783 8171071.5049 127.9375 127.9375 3.7549e-05 run35.mat 101 3 1528439 1560409 +3113117 3176502 63386 8171710.366 8174880.3645 127.9375 127.9375 8.6172e-06 run35.mat 101 3 1566809 1598503 +3278481 3342435 63955 8179977.0608 8183175.6701 127.9375 127.9375 1.7279e-05 run35.mat 111 3 1649494 1681473 +3355242 3418622 63381 8183818.2459 8186985.8912 127.9375 127.9375 2.6655e-05 run35.mat 111 3 1687877 1719568 +3520601 3584756 64156 8192086.2602 8195292.4925 127.9375 127.9375 2.5739e-05 run35.mat 121 3 1770560 1802639 +3597569 3660947 63379 8195932.9825 8199102.3691 127.9375 127.9375 3.6676e-05 run35.mat 121.304 3 1809045 1840736 +3762919 3826882 63964 8204199.8428 8207398.6656 127.9375 127.9375 1.9065e-05 run35.mat 131 3 1891724 1923707 +3839727 3904909 65183 8208042.2377 8211298.8176 127.9375 127.9375 0 run35.mat 131.9063 3 1930130 1962723 +4006860 4071056 64197 8216398.8413 8219605.4621 127.9375 127.9375 4.4519e-05 run35.mat 141 3 2013700 2045799 +4083957 4149078 65122 8220253.1961 8223510.4568 127.9375 127.9375 2.6137e-05 run35.mat 142.5443 3 2052250 2084812 +4251040 4315210 64171 8228607.9012 8231816.2334 127.9375 127.9375 2.7119e-05 run35.mat 151 3 2135796 2167881 +4328072 4393225 65154 8232459.4106 8235716.2322 127.9375 127.9375 2.7099e-05 run35.mat 153.1768 3 2174313 2206891 +4495179 4559179 64001 8240813.4192 8244015.8496 127.9375 127.9375 1.8657e-05 run35.mat 161 3 2257870 2289872 +4572060 4637392 65333 8244659.0748 8247924.314 127.9375 127.9375 3.4997e-05 run35.mat 163.7257 3 2296312 2328980 +4739339 4803358 64020 8253022.904 8256222.9669 127.9375 127.9375 0 run35.mat 171 3 2379956 2411966 +4816268 4881376 65109 8256867.626 8260123.3062 127.9375 127.9375 8.3891e-06 run35.mat 174.3991 3 2418422 2450977 +4983338 5047336 63999 8265221.599 8268422.848 127.9375 127.9375 1.9054e-05 run35.mat 181 3 2501961 2533961 +5060241 5125571 65331 8269068.4033 8272332.0224 127.9375 127.9375 2.547e-05 run35.mat 181 3 2540414 2573080 +5227497 5291488 63992 8277431.3789 8280631.8152 127.9375 127.9375 8.5356e-06 run35.mat 191 3 2624045 2656042 +5304407 5369707 65301 8281277.6602 8284541.7418 127.9375 127.9375 1.7312e-05 run35.mat 191.1168 3 2662502 2695154 +5471637 5535633 63997 8289637.1646 8292838.3028 127.9375 127.9375 2.6001e-05 run35.mat 201 3 2746121 2778120 +5548551 5613629 65079 8293484.3332 8296738.3394 127.9375 127.9375 8.9782e-06 run35.mat 201.6736 3 2784579 2817120 +5715578 5781631 66054 8301834.744 8305138.1552 127.9375 127.9375 8.461e-06 run35.mat 211 3 2868096 2901124 +5794545 5859849 65305 8305783.4229 8309050.3071 127.9375 127.9375 2.6453e-05 run35.mat 212.6572 3 2907582 2940235 +5961783 6027644 65862 8314146.2695 8317438.1 127.9375 127.9375 2.5458e-05 run35.mat 221 3 2991204 3024136 +6040558 6392839 352282 8318084.0304 8335695.7192 127.9375 127.9375 2.7728e-05 run35.mat 221 3 3030594 3136690 +2 496475 496474 8378520.0314 8403341.0504 127.9375 127.9375 6.2081e-05 run36.mat 138.3641 2.2488 9221 250000 +515338 581456 66119 8404286.4735 8407591.7894 127.9375 127.9375 0 run36.mat 1.2546 1 250000 +599561 665900 66340 8408497.6994 8411814.9877 127.9375 127.9375 2.2972e-05 run36.mat 14.9053 1 250000 +681520 748427 66908 8412596.0585 8415940.0829 127.9375 127.9375 0 run36.mat 23.7851 1 250000 +764132 830979 66848 8416727.5815 8420069.4378 127.9375 127.9375 2.2798e-05 run36.mat 32.6553 1 250000 +846646 913506 66861 8420851.3301 8424195.1773 127.9375 127.9375 0 run36.mat 41.5253 1 250000 +929203 997878 68676 8424980.6337 8428411.8688 127.9375 127.9375 4.4382e-05 run36.mat 54.9263 1 250000 +1013568 1082247 68680 8429198.5941 8432630.8854 127.9375 127.9375 0 run36.mat 64.2722 1 250000 +1097916 1166622 68707 8433414.2144 8436851.2259 127.9375 127.9375 2.2181e-05 run36.mat 73.4464 1 250000 +1182277 1250974 68698 8437632.2563 8441068.4211 127.9375 127.9375 2.2184e-05 run36.mat 82.6244 1 250000 +1266661 1337204 70544 8441853.4065 8445381.5968 127.9375 127.9375 2.5203e-05 run36.mat 92.056 1 250000 +1352858 1421547 68690 8446162.506 8449598.4841 127.9375 127.9375 0 run36.mat 101.2318 1 250000 +1437211 1507776 70566 8450380.2963 8453907.5415 127.9375 127.9375 0 run36.mat 114.971 1 250000 +1523439 1594184 70746 8454692.7351 8458228.7246 127.9375 127.9375 2.872e-05 run36.mat 124.4249 1 250000 +1609852 1680269 70418 8459011.5302 8462534.6817 127.9375 127.9375 2.1642e-05 run36.mat 133.9104 1 250000 +1695911 1766708 70798 8463315.7472 8466855.578 127.9375 127.9375 8.969e-05 run36.mat 143.3918 1 250000 +1782358 1852958 70601 8467636.9313 8471168.7138 127.9375 127.9375 0 run36.mat 152.8673 1 250000 +1868557 1939136 70580 8471948.2399 8475478.0956 127.9375 127.9375 0 run36.mat 162.3264 1 250000 +1954772 2025368 70597 8476261.0997 8479787.9012 127.9375 127.9375 2.1587e-05 run36.mat 171.795 1 250000 +2041002 2113618 72617 8480571.4423 8484200.4822 127.9375 127.9375 4.1973e-05 run36.mat 181.5099 1 250000 +2129268 2201890 72623 8484984.7104 8488615.7805 127.9375 127.9375 4.3718e-05 run36.mat 191.2884 1 250000 +2217552 2290153 72602 8489398.8879 8493027.0568 127.9375 127.9375 0 run36.mat 205.1566 1 250000 +2305811 2378629 72819 8493812.6474 8497452.6452 127.9375 127.9375 0 run36.mat 214.9569 1 250000 +2394271 2647480 253210 8498234.9231 8510890.7713 127.9375 127.9375 1.2037e-05 run36.mat 221 1 250000 +2 713727 713726 9008248.8219 9043938.8182 127.9375 127.9375 1.2811e-05 run37.mat 181.4053 1.5399 11162 251162 +760995 832443 71449 9046302.2568 9049875.3987 127.9375 127.9375 2.133e-05 run37.mat 2.0005 4 251162 +864272 935186 70915 9051466.5351 9055009.5165 127.9375 127.9375 2.149e-05 run37.mat 13.8106 4 251162 +961311 1034053 72743 9056318.7261 9059956.0512 127.9375 127.9375 4.19e-05 run37.mat 24.9561 4 251162 +1060178 1134603 74426 9061262.075 9064981.7722 127.9375 127.9375 2.0476e-05 run37.mat 32.2533 4 251162 +1160730 1235197 74468 9066290.0502 9070012.0063 127.9375 127.9375 0 run37.mat 43.6455 4 251162 +1261271 1335590 74320 9071316.4204 9075032.9294 127.9375 127.9375 4.1011e-05 run37.mat 55.0815 4 251162 +1361668 1436125 74458 9076335.1805 9080060.33 127.9375 127.9375 0 run37.mat 62.4651 4 251162 +1462152 1538586 76435 9081362.2479 9085184.3336 127.9375 127.9375 2.16e-05 run37.mat 73.992 4 251162 +1564620 1641007 76388 9086482.5248 9090302.8425 127.9375 127.9375 1.995e-05 run37.mat 85.6461 4 251162 +1667157 1743251 76095 9091612.4234 9095415.9155 127.9375 127.9375 0 run37.mat 93.3621 4 251162 +1769409 1847747 78339 9096724.514 9100641.0426 127.9375 127.9375 1.9454e-05 run37.mat 105.15 4 251162 +1873893 1952084 78192 9101947.2312 9105856.7687 127.9375 127.9375 4.0604e-05 run37.mat 113.1265 4 251162 +1978165 2056444 78280 9107163.1805 9111074.3001 127.9375 127.9375 1.9468e-05 run37.mat 124.9841 4 251162 +2082600 2160879 78280 9112383.2855 9116296.3016 127.9375 127.9375 2.109e-05 run37.mat 132.9676 4 251162 +2186928 2265376 78449 9117601.0743 9121521.7902 127.9375 127.9375 0 run37.mat 144.8111 4 251162 +2291557 2371768 80212 9122832.6701 9126841.5447 127.9375 127.9375 1.8999e-05 run37.mat 153.0557 4 251162 +2397935 2478235 80301 9128152.1639 9132165.8257 127.9375 127.9375 0 run37.mat 165.0942 4 251162 +2504424 2584720 80297 9133476.1485 9137490.0931 127.9375 127.9375 3.7958e-05 run37.mat 173.4285 4 251162 +2610768 2691101 80334 9138792.3574 9142809.2177 127.9375 127.9375 1.897e-05 run37.mat 185.4367 4 251162 +2717349 2797556 80208 9144121.346 9148133.7444 127.9375 127.9375 1.9e-05 run37.mat 193.7699 4 251162 +2823720 2906106 82387 9149441.9875 9153559.5569 127.9375 127.9375 0 run37.mat 205.9166 4 251162 +2932265 3014765 82501 9154869.0408 9158994.1596 127.9375 127.9375 1.8472e-05 run37.mat 214.5691 4 251162 +3040938 3194932 153995 9160302.0359 9168004.1952 127.9375 127.9375 1.9792e-05 run37.mat 221 4 251162 +2 321376 321375 9224570.5396 9240643.2872 127.9375 127.9375 2.371e-05 run38.mat 212.468 3.9612 15866 176580 +423572 485202 61631 9245751.6697 9248833.4287 127.9375 127.9375 0 run38.mat 1 3 227681 258497 +511650 571403 59754 9250156.6471 9253142.3379 127.9375 127.9375 0 run38.mat 1 3 271721 301599 +639506 699867 60362 9256549.2261 9259566.7476 127.9375 127.9375 0 run38.mat 11.158 3 335652 365834 +752311 813995 61685 9262188.9041 9265272.878 127.9375 127.9375 2.4706e-05 run38.mat 21 3 392057 422900 +866446 928347 61902 9267896.2367 9270993.1056 127.9375 127.9375 0 run38.mat 34.1457 3 449127 480079 +980780 1042663 61884 9273612.3632 9276706.767 127.9375 127.9375 0 run38.mat 43.2184 3 506297 537240 +1094964 1158864 63901 9279321.2633 9282517.1657 127.9375 127.9375 7.3534e-05 run38.mat 52.5663 3 563391 595343 +1211138 1273014 61877 9285132.5207 9288224.4559 127.9375 127.9375 2.4629e-05 run38.mat 61.6365 3 621481 652420 +1325486 1389185 63700 9290848.7418 9294033.9637 127.9375 127.9375 2.3924e-05 run38.mat 71.0484 3 678657 710508 +1441474 1505347 63874 9296648.416 9299840.8491 127.9375 127.9375 4.7718e-05 run38.mat 81 3 736654 768592 +1557640 1621534 63895 9302457.3942 9305652.1508 127.9375 127.9375 2.7826e-05 run38.mat 94.549 3 794740 826688 +1673814 1737711 63898 9308264.5683 9311459.0346 127.9375 127.9375 4.9688e-05 run38.mat 103.938 3 852829 884779 +1789996 1853713 63718 9314073.5727 9317259.9555 127.9375 127.9375 0 run38.mat 113.2969 3 910922 942783 +1906002 1969912 63911 9319873.9861 9323070.1817 127.9375 127.9375 0 run38.mat 122.7203 3 968928 1000884 +2022230 2086106 63877 9325684.8885 9328880.344 127.9375 127.9375 0 run38.mat 132.1316 3 1027045 1058984 +2138400 2202257 63858 9331493.6811 9334686.4885 127.9375 127.9375 2.3865e-05 run38.mat 141.5292 3 1085132 1117062 +2254582 2318226 63645 9337304.3013 9340485.2134 127.9375 127.9375 4.9885e-05 run38.mat 151 3 1143226 1175049 +2370549 2434412 63864 9343104.0871 9346294.1013 127.9375 127.9375 2.3863e-05 run38.mat 161 3 1201212 1233145 +2486700 2550627 63928 9348910.1996 9352107.4752 127.9375 127.9375 5.1651e-05 run38.mat 174.402 3 1259290 1291254 +2602901 2668660 65760 9354722.0428 9358008.483 127.9375 127.9375 0 run38.mat 183.9716 3 1317393 1350274 +2720950 2784860 63911 9360622.9307 9363820.2281 127.9375 127.9375 0 run38.mat 193.4756 3 1376420 1408376 +2837116 2901035 63920 9366429.7829 9369627.5901 127.9375 127.9375 0 run38.mat 202.8987 3 1434506 1466466 +2953396 3019074 65679 9372244.8407 9375527.7793 127.9375 127.9375 0 run38.mat 212.5554 3 1492648 1525488 +3071423 3256769 185347 9378148.2427 9387413.0984 127.9375 127.9375 2.4667e-05 run38.mat 221 3 1551664 1626147 +2 463628 463627 9440758.8557 9463940.8452 127.9375 127.9375 3.2871e-06 run39.mat 145.9417 2.3177 13851 245675 +484314 550466 66153 9464977.8925 9468285.9163 127.9375 127.9375 2.3037e-05 run39.mat 1.791 1 256018 289095 +568630 635043 66414 9469190.8362 9472513.299 127.9375 127.9375 2.4859e-05 run39.mat 11 1 298178 331386 +650661 717785 67125 9473294.5356 9476650.5292 127.9375 127.9375 2.2703e-05 run39.mat 24.3269 1 339195 372759 +733425 800128 66704 9477430.9542 9480768.7423 127.9375 127.9375 0 run39.mat 33.2359 1 380579 413932 +815805 884530 68726 9481550.8635 9484987.626 127.9375 127.9375 0 run39.mat 42.3265 1 421771 456135 +900205 967029 66825 9485771.5024 9489111.0042 127.9375 127.9375 0 run39.mat 51.2507 1 463973 497386 +982715 1051388 68674 9489897.2316 9493328.3191 127.9375 127.9375 0 run39.mat 64.8085 1 505230 539568 +1067057 1135753 68697 9494113.6932 9497548.388 127.9375 127.9375 2.2184e-05 run39.mat 73.9928 1 547403 581752 +1151422 1220124 68703 9498332.0461 9501767.9302 127.9375 127.9375 2.2182e-05 run39.mat 83.1674 1 589587 623939 +1235797 1304395 68599 9502550.3014 9505981.5883 127.9375 127.9375 2.2216e-05 run39.mat 92.3064 1 631776 666077 +1319976 1388647 68672 9506760.8748 9510195.3103 127.9375 127.9375 2.2192e-05 run39.mat 101.5 1 673868 708205 +1404309 1475060 70752 9510975.2002 9514514.6064 127.9375 127.9375 0 run39.mat 115.1845 1 716036 751413 +1490733 1561275 70543 9515300.0265 9518824.0129 127.9375 127.9375 0 run39.mat 124.6887 1 759250 794523 +1576923 1647506 70584 9519608.1896 9523137.2345 127.9375 127.9375 0 run39.mat 134.1638 1 802347 837640 +1663151 1733918 70768 9523918.1946 9527458.3987 127.9375 127.9375 8.7933e-05 run39.mat 143.6175 1 845463 880848 +1749564 1820139 70576 9528239.0976 9531768.8274 127.9375 127.9375 4.3187e-05 run39.mat 153.0835 1 888671 923960 +1835779 1906375 70597 9532551.0706 9536082.4705 127.9375 127.9375 6.4761e-05 run39.mat 162.578 1 931780 967080 +1921987 1994595 72609 9536861.276 9540493.6472 127.9375 127.9375 0 run39.mat 172.2589 1 974886 1011192 +2010234 2080821 70588 9541273.8065 9544805.3015 127.9375 127.9375 2.159e-05 run39.mat 181.7999 1 1019011 1054307 +2096459 2169265 72807 9545585.1105 9549225.2529 127.9375 127.9375 2.0932e-05 run39.mat 191.5563 1 1062126 1098530 +2184919 2257534 72616 9550008.9901 9553638.3767 127.9375 127.9375 0 run39.mat 201.3249 1 1106358 1142667 +2273202 2345802 72601 9554421.2802 9558052.4117 127.9375 127.9375 2.0991e-05 run39.mat 215.2159 1 1150502 1186803 +2361436 2508345 146910 9558833.945 9566180.2644 127.9375 127.9375 1.1238e-05 run39.mat 221 1 1194621 1241389 +2 274692 274691 11967977.2072 11981710.8992 127.9375 127.9375 5.548e-06 run4.mat -1 -1 26055 163398 +376443 454391 77949 11986798.5514 11990696.4165 127.9375 127.9375 1.9551e-05 run4.mat -1 -1 214276 253252 +556283 634383 78101 11995790.2688 11999693.4053 127.9375 127.9375 0 run4.mat -1 -1 304200 343252 +736163 814422 78260 12004783.528 12008698.5772 127.9375 127.9375 1.9473e-05 run4.mat -1 -1 394144 433275 +916222 994197 77976 12013786.404 12017687.4569 127.9375 127.9375 1.9544e-05 run4.mat -1 -1 484178 523166 +1096082 1174204 78123 12022782.6918 12026686.1266 127.9375 127.9375 2.1133e-05 run4.mat -1 -1 574111 613174 +1275981 1354319 78339 12031774.7648 12035691.6308 127.9375 127.9375 0 run4.mat -1 -1 664065 703235 +1456062 1536228 80167 12040778.0925 12044788.4445 127.9375 127.9375 2.0594e-05 run4.mat -1 -1 754109 794194 +1638001 1716095 78095 12049877.2066 12053781.1856 127.9375 127.9375 1.9514e-05 run4.mat -1 -1 845083 884131 +1817861 1896121 78261 12058869.8434 12062783.733 127.9375 127.9375 2.1096e-05 run4.mat -1 -1 935017 974148 +1997921 2075969 78049 12067873.8883 12071776.7224 127.9375 127.9375 0 run4.mat -1 -1 1025051 1064076 +2177760 2256069 78310 12076864.9427 12080780.2461 127.9375 127.9375 1.9461e-05 run4.mat -1 -1 1114974 1154130 +2357820 2437965 80146 12085869.5136 12089875.9742 127.9375 127.9375 3.9614e-05 run4.mat -1 -1 1205008 1245082 +2539740 2618051 78312 12094962.5358 12098879.691 127.9375 127.9375 1.946e-05 run4.mat -1 -1 1295972 1335129 +2719839 2798305 78467 12103971.3369 12107892.8249 127.9375 127.9375 0 run4.mat -1 -1 1386026 1425260 +2900078 2978398 78321 12112981.951 12116897.4601 127.9375 127.9375 7.9453e-05 run4.mat -1 -1 1476149 1515311 +3080158 3158456 78299 12121987.7773 12125900.657 127.9375 127.9375 0 run4.mat -1 -1 1566193 1605344 +3260238 3338521 78284 12130990.6782 12134903.386 127.9375 127.9375 6.0024e-05 run4.mat -1 -1 1656237 1695380 +3440317 3518837 78521 12139993.4643 12143920.347 127.9375 127.9375 1.9408e-05 run4.mat -1 -1 1746280 1785542 +3620618 3698900 78283 12149008.5622 12152923.6296 127.9375 127.9375 3.8935e-05 run4.mat -1 -1 1836435 1875577 +3800656 3878859 78204 12158011.2578 12161921.5332 127.9375 127.9375 1.9487e-05 run4.mat -1 -1 1926457 1965561 +3980756 4059017 78262 12167016.7007 12170929.618 127.9375 127.9375 1.9473e-05 run4.mat -1 -1 2016511 2055644 +4160796 4239115 78320 12176020.1909 12179935.1627 127.9375 127.9375 0 run4.mat -1 -1 2106535 2145697 +4340895 4419382 78488 12185025.4345 12188948.0504 127.9375 127.9375 4.0451e-05 run4.mat -1 -1 2196589 2235834 +4521155 4599435 78281 12194036.5336 12197951.3747 127.9375 127.9375 0 run4.mat -1 -1 2286723 2325864 +4701195 4779531 78337 12203038.1349 12206955.9577 127.9375 127.9375 0 run4.mat -1 -1 2376747 2415916 +4881274 4959553 78280 12212042.3805 12215958.4032 127.9375 127.9375 1.9468e-05 run4.mat -1 -1 2466790 2505931 +5061355 5139890 78536 12221048.4737 12224973.7983 127.9375 127.9375 0 run4.mat -1 -1 2556835 2596104 +5241674 5319998 78325 12230063.4694 12233978.7376 127.9375 127.9375 1.9457e-05 run4.mat -1 -1 2646998 2686162 +5421754 5500035 78282 12239066.9562 12242981.8646 127.9375 127.9375 1.9468e-05 run4.mat -1 -1 2737042 2776184 +5601794 5680125 78332 12248070.0776 12251984.6767 127.9375 127.9375 5.9987e-05 run4.mat -1 -1 2827066 2866233 +5781893 5860415 78523 12257073.7289 12261000.5052 127.9375 127.9375 0 run4.mat -1 -1 2917119 2956382 +5962193 6040441 78249 12266089.7462 12270003.1536 127.9375 127.9375 1.9476e-05 run4.mat -1 -1 3007273 3046399 +6142253 6220519 78267 12275091.5325 12279006.3862 127.9375 127.9375 0 run4.mat -1 -1 3097307 3136442 +6322311 6400578 78268 12284097.3057 12288009.8289 127.9375 127.9375 3.8942e-05 run4.mat -1 -1 3187340 3226476 +6502331 6580567 78237 12293096.0802 12297010.7039 127.9375 127.9375 0 run4.mat -1 -1 3277354 3316474 +6682472 6760671 78200 12302103.8333 12306016.2855 127.9375 127.9375 4.06e-05 run4.mat -1 -1 3367429 3406530 +6862551 6941072 78522 12311109.4949 12315036.3156 127.9375 127.9375 3.8816e-05 run4.mat -1 -1 3457472 3496734 +7042871 7121195 78325 12320126.1187 12324042.0764 127.9375 127.9375 0 run4.mat -1 -1 3547636 3586800 +7222950 7301216 78267 12329129.187 12333043.6989 127.9375 127.9375 3.8943e-05 run4.mat -1 -1 3637679 3676814 +7402970 7481477 78508 12338129.4598 12342055.9137 127.9375 127.9375 2.1029e-05 run4.mat -1 -1 3727693 3766949 +7583230 7661402 78173 12347145.7728 12351053.3452 127.9375 127.9375 0 run4.mat -1 -1 3817828 3856915 +7763310 7841806 78497 12356147.6599 12360073.9337 127.9375 127.9375 3.8829e-05 run4.mat -1 -1 3907871 3947121 +7943569 8021901 78333 12365159.924 12369077.8261 127.9375 127.9375 3.891e-05 run4.mat -1 -1 3998005 4037173 +8108815 8270126 161312 12373424.3272 12381490.3544 127.9375 127.9375 9.4474e-06 run4.mat -1 -1 4080632 4161036 +2 387335 387334 10283186.5151 10302554.1755 127.9375 127.9375 2.8197e-05 run40.mat 7.6307 2 37897 231598 +433794 508654 74861 10304876.5947 10308620.6535 127.9375 127.9375 4.2411e-05 run40.mat 2.5549 2 254829 292260 +540741 617694 76954 10310224.0029 10314074.474 127.9375 127.9375 0 run40.mat 14.9765 2 308304 346782 +644143 720337 76195 10315395.9246 10319207.3229 127.9375 127.9375 2.0001e-05 run40.mat 22.7644 2 360008 398107 +746651 825230 78580 10320522.134 10324449.1609 127.9375 127.9375 0 run40.mat 34.6086 2 411264 450556 +851526 929705 78180 10325763.8464 10329674.8119 127.9375 127.9375 0 run40.mat 42.631 2 463704 502795 +955902 1034330 78429 10330984.6644 10334905.4573 127.9375 127.9375 1.9431e-05 run40.mat 54.4957 2 515894 555110 +1060608 1140856 80249 10336220.17 10340233.9383 127.9375 127.9375 1.8991e-05 run40.mat 62.7423 2 568250 608375 +1167090 1247400 80311 10341545.3792 10345559.3445 127.9375 127.9375 0 run40.mat 74.7883 2 621493 661650 +1273789 1354012 80224 10346878.8611 10350887.998 127.9375 127.9375 1.8996e-05 run40.mat 83.1336 2 674845 714958 +1380421 1462219 81799 10352208.9696 10356299.4759 127.9375 127.9375 0 run40.mat 95.3208 2 728163 769064 +1488734 1570987 82254 10357625.9148 10361738.6364 127.9375 127.9375 0 run40.mat 103.9265 2 782322 823450 +1597494 1679574 82081 10363063.3828 10367167.4663 127.9375 127.9375 0 run40.mat 112.5422 2 836704 877746 +1705882 1787949 82068 10368484.8919 10372587.0924 127.9375 127.9375 1.857e-05 run40.mat 124.7887 2 890901 931936 +1814688 1898518 83831 10373924.0684 10378114.7374 127.9375 127.9375 1.9694e-05 run40.mat 133.5743 2 945306 987223 +1924990 2008757 83768 10379439.5489 10383627.2172 127.9375 127.9375 0 run40.mat 146.0019 2 1000459 1042345 +2035591 2119547 83957 10384972.0645 10389168.7326 127.9375 127.9375 0 run40.mat 154.896 2 1055762 1097742 +2146534 2232092 85559 10390517.617 10394793.801 127.9375 127.9375 0 run40.mat 163.947 2 1111236 1154017 +2258921 2344710 85790 10396137.295 10400425.5639 127.9375 127.9375 0 run40.mat 173.0833 2 1167432 1210328 +2371633 2457338 85706 10401772.9389 10406058.7824 127.9375 127.9375 1.7781e-05 run40.mat 185.7137 2 1223791 1266645 +2484272 2570369 86098 10407405.8031 10411706.9613 127.9375 127.9375 0 run40.mat 194.8782 2 1280112 1323163 +2598859 2857829 258971 10413133.7533 10426084.2776 127.9375 127.9375 1.1769e-05 run40.mat 201 2 1337409 1466914 +2 930522 930521 10681011.4406 10727543.281 127.9375 127.9375 1.01e-05 run41.mat 196.6823 2 6712 250000 +977150 1051877 74728 10729874.3339 10733609.5777 127.9375 127.9375 2.0394e-05 run41.mat 3.848 2 250000 +1083808 1160911 77104 10735207.509 10739062.8964 127.9375 127.9375 0 run41.mat 12.356 2 250000 +1187304 1263767 76464 10740381.8361 10744203.0929 127.9375 127.9375 1.9931e-05 run41.mat 23.9361 2 250000 +1290039 1368491 78453 10745518.4934 10749441.8662 127.9375 127.9375 1.9425e-05 run41.mat 32.019 2 250000 +1394718 1473002 78285 10750751.4639 10754667.1649 127.9375 127.9375 2.2711e-05 run41.mat 43.8876 2 250000 +1499262 1577650 78389 10755978.9869 10759898.5426 127.9375 127.9375 2.2681e-05 run41.mat 55.732 2 250000 +1603882 1684263 80382 10761209.2427 10765230.2041 127.9375 127.9375 0 run41.mat 63.9691 2 250000 +1710420 1790712 80293 10766536.8687 10770552.7416 127.9375 127.9375 0 run41.mat 72.2524 2 250000 +1817105 1897171 80067 10771872.1599 10775875.5209 127.9375 127.9375 1.9034e-05 run41.mat 84.3415 2 250000 +1923589 2003655 80067 10777197.4082 10781200.7023 127.9375 127.9375 3.8067e-05 run41.mat 92.6533 2 250000 +2030036 2110137 80102 10782520.4483 10786525.029 127.9375 127.9375 7.7687e-05 run41.mat 104.7102 2 250000 +2136492 2218689 82198 10787843.9177 10791952.2783 127.9375 127.9375 0 run41.mat 113.2253 2 250000 +2245034 2327109 82076 10793268.4272 10797373.6212 127.9375 127.9375 0 run41.mat 125.4729 2 250000 +2353582 2437546 83965 10798695.4178 10802895.3168 127.9375 127.9375 1.815e-05 run41.mat 134.2262 2 250000 +2464025 2548140 84116 10804220.2634 10808425.0895 127.9375 127.9375 0 run41.mat 143.1022 2 250000 +2574804 2660896 86093 10809758.1199 10814063.9272 127.9375 127.9375 5.3104e-05 run41.mat 155.697 2 250000 +2687627 2773274 85648 10815398.6595 10819681.0208 127.9375 127.9375 3.5587e-05 run41.mat 164.8104 2 250000 +2800182 2883909 83728 10821025.9345 10825213.2056 127.9375 127.9375 1.8201e-05 run41.mat 173.7791 2 250000 +2910770 2996811 86042 10826556.5402 10830857.7638 127.9375 127.9375 0 run41.mat 182.8863 2 250000 +3023701 3109946 86246 10832202.267 10836514.8942 127.9375 127.9375 1.767e-05 run41.mat 195.5782 2 250000 +3137468 3337211 199744 10837892.345 10847876.5509 127.9375 127.9375 2.2889e-05 run41.mat 201 2 250000 +2 120797 120796 11367749.8488 11373790.2784 127.9375 127.9375 1.4196e-05 run42.mat 1 4 3890 34086 +165273 239293 74021 11376012.6726 11379713.6074 127.9375 127.9375 2.351e-05 run42.mat 2.8054 4 45206 63712 +270134 343953 73820 11381258.0704 11384945.9925 127.9375 127.9375 2.2198e-05 run42.mat 14.8016 4 71422 89877 +369574 444632 75059 11386227.4295 11389980.3517 127.9375 127.9375 4.6369e-05 run42.mat 22.1488 4 96284 115048 +470384 545158 74775 11391270.0623 11395007.05 127.9375 127.9375 2.4802e-05 run42.mat 33.5769 4 121487 140182 +571030 647756 76727 11396301.0071 11400136.3191 127.9375 127.9375 2.1687e-05 run42.mat 45.1505 4 146650 165832 +673601 748310 74710 11401431.9277 11405165.3323 127.9375 127.9375 2.3293e-05 run42.mat 52.6274 4 172293 190971 +774103 850646 76544 11406456.3962 11410281.5928 127.9375 127.9375 3.0867e-05 run42.mat 64.2314 4 197420 216556 +876421 953228 76808 11411573.6714 11415412.4846 127.9375 127.9375 7.4422e-06 run42.mat 71.9552 4 223001 242204 +979040 1055907 76868 11416704.1659 11420545.3816 127.9375 127.9375 2.2473e-05 run42.mat 83.5987 4 248656 267874 +1081442 1158029 76588 11421822.9412 11425651.8576 127.9375 127.9375 0 run42.mat 95.196 4 274258 293406 +1183850 1262607 78758 11426941.5825 11430880.9649 127.9375 127.9375 2.145e-05 run42.mat 103.1146 4 299861 319551 +1288143 1364735 76593 11432156.3273 11435986.5771 127.9375 127.9375 7.4631e-06 run42.mat 114.7683 4 325936 345085 +1390572 1469523 78952 11437279.0992 11441227.4687 127.9375 127.9375 2.8799e-05 run42.mat 122.7212 4 351544 371283 +1495058 1575348 80291 11442503.4248 11446517.8041 127.9375 127.9375 0 run42.mat 134.5614 4 377667 397740 +1601179 1680190 79012 11447810.3949 11451760.4195 127.9375 127.9375 2.1381e-05 run42.mat 142.7307 4 404198 423952 +1705677 1786180 80504 11453034.5078 11457059.9158 127.9375 127.9375 1.4517e-05 run42.mat 154.6798 4 430324 450451 +1812005 1893011 81007 11458351.7842 11462402.7947 127.9375 127.9375 6.021e-06 run42.mat 163.004 4 456907 477159 +1918287 1999412 81126 11463666.776 11467722.0067 127.9375 127.9375 0 run42.mat 175.0571 4 483478 503760 +2024691 2107718 83028 11468987.1838 11473137.4634 127.9375 127.9375 1.4576e-05 run42.mat 183.5531 4 510080 530839 +2133282 2214268 80987 11474414.894 11478465.9023 127.9375 127.9375 1.19e-05 run42.mat 195.6362 4 537229 557477 +2239747 2320743 80997 11479738.1554 11483789.7478 127.9375 127.9375 5.9256e-06 run42.mat 203.9905 4 563847 584097 +2346258 2429018 82761 11485065.5832 11489202.6769 127.9375 127.9375 0 run42.mat 212.5125 4 590476 611167 +2454694 2879432 424739 11490486.8908 11511720.9647 127.9375 127.9375 1.6088e-05 run42.mat 221 4 617586 701159 +2 291816 291815 11546272.6448 11560858.409 127.9375 127.9375 1.14e-05 run43.mat 216.8192 3.981 19285 92222 +393841 453818 59978 11565959.9967 11568957.5441 127.9375 127.9375 9.5305e-06 run43.mat 1 3 117728 132723 +554718 616101 61384 11574002.9488 11577074.4771 127.9375 127.9375 1.9451e-05 run43.mat 1 3 157950 173296 +718160 780197 62038 11582176.7557 11585277.8036 127.9375 127.9375 1.8428e-05 run43.mat 11 3 198812 214322 +820728 884261 63534 11587304.8523 11590480.9865 127.9375 127.9375 1.7994e-05 run43.mat 11 3 224455 240339 +986501 1048320 61820 11595592.7551 11598687.0357 127.9375 127.9375 9.8625e-06 run43.mat 21 3 265900 281356 +1060945 1124717 63773 11599315.3128 11602505.0845 127.9375 127.9375 8.9633e-06 run43.mat 21 3 284512 300456 +1226739 1288569 61831 11607604.8262 11610699.4737 127.9375 127.9375 3.5746e-05 run43.mat 31 3 325962 341421 +1301240 1362958 61719 11611333.7276 11614418.1183 127.9375 127.9375 2.7784e-05 run43.mat 31 3 344588 360019 +1464958 1526853 61896 11619518.0308 11622612.742 127.9375 127.9375 1.9702e-05 run43.mat 41 3 385520 400994 +1539621 1605086 65466 11623250.237 11626524.8449 127.9375 127.9375 1.8045e-05 run43.mat 41 3 404186 420553 +1707058 1771054 63997 11631624.0854 11634823.7685 127.9375 127.9375 1.7467e-05 run43.mat 51 3 446047 462047 +1783875 1845352 61478 11635463.0661 11638537.612 127.9375 127.9375 8.8846e-06 run43.mat 51 3 465253 480623 +1947357 2009267 61911 11643638.8299 11646734.4359 127.9375 127.9375 1.7645e-05 run43.mat 61 3 506125 521603 +2022009 2085412 63404 11647371.8061 11650540.5901 127.9375 127.9375 1.783e-05 run43.mat 61 3 524789 540640 +2187437 2251571 64135 11655641.5643 11658847.7882 127.9375 127.9375 1.8618e-05 run43.mat 71 3 566148 582181 +2264342 2327741 63400 11659487.6148 11662659.1483 127.9375 127.9375 8.8152e-06 run43.mat 71.2278 3 585374 601225 +2429739 2493882 64144 11667759.1825 11670963.8438 127.9375 127.9375 0 run43.mat 81 3 626725 642762 +2506666 2579891 73226 11671603.2474 11675265.2775 127.9375 127.9375 7.4592e-06 run43.mat 82.8729 3 645958 664265 +2681896 2744026 62131 11680366.0969 11683471.7619 127.9375 127.9375 8.9953e-06 run43.mat 91 3 689767 705300 +2756818 2820204 63387 11684114.8186 11687281.3266 127.9375 127.9375 0 run43.mat 93.2161 3 708498 724346 +2922196 2986312 64117 11692379.7511 11695587.9558 127.9375 127.9375 2.7537e-05 run43.mat 101 3 749845 765875 +2999074 3062470 63397 11696226.9571 11699396.68 127.9375 127.9375 8.6157e-06 run43.mat 103.5575 3 769066 784915 +3164432 3228583 64152 11704494.208 11707700.7413 127.9375 127.9375 1.782e-05 run43.mat 111 3 810406 826445 +3241388 3304716 63329 11708340.364 11711508.171 127.9375 127.9375 1.7851e-05 run43.mat 113.9302 3 829647 845479 +3406695 3470622 63928 11716607.1897 11719803.5473 127.9375 127.9375 1.7684e-05 run43.mat 121 3 870975 886958 +3483431 3546810 63380 11720444.2897 11723611.613 127.9375 127.9375 5.4313e-05 run43.mat 124.2547 3 890160 906006 +3648752 3712925 64174 11728708.6947 11731918.13 127.9375 127.9375 8.5114e-06 run43.mat 131 3 931492 947536 +3725811 3789113 63303 11732564.4229 11735726.6136 127.9375 127.9375 8.8287e-06 run43.mat 134.5625 3 950758 966584 +3891054 3955172 64119 11740826.0983 11744029.8334 127.9375 127.9375 0 run43.mat 141 3 992070 1008101 +3967960 4033294 65335 11744669.4103 11747937 127.9375 127.9375 2.6635e-05 run43.mat 141 3 1011298 1027631 +4135235 4199249 64015 11753033.3957 11756234.9321 127.9375 127.9375 8.7305e-06 run43.mat 151 3 1053118 1069122 +4212137 4277474 65338 11756877.5383 11760145.6717 127.9375 127.9375 8.7486e-06 run43.mat 151.1974 3 1072344 1088679 +4379413 4443418 64006 11765244.6116 11768442.5395 127.9375 127.9375 1.8853e-05 run43.mat 161 3 1114166 1130168 +4456308 4521413 65106 11769089.3249 11772342.4171 127.9375 127.9375 8.3895e-06 run43.mat 161.806 3 1133390 1149667 +4623373 4687549 64177 11777441.7925 11780650.76 127.9375 127.9375 1.7814e-05 run43.mat 171 3 1175158 1191203 +4700432 4765568 65137 11781294.2043 11784552.1449 127.9375 127.9375 8.3855e-06 run43.mat 172.4466 3 1194424 1210708 +4867533 4931739 64207 11789650.1246 11792860.8705 127.9375 127.9375 3.5413e-05 run43.mat 181 3 1236201 1252253 +4944621 5009780 65160 11793504.671 11796761.2455 127.9375 127.9375 8.5771e-06 run43.mat 183.0524 3 1255474 1271764 +5111713 5175929 64217 11801858.6804 11805069.8407 127.9375 127.9375 1.7604e-05 run43.mat 191 3 1297248 1313303 +5188840 5253949 65110 11805714.6332 11808969.876 127.9375 127.9375 8.389e-06 run43.mat 193.731 3 1316531 1332809 +5355871 5419871 64001 11814068.5013 11817267.186 127.9375 127.9375 9.3284e-06 run43.mat 201 3 1358290 1374291 +5432789 5498149 65361 11817912.5222 11821182.0106 127.9375 127.9375 2.6042e-05 run43.mat 204.3538 3 1377521 1393862 +5600092 5666148 66057 11826278.5253 11829582.6672 127.9375 127.9375 8.8453e-06 run43.mat 211 3 1419349 1435863 +5679066 5744342 65277 11830227.3664 11833490.0108 127.9375 127.9375 1.7903e-05 run43.mat 211 3 1439093 1455413 +5846291 5912353 66063 11838587.8789 11841891.1808 127.9375 127.9375 0 run43.mat 221 3 1480901 1497417 +5925274 6238239 312966 11842538.3112 11858185.2795 127.9375 127.9375 1.315e-05 run43.mat 221 3 1500648 1577617 +2 242206 242205 11999931.4277 12012039.5941 127.9375 127.9375 1.8408e-05 run44.mat 194.7899 3.1191 32477 72835 +286958 359086 72129 12014277.723 12017882.1247 127.9375 127.9375 0 run44.mat 4.5957 4 80294 92316 +390029 463685 73657 12019429.2858 12023111.5144 127.9375 127.9375 3.1386e-05 run44.mat 12.4356 4 97474 109750 +489318 562332 73015 12024395.2029 12028045.2228 127.9375 127.9375 2.2964e-05 run44.mat 23.6325 4 114022 126192 +588081 662882 74802 12029333.007 12033071.7867 127.9375 127.9375 3.0057e-05 run44.mat 34.9774 4 130484 142951 +688658 763369 74712 12034361.006 12038096.7251 127.9375 127.9375 2.5503e-05 run44.mat 42.3329 4 147247 159699 +789176 863712 74537 12039389.0947 12043115.6866 127.9375 127.9375 1.5167e-05 run44.mat 53.7264 4 164000 176424 +889511 964712 75202 12044404.2406 12048163.3873 127.9375 127.9375 2.4154e-05 run44.mat 65.2021 4 180724 193258 +990045 1066845 76801 12049431.3072 12053271.434 127.9375 127.9375 1.5547e-05 run44.mat 72.7881 4 197481 210281 +1092317 1169240 76924 12054544.3292 12058390.626 127.9375 127.9375 0 run44.mat 84.3679 4 214526 227348 +1194780 1271360 76581 12059669.6712 12063498.6631 127.9375 127.9375 2.1728e-05 run44.mat 92.043 4 231605 244368 +1297205 1376085 78881 12064788.1698 12068734.8269 127.9375 127.9375 7.4073e-06 run44.mat 103.9098 4 248676 261823 +1401630 1480123 78494 12070010.8654 12073937.5481 127.9375 127.9375 2.9129e-05 run44.mat 115.7049 4 266081 279164 +1505987 1584975 78989 12075227.4555 12079179.5467 127.9375 127.9375 1.4152e-05 run44.mat 123.6969 4 283475 296639 +1610476 1688927 78452 12080452.1397 12084376.4761 127.9375 127.9375 2.1696e-05 run44.mat 135.5346 4 300890 313966 +1714781 1793450 78670 12085666.4937 12089602.7585 127.9375 127.9375 3.5199e-05 run44.mat 143.5852 4 318275 331387 +1819275 1900102 80828 12090893.0786 12094934.9685 127.9375 127.9375 3.6145e-05 run44.mat 155.5541 4 335692 349163 +1925551 2006437 80887 12096205.8901 12100252.2105 127.9375 127.9375 5.9976e-06 run44.mat 163.8811 4 353405 366887 +2031847 2113072 81226 12101521.5705 12105583.389 127.9375 127.9375 2.8586e-06 run44.mat 175.8703 4 371122 384659 +2138425 2219395 80971 12106851.3009 12110899.382 127.9375 127.9375 1.4914e-05 run44.mat 184.236 4 388886 402381 +2244807 2326007 81201 12112171.6391 12116228.9198 127.9375 127.9375 5.751e-06 run44.mat 192.588 4 406617 420151 +2351454 2432451 80998 12117504.3271 12121551.4294 127.9375 127.9375 1.1611e-05 run44.mat 204.59 4 424392 437892 +2457938 2540939 83002 12122827.138 12126978.1501 127.9375 127.9375 1.1721e-05 run44.mat 213.1453 4 442140 455974 +2566355 2662927 96573 12128247.3894 12133075.8907 127.9375 127.9375 7.3877e-06 run44.mat 221 4 460210 476306 +2 314480 314479 12175274.6452 12191002.9254 127.9375 127.9375 1.8347e-05 run45.mat 215.1596 3.9735 7006 59442 +416524 478555 62032 12196105.4841 12199207.9146 127.9375 127.9375 4.8942e-05 run45.mat 1 3 76450 86788 +580615 642407 61793 12204310.1357 12207402.4451 127.9375 127.9375 1.0073e-05 run45.mat 1 3 103799 114099 +655385 716576 61192 12208049.6328 12211109.4601 127.9375 127.9375 1.9097e-05 run45.mat 4.3443 3 116261 126460 +818648 880591 61944 12216213.9 12219309.9006 127.9375 127.9375 1.784e-05 run45.mat 11 3 143473 153797 +921113 982781 61669 12221336.5939 12224420.4916 127.9375 127.9375 2.7394e-05 run45.mat 13.6609 3 160552 170830 +1084848 1146857 62010 12229523.0383 12232622.3788 127.9375 127.9375 1.8436e-05 run45.mat 21 3 187842 198177 +1159482 1221180 61699 12233254.669 12236340.9504 127.9375 127.9375 1.8941e-05 run45.mat 23.4423 3 200282 210565 +1323247 1387146 63900 12241443.29 12244636.1513 127.9375 127.9375 0 run45.mat 31 3 227577 238227 +1399787 1461514 61728 12245268.1596 12248355.825 127.9375 127.9375 2.1606e-05 run45.mat 33.4596 3 230335 230335 +1563528 1625393 61866 12253456.8896 12256549.2646 127.9375 127.9375 4.4554e-05 run45.mat 41 3 230335 230335 +1638186 1699714 61529 12257190.8683 12260265.1905 127.9375 127.9375 4.6243e-05 run45.mat 43.2042 3 230335 230335 +1801727 1865678 63952 12265367.6922 12268564.6463 127.9375 127.9375 2.8602e-05 run45.mat 51 3 230335 230335 +1878462 1941826 63365 12269202.8071 12272374.1285 127.9375 127.9375 8.62e-06 run45.mat 53.4672 3 230335 230335 +2043845 2105920 62076 12277471.3668 12280578.8535 127.9375 127.9375 0 run45.mat 61 3 230335 230335 +2118691 2182170 63480 12281215.5629 12284389.3109 127.9375 127.9375 0 run45.mat 63.4883 3 230335 230335 +2284166 2348102 63937 12289490.322 12292684.9233 127.9375 127.9375 2.3641e-05 run45.mat 71 3 230335 230335 +2360890 2424270 63381 12293324.5001 12296496.0439 127.9375 127.9375 1.8438e-05 run45.mat 73.858 3 230335 230335 +2526245 2590208 63964 12301594.1844 12304792.0123 127.9375 127.9375 4.4682e-05 run45.mat 81 3 230335 230335 +2602995 2666347 63353 12305429.9602 12308598.3887 127.9375 127.9375 8.8218e-06 run45.mat 84.1903 3 230335 230335 +2768366 2832273 63908 12313699.5599 12316893.9377 127.9375 127.9375 0 run45.mat 91 3 230335 230335 +2845085 2908479 63395 12317535.4365 12320707.8071 127.9375 127.9375 1.9035e-05 run45.mat 94.4835 3 230335 230335 +3010464 3074617 64154 12325806.8724 12329013.1124 127.9375 127.9375 2.574e-05 run45.mat 101 3 230335 230335 +3087402 3150821 63420 12329653.7834 12332822.8895 127.9375 127.9375 0 run45.mat 101 3 230335 230335 +3252785 3316739 63955 12337921.9476 12341119.6157 127.9375 127.9375 0 run45.mat 111 3 230335 230335 +3329566 3392887 63322 12341761.7255 12344926.7737 127.9375 127.9375 1.8254e-05 run45.mat 111 3 230335 230335 +3494864 3558836 63973 12350025.4701 12353225.369 127.9375 127.9375 8.5381e-06 run45.mat 121 3 230335 230335 +3571671 3637084 65414 12353868.2048 12357137.7582 127.9375 127.9375 3.5924e-05 run45.mat 121.1478 3 230335 230335 +3739043 3803034 63992 12362235.05 12365434.5622 127.9375 127.9375 2.6003e-05 run45.mat 131 3 230335 230335 +3815894 3881245 65352 12366078.3833 12369343.6164 127.9375 127.9375 8.3579e-06 run45.mat 131.7632 3 230335 230335 +3983179 4047179 64001 12374442.0623 12377642.2586 127.9375 127.9375 0 run45.mat 141 3 230335 230335 +4060094 4125403 65310 12378287.0528 12381553.3302 127.9375 127.9375 0 run45.mat 142.4156 3 230335 230335 +4227343 4291544 64202 12386650.1548 12389860.5157 127.9375 127.9375 9.2992e-06 run45.mat 151 3 230335 230335 +4304447 4369543 65097 12390505.052 12393762.4606 127.9375 127.9375 2.6147e-05 run45.mat 153.0624 3 230335 230335 +4471502 4535661 64160 12398856.8682 12402066.7084 127.9375 127.9375 0 run45.mat 161 3 230335 230335 +4548538 4613691 65154 12402710.138 12405967.2821 127.9375 127.9375 1.7351e-05 run45.mat 163.6635 3 230335 230335 +4715622 4779788 64167 12411064.2017 12414271.3379 127.9375 127.9375 8.5123e-06 run45.mat 171 3 230335 230335 +4792680 4857805 65126 12414917.076 12418173.587 127.9375 127.9375 2.555e-05 run45.mat 174.3362 3 230335 230335 +4959735 5023948 64214 12423271.1105 12426481.364 127.9375 127.9375 1.088e-05 run45.mat 181 3 230335 230335 +5036848 5101973 65126 12427126.6249 12430381.799 127.9375 127.9375 8.9717e-06 run45.mat 181 3 230335 230335 +5203921 5269951 66031 12435480.2747 12438781.0151 127.9375 127.9375 3.6358e-05 run45.mat 191 3 230335 230335 +5282838 5348198 65361 12439426.4696 12442694.1588 127.9375 127.9375 8.5507e-06 run45.mat 191.3208 3 230335 230335 +5450133 5514137 64005 12447791.5798 12450988.8423 127.9375 127.9375 0 run45.mat 201 3 230335 230335 +5527048 5592165 65118 12451638.3686 12454892.1291 127.9375 127.9375 0 run45.mat 201.9342 3 230335 230335 +5694100 5758302 64203 12459989.1721 12463200.085 127.9375 127.9375 2.7106e-05 run45.mat 211 3 230335 230335 +5771243 5836526 65284 12463845.8234 12467109.2147 127.9375 127.9375 2.6656e-05 run45.mat 212.5968 3 230335 230335 +5938455 6004524 66070 12472207.1021 12475509.8085 127.9375 127.9375 8.459e-06 run45.mat 221 3 230335 230335 +6017410 6538152 520743 12476155.0476 12502193.899 127.9375 127.9375 2.2271e-05 run45.mat 221 3 230335 230335 +2 206664 206663 12950317.1366 12960650.9427 127.9375 127.9375 2.2123e-05 run46.mat 209.2768 3.0533 145206 248528 +254105 325352 71248 12963021.6741 12966584.8649 127.9375 127.9375 0 run46.mat 2.3668 4 272249 307874 +357172 430190 73019 12968173.7607 12971826.9217 127.9375 127.9375 0 run46.mat 14.3658 4 323785 360295 +456306 528850 72545 12973133.4627 12976758.6124 127.9375 127.9375 2.1007e-05 run46.mat 21.4488 4 373354 409628 +554909 629575 74667 12978062.8272 12981795.2614 127.9375 127.9375 2.041e-05 run46.mat 32.8721 4 422658 459993 +655677 730083 74407 12983100.6651 12986822.6408 127.9375 127.9375 0 run46.mat 44.2934 4 473045 510249 +756196 830509 74314 12988128.0804 12991843.2639 127.9375 127.9375 2.0507e-05 run46.mat 51.6636 4 523306 560464 +856579 931062 74484 12993146.6198 12996871.663 127.9375 127.9375 2.046e-05 run46.mat 63.0789 4 573500 610743 +957097 1033288 76192 12998171.75 13001982.5923 127.9375 127.9375 0 run46.mat 74.6317 4 623761 661884 +1059302 1135728 76427 13003282.3918 13007104.8076 127.9375 127.9375 0 run46.mat 82.3203 4 674866 713080 +1161767 1238164 76398 13008407.7742 13012226.9213 127.9375 127.9375 3.9896e-05 run46.mat 93.9538 4 726100 764301 +1264288 1340548 76261 13013532.8179 13017346.1652 127.9375 127.9375 1.9984e-05 run46.mat 105.5778 4 777363 815495 +1366708 1442965 76258 13018654.7892 13022467.6634 127.9375 127.9375 0 run46.mat 113.2748 4 828576 866706 +1469124 1547272 78149 13023774.9913 13027682.4055 127.9375 127.9375 0 run46.mat 125.0557 4 879786 918861 +1573440 1651887 78448 13028990.1213 13032913.4402 127.9375 127.9375 0 run46.mat 133.0813 4 931946 971171 +1678047 1756169 78123 13034221.6235 13038126.6779 127.9375 127.9375 0 run46.mat 144.9079 4 984252 1023314 +1782347 1862521 80175 13039435.1897 13043445.6531 127.9375 127.9375 0 run46.mat 153.1154 4 1036404 1076493 +1888683 1968849 80167 13044752.5265 13048762.4188 127.9375 127.9375 1.901e-05 run46.mat 165.1449 4 1089575 1129659 +1995004 2075275 80272 13050068.0461 13054080.4541 127.9375 127.9375 0 run46.mat 173.4583 4 1142737 1182874 +2101482 2181749 80268 13055394.3228 13059407.3363 127.9375 127.9375 7.5944e-05 run46.mat 185.5057 4 1195978 1236114 +2208031 2288218 80188 13060720.7993 13064731.0923 127.9375 127.9375 0 run46.mat 193.8202 4 1249255 1289351 +2314485 2396568 82084 13066040.8737 13070147.7029 127.9375 127.9375 0 run46.mat 202.3405 4 1302485 1343528 +2422717 2505243 82527 13071454.8442 13075580.0085 127.9375 127.9375 0 run46.mat 214.5696 4 1356603 1397868 +2531503 2771235 239733 13076893.9774 13088883.3136 127.9375 127.9375 1.9601e-05 run46.mat 221 4 1410998 1523406 +2 285072 285071 13139694.734 13153952.188 127.9375 127.9375 3.2967e-05 run47.mat 215.5041 3.975 29106 171696 +387304 449139 61836 13159063.8321 13162158.3094 127.9375 127.9375 0 run47.mat 1 3 222814 253733 +475514 537405 61892 13163475.8428 13166569.8045 127.9375 127.9375 0 run47.mat 4.1042 3 266921 297868 +605494 667755 62262 13169974.1647 13173086.9588 127.9375 127.9375 0 run47.mat 11 3 331914 363045 +720180 782111 61932 13175707.9998 13178805.6233 127.9375 127.9375 0 run47.mat 21 3 389259 420226 +834568 896451 61884 13181429.9346 13184521.9119 127.9375 127.9375 5.1305e-05 run47.mat 33.9666 3 446456 477398 +948909 1010792 61884 13187145.1574 13190239.5918 127.9375 127.9375 0 run47.mat 43.0455 3 503629 534572 +1063086 1124933 61848 13192853.6697 13195947.5394 127.9375 127.9375 0 run47.mat 52.0994 3 560720 591645 +1177222 1239067 61846 13198561.996 13201654.409 127.9375 127.9375 2.6695e-05 run47.mat 61.1348 3 617790 648714 +1291497 1353483 61987 13204276.4885 13207372.6101 127.9375 127.9375 0 run47.mat 71 3 674930 705925 +1405763 1469490 63728 13209989.5997 13213176.004 127.9375 127.9375 0 run47.mat 84.3667 3 732066 763931 +1521949 1585637 63689 13215798.6474 13218983.4636 127.9375 127.9375 0 run47.mat 93.7417 3 790162 822007 +1637927 1701833 63907 13221597.6464 13224794.6889 127.9375 127.9375 0 run47.mat 103.1305 3 848153 880107 +1754127 1817983 63857 13227407.7619 13230600.8139 127.9375 127.9375 0 run47.mat 112.57 3 906256 938185 +1870290 1934184 63895 13233216.7725 13236409.5139 127.9375 127.9375 2.3851e-05 run47.mat 121.9745 3 964340 996288 +1986508 2050369 63862 13239027.4269 13242221.2674 127.9375 127.9375 0 run47.mat 131.3649 3 1022451 1054383 +2102695 2166537 63843 13244837.2814 13248030.2267 127.9375 127.9375 0 run47.mat 141 3 1080547 1112470 +2218843 2282727 63885 13250643.1459 13253838.1674 127.9375 127.9375 0 run47.mat 151 3 1138624 1170567 +2335008 2398890 63883 13256452.0516 13259648.4444 127.9375 127.9375 2.3856e-05 run47.mat 164.2701 3 1196708 1228651 +2451174 2515083 63910 13262261.2256 13265457.0485 127.9375 127.9375 2.3846e-05 run47.mat 173.6793 3 1254794 1286750 +2567363 2631099 63737 13268071.7411 13271256.3617 127.9375 127.9375 0 run47.mat 183.0176 3 1312891 1344761 +2683370 2747285 63916 13273868.601 13277067.7263 127.9375 127.9375 8.7424e-05 run47.mat 192.4121 3 1370898 1402856 +2799537 2865506 65970 13279678.7584 13282979.218 127.9375 127.9375 0 run47.mat 201.9863 3 1428983 1461970 +2917759 2983775 66017 13285591.0679 13288891.136 127.9375 127.9375 0 run47.mat 211.8718 3 1488097 1521107 +3036099 3210330 174232 13291507.1326 13300220.5384 127.9375 127.9375 1.7494e-05 run47.mat 221 3 1547270 1634331 +2 324413 324412 13440012.5166 13456237.2729 127.9375 127.9375 5.2075e-06 run48.mat 94.0266 4 5442 167678 +368909 440996 72088 13458460.9631 13462063.4356 127.9375 127.9375 1.5506e-05 run48.mat 3.6586 4 189927 225972 +471900 545684 73785 13463608.4719 13467299.1485 127.9375 127.9375 2.2208e-05 run48.mat 11.422 4 241425 278318 +571300 644262 72963 13468580.37 13472229.5003 127.9375 127.9375 3.1686e-05 run48.mat 22.6298 4 291127 327610 +669975 742783 72809 13473514.8328 13477153.5779 127.9375 127.9375 7.5019e-06 run48.mat 33.8805 4 340467 376872 +768586 843488 74903 13478445.3782 13482190.8059 127.9375 127.9375 0 run48.mat 45.2237 4 389774 427227 +869317 945918 76602 13483481.4241 13487313.0871 127.9375 127.9375 0 run48.mat 52.8492 4 440142 478444 +971696 1046567 74872 13488600.1844 13492343.1383 127.9375 127.9375 3.2405e-05 run48.mat 64.3143 4 491334 528771 +1071999 1148772 76774 13493616.1145 13497455.5779 127.9375 127.9375 7.1145e-06 run48.mat 71.9091 4 541487 579875 +1174553 1251486 76934 13498744.6399 13502591.5579 127.9375 127.9375 0 run48.mat 83.5312 4 592766 631235 +1276970 1353886 76917 13503863.8855 13507710.3152 127.9375 127.9375 1.4862e-05 run48.mat 95.175 4 643977 682437 +1379407 1460204 80798 13508985.2069 13513026.127 127.9375 127.9375 2.1381e-05 run48.mat 103.2538 4 695198 735598 +1485700 1564411 78712 13514298.7863 13518237.2201 127.9375 127.9375 1.404e-05 run48.mat 115.1439 4 748347 787704 +1590232 1669182 78951 13519527.2902 13523475.1162 127.9375 127.9375 3.3787e-05 run48.mat 123.2075 4 800615 840092 +1694728 1773546 78819 13524752.4592 13528691.7271 127.9375 127.9375 0 run48.mat 135.0336 4 852866 892276 +1798957 1877511 78555 13529963.6684 13533889.9113 127.9375 127.9375 6.9532e-06 run48.mat 143.0032 4 904982 944261 +1903283 1982056 78774 13535179.973 13539118.5649 127.9375 127.9375 0 run48.mat 154.844 4 957147 996536 +2007890 2086710 78821 13540409.6154 13544349.7794 127.9375 127.9375 1.8646e-05 run48.mat 162.8668 4 1009453 1048865 +2112106 2193452 81347 13545621.7575 13549687.5353 127.9375 127.9375 2.9181e-06 run48.mat 174.8915 4 1061564 1102238 +2218763 2299700 80938 13550956.0484 13555002.3065 127.9375 127.9375 3.0291e-06 run48.mat 183.2171 4 1114894 1155365 +2324941 2406174 81234 13556263.6667 13560327.0712 127.9375 127.9375 0 run48.mat 195.237 4 1167986 1208604 +2431614 2514745 83132 13561598.3511 13565753.8472 127.9375 127.9375 2.9023e-06 run48.mat 203.763 4 1221325 1262892 +2540117 2623247 83131 13567022.6048 13571178.4747 127.9375 127.9375 2.8555e-06 run48.mat 214.5741 4 1275579 1317146 +2648754 2888666 239913 13572454.4037 13584448.2365 127.9375 127.9375 3.9361e-06 run48.mat 221 4 1329900 1449847 +2 308004 308003 13627618.3507 13643018.8367 127.9375 127.9375 1.2661e-05 run49.mat 215.7768 3.9763 15738 169735 +410041 471760 61720 13648121.6978 13651206.129 127.9375 127.9375 0 run49.mat 1 3 220756 251616 +573942 635888 61947 13656317.3528 13659412.0593 127.9375 127.9375 0 run49.mat 1 3 302710 333684 +641862 702118 60257 13659710.8195 13662725.1156 127.9375 127.9375 9.275e-06 run49.mat 3.0422 3 336671 366801 +804181 866038 61858 13667829.7364 13670920.4224 127.9375 127.9375 8.83e-06 run49.mat 11 3 417834 448764 +906563 968438 61876 13672947.8151 13676041.6352 127.9375 127.9375 3.6952e-05 run49.mat 12.3971 3 469028 499966 +1070502 1132362 61861 13681143.1538 13684238.9496 127.9375 127.9375 0 run49.mat 21 3 551000 581932 +1144989 1206685 61697 13684868.4653 13687953.614 127.9375 127.9375 0 run49.mat 22.1137 3 588246 619095 +1308742 1370759 62018 13693055.3565 13696157.0171 127.9375 127.9375 2.6422e-05 run49.mat 31 3 670126 701135 +1383433 1445127 61695 13696791.6223 13699877.2389 127.9375 127.9375 2.8001e-05 run49.mat 31.8707 3 707473 738321 +1547121 1609204 62084 13704974.8558 13708081.3999 127.9375 127.9375 2.8439e-05 run49.mat 41 3 789320 820363 +1621977 1685406 63430 13708720.1887 13711889.8903 127.9375 127.9375 9.0118e-06 run49.mat 41.8814 3 826750 858469 +1787400 1849546 62147 13716989.5478 13720096.899 127.9375 127.9375 9.1978e-06 run49.mat 51 3 909465 940540 +1862336 1925756 63421 13720737.894 13723907.3087 127.9375 127.9375 3.485e-05 run49.mat 51.9461 3 946935 978646 +2027760 2089666 61907 13729006.6013 13732104.2917 127.9375 127.9375 1.8876e-05 run49.mat 61 3 1029650 1060595 +2102440 2166007 63568 13732742.1812 13735919.8364 127.9375 127.9375 9.3919e-06 run49.mat 61.9831 3 1066992 1098777 +2267999 2329860 61862 13741019.2997 13744113.8752 127.9375 127.9375 1.8891e-05 run49.mat 71 3 1149775 1180707 +2342655 2406010 63356 13744751.8988 13747921.0828 127.9375 127.9375 1.8446e-05 run49.mat 71.9522 3 1187105 1218784 +2508019 2572023 64005 13753021.43 13756220.0797 127.9375 127.9375 3.5127e-05 run49.mat 81 3 1269790 1301794 +2584816 2648176 63361 13756861.0355 13760029.7507 127.9375 127.9375 1.8644e-05 run49.mat 82.2906 3 1308191 1339872 +2750199 2814322 64124 13765127.5631 13768337.6386 127.9375 127.9375 4.3184e-05 run49.mat 91 3 1390886 1422949 +2827082 2890496 63415 13768975.1901 13772143.4033 127.9375 127.9375 8.6132e-06 run49.mat 92.6836 3 1429329 1461037 +2992498 3054422 61925 13777244.2109 13780342.044 127.9375 127.9375 8.8205e-06 run49.mat 101 3 1512041 1543004 +3067194 3132652 65459 13780977.6165 13784252.9714 127.9375 127.9375 0 run49.mat 102.9388 3 1549390 1582121 +3234616 3298615 64000 13789352.144 13792551.0181 127.9375 127.9375 8.5345e-06 run49.mat 111 3 1633105 1665106 +3311433 3374770 63338 13793192.7428 13796358.4836 127.9375 127.9375 1.7448e-05 run49.mat 113.3571 3 1671515 1703185 +3476758 3540889 64132 13801458.4539 13804665.7071 127.9375 127.9375 3.6048e-05 run49.mat 121 3 1754181 1786248 +3553710 3617090 63381 13805307.4803 13808476.2164 127.9375 127.9375 2.6655e-05 run49.mat 123.7055 3 1792659 1824350 +3719056 3783063 64008 13813574.0855 13816774.3938 127.9375 127.9375 8.9304e-06 run49.mat 131 3 1875336 1907341 +3795917 3859232 63316 13817418.2367 13820582.0661 127.9375 127.9375 0 run49.mat 134.0687 3 1913768 1945427 +3961176 4025168 63993 13825679.5441 13828879.4316 127.9375 127.9375 8.9325e-06 run49.mat 141 3 1996401 2028398 +4038065 4101364 63300 13829525.4535 13832688.3251 127.9375 127.9375 5.2775e-05 run49.mat 144.422 3 2034847 2066498 +4203315 4267511 64197 13837786.1526 13840997.1846 127.9375 127.9375 1.7412e-05 run49.mat 151 3 2117476 2149575 +4280386 4345530 65145 13841640.1545 13844899.2002 127.9375 127.9375 1.7354e-05 run49.mat 151 3 2156013 2188586 +4447458 4511659 64202 13849994.9629 13853202.9029 127.9375 127.9375 1.8796e-05 run49.mat 161 3 2239553 2271655 +4524558 4589896 65339 13853850.6888 13857116.9427 127.9375 127.9375 8.5536e-06 run49.mat 161.0203 3 2278104 2310774 +4691831 4755838 64008 13862212.8973 13865414.0373 127.9375 127.9375 2.8776e-05 run49.mat 171 3 2361744 2393749 +4768731 4834063 65333 13866058.2056 13869326.1162 127.9375 127.9375 2.7414e-05 run49.mat 171.6612 3 2400196 2432659 +4935992 5000034 64043 13874423.5422 13877625.8932 127.9375 127.9375 8.9255e-06 run49.mat 181 3 2483625 2514890 +5012950 5078263 65314 13878271.0154 13881535.4714 127.9375 127.9375 8.5569e-06 run49.mat 182.3075 3 2521214 2553872 +5180192 5244196 64005 13886634.3311 13889834.1127 127.9375 127.9375 0 run49.mat 191 3 2604839 2636842 +5257120 5322418 65299 13890481.6987 13893743.4035 127.9375 127.9375 1.7313e-05 run49.mat 192.9349 3 2643304 2675955 +5424355 5488557 64203 13898840.7701 13902053.7141 127.9375 127.9375 3.6008e-05 run49.mat 201 3 2726925 2759028 +5501485 5566779 65295 13902700.0371 13905963.7975 127.9375 127.9375 3.6767e-05 run49.mat 203.6029 3 2765492 2798140 +5668713 5734734 66022 13911058.0169 13914359.6929 127.9375 127.9375 8.4651e-06 run49.mat 211 3 2849110 2882122 +5747664 5812952 65289 13915005.6005 13918271.9517 127.9375 127.9375 9.1444e-06 run49.mat 214.5517 3 2888587 2921232 +5914893 5978881 63989 13923368.3155 13926565.6728 127.9375 127.9375 9.1312e-06 run49.mat 221 3 2972205 3004201 +5991805 6173234 181430 13927213.0823 13936288.2626 127.9375 127.9375 2.5205e-05 run49.mat 221 3 3010663 3095654 +2 263274 263273 12470695.4438 12483861.36 127.9375 127.9375 1.7366e-05 run5.mat -1 -1 24401 156080 +365015 443262 78248 12488948.6749 12492861.416 127.9375 127.9375 0 run5.mat -1 -1 206953 246078 +545034 623305 78272 12497948.8773 12501861.722 127.9375 127.9375 6.1655e-05 run5.mat -1 -1 296966 336103 +725074 803353 78280 12506951.464 12510868.0936 127.9375 127.9375 0 run5.mat -1 -1 386991 426132 +905134 983321 78188 12515956.3066 12519864.5005 127.9375 127.9375 0 run5.mat -1 -1 477025 516120 +1085173 1163299 78127 12524957.4248 12528864.2223 127.9375 127.9375 0 run5.mat -1 -1 567048 606112 +1265053 1343323 78271 12533950.8919 12537865.732 127.9375 127.9375 0 run5.mat -1 -1 656992 696129 +1445133 1523441 78309 12542954.107 12546872.408 127.9375 127.9375 3.8922e-05 run5.mat -1 -1 747036 786192 +1625232 1703717 78486 12551962.4838 12555885.8062 127.9375 127.9375 1.9417e-05 run5.mat -1 -1 837089 876333 +1805492 1883787 78296 12560973.9396 12564887.6345 127.9375 127.9375 0 run5.mat -1 -1 927223 966372 +1985552 2063861 78310 12569976.3197 12573891.7716 127.9375 127.9375 1.9461e-05 run5.mat -1 -1 1017257 1056413 +2165651 2243738 78088 12578983.4339 12582886.6718 127.9375 127.9375 0 run5.mat -1 -1 1107310 1146356 +2345532 2423803 78272 12587977.5158 12591889.7568 127.9375 127.9375 0 run5.mat -1 -1 1197255 1236392 +2525610 2604091 78482 12596982.4172 12600906.4505 127.9375 127.9375 1.9418e-05 run5.mat -1 -1 1287298 1326540 +2705850 2784078 78229 12605994.7666 12609903.6009 127.9375 127.9375 3.8962e-05 run5.mat -1 -1 1377422 1416538 +2838994 3995914 1156921 12612649.2477 12670492.8833 127.9375 127.9375 1.2075e-05 run5.mat -1 -1 1443997 1683997 +2 354378 354377 14016327.3723 14034050.076 127.9375 127.9375 9.8214e-06 run50.mat 203.2787 3.0806 7040 95654 +398965 470955 71991 14036279.2382 14039879.4645 127.9375 127.9375 1.5174e-05 run50.mat 4.5286 4 106801 124799 +501770 573652 71883 14041419.8524 14045014.6191 127.9375 127.9375 7.7749e-06 run50.mat 12.1155 4 132503 150475 +599306 672357 73052 14046297.3412 14049950.2739 127.9375 127.9375 2.2952e-05 run50.mat 23.2919 4 156888 175151 +698110 773106 74997 14051236.1036 14054987.9488 127.9375 127.9375 7.9607e-06 run50.mat 34.6602 4 181590 200340 +798917 873608 74692 14056279.8141 14060012.5013 127.9375 127.9375 7.3128e-06 run50.mat 41.9094 4 206793 225467 +899412 974169 74758 14061304.3397 14065040.9806 127.9375 127.9375 7.3064e-06 run50.mat 53.4951 4 231918 250608 +999942 1076492 76551 14066328.7858 14070156.219 127.9375 127.9375 1.51e-05 run50.mat 65.0359 4 257051 276190 +1102242 1179242 77001 14071443.9569 14075294.9004 127.9375 127.9375 0 run50.mat 72.7435 4 282627 301878 +1204721 1281493 76773 14076568.2769 14080408.2104 127.9375 127.9375 2.2171e-05 run50.mat 84.3652 4 308249 327443 +1307289 1384129 76841 14081698.776 14085538.3401 127.9375 127.9375 3.0747e-05 run50.mat 92.1129 4 333891 353103 +1409697 1488388 78692 14086817.6186 14090753.056 127.9375 127.9375 0 run50.mat 103.8707 4 359495 379168 +1513905 1592926 79022 14092027.0758 14095978.4819 127.9375 127.9375 2.9417e-05 run50.mat 115.7137 4 385548 405304 +1618462 1696937 78476 14097253.7424 14101180.1244 127.9375 127.9375 1.5377e-05 run50.mat 123.7192 4 411688 431308 +1722747 1801739 78993 14102471.6507 14106419.7945 127.9375 127.9375 2.1708e-05 run50.mat 135.5853 4 437761 457509 +1827110 1906020 78911 14107687.7737 14111633.5241 127.9375 127.9375 1.4326e-05 run50.mat 143.5752 4 463852 483581 +1931512 2010466 78955 14112908.7126 14116857.9044 127.9375 127.9375 7.0785e-06 run50.mat 155.4136 4 489954 509694 +2035998 2114492 78495 14118131.4731 14122059.2668 127.9375 127.9375 0 run50.mat 163.4044 4 516077 535702 +2140232 2221506 81275 14123344.8586 14127410.4332 127.9375 127.9375 2.9525e-06 run50.mat 175.4156 4 542136 562456 +2246516 2327796 81281 14128659.3025 14132721.8237 127.9375 127.9375 0 run50.mat 183.7359 4 568709 589030 +2353197 2434236 81040 14133993.1231 14138043.6737 127.9375 127.9375 0 run50.mat 195.7677 4 595381 615641 +2459716 2542775 83060 14139318.9127 14143472.5973 127.9375 127.9375 1.2306e-05 run50.mat 204.2551 4 622011 642776 +2568094 2651271 83178 14144737.933 14148897.8684 127.9375 127.9375 0 run50.mat 212.8914 4 649107 669902 +2676736 2913409 236674 14150170.0746 14162004.2755 127.9375 127.9375 3.0637e-06 run50.mat 221 4 676269 730918 +2 308243 308242 14202333.2068 14217747.2469 127.9375 127.9375 1.5165e-05 run51.mat 212.1138 3.9596 8009 85071 +410320 472287 61968 14222852.7404 14225951.4345 127.9375 127.9375 2.8493e-05 run51.mat 1 3 110591 126084 +574360 636204 61845 14231052.6232 14234145.5045 127.9375 127.9375 8.8319e-06 run51.mat 1 3 151603 167065 +641517 702459 60943 14234412.2268 14237458.8396 127.9375 127.9375 2.7721e-05 run51.mat 3.7774 3 168393 183629 +804540 866514 61975 14242562.6729 14245661.5174 127.9375 127.9375 0 run51.mat 11 3 209151 224645 +907034 968898 61865 14247689.7697 14250780.2272 127.9375 127.9375 1.9711e-05 run51.mat 13.1443 3 234775 250242 +1070959 1132972 62014 14255884.9798 14258984.773 127.9375 127.9375 0 run51.mat 21 3 275758 291263 +1145589 1209355 63767 14259616.5753 14262803.7398 127.9375 127.9375 9.3626e-06 run51.mat 23.1645 3 294417 310359 +1311418 1373213 61796 14267907.3587 14270997.7729 127.9375 127.9375 2.7133e-05 run51.mat 31 3 335876 351325 +1385905 1449635 63731 14271630.6077 14274816.8361 127.9375 127.9375 1.7141e-05 run51.mat 33.2191 3 354498 370432 +1551618 1613688 62071 14279916.314 14283021.5737 127.9375 127.9375 9.4133e-06 run51.mat 41 3 395928 411447 +1626476 1689909 63434 14283659.998 14286833.6164 127.9375 127.9375 2.6632e-05 run51.mat 43.2632 3 414643 430503 +1791898 1853979 62082 14291933.4082 14295034.2235 127.9375 127.9375 9.6167e-06 run51.mat 51 3 456001 471522 +1866762 1928305 61544 14295673.5124 14298753.7106 127.9375 127.9375 8.8751e-06 run51.mat 53.0753 3 474718 490104 +2030277 2092175 61899 14303850.154 14306947.2045 127.9375 127.9375 1.7853e-05 run51.mat 61 3 515599 531074 +2104953 2168528 63576 14307585.4922 14310764.2102 127.9375 127.9375 0 run51.mat 63.0438 3 534268 550162 +2270517 2334444 63928 14315862.4777 14319059.7161 127.9375 127.9375 1.7684e-05 run51.mat 71 3 575661 591644 +2347238 2410615 63378 14319697.9746 14322869.2718 127.9375 127.9375 9.6201e-06 run51.mat 73.3763 3 594842 610687 +2512616 2574689 62074 14327969.3916 14331071.5572 127.9375 127.9375 0 run51.mat 81 3 636188 651708 +2587457 2650859 63403 14331711.2392 14334879.4822 127.9375 127.9375 0 run51.mat 83.417 3 654899 670751 +2752836 2816772 63937 14339978.2955 14343175.4158 127.9375 127.9375 0 run51.mat 91 3 696246 712231 +2829539 2892951 63413 14343816.7705 14346985.5426 127.9375 127.9375 1.8028e-05 run51.mat 93.7307 3 715423 731276 +2994932 3058839 63908 14352084.501 14355279.0494 127.9375 127.9375 3.8361e-05 run51.mat 101 3 756773 772750 +3071587 3135022 63436 14355916.628 14359088.6676 127.9375 127.9375 2.6232e-05 run51.mat 104.072 3 775938 791797 +3236995 3301152 64158 14364187.2436 14367397.9675 127.9375 127.9375 8.7111e-06 run51.mat 111 3 817291 833331 +3313946 3377106 63161 14368037.7165 14371192.7706 127.9375 127.9375 0 run51.mat 114.4152 3 836530 852320 +3479074 3543206 64133 14376291.9035 14379497.7089 127.9375 127.9375 2.5748e-05 run51.mat 121 3 877813 893847 +3556028 3621458 65431 14380139.7728 14383412.601 127.9375 127.9375 8.5416e-06 run51.mat 121 3 897053 913411 +3723394 3787400 64007 14388509.6778 14391707.7647 127.9375 127.9375 8.7316e-06 run51.mat 131 3 938896 954898 +3800268 3863595 63328 14392353.0214 14395518.8904 127.9375 127.9375 9.0263e-06 run51.mat 131 3 958116 973948 +3965513 4029699 64187 14400616.1932 14403825.8285 127.9375 127.9375 8.7071e-06 run51.mat 141 3 999429 1015476 +4042597 4105866 63270 14404470.5757 14407634.338 127.9375 127.9375 2.8106e-05 run51.mat 141.0238 3 1018701 1034518 +4207793 4271779 63987 14412727.9517 14415928.0433 127.9375 127.9375 3.4938e-05 run51.mat 151 3 1060001 1075999 +4284672 4349992 65321 14416573.783 14419838.7558 127.9375 127.9375 1.7501e-05 run51.mat 151.6881 3 1079222 1095553 +4451933 4516103 64171 14424937.0396 14428144.5368 127.9375 127.9375 0 run51.mat 161 3 1121039 1137082 +4529000 4610099 81100 14428790.2354 14432843.9389 127.9375 127.9375 7.3616e-06 run51.mat 161 3 1140307 1160582 +4712050 4784224 72175 14437940.4265 14441551.0494 127.9375 127.9375 8.0955e-06 run51.mat 171 3 1186071 1204116 +4797146 4872282 75137 14442195.3 14445953.1564 127.9375 127.9375 1.5046e-05 run51.mat 173.0821 3 1207346 1226131 +4974232 5038427 64196 14451050.5386 14454262.4782 127.9375 127.9375 8.5084e-06 run51.mat 181 3 1251619 1267669 +5051321 5116540 65220 14454903.5817 14458168.2159 127.9375 127.9375 1.8308e-05 run51.mat 184.2199 3 1270892 1287198 +5218371 5282538 64168 14463258.3098 14466465.7415 127.9375 127.9375 8.7097e-06 run51.mat 191 3 1312657 1328699 +5295439 5360762 65324 14467112.142 14470376.9456 127.9375 127.9375 9.1395e-06 run51.mat 194.8581 3 1331924 1348256 +5462691 5528911 66221 14475472.4636 14478785.1636 127.9375 127.9375 8.8234e-06 run51.mat 201 3 1373740 1390295 +5541831 5606922 65092 14479431.5717 14482685.0506 127.9375 127.9375 2.6344e-05 run51.mat 201.1755 3 1393525 1409799 +5708851 5775115 66265 14487781.8853 14491097.8305 127.9375 127.9375 2.5878e-05 run51.mat 211 3 1435282 1451849 +5788062 5853179 65118 14491743.8512 14495000.4778 127.9375 127.9375 2.6335e-05 run51.mat 212.1638 3 1455086 1471366 +5955050 6019237 64188 14500092.9697 14503303.7983 127.9375 127.9375 8.9054e-06 run51.mat 221 3 1496834 1512882 +6032169 6244431 212263 14503949.612 14514562.5718 127.9375 127.9375 2.1663e-05 run51.mat 221 3 1516115 1564123 +2 249320 249319 14580011.9371 14592479.7507 127.9375 127.9375 2.1144e-05 run52.mat 188.1318 3.1494 1 1 +294017 366196 72180 14594715.522 14598323.3286 127.9375 127.9375 0 run52.mat 1.5631 4 1 1 +396944 468713 71770 14599861.1571 14603449.5685 127.9375 127.9375 9.0267e-06 run52.mat 13.3104 4 1 1 +494340 569446 75107 14604730.8704 14608486.8846 127.9375 127.9375 2.2662e-05 run52.mat 24.6181 4 1 1 +595147 670024 74878 14609772.1651 14613515.4457 127.9375 127.9375 0 run52.mat 32.0674 4 1 1 +695819 770550 74732 14614803.045 14618542.0302 127.9375 127.9375 1.4787e-05 run52.mat 43.4459 4 1 1 +796341 871054 74714 14619829.3441 14623566.8896 127.9375 127.9375 1.6662e-05 run52.mat 54.8738 4 1 1 +896822 971853 75032 14624857.6436 14628608.9726 127.9375 127.9375 1.5237e-05 run52.mat 62.2743 4 1 1 +997363 1074350 76988 14629881.0077 14633730.9548 127.9375 127.9375 7.2594e-06 run52.mat 73.8964 4 1 1 +1099849 1176774 76926 14635006.8897 14638851.5573 127.9375 127.9375 0 run52.mat 85.48 4 1 1 +1202260 1278877 76618 14640126.6202 14643960.3505 127.9375 127.9375 2.1387e-05 run52.mat 93.1882 4 1 1 +1304695 1381264 76570 14645248.6603 14649076.0714 127.9375 127.9375 2.2063e-05 run52.mat 104.8072 4 1 1 +1407114 1485870 78757 14650369.4588 14654308.4603 127.9375 127.9375 2.1612e-05 run52.mat 112.7519 4 1 1 +1511379 1590094 78716 14655584.5802 14659520.4507 127.9375 127.9375 0 run52.mat 124.537 4 1 1 +1615913 1694759 78847 14660811.1451 14664753.9429 127.9375 127.9375 1.4338e-05 run52.mat 132.5963 4 1 1 +1720240 1798681 78442 14666028.1835 14669948.3749 127.9375 127.9375 1.5384e-05 run52.mat 144.3003 4 1 1 +1824436 1903183 78748 14671237.1481 14675172.7695 127.9375 127.9375 2.226e-05 run52.mat 152.4057 4 1 1 +1928991 2007862 78872 14676465.4435 14680409.0102 127.9375 127.9375 0 run52.mat 164.2747 4 1 1 +2033231 2114350 81120 14681677.0986 14685731.7251 127.9375 127.9375 2.8623e-06 run52.mat 172.5084 4 1 1 +2139748 2220864 81117 14687001.9294 14691058.3362 127.9375 127.9375 0 run52.mat 184.5517 4 1 1 +2246249 2329119 82871 14692328.9651 14696472.9731 127.9375 127.9375 0 run52.mat 193.0496 4 1 1 +2354553 2437698 83146 14697742.4304 14701897.5981 127.9375 127.9375 3.0577e-06 run52.mat 205.2822 4 1 1 +2463112 2546184 83073 14703172.4518 14707324.2084 127.9375 127.9375 0 run52.mat 213.9071 4 1 1 +2571672 2715484 143813 14708599.5915 14715790.479 127.9375 127.9375 3.5809e-06 run52.mat 221 4 1 1 +2 545565 545564 15573441.9736 15600714.5359 127.9375 127.9375 1.6508e-05 run53.mat 216.3568 3.0211 200001 200001 +590006 662442 72437 15602939.1936 15606558.9008 127.9375 127.9375 0 run53.mat 2.1667 4 200001 200001 +693188 767016 73829 15608096.9185 15611788.1703 127.9375 127.9375 0 run53.mat 14.1133 4 200001 200001 +792567 865678 73112 15613065.8561 15616723.4663 127.9375 127.9375 7.4708e-06 run53.mat 25.315 4 200001 200001 +891336 966381 75046 15618003.4821 15621757.5437 127.9375 127.9375 2.2342e-05 run53.mat 32.6697 4 200001 200001 +992157 1068931 76775 15623046.0488 15626884.4259 127.9375 127.9375 7.1144e-06 run53.mat 44.2615 4 200001 200001 +1094756 1169265 74510 15628176.7906 15631900.9183 127.9375 127.9375 3.0346e-05 run53.mat 51.1711 4 200001 200001 +1195067 1272137 77071 15633192.3411 15637046.8399 127.9375 127.9375 2.1921e-05 run53.mat 63.3751 4 200001 200001 +1297592 1374619 77028 15638317.8916 15642170.1301 127.9375 127.9375 1.5336e-05 run53.mat 74.9917 4 200001 200001 +1400020 1476561 76542 15643439.8596 15647267.5514 127.9375 127.9375 7.6336e-06 run53.mat 82.6526 4 200001 200001 +1502370 1579342 76973 15648558.5619 15652406.9307 127.9375 127.9375 7.4262e-06 run53.mat 94.3063 4 200001 200001 +1604781 1683274 78494 15653676.3603 15657601.2952 127.9375 127.9375 1.4888e-05 run53.mat 102.2003 4 200001 200001 +1709126 1788066 78941 15658896.8977 15662841.6815 127.9375 127.9375 1.3838e-05 run53.mat 114.0572 4 200001 200001 +1813609 1892592 78984 15664117.2398 15668071.2204 127.9375 127.9375 6.9154e-06 run53.mat 122.1038 4 200001 200001 +1918115 1996889 78775 15669346.3362 15673283.9395 127.9375 127.9375 0 run53.mat 133.9268 4 200001 200001 +2022369 2101322 78954 15674558.3651 15678504.5556 127.9375 127.9375 0 run53.mat 145.7481 4 200001 200001 +2126856 2205543 78688 15679783.4657 15683715.8298 127.9375 127.9375 1.469e-05 run53.mat 153.7615 4 200001 200001 +2231077 2312010 80934 15684991.0365 15689040.1813 127.9375 127.9375 8.7668e-06 run53.mat 165.7145 4 200001 200001 +2337493 2418465 80973 15690315.0333 15694363.8774 127.9375 127.9375 0 run53.mat 174.0344 4 200001 200001 +2443831 2524995 81165 15695630.6651 15699691.4049 127.9375 127.9375 2.8928e-06 run53.mat 182.35 4 200001 200001 +2550302 2631604 81303 15700955.183 15705018.3634 127.9375 127.9375 3.2388e-06 run53.mat 194.4201 4 200001 200001 +2656970 2737993 81024 15706288.2925 15710339.0552 127.9375 127.9375 0 run53.mat 202.7471 4 200001 200001 +2763361 2846525 83165 15711608.2029 15715765.758 127.9375 127.9375 1.5082e-05 run53.mat 214.904 4 200001 200001 +2872108 3151628 279521 15717046.1746 15731021.777 127.9375 127.9375 3.4248e-06 run53.mat 221 4 200001 200001 +2 311252 311251 15782538.023 15798106.8434 127.9375 127.9375 1.8242e-05 run55.mat 200.1907 3.9054 24263 179935 +413305 475097 61793 15803206.0893 15806296.2883 127.9375 127.9375 2.8985e-05 run55.mat 1 3 230963 261861 +577156 637308 60153 15811398.9762 15814406.296 127.9375 127.9375 0 run55.mat 1 3 312893 342970 +646948 707355 60408 15814890.0162 15817912.2097 127.9375 127.9375 9.4626e-06 run55.mat 1.9144 3 347790 377995 +809425 871442 62018 15823015.0292 15826114.4731 127.9375 127.9375 8.8073e-06 run55.mat 11 3 429032 460042 +911959 973873 61915 15828142.0358 15831236.6868 127.9375 127.9375 1.8669e-05 run55.mat 11.3391 3 480301 511260 +1075925 1137954 62030 15836338.7829 15839439.6882 127.9375 127.9375 9.4195e-06 run55.mat 21 3 562288 593304 +1150583 1212284 61702 15840072.8812 15843157.2017 127.9375 127.9375 2.738e-05 run55.mat 21.0795 3 599619 630471 +1314344 1376342 61999 15848261.6901 15851359.835 127.9375 127.9375 0 run55.mat 31 3 681503 712503 +1389009 1450738 61730 15851993.0246 15855080.2513 127.9375 127.9375 1.8107e-05 run55.mat 31 3 718837 749703 +1552744 1614834 62091 15860182.2693 15863286.2887 127.9375 127.9375 8.7969e-06 run55.mat 41 3 800708 831754 +1627574 1688964 61391 15863923.4663 15866991.8464 127.9375 127.9375 2.1725e-05 run55.mat 41 3 838125 868821 +1790944 1855118 64175 15872090.8548 15875299.6851 127.9375 127.9375 8.5112e-06 run55.mat 51 3 919813 951902 +1867938 1931261 63324 15875940.8623 15879107.5586 127.9375 127.9375 0 run55.mat 51 3 958312 989975 +2033263 2095350 62088 15884206.6993 15887312.3033 127.9375 127.9375 0 run55.mat 61 3 1040978 1072023 +2108114 2171510 63397 15887951.6654 15891120.0738 127.9375 127.9375 9.6172e-06 run55.mat 61 3 1078405 1110105 +2273502 2337454 63953 15896218.4541 15899416.3081 127.9375 127.9375 9.1363e-06 run55.mat 71 3 1161103 1193080 +2350235 2413843 63609 15900055.7705 15903235.3028 127.9375 127.9375 0 run55.mat 71.3154 3 1199471 1231276 +2515822 2579767 63946 15908334.2325 15911532.7003 127.9375 127.9375 0 run55.mat 81 3 1282268 1314242 +2592566 2655908 63343 15912172.5419 15915340.3171 127.9375 127.9375 0 run55.mat 81.6522 3 1320642 1352314 +2757894 2822029 64136 15920439.3862 15923645.0169 127.9375 127.9375 8.7141e-06 run55.mat 91 3 1403309 1435378 +2834820 2898013 63194 15924284.8952 15927443.1748 127.9375 127.9375 2.593e-05 run55.mat 91.9804 3 1441774 1473372 +3000001 3064105 64105 15932546.6277 15935750.965 127.9375 127.9375 8.9169e-06 run55.mat 101 3 1524368 1556421 +3076891 3140266 63376 15936389.9821 15939559.3638 127.9375 127.9375 9.8213e-06 run55.mat 102.3425 3 1562815 1594504 +3242241 3306185 63945 15944656.2779 15947852.646 127.9375 127.9375 3.6352e-05 run55.mat 111 3 1645493 1677467 +3319030 3384408 65379 15948494.7188 15951766.5255 127.9375 127.9375 9.3257e-06 run55.mat 112.9255 3 1683890 1716580 +3486380 3550377 63998 15956866.0155 15960064.3711 127.9375 127.9375 8.7328e-06 run55.mat 121 3 1767569 1799569 +3563215 3628588 65374 15960706.954 15963975.2689 127.9375 127.9375 8.549e-06 run55.mat 123.5742 3 1805988 1838676 +3730540 3794728 64189 15969071.6152 15972283.5402 127.9375 127.9375 9.1027e-06 run55.mat 131 3 1889654 1921749 +3807609 3870741 63133 15972925.1872 15976083.0103 127.9375 127.9375 2.6156e-05 run55.mat 133.9939 3 1928189 1959757 +3972659 4036850 64192 15981178.6501 15984388.3005 127.9375 127.9375 3.74e-05 run55.mat 141 3 2010718 2042815 +4049756 4113007 63252 15985033 15988195.3274 127.9375 127.9375 1.7471e-05 run55.mat 144.356 3 2049268 2080906 +4214938 4278931 63994 15993291.3418 15996493.6902 127.9375 127.9375 1.8063e-05 run55.mat 151 3 2131863 2163861 +4291844 4357153 65310 15997140.2799 16000403.0121 127.9375 127.9375 2.509e-05 run55.mat 154.8881 3 2170318 2202974 +4459089 4523288 64200 16005501.0756 16008712.1778 127.9375 127.9375 9.4969e-06 run55.mat 161 3 2253944 2286045 +4536176 4601291 65116 16009353.5447 16012610.8032 127.9375 127.9375 3.4528e-05 run55.mat 161 3 2292490 2325048 +4703256 4767429 64174 16017708.1432 16020917.0977 127.9375 127.9375 8.7089e-06 run55.mat 171 3 2376033 2408121 +4780300 4845441 65142 16021561.8475 16024818.8245 127.9375 127.9375 8.5795e-06 run55.mat 171.5621 3 2414557 2447129 +4947376 5011541 64166 16029915.1717 16033122.7372 127.9375 127.9375 0 run55.mat 181 3 2498098 2530183 +5024451 5089588 65138 16033768.3239 16037027.801 127.9375 127.9375 2.5545e-05 run55.mat 182.1588 3 2536637 2569207 +5191518 5255703 64186 16042123.0361 16045332.0177 127.9375 127.9375 1.7415e-05 run55.mat 191 3 2620175 2652269 +5268626 5333939 65314 16045977.8317 16049242.3852 127.9375 127.9375 8.3628e-06 run55.mat 192.8615 3 2658730 2691390 +5435857 5501941 66085 16054339.2896 16057642.6904 127.9375 127.9375 1.6722e-05 run55.mat 201 3 2742350 2775393 +5514860 5579971 65112 16058288.8087 16061547.1081 127.9375 127.9375 3.414e-05 run55.mat 203.7968 3 2781853 2814410 +5681896 5746174 64279 16066643.4815 16069856.5621 127.9375 127.9375 8.4975e-06 run55.mat 211 3 2865374 2897515 +5758998 5824290 65293 16070498.0319 16073762.1344 127.9375 127.9375 8.5596e-06 run55.mat 214.4536 3 2903927 2936575 +5926227 5992384 66158 16078858.747 16082167.0381 127.9375 127.9375 8.2561e-06 run55.mat 221 3 2987546 3020625 +6005174 6099071 93898 16082806.601 16087505.3175 127.9375 127.9375 6.2226e-06 run55.mat 221 3 3027020 3041843 +2 318329 318328 16199922.8572 16215841.5354 127.9375 127.9375 1.229e-05 run56.mat 211.3255 3.044 7919 87520 +362805 435046 72242 16218067.1613 16221681.1924 127.9375 127.9375 2.3561e-05 run56.mat 2.4971 4 98639 116700 +465907 537722 71816 16223221.079 16226813.4163 127.9375 127.9375 1.6273e-05 run56.mat 14.2655 4 124416 142371 +563389 638384 74996 16228096.1054 16231845.8888 127.9375 127.9375 7.622e-06 run56.mat 25.554 4 148787 167537 +664111 738923 74813 16233132.3584 16236872.5588 127.9375 127.9375 7.301e-06 run56.mat 32.9611 4 173969 192673 +764724 839414 74691 16238163.16 16241896.8748 127.9375 127.9375 1.5816e-05 run56.mat 44.3742 4 199123 217797 +865240 939970 74731 16243189.3475 16246925.9533 127.9375 127.9375 3.8924e-05 run56.mat 51.741 4 224253 242937 +965775 1042383 76609 16248216.2733 16252045.0935 127.9375 127.9375 2.3047e-05 run56.mat 63.364 4 249388 268541 +1068161 1142908 74748 16253336.3515 16257073.4321 127.9375 127.9375 1.7334e-05 run56.mat 74.8309 4 274986 293674 +1168727 1245286 76560 16258364.8699 16262191.6937 127.9375 127.9375 1.46e-05 run56.mat 82.4436 4 300128 319269 +1271085 1347720 76636 16263482.2687 16267314.4461 127.9375 127.9375 7.2927e-06 run56.mat 94.0646 4 325719 344878 +1373571 1450137 76567 16268604.2445 16272434.002 127.9375 127.9375 0 run56.mat 105.6916 4 351342 370484 +1475968 1554858 78891 16273724.1148 16277670.5707 127.9375 127.9375 2.222e-05 run56.mat 113.6116 4 376942 396666 +1580472 1658928 78457 16278949.719 16282874.6442 127.9375 127.9375 1.4409e-05 run56.mat 125.4271 4 403069 422684 +1684732 1763756 79025 16284165.0437 16288116.1513 127.9375 127.9375 2.2504e-05 run56.mat 133.4703 4 429136 448892 +1789229 1868197 78969 16289388.3701 16293336.7905 127.9375 127.9375 2.1875e-05 run56.mat 145.2728 4 455261 475004 +1893741 1974539 80799 16294613.3803 16298654.8403 127.9375 127.9375 7.389e-06 run56.mat 153.5104 4 481390 501590 +1999938 2080579 80642 16299925.215 16303957.2196 127.9375 127.9375 0 run56.mat 165.5093 4 507941 528101 +2106384 2185519 79136 16305246.595 16309204.1639 127.9375 127.9375 2.9341e-06 run56.mat 173.6868 4 534553 554338 +2210832 2291964 81133 16310469.6761 16314524.8792 127.9375 127.9375 3.2936e-06 run56.mat 185.655 4 560667 580950 +2317492 2398495 81004 16315803.6451 16319851.9661 127.9375 127.9375 0 run56.mat 193.9947 4 587333 607584 +2423528 2506792 83265 16321103.9472 16325268.6245 127.9375 127.9375 5.6864e-06 run56.mat 202.4671 4 613842 634659 +2532330 2615396 83067 16326546.0545 16330697.5457 127.9375 127.9375 0 run56.mat 214.7295 4 641044 661812 +2640923 2928907 287985 16331973.3995 16346371.1699 127.9375 127.9375 8.1529e-07 run56.mat 221 4 668194 740178 +2 301046 301045 16381711.0006 16396761.6314 127.9375 127.9375 1.557e-05 run57.mat 197.4719 3.8931 10325 85583 +403106 463044 59939 16401865.9576 16404864.3735 127.9375 127.9375 0 run57.mat 1 3 111098 126083 +565092 627267 62176 16409963.849 16413074.2543 127.9375 127.9375 1.0215e-05 run57.mat 1 3 151597 167141 +636842 697492 60651 16413552.9899 16416585.4778 127.9375 127.9375 9.4247e-06 run57.mat 2.4677 3 169535 184698 +799551 859561 60011 16421689.2892 16424690.0802 127.9375 127.9375 9.1018e-06 run57.mat 11 3 210214 225217 +900082 962151 62070 16426714.3917 16429818.6621 127.9375 127.9375 8.7999e-06 run57.mat 11.39 3 235348 250866 +1064211 1126242 62032 16434921.1319 16438021.2949 127.9375 127.9375 0 run57.mat 21 3 276382 291890 +1138877 1200598 61722 16438655.1951 16441740.5203 127.9375 127.9375 0 run57.mat 21.3252 3 295049 310480 +1302629 1364623 61995 16446842.0044 16449943.4737 127.9375 127.9375 2.9505e-05 run57.mat 31 3 335989 351488 +1377316 1438981 61666 16450576.453 16453659.8194 127.9375 127.9375 8.8575e-06 run57.mat 31.0601 3 354662 370078 +1541009 1603086 62078 16458762.0412 16461863.8416 127.9375 127.9375 9.0029e-06 run57.mat 41 3 395587 411107 +1615829 1677233 61405 16462502.1131 16465573.4055 127.9375 127.9375 5.8541e-05 run57.mat 41 3 414292 429644 +1779210 1841324 62115 16470671.162 16473777.687 127.9375 127.9375 1.82e-05 run57.mat 51 3 455140 470669 +1854109 1917564 63456 16474416.3447 16477590.828 127.9375 127.9375 9.2079e-06 run57.mat 51 3 473865 489730 +2019528 2081638 62111 16482689.1801 16485793.3804 127.9375 127.9375 9.2032e-06 run57.mat 61 3 515222 530750 +2094413 2155951 61539 16486431.2054 16489509.4033 127.9375 127.9375 1.837e-05 run57.mat 61 3 533944 549329 +2257948 2321916 63969 16494609.2225 16497808.858 127.9375 127.9375 8.5386e-06 run57.mat 71 3 574829 590822 +2334698 2398278 63581 16498447.3245 16501626.6781 127.9375 127.9375 8.7901e-06 run57.mat 71 3 594018 609914 +2500267 2564235 63969 16506725.0266 16509924.1175 127.9375 127.9375 0 run57.mat 81 3 635412 651405 +2576990 2640379 63390 16510562.0463 16513732.46 127.9375 127.9375 1.8035e-05 run57.mat 81.2784 3 654594 670441 +2742367 2806511 64145 16518830.8586 16522037.4257 127.9375 127.9375 8.7128e-06 run57.mat 91 3 695939 711976 +2819309 2882698 63390 16522676.8697 16525848.2427 127.9375 127.9375 1.8035e-05 run57.mat 91.6535 3 715176 731024 +2984687 3048840 64154 16530946.1301 16534152.6119 127.9375 127.9375 8.514e-06 run57.mat 101 3 756522 772561 +3061627 3124989 63363 16534792.7557 16537962.1187 127.9375 127.9375 1.7842e-05 run57.mat 102.0153 3 775758 791599 +3226986 3290943 63958 16543060.9568 16546260.2275 127.9375 127.9375 0 run57.mat 111 3 817099 833090 +3303757 3367099 63343 16546902.0108 16550068.8879 127.9375 127.9375 2.8275e-05 run57.mat 112.26 3 836293 852129 +3469086 3535320 66235 16555168.5522 16558477.1081 127.9375 127.9375 1.7452e-05 run57.mat 121 3 877627 894187 +3548137 3613319 65183 16559120.1239 16562381.08 127.9375 127.9375 0 run57.mat 123.2585 3 897391 913686 +3715285 3779459 64175 16567475.9515 16570686.9974 127.9375 127.9375 0 run57.mat 131 3 939180 955224 +3792319 3855622 63304 16571330.742 16574495.4489 127.9375 127.9375 1.8059e-05 run57.mat 133.6546 3 958439 974266 +3957565 4023778 66214 16579592.389 16582901.5494 127.9375 127.9375 1.6882e-05 run57.mat 141 3 999753 1016306 +4036663 4099939 63277 16583545.9527 16586710.6303 127.9375 127.9375 1.7264e-05 run57.mat 144.3664 3 1019527 1035348 +4201883 4265871 63989 16591806.2588 16595007.16 127.9375 127.9375 8.7341e-06 run57.mat 151 3 1060835 1076832 +4278750 4342014 63265 16595649.5714 16598813.8865 127.9375 127.9375 8.834e-06 run57.mat 154.6634 3 1080052 1095869 +4443964 4508098 64135 16603911.4574 16607117.0697 127.9375 127.9375 9.9027e-06 run57.mat 161 3 1121358 1137391 +4520974 4586122 65149 16607762.3751 16611019.1516 127.9375 127.9375 4.3479e-05 run57.mat 161 3 1140611 1156898 +4688062 4752250 64189 16616119.1573 16619325.8829 127.9375 127.9375 4.5515e-05 run57.mat 171 3 1182385 1198433 +4765142 4830459 65318 16619972.1774 16623238.2603 127.9375 127.9375 2.5475e-05 run57.mat 171.291 3 1201656 1217986 +4932403 4996340 63938 16628334.7299 16631531.9311 127.9375 127.9375 1.8476e-05 run57.mat 181 3 1243473 1259458 +5009245 5074578 65334 16632176.1993 16635443.5385 127.9375 127.9375 2.6441e-05 run57.mat 181.912 3 1262684 1279018 +5176523 5242548 66026 16640541.6697 16643842.2343 127.9375 127.9375 3.54e-05 run57.mat 191 3 1304506 1321012 +5255448 5320746 65299 16644488.3054 16647753.1819 127.9375 127.9375 1.7508e-05 run57.mat 192.8294 3 1324237 1340563 +5422682 5488739 66058 16652848.3626 16656150.8807 127.9375 127.9375 8.6533e-06 run57.mat 201 3 1366048 1382563 +5501653 5566958 65306 16656796.3553 16660062.8138 127.9375 127.9375 3.4621e-05 run57.mat 203.8049 3 1385791 1402119 +5668882 5733057 64176 16665159.3028 16668367.7039 127.9375 127.9375 1.8408e-05 run57.mat 211 3 1427600 1443645 +5745993 5811251 65259 16669014.0401 16672275.6465 127.9375 127.9375 8.7592e-06 run57.mat 214.4739 3 1446879 1463194 +5913200 5979226 66027 16677377.3401 16680679.5487 127.9375 127.9375 3.4051e-05 run57.mat 221 3 1488683 1505190 +5992150 6083573 91424 16681321.9519 16685896.2694 127.9375 127.9375 1.8896e-05 run57.mat 221 3 1508421 1531282 +2 259664 259663 -35340.1134 -22354.308 127.9375 127.9375 1.7708e-05 run58.mat 200.3165 3.094 1 1 +304032 376137 72106 -20135.4457 -16529.4445 127.9375 127.9375 7.5751e-06 run58.mat 3.8965 4 1 1 +407096 480776 73681 -14981.1719 -11296.4043 127.9375 127.9375 3.1204e-05 run58.mat 11.7498 4 1 1 +506451 579703 73253 -10012.3867 -6349.0235 127.9375 127.9375 1.6127e-05 run58.mat 22.9756 4 1 1 +605435 678104 72670 -5062.1554 -1427.9483 127.9375 127.9375 1.5906e-05 run58.mat 34.1474 4 1 1 +703925 778754 74830 -136.6293 3601.7688 127.9375 127.9375 1.5108e-05 run58.mat 45.4745 4 1 1 +804572 879203 74632 4894.5625 8627.3598 127.9375 127.9375 1.5658e-05 run58.mat 52.8694 4 1 1 +904999 979707 74709 9915.8046 13653.235 127.9375 127.9375 1.5303e-05 run58.mat 64.2734 4 1 1 +1005490 1082117 76628 14940.6309 18772.9396 127.9375 127.9375 2.2379e-05 run58.mat 71.8671 4 1 1 +1107916 1185081 77166 20061.3719 23921.021 127.9375 127.9375 0 run58.mat 83.567 4 1 1 +1210550 1287417 76868 25194.1432 29036.6157 127.9375 127.9375 3.0571e-05 run58.mat 95.187 4 1 1 +1312960 1389829 76870 30312.5404 34157.5014 127.9375 127.9375 7.1056e-06 run58.mat 102.9041 4 1 1 +1415337 1494305 78969 35433.2548 39381.6886 127.9375 127.9375 2.2037e-05 run58.mat 114.6485 4 1 1 +1519845 1600690 80846 40659.1703 44700.3638 127.9375 127.9375 2.1682e-05 run58.mat 122.9094 4 1 1 +1626152 1704633 78482 45976.1381 49899.1527 127.9375 127.9375 8.2547e-06 run58.mat 134.7103 4 1 1 +1730468 1809411 78944 51188.845 55137.1316 127.9375 127.9375 1.432e-05 run58.mat 142.7604 4 1 1 +1834942 1915445 80504 56413.5712 60439.7015 127.9375 127.9375 2.1775e-05 run58.mat 154.718 4 1 1 +1941297 2021815 80519 61732.8802 65758.0965 127.9375 127.9375 0 run58.mat 163.027 4 1 1 +2047576 2128762 81187 67046.3614 71104.2456 127.9375 127.9375 2.9718e-06 run58.mat 175.1223 4 1 1 +2154191 2235042 80852 72376.1049 76419.0363 127.9375 127.9375 2.9679e-06 run58.mat 183.4523 4 1 1 +2260537 2343704 83168 77693.3486 81851.8027 127.9375 127.9375 2.8385e-06 run58.mat 195.6183 4 1 1 +2369014 2450170 81157 83115.6935 87175.9994 127.9375 127.9375 0 run58.mat 204.0676 4 1 1 +2475530 2558763 83234 88442.4342 92605.5395 127.9375 127.9375 0 run58.mat 212.6013 4 1 1 +2584075 2854646 270572 93872.9224 107403.5107 127.9375 127.9375 4.4154e-06 run58.mat 221 4 1 1 +2 323934 323933 150591.1524 166789.1965 127.9375 127.9375 2.9154e-05 run59.mat 202.579 4 1 1 +368375 458649 90275 169011.9744 173525.2568 127.9375 127.9375 6.0505e-06 run59.mat 5.6234 4 1 1 +489367 561330 71964 175060.1277 178658.5281 127.9375 127.9375 7.7662e-06 run59.mat 14.3986 4 1 1 +587053 660053 73001 179944.6805 183595.7072 127.9375 127.9375 7.4822e-06 run59.mat 21.4138 4 1 1 +685809 758734 72926 184882.0633 188529.2711 127.9375 127.9375 2.334e-05 run59.mat 32.6375 4 1 1 +784518 859229 74712 189817.8569 193553.5473 127.9375 127.9375 2.4993e-05 run59.mat 43.9735 4 1 1 +885031 959680 74650 194843.5325 198577.0936 127.9375 127.9375 7.8271e-06 run59.mat 55.408 4 1 1 +985469 1062124 76656 199864.4928 203699.8846 127.9375 127.9375 7.7884e-06 run59.mat 63.0024 4 1 1 +1087891 1164804 76914 204988.3623 208832.2886 127.9375 127.9375 7.2664e-06 run59.mat 74.6417 4 1 1 +1190310 1267110 76801 210105.9687 213946.6279 127.9375 127.9375 0 run59.mat 82.3536 4 1 1 +1292654 1369488 76835 215224.3493 219068.8434 127.9375 127.9375 2.1657e-05 run59.mat 93.9249 4 1 1 +1395036 1472159 77124 220342.5961 224200.8895 127.9375 127.9375 2.8658e-05 run59.mat 105.588 4 1 1 +1497702 1574274 76573 225476.9946 229306.5245 127.9375 127.9375 2.1731e-05 run59.mat 113.2853 4 1 1 +1600104 1679081 78978 230598.3925 234547.1061 127.9375 127.9375 1.4154e-05 run59.mat 125.0855 4 1 1 +1704625 1783056 78432 235823.819 239745.1384 127.9375 127.9375 2.2998e-05 run59.mat 133.0784 4 1 1 +1808874 1887761 78888 241036.5846 244979.4844 127.9375 127.9375 0 run59.mat 144.9202 4 1 1 +1913333 1994196 80864 246259.8193 250302.9047 127.9375 127.9375 2.1363e-05 run59.mat 153.0529 4 1 1 +2019694 2100201 80508 251577.7217 255602.3215 127.9375 127.9375 0 run59.mat 165.1469 4 1 1 +2126005 2207196 81192 256893.0945 260953.0502 127.9375 127.9375 2.9716e-06 run59.mat 173.51 4 1 1 +2232610 2313735 81126 262221.9412 266281.7239 127.9375 127.9375 0 run59.mat 185.5508 4 1 1 +2339174 2420137 80964 267550.107 271600.691 127.9375 127.9375 0 run59.mat 193.8729 4 1 1 +2445604 2528721 83118 272872.615 277028.7015 127.9375 127.9375 0 run59.mat 206.0151 4 1 1 +2554041 2637230 83190 278296.166 282455.0831 127.9375 127.9375 0 run59.mat 214.6557 4 1 1 +2662739 3095930 433192 283730.9913 305392.1907 127.9375 127.9375 2.2727e-06 run59.mat 221 4 1 1 +2 267952 267951 12731000.3158 12744389.3863 127.9375 127.9375 1.801e-05 run6.mat -1 -1 25068 158976 +369776 447841 78066 12749481.6918 12753383.8686 127.9375 127.9375 0 run6.mat -1 -1 209890 248923 +549655 627745 78091 12758474.2991 12762379.9064 127.9375 127.9375 1.9515e-05 run6.mat -1 -1 299833 338880 +729533 807763 78231 12767468.5419 12771381.7281 127.9375 127.9375 0 run6.mat -1 -1 389776 428893 +909575 987789 78215 12776471.8299 12780382.2283 127.9375 127.9375 0 run6.mat -1 -1 479801 518910 +1089574 1167678 78105 12785472.2763 12789377.7372 127.9375 127.9375 0 run6.mat -1 -1 569805 608858 +1269433 1347702 78270 12794464.5111 12798379.052 127.9375 127.9375 0 run6.mat -1 -1 659738 698874 +1449493 1527623 78131 12803466.0121 12807374.5939 127.9375 127.9375 3.9011e-05 run6.mat -1 -1 749772 788839 +1629373 1707676 78304 12812464.2499 12816377.0798 127.9375 127.9375 1.9462e-05 run6.mat -1 -1 839716 878869 +1809453 1887678 78226 12821465.7797 12825378.6512 127.9375 127.9375 1.9482e-05 run6.mat -1 -1 929760 968874 +1989472 2067427 77956 12830467.9296 12834365.1641 127.9375 127.9375 1.9549e-05 run6.mat -1 -1 1019773 1058753 +2169312 2247616 78305 12839458.6191 12843374.1637 127.9375 127.9375 0 run6.mat -1 -1 1109698 1148851 +2349391 2427523 78133 12848463.9015 12852372.0796 127.9375 127.9375 1.9505e-05 run6.mat -1 -1 1199741 1238808 +2529291 2607560 78270 12857460.2834 12861373.5965 127.9375 127.9375 0 run6.mat -1 -1 1289695 1328831 +2709331 2787600 78270 12866462.4229 12870375.6277 127.9375 127.9375 4.0564e-05 run6.mat -1 -1 1379718 1418855 +2889371 2967465 78095 12875461.8554 12879367.8857 127.9375 127.9375 3.9029e-05 run6.mat -1 -1 1469743 1508791 +3069230 3147348 78119 12884457.0065 12888363.1243 127.9375 127.9375 0 run6.mat -1 -1 1559676 1598737 +3249089 3327410 78322 12893449.0129 12897364.8724 127.9375 127.9375 3.8916e-05 run6.mat -1 -1 1649609 1688772 +3429170 3507226 78057 12902455.8302 12906357.7203 127.9375 127.9375 0 run6.mat -1 -1 1739654 1778683 +3609029 3687289 78261 12911447.1607 12915359.2538 127.9375 127.9375 2.1096e-05 run6.mat -1 -1 1829587 1868719 +3789070 3867161 78092 12920450.3829 12924354.2466 127.9375 127.9375 0 run6.mat -1 -1 1919612 1958659 +3968948 4047230 78283 12929444.2886 12933356.14 127.9375 127.9375 5.8402e-05 run6.mat -1 -1 2009555 2048697 +4149028 4227151 78124 12938448.3468 12942354.2856 127.9375 127.9375 1.9507e-05 run6.mat -1 -1 2099599 2138662 +4328928 4406998 78071 12947442.342 12951346.271 127.9375 127.9375 1.952e-05 run6.mat -1 -1 2189553 2228589 +4508747 4587022 78276 12956434.0139 12960347.3688 127.9375 127.9375 0 run6.mat -1 -1 2279466 2318605 +4688787 4766869 78083 12965436.445 12969338.8266 127.9375 127.9375 0 run6.mat -1 -1 2369490 2408533 +4868707 4946772 78066 12974430.7965 12978334.1101 127.9375 127.9375 1.9522e-05 run6.mat -1 -1 2459454 2498488 +5048566 5126825 78260 12983425.1455 12987337.0682 127.9375 127.9375 0 run6.mat -1 -1 2549388 2588518 +5228626 5306714 78089 12992427.5346 12996332.6545 127.9375 127.9375 3.9032e-05 run6.mat -1 -1 2639421 2678467 +5408506 5486670 78165 13001422.7704 13005329.8899 127.9375 127.9375 1.9497e-05 run6.mat -1 -1 2729365 2768449 +5588526 5666602 78077 13010424.3608 13014326.9782 127.9375 127.9375 2.2772e-05 run6.mat -1 -1 2819379 2858419 +5768405 5846590 78186 13019418.77 13023325.8448 127.9375 127.9375 1.9492e-05 run6.mat -1 -1 2909323 2948417 +5948466 6026584 78119 13028421.2584 13032327.8822 127.9375 127.9375 0 run6.mat -1 -1 2999357 3038418 +6128365 6206617 78253 13037415.3162 13041327.2135 127.9375 127.9375 0 run6.mat -1 -1 3089311 3128438 +6308405 6386703 78299 13046419.1688 13050332.2518 127.9375 127.9375 2.1085e-05 run6.mat -1 -1 3179335 3218485 +6488464 6566776 78313 13055419.2525 13059338.9323 127.9375 127.9375 5.838e-05 run6.mat -1 -1 3269368 3308526 +6668523 6746531 78009 13064422.8508 13068325.0139 127.9375 127.9375 0 run6.mat -1 -1 3359401 3398407 +6848425 6926502 78078 13073419.6178 13077323.0331 127.9375 127.9375 0 run6.mat -1 -1 3449357 3488396 +7028303 7106556 78254 13082414.1632 13086327.0163 127.9375 127.9375 1.9475e-05 run6.mat -1 -1 3539299 3578427 +7208344 7286652 78309 13091415.545 13095329.3489 127.9375 127.9375 3.8922e-05 run6.mat -1 -1 3629324 3668480 +7388402 7466738 78337 13100420.9213 13104337.574 127.9375 127.9375 1.9454e-05 run6.mat -1 -1 3719357 3758526 +7568523 7646606 78084 13109426.1789 13113328.3416 127.9375 127.9375 2.1143e-05 run6.mat -1 -1 3809421 3848465 +7748382 7826536 78155 13118417.5695 13122326.284 127.9375 127.9375 0 run6.mat -1 -1 3899355 3938434 +7928342 8006594 78253 13127416.7586 13131328.6459 127.9375 127.9375 0 run6.mat -1 -1 3989339 4028466 +8092936 8223766 130831 13135646.3852 13142184.3747 127.9375 127.9375 2.4267e-05 run6.mat -1 -1 4071639 4137024 +2 302837 302836 350356.4255 365503.339 127.9375 127.9375 9.6894e-06 run60.mat 212.7434 3.9625 9851 60339 +404897 464990 60094 370605.9879 373612.4033 127.9375 127.9375 0 run60.mat 1 3 77350 87366 +567051 626987 59937 378714.2307 381711.1863 127.9375 127.9375 0 run60.mat 1 3 104377 114367 +635315 697199 61885 382128.3458 385220.9304 127.9375 127.9375 4.4541e-05 run60.mat 3.4992 3 115754 126069 +799276 859257 59982 390325.4229 393323.5217 127.9375 127.9375 1.8212e-05 run60.mat 11 3 143082 153080 +899783 961662 61880 395350.929 398445.0814 127.9375 127.9375 1.0264e-05 run60.mat 12.6596 3 159834 170148 +1063716 1125722 62007 403547.5006 406649.4321 127.9375 127.9375 2.827e-05 run60.mat 21 3 187157 197493 +1138339 1200037 61699 407277.9329 410364.6749 127.9375 127.9375 8.8528e-06 run60.mat 22.4011 3 199595 209879 +1302095 1364101 62007 415465.5997 418567.7332 127.9375 127.9375 4.6297e-05 run60.mat 31 3 226889 237224 +1376748 1438455 61708 419200.0653 422286.8746 127.9375 127.9375 1.8938e-05 run60.mat 32.1218 3 239332 249614 +1540475 1602511 62037 427385.8233 430487.6459 127.9375 127.9375 0 run60.mat 41 3 266621 276961 +1615278 1678717 63440 431126.9875 434298.6332 127.9375 127.9375 0 run60.mat 42.1104 3 279089 289663 +1780694 1844637 63944 439397.277 442592.904 127.9375 127.9375 1.0131e-05 run60.mat 51 3 306659 317317 +1857447 1921018 63572 443236.2191 446412.4837 127.9375 127.9375 8.7914e-06 run60.mat 52.511 3 319452 330048 +2022994 2085096 62103 451512.3989 454617.0465 127.9375 127.9375 0 run60.mat 61 3 347044 357395 +2097865 2161243 63379 455255.6968 458424.7762 127.9375 127.9375 9.219e-06 run60.mat 62.5508 3 359523 370087 +2263234 2327212 63979 463526.3418 466722.3554 127.9375 127.9375 1.0126e-05 run60.mat 71 3 387086 397750 +2340003 2403386 63384 467363.2031 470532.7165 127.9375 127.9375 8.8174e-06 run60.mat 72.854 3 399882 410446 +2505373 2569517 64145 475631.0065 478839.2119 127.9375 127.9375 0 run60.mat 81 3 427445 438135 +2582284 2645679 63396 479476.8867 482647.835 127.9375 127.9375 1.0219e-05 run60.mat 83.2119 3 430264 430264 +2747673 2811567 63895 487746.4455 490941.9292 127.9375 127.9375 8.7469e-06 run60.mat 91 3 430264 430264 +2824373 2887739 63367 491582.3567 494750.0722 127.9375 127.9375 8.6198e-06 run60.mat 93.579 3 430264 430264 +2989713 3051831 62119 499849.2098 502954.2008 127.9375 127.9375 9.611e-06 run60.mat 101 3 430264 430264 +3064610 3128037 63428 503593.3522 506765.7022 127.9375 127.9375 1.9426e-05 run60.mat 103.6141 3 430264 430264 +3229986 3294130 64145 511864.1981 515070.3358 127.9375 127.9375 8.5152e-06 run60.mat 111 3 430264 430264 +3306940 3370138 63199 515709.5697 518870.8881 127.9375 127.9375 8.6427e-06 run60.mat 113.9623 3 430264 430264 +3472129 3536278 64150 523971.1619 527176.958 127.9375 127.9375 0 run60.mat 121 3 430264 430264 +3549097 3612461 63365 527818.8577 530988.1565 127.9375 127.9375 1.0224e-05 run60.mat 124.318 3 430264 430264 +3714412 3778387 63976 536082.9262 539283.569 127.9375 127.9375 1.7671e-05 run60.mat 131 3 430264 430264 +3791252 3854567 63316 539927.3947 543092.6784 127.9375 127.9375 1.7253e-05 run60.mat 134.6563 3 430264 430264 +3956530 4020675 64146 548190.6693 551397.2265 127.9375 127.9375 0 run60.mat 141 3 430264 430264 +4033556 4096834 63279 552041.71 555204.7867 127.9375 127.9375 0 run60.mat 141 3 430264 430264 +4198771 4262819 64049 560303.4009 563506.2497 127.9375 127.9375 0 run60.mat 151 3 430264 430264 +4275695 4341025 65331 564149.7149 567415.9201 127.9375 127.9375 2.6053e-05 run60.mat 151 3 430264 430264 +4442971 4506938 63968 572514.0708 575711.8847 127.9375 127.9375 1.807e-05 run60.mat 161 3 430264 430264 +4519812 4584933 65122 576354.8482 579611.6462 127.9375 127.9375 3.4135e-05 run60.mat 161.5057 3 430264 430264 +4686891 4751034 64144 584708.5854 587915.3224 127.9375 127.9375 8.5153e-06 run60.mat 171 3 430264 430264 +4763920 4829064 65145 588560.9163 591817.9528 127.9375 127.9375 8.9691e-06 run60.mat 172.152 3 430264 430264 +4931026 4995196 64171 596918.2886 600125.2635 127.9375 127.9375 8.7093e-06 run60.mat 181 3 430264 430264 +5008080 5073282 65203 600769.6297 604031.3461 127.9375 127.9375 3.5845e-05 run60.mat 182.8193 3 430264 430264 +5175209 5241287 66079 609129.1907 612431.5927 127.9375 127.9375 4.1906e-05 run60.mat 191 3 430264 430264 +5254205 5319507 65303 613078.1334 616343.8128 127.9375 127.9375 8.3642e-06 run60.mat 193.7728 3 430264 430264 +5421429 5485611 64183 621437.5124 624650.2386 127.9375 127.9375 1.1479e-05 run60.mat 201 3 430264 430264 +5498546 5563865 65320 625293.9702 628562.1382 127.9375 127.9375 1.6918e-05 run60.mat 204.4393 3 430264 430264 +5665749 5731814 66066 633653.8245 636958.0119 127.9375 127.9375 8.4595e-06 run60.mat 211 3 430264 430264 +5744759 5810097 65339 637606.3435 640874.0946 127.9375 127.9375 0 run60.mat 211 3 430264 430264 +5911949 5978013 66065 645964.5543 649268.313 127.9375 127.9375 1.6727e-05 run60.mat 221 3 430264 430264 +5990931 6055711 64781 649915.152 653150.9918 127.9375 127.9375 0 run60.mat 221 3 430264 430264 +2 281310 281309 13224687.6588 13238745.6509 127.9375 127.9375 1.6704e-05 run7.mat -1 -1 17434 158029 +383092 461402 78311 13243835.7871 13247752.6289 127.9375 127.9375 1.9461e-05 run7.mat -1 -1 208923 248079 +563171 641193 78023 13252841.5611 13256741.4021 127.9375 127.9375 4.0692e-05 run7.mat -1 -1 298966 337979 +743011 821333 78323 13261833.9977 13265747.9452 127.9375 127.9375 1.9458e-05 run7.mat -1 -1 388890 428052 +923111 1001346 78236 13270838.3945 13274749.1174 127.9375 127.9375 1.9479e-05 run7.mat -1 -1 478944 518063 +1103130 1181204 78075 13279839.1775 13283742.9746 127.9375 127.9375 3.9039e-05 run7.mat -1 -1 568957 607996 +1282971 1361282 78312 13288832.1953 13292744.9141 127.9375 127.9375 0 run7.mat -1 -1 658882 698039 +1463070 1541106 78037 13297835.4902 13301739.2454 127.9375 127.9375 0 run7.mat -1 -1 748935 787955 +1642889 1721096 78208 13306826.8571 13310739.2289 127.9375 127.9375 0 run7.mat -1 -1 838849 877954 +1822989 1900901 77913 13315833.079 13319727.6037 127.9375 127.9375 1.956e-05 run7.mat -1 -1 928902 967860 +2002789 2081046 78258 13324822.0151 13328736.5814 127.9375 127.9375 3.8947e-05 run7.mat -1 -1 1018807 1057937 +2182848 2260907 78060 13333824.311 13337728.9273 127.9375 127.9375 1.9523e-05 run7.mat -1 -1 1108840 1147871 +2362689 2440832 78144 13342818.4575 13346724.8169 127.9375 127.9375 4.0629e-05 run7.mat -1 -1 1198764 1237838 +2542588 2620702 78115 13351812.9835 13355718.4995 127.9375 127.9375 1.9509e-05 run7.mat -1 -1 1288718 1327777 +2722468 2800687 78220 13360807.1144 13364717.2878 127.9375 127.9375 1.9483e-05 run7.mat -1 -1 1378662 1417773 +2902488 2980651 78164 13369808.9853 13373717.1956 127.9375 127.9375 3.8994e-05 run7.mat -1 -1 1468676 1507759 +3082408 3160477 78070 13378804.0885 13382707.9367 127.9375 127.9375 0 run7.mat -1 -1 1558640 1597676 +3262267 3340329 78063 13387796.3542 13391699.0224 127.9375 127.9375 0 run7.mat -1 -1 1648573 1687606 +3442087 3520277 78191 13396791.4317 13400699.7403 127.9375 127.9375 3.8981e-05 run7.mat -1 -1 1738487 1777584 +3622167 3700209 78043 13405793.1179 13409694.7657 127.9375 127.9375 0 run7.mat -1 -1 1828531 1867554 +3801985 3880100 78116 13414785.7172 13418691.0885 127.9375 127.9375 6.0153e-05 run7.mat -1 -1 1918444 1957503 +3981826 4059918 78093 13423777.7099 13427681.9184 127.9375 127.9375 3.903e-05 run7.mat -1 -1 2008369 2047416 +4161705 4239891 78187 13432769.7628 13436678.2978 127.9375 127.9375 3.8983e-05 run7.mat -1 -1 2098312 2137406 +4341784 4419870 78087 13441773.6812 13445678.8321 127.9375 127.9375 3.9033e-05 run7.mat -1 -1 2188355 2227400 +4521644 4599667 78024 13450767.6045 13454669.3144 127.9375 127.9375 2.2787e-05 run7.mat -1 -1 2278289 2317302 +4701484 4779589 78106 13459759.9804 13463665.4385 127.9375 127.9375 0 run7.mat -1 -1 2368213 2407267 +4881364 4959463 78100 13468753.3363 13472658.7225 127.9375 127.9375 0 run7.mat -1 -1 2458157 2497208 +5061244 5139348 78105 13477747.8443 13481653.7241 127.9375 127.9375 1.9512e-05 run7.mat -1 -1 2548101 2587155 +5241123 5319083 77961 13486743.6991 13490639.8477 127.9375 127.9375 0 run7.mat -1 -1 2638044 2677026 +5420983 5499099 78117 13495735.9306 13499641.8221 127.9375 127.9375 6.3403e-05 run7.mat -1 -1 2727978 2767038 +5600983 5679079 78097 13504736.6621 13508639.5 127.9375 127.9375 0 run7.mat -1 -1 2817982 2857032 +5780862 5860757 79896 13513730.0327 13517722.9473 127.9375 127.9375 6.0402e-05 run7.mat -1 -1 2907926 2947875 +5962582 6040652 78071 13522815.8351 13526719.4117 127.9375 127.9375 1.952e-05 run7.mat -1 -1 2998790 3037827 +6142462 6220535 78074 13531811.4696 13535714.0695 127.9375 127.9375 0 run7.mat -1 -1 3088733 3127772 +6322321 6400572 78252 13540803.1812 13544716.8404 127.9375 127.9375 1.9475e-05 run7.mat -1 -1 3178667 3217795 +6502321 6580424 78104 13549802.798 13553710.9284 127.9375 127.9375 3.9024e-05 run7.mat -1 -1 3268671 3307725 +6682182 6760416 78235 13558796.9604 13562708.7626 127.9375 127.9375 1.9479e-05 run7.mat -1 -1 3358605 3397724 +6862221 6940181 77961 13567799.2741 13571696.4521 127.9375 127.9375 1.9548e-05 run7.mat -1 -1 3448629 3487611 +7042081 7120298 78218 13576791.0222 13580704.544 127.9375 127.9375 3.8967e-05 run7.mat -1 -1 3538563 3577673 +7222180 7300178 77999 13585796.9115 13589696.3511 127.9375 127.9375 2.1166e-05 run7.mat -1 -1 3628616 3667617 +7401958 7480196 78239 13594786.9522 13598697.944 127.9375 127.9375 1.9478e-05 run7.mat -1 -1 3718510 3757630 +7582040 7660341 78302 13603789.9345 13607707.7074 127.9375 127.9375 0 run7.mat -1 -1 3808554 3847707 +7762119 7840205 78087 13612795.3342 13616696.9044 127.9375 127.9375 6.0175e-05 run7.mat -1 -1 3898598 3937643 +7941999 8020077 78079 13621789.624 13625690.7233 127.9375 127.9375 0 run7.mat -1 -1 3988541 4027582 +8105975 8452605 346631 13629987.0714 13647315.9836 127.9375 127.9375 1.8319e-05 run7.mat -1 -1 4070533 4243836 +2 298433 298432 13897557.0825 13912480.3195 127.9375 127.9375 0 run8.mat -1 -1 19914 169148 +400313 478603 78291 13917573.5408 13921489.3276 127.9375 127.9375 0 run8.mat -1 -1 220090 259237 +580373 658499 78127 13926576.1666 13930483.0256 127.9375 127.9375 1.9506e-05 run8.mat -1 -1 310124 349189 +760272 838551 78280 13935571.5271 13939485.2282 127.9375 127.9375 0 run8.mat -1 -1 400078 439219 +940332 1018590 78259 13944573.8454 13948487.7905 127.9375 127.9375 5.842e-05 run8.mat -1 -1 490112 529242 +1120411 1198683 78273 13953577.6569 13957492.9259 127.9375 127.9375 0 run8.mat -1 -1 580155 619293 +1300511 1378884 78374 13962582.9738 13966504.4064 127.9375 127.9375 0 run8.mat -1 -1 670209 709397 +1480650 1558942 78293 13971592.9948 13975507.5785 127.9375 127.9375 0 run8.mat -1 -1 760282 799430 +1660711 1738753 78043 13980593.437 13984496.2872 127.9375 127.9375 0 run8.mat -1 -1 850317 889340 +1840650 1918989 78340 13989592.2739 13993509.0149 127.9375 127.9375 3.8907e-05 run8.mat -1 -1 940290 979461 +2020750 2099078 78329 13998597.6733 14002513.0091 127.9375 127.9375 0 run8.mat -1 -1 1030344 1069510 +2200850 2278837 77988 14007602.3784 14011500.801 127.9375 127.9375 0 run8.mat -1 -1 1120398 1159393 +2380729 2459026 78298 14016597.1409 14020512.597 127.9375 127.9375 0 run8.mat -1 -1 1210342 1249492 +2560829 2639382 78554 14025601.8085 14029527.7875 127.9375 127.9375 0 run8.mat -1 -1 1300396 1339674 +2741128 2819386 78259 14034615.7851 14038530.7965 127.9375 127.9375 0 run8.mat -1 -1 1390549 1429680 +2921168 2999478 78311 14043618.8499 14047532.925 127.9375 127.9375 0 run8.mat -1 -1 1480573 1519729 +3101268 3179602 78335 14052624.0359 14056541.3444 127.9375 127.9375 1.9455e-05 run8.mat -1 -1 1570627 1609796 +3281387 3361500 80114 14061629.767 14065635.4584 127.9375 127.9375 3.8045e-05 run8.mat -1 -1 1660690 1700749 +3463327 3541605 78279 14070728.7009 14074639.7299 127.9375 127.9375 3.8937e-05 run8.mat -1 -1 1751664 1790805 +3643407 3721697 78291 14079732.149 14083646.6955 127.9375 127.9375 1.9465e-05 run8.mat -1 -1 1841709 1880855 +3823447 3901773 78327 14088733.3914 14092651.7 127.9375 127.9375 1.9457e-05 run8.mat -1 -1 1931732 1970897 +4003547 4081649 78103 14097739.2419 14101644.9163 127.9375 127.9375 1.9512e-05 run8.mat -1 -1 2021786 2060839 +4183406 4261742 78337 14106733.1592 14110648.6781 127.9375 127.9375 0 run8.mat -1 -1 2111719 2150890 +4363506 4441840 78335 14115736.6309 14119654.2354 127.9375 127.9375 0 run8.mat -1 -1 2201773 2240942 +4543585 4621854 78270 14124740.1874 14128656.3318 127.9375 127.9375 0 run8.mat -1 -1 2291817 2330953 +4723624 4801888 78265 14133744.8393 14137657.3389 127.9375 127.9375 2.1094e-05 run8.mat -1 -1 2381841 2420974 +4903684 4982028 78345 14142745.4777 14146665.0137 127.9375 127.9375 1.9452e-05 run8.mat -1 -1 2471874 2511048 +5083805 5162134 78330 14151750.845 14155668.48 127.9375 127.9375 0 run8.mat -1 -1 2561939 2601105 +5263925 5342106 78182 14160757.8387 14164668.343 127.9375 127.9375 0 run8.mat -1 -1 2652003 2691095 +5444004 5522270 78267 14169762.8736 14173678.9361 127.9375 127.9375 0 run8.mat -1 -1 2742046 2781181 +5624043 5702226 78184 14178764.3585 14182672.9098 127.9375 127.9375 4.0608e-05 run8.mat -1 -1 2832069 2871163 +5804124 5882226 78103 14187770.2745 14191674.3503 127.9375 127.9375 3.9025e-05 run8.mat -1 -1 2922114 2961167 +5984023 6062311 78289 14196764.7905 14200677.2167 127.9375 127.9375 0 run8.mat -1 -1 3012067 3051213 +6164122 6242211 78090 14205769.6185 14209676.4229 127.9375 127.9375 2.1142e-05 run8.mat -1 -1 3102121 3141167 +6344002 6422134 78133 14214761.297 14218670.8359 127.9375 127.9375 0 run8.mat -1 -1 3192065 3231133 +6524042 6602313 78272 14223765.9254 14227679.2729 127.9375 127.9375 1.947e-05 run8.mat -1 -1 3282089 3321226 +6704082 6782420 78339 14232767.1369 14236684.5854 127.9375 127.9375 0 run8.mat -1 -1 3372113 3411284 +6884202 6962311 78110 14241773.9432 14245679.745 127.9375 127.9375 0 run8.mat -1 -1 3462177 3501233 +7064081 7142371 78291 14250768.8531 14254683.2556 127.9375 127.9375 1.9465e-05 run8.mat -1 -1 3552120 3591267 +7244181 7322205 78025 14259774.1727 14263673.4108 127.9375 127.9375 2.4414e-05 run8.mat -1 -1 3642174 3681188 +7424001 7502248 78248 14268762.5705 14272674.8645 127.9375 127.9375 4.0575e-05 run8.mat -1 -1 3732088 3771213 +7604060 7682333 78274 14277766.948 14281682.5 127.9375 127.9375 1.947e-05 run8.mat -1 -1 3822121 3861260 +7784120 7862190 78071 14286771.4474 14290673.7976 127.9375 127.9375 0 run8.mat -1 -1 3912156 3951192 +7963979 8042132 78154 14295764.7888 14299670.732 127.9375 127.9375 0 run8.mat -1 -1 4002089 4041167 +8128726 8220641 91916 14304002.3001 14308597.1164 127.9375 127.9375 5.2503e-05 run8.mat -1 -1 4084466 4130419 +2 288688 288687 14518069.4157 14532505.0274 127.9375 127.9375 0 run9.mat -1 -1 20441 164790 +390442 468756 78315 14537594.3876 14541507.1982 127.9375 127.9375 0 run9.mat -1 -1 215669 254828 +570522 648687 78166 14546597.8875 14550504.8453 127.9375 127.9375 6.1739e-05 run9.mat -1 -1 305713 344797 +750581 828690 78110 14555601.1784 14559503.6161 127.9375 127.9375 1.9511e-05 run9.mat -1 -1 395747 434803 +930481 1008670 78190 14564594.4449 14568503.92 127.9375 127.9375 3.8981e-05 run9.mat -1 -1 485700 524797 +1110520 1188835 78316 14573597.5929 14577514.5396 127.9375 127.9375 2.1081e-05 run9.mat -1 -1 575724 614883 +1290640 1368648 78009 14582602.7277 14586504.3479 127.9375 127.9375 1.9536e-05 run9.mat -1 -1 665788 704793 +1470500 1548779 78280 14591597.6987 14595512.029 127.9375 127.9375 0 run9.mat -1 -1 755722 794863 +1650560 1728698 78139 14600601.877 14604508.0153 127.9375 127.9375 2.1129e-05 run9.mat -1 -1 845756 884826 +1830479 1908605 78127 14609596.8871 14613503.671 127.9375 127.9375 3.9013e-05 run9.mat -1 -1 935719 974784 +2010499 2088553 78055 14618598.727 14622499.7591 127.9375 127.9375 0 run9.mat -1 -1 1025733 1064762 +2190379 2268626 78248 14627590.1302 14631504.0968 127.9375 127.9375 2.1099e-05 run9.mat -1 -1 1115677 1154802 +2370418 2448481 78064 14636593.0603 14640496.7114 127.9375 127.9375 0 run9.mat -1 -1 1205701 1244734 +2550278 2628613 78336 14645588.4407 14649504.6945 127.9375 127.9375 4.053e-05 run9.mat -1 -1 1295634 1334803 +2730377 2808325 77949 14654591.2567 14658488.2241 127.9375 127.9375 0 run9.mat -1 -1 1385688 1424664 +2910217 2988535 78319 14663584.5862 14667499.9857 127.9375 127.9375 1.9459e-05 run9.mat -1 -1 1475612 1514773 +3090297 3168448 78152 14672587.0866 14676496.6237 127.9375 127.9375 0 run9.mat -1 -1 1565656 1604733 +3270217 3348354 78138 14681582.3915 14685493.2729 127.9375 127.9375 1.9504e-05 run9.mat -1 -1 1655620 1694690 +3450138 3528209 78072 14690580.5787 14694483.7175 127.9375 127.9375 1.952e-05 run9.mat -1 -1 1745584 1784621 +3629997 3708181 78185 14699574.1008 14703481.6495 127.9375 127.9375 0 run9.mat -1 -1 1835518 1874611 +3809935 3888051 78117 14708570.1639 14712477.0139 127.9375 127.9375 0 run9.mat -1 -1 1925491 1964550 +3989955 4067948 77994 14717572.5689 14721470.2641 127.9375 127.9375 0 run9.mat -1 -1 2015504 2054503 +4169835 4248092 78258 14726564.4215 14730478.078 127.9375 127.9375 0 run9.mat -1 -1 2105448 2144579 +4349895 4428012 78118 14735567.7291 14739474.6193 127.9375 127.9375 0 run9.mat -1 -1 2195483 2234543 +4529794 4608027 78234 14744563.2463 14748477.2566 127.9375 127.9375 0 run9.mat -1 -1 2285436 2324554 +4709814 4788124 78311 14753565.2483 14757481.8603 127.9375 127.9375 3.8921e-05 run9.mat -1 -1 2375450 2414606 +4889914 4967989 78076 14762570.5623 14766474.5176 127.9375 127.9375 1.9519e-05 run9.mat -1 -1 2465504 2504543 +5069793 5147978 78186 14771563.4448 14775475.0309 127.9375 127.9375 2.1116e-05 run9.mat -1 -1 2555447 2594541 +5249773 5327890 78118 14780563.4928 14784469.6906 127.9375 127.9375 0 run9.mat -1 -1 2645441 2684502 +5429653 5507692 78040 14789559.7038 14793461.729 127.9375 127.9375 2.1155e-05 run9.mat -1 -1 2735385 2774406 +5609492 5687714 78223 14798549.3148 14802461.393 127.9375 127.9375 6.0071e-05 run9.mat -1 -1 2825309 2864421 +5789592 5867618 78027 14807554.5936 14811455.7775 127.9375 127.9375 0 run9.mat -1 -1 2915362 2954377 +5969492 6047803 78312 14816548.6951 14820465.8321 127.9375 127.9375 1.946e-05 run9.mat -1 -1 3005316 3044474 +6149612 6227926 78315 14825558.6437 14829472.5793 127.9375 127.9375 0 run9.mat -1 -1 3095380 3134539 +6329691 6407864 78174 14834561.6168 14838469.4862 127.9375 127.9375 0 run9.mat -1 -1 3185424 3224512 +6509751 6587979 78229 14843564.4805 14847475.537 127.9375 127.9375 3.8962e-05 run9.mat -1 -1 3275458 3314573 +6689870 6768184 78315 14852569.8972 14856486.506 127.9375 127.9375 0 run9.mat -1 -1 3365521 3404680 +6869971 6948039 78069 14861573.1196 14865480.5417 127.9375 127.9375 0 run9.mat -1 -1 3455576 3494611 +7049811 7127971 78161 14870568.9635 14874477.4872 127.9375 127.9375 0 run9.mat -1 -1 3545500 3584581 +7229869 7308133 78265 14879571.6996 14883485.0308 127.9375 127.9375 1.9472e-05 run9.mat -1 -1 3635533 3674666 +7409929 7488077 78149 14888575.0784 14892481.9097 127.9375 127.9375 1.9501e-05 run9.mat -1 -1 3725566 3764642 +7589849 7668085 78237 14897570.6245 14901482.3681 127.9375 127.9375 1.9479e-05 run9.mat -1 -1 3815531 3854650 +7769909 7847980 78072 14906572.8026 14910474.7503 127.9375 127.9375 6.5066e-05 run9.mat -1 -1 3905564 3944602 +7949789 8027938 78150 14915566.2711 14919476.4762 127.9375 127.9375 0 run9.mat -1 -1 3995508 4034584 +8113932 8492793 378862 14923773.4279 14942716.7136 127.9375 127.9375 1.2067e-05 run9.mat -1 -1 4077583 4267010 diff --git a/Scripts_20180425/Scripts_20180425/offspills_library.txt b/Scripts_20180425/Scripts_20180425/offspills_library.txt new file mode 100644 index 0000000..fe7aa8e --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/offspills_library.txt @@ -0,0 +1,2281 @@ +startptr endptr nr_samples start_timestamp end_timestamp mean_X mean_Y mean_IC1 run_id energy ionsort profile data_start_index data_end_index +2 260368 260367 8556537.0077 8569552.6943 127.9375 127.9375 1.756e-05 run1.mat -1 -1 18805 148953 +362642 424464 61823 8574665.1206 8577758.7991 127.9375 127.9375 2.4651e-05 run1.mat -1 -1 200092 231005 +526737 588470 61734 8582870.5459 8585957.396 127.9375 127.9375 0 run1.mat -1 -1 282143 313011 +690732 752524 61793 8591071.5781 8594161.051 127.9375 127.9375 0 run1.mat -1 -1 364145 395042 +854790 916582 61793 8599273.3928 8602364.524 127.9375 127.9375 2.4663e-05 run1.mat -1 -1 446177 477074 +1018857 1080615 61759 8607477.0577 8610567 127.9375 127.9375 4.9352e-05 run1.mat -1 -1 528214 559094 +1182892 1244732 61841 8615680.8453 8618771.8591 127.9375 127.9375 0 run1.mat -1 -1 610235 641156 +1346991 1408788 61798 8623884.2087 8626975.2271 127.9375 127.9375 4.9321e-05 run1.mat -1 -1 692288 723188 +1511056 1572996 61941 8632087.8423 8635185.1359 127.9375 127.9375 0 run1.mat -1 -1 774325 805296 +1675273 1736881 61609 8640299.5225 8643381.802 127.9375 127.9375 0.0001546 run1.mat -1 -1 856437 887242 +1839164 1901092 61929 8648494.7589 8651591.4382 127.9375 127.9375 2.4608e-05 run1.mat -1 -1 938386 969351 +2003367 2067040 63674 8656703.7943 8659886.0921 127.9375 127.9375 0 run1.mat -1 -1 1020491 1052329 +2169329 2231104 61776 8665001.4307 8668090.7227 127.9375 127.9375 2.4669e-05 run1.mat -1 -1 1103476 1134365 +2333364 2397180 63817 8673203.6528 8676395.4422 127.9375 127.9375 9.5521e-05 run1.mat -1 -1 1185497 1217406 +2499427 2561293 61867 8681507.3026 8684599.4313 127.9375 127.9375 0 run1.mat -1 -1 1268532 1299466 +2663529 2725334 61806 8689711.5813 8692801.7144 127.9375 127.9375 2.4657e-05 run1.mat -1 -1 1350586 1381490 +2827627 2889357 61731 8697916.8942 8701003.9371 127.9375 127.9375 5.1432e-05 run1.mat -1 -1 1432639 1463505 +2991641 3053448 61808 8706118.4985 8709207.9823 127.9375 127.9375 2.4657e-05 run1.mat -1 -1 1514649 1545554 +3155721 3217593 61873 8714322.9939 8717417.0987 127.9375 127.9375 5.1314e-05 run1.mat -1 -1 1596693 1627630 +3319836 3381792 61957 8722527.5672 8725624.9524 127.9375 127.9375 0 run1.mat -1 -1 1678754 1709733 +3484079 3545903 61825 8730742.8988 8733833.2914 127.9375 127.9375 0 run1.mat -1 -1 1760879 1791793 +3648167 3709938 61772 8738946.469 8742034.7229 127.9375 127.9375 2.4671e-05 run1.mat -1 -1 1842926 1873814 +3812205 3874144 61940 8747148.0019 8750244.7126 127.9375 127.9375 0.00010252 run1.mat -1 -1 1924950 1955920 +3976427 4038237 61811 8755358.7611 8758448.1225 127.9375 127.9375 2.4655e-05 run1.mat -1 -1 2007064 2037970 +4140517 4202266 61750 8763562.3899 8766648.771 127.9375 127.9375 0 run1.mat -1 -1 2089113 2119988 +4304524 4366547 62024 8771762.974 8774866.85 127.9375 127.9375 5.1189e-05 run1.mat -1 -1 2171120 2202133 +4468818 4530599 61782 8779980.3882 8783066.5052 127.9375 127.9375 0 run1.mat -1 -1 2253270 2284162 +4632883 4694634 61752 8788181.2354 8791269.4748 127.9375 127.9375 5.3471e-05 run1.mat -1 -1 2335306 2366183 +4796919 4858758 61840 8796382.8837 8799475.7953 127.9375 127.9375 2.4644e-05 run1.mat -1 -1 2417328 2448249 +4961019 5022848 61830 8804588.8391 8807680.6825 127.9375 127.9375 4.9296e-05 run1.mat -1 -1 2499382 2530297 +5125122 5187069 61948 8812795.4388 8815890.4176 127.9375 127.9375 2.4601e-05 run1.mat -1 -1 2581437 2612412 +5289364 5351162 61799 8821006.3279 8824095.553 127.9375 127.9375 0 run1.mat -1 -1 2663561 2694462 +5453411 5515190 61780 8829208.3687 8832299.086 127.9375 127.9375 2.6723e-05 run1.mat -1 -1 2745589 2776479 +5617479 5679411 61933 8837414.0046 8840508.5487 127.9375 127.9375 0 run1.mat -1 -1 2827626 2858593 +5781691 5843517 61827 8845625.89 8848715.8019 127.9375 127.9375 0 run1.mat -1 -1 2909736 2940650 +5945780 6007512 61733 8853829.578 8856914.752 127.9375 127.9375 2.4687e-05 run1.mat -1 -1 2991784 3022651 +6109793 6171784 61992 8862029.0919 8865128.7273 127.9375 127.9375 9.8333e-05 run1.mat -1 -1 3073794 3104791 +6274073 6335864 61792 8870243.5934 8873332.4787 127.9375 127.9375 2.4663e-05 run1.mat -1 -1 3155937 3186834 +6438127 6500073 61947 8878446.6104 8881543.6441 127.9375 127.9375 0 run1.mat -1 -1 3237968 3268943 +6602349 6664130 61782 8886657.176 8889748.2896 127.9375 127.9375 0 run1.mat -1 -1 3320083 3350974 +6766416 6828167 61752 8894860.48 8897949.0986 127.9375 127.9375 0 run1.mat -1 -1 3402119 3432997 +6930445 6992382 61938 8903062.9377 8906159.7063 127.9375 127.9375 2.4605e-05 run1.mat -1 -1 3484138 3515108 +7094660 7156488 61829 8911272.825 8914365.6213 127.9375 127.9375 5.751e-05 run1.mat -1 -1 3566249 3597164 +7258763 7320582 61820 8919479.2909 8922568.7326 127.9375 127.9375 3.9031e-05 run1.mat -1 -1 3648304 3679215 +7422838 7484577 61740 8927684.7717 8930770.7105 127.9375 127.9375 2.4684e-05 run1.mat -1 -1 3730345 3761216 +7586869 7648653 61785 8935883.032 8938973.7225 127.9375 127.9375 0 run1.mat -1 -1 3812364 3843258 +7750933 7812900 61968 8944087.9962 8947186.2283 127.9375 127.9375 0 run1.mat -1 -1 3894400 3925385 +7915199 7976936 61738 8952299.7579 8955387.806 127.9375 127.9375 4.9369e-05 run1.mat -1 -1 3976536 4007407 +8079206 8141247 62042 8960502.1898 8963602.0441 127.9375 127.9375 4.9127e-05 run1.mat -1 -1 4058544 4089565 +8243499 8305247 61749 8968716.9365 8971803.1315 127.9375 127.9375 5.3473e-05 run1.mat -1 -1 4140693 4171569 +8407528 8469510 61983 8976917.456 8980015.9972 127.9375 127.9375 4.9174e-05 run1.mat -1 -1 4222712 4253704 +8571778 8633532 61755 8985129.5249 8988216.829 127.9375 127.9375 2.4678e-05 run1.mat -1 -1 4304840 4335719 +8735811 8797754 61944 8993332.7894 8996430.7875 127.9375 127.9375 4.9205e-05 run1.mat -1 -1 4386860 4417833 +8900015 8961881 61867 9001544.122 9004635.2013 127.9375 127.9375 0 run1.mat -1 -1 4468966 4499900 +9064077 9125898 61822 9009746.2214 9012837.9702 127.9375 127.9375 0 run1.mat -1 -1 4551001 4581912 +9136943 9241248 104306 9013387.9849 9018606.0815 127.9375 127.9375 1.4611e-05 run1.mat -1 -1 4587435 4639597 +2 289621 289620 15023574.4159 15038058.7979 127.9375 127.9375 2.1048e-05 run10.mat -1 -1 15191 160032 +391412 469564 78153 15043149.0601 15047055.1032 127.9375 127.9375 0 run10.mat -1 -1 210930 250007 +571352 649656 78305 15052146.0277 15056061.1858 127.9375 127.9375 0 run10.mat -1 -1 300904 340057 +751432 829525 78094 15061150.2746 15065053.3906 127.9375 127.9375 1.9515e-05 run10.mat -1 -1 390948 429996 +931291 1009419 78129 15070142.9428 15074049.7111 127.9375 127.9375 1.9506e-05 run10.mat -1 -1 480881 519947 +1111311 1189592 78282 15079144.3067 15083060.3163 127.9375 127.9375 0 run10.mat -1 -1 570895 610038 +1269899 1501450 231552 15087075.3943 15098653.1242 127.9375 127.9375 1.3163e-05 run10.mat -1 -1 650192 765973 +1603210 1681237 78028 15103737.6624 15107642.9771 127.9375 127.9375 0 run10.mat -1 -1 816855 855871 +1783109 1861211 78103 15112733.7891 15116639.9379 127.9375 127.9375 0 run10.mat -1 -1 906808 945862 +1962990 2041297 78308 15121728.6815 15125646.0877 127.9375 127.9375 0 run10.mat -1 -1 996753 1035909 +2143090 2221174 78085 15130733.4556 15134640.1379 127.9375 127.9375 1.9517e-05 run10.mat -1 -1 1086807 1125851 +2322968 2401061 78094 15139729.6598 15143632.5959 127.9375 127.9375 0 run10.mat -1 -1 1176750 1215798 +2502848 2582988 80141 15148722.7812 15152729.2732 127.9375 127.9375 3.9617e-05 run10.mat -1 -1 1266694 1306766 +2684769 2762859 78091 15157820.6251 15161724.1593 127.9375 127.9375 7.9687e-05 run10.mat -1 -1 1357659 1396705 +2864649 2942706 78058 15166812.7524 15170715.5775 127.9375 127.9375 0 run10.mat -1 -1 1447602 1486633 +3044527 3122643 78117 15175807.2106 15179714.97 127.9375 127.9375 0 run10.mat -1 -1 1537545 1576605 +3224387 3302631 78245 15184802.4035 15188712.3962 127.9375 127.9375 0 run10.mat -1 -1 1627479 1666603 +3404407 3482440 78034 15193802.6165 15197702.564 127.9375 127.9375 0 run10.mat -1 -1 1717493 1756512 +3584287 3662383 78097 15202796.2896 15206700.416 127.9375 127.9375 0 run10.mat -1 -1 1807437 1846487 +3764167 3842156 77990 15211789.1771 15215691.0701 127.9375 127.9375 0 run10.mat -1 -1 1897381 1936378 +3944006 4022072 78067 15220783.208 15224684.5626 127.9375 127.9375 0 run10.mat -1 -1 1987304 2026339 +4123866 4203909 80044 15229775.9575 15233776.7646 127.9375 127.9375 1.9039e-05 run10.mat -1 -1 2077239 2117262 +4305726 4383800 78075 15238868.9101 15242772.604 127.9375 127.9375 1.9519e-05 run10.mat -1 -1 2168172 2207211 +4485585 4563688 78104 15247860.8378 15251767.0728 127.9375 127.9375 0 run10.mat -1 -1 2258106 2297159 +4665485 4743587 78103 15256856.5702 15260763.6882 127.9375 127.9375 0 run10.mat -1 -1 2348060 2387113 +4845365 4925475 80111 15265851.0048 15269858.4461 127.9375 127.9375 1.9023e-05 run10.mat -1 -1 2438004 2478061 +5027264 5105359 78096 15274945.3622 15278850.4707 127.9375 127.9375 0 run10.mat -1 -1 2528957 2568007 +5207164 5285237 78074 15283942.5166 15287843.2801 127.9375 127.9375 4.3919e-05 run10.mat -1 -1 2618911 2657949 +5387024 5465107 78084 15292932.9794 15296839.0712 127.9375 127.9375 1.9517e-05 run10.mat -1 -1 2708846 2747889 +5566883 5644948 78066 15301928.8963 15305831.7181 127.9375 127.9375 0 run10.mat -1 -1 2798779 2837813 +5746783 5824863 78081 15310921.5665 15314825.8191 127.9375 127.9375 1.9518e-05 run10.mat -1 -1 2888732 2927774 +5926642 6004730 78089 15319916.8236 15323818.2547 127.9375 127.9375 1.9516e-05 run10.mat -1 -1 2978666 3017712 +6106502 6184574 78073 15328909.8276 15332812.9577 127.9375 127.9375 0 run10.mat -1 -1 3068600 3107637 +6286342 6364321 77980 15337902.0687 15341800.6741 127.9375 127.9375 0 run10.mat -1 -1 3158524 3197515 +6466222 6544220 77999 15346894.8248 15350795.7765 127.9375 127.9375 1.9538e-05 run10.mat -1 -1 3248468 3287469 +6646061 6724141 78081 15355887.8123 15359792.2692 127.9375 127.9375 0 run10.mat -1 -1 3338391 3377433 +6825901 6903821 77921 15364879.903 15368776.1018 127.9375 127.9375 0 run10.mat -1 -1 3428316 3467277 +7005741 7083842 78102 15373870.9835 15377777.1027 127.9375 127.9375 0 run10.mat -1 -1 3518239 3557292 +7185621 7263709 78089 15382866.24 15386771.7954 127.9375 127.9375 0 run10.mat -1 -1 3608183 3647229 +7365481 7443559 78079 15391860.3811 15395764.2113 127.9375 127.9375 0 run10.mat -1 -1 3698117 3737158 +7545340 7623392 78053 15400853.2028 15404753.7744 127.9375 127.9375 0 run10.mat -1 -1 3788050 3827078 +7725180 7803199 78020 15409843.8098 15413744.2586 127.9375 127.9375 0 run10.mat -1 -1 3877975 3916986 +7905040 7983150 78111 15418836.3388 15422744.0056 127.9375 127.9375 1.951e-05 run10.mat -1 -1 3967908 4006965 +8084900 8162971 78072 15427829.1246 15431735.701 127.9375 127.9375 0 run10.mat -1 -1 4057842 4096880 +8264758 8342853 78096 15436825.3132 15440728.0433 127.9375 127.9375 1.9514e-05 run10.mat -1 -1 4147776 4186825 +8358026 8675316 317291 15441486.8931 15457348.6427 127.9375 127.9375 9.6061e-06 run10.mat -1 -1 4194412 4350323 +2 285929 285928 15540253.6561 15554551.7337 127.9375 127.9375 1.599e-05 run11.mat -1 -1 17081 160051 +387698 465758 78061 15559639.8531 15563543.5488 127.9375 127.9375 0 run11.mat -1 -1 210937 249978 +567558 645651 78094 15568633.1748 15572536.4621 127.9375 127.9375 0 run11.mat -1 -1 300872 339920 +747437 825494 78058 15577625.7297 15581528.2877 127.9375 127.9375 0 run11.mat -1 -1 390815 429845 +927317 1005342 78026 15586620.7776 15590522.015 127.9375 127.9375 3.9063e-05 run11.mat -1 -1 480759 519773 +1107137 1185124 77988 15595612.4891 15599512.2066 127.9375 127.9375 0 run11.mat -1 -1 570673 609668 +1287036 1365006 77971 15604607.5547 15608503.9611 127.9375 127.9375 1.9545e-05 run11.mat -1 -1 660626 699613 +1466896 1544973 78078 15613602.0832 15617505.323 127.9375 127.9375 7.8074e-05 run11.mat -1 -1 750560 789601 +1646755 1724770 78016 15622593.3729 15626495.3105 127.9375 127.9375 4.2324e-05 run11.mat -1 -1 840494 879503 +1826655 1904724 78070 15631587.3485 15635491.8404 127.9375 127.9375 1.9521e-05 run11.mat -1 -1 930448 969484 +2006515 2084556 78042 15640581.1227 15644481.9396 127.9375 127.9375 1.9528e-05 run11.mat -1 -1 1020382 1059404 +2186395 2264723 78329 15649574.2325 15653493.9871 127.9375 127.9375 0 run11.mat -1 -1 1110325 1149491 +2366475 2444595 78121 15658581.4963 15662485.8673 127.9375 127.9375 1.9508e-05 run11.mat -1 -1 1200370 1239431 +2546375 2624485 78111 15667574.87 15671482.0988 127.9375 127.9375 2.2762e-05 run11.mat -1 -1 1290323 1329380 +2726253 2804267 78015 15676571.11 15680471.2814 127.9375 127.9375 2.1162e-05 run11.mat -1 -1 1380267 1419275 +2906074 2984159 78086 15685561.3785 15689464.484 127.9375 127.9375 0 run11.mat -1 -1 1470181 1509225 +3085953 3164275 78323 15694553.9778 15698470.5518 127.9375 127.9375 0 run11.mat -1 -1 1560124 1599287 +3266052 3344141 78090 15703559.7595 15707466.0091 127.9375 127.9375 3.9031e-05 run11.mat -1 -1 1650178 1689224 +3445913 3524223 78311 15712553.495 15716469.1448 127.9375 127.9375 6.0003e-05 run11.mat -1 -1 1740112 1779269 +3625993 3704136 78144 15721558.7664 15725465.9587 127.9375 127.9375 0 run11.mat -1 -1 1830156 1869229 +3806032 3884537 78506 15730558.0667 15734485.5066 127.9375 127.9375 0 run11.mat -1 -1 1920180 1959434 +3986352 4064602 78251 15739574.8697 15743488.2898 127.9375 127.9375 0 run11.mat -1 -1 2010344 2049470 +4166411 4244700 78290 15748576.9885 15752494.7096 127.9375 127.9375 1.9466e-05 run11.mat -1 -1 2100377 2139523 +4346491 4425007 78517 15757582.1721 15761509.2063 127.9375 127.9375 2.1027e-05 run11.mat -1 -1 2190421 2229681 +4526771 4604913 78143 15766598.1817 15770505.5952 127.9375 127.9375 1.9502e-05 run11.mat -1 -1 2280565 2319637 +4706811 4785182 78372 15775600.7879 15779517.1408 127.9375 127.9375 3.8891e-05 run11.mat -1 -1 2370589 2409776 +4887070 4965305 78236 15784612.0941 15788523.3558 127.9375 127.9375 0 run11.mat -1 -1 2460723 2499841 +5067131 5145536 78406 15793615.664 15797537.3134 127.9375 127.9375 0 run11.mat -1 -1 2550757 2589961 +5247429 5325915 78487 15802632.0183 15806553.5296 127.9375 127.9375 1.9417e-05 run11.mat -1 -1 2640910 2680154 +5427689 5506168 78480 15811643.8011 15815570.2206 127.9375 127.9375 1.9419e-05 run11.mat -1 -1 2731043 2770285 +5607930 5686221 78292 15820654.0194 15824570.8162 127.9375 127.9375 0 run11.mat -1 -1 2821168 2860315 +5788029 5866492 78464 15829660.9527 15833584.4257 127.9375 127.9375 2.1041e-05 run11.mat -1 -1 2911222 2950455 +5968308 6046724 78417 15838676.1071 15842596.5006 127.9375 127.9375 0 run11.mat -1 -1 3001365 3040575 +6148608 6226867 78260 15847689.6244 15851603.8087 127.9375 127.9375 3.8946e-05 run11.mat -1 -1 3091519 3130650 +6328688 6407167 78480 15856693.1373 15860617.2242 127.9375 127.9375 0 run11.mat -1 -1 3181563 3220804 +6508947 6587436 78490 15865706.4223 15869631.9282 127.9375 127.9375 0 run11.mat -1 -1 3271696 3310942 +6689227 6767506 78280 15874721.5389 15878635.469 127.9375 127.9375 1.9468e-05 run11.mat -1 -1 3361840 3400981 +6869287 6947759 78473 15883723.7457 15887648.5931 127.9375 127.9375 1.942e-05 run11.mat -1 -1 3451874 3491112 +7049567 7127854 78288 15892740.0024 15896654.4133 127.9375 127.9375 0 run11.mat -1 -1 3542018 3581164 +7229627 7308012 78386 15901742.9373 15905660.9587 127.9375 127.9375 3.8884e-05 run11.mat -1 -1 3632052 3671246 +7409826 7488172 78347 15910753.0692 15914670.5078 127.9375 127.9375 3.8903e-05 run11.mat -1 -1 3722156 3761330 +7589965 7668392 78428 15919759.8964 15923681.4652 127.9375 127.9375 0 run11.mat -1 -1 3812229 3851444 +7770265 7848505 78241 15928774.2848 15932685.547 127.9375 127.9375 3.8956e-05 run11.mat -1 -1 3902383 3941504 +7950326 8028698 78373 15937778.8661 15941694.7537 127.9375 127.9375 1.9445e-05 run11.mat -1 -1 3992418 4031605 +8114885 8390766 275882 15946005.8692 15959801.5591 127.9375 127.9375 1.6572e-05 run11.mat -1 -1 4074700 4212664 +2 281757 281756 16051377.7729 16065470.6079 127.9375 127.9375 5.4088e-06 run12.mat -1 -1 12320 153233 +383545 461833 78289 16070560.1747 16074473.6916 127.9375 127.9375 1.9466e-05 run12.mat -1 -1 204129 243276 +563625 641921 78297 16079564.4487 16083477.4567 127.9375 127.9375 2.2708e-05 run12.mat -1 -1 294173 333323 +743684 821686 78003 16088564.9937 16092465.9929 127.9375 127.9375 0 run12.mat -1 -1 384207 423210 +923585 1001843 78259 16097561.8608 16101474.7404 127.9375 127.9375 0 run12.mat -1 -1 474162 513292 +1103604 1181870 78267 16106562.6466 16110474.6866 127.9375 127.9375 0 run12.mat -1 -1 564175 603310 +1283624 1361924 78301 16115564.0083 16119479.1527 127.9375 127.9375 1.9463e-05 run12.mat -1 -1 654189 693341 +1463684 1543851 80168 16124568.5159 16128575.296 127.9375 127.9375 1.901e-05 run12.mat -1 -1 744223 784308 +1645623 1723898 78276 16133663.8061 16137578.7085 127.9375 127.9375 4.0561e-05 run12.mat -1 -1 835197 874336 +1825703 1903916 78214 16142668.145 16146578.0173 127.9375 127.9375 1.9485e-05 run12.mat -1 -1 925240 964348 +2005743 2083695 77953 16151669.3325 16155568.4042 127.9375 127.9375 0 run12.mat -1 -1 1015264 1054242 +2185582 2263834 78253 16160661.5168 16164573.0657 127.9375 127.9375 1.9475e-05 run12.mat -1 -1 1105188 1144315 +2365642 2443940 78299 16169665.2505 16173582.1117 127.9375 127.9375 3.8927e-05 run12.mat -1 -1 1195221 1234373 +2545702 2623922 78221 16178669.597 16182579.6542 127.9375 127.9375 0 run12.mat -1 -1 1285256 1324367 +2725741 2803794 78054 16187669.895 16191572.8152 127.9375 127.9375 1.9525e-05 run12.mat -1 -1 1375279 1414307 +2905581 2983803 78223 16196661.8244 16200573.6302 127.9375 127.9375 0 run12.mat -1 -1 1465203 1504316 +3085621 3163906 78286 16205664.122 16209580.2868 127.9375 127.9375 0 run12.mat -1 -1 1555227 1594371 +3265701 3343979 78279 16214669.1922 16218584.1673 127.9375 127.9375 0 run12.mat -1 -1 1645271 1684412 +3445779 3523853 78075 16223673.9643 16227577.3344 127.9375 127.9375 0 run12.mat -1 -1 1735314 1774352 +3625660 3703786 78127 16232668.7638 16236572.3465 127.9375 127.9375 0 run12.mat -1 -1 1825258 1864322 +3805680 3883999 78320 16241667.8887 16245585.1521 127.9375 127.9375 1.9458e-05 run12.mat -1 -1 1915272 1954433 +3985740 4064024 78285 16250673.1823 16254585.8789 127.9375 127.9375 0 run12.mat -1 -1 2005306 2044450 +4165819 4244126 78308 16259677.4407 16263591.7111 127.9375 127.9375 1.9461e-05 run12.mat -1 -1 2095349 2134505 +4345918 4424282 78365 16268680.5166 16272598.45 127.9375 127.9375 0 run12.mat -1 -1 2185403 2224586 +4526038 4604164 78127 16277686.6993 16281594.0151 127.9375 127.9375 0 run12.mat -1 -1 2275467 2314531 +4706058 4784333 78276 16286688.7858 16290603.5003 127.9375 127.9375 0 run12.mat -1 -1 2365481 2404620 +4886118 4964420 78303 16295691.0726 16299608.5273 127.9375 127.9375 0 run12.mat -1 -1 2455515 2494667 +5066158 5144218 78061 16304694.2161 16308598.6376 127.9375 127.9375 0 run12.mat -1 -1 2545539 2584570 +5246037 5324295 78259 16313687.9946 16317600.0015 127.9375 127.9375 1.9473e-05 run12.mat -1 -1 2635482 2674612 +5426117 5504327 78211 16322692.923 16326601.3282 127.9375 127.9375 0 run12.mat -1 -1 2725526 2764633 +5606117 5684392 78276 16331690.9083 16335607.8875 127.9375 127.9375 1.9469e-05 run12.mat -1 -1 2815530 2854669 +5786176 5864468 78293 16340698.2854 16344610.8236 127.9375 127.9375 1.9465e-05 run12.mat -1 -1 2905564 2944711 +5966256 6044522 78267 16349699.8912 16353613.1774 127.9375 127.9375 0 run12.mat -1 -1 2995607 3034742 +6146316 6224594 78279 16358702.177 16362618.0313 127.9375 127.9375 0 run12.mat -1 -1 3085641 3124782 +6326395 6404595 78201 16367707.8435 16371617.2348 127.9375 127.9375 0 run12.mat -1 -1 3175685 3214787 +6506394 6584577 78184 16376707.0004 16380615.2037 127.9375 127.9375 4.2233e-05 run12.mat -1 -1 3265689 3304782 +6686476 6764524 78049 16385711.8105 16389612.0943 127.9375 127.9375 0 run12.mat -1 -1 3355733 3394759 +6866375 6944668 78294 16394705.1043 16398623.3372 127.9375 127.9375 0 run12.mat -1 -1 3445687 3484835 +7046474 7124544 78071 16403711.1025 16407615.1836 127.9375 127.9375 1.952e-05 run12.mat -1 -1 3535740 3574777 +7226314 7304551 78238 16412705.3774 16416614.2827 127.9375 127.9375 3.8957e-05 run12.mat -1 -1 3625664 3664785 +7406333 7484442 78110 16421703.7276 16425611.3946 127.9375 127.9375 4.0647e-05 run12.mat -1 -1 3715678 3754734 +7586213 7664532 78320 16430698.355 16434616.5124 127.9375 127.9375 0 run12.mat -1 -1 3805622 3844783 +7766313 7844276 77964 16439704.0339 16443601.953 127.9375 127.9375 0 run12.mat -1 -1 3895675 3934659 +7946173 8024384 78212 16448695.9901 16452609.4947 127.9375 127.9375 2.1109e-05 run12.mat -1 -1 3985609 4024717 +8111085 8356762 245678 16456941.7124 16469229.0282 127.9375 127.9375 1.8609e-05 run12.mat -1 -1 4068069 4190917 +2 288209 288208 -199898.1731 -185365.7507 127.9375 127.9375 1.0576e-05 run13.mat -1 -1 1 1 +390104 468091 77988 -180227.8423 -176295.4603 127.9375 127.9375 0 run13.mat -1 -1 1 1 +569984 648133 78150 -171157.6527 -167217.1021 127.9375 127.9375 0 run13.mat -1 -1 1 1 +750023 828362 78340 -162079.4457 -158129.3146 127.9375 127.9375 3.8907e-05 run13.mat -1 -1 1 1 +930122 1008336 78215 -152998.2134 -149054.3852 127.9375 127.9375 1.9484e-05 run13.mat -1 -1 1 1 +1110162 1188425 78264 -143919.956 -139973.6571 127.9375 127.9375 0 run13.mat -1 -1 1 1 +1290222 1368323 78102 -134840.6902 -130902.5599 127.9375 127.9375 1.9513e-05 run13.mat -1 -1 1 1 +1470102 1548445 78344 -125770.5006 -121820.1678 127.9375 127.9375 1.9452e-05 run13.mat -1 -1 1 1 +1650202 1728393 78192 -116689.2178 -112746.5494 127.9375 127.9375 2.1114e-05 run13.mat -1 -1 1 1 +1830281 1908550 78270 -107608.9939 -103662.3925 127.9375 127.9375 7.7883e-05 run13.mat -1 -1 1 1 +2010320 2088371 78052 -98530.787 -94595.1779 127.9375 127.9375 0 run13.mat -1 -1 1 1 +2190220 2268375 78156 -89459.5889 -85518.7358 127.9375 127.9375 0 run13.mat -1 -1 1 1 +2370280 2448345 78066 -80380.3231 -76444.0081 127.9375 127.9375 0 run13.mat -1 -1 1 1 +2550140 2628459 78320 -71311.142 -67362.0194 127.9375 127.9375 3.8917e-05 run13.mat -1 -1 1 1 +2730240 2808507 78268 -62229.8592 -58283.3586 127.9375 127.9375 4.0565e-05 run13.mat -1 -1 1 1 +2910279 2988426 78148 -53151.6523 -49211.2025 127.9375 127.9375 4.2252e-05 run13.mat -1 -1 1 1 +3090179 3168456 78278 -44080.4542 -40133.4494 127.9375 127.9375 1.9469e-05 run13.mat -1 -1 1 1 +3270259 3348533 78275 -35000.1799 -31053.3263 127.9375 127.9375 4.2184e-05 run13.mat -1 -1 1 1 +3450358 3528461 78104 -25918.9476 -21980.7164 127.9375 127.9375 0 run13.mat -1 -1 1 1 +3630238 3708364 78127 -16848.758 -12909.3671 127.9375 127.9375 0 run13.mat -1 -1 1 1 +3810258 3888380 78123 -7771.5091 -3832.3199 127.9375 127.9375 0 run13.mat -1 -1 1 1 +3990278 4068259 77982 1298.5493 5196.6556 127.9375 127.9375 7.817e-05 run13.mat -1 -1 1 1 +4170137 4248463 78327 10289.2909 14205.9218 127.9375 127.9375 4.2156e-05 run13.mat -1 -1 1 1 +4350236 4428297 78062 19294.2345 23196.6737 127.9375 127.9375 2.1149e-05 run13.mat -1 -1 1 1 +4530117 4608366 78250 28288.6434 32201.8561 127.9375 127.9375 1.9476e-05 run13.mat -1 -1 1 1 +4710157 4788387 78231 37292.4928 41204.3198 127.9375 127.9375 0 run13.mat -1 -1 1 1 +4890237 4968446 78210 46295.7104 50207.2303 127.9375 127.9375 1.9486e-05 run13.mat -1 -1 1 1 +5070335 5148446 78112 55302.3336 59207.01 127.9375 127.9375 1.951e-05 run13.mat -1 -1 1 1 +5250196 5328425 78230 64294.7985 68207.231 127.9375 127.9375 2.1104e-05 run13.mat -1 -1 1 1 +5430315 5508565 78251 73299.5249 77211.503 127.9375 127.9375 0 run13.mat -1 -1 1 1 +5610335 5688435 78101 82299.8799 86206.4105 127.9375 127.9375 0 run13.mat -1 -1 1 1 +5790215 5870392 80178 91294.8768 95304.6761 127.9375 127.9375 1.9007e-05 run13.mat -1 -1 1 1 +5972155 6050427 78273 100392.2709 104307.4441 127.9375 127.9375 1.947e-05 run13.mat -1 -1 1 1 +6152233 6230323 78091 109398.611 113303.0004 127.9375 127.9375 0 run13.mat -1 -1 1 1 +6332093 6410362 78270 118389.8302 122302.4033 127.9375 127.9375 1.9471e-05 run13.mat -1 -1 1 1 +6512133 6590208 78076 127391.2112 131296.5171 127.9375 127.9375 2.1146e-05 run13.mat -1 -1 1 1 +6691993 6770274 78282 136385.5041 140298.2764 127.9375 127.9375 0 run13.mat -1 -1 1 1 +6872052 6950225 78174 145388.7551 149297.4459 127.9375 127.9375 0 run13.mat -1 -1 1 1 +7052112 7130229 78118 154391.1285 158297.7882 127.9375 127.9375 0 run13.mat -1 -1 1 1 +7231992 7310254 78263 163386.7435 167299.0675 127.9375 127.9375 1.9472e-05 run13.mat -1 -1 1 1 +7412012 7490063 78052 172387.0881 176288.3557 127.9375 127.9375 1.9525e-05 run13.mat -1 -1 1 1 +7536607 7615980 79374 178615.364 182586.5633 127.9375 127.9375 0 run13.mat -1 -1 1 1 +7717871 7796110 78240 187680.9639 191591.7087 127.9375 127.9375 0 run13.mat -1 -1 1 1 +7897891 7975958 78068 196680.0617 200587.2222 127.9375 127.9375 0 run13.mat -1 -1 1 1 +8077751 8155819 78069 205673.3605 209577.7792 127.9375 127.9375 3.9042e-05 run13.mat -1 -1 1 1 +8201784 8468048 266265 211876.1624 225190.3868 127.9375 127.9375 2.9095e-05 run13.mat -1 -1 1 1 +2 276864 276863 333925.5737 347771.9692 127.9375 127.9375 3.3027e-05 run14.mat -1 -1 25706 164160 +378661 456924 78264 352862.1 356773.8256 127.9375 127.9375 0 run14.mat -1 -1 215060 254194 +558721 636789 78069 361865.4459 365770.001 127.9375 127.9375 1.9521e-05 run14.mat -1 -1 305094 344130 +738581 816657 78077 370858.9823 374761.1717 127.9375 127.9375 0 run14.mat -1 -1 395028 434068 +918440 996665 78226 379850.4181 383761.1357 127.9375 127.9375 0 run14.mat -1 -1 484961 524076 +1098459 1176442 77984 388852.6358 392750.6392 127.9375 127.9375 1.9542e-05 run14.mat -1 -1 574975 613968 +1278339 1356390 78052 397847.0947 401748.1514 127.9375 127.9375 0 run14.mat -1 -1 664919 703946 +1458219 1536194 77976 406842.309 410739.2682 127.9375 127.9375 1.9544e-05 run14.mat -1 -1 754863 793853 +1638098 1716356 78259 415834.337 419749.2478 127.9375 127.9375 0 run14.mat -1 -1 844806 883937 +1818138 1896247 78110 424837.8395 428742.4168 127.9375 127.9375 0 run14.mat -1 -1 934831 973887 +1998139 2076426 78288 433838.3659 437752.1179 127.9375 127.9375 1.9466e-05 run14.mat -1 -1 1024835 1063980 +2178198 2256310 78113 442840.2063 446746.202 127.9375 127.9375 0 run14.mat -1 -1 1114869 1153926 +2358058 2436312 78255 451833.1036 455745.8684 127.9375 127.9375 1.9474e-05 run14.mat -1 -1 1204802 1243931 +2538137 2616327 78191 460836.5494 464748.7354 127.9375 127.9375 3.8981e-05 run14.mat -1 -1 1294846 1333943 +2718177 2796445 78269 469841.4244 473754.2442 127.9375 127.9375 0 run14.mat -1 -1 1384869 1424005 +2898217 2976384 78168 478843.2209 482749.4623 127.9375 127.9375 0 run14.mat -1 -1 1474893 1513979 +3078296 3156409 78114 487844.6117 491750.5963 127.9375 127.9375 0 run14.mat -1 -1 1564937 1603995 +3258156 3338512 80357 496839.6681 500855.7726 127.9375 127.9375 2.2126e-05 run14.mat -1 -1 1654871 1695051 +3440276 3518383 78108 505944.3485 509848.8411 127.9375 127.9375 0 run14.mat -1 -1 1745935 1784990 +3620155 3698354 78200 514938.401 518848.8531 127.9375 127.9375 0 run14.mat -1 -1 1835879 1874979 +3800175 3878138 77964 523940.1116 527836.9555 127.9375 127.9375 0 run14.mat -1 -1 1925892 1964875 +3980014 4058273 78260 532934.4505 536846.691 127.9375 127.9375 0 run14.mat -1 -1 2015816 2054947 +4160094 4238124 78031 541938.5594 545838.4345 127.9375 127.9375 1.953e-05 run14.mat -1 -1 2105860 2144877 +4339935 4418217 78283 550928.9432 554841.9625 127.9375 127.9375 3.8935e-05 run14.mat -1 -1 2195784 2234927 +4519994 4597976 77983 559932.388 563831.702 127.9375 127.9375 0 run14.mat -1 -1 2285818 2324810 +4699793 4778090 78298 568922.3092 572836.7977 127.9375 127.9375 1.9464e-05 run14.mat -1 -1 2375721 2414871 +4879873 4957965 78093 577924.858 581829.4939 127.9375 127.9375 0 run14.mat -1 -1 2465765 2504813 +5059733 5138043 78311 586919.7041 590835.6501 127.9375 127.9375 1.9461e-05 run14.mat -1 -1 2555699 2594856 +5239813 5317833 78021 595925.2446 599825.2428 127.9375 127.9375 1.9533e-05 run14.mat -1 -1 2645743 2684754 +5419694 5497600 77907 604919.2904 608813.4086 127.9375 127.9375 0 run14.mat -1 -1 2735688 2774642 +5599492 5677565 78074 613907.6593 617810.6733 127.9375 127.9375 0 run14.mat -1 -1 2825590 2864629 +5779392 5857513 78122 622904.2706 626807.3751 127.9375 127.9375 0 run14.mat -1 -1 2915544 2954606 +5959292 6037591 78300 631898.0814 635813.2497 127.9375 127.9375 6.1633e-05 run14.mat -1 -1 3005498 3044650 +6139371 6217435 78065 640900.2059 644806.5477 127.9375 127.9375 0 run14.mat -1 -1 3095542 3134576 +6319251 6397295 78045 649896.2452 653798.445 127.9375 127.9375 0 run14.mat -1 -1 3185486 3224509 +6499091 6577170 78080 658889.0337 662792.0482 127.9375 127.9375 1.9518e-05 run14.mat -1 -1 3275410 3314451 +6678991 6757279 78289 667884.1129 671797.2081 127.9375 127.9375 0 run14.mat -1 -1 3365363 3404510 +6859050 6937048 77999 676887.1552 680785.0851 127.9375 127.9375 0 run14.mat -1 -1 3455397 3494398 +7038930 7116916 77987 685880.1498 689778.85 127.9375 127.9375 0 run14.mat -1 -1 3545341 3584336 +7218809 7296840 78032 694874.807 698776.9619 127.9375 127.9375 3.906e-05 run14.mat -1 -1 3635284 3674302 +7398629 7476717 78089 703866.1471 707770.523 127.9375 127.9375 0 run14.mat -1 -1 3725198 3764244 +7578529 7656832 78304 712861.1435 716776.2073 127.9375 127.9375 1.9462e-05 run14.mat -1 -1 3815152 3854305 +7758609 7836662 78054 721865.4608 725768.999 127.9375 127.9375 0 run14.mat -1 -1 3905196 3944225 +7938468 8016730 78263 730858.9343 734771.8903 127.9375 127.9375 0 run14.mat -1 -1 3995130 4034263 +8103086 8233051 129966 739089.5821 745595.1199 127.9375 127.9375 0 run14.mat -1 -1 4077442 4131951 +2 194456 194455 822418.0169 832146.4681 127.9375 127.9375 2.4818e-05 run15.mat -1 -1 67558 164844 +296241 374483 78243 837236.8713 841147.8575 127.9375 127.9375 3.8955e-05 run15.mat -1 -1 215739 254862 +476300 554441 78142 846238.5562 850144.1409 127.9375 127.9375 1.9503e-05 run15.mat -1 -1 305772 344844 +656200 734396 78197 855232.6829 859141.2401 127.9375 127.9375 3.8978e-05 run15.mat -1 -1 395726 434826 +836299 914548 78250 864237.0613 868149.3493 127.9375 127.9375 1.9476e-05 run15.mat -1 -1 485780 524905 +1016319 1094449 78131 873237.1575 877145.7392 127.9375 127.9375 0 run15.mat -1 -1 575794 614860 +1196219 1274511 78293 882234.566 886148.2 127.9375 127.9375 0 run15.mat -1 -1 665747 704895 +1376279 1454402 78124 891237.0758 895143.2766 127.9375 127.9375 1.9507e-05 run15.mat -1 -1 755781 794845 +1556178 1634504 78327 900231.4332 904148.7208 127.9375 127.9375 3.8913e-05 run15.mat -1 -1 845735 884900 +1736258 1814539 78282 909236.6897 913151.3597 127.9375 127.9375 1.9468e-05 run15.mat -1 -1 935779 974921 +1916318 1994521 78204 918238.9031 922150.6737 127.9375 127.9375 0 run15.mat -1 -1 1025813 1064916 +2096417 2174500 78084 927246.5688 931150.395 127.9375 127.9375 1.9517e-05 run15.mat -1 -1 1115866 1154909 +2276297 2354506 78210 936239.4429 940149.5963 127.9375 127.9375 1.9486e-05 run15.mat -1 -1 1205810 1244917 +2456397 2534542 78146 945243.4876 949150.7515 127.9375 127.9375 0 run15.mat -1 -1 1295864 1334938 +2636317 2714564 78248 954239.7108 958150.8065 127.9375 127.9375 0 run15.mat -1 -1 1385828 1424954 +2816356 2894583 78228 963240.8441 967153.3348 127.9375 127.9375 1.9481e-05 run15.mat -1 -1 1475851 1514967 +2996476 3074565 78090 972248.5422 976153.2908 127.9375 127.9375 1.9516e-05 run15.mat -1 -1 1565915 1604961 +3176336 3254584 78249 981240.4171 985155.8695 127.9375 127.9375 0 run15.mat -1 -1 1655849 1694975 +3356355 3434694 78340 990243.702 994160.3632 127.9375 127.9375 0 run15.mat -1 -1 1745863 1785034 +3536476 3614539 78064 999249.9842 1003151.0913 127.9375 127.9375 0 run15.mat -1 -1 1835927 1874960 +3716335 3794611 78277 1008240.2593 1012157.7288 127.9375 127.9375 0 run15.mat -1 -1 1925861 1965001 +3896395 3974352 77958 1017243.6813 1021144.4309 127.9375 127.9375 4.0726e-05 run15.mat -1 -1 2015895 2054875 +4076254 4154534 78281 1026238.1097 1030151.8049 127.9375 127.9375 3.8936e-05 run15.mat -1 -1 2105828 2144970 +4256353 4334490 78138 1035243.9875 1039150.0899 127.9375 127.9375 0 run15.mat -1 -1 2195882 2234952 +4436253 4514401 78149 1044239.3251 1048147.026 127.9375 127.9375 0 run15.mat -1 -1 2285836 2324911 +4616294 4694587 78294 1053241.3437 1057155.6614 127.9375 127.9375 0 run15.mat -1 -1 2375860 2415008 +4796353 4876306 79954 1062245.3429 1066241.4189 127.9375 127.9375 1.9061e-05 run15.mat -1 -1 2465894 2505871 +4978092 5056373 78282 1071330.711 1075246.17 127.9375 127.9375 1.9468e-05 run15.mat -1 -1 2556767 2595909 +5158173 5236222 78050 1080334.2185 1084237.5632 127.9375 127.9375 3.9051e-05 run15.mat -1 -1 2646811 2685838 +5338031 5416320 78290 1089327.7962 1093242.6458 127.9375 127.9375 1.9466e-05 run15.mat -1 -1 2736744 2775890 +5518051 5596114 78064 1098328.052 1102232.7786 127.9375 127.9375 0 run15.mat -1 -1 2826758 2865791 +5697912 5775885 77974 1107323.0335 1111222.702 127.9375 127.9375 1.9545e-05 run15.mat -1 -1 2916693 2955681 +5877771 5955896 78126 1116317.3368 1120223.4644 127.9375 127.9375 3.9013e-05 run15.mat -1 -1 3006626 3045690 +6057691 6135702 78012 1125312.3283 1129213.6841 127.9375 127.9375 0 run15.mat -1 -1 3096590 3135597 +6237591 6315832 78242 1134305.9508 1138220.2307 127.9375 127.9375 0 run15.mat -1 -1 3186544 3225666 +6417610 6495598 77989 1143310.0801 1147209.7723 127.9375 127.9375 1.9541e-05 run15.mat -1 -1 3276557 3315553 +6597490 6675663 78174 1152304.4734 1156211.1706 127.9375 127.9375 1.9495e-05 run15.mat -1 -1 3366501 3405590 +6777450 6855548 78099 1161300.0392 1165204.6789 127.9375 127.9375 3.9027e-05 run15.mat -1 -1 3456485 3495536 +6957329 7035378 78050 1170294.5418 1174197.7124 127.9375 127.9375 0 run15.mat -1 -1 3546429 3585455 +7137249 7215535 78287 1179291.285 1183206.2475 127.9375 127.9375 2.1089e-05 run15.mat -1 -1 3636393 3675538 +7317289 7395382 78094 1188294.2295 1192198.2239 127.9375 127.9375 0 run15.mat -1 -1 3726417 3765465 +7497209 7575285 78077 1197288.3989 1201192.252 127.9375 127.9375 4.3917e-05 run15.mat -1 -1 3816380 3855421 +7677068 7755382 78315 1206282.1026 1210197.4445 127.9375 127.9375 0 run15.mat -1 -1 3906314 3945473 +7857148 7935248 78101 1215286.3571 1219192.034 127.9375 127.9375 0 run15.mat -1 -1 3996358 4035410 +8021982 8270112 248131 1223528.7047 1235936.7171 127.9375 127.9375 1.8425e-05 run15.mat -1 -1 4078779 4202863 +2 297847 297846 1337595.2377 1352484.5818 127.9375 127.9375 2.0467e-05 run16.mat -1 -1 16413 165315 +399726 477892 78167 1357576.9148 1361486.4616 127.9375 127.9375 0 run16.mat -1 -1 216256 255341 +579806 657864 78059 1366581.9647 1370483.8182 127.9375 127.9375 0 run16.mat -1 -1 306300 345331 +759665 837935 78271 1375573.6709 1379488.0558 127.9375 127.9375 0 run16.mat -1 -1 396234 435370 +939725 1017842 78118 1384579.4346 1388485.6926 127.9375 127.9375 1.9509e-05 run16.mat -1 -1 486268 525328 +1119725 1198046 78322 1393580.217 1397494.8701 127.9375 127.9375 0 run16.mat -1 -1 576272 615434 +1299804 1377867 78064 1402583.4704 1406484.7707 127.9375 127.9375 1.9522e-05 run16.mat -1 -1 666315 705348 +1479664 1557994 78331 1411575.4925 1415493.3945 127.9375 127.9375 0 run16.mat -1 -1 756249 795416 +1659744 1737709 77966 1420581.2709 1424478.0714 127.9375 127.9375 0 run16.mat -1 -1 846293 885277 +1839623 1917875 78253 1429574.7044 1433485.9615 127.9375 127.9375 1.9475e-05 run16.mat -1 -1 936237 975364 +2019644 2097685 78042 1438573.1766 1442478.237 127.9375 127.9375 1.9528e-05 run16.mat -1 -1 1026251 1065273 +2199503 2277605 78103 1447568.2872 1451474.7855 127.9375 127.9375 0 run16.mat -1 -1 1116184 1155237 +2379383 2457623 78241 1456562.5621 1460474.1365 127.9375 127.9375 0 run16.mat -1 -1 1206128 1245250 +2559443 2637522 78080 1465567.0206 1469470.8834 127.9375 127.9375 0 run16.mat -1 -1 1296162 1335204 +2739301 2817277 77977 1474558.9978 1478458.0871 127.9375 127.9375 0 run16.mat -1 -1 1386095 1425085 +2919082 2997185 78104 1483548.6161 1487453.1355 127.9375 127.9375 1.9512e-05 run16.mat -1 -1 1475990 1515043 +3098961 3179095 80135 1492541.4739 1496549.4527 127.9375 127.9375 1.9018e-05 run16.mat -1 -1 1565933 1606002 +3280901 3358859 77959 1501638.777 1505536.7907 127.9375 127.9375 0 run16.mat -1 -1 1656907 1695888 +3460761 3538746 77986 1510630.7603 1514533.58 127.9375 127.9375 1.9542e-05 run16.mat -1 -1 1746841 1785835 +3640601 3718818 78218 1519623.2063 1523535.7553 127.9375 127.9375 0 run16.mat -1 -1 1836765 1875875 +3820601 3898672 78072 1528624.5959 1532529.2418 127.9375 127.9375 2.1147e-05 run16.mat -1 -1 1926769 1965806 +4000460 4078449 77990 1537619.6365 1541518.2414 127.9375 127.9375 2.1169e-05 run16.mat -1 -1 2016702 2055698 +4180340 4258417 78078 1546612.7705 1550514.6921 127.9375 127.9375 1.9519e-05 run16.mat -1 -1 2106646 2145687 +4360200 4438082 77883 1555604.5608 1559499.5406 127.9375 127.9375 0 run16.mat -1 -1 2196580 2235523 +4539898 4618182 78285 1564590.2629 1568504.1625 127.9375 127.9375 1.9467e-05 run16.mat -1 -1 2286433 2325577 +4719899 4797982 78084 1573592.1096 1577495.7477 127.9375 127.9375 3.9034e-05 run16.mat -1 -1 2376438 2415481 +4899798 4977773 77976 1582587.4576 1586484.6841 127.9375 127.9375 0 run16.mat -1 -1 2466391 2505380 +5079678 5157758 78081 1591578.9173 1595484.2287 127.9375 127.9375 0 run16.mat -1 -1 2556335 2595377 +5259559 5337565 78007 1600574.9631 1604474.1076 127.9375 127.9375 1.9536e-05 run16.mat -1 -1 2646280 2685284 +5439458 5517695 78238 1609568.6536 1613480.7112 127.9375 127.9375 0 run16.mat -1 -1 2736233 2775353 +5619458 5697540 78083 1618569.6362 1622473.5592 127.9375 127.9375 6.0178e-05 run16.mat -1 -1 2826237 2865280 +5799318 5877448 78131 1627562.7352 1631467.4721 127.9375 127.9375 0 run16.mat -1 -1 2916171 2955238 +5979217 6057490 78274 1636557.8752 1640470.5982 127.9375 127.9375 0 run16.mat -1 -1 3006124 3045262 +6159296 6237241 77946 1645561.902 1649460.1416 127.9375 127.9375 1.9552e-05 run16.mat -1 -1 3096168 3135142 +6339136 6417418 78283 1654555.3251 1658468.4901 127.9375 127.9375 1.9467e-05 run16.mat -1 -1 3186091 3225234 +6519156 6597243 78088 1663555.6149 1667458.0304 127.9375 127.9375 2.2769e-05 run16.mat -1 -1 3276105 3315151 +6699016 6777284 78269 1672548.9915 1676460.9548 127.9375 127.9375 6.0035e-05 run16.mat -1 -1 3366040 3405175 +6879095 6957197 78103 1681552.4243 1685458.334 127.9375 127.9375 0 run16.mat -1 -1 3456083 3495136 +7058975 7139152 80178 1690546.0484 1694554.8786 127.9375 127.9375 2.0591e-05 run16.mat -1 -1 3546027 3586117 +7240914 7320990 80077 1699645.434 1703647.7698 127.9375 127.9375 3.8063e-05 run16.mat -1 -1 3637001 3677040 +7422794 7500976 78183 1708738.6112 1712648.0325 127.9375 127.9375 0 run16.mat -1 -1 3727945 3767037 +7602774 7680874 78101 1717736.3889 1721642.3038 127.9375 127.9375 4.0652e-05 run16.mat -1 -1 3817938 3856990 +7782654 7862708 80055 1726730.6786 1730732.9109 127.9375 127.9375 1.9037e-05 run16.mat -1 -1 3907882 3947911 +7964613 8042712 78100 1735830.0571 1739734.3146 127.9375 127.9375 0 run16.mat -1 -1 3998866 4037917 +8128938 8301089 172152 1744044.9841 1752653.3957 127.9375 127.9375 1.918e-05 run16.mat -1 -1 4081032 4167129 +2 271358 271357 1835317.1204 1848887.0921 127.9375 127.9375 1.1232e-05 run17.mat -1 -1 1 121684 +373163 451270 78108 1853978.9661 1857882.7503 127.9375 127.9375 6.0159e-05 run17.mat -1 -1 172589 211644 +553062 631157 78096 1862971.3853 1866876.6837 127.9375 127.9375 0 run17.mat -1 -1 262542 301591 +732942 811145 78204 1871964.7458 1875877.5249 127.9375 127.9375 1.9487e-05 run17.mat -1 -1 352486 391590 +913041 991083 78043 1880969.483 1884874.1877 127.9375 127.9375 0 run17.mat -1 -1 442540 481562 +1092881 1171143 78263 1889965.4005 1893876.0052 127.9375 127.9375 1.9472e-05 run17.mat -1 -1 532464 571596 +1272921 1351230 78310 1898966.6922 1902880.6644 127.9375 127.9375 1.9461e-05 run17.mat -1 -1 622487 661643 +1453020 1531139 78120 1907969.9929 1911876.9332 127.9375 127.9375 0 run17.mat -1 -1 712541 751602 +1633060 1711226 78167 1916973.1177 1920882.1188 127.9375 127.9375 0 run17.mat -1 -1 802565 841650 +1813120 1891142 78023 1925977.7992 1929878.8511 127.9375 127.9375 0 run17.mat -1 -1 892599 931611 +1992960 2071257 78298 1934967.2354 1938882.0254 127.9375 127.9375 0 run17.mat -1 -1 982523 1021673 +2173019 2251207 78189 1943969.8545 1947880.8914 127.9375 127.9375 3.8982e-05 run17.mat -1 -1 1072556 1111652 +2353099 2431059 77961 1952975.0077 1956874.4035 127.9375 127.9375 0 run17.mat -1 -1 1162600 1201582 +2532978 2611268 78291 1961968.2852 1965882.6218 127.9375 127.9375 1.9465e-05 run17.mat -1 -1 1252544 1291690 +2713058 2791076 78019 1970973.613 1974874.6896 127.9375 127.9375 1.9533e-05 run17.mat -1 -1 1342588 1381599 +2892879 2971010 78132 1979965.0921 1983872.8232 127.9375 127.9375 2.113e-05 run17.mat -1 -1 1432502 1471570 +3072798 3151118 78321 1988960.9365 1992876.4692 127.9375 127.9375 0 run17.mat -1 -1 1522466 1561627 +3252878 3330991 78114 1997965.8345 2001871.1752 127.9375 127.9375 0 run17.mat -1 -1 1612510 1651568 +3432818 3510928 78111 2006962.2096 2010868.5806 127.9375 127.9375 0 run17.mat -1 -1 1702483 1741540 +3612717 3690934 78218 2015957.9651 2019868.803 127.9375 127.9375 0 run17.mat -1 -1 1792437 1831547 +3792756 3870839 78084 2024958.5455 2028863.6766 127.9375 127.9375 0 run17.mat -1 -1 1882460 1921504 +3972657 4050760 78104 2033954.9992 2037860.7741 127.9375 127.9375 0 run17.mat -1 -1 1972415 2011468 +4152555 4230889 78335 2042948.5838 2046865.8294 127.9375 127.9375 1.9455e-05 run17.mat -1 -1 2062368 2101537 +4332675 4410770 78096 2051954.924 2055861.8962 127.9375 127.9375 1.9514e-05 run17.mat -1 -1 2152432 2191481 +4512576 4590530 77955 2060952.4277 2064849.1616 127.9375 127.9375 0 run17.mat -1 -1 2242386 2281365 +4692415 4770712 78298 2069944.361 2073858.2644 127.9375 127.9375 0 run17.mat -1 -1 2332310 2371460 +4872475 4950559 78085 2078947.7181 2082851.4188 127.9375 127.9375 1.9517e-05 run17.mat -1 -1 2422343 2461387 +5052355 5130686 78332 2087942.4376 2091857.97 127.9375 127.9375 1.9455e-05 run17.mat -1 -1 2512288 2551455 +5232455 5310420 77966 2096945.5535 2100845.0185 127.9375 127.9375 0 run17.mat -1 -1 2602342 2641326 +5412314 5490447 78134 2105940.0073 2109846.4994 127.9375 127.9375 0 run17.mat -1 -1 2692275 2731343 +5592333 5670471 78139 2114941.4248 2118847.486 127.9375 127.9375 1.9503e-05 run17.mat -1 -1 2782289 2821359 +5772233 5850545 78313 2123936.0363 2127850.6765 127.9375 127.9375 0 run17.mat -1 -1 2872242 2911400 +5952313 6030608 78296 2132940.389 2136854.8903 127.9375 127.9375 0 run17.mat -1 -1 2962286 3001435 +6132394 6210521 78128 2141942.432 2145849.9225 127.9375 127.9375 1.9506e-05 run17.mat -1 -1 3052331 3091396 +6312272 6390485 78214 2150937.8731 2154845.8042 127.9375 127.9375 2.2732e-05 run17.mat -1 -1 3142274 3181382 +6492313 6570607 78295 2159938.643 2163852.1506 127.9375 127.9375 1.9464e-05 run17.mat -1 -1 3232298 3271447 +6672372 6750518 78147 2168943.7438 2172848.6792 127.9375 127.9375 0 run17.mat -1 -1 3322331 3361406 +6852251 6930365 78115 2177937.8684 2181843.666 127.9375 127.9375 3.9019e-05 run17.mat -1 -1 3412275 3451333 +7032151 7110458 78308 2186933.1674 2190846.689 127.9375 127.9375 3.8923e-05 run17.mat -1 -1 3502229 3541384 +7212232 7290308 78077 2195935.0461 2199839.1077 127.9375 127.9375 0 run17.mat -1 -1 3592274 3631313 +7392091 7470119 78029 2204929.1559 2208830.4072 127.9375 127.9375 2.1158e-05 run17.mat -1 -1 3682207 3721223 +7571950 7650245 78296 2213922.3897 2217838.9695 127.9375 127.9375 0 run17.mat -1 -1 3772140 3811290 +7752031 7830071 78041 2222926.1482 2226829.5908 127.9375 127.9375 0 run17.mat -1 -1 3862185 3901206 +7931950 8009976 78027 2231924.117 2235824.4248 127.9375 127.9375 1.9531e-05 run17.mat -1 -1 3952148 3991163 +8097157 9092827 995671 2240181.5022 2289961.353 127.9375 127.9375 1.25e-05 run17.mat -1 -1 4034755 4274755 +2 286288 286287 -127014.2697 -112810.7571 127.9375 127.9375 1.597e-05 run18.mat -1 -1 1 1 +388089 466272 78184 -107760.1022 -103881.2076 127.9375 127.9375 1.9492e-05 run18.mat -1 -1 1 1 +568169 646434 78266 -98825.7898 -94942.8269 127.9375 127.9375 1.9472e-05 run18.mat -1 -1 1 1 +748268 826460 78193 -89890.5348 -86011.1937 127.9375 127.9375 0 run18.mat -1 -1 1 1 +928267 1006507 78241 -80960.2411 -77078.5186 127.9375 127.9375 1.9478e-05 run18.mat -1 -1 1 1 +1108268 1186268 78001 -72029.8482 -68160.0327 127.9375 127.9375 0 run18.mat -1 -1 1 1 +1288148 1366434 78287 -63105.4584 -59221.4537 127.9375 127.9375 0 run18.mat -1 -1 1 1 +1468208 1546264 78057 -54172.1383 -50299.5446 127.9375 127.9375 0 run18.mat -1 -1 1 1 +1648027 1726183 78157 -45250.775 -41373.2199 127.9375 127.9375 1.9499e-05 run18.mat -1 -1 1 1 +1828026 1906316 78291 -36320.4812 -32436.278 127.9375 127.9375 0 run18.mat -1 -1 1 1 +2008086 2086240 78155 -27387.1611 -23509.7053 127.9375 127.9375 1.9499e-05 run18.mat -1 -1 1 1 +2188065 2266300 78236 -18457.8597 -14576.3852 127.9375 127.9375 0 run18.mat -1 -1 1 1 +2368065 2446382 78318 -9527.5164 -5641.9736 127.9375 127.9375 1.9459e-05 run18.mat -1 -1 1 1 +2548166 2626381 78216 -592.1621 3312.9379 127.9375 127.9375 0 run18.mat -1 -1 1 1 +2728265 2806505 78241 8408.2485 12319.241 127.9375 127.9375 1.9478e-05 run18.mat -1 -1 1 1 +2908324 2986650 78327 17409.8965 21326.7748 127.9375 127.9375 1.9457e-05 run18.mat -1 -1 1 1 +3088404 3166873 78470 26413.6755 30336.8243 127.9375 127.9375 0 run18.mat -1 -1 1 1 +3268684 3346935 78252 35427.5868 39341.5911 127.9375 127.9375 2.1098e-05 run18.mat -1 -1 1 1 +3448743 3527089 78347 44430.5354 48348.2647 127.9375 127.9375 0 run18.mat -1 -1 1 1 +3628883 3707256 78374 53437.5643 57357.0621 127.9375 127.9375 0 run18.mat -1 -1 1 1 +3809143 3887322 78180 62451.8309 66359.8397 127.9375 127.9375 0 run18.mat -1 -1 1 1 +3989163 4067496 78334 71454.1663 75368.8984 127.9375 127.9375 0 run18.mat -1 -1 1 1 +4169282 4247537 78256 80460.1651 84370.8676 127.9375 127.9375 0 run18.mat -1 -1 1 1 +4349362 4427506 78145 89464.1048 93369.3311 127.9375 127.9375 1.9502e-05 run18.mat -1 -1 1 1 +4529401 4607828 78428 98467.4495 102388.6822 127.9375 127.9375 3.8863e-05 run18.mat -1 -1 1 1 +4709622 4787816 78195 107476.6786 111386.6179 127.9375 127.9375 0 run18.mat -1 -1 1 1 +4889622 4967933 78312 116475.9973 120392.7014 127.9375 127.9375 1.946e-05 run18.mat -1 -1 1 1 +5069721 5148193 78473 125482.1024 129406.672 127.9375 127.9375 0 run18.mat -1 -1 1 1 +5250001 5328287 78287 134495.0985 138410.0613 127.9375 127.9375 2.1089e-05 run18.mat -1 -1 1 1 +5430061 5508452 78392 143500.7938 147419.4543 127.9375 127.9375 0 run18.mat -1 -1 1 1 +5610260 5688547 78288 152508.7443 156424.5284 127.9375 127.9375 0 run18.mat -1 -1 1 1 +5790320 5868727 78408 161511.0875 165432.7264 127.9375 127.9375 0 run18.mat -1 -1 1 1 +5970520 6049036 78517 170523.2646 174450.6023 127.9375 127.9375 0 run18.mat -1 -1 1 1 +6150819 6229058 78240 179535.5043 183450.3045 127.9375 127.9375 1.9478e-05 run18.mat -1 -1 1 1 +6330839 6409280 78442 188537.1594 192462.1785 127.9375 127.9375 0 run18.mat -1 -1 1 1 +6511099 6589522 78424 197553.4952 201473.9427 127.9375 127.9375 0 run18.mat -1 -1 1 1 +6691319 6769782 78464 206563.0473 210486.5906 127.9375 127.9375 1.9423e-05 run18.mat -1 -1 1 1 +6871558 6949816 78259 215574.4279 219488.6088 127.9375 127.9375 0 run18.mat -1 -1 1 1 +7051578 7130014 78437 224575.6991 228497.7112 127.9375 127.9375 0 run18.mat -1 -1 1 1 +7231817 7310079 78263 233588.8954 237502.9288 127.9375 127.9375 3.8945e-05 run18.mat -1 -1 1 1 +7411857 7490229 78373 242591.7654 246510.9188 127.9375 127.9375 4.3751e-05 run18.mat -1 -1 1 1 +7591997 7670319 78323 251597.7099 255513.4815 127.9375 127.9375 0 run18.mat -1 -1 1 1 +7772117 7850642 78526 260604.6757 264529.459 127.9375 127.9375 0 run18.mat -1 -1 1 1 +7952437 8030757 78321 269620.6634 273535.696 127.9375 127.9375 0 run18.mat -1 -1 1 1 +8116849 8384572 267724 277840.8875 291228.0029 127.9375 127.9375 1.1385e-05 run18.mat -1 -1 1 1 +2 276776 276775 410771.0183 424614.0296 127.9375 127.9375 5.5062e-06 run19.mat -1 -1 55595 194004 +378682 456997 78316 429709.6921 433624.3737 127.9375 127.9375 2.1081e-05 run19.mat -1 -1 244959 284118 +558782 637093 78312 438713.1461 442630.9361 127.9375 127.9375 2.1082e-05 run19.mat -1 -1 335013 374170 +738841 817336 78496 447717.0425 451642.4776 127.9375 127.9375 0 run19.mat -1 -1 425046 464295 +919101 997268 78168 456731.4235 460637.5308 127.9375 127.9375 0 run19.mat -1 -1 515180 554266 +1099121 1177387 78267 465732.0942 469644.4609 127.9375 127.9375 0 run19.mat -1 -1 605194 644329 +1279160 1357601 78442 474734.757 478654.6951 127.9375 127.9375 0 run19.mat -1 -1 695218 734440 +1459400 1537629 78230 483744.832 487656.5705 127.9375 127.9375 2.1104e-05 run19.mat -1 -1 785342 824458 +1639420 1717828 78409 492748.3103 496667.3921 127.9375 127.9375 0 run19.mat -1 -1 875355 914562 +1819699 1897932 78234 501761.604 505673.5967 127.9375 127.9375 3.8959e-05 run19.mat -1 -1 965499 1004617 +1999699 2077900 78202 510761.1625 514671.1266 127.9375 127.9375 0 run19.mat -1 -1 1055503 1094605 +2179780 2258261 78482 519765.584 523687.713 127.9375 127.9375 0 run19.mat -1 -1 1145547 1184790 +2360038 2440196 80159 528777.7871 532786.3493 127.9375 127.9375 0 run19.mat -1 -1 1235680 1275761 +2541958 2620224 78267 537875.0997 541786.377 127.9375 127.9375 3.8943e-05 run19.mat -1 -1 1326644 1365779 +2722018 2800408 78391 546876.8884 550798.0727 127.9375 127.9375 0 run19.mat -1 -1 1416678 1455875 +2902237 2980540 78304 555889.3708 559804.9476 127.9375 127.9375 0 run19.mat -1 -1 1506792 1545945 +3082317 3160590 78274 564893.3586 568806.878 127.9375 127.9375 0 run19.mat -1 -1 1596835 1635974 +3262357 3340625 78269 573893.821 577807.3777 127.9375 127.9375 0 run19.mat -1 -1 1686860 1725996 +3442437 3520656 78220 582898.8234 586810.4912 127.9375 127.9375 0 run19.mat -1 -1 1776904 1816015 +3622536 3700771 78236 591904.6574 595815.9682 127.9375 127.9375 4.2205e-05 run19.mat -1 -1 1866957 1906076 +3802556 3880787 78232 600905.1147 604817.3648 127.9375 127.9375 1.948e-05 run19.mat -1 -1 1956971 1996088 +3982556 4060829 78274 609905.5451 613820.4386 127.9375 127.9375 0 run19.mat -1 -1 2046975 2086113 +4162655 4240912 78258 618912.4378 622824.1236 127.9375 127.9375 0 run19.mat -1 -1 2137029 2176159 +4342676 4420916 78241 627913.433 631823.5084 127.9375 127.9375 1.9478e-05 run19.mat -1 -1 2227043 2266165 +4522735 4600937 78203 636913.921 640824.1501 127.9375 127.9375 2.1111e-05 run19.mat -1 -1 2317076 2356179 +4702754 4781022 78269 645918.137 649829.757 127.9375 127.9375 1.9471e-05 run19.mat -1 -1 2407090 2446226 +4882814 4961137 78324 654918.2101 658835.8 127.9375 127.9375 1.9457e-05 run19.mat -1 -1 2497124 2536287 +5063033 5141144 78112 663931.1902 667837.5812 127.9375 127.9375 0 run19.mat -1 -1 2587237 2626294 +5242953 5321255 78303 672926.3918 676842.5427 127.9375 127.9375 1.9462e-05 run19.mat -1 -1 2677201 2716354 +5423034 5501351 78318 681931.4519 685846.9516 127.9375 127.9375 1.9459e-05 run19.mat -1 -1 2767246 2806406 +5603153 5681198 78046 690936.9722 694838.5107 127.9375 127.9375 0 run19.mat -1 -1 2857309 2896333 +5783013 5861265 78253 699929.6741 703841.443 127.9375 127.9375 0 run19.mat -1 -1 2947243 2986371 +5963072 6041368 78297 708932.802 712848.9053 127.9375 127.9375 0 run19.mat -1 -1 3037276 3076426 +6143132 6221298 78167 717936.2635 721844.5298 127.9375 127.9375 0 run19.mat -1 -1 3127310 3166395 +6323191 6401604 78414 726939.8613 730859.7924 127.9375 127.9375 0 run19.mat -1 -1 3217344 3256552 +6503391 6581495 78105 735949.1654 739855.5253 127.9375 127.9375 0 run19.mat -1 -1 3307448 3346502 +6683250 6761519 78270 744942.5658 748856.2732 127.9375 127.9375 0 run19.mat -1 -1 3397381 3436517 +6863311 6941627 78317 753946.6098 757861.777 127.9375 127.9375 0 run19.mat -1 -1 3487416 3526575 +7043410 7121656 78247 762951.4461 766864.4327 127.9375 127.9375 0 run19.mat -1 -1 3577469 3616593 +7223451 7301495 78045 771952.594 775856.9007 127.9375 127.9375 6.3462e-05 run19.mat -1 -1 3667494 3706517 +7403249 7481522 78274 780944.9935 784857.6429 127.9375 127.9375 0 run19.mat -1 -1 3757396 3796534 +7583289 7661552 78264 789945.8524 793858.5676 127.9375 127.9375 1.9472e-05 run19.mat -1 -1 3847420 3886554 +7763329 7841536 78208 798947.6123 802858.3043 127.9375 127.9375 1.9486e-05 run19.mat -1 -1 3937445 3976550 +7943409 8021854 78446 807953.0171 811874.9831 127.9375 127.9375 1.9427e-05 run19.mat -1 -1 4027488 4066713 +8108544 8322708 214165 816208.3664 826914.7365 127.9375 127.9375 7.7088e-06 run19.mat -1 -1 4110060 4217106 +2 290087 290086 9695111.7899 9709620.4369 127.9375 127.9375 2.6268e-05 run2.mat -1 -1 18186 163263 +391838 469997 78160 9714706.2874 9718616.2184 127.9375 127.9375 3.8996e-05 run2.mat -1 -1 214141 253223 +571877 650224 78348 9723711.366 9727628.472 127.9375 127.9375 3.8903e-05 run2.mat -1 -1 304165 343340 +751998 830273 78276 9732716.9041 9736629.466 127.9375 127.9375 0 run2.mat -1 -1 394230 433369 +932037 1012145 80109 9741717.3401 9745724.8349 127.9375 127.9375 1.9024e-05 run2.mat -1 -1 484253 524308 +1113916 1191985 78070 9750814.3593 9754715.5459 127.9375 127.9375 0 run2.mat -1 -1 575197 614233 +1293757 1372048 78292 9759804.2752 9763720.818 127.9375 127.9375 2.1087e-05 run2.mat -1 -1 665121 704268 +1473816 1551937 78122 9768808.3844 9772715.7479 127.9375 127.9375 1.9508e-05 run2.mat -1 -1 755154 794216 +1653697 1731951 78255 9777804.1619 9781713.989 127.9375 127.9375 3.8949e-05 run2.mat -1 -1 845099 884227 +1833756 1911800 78045 9786806.456 9790707.6406 127.9375 127.9375 3.9054e-05 run2.mat -1 -1 935132 974156 +2013555 2091838 78284 9795795.895 9799710.9226 127.9375 127.9375 0 run2.mat -1 -1 1025035 1064179 +2193655 2271782 78128 9804802.0387 9808707.6747 127.9375 127.9375 0 run2.mat -1 -1 1115090 1154155 +2373534 2451618 78085 9813794.739 9817697.9608 127.9375 127.9375 3.9034e-05 run2.mat -1 -1 1205033 1244077 +2553374 2631477 78104 9822787.1068 9826693.3537 127.9375 127.9375 0 run2.mat -1 -1 1294957 1334010 +2733253 2811492 78240 9831782.4687 9835691.5444 127.9375 127.9375 1.9478e-05 run2.mat -1 -1 1384900 1424022 +2913273 2991261 77989 9840782.5721 9844681.3842 127.9375 127.9375 0 run2.mat -1 -1 1474914 1513910 +3093154 3171326 78173 9849778.0897 9853685.4658 127.9375 127.9375 4.0614e-05 run2.mat -1 -1 1564859 1603946 +3273231 3351373 78143 9858782.2685 9862688.2596 127.9375 127.9375 0 run2.mat -1 -1 1654901 1693974 +3453273 3531294 78022 9867784.1362 9871685.1681 127.9375 127.9375 1.9533e-05 run2.mat -1 -1 1744926 1783938 +3633111 3711169 78059 9876775.9137 9880677.7928 127.9375 127.9375 1.9523e-05 run2.mat -1 -1 1834849 1873880 +3812931 3891186 78256 9885765.6434 9889680.2653 127.9375 127.9375 0 run2.mat -1 -1 1924763 1963892 +3992971 4071049 78079 9894767.1455 9898671.8994 127.9375 127.9375 0 run2.mat -1 -1 2014787 2053828 +4172871 4250848 77978 9903763.7092 9907662.5817 127.9375 127.9375 2.1172e-05 run2.mat -1 -1 2104741 2143731 +4352750 4430997 78248 9912758.6868 9916669.1081 127.9375 127.9375 1.9476e-05 run2.mat -1 -1 2194684 2233810 +4532791 4610852 78062 9921758.3314 9925661.9649 127.9375 127.9375 1.9523e-05 run2.mat -1 -1 2284709 2323741 +4712631 4790911 78281 9930751.8915 9934664.5607 127.9375 127.9375 0 run2.mat -1 -1 2374633 2413775 +4892689 4970778 78090 9939755.5723 9943659.3745 127.9375 127.9375 0 run2.mat -1 -1 2464666 2503712 +5072549 5150603 78055 9948748.8177 9952651.5562 127.9375 127.9375 1.9524e-05 run2.mat -1 -1 2554600 2593628 +5252448 5330634 78187 9957742.7316 9961653.5434 127.9375 127.9375 1.9491e-05 run2.mat -1 -1 2644553 2683648 +5432469 5510392 77924 9966743.9613 9970638.8798 127.9375 127.9375 0 run2.mat -1 -1 2734568 2773531 +5612288 5690432 78145 9975736.0924 9979644.0655 127.9375 127.9375 0 run2.mat -1 -1 2824480 2863555 +5792327 5870450 78124 9984739.2404 9988645.1282 127.9375 127.9375 0 run2.mat -1 -1 2914505 2953568 +5972208 6052320 80113 9993732.3663 9997736.6806 127.9375 127.9375 5.7068e-05 run2.mat -1 -1 3004449 3044507 +6154107 6232390 78284 10002828.1486 10006740.8145 127.9375 127.9375 1.9467e-05 run2.mat -1 -1 3095402 3134546 +6334147 6412150 78004 10011829.9919 10015728.8217 127.9375 127.9375 0 run2.mat -1 -1 3185426 3224430 +6513947 6592230 78284 10020820.3288 10024735.1729 127.9375 127.9375 1.9467e-05 run2.mat -1 -1 3275331 3314474 +6694006 6772154 78149 10029822.7224 10033731.1567 127.9375 127.9375 1.9501e-05 run2.mat -1 -1 3365364 3404439 +6873906 6951955 78050 10038819.0652 10042721.3001 127.9375 127.9375 1.9526e-05 run2.mat -1 -1 3455318 3494344 +7053766 7131856 78091 10047812.5086 10051714.5231 127.9375 127.9375 7.8061e-05 run2.mat -1 -1 3545252 3584298 +7233645 7311682 78038 10056805.7225 10060706.4371 127.9375 127.9375 5.8586e-05 run2.mat -1 -1 3635195 3674216 +7413464 7491788 78325 10065796 10069713.3114 127.9375 127.9375 3.8914e-05 run2.mat -1 -1 3725108 3764272 +7593564 7671614 78051 10074801.9155 10078704.9679 127.9375 127.9375 0 run2.mat -1 -1 3815162 3854189 +7773384 7853551 80168 10083793.708 10087799.9829 127.9375 127.9375 3.8019e-05 run2.mat -1 -1 3905076 3945161 +7955324 8033414 78091 10092888.5455 10096793.9284 127.9375 127.9375 1.9515e-05 run2.mat -1 -1 3996050 4035097 +8135183 8213416 78234 10101882.626 10105794.3651 127.9375 127.9375 0 run2.mat -1 -1 4085984 4125102 +8315182 8393268 78087 10110881.7926 10114787.8588 127.9375 127.9375 0 run2.mat -1 -1 4175987 4215032 +8495063 8573314 78252 10119876.6649 10123787.5672 127.9375 127.9375 1.9475e-05 run2.mat -1 -1 4265932 4305059 +8675142 8753187 78046 10128879.1081 10132785.0734 127.9375 127.9375 1.9527e-05 run2.mat -1 -1 4355975 4394999 +8854982 8933034 78053 10137874.4451 10141776.0552 127.9375 127.9375 7.9726e-05 run2.mat -1 -1 4445899 4484927 +9034822 9114809 79988 10146866.8931 10150863.8117 127.9375 127.9375 0 run2.mat -1 -1 4535823 4575818 +9216682 9294754 78073 10155959.133 10159861.7494 127.9375 127.9375 6.1813e-05 run2.mat -1 -1 4626757 4665795 +9396562 9474608 78047 10164952.0322 10168854.2278 127.9375 127.9375 6.0206e-05 run2.mat -1 -1 4716701 4755726 +9576420 9654514 78095 10173946.1344 10177851.4019 127.9375 127.9375 3.9029e-05 run2.mat -1 -1 4806634 4845683 +9756301 9834353 78053 10182940.7022 10186842.1166 127.9375 127.9375 3.905e-05 run2.mat -1 -1 4896578 4935606 +9936140 10014194 78055 10191933.7695 10195834.4737 127.9375 127.9375 6.1827e-05 run2.mat -1 -1 4986502 5025530 +10115940 10193965 78026 10200922.669 10204824.5409 127.9375 127.9375 1.9532e-05 run2.mat -1 -1 5076406 5115420 +10295820 10373901 78082 10209916.6067 10213819.3855 127.9375 127.9375 1.9518e-05 run2.mat -1 -1 5166350 5205392 +10475660 10553748 78089 10218910.9752 10222813.522 127.9375 127.9375 3.9032e-05 run2.mat -1 -1 5256274 5295320 +10655520 10733824 78305 10227901.3416 10231816.7285 127.9375 127.9375 4.2167e-05 run2.mat -1 -1 5346208 5385361 +10835579 10913561 77983 10236905.1188 10240804.3467 127.9375 127.9375 0 run2.mat -1 -1 5436241 5475234 +11015379 11093475 78097 10245894.5741 10249800.065 127.9375 127.9375 1.9514e-05 run2.mat -1 -1 5526145 5565195 +11195298 11273400 78103 10254889.5835 10258795.7139 127.9375 127.9375 7.9675e-05 run2.mat -1 -1 5616108 5655161 +11375178 11453257 78080 10263886.8654 10267790.8134 127.9375 127.9375 2.1144e-05 run2.mat -1 -1 5706052 5745094 +11555018 11632978 77961 10272878.9496 10276774.2043 127.9375 127.9375 0 run2.mat -1 -1 5795976 5834958 +11734897 11813161 78265 10281871.7495 10285784.8853 127.9375 127.9375 4.0566e-05 run2.mat -1 -1 5885920 5925053 +11914936 11993008 78073 10290875.3081 10294778.2569 127.9375 127.9375 0 run2.mat -1 -1 5975943 6014981 +2 286602 286601 898545.2646 912874.8964 127.9375 127.9375 5.3174e-06 run20.mat -1 -1 13837 157138 +388403 466724 78322 917964.7967 921881.2144 127.9375 127.9375 0 run20.mat -1 -1 208040 247203 +568503 646650 78148 926970.4408 930876.9391 127.9375 127.9375 0 run20.mat -1 -1 298095 337170 +748543 826755 78213 935973.0973 939883.5288 127.9375 127.9375 0 run20.mat -1 -1 388118 427226 +928643 1006773 78131 944978.0639 948883.8152 127.9375 127.9375 0 run20.mat -1 -1 478172 517239 +1108602 1186938 78337 953975.1155 957893.2844 127.9375 127.9375 0 run20.mat -1 -1 568156 607326 +1288681 1366998 78318 962980.6217 966896.7388 127.9375 127.9375 0 run20.mat -1 -1 658199 697359 +1468761 1547009 78249 971985.1998 975895.9597 127.9375 127.9375 1.9476e-05 run20.mat -1 -1 748243 787368 +1648821 1727118 78298 980985.843 984900.4868 127.9375 127.9375 1.9464e-05 run20.mat -1 -1 838277 877427 +1828862 1907298 78437 989988.0123 993911.0177 127.9375 127.9375 0 run20.mat -1 -1 928301 967521 +2009060 2087343 78284 998999.996 1002913.0349 127.9375 127.9375 0 run20.mat -1 -1 1018404 1057548 +2189119 2267202 78084 1008002.8072 1011906.0472 127.9375 127.9375 5.8551e-05 run20.mat -1 -1 1108438 1147481 +2368980 2447160 78181 1016994.0425 1020906.8173 127.9375 127.9375 1.9493e-05 run20.mat -1 -1 1198372 1237464 +2549060 2627367 78308 1026000.6166 1029914.6424 127.9375 127.9375 0 run20.mat -1 -1 1288416 1327571 +2729140 2807355 78216 1035003.5225 1038915.3732 127.9375 127.9375 0 run20.mat -1 -1 1378460 1417569 +2909138 2987421 78284 1044004.7832 1047918.3733 127.9375 127.9375 0 run20.mat -1 -1 1468463 1507607 +3089198 3167417 78220 1053008.004 1056917.2419 127.9375 127.9375 1.9483e-05 run20.mat -1 -1 1558497 1597608 +3269239 3347343 78105 1062009.3832 1065914.49 127.9375 127.9375 1.9512e-05 run20.mat -1 -1 1648521 1687575 +3449099 3527270 78172 1071001.149 1074912.8108 127.9375 127.9375 0 run20.mat -1 -1 1738456 1777543 +3629158 3707103 77946 1080007.5282 1083903.6809 127.9375 127.9375 4.2362e-05 run20.mat -1 -1 1828489 1867463 +3808997 3887261 78265 1088998.2025 1092910.4291 127.9375 127.9375 1.9472e-05 run20.mat -1 -1 1918412 1957546 +3989057 4067330 78274 1098000.3606 1101915.1308 127.9375 127.9375 1.947e-05 run20.mat -1 -1 2008446 2047585 +4169096 4247240 78145 1107002.1464 1110910.1208 127.9375 127.9375 0 run20.mat -1 -1 2098470 2137544 +4348997 4427298 78302 1115998.0304 1119912.3798 127.9375 127.9375 0 run20.mat -1 -1 2188424 2227577 +4529076 4607303 78228 1125000.5357 1128912.5091 127.9375 127.9375 0 run20.mat -1 -1 2278468 2317583 +4709076 4787150 78075 1134001.7801 1137905.6531 127.9375 127.9375 4.0665e-05 run20.mat -1 -1 2368472 2407510 +4888936 4967122 78187 1142995.7438 1146904.7146 127.9375 127.9375 6.1722e-05 run20.mat -1 -1 2458405 2497500 +5068996 5147081 78086 1151997.7287 1155902.8274 127.9375 127.9375 6.0176e-05 run20.mat -1 -1 2548439 2587484 +5248855 5327094 78240 1160991.0589 1164903.3138 127.9375 127.9375 0 run20.mat -1 -1 2638373 2677494 +5428895 5506822 77928 1169994.3494 1173890.3498 127.9375 127.9375 0 run20.mat -1 -1 2728397 2767362 +5608714 5686997 78284 1178985.6935 1182900.8955 127.9375 127.9375 1.9467e-05 run20.mat -1 -1 2818310 2857454 +5788774 5867056 78283 1187988.8957 1191903.1559 127.9375 127.9375 0 run20.mat -1 -1 2908344 2947487 +5968854 6046931 78078 1196992.2664 1200895.08 127.9375 127.9375 1.9519e-05 run20.mat -1 -1 2998388 3037429 +6148693 6226933 78241 1205983.798 1209896.7376 127.9375 127.9375 1.9478e-05 run20.mat -1 -1 3088312 3127433 +6328753 6406957 78205 1214988.3618 1218897.4769 127.9375 127.9375 1.9487e-05 run20.mat -1 -1 3178346 3217450 +6508773 6586771 77999 1223989.2593 1227891.0327 127.9375 127.9375 1.9538e-05 run20.mat -1 -1 3268359 3307360 +6688593 6766811 78219 1232980.0706 1236889.5658 127.9375 127.9375 0 run20.mat -1 -1 3358274 3397384 +6868632 6946669 78038 1241983.8607 1245884.001 127.9375 127.9375 0 run20.mat -1 -1 3448297 3487317 +7048472 7128832 80361 1250974.1027 1254991.3249 127.9375 127.9375 1.8964e-05 run20.mat -1 -1 3538221 3578403 +7230591 7308625 78035 1260082.115 1263981.1441 127.9375 127.9375 2.6037e-05 run20.mat -1 -1 3629284 3668303 +7410412 7488694 78283 1269071.9825 1272987.9875 127.9375 127.9375 0 run20.mat -1 -1 3719199 3758342 +7590452 7668550 78099 1278072.4425 1281980.4104 127.9375 127.9375 2.4391e-05 run20.mat -1 -1 3809223 3848274 +7770311 7848594 78284 1287066.027 1290982.9946 127.9375 127.9375 0 run20.mat -1 -1 3899156 3938299 +7950390 8028435 78046 1296071.5971 1299973.7513 127.9375 127.9375 0 run20.mat -1 -1 3989200 4028224 +8116047 8270111 154065 1304353.7384 1312058.3687 127.9375 127.9375 1.0716e-05 run20.mat -1 -1 4072032 4149085 +2 279365 279364 1404286.7663 1418256.5731 127.9375 127.9375 5.9097e-06 run21.mat -1 -1 27421 167140 +381153 459397 78245 1423346.0432 1427257.7789 127.9375 127.9375 1.9477e-05 run21.mat -1 -1 218036 257160 +561213 639245 78033 1432348.1147 1436250.879 127.9375 127.9375 1.953e-05 run21.mat -1 -1 308070 347088 +741053 819139 78087 1441339.6942 1445246.9315 127.9375 127.9375 1.9516e-05 run21.mat -1 -1 397994 437039 +920933 999135 78203 1450335.079 1454245.015 127.9375 127.9375 3.8975e-05 run21.mat -1 -1 487938 527041 +1100952 1179068 78117 1459338.1777 1463242.3886 127.9375 127.9375 1.9509e-05 run21.mat -1 -1 577952 617011 +1280832 1359064 78233 1468331.3136 1472243.1412 127.9375 127.9375 0 run21.mat -1 -1 667896 707014 +1460892 1538875 77984 1477334.2628 1481232.5455 127.9375 127.9375 1.9542e-05 run21.mat -1 -1 757930 796922 +1640732 1720882 80151 1486325.3534 1490332.0533 127.9375 127.9375 1.9014e-05 run21.mat -1 -1 847854 887930 +1822651 1900718 78068 1495423.2325 1499326.8925 127.9375 127.9375 3.9042e-05 run21.mat -1 -1 938817 977852 +2002491 2080594 78104 1504414.5531 1508320.9776 127.9375 127.9375 0 run21.mat -1 -1 1028741 1067794 +2182390 2260552 78163 1513409.8482 1517318.1966 127.9375 127.9375 6.3366e-05 run21.mat -1 -1 1118694 1157777 +2362311 2440458 78148 1522404.6626 1526311.1735 127.9375 127.9375 0 run21.mat -1 -1 1208659 1247734 +2542210 2620345 78136 1531401.0754 1535306.1885 127.9375 127.9375 0 run21.mat -1 -1 1298612 1337682 +2722129 2800323 78195 1540395.4751 1544306.8809 127.9375 127.9375 0 run21.mat -1 -1 1388576 1427675 +2902149 2980223 78075 1549397.8571 1553303.4479 127.9375 127.9375 0 run21.mat -1 -1 1478590 1517628 +3082009 3160061 78053 1558391.6197 1562293.2997 127.9375 127.9375 0 run21.mat -1 -1 1568523 1607551 +3261848 3340139 78292 1567383.497 1571296.9173 127.9375 127.9375 0 run21.mat -1 -1 1658447 1697594 +3441908 3519995 78088 1576385.7213 1580291.2643 127.9375 127.9375 1.9516e-05 run21.mat -1 -1 1748481 1787526 +3621787 3699892 78106 1585381.114 1589285.3887 127.9375 127.9375 1.9512e-05 run21.mat -1 -1 1838424 1877479 +3801787 3879858 78072 1594380.8258 1598285.3708 127.9375 127.9375 0 run21.mat -1 -1 1928429 1967466 +3981627 4059911 78285 1603374.6412 1607287.9581 127.9375 127.9375 1.9467e-05 run21.mat -1 -1 2018353 2057496 +4161707 4239706 78000 1612377.7963 1616277.9881 127.9375 127.9375 3.9076e-05 run21.mat -1 -1 2108396 2147397 +4341587 4419866 78280 1621371.6435 1625286.7017 127.9375 127.9375 0 run21.mat -1 -1 2198341 2237482 +4521646 4599701 78056 1630374.5757 1634279.0936 127.9375 127.9375 0 run21.mat -1 -1 2288374 2327403 +4701466 4779751 78286 1639364.1312 1643279.4451 127.9375 127.9375 0 run21.mat -1 -1 2378287 2417432 +4881505 4959675 78171 1648369.3026 1652277.5171 127.9375 127.9375 0 run21.mat -1 -1 2468311 2507397 +5061565 5139539 77975 1657369.9728 1661270.6836 127.9375 127.9375 1.9544e-05 run21.mat -1 -1 2558345 2597334 +5241425 5319665 78241 1666365.284 1670275.4498 127.9375 127.9375 1.9478e-05 run21.mat -1 -1 2648278 2687401 +5421504 5499537 78034 1675367.0869 1679271.0548 127.9375 127.9375 0 run21.mat -1 -1 2738322 2777341 +5601325 5679643 78319 1684359.0077 1688274.9615 127.9375 127.9375 0 run21.mat -1 -1 2828237 2867398 +5781405 5859528 78124 1693363.4469 1697271.6576 127.9375 127.9375 0 run21.mat -1 -1 2918281 2957344 +5961283 6039367 78085 1702358.0012 1706260.9954 127.9375 127.9375 0 run21.mat -1 -1 3008224 3047268 +6141183 6219237 78055 1711352.1579 1715256.5541 127.9375 127.9375 0 run21.mat -1 -1 3098178 3137207 +6321024 6399265 78242 1720345.6002 1724257.7273 127.9375 127.9375 0 run21.mat -1 -1 3188102 3227224 +6501043 6579173 78131 1729346.6612 1733251.5699 127.9375 127.9375 1.9505e-05 run21.mat -1 -1 3278115 3317183 +6680943 6759030 78088 1738341.0639 1742245.2889 127.9375 127.9375 1.9516e-05 run21.mat -1 -1 3368070 3407115 +6860822 6938905 78084 1747336.6888 1751239.8909 127.9375 127.9375 1.9517e-05 run21.mat -1 -1 3458013 3497056 +7040702 7118748 78047 1756331.5078 1760231.8313 127.9375 127.9375 3.9053e-05 run21.mat -1 -1 3547957 3586982 +7220542 7298762 78221 1765321.4838 1769233.339 127.9375 127.9375 4.2213e-05 run21.mat -1 -1 3637881 3676993 +7400561 7478668 78108 1774322.8475 1778228.2926 127.9375 127.9375 5.8533e-05 run21.mat -1 -1 3727895 3766949 +7580462 7658525 78064 1783316.9464 1787223.0427 127.9375 127.9375 5.8566e-05 run21.mat -1 -1 3817849 3856882 +7760321 7838573 78253 1792310.5971 1796223.2132 127.9375 127.9375 0 run21.mat -1 -1 3907782 3946910 +7940381 8018374 77994 1801313.9196 1805213.6851 127.9375 127.9375 2.1168e-05 run21.mat -1 -1 3997816 4036814 +8105507 8372180 266674 1809571.03 1822902.0889 127.9375 127.9375 1.1906e-05 run21.mat -1 -1 4080383 4213698 +2 285540 285539 1906854.7713 1921137.8013 127.9375 127.9375 1.1119e-05 run22.mat -1 -1 12972 155800 +387307 465600 78294 1926227.2899 1930140.6093 127.9375 127.9375 1.9465e-05 run22.mat -1 -1 206686 245834 +567387 645464 78078 1935230.3243 1939134.5214 127.9375 127.9375 3.9037e-05 run22.mat -1 -1 296730 335770 +747266 825523 78258 1944224.9379 1948136.201 127.9375 127.9375 0 run22.mat -1 -1 386673 425804 +927326 1005358 78033 1953226.7667 1957129.4969 127.9375 127.9375 0 run22.mat -1 -1 476707 515725 +1107126 1185336 78211 1962217.5382 1966127.5729 127.9375 127.9375 1.9485e-05 run22.mat -1 -1 566611 605718 +1287206 1365149 77944 1971221.87 1975119.7361 127.9375 127.9375 2.2811e-05 run22.mat -1 -1 656655 695629 +1467045 1545146 78102 1980212.0627 1984119.9663 127.9375 127.9375 1.9513e-05 run22.mat -1 -1 746579 785631 +1646905 1725204 78300 1989207.5688 1993120.4543 127.9375 127.9375 1.9463e-05 run22.mat -1 -1 836513 875664 +1826985 1905031 78047 1998211.359 2002112.2288 127.9375 127.9375 1.9526e-05 run22.mat -1 -1 926556 965582 +2006825 2085117 78293 2007202.419 2011117.9683 127.9375 127.9375 0 run22.mat -1 -1 1016480 1055628 +2186904 2265104 78201 2016205.5943 2020117.6272 127.9375 127.9375 0 run22.mat -1 -1 1106524 1145626 +2366944 2445011 78068 2025209.939 2029111.2847 127.9375 127.9375 0 run22.mat -1 -1 1196548 1235583 +2546824 2626855 80032 2034202.3757 2038205.1079 127.9375 127.9375 0 run22.mat -1 -1 1286492 1326509 +2728744 2806933 78190 2043299.4354 2047209.3208 127.9375 127.9375 2.1115e-05 run22.mat -1 -1 1377456 1416552 +2908743 2986833 78091 2052300.1323 2056202.8507 127.9375 127.9375 0 run22.mat -1 -1 1467459 1506506 +3088624 3166756 78133 2061292.8062 2065202.1365 127.9375 127.9375 0 run22.mat -1 -1 1557404 1596471 +3268642 3346885 78244 2070293.5256 2074207.0912 127.9375 127.9375 0 run22.mat -1 -1 1647416 1686540 +3448682 3526644 77963 2079298.9944 2083195.8181 127.9375 127.9375 0 run22.mat -1 -1 1737441 1776423 +3628541 3706781 78241 2088289.6634 2092201.701 127.9375 127.9375 1.9478e-05 run22.mat -1 -1 1827373 1866496 +3808542 3886652 78111 2097290.1438 2101195.8524 127.9375 127.9375 1.951e-05 run22.mat -1 -1 1917379 1956435 +3988421 4066769 78349 2106284.8576 2110202.3294 127.9375 127.9375 0 run22.mat -1 -1 2007322 2046498 +4168541 4248650 80110 2115290.2759 2119296.2804 127.9375 127.9375 3.8047e-05 run22.mat -1 -1 2097386 2137442 +4350440 4428711 78272 2124384.0875 2128298.4987 127.9375 127.9375 6.0033e-05 run22.mat -1 -1 2188339 2227477 +4530501 4608547 78047 2133389.0875 2137290.9625 127.9375 127.9375 0 run22.mat -1 -1 2278373 2317399 +4710341 4788496 78156 2142380.8476 2146290.6203 127.9375 127.9375 1.9499e-05 run22.mat -1 -1 2368298 2407377 +4890400 4968415 78016 2151383.8036 2155285.5759 127.9375 127.9375 0 run22.mat -1 -1 2458331 2497340 +5070260 5148563 78304 2160380.0873 2164292.0597 127.9375 127.9375 3.8925e-05 run22.mat -1 -1 2548265 2587418 +5250360 5328606 78247 2169380.7023 2173296.1137 127.9375 127.9375 0 run22.mat -1 -1 2638319 2677444 +5430398 5508408 78011 2178383.1607 2182286.4473 127.9375 127.9375 3.9071e-05 run22.mat -1 -1 2728342 2767348 +5610239 5688525 78287 2187378.2405 2191292.6179 127.9375 127.9375 1.9466e-05 run22.mat -1 -1 2818266 2857411 +5790279 5868520 78242 2196377.728 2200290.6078 127.9375 127.9375 0 run22.mat -1 -1 2908291 2947413 +5970359 6048431 78073 2205382.4753 2209285.4069 127.9375 127.9375 1.952e-05 run22.mat -1 -1 2998334 3037372 +6150218 6228360 78143 2214374.8922 2218284.3348 127.9375 127.9375 0 run22.mat -1 -1 3088268 3127340 +6330258 6408386 78129 2223379.0948 2227285.5756 127.9375 127.9375 0 run22.mat -1 -1 3178292 3217357 +6510277 6588304 78028 2232380.2236 2236282.1379 127.9375 127.9375 0 run22.mat -1 -1 3268305 3307320 +6690138 6768408 78271 2241373.661 2245285.0004 127.9375 127.9375 0 run22.mat -1 -1 3358240 3397377 +6870197 6948505 78309 2250374.6626 2254294.0381 127.9375 127.9375 0 run22.mat -1 -1 3448273 3487429 +7050257 7128573 78317 2259380.5944 2263294.7844 127.9375 127.9375 1.9459e-05 run22.mat -1 -1 3538307 3577467 +7230357 7308385 78029 2268384.3204 2272286.2708 127.9375 127.9375 1.9531e-05 run22.mat -1 -1 3628361 3667377 +7410157 7488424 78268 2277372.1576 2281287.0246 127.9375 127.9375 0 run22.mat -1 -1 3718265 3757400 +7590216 7668191 77976 2286377.2554 2290276.9448 127.9375 127.9375 0 run22.mat -1 -1 3808298 3847287 +7770076 7848371 78296 2295370.4434 2299285.6813 127.9375 127.9375 1.9464e-05 run22.mat -1 -1 3898232 3937381 +7950156 8028241 78086 2304374.791 2308279.1009 127.9375 127.9375 3.9033e-05 run22.mat -1 -1 3988276 4027321 +8114842 8316516 201675 2312609.0227 2322696.1635 127.9375 127.9375 2.3929e-05 run22.mat -1 -1 4070622 4153237 +2 280039 280038 2395666.3276 2409670.2616 127.9375 127.9375 1.6326e-05 run23.mat -1 -1 15335 155400 +381809 459936 78128 2414758.5767 2418664.5274 127.9375 127.9375 0 run23.mat -1 -1 206287 245353 +561729 640064 78336 2423754 2427671.5696 127.9375 127.9375 1.9454e-05 run23.mat -1 -1 296251 335420 +741828 819826 77999 2432760.7915 2436661.7685 127.9375 127.9375 0 run23.mat -1 -1 386305 425305 +921729 999934 78206 2441757.7905 2445665.9522 127.9375 127.9375 1.9487e-05 run23.mat -1 -1 476259 515363 +1101727 1179971 78245 2450756.6449 2454669.2785 127.9375 127.9375 2.7592e-05 run23.mat -1 -1 566262 605386 +1281807 1359903 78097 2459760.216 2463664.7439 127.9375 127.9375 1.9514e-05 run23.mat -1 -1 656306 695355 +1461687 1539995 78309 2468753.8025 2472668.9238 127.9375 127.9375 1.9461e-05 run23.mat -1 -1 746250 785405 +1641786 1719897 78112 2477758.3299 2481664.7302 127.9375 127.9375 5.853e-05 run23.mat -1 -1 836303 875361 +1821666 1899910 78245 2486752.2244 2490665.6195 127.9375 127.9375 0 run23.mat -1 -1 926247 965371 +2001726 2080041 78316 2495756.1535 2499673.1002 127.9375 127.9375 3.8919e-05 run23.mat -1 -1 1016281 1055440 +2181826 2259930 78105 2504761.9833 2508668.2066 127.9375 127.9375 1.9512e-05 run23.mat -1 -1 1106335 1145389 +2361705 2440008 78304 2513756.5723 2517670.808 127.9375 127.9375 2.2706e-05 run23.mat -1 -1 1196278 1235432 +2541785 2619870 78086 2522759.9885 2526663.3022 127.9375 127.9375 3.9033e-05 run23.mat -1 -1 1286322 1325366 +2721645 2799749 78105 2531753.6717 2535657.7086 127.9375 127.9375 1.9512e-05 run23.mat -1 -1 1376256 1415310 +2901665 2979990 78326 2540755.0266 2544671.0015 127.9375 127.9375 0 run23.mat -1 -1 1466270 1505435 +3081744 3161897 80154 2549759.8036 2553768.1296 127.9375 127.9375 0 run23.mat -1 -1 1556314 1596392 +3263704 3341774 78071 2558856.3506 2562761.91 127.9375 127.9375 0 run23.mat -1 -1 1647297 1686334 +3443584 3521644 78061 2567852.1359 2571753.8971 127.9375 127.9375 0 run23.mat -1 -1 1737242 1776273 +3623444 3701493 78050 2576844.3587 2580747.2617 127.9375 127.9375 0 run23.mat -1 -1 1827176 1866202 +3803264 3881515 78252 2585834.7906 2589749.4786 127.9375 127.9375 1.9475e-05 run23.mat -1 -1 1917090 1956217 +3983364 4061466 78103 2594842.049 2598745.6125 127.9375 127.9375 0 run23.mat -1 -1 2007144 2046196 +4163262 4241560 78299 2603835.3338 2607753.0395 127.9375 127.9375 0 run23.mat -1 -1 2097096 2136247 +4343321 4421364 78044 2612837.6297 2616742.6841 127.9375 127.9375 0 run23.mat -1 -1 2187130 2226153 +4523183 4601417 78235 2621833.3626 2625744.9479 127.9375 127.9375 0 run23.mat -1 -1 2277065 2316184 +4703203 4781328 78126 2630834.1264 2634739.0398 127.9375 127.9375 1.9507e-05 run23.mat -1 -1 2367079 2406143 +4883101 4961360 78260 2639827.9611 2643741.5204 127.9375 127.9375 1.9473e-05 run23.mat -1 -1 2457032 2496163 +5063181 5141484 78304 2648833.2123 2652748.5784 127.9375 127.9375 1.9462e-05 run23.mat -1 -1 2547076 2586229 +5243281 5321348 78068 2657838.8398 2661739.9387 127.9375 127.9375 0 run23.mat -1 -1 2637130 2676165 +5423121 5501365 78245 2666828.1318 2670743.6059 127.9375 127.9375 0 run23.mat -1 -1 2727053 2766177 +5603161 5681377 78217 2675833.5081 2679742.3926 127.9375 127.9375 1.9484e-05 run23.mat -1 -1 2817077 2856187 +5783201 5861158 77958 2684834.9006 2688730.874 127.9375 127.9375 0 run23.mat -1 -1 2907102 2946082 +5963061 6041355 78295 2693827.6391 2697740.8402 127.9375 127.9375 0 run23.mat -1 -1 2997035 3036184 +6143140 6221227 78088 2702832.2685 2706735.2129 127.9375 127.9375 0 run23.mat -1 -1 3087079 3126124 +6323000 6401255 78256 2711822.9794 2715737.6763 127.9375 127.9375 2.1097e-05 run23.mat -1 -1 3177013 3216142 +6503040 6581352 78313 2720826.6956 2724742.0231 127.9375 127.9375 0 run23.mat -1 -1 3267037 3306195 +6683139 6761269 78131 2729830.4534 2733738.5977 127.9375 127.9375 0 run23.mat -1 -1 3357090 3396157 +6863019 6941267 78249 2738826.0791 2742737.8439 127.9375 127.9375 1.9476e-05 run23.mat -1 -1 3447034 3486160 +7043058 7121235 78178 2747828.0703 2751736.5059 127.9375 127.9375 1.9494e-05 run23.mat -1 -1 3537058 3576148 +7223119 7301303 78185 2756830.5801 2760738.8606 127.9375 127.9375 1.9492e-05 run23.mat -1 -1 3627092 3666186 +7403138 7481172 78035 2765833.7241 2769733.3886 127.9375 127.9375 1.9529e-05 run23.mat -1 -1 3717105 3756124 +7583077 7661179 78103 2774829.2229 2778736.3944 127.9375 127.9375 0 run23.mat -1 -1 3807079 3846131 +7762958 7841276 78319 2783825.207 2787738.9359 127.9375 127.9375 3.8917e-05 run23.mat -1 -1 3897024 3936184 +7943038 8021311 78274 2792826.9529 2796740.1775 127.9375 127.9375 0 run23.mat -1 -1 3987067 4026205 +8108243 8356761 248519 2801088.2747 2813510.8966 127.9375 127.9375 1.2264e-05 run23.mat -1 -1 4069674 4193901 +2 272795 272794 2886286.6233 2899928.7245 127.9375 127.9375 5.0279e-05 run24.mat -1 -1 22466 158915 +374590 452667 78078 2905019.4983 2908924.3962 127.9375 127.9375 3.9037e-05 run24.mat -1 -1 209815 248874 +554450 632718 78269 2914013.3638 2917925.424 127.9375 127.9375 5.8413e-05 run24.mat -1 -1 299748 338884 +734510 812529 78020 2923015.5951 2926917.2224 127.9375 127.9375 0 run24.mat -1 -1 389783 428794 +914329 992464 78136 2932007.1825 2935913.2218 127.9375 127.9375 1.9504e-05 run24.mat -1 -1 479696 518765 +1094369 1172455 78087 2941010.3902 2944913.3645 127.9375 127.9375 1.9516e-05 run24.mat -1 -1 569720 608765 +1274249 1352371 78123 2950004.0909 2953909.8181 127.9375 127.9375 0 run24.mat -1 -1 659663 698726 +1454149 1532497 78349 2958998.7196 2962918.0077 127.9375 127.9375 1.9451e-05 run24.mat -1 -1 749618 788793 +1634269 1712525 78257 2968005.915 2971917.5193 127.9375 127.9375 1.9474e-05 run24.mat -1 -1 839682 878811 +1814309 1892542 78234 2977007.2109 2980918.3998 127.9375 127.9375 4.0583e-05 run24.mat -1 -1 929705 968823 +1994328 2072360 78033 2986009.7073 2989909.2018 127.9375 127.9375 5.859e-05 run24.mat -1 -1 1019719 1058737 +2174188 2252327 78140 2995000.432 2998909.3485 127.9375 127.9375 0 run24.mat -1 -1 1109653 1148724 +2354228 2432492 78265 3004002.9171 3007916.7191 127.9375 127.9375 3.8944e-05 run24.mat -1 -1 1199677 1238811 +2534287 2612270 77984 3013004.7372 3016907.8349 127.9375 127.9375 1.9542e-05 run24.mat -1 -1 1289710 1328703 +2714167 2792428 78262 3022001.4494 3025914.5204 127.9375 127.9375 1.9473e-05 run24.mat -1 -1 1379654 1418786 +2894186 2972518 78333 3031001.848 3034918.2497 127.9375 127.9375 1.9455e-05 run24.mat -1 -1 1469668 1508835 +3074266 3152291 78026 3040005.7451 3043909.2457 127.9375 127.9375 3.9063e-05 run24.mat -1 -1 1559712 1598726 +3254126 3332216 78091 3048999.946 3052903.3614 127.9375 127.9375 3.9031e-05 run24.mat -1 -1 1649646 1688692 +3434006 3512299 78294 3057992.9976 3061907.969 127.9375 127.9375 0 run24.mat -1 -1 1739589 1778738 +3614086 3692154 78069 3066997.6159 3070901.1948 127.9375 127.9375 0 run24.mat -1 -1 1829633 1868669 +3793905 3872179 78275 3075988.7586 3079902.2054 127.9375 127.9375 1.9469e-05 run24.mat -1 -1 1919546 1958686 +3973965 4052025 78061 3084990.4881 3088895.0052 127.9375 127.9375 1.9523e-05 run24.mat -1 -1 2009581 2048613 +4153845 4231917 78073 3093983.7014 3097891.3063 127.9375 127.9375 0 run24.mat -1 -1 2099525 2138563 +4333745 4411823 78079 3102980.8597 3106885.8173 127.9375 127.9375 0 run24.mat -1 -1 2189479 2228520 +4513624 4591660 78037 3111975.7729 3115876.185 127.9375 127.9375 1.9529e-05 run24.mat -1 -1 2279422 2318442 +4693424 4771682 78259 3120964.7538 3124877.8211 127.9375 127.9375 3.8947e-05 run24.mat -1 -1 2369326 2408457 +4873444 4951398 77955 3129966.8106 3133862.7703 127.9375 127.9375 0 run24.mat -1 -1 2459340 2498319 +5053304 5131392 78089 3138958.3828 3142864.3681 127.9375 127.9375 0 run24.mat -1 -1 2549274 2588320 +5233183 5311257 78075 3147951.7256 3151859.2499 127.9375 127.9375 4.0665e-05 run24.mat -1 -1 2639218 2678256 +5413044 5490963 77920 3156946.5159 3160844.0923 127.9375 127.9375 0 run24.mat -1 -1 2729152 2768113 +5592863 5670980 78118 3165939.4198 3169844.9121 127.9375 127.9375 1.9509e-05 run24.mat -1 -1 2819065 2858125 +5772761 5851025 78265 3174934.75 3178846.5327 127.9375 127.9375 0 run24.mat -1 -1 2909019 2948152 +5952802 6030867 78066 3183934.3827 3187838.4741 127.9375 127.9375 2.1148e-05 run24.mat -1 -1 2999043 3038077 +6132643 6210728 78086 3192926.1072 3196833.5839 127.9375 127.9375 1.9517e-05 run24.mat -1 -1 3088967 3128011 +6312562 6390619 78058 3201924.8795 3205827.7124 127.9375 127.9375 2.115e-05 run24.mat -1 -1 3178930 3217961 +6492382 6570577 78196 3210916.2182 3214825.6616 127.9375 127.9375 2.1113e-05 run24.mat -1 -1 3268845 3307944 +6672402 6750428 78027 3219915.4105 3223816.382 127.9375 127.9375 0 run24.mat -1 -1 3358858 3397873 +6852241 6930312 78072 3228908.7229 3232811.3683 127.9375 127.9375 1.952e-05 run24.mat -1 -1 3448782 3487819 +7032101 7110407 78307 3237901.3545 3241816.9064 127.9375 127.9375 0 run24.mat -1 -1 3538716 3577870 +7212181 7290203 78023 3246904.3609 3250806.9127 127.9375 127.9375 0 run24.mat -1 -1 3628760 3667773 +7391981 7469982 78002 3255895.05 3259796.9484 127.9375 127.9375 0 run24.mat -1 -1 3718664 3757666 +7571861 7649839 77979 3264890.4219 3268788.5594 127.9375 127.9375 4.0715e-05 run24.mat -1 -1 3808608 3847599 +7751740 7829853 78114 3273883.3909 3277789.9254 127.9375 127.9375 1.951e-05 run24.mat -1 -1 3898551 3937609 +7931599 8009857 78259 3282876.1058 3286791.2122 127.9375 127.9375 0 run24.mat -1 -1 3988484 4027616 +8096469 8498993 402525 3291120.8564 3311241.1576 127.9375 127.9375 2.3032e-05 run24.mat -1 -1 4070924 4217381 +2 285972 285971 3481914.7981 3496215.2408 127.9375 127.9375 1.5987e-05 run25.mat -1 -1 16863 159884 +387757 465756 78000 3501305.2182 3505206.2528 127.9375 127.9375 1.9538e-05 run25.mat -1 -1 210779 249769 +567636 645898 78263 3510297.5488 3514212.9254 127.9375 127.9375 0 run25.mat -1 -1 300722 339855 +747676 825934 78259 3519300.2476 3523213.8098 127.9375 127.9375 1.9473e-05 run25.mat -1 -1 390746 429877 +927715 1007853 80139 3528304.1866 3532311.1725 127.9375 127.9375 1.9017e-05 run25.mat -1 -1 480770 520840 +1109675 1189651 79977 3537402.2227 3541400.3183 127.9375 127.9375 1.9055e-05 run25.mat -1 -1 571754 611744 +1291436 1369697 78262 3546490.1675 3550402.1181 127.9375 127.9375 1.9473e-05 run25.mat -1 -1 662638 701771 +1471495 1549786 78292 3555493.2582 3559406.0177 127.9375 127.9375 0 run25.mat -1 -1 752672 791819 +1651595 1729629 78035 3564498.4363 3568400.0423 127.9375 127.9375 3.9059e-05 run25.mat -1 -1 842725 881744 +1831434 1909691 78258 3573491.0119 3577402.1275 127.9375 127.9375 1.9474e-05 run25.mat -1 -1 932649 971779 +2011454 2091483 80030 3582490.4379 3586492.635 127.9375 127.9375 1.9043e-05 run25.mat -1 -1 1022663 1062679 +2193374 2271692 78319 3591586.2948 3595504.9625 127.9375 127.9375 1.9459e-05 run25.mat -1 -1 1113627 1152788 +2373454 2451838 78385 3600590.7511 3604509.4431 127.9375 127.9375 3.8884e-05 run25.mat -1 -1 1203671 1242864 +2553734 2631996 78263 3609606.5416 3613517.7085 127.9375 127.9375 2.2718e-05 run25.mat -1 -1 1293815 1332948 +2733793 2812123 78331 3618608.8386 3622527.3878 127.9375 127.9375 0 run25.mat -1 -1 1383848 1423015 +2914013 2992508 78496 3627618.9659 3631545.4614 127.9375 127.9375 1.9415e-05 run25.mat -1 -1 1473962 1513212 +3094273 3172825 78553 3636631.7723 3640561.9206 127.9375 127.9375 2.1017e-05 run25.mat -1 -1 1564096 1603374 +3274592 3352907 78316 3645651.0569 3649565.4017 127.9375 127.9375 0 run25.mat -1 -1 1654259 1693419 +3454672 3533117 78446 3654653.5443 3658575.7584 127.9375 127.9375 0 run25.mat -1 -1 1744304 1783528 +3634991 3713429 78439 3663668.5168 3667591.7449 127.9375 127.9375 1.9429e-05 run25.mat -1 -1 1834467 1873688 +3815231 3893731 78501 3672681.1 3676606.3888 127.9375 127.9375 1.9413e-05 run25.mat -1 -1 1924591 1963843 +3995511 4074015 78505 3681695.852 3685622.0087 127.9375 127.9375 0 run25.mat -1 -1 2014735 2053989 +4175791 4254275 78485 3690709.1372 3694634.761 127.9375 127.9375 0 run25.mat -1 -1 2104879 2144123 +4356071 4434563 78493 3699722.5413 3703650.8958 127.9375 127.9375 0 run25.mat -1 -1 2195023 2234270 +4536350 4614701 78352 3708739.3417 3712656.9082 127.9375 127.9375 0 run25.mat -1 -1 2285166 2324344 +4716589 4795051 78463 3717751.6664 3721674.7387 127.9375 127.9375 0 run25.mat -1 -1 2375290 2414523 +4896811 4975281 78471 3726760.5248 3730685.696 127.9375 127.9375 1.9421e-05 run25.mat -1 -1 2465405 2504641 +5077089 5155475 78387 3735776.4126 3739692.7411 127.9375 127.9375 0 run25.mat -1 -1 2555548 2594743 +5257369 5335677 78309 3744791.1933 3748707.3959 127.9375 127.9375 2.1083e-05 run25.mat -1 -1 2645692 2684847 +5437469 5516102 78634 3753795.2541 3757728.0019 127.9375 127.9375 0 run25.mat -1 -1 2735745 2775064 +5617889 5696096 78208 3762816.3904 3766728.0514 127.9375 127.9375 5.8458e-05 run25.mat -1 -1 2825960 2865065 +5797968 5876436 78469 3771819.4936 3775742.2438 127.9375 127.9375 0 run25.mat -1 -1 2916003 2955239 +5978249 6056692 78444 3780834.7186 3784755.7428 127.9375 127.9375 1.9428e-05 run25.mat -1 -1 3006148 3045370 +6158488 6236777 78290 3789844.6695 3793762.9399 127.9375 127.9375 0 run25.mat -1 -1 3096271 3135417 +6338548 6416880 78333 3798851.6071 3802765.6305 127.9375 127.9375 0 run25.mat -1 -1 3186305 3225473 +6518787 6597105 78319 3807861.1925 3811778.0242 127.9375 127.9375 0 run25.mat -1 -1 3276428 3315589 +6698907 6777201 78295 3816867.5725 3820784.3634 127.9375 127.9375 1.9464e-05 run25.mat -1 -1 3366492 3405641 +6878967 6957425 78459 3825872.4334 3829793.1456 127.9375 127.9375 0 run25.mat -1 -1 3456526 3495757 +7059226 7137491 78266 3834885.0717 3838795.309 127.9375 127.9375 1.9472e-05 run25.mat -1 -1 3546660 3585794 +7239307 7317607 78301 3843890.3668 3847805.3271 127.9375 127.9375 1.9463e-05 run25.mat -1 -1 3636704 3675856 +7419506 7497779 78274 3852897.7245 3856813.2955 127.9375 127.9375 0 run25.mat -1 -1 3726807 3765946 +7599586 7677875 78290 3861903.9073 3865816.541 127.9375 127.9375 1.9466e-05 run25.mat -1 -1 3816851 3855998 +7779686 7858170 78485 3870906.3769 3874831.6946 127.9375 127.9375 0 run25.mat -1 -1 3906906 3946149 +7959945 8038115 78171 3879921.7054 3883829.1229 127.9375 127.9375 1.9495e-05 run25.mat -1 -1 3997039 4036126 +8125186 8257765 132580 3888182.7943 3894810.4114 127.9375 127.9375 0 run25.mat -1 -1 4079663 4145955 +2 278503 278502 3967869.3081 3981790.1504 127.9375 127.9375 2.8728e-05 run26.mat -1 -1 1 80318 +380260 458600 78341 3986880.7547 3990798.45 127.9375 127.9375 0 run26.mat -1 -1 131198 170370 +560400 638702 78303 3995888.0692 3999802.2197 127.9375 127.9375 0 run26.mat -1 -1 221272 260425 +740500 818637 78138 4004892.6337 4008800.1673 127.9375 127.9375 0 run26.mat -1 -1 311327 350397 +920420 998896 78477 4013887.5728 4017811.4198 127.9375 127.9375 1.9419e-05 run26.mat -1 -1 401290 440530 +1100659 1178992 78334 4022900.865 4026815.5868 127.9375 127.9375 2.918e-05 run26.mat -1 -1 491413 530581 +1280759 1359071 78313 4031906.0834 4035822.0375 127.9375 127.9375 1.946e-05 run26.mat -1 -1 581468 620625 +1460819 1539054 78236 4040906.8901 4044820.6803 127.9375 127.9375 3.8958e-05 run26.mat -1 -1 671502 710621 +1640959 1719322 78364 4049916.0996 4053835.6352 127.9375 127.9375 2.1068e-05 run26.mat -1 -1 761576 800759 +1821079 1899361 78283 4058920.7265 4062837.8712 127.9375 127.9375 2.109e-05 run26.mat -1 -1 851640 890782 +2001138 2079427 78290 4067925.8113 4071840.7779 127.9375 127.9375 3.8931e-05 run26.mat -1 -1 941673 980819 +2181218 2259437 78220 4076929.3475 4080841.4043 127.9375 127.9375 0 run26.mat -1 -1 1031717 1070828 +2361317 2439481 78165 4085935.1359 4089844.0967 127.9375 127.9375 1.9497e-05 run26.mat -1 -1 1121771 1160854 +2541377 2619434 78058 4094938.3099 4098841.1766 127.9375 127.9375 0 run26.mat -1 -1 1211804 1250834 +2721277 2799516 78240 4103933.5578 4107845.9367 127.9375 127.9375 3.8956e-05 run26.mat -1 -1 1301758 1340879 +2901317 2979671 78355 4112932.9859 4116854.7082 127.9375 127.9375 1.945e-05 run26.mat -1 -1 1391782 1430961 +3081497 3159811 78315 4121946.2324 4125861.1202 127.9375 127.9375 2.1081e-05 run26.mat -1 -1 1481876 1521035 +3261595 3339914 78320 4130949.3278 4134864.7148 127.9375 127.9375 4.0538e-05 run26.mat -1 -1 1571929 1611090 +3441715 3520010 78296 4139954.6336 4143870.7699 127.9375 127.9375 1.9464e-05 run26.mat -1 -1 1661993 1701142 +3621795 3700228 78434 4148959.4211 4152882.5062 127.9375 127.9375 0 run26.mat -1 -1 1752037 1791255 +3802036 3880402 78367 4157972.8003 4161890.9285 127.9375 127.9375 0 run26.mat -1 -1 1842161 1881346 +3982156 4060299 78144 4166977.0719 4170886.2028 127.9375 127.9375 0 run26.mat -1 -1 1932225 1971298 +4162075 4240278 78204 4175973.5745 4179883.4794 127.9375 127.9375 5.8461e-05 run26.mat -1 -1 2022189 2061292 +4342175 4422531 80357 4184980.3283 4188997.4634 127.9375 127.9375 0 run26.mat -1 -1 2112243 2152423 +4524315 4602298 77984 4194086.3719 4197985.9198 127.9375 127.9375 1.9542e-05 run26.mat -1 -1 2203317 2242310 +4704154 4782484 78331 4203079.6104 4206992.9131 127.9375 127.9375 0 run26.mat -1 -1 2293240 2332407 +4884294 4962637 78344 4212083.5775 4216003.0278 127.9375 127.9375 0 run26.mat -1 -1 2383314 2422487 +5064434 5142752 78319 4221091.0071 4225009.9885 127.9375 127.9375 1.9459e-05 run26.mat -1 -1 2473388 2512549 +5244534 5322674 78141 4230097.2544 4234003.9492 127.9375 127.9375 1.9503e-05 run26.mat -1 -1 2563442 2602514 +5424472 5502714 78243 4239095.5957 4243007.721 127.9375 127.9375 0 run26.mat -1 -1 2653415 2692538 +5604513 5684868 80356 4248096.4084 4252115.1585 127.9375 127.9375 3.9511e-05 run26.mat -1 -1 2743439 2783619 +5786672 5865006 78335 4257204.9851 4261121.8816 127.9375 127.9375 0 run26.mat -1 -1 2834523 2873692 +5966772 6044986 78215 4266210.4936 4270121.2178 127.9375 127.9375 0 run26.mat -1 -1 2924577 2963686 +6146812 6224866 78055 4275211.7807 4279115.896 127.9375 127.9375 0 run26.mat -1 -1 3014600 3053629 +6326753 6405036 78284 4284211.1302 4288123.3601 127.9375 127.9375 0 run26.mat -1 -1 3104575 3143718 +6506812 6585047 78236 4293212.3784 4297124.9539 127.9375 127.9375 2.2725e-05 run26.mat -1 -1 3194609 3233728 +6686912 6765012 78101 4302217.9234 4306122.8907 127.9375 127.9375 1.9513e-05 run26.mat -1 -1 3284663 3323714 +6866791 6944994 78204 4311212.2104 4315121.8658 127.9375 127.9375 0 run26.mat -1 -1 3374606 3413709 +7046891 7125204 78314 4320219.4563 4324132.2338 127.9375 127.9375 0 run26.mat -1 -1 3464660 3503818 +7226991 7305227 78237 4329223.7909 4333132.7273 127.9375 127.9375 4.0581e-05 run26.mat -1 -1 3554714 3593834 +7407031 7485265 78235 4338223.5003 4342137.0158 127.9375 127.9375 0 run26.mat -1 -1 3644738 3683857 +7587030 7665076 78047 4347224.533 4351128.5247 127.9375 127.9375 3.9053e-05 run26.mat -1 -1 3734741 3773766 +7766929 7845182 78254 4356220.9326 4360133.3568 127.9375 127.9375 0 run26.mat -1 -1 3824695 3863823 +7947029 8025211 78183 4365225.0662 4369135.3364 127.9375 127.9375 2.2741e-05 run26.mat -1 -1 3914748 3953841 +8112183 8282513 170331 4373482.7116 4381997.3945 127.9375 127.9375 8.9471e-06 run26.mat -1 -1 3997329 4082493 +2 258265 258264 4452125.4146 4465042.3855 127.9375 127.9375 1.1802e-05 run27.mat -1 -1 35886 165063 +360066 438380 78315 4470132.1866 4474046.0907 127.9375 127.9375 3.8919e-05 run27.mat -1 -1 215965 255124 +540145 618201 78057 4479134.4649 4483037.426 127.9375 127.9375 2.1151e-05 run27.mat -1 -1 306009 345038 +720005 798237 78233 4488128.2704 4492041.2486 127.9375 127.9375 0 run27.mat -1 -1 395943 435061 +900105 978144 78040 4497133.8498 4501034.3428 127.9375 127.9375 9.764e-05 run27.mat -1 -1 485997 525018 +1079905 1158173 78269 4506123.4772 4510036.0201 127.9375 127.9375 0 run27.mat -1 -1 575901 615037 +1260065 1338155 78091 4515133.8503 4519035.6595 127.9375 127.9375 0 run27.mat -1 -1 665985 705031 +1439944 1518032 78089 4524125.7488 4528031.2013 127.9375 127.9375 0 run27.mat -1 -1 755928 794974 +1619824 1699867 80044 4533120.2631 4537123.3804 127.9375 127.9375 1.9039e-05 run27.mat -1 -1 845872 885896 +1801744 1880008 78265 4542215.5478 4546128.6274 127.9375 127.9375 1.9472e-05 run27.mat -1 -1 936836 975970 +1981784 2059896 78113 4551217.7418 4555124.3413 127.9375 127.9375 2.1136e-05 run27.mat -1 -1 1026861 1065918 +2161644 2239850 78207 4560213.4063 4564122.4264 127.9375 127.9375 6.333e-05 run27.mat -1 -1 1116794 1155899 +2341743 2419825 78083 4569217.3892 4573120.7703 127.9375 127.9375 0 run27.mat -1 -1 1206848 1245890 +2521623 2599781 78159 4578212.058 4582122.3438 127.9375 127.9375 1.9498e-05 run27.mat -1 -1 1296791 1335872 +2701682 2779745 78064 4587212.9656 4591118.6133 127.9375 127.9375 0 run27.mat -1 -1 1386825 1425858 +2881502 2959836 78335 4596206.2593 4600122.0784 127.9375 127.9375 4.053e-05 run27.mat -1 -1 1476739 1515907 +3061602 3139625 78024 4605212.1429 4609113.3039 127.9375 127.9375 3.9064e-05 run27.mat -1 -1 1566793 1605806 +3241521 3319677 78157 4614207.1654 4618115.2473 127.9375 127.9375 1.9499e-05 run27.mat -1 -1 1656756 1695836 +3421581 3499705 78125 4623209.4804 4627115.5368 127.9375 127.9375 1.9507e-05 run27.mat -1 -1 1746790 1785854 +3601481 3679942 78462 4632204.7896 4636128.1287 127.9375 127.9375 1.9423e-05 run27.mat -1 -1 1836744 1875976 +3781721 3859767 78047 4641216.3145 4645120.4403 127.9375 127.9375 3.9053e-05 run27.mat -1 -1 1926868 1965893 +3961561 4039870 78310 4650211.3809 4654124.8855 127.9375 127.9375 4.0543e-05 run27.mat -1 -1 2016792 2055948 +4141640 4219940 78301 4659214.8008 4663129.2228 127.9375 127.9375 1.9463e-05 run27.mat -1 -1 2106836 2145987 +4321700 4399896 78197 4668216.2982 4672127.1796 127.9375 127.9375 1.9489e-05 run27.mat -1 -1 2196870 2235969 +4501780 4579854 78075 4677219.9532 4681126.4164 127.9375 127.9375 1.9519e-05 run27.mat -1 -1 2286914 2325952 +4681620 4759901 78282 4686212.3708 4690128.0853 127.9375 127.9375 2.109e-05 run27.mat -1 -1 2376837 2415980 +4861680 4939994 78315 4695218.1912 4699132.2244 127.9375 127.9375 4.0541e-05 run27.mat -1 -1 2466872 2506030 +5041779 5119934 78156 4704222.6947 4708128.4764 127.9375 127.9375 0 run27.mat -1 -1 2556925 2596004 +5221818 5300063 78246 4713222.0461 4717135.0954 127.9375 127.9375 0 run27.mat -1 -1 2646948 2686073 +5401859 5480089 78231 4722224.8039 4726136.8861 127.9375 127.9375 1.948e-05 run27.mat -1 -1 2736973 2776089 +5581878 5660132 78255 4731228.7843 4735139.9506 127.9375 127.9375 1.9474e-05 run27.mat -1 -1 2826986 2866115 +5761937 5839997 78061 4740229.9067 4744132.3662 127.9375 127.9375 0 run27.mat -1 -1 2917020 2956051 +5941818 6020097 78280 4749222.8503 4753136.6208 127.9375 127.9375 1.9468e-05 run27.mat -1 -1 3006964 3046105 +6121878 6200237 78360 4758228.3448 4762144.8362 127.9375 127.9375 1.9448e-05 run27.mat -1 -1 3096998 3136180 +6302017 6380241 78225 4767235.8625 4771146.8824 127.9375 127.9375 0 run27.mat -1 -1 3187072 3226185 +6482037 6560052 78016 4776234.8034 4780135.6158 127.9375 127.9375 0 run27.mat -1 -1 3277085 3316095 +6661878 6740141 78264 4785229.8405 4789141.7539 127.9375 127.9375 3.8944e-05 run27.mat -1 -1 3367010 3406143 +6841937 6922290 80354 4794233.2501 4798248.137 127.9375 127.9375 0 run27.mat -1 -1 3457043 3497221 +7024056 7102121 78066 4803336.7626 4807240.4146 127.9375 127.9375 0 run27.mat -1 -1 3548107 3587141 +7203936 7282119 78184 4812332.0989 4816242.2283 127.9375 127.9375 0 run27.mat -1 -1 3638050 3677144 +7383935 7462201 78267 4821331.7948 4825243.699 127.9375 127.9375 0 run27.mat -1 -1 3728054 3767189 +7563976 7642104 78129 4830332.7732 4834242.5684 127.9375 127.9375 5.8518e-05 run27.mat -1 -1 3818078 3857144 +7743995 7822170 78176 4839336.0306 4843243.4037 127.9375 127.9375 2.1119e-05 run27.mat -1 -1 3908092 3947181 +7924075 8002339 78265 4848339.3497 4852254.4173 127.9375 127.9375 0 run27.mat -1 -1 3998136 4037270 +8090210 8325793 235584 4856646.5757 4868422.9147 127.9375 127.9375 1.3477e-05 run27.mat -1 -1 4081207 4187927 +2 272015 272014 4936738.5054 4950341.7456 127.9375 127.9375 5.6026e-06 run28.mat -1 -1 18165 154227 +373929 452027 78099 4955436.6576 4959345.0337 127.9375 127.9375 0 run28.mat -1 -1 205186 244237 +553831 633970 80140 4964436.0494 4968442.0487 127.9375 127.9375 3.9617e-05 run28.mat -1 -1 295141 335212 +735749 814039 78291 4973530.9111 4977444.2864 127.9375 127.9375 1.9465e-05 run28.mat -1 -1 386104 425251 +915809 993810 78002 4982533.441 4986432.387 127.9375 127.9375 0 run28.mat -1 -1 476138 515140 +1095629 1173683 78055 4991524.923 4995428.5031 127.9375 127.9375 1.9524e-05 run28.mat -1 -1 566052 605080 +1275469 1353740 78272 5000516.9704 5004431.2399 127.9375 127.9375 0 run28.mat -1 -1 655976 695113 +1455528 1533493 77966 5009519.0149 5013416.8009 127.9375 127.9375 1.9547e-05 run28.mat -1 -1 746009 784993 +1635367 1713649 78283 5018510.3008 5022425.1481 127.9375 127.9375 0 run28.mat -1 -1 835933 875076 +1815428 1893448 78021 5027513.7611 5031416.75 127.9375 127.9375 0 run28.mat -1 -1 925967 964978 +1995247 2073303 78057 5036507.6469 5040408.9804 127.9375 127.9375 0 run28.mat -1 -1 1015881 1054910 +2175107 2253365 78259 5045500.3848 5049411.8853 127.9375 127.9375 0 run28.mat -1 -1 1105814 1144945 +2355147 2433237 78091 5054501.0229 5058406.5148 127.9375 127.9375 0 run28.mat -1 -1 1195838 1234885 +2535007 2613028 78022 5063493.9316 5067397.8804 127.9375 127.9375 2.116e-05 run28.mat -1 -1 1285772 1324784 +2714906 2793165 78260 5072488.9693 5076404.4853 127.9375 127.9375 0 run28.mat -1 -1 1375725 1414857 +2894966 2973222 78257 5081492.7735 5085406.7963 127.9375 127.9375 0 run28.mat -1 -1 1465760 1504889 +3075005 3153079 78075 5090493.7126 5094400.3157 127.9375 127.9375 1.9519e-05 run28.mat -1 -1 1555783 1594822 +3254866 3333122 78257 5099487.9996 5103400.9175 127.9375 127.9375 0 run28.mat -1 -1 1645718 1684848 +3434925 3512994 78070 5108492.0062 5112394.4703 127.9375 127.9375 1.9521e-05 run28.mat -1 -1 1735751 1774787 +3614806 3693061 78256 5117484.3197 5121399.0678 127.9375 127.9375 2.1097e-05 run28.mat -1 -1 1825695 1864825 +3794845 3873140 78296 5126486.9609 5130402.1569 127.9375 127.9375 0 run28.mat -1 -1 1915719 1954868 +3974904 4053037 78134 5135492.8329 5139399.1196 127.9375 127.9375 0 run28.mat -1 -1 2005752 2044821 +4154785 4235137 80353 5144483.7821 5148502.0952 127.9375 127.9375 0 run28.mat -1 -1 2095697 2135875 +4336925 4415034 78110 5153593.3959 5157497.3351 127.9375 127.9375 0 run28.mat -1 -1 2186771 2225827 +4516824 4595069 78246 5162589.1498 5166500.45 127.9375 127.9375 1.9477e-05 run28.mat -1 -1 2276724 2315848 +4696843 4775127 78285 5171587.6514 5175504.82 127.9375 127.9375 2.2711e-05 run28.mat -1 -1 2366738 2405881 +4876923 4955024 78102 5180592.3994 5184498.0313 127.9375 127.9375 4.3903e-05 run28.mat -1 -1 2456781 2495834 +5056803 5134996 78194 5189587.2278 5193494.534 127.9375 127.9375 0 run28.mat -1 -1 2546726 2585824 +5236883 5314931 78049 5198590.5444 5202494.9036 127.9375 127.9375 0 run28.mat -1 -1 2636769 2675795 +5416743 5494978 78236 5207585.7303 5211494.5375 127.9375 127.9375 0 run28.mat -1 -1 2726703 2765823 +5596742 5674809 78068 5216584.8129 5220487.1385 127.9375 127.9375 1.9521e-05 run28.mat -1 -1 2816707 2855742 +5776583 5854907 78325 5225577.5923 5229492.0432 127.9375 127.9375 1.9457e-05 run28.mat -1 -1 2906631 2945795 +5956662 6034752 78091 5234579.1703 5238484.2565 127.9375 127.9375 0 run28.mat -1 -1 2996675 3035722 +6136502 6214797 78296 5243573.8672 5247487.0175 127.9375 127.9375 0 run28.mat -1 -1 3086599 3125748 +6316601 6394813 78213 5252577.5257 5256487.5068 127.9375 127.9375 0 run28.mat -1 -1 3176652 3215760 +6496602 6574912 78311 5261578.9773 5265493.4535 127.9375 127.9375 1.9461e-05 run28.mat -1 -1 3266657 3305813 +6676681 6754743 78063 5270583.4122 5274484.6383 127.9375 127.9375 0 run28.mat -1 -1 3356700 3395733 +6856561 6934857 78297 5279577.0814 5283490.3901 127.9375 127.9375 0 run28.mat -1 -1 3446644 3485794 +7036621 7114906 78286 5288579.2037 5292492.3244 127.9375 127.9375 1.9467e-05 run28.mat -1 -1 3536678 3575823 +7216679 7294764 78086 5297583.025 5301486.0843 127.9375 127.9375 1.9517e-05 run28.mat -1 -1 3626711 3665755 +7396520 7474835 78316 5306574.4478 5310491.8608 127.9375 127.9375 3.8919e-05 run28.mat -1 -1 3716635 3755795 +7576620 7654895 78276 5315580.0173 5319493.4148 127.9375 127.9375 2.1092e-05 run28.mat -1 -1 3806689 3845828 +7756659 7834859 78201 5324583.5257 5328492.8947 127.9375 127.9375 1.9488e-05 run28.mat -1 -1 3896713 3935814 +7936759 8014914 78156 5333586.1471 5337494.6731 127.9375 127.9375 0 run28.mat -1 -1 3986767 4025846 +8102819 8978380 875562 5341889.1178 5385668.1262 127.9375 127.9375 1.0588e-05 run28.mat -1 -1 4069800 4309800 +2 273008 273007 5455183.9972 5468836.6489 127.9375 127.9375 2.2794e-05 run29.mat -1 -1 27746 164295 +374796 453257 78462 5473925.7324 5477849.1574 127.9375 127.9375 2.1042e-05 run29.mat -1 -1 215191 254423 +555076 633346 78271 5482941.1573 5486855.9946 127.9375 127.9375 0 run29.mat -1 -1 305335 344472 +735136 813416 78281 5491944.8102 5495858.476 127.9375 127.9375 0 run29.mat -1 -1 395369 434511 +915176 993470 78295 5500945.4398 5504860.4428 127.9375 127.9375 1.9464e-05 run29.mat -1 -1 485393 524542 +1095276 1173359 78084 5509951.3227 5513855.6694 127.9375 127.9375 0 run29.mat -1 -1 575447 614491 +1275155 1353435 78281 5518945.7863 5522858.8638 127.9375 127.9375 1.9468e-05 run29.mat -1 -1 665391 704532 +1455275 1533594 78320 5527951.8547 5531867.5804 127.9375 127.9375 1.9458e-05 run29.mat -1 -1 755454 794616 +1635355 1713852 78498 5536955.5974 5540881.1848 127.9375 127.9375 0 run29.mat -1 -1 845499 884749 +1815614 1893856 78243 5545969.7728 5549881.8487 127.9375 127.9375 3.8955e-05 run29.mat -1 -1 935632 974755 +1995653 2073920 78268 5554971.5317 5558883.7916 127.9375 127.9375 1.9471e-05 run29.mat -1 -1 1025655 1064790 +2175733 2254027 78295 5563975.4545 5567890.8782 127.9375 127.9375 1.9464e-05 run29.mat -1 -1 1115699 1154848 +2355834 2434062 78229 5572979.096 5576892.5303 127.9375 127.9375 5.8443e-05 run29.mat -1 -1 1205754 1244869 +2535853 2614093 78241 5581981.3687 5585893.0739 127.9375 127.9375 0 run29.mat -1 -1 1295767 1334889 +2715893 2794216 78324 5590981.9643 5594898.7694 127.9375 127.9375 1.9457e-05 run29.mat -1 -1 1385791 1424954 +2895972 2974301 78330 5599987.1451 5603904.8423 127.9375 127.9375 5.9989e-05 run29.mat -1 -1 1475835 1515001 +3076073 3154356 78284 5608994.4561 5612906.755 127.9375 127.9375 3.8934e-05 run29.mat -1 -1 1565889 1605032 +3256153 3334466 78314 5617995.8319 5621912.6525 127.9375 127.9375 1.946e-05 run29.mat -1 -1 1655933 1695091 +3436231 3514693 78463 5627000.1823 5630923.6862 127.9375 127.9375 1.9423e-05 run29.mat -1 -1 1745976 1785209 +3616492 3694799 78308 5636013.3725 5639929.1831 127.9375 127.9375 0 run29.mat -1 -1 1836111 1875265 +3796572 3874841 78270 5645017.9335 5648931.4661 127.9375 127.9375 0 run29.mat -1 -1 1926154 1965291 +3976631 4054925 78295 5654022.0006 5657935.0331 127.9375 127.9375 0 run29.mat -1 -1 2016188 2055336 +4156710 4235023 78314 5663026.5339 5666940.7721 127.9375 127.9375 0 run29.mat -1 -1 2106231 2145390 +4336770 4416898 80129 5672028.7831 5676035.3276 127.9375 127.9375 0 run29.mat -1 -1 2196265 2236331 +4518691 4596803 78113 5681124.7621 5685030.6846 127.9375 127.9375 1.951e-05 run29.mat -1 -1 2287230 2326287 +4698591 4776874 78284 5690119.8699 5694034.4319 127.9375 127.9375 0 run29.mat -1 -1 2377184 2416327 +4878650 4956933 78284 5699123.1222 5703035.278 127.9375 127.9375 1.9467e-05 run29.mat -1 -1 2467217 2506360 +5058730 5136995 78266 5708126.8249 5712042.7669 127.9375 127.9375 0 run29.mat -1 -1 2557261 2596395 +5238789 5316849 78061 5717128.6365 5721033.596 127.9375 127.9375 0 run29.mat -1 -1 2647294 2686326 +5418630 5496889 78260 5726122.2603 5730036.079 127.9375 127.9375 1.9473e-05 run29.mat -1 -1 2737219 2776350 +5598708 5676994 78287 5735126.4966 5739040.9492 127.9375 127.9375 0 run29.mat -1 -1 2827262 2866407 +5778810 5857117 78308 5744131.1797 5748047.4723 127.9375 127.9375 2.1083e-05 run29.mat -1 -1 2917316 2956472 +5958909 6036968 78060 5753135.9726 5757038.6159 127.9375 127.9375 0 run29.mat -1 -1 3007370 3046401 +6138768 6216936 78169 5762129.0235 5766038.411 127.9375 127.9375 0 run29.mat -1 -1 3097304 3136389 +6318828 6397199 78372 5771132.8105 5775050.2681 127.9375 127.9375 3.8891e-05 run29.mat -1 -1 3187338 3226525 +6498947 6577066 78120 5780139.9625 5784045.4535 127.9375 127.9375 0 run29.mat -1 -1 3277401 3316462 +6678868 6757101 78234 5789135.3878 5793047.79 127.9375 127.9375 1.948e-05 run29.mat -1 -1 3367366 3406484 +6858947 6937224 78278 5798139.6451 5802054.488 127.9375 127.9375 0 run29.mat -1 -1 3457409 3496549 +7039026 7117294 78269 5807142.4494 5811057.8319 127.9375 127.9375 1.9471e-05 run29.mat -1 -1 3547453 3586588 +7219046 7297165 78120 5816146.3578 5820050.2569 127.9375 127.9375 3.9016e-05 run29.mat -1 -1 3637466 3676528 +7398965 7477292 78328 5825141.2836 5829056.1488 127.9375 127.9375 0 run29.mat -1 -1 3727430 3766595 +7579086 7657172 78087 5834146.0796 5838051.4463 127.9375 127.9375 5.8549e-05 run29.mat -1 -1 3817494 3856539 +7758986 7837264 78279 5843142.5082 5847056.8118 127.9375 127.9375 0 run29.mat -1 -1 3907448 3946588 +7939046 8017297 78252 5852145.8046 5856057.9677 127.9375 127.9375 1.9475e-05 run29.mat -1 -1 3997482 4036609 +8103931 8319626 215696 5860389.137 5871176.7927 127.9375 127.9375 7.6541e-06 run29.mat -1 -1 4079928 4184305 +2 272452 272451 10627862.8956 10641484.8875 127.9375 127.9375 1.1653e-05 run3.mat -1 -1 20078 156294 +374278 452576 78299 10646575.8079 10650490.8176 127.9375 127.9375 1.9463e-05 run3.mat -1 -1 207209 246360 +554359 632679 78321 10655579.3902 10659494.2989 127.9375 127.9375 1.9458e-05 run3.mat -1 -1 297253 336416 +734458 812729 78272 10664583.0599 10668498.1434 127.9375 127.9375 1.947e-05 run3.mat -1 -1 387307 426445 +914517 992724 78208 10673588.4436 10677498.1127 127.9375 127.9375 0 run3.mat -1 -1 477341 516446 +1094497 1172792 78296 10682587.1318 10686502.07 127.9375 127.9375 1.9464e-05 run3.mat -1 -1 567335 606484 +1274577 1352862 78286 10691591.7962 10695505.0966 127.9375 127.9375 1.9467e-05 run3.mat -1 -1 657378 696523 +1454656 1532942 78287 10700593.2669 10704507.597 127.9375 127.9375 2.1089e-05 run3.mat -1 -1 747422 786567 +1634697 1712809 78113 10709596.2101 10713502.3862 127.9375 127.9375 1.951e-05 run3.mat -1 -1 837446 876504 +1814556 1892996 78441 10718590.0096 10722513.0823 127.9375 127.9375 4.0475e-05 run3.mat -1 -1 927380 966601 +1994776 2073034 78259 10727604.4369 10731514.4269 127.9375 127.9375 0 run3.mat -1 -1 1017494 1056624 +2174836 2253064 78229 10736603.833 10740514.2701 127.9375 127.9375 4.0585e-05 run3.mat -1 -1 1107528 1146643 +2354875 2433145 78271 10745606.556 10749520.1032 127.9375 127.9375 1.947e-05 run3.mat -1 -1 1197551 1236688 +2534935 2613200 78266 10754609.3985 10758520.7083 127.9375 127.9375 0 run3.mat -1 -1 1287585 1326720 +2714975 2793135 78161 10763611.7965 10767521.8996 127.9375 127.9375 0 run3.mat -1 -1 1377609 1416691 +2894974 2973255 78282 10772609.4221 10776525.5165 127.9375 127.9375 1.9468e-05 run3.mat -1 -1 1467612 1506754 +3075054 3153184 78131 10781616.3499 10785523.0881 127.9375 127.9375 3.9011e-05 run3.mat -1 -1 1557657 1596723 +3255094 3333369 78276 10790617.2059 10794532.2904 127.9375 127.9375 1.9469e-05 run3.mat -1 -1 1647680 1686820 +3435133 3513431 78299 10799618.7355 10803535.1398 127.9375 127.9375 1.9463e-05 run3.mat -1 -1 1737704 1776855 +3615213 3695332 80120 10808624.5088 10812629.8431 127.9375 127.9375 4.2797e-05 run3.mat -1 -1 1827748 1867809 +3797233 3875252 78020 10817725.917 10821626.5499 127.9375 127.9375 2.1161e-05 run3.mat -1 -1 1918762 1957773 +3977051 4055303 78253 10826715.2696 10830631.746 127.9375 127.9375 1.9475e-05 run3.mat -1 -1 2008675 2047803 +4157072 4235390 78319 10835716.4102 10839633.6981 127.9375 127.9375 0 run3.mat -1 -1 2098689 2137850 +4337151 4415427 78277 10844722.0592 10848635.2304 127.9375 127.9375 3.8938e-05 run3.mat -1 -1 2188733 2227873 +4517231 4595270 78040 10853725.4377 10857627.4121 127.9375 127.9375 5.8584e-05 run3.mat -1 -1 2278776 2317798 +4697052 4775285 78234 10862715.8958 10866629.6255 127.9375 127.9375 0 run3.mat -1 -1 2368691 2407809 +4877051 4955098 78048 10871718.2396 10875618.8137 127.9375 127.9375 2.1153e-05 run3.mat -1 -1 2458694 2497720 +5056910 5134932 78023 10880710.5621 10884612.4356 127.9375 127.9375 3.9065e-05 run3.mat -1 -1 2548628 2587641 +5236731 5314913 78183 10889701.7665 10893610.1 127.9375 127.9375 1.9492e-05 run3.mat -1 -1 2638542 2677635 +5416790 5494848 78059 10898705.0315 10902608.0536 127.9375 127.9375 5.857e-05 run3.mat -1 -1 2728576 2767606 +5596610 5674899 78290 10907697.0432 10911608.5637 127.9375 127.9375 0 run3.mat -1 -1 2818490 2857636 +5776689 5854713 78025 10916701.5862 10920601.2758 127.9375 127.9375 0 run3.mat -1 -1 2908533 2947547 +5956489 6034751 78263 10925688.7934 10929602.6015 127.9375 127.9375 2.1095e-05 run3.mat -1 -1 2998437 3037570 +6136569 6214685 78117 10934693.1808 10938600.7762 127.9375 127.9375 0 run3.mat -1 -1 3088481 3127541 +6316448 6394694 78247 10943688.0406 10947600.3724 127.9375 127.9375 0 run3.mat -1 -1 3178425 3217549 +6496468 6576633 80166 10952689.3905 10956696.7221 127.9375 127.9375 3.802e-05 run3.mat -1 -1 3268439 3308523 +6678388 6756469 78082 10961786.4923 10965689.3382 127.9375 127.9375 0 run3.mat -1 -1 3359402 3398444 +6858268 6936517 78250 10970778.2003 10974692.7336 127.9375 127.9375 6.005e-05 run3.mat -1 -1 3449346 3488473 +7038327 7116435 78109 10979783.6479 10983686.7972 127.9375 127.9375 3.9022e-05 run3.mat -1 -1 3539380 3578436 +7218207 7296451 78245 10988776.9988 10992690.3245 127.9375 127.9375 1.9477e-05 run3.mat -1 -1 3629324 3668448 +7398206 7476272 78067 10997776.3613 11001680.7152 127.9375 127.9375 0 run3.mat -1 -1 3719327 3758362 +7578086 7656136 78051 11006769.7734 11010673.0079 127.9375 127.9375 2.2779e-05 run3.mat -1 -1 3809271 3848298 +7757946 7836224 78279 11015764.8429 11019680.3681 127.9375 127.9375 5.8405e-05 run3.mat -1 -1 3899205 3938346 +7938026 8016083 78058 11024769.8528 11028672.6799 127.9375 127.9375 8.4602e-05 run3.mat -1 -1 3989249 4028279 +8117865 8196082 78218 11033762.7024 11037672.2967 127.9375 127.9375 1.9484e-05 run3.mat -1 -1 4079173 4118283 +8297865 8376168 78304 11042762.1401 11046675.3286 127.9375 127.9375 4.0546e-05 run3.mat -1 -1 4169176 4208330 +8477945 8556236 78292 11051766.4638 11055679.9032 127.9375 127.9375 1.9465e-05 run3.mat -1 -1 4259220 4298368 +8658003 8736096 78094 11060767.1033 11064672.1449 127.9375 127.9375 3.9029e-05 run3.mat -1 -1 4349253 4388302 +8837864 8916150 78287 11069761.304 11073676.3538 127.9375 127.9375 1.9466e-05 run3.mat -1 -1 4439188 4478333 +9017944 9096166 78223 11078765.792 11082678.7938 127.9375 127.9375 2.1106e-05 run3.mat -1 -1 4529232 4568344 +9197943 9276242 78300 11087766.4378 11091681.3622 127.9375 127.9375 3.8926e-05 run3.mat -1 -1 4619235 4658387 +9378043 9456313 78271 11096771.2528 11100685.5645 127.9375 127.9375 4.0563e-05 run3.mat -1 -1 4709289 4748426 +9558083 9638174 80092 11105774.7223 11109778.3844 127.9375 127.9375 0 run3.mat -1 -1 4799313 4839360 +9740002 9818090 78089 11114870.0827 11118774.1137 127.9375 127.9375 0 run3.mat -1 -1 4890276 4929322 +9919862 9998108 78247 11123861.371 11127774.7044 127.9375 127.9375 3.8953e-05 run3.mat -1 -1 4980211 5019335 +10099862 10178141 78280 11132863.5882 11136774.8694 127.9375 127.9375 0 run3.mat -1 -1 5070215 5109355 +10279921 10358004 78084 11141866.8379 11145771.4794 127.9375 127.9375 3.9034e-05 run3.mat -1 -1 5160248 5199291 +10459782 10538034 78253 11150860.6645 11154771.1121 127.9375 127.9375 1.9475e-05 run3.mat -1 -1 5250182 5289310 +10639820 10719949 80130 11159860.2017 11163868.645 127.9375 127.9375 0 run3.mat -1 -1 5340205 5380271 +10821721 10899844 78124 11168957.619 11172863.7979 127.9375 127.9375 1.9507e-05 run3.mat -1 -1 5431160 5470223 +11001741 11080053 78313 11177960.3034 11181873.6005 127.9375 127.9375 1.946e-05 run3.mat -1 -1 5521174 5560332 +11181801 11259777 77977 11186960.7359 11190860.4042 127.9375 127.9375 8.3061e-05 run3.mat -1 -1 5611208 5650197 +11273353 12000001 726649 11191539.1281 11227873.4928 127.9375 127.9375 1.0836e-05 run3.mat -1 -1 5656986 5896986 +2 262071 262070 5966777.4142 5979879.5824 127.9375 127.9375 0 run30.mat -1 -1 22346 153366 +363846 443958 80113 5984968.8569 5988973.4031 127.9375 127.9375 0 run30.mat -1 -1 204256 244314 +545766 624043 78278 5994062.7017 5997976.5291 127.9375 127.9375 0 run30.mat -1 -1 295220 334360 +725826 803903 78078 6003067.7362 6006970.5282 127.9375 127.9375 1.9519e-05 run30.mat -1 -1 385254 424294 +905667 983979 78313 6012059.8603 6015975.687 127.9375 127.9375 1.946e-05 run30.mat -1 -1 475178 514336 +1085746 1164037 78292 6021064.7906 6024979.0655 127.9375 127.9375 1.9465e-05 run30.mat -1 -1 565222 604369 +1265805 1343887 78083 6030066.7628 6033972.0461 127.9375 127.9375 7.9696e-05 run30.mat -1 -1 655255 694298 +1445665 1523808 78144 6039061.3614 6042967.4876 127.9375 127.9375 0 run30.mat -1 -1 745189 784262 +1625586 1703808 78223 6048056.7976 6051967.0228 127.9375 127.9375 0 run30.mat -1 -1 835153 874266 +1805625 1883704 78080 6057056.9927 6060962.9723 127.9375 127.9375 0 run30.mat -1 -1 925177 964218 +1985485 2063773 78289 6066050.7681 6069965.2179 127.9375 127.9375 1.9466e-05 run30.mat -1 -1 1015111 1054257 +2165564 2243837 78274 6075056.3151 6078969.6655 127.9375 127.9375 1.947e-05 run30.mat -1 -1 1105155 1144293 +2345664 2423742 78079 6084062.3156 6087965.8148 127.9375 127.9375 0 run30.mat -1 -1 1195209 1234249 +2525524 2603760 78237 6093054.8301 6096966.0896 127.9375 127.9375 0 run30.mat -1 -1 1285142 1324262 +2705563 2783851 78289 6102056.2398 6105969.5085 127.9375 127.9375 3.8932e-05 run30.mat -1 -1 1375166 1414312 +2885663 2963858 78196 6111061.6622 6114971.4792 127.9375 127.9375 6.0091e-05 run30.mat -1 -1 1465220 1504319 +3065642 3143943 78302 6120061.7253 6123975.3707 127.9375 127.9375 1.9463e-05 run30.mat -1 -1 1555213 1594365 +3245722 3323812 78091 6129063.3247 6132969.6717 127.9375 127.9375 0 run30.mat -1 -1 1645257 1684304 +3425602 3503845 78244 6138059.3038 6141971.8079 127.9375 127.9375 1.9477e-05 run30.mat -1 -1 1735201 1774324 +3605622 3683893 78272 6147061.6391 6150973.1685 127.9375 127.9375 0 run30.mat -1 -1 1825214 1864352 +3785682 3863979 78298 6156063.308 6159978.7474 127.9375 127.9375 0 run30.mat -1 -1 1915249 1954399 +3965802 4044087 78286 6165068.9871 6168981.4497 127.9375 127.9375 3.8933e-05 run30.mat -1 -1 2005313 2044457 +4145841 4223960 78120 6174071.0828 6177975.9883 127.9375 127.9375 7.9658e-05 run30.mat -1 -1 2095337 2134397 +4325742 4403990 78249 6183065.639 6186978.2259 127.9375 127.9375 1.9476e-05 run30.mat -1 -1 2185291 2224417 +4505781 4583820 78040 6192068.0544 6195971.9354 127.9375 127.9375 2.1155e-05 run30.mat -1 -1 2275314 2314335 +4685640 4763927 78288 6201063.3163 6204974.78 127.9375 127.9375 0 run30.mat -1 -1 2365248 2404393 +4865701 4943990 78290 6210064.0524 6213978.3028 127.9375 127.9375 0 run30.mat -1 -1 2455282 2494428 +5045760 5123978 78219 6219067.4973 6222980.1842 127.9375 127.9375 1.9483e-05 run30.mat -1 -1 2545315 2584426 +5225859 5303947 78089 6228074.0935 6231978.2771 127.9375 127.9375 0 run30.mat -1 -1 2635369 2674415 +5405700 5483948 78249 6237065.6233 6240977.4481 127.9375 127.9375 1.9476e-05 run30.mat -1 -1 2725293 2764419 +5585741 5663870 78130 6246068.0202 6249972.5076 127.9375 127.9375 0 run30.mat -1 -1 2815318 2854384 +5765640 5843923 78284 6255063.3763 6258976.3213 127.9375 127.9375 0 run30.mat -1 -1 2905271 2944415 +5945719 6023798 78080 6264068.681 6267972.5781 127.9375 127.9375 1.9518e-05 run30.mat -1 -1 2995315 3034356 +6125620 6203842 78223 6273061.6638 6276974.0371 127.9375 127.9375 0 run30.mat -1 -1 3085269 3124382 +6305639 6383790 78152 6282062.4756 6285969.0909 127.9375 127.9375 0 run30.mat -1 -1 3175283 3214359 +6485559 6563854 78296 6291058.4681 6294973.3511 127.9375 127.9375 1.9464e-05 run30.mat -1 -1 3265247 3304396 +6665639 6743712 78074 6300061.5388 6303967.1964 127.9375 127.9375 0 run30.mat -1 -1 3355291 3394329 +6845518 6923818 78301 6309056.5858 6312972.5898 127.9375 127.9375 1.9463e-05 run30.mat -1 -1 3445234 3484386 +7025597 7103856 78260 6318061.7334 6321975.744 127.9375 127.9375 0 run30.mat -1 -1 3535278 3574409 +7205636 7283897 78262 6327063.9154 6330977.9139 127.9375 127.9375 0 run30.mat -1 -1 3625301 3664433 +7385717 7464025 78309 6336066.4031 6339980.9 127.9375 127.9375 7.9466e-05 run30.mat -1 -1 3715345 3754501 +7565797 7643896 78100 6345071.0121 6348976.7333 127.9375 127.9375 0 run30.mat -1 -1 3805389 3844441 +7745676 7824037 78362 6354067.4396 6357983.3438 127.9375 127.9375 1.9448e-05 run30.mat -1 -1 3895333 3934515 +7925795 8003966 78172 6363073.2543 6366982.4802 127.9375 127.9375 0 run30.mat -1 -1 3985396 4024484 +8091176 8362919 271744 6371341.5474 6384930.1134 127.9375 127.9375 1.1684e-05 run30.mat -1 -1 4068090 4187516 +2 344293 344292 6723982.4391 6741193.9798 127.9375 127.9375 3.1354e-05 run31.mat 138.4168 4 2186 174299 +391580 463179 71600 6743557.848 6747137.2184 127.9375 127.9375 4.6116e-05 run31.mat 1.4145 4 197944 233745 +494945 567717 72773 6748727.6321 6752364.0081 127.9375 127.9375 0 run31.mat 13.4163 4 249629 286016 +593814 668298 74485 6753670.4058 6757394.7636 127.9375 127.9375 2.046e-05 run31.mat 24.7812 4 299065 336309 +694350 768878 74529 6758697.2442 6762423.3904 127.9375 127.9375 2.0448e-05 run31.mat 32.1438 4 349335 386601 +794960 869469 74510 6763727.8732 6767453.4217 127.9375 127.9375 2.0453e-05 run31.mat 43.5977 4 399643 436898 +895577 969863 74287 6768759.6257 6772473.2146 127.9375 127.9375 4.1029e-05 run31.mat 54.9939 4 449953 487097 +995917 1070200 74284 6773775.5397 6777490.3811 127.9375 127.9375 0 run31.mat 62.3228 4 500125 537268 +1096261 1172602 76342 6778793.2586 6782609.2062 127.9375 127.9375 0 run31.mat 73.9376 4 550299 588472 +1198641 1275040 76400 6783911.4736 6787732.4527 127.9375 127.9375 5.9842e-05 run31.mat 85.5739 4 601492 639693 +1301050 1377274 76225 6789032.2829 6792842.715 127.9375 127.9375 0 run31.mat 93.2457 4 652699 690812 +1403420 1479703 76284 6794151.1537 6797966.2643 127.9375 127.9375 1.9978e-05 run31.mat 104.8732 4 703886 742029 +1505840 1582225 76386 6799271.5421 6803090.8842 127.9375 127.9375 0 run31.mat 112.4829 4 755097 793292 +1608286 1686425 78140 6804394.1454 6808302.2698 127.9375 127.9375 1.9503e-05 run31.mat 124.3642 4 806323 845395 +1712583 1790829 78247 6809608.9193 6813523.9081 127.9375 127.9375 3.8953e-05 run31.mat 132.338 4 858474 897599 +1816888 1895145 78258 6814825.8633 6818736.0509 127.9375 127.9375 1.9474e-05 run31.mat 144.1669 4 910628 949759 +1921329 2001507 80179 6820045.5634 6824054.8318 127.9375 127.9375 0 run31.mat 152.3951 4 962852 1002942 +2027640 2107917 80278 6825363.3118 6829375.2053 127.9375 127.9375 2.3729e-05 run31.mat 164.4624 4 1016010 1056150 +2133990 2214240 80251 6830680.9335 6834691.6515 127.9375 127.9375 0 run31.mat 172.7618 4 1069187 1109314 +2240449 2320609 80161 6836003.0583 6840011.6881 127.9375 127.9375 3.8023e-05 run31.mat 184.7958 4 1122419 1162500 +2346857 2427242 80386 6841322.4507 6845343.7469 127.9375 127.9375 1.8958e-05 run31.mat 193.0999 4 1175625 1215819 +2453398 2533488 80091 6846650.8666 6850654.7266 127.9375 127.9375 0 run31.mat 205.1659 4 1228898 1268944 +2559728 2642159 82432 6851968.0623 6856089.9734 127.9375 127.9375 1.8488e-05 run31.mat 213.6731 4 1282065 1323282 +2668464 2730975 62512 6857404.0023 6860527.2729 127.9375 127.9375 2.4379e-05 run31.mat 221 4 1336436 1367667 +2 318630 318629 7042634.1258 7058568.3247 127.9375 127.9375 1.8216e-05 run32.mat 1 3.9326 8261 167594 +420901 482537 61637 7063681.9363 7066764.2612 127.9375 127.9375 2.4725e-05 run32.mat 1 3 218731 249546 +508929 570595 61667 7068084.1276 7071167.0406 127.9375 127.9375 0 run32.mat 1.568 3 262747 293582 +638692 699066 60375 7074571.2261 7077589.6744 127.9375 127.9375 0 run32.mat 12.9401 3 327632 357820 +751482 813401 61920 7080209.7023 7083303.9867 127.9375 127.9375 0 run32.mat 21.9767 3 384029 414990 +865851 927645 61795 7085930.2 7089016.7669 127.9375 127.9375 0 run32.mat 31.086 3 441216 472115 +980034 1041926 61893 7091637.0048 7094733.4099 127.9375 127.9375 2.6674e-05 run32.mat 41 3 498310 529257 +1094191 1155927 61737 7097345.5766 7100432.9412 127.9375 127.9375 0 run32.mat 54.0506 3 555391 586260 +1208301 1272192 63892 7103050.5182 7106244.2664 127.9375 127.9375 0 run32.mat 63.3318 3 612449 644396 +1324487 1388373 63887 7108860.2296 7112055.4373 127.9375 127.9375 4.7708e-05 run32.mat 72.7248 3 670544 702488 +1440661 1504563 63903 7114670.4918 7117865.2518 127.9375 127.9375 0 run32.mat 82.1595 3 728633 760586 +1556852 1620775 63924 7120478.6538 7123676.6435 127.9375 127.9375 8.1452e-05 run32.mat 91.5601 3 786732 818695 +1673055 1736942 63888 7126289.615 7129482.4043 127.9375 127.9375 0 run32.mat 101 3 844836 876781 +1789231 1852915 63685 7132098.9486 7135284.5773 127.9375 127.9375 0 run32.mat 111 3 902926 934770 +1905397 1969274 63878 7137908.1119 7141102.5212 127.9375 127.9375 0 run32.mat 124.4657 3 961012 992952 +2021587 2085446 63860 7143717.3936 7146908.3143 127.9375 127.9375 0 run32.mat 133.8391 3 1019110 1051040 +2137784 2201439 63656 7149526.2426 7152709.3969 127.9375 127.9375 0 run32.mat 143.2501 3 1077211 1109040 +2253736 2317607 63872 7155323.3865 7158516.7506 127.9375 127.9375 2.386e-05 run32.mat 152.6081 3 1135189 1167126 +2369915 2433774 63860 7161133.0708 7164326.6343 127.9375 127.9375 0 run32.mat 162.0145 3 1193281 1225212 +2486074 2550018 63945 7166939.8927 7170140.3142 127.9375 127.9375 2.3833e-05 run32.mat 171.4383 3 1251363 1283337 +2602311 2668067 65757 7172755.1744 7176041.4182 127.9375 127.9375 0 run32.mat 181.1508 3 1309484 1342363 +2720333 2786130 65798 7178654.6618 7181944.4755 127.9375 127.9375 4.6323e-05 run32.mat 191 3 1368498 1401398 +2838398 2902344 63947 7184559.6341 7187754.179 127.9375 127.9375 2.5818e-05 run32.mat 201 3 1427533 1459507 +2954686 3020552 65867 7190374.6289 7193663.9836 127.9375 127.9375 0 run32.mat 214.5609 3 1485680 1518614 +3072902 3170128 97227 7196282.6279 7201141.8789 127.9375 127.9375 0 run32.mat 221 3 1544790 1593393 +2 290553 290552 7303427.4653 7317962.9524 127.9375 127.9375 5.2451e-06 run33.mat 215.669 3.0658 16653 161984 +392364 470655 78292 7323051.1882 7326966.578 127.9375 127.9375 1.9465e-05 run33.mat 140 4 212891 252038 +572464 651035 78572 7332057.0631 7335983.5743 127.9375 127.9375 5.8188e-05 run33.mat 140 4 302945 342232 +752784 831028 78245 7341073.7557 7344983.9746 127.9375 127.9375 0 run33.mat 140 4 393109 432233 +932903 1011222 78320 7350077.8427 7353994.5737 127.9375 127.9375 0 run33.mat 140 4 483173 522333 +1112983 1191413 78431 7359082.0611 7363005.1727 127.9375 127.9375 1.9431e-05 run33.mat 140 4 573216 612433 +1293183 1371395 78213 7368091.6182 7372001.9202 127.9375 127.9375 1.9485e-05 run33.mat 140 4 663320 702428 +1473283 1551610 78328 7377097.7386 7381016.0663 127.9375 127.9375 0 run33.mat 140 4 753374 792540 +1653383 1731720 78338 7386104.4397 7390019.0208 127.9375 127.9375 1.9454e-05 run33.mat 140 4 843428 882598 +1833503 1912016 78514 7395109.758 7399034.7232 127.9375 127.9375 0 run33.mat 140 4 933492 972751 +2013781 2092044 78264 7404124.7971 7408035.3489 127.9375 127.9375 1.9472e-05 run33.mat 140 4 1023635 1062768 +2193861 2272142 78282 7413127.3311 7417043.0655 127.9375 127.9375 1.9468e-05 run33.mat 140 4 1113679 1152821 +2373902 2452454 78553 7422130.9716 7426056.5025 127.9375 127.9375 3.8801e-05 run33.mat 140 4 1203704 1242982 +2554221 2632579 78359 7431145.0212 7435062.8565 127.9375 127.9375 7.7794e-05 run33.mat 140 4 1293867 1333048 +2734341 2812652 78312 7440151.9143 7444067.9238 127.9375 127.9375 2.1082e-05 run33.mat 140 4 1383931 1423088 +2914442 2992902 78461 7449156.4086 7453079.0397 127.9375 127.9375 1.9423e-05 run33.mat 140 4 1473985 1513217 +3094680 3172980 78301 7458167.6403 7462084.1967 127.9375 127.9375 0 run33.mat 140 4 1564108 1603260 +3274781 3353320 78540 7467176.0149 7471100.7539 127.9375 127.9375 4.0424e-05 run33.mat 140 4 1654163 1693434 +3455080 3535469 80390 7476190.5215 7480207.7754 127.9375 127.9375 0 run33.mat 140 4 1744316 1784513 +3637240 3715529 78290 7485298.3655 7489214.4684 127.9375 127.9375 3.8931e-05 run33.mat 140 4 1835400 1874546 +3817339 3895608 78270 7494302.7206 7498216.2606 127.9375 127.9375 0 run33.mat 140 4 1925454 1964590 +3997399 4075718 78320 7503306.2654 7507222.8044 127.9375 127.9375 1.9458e-05 run33.mat 140 4 2015488 2054649 +4177500 4255862 78363 7512312.55 7516230.1642 127.9375 127.9375 1.9448e-05 run33.mat 140 4 2105542 2144725 +4357779 4436104 78326 7521325.7558 7525241.5333 127.9375 127.9375 0 run33.mat 140 4 2195686 2234850 +4537878 4618286 80409 7530330.3378 7534350.6503 127.9375 127.9375 1.8953e-05 run33.mat 140 4 2285739 2325945 +4720059 4798298 78240 7539440.2154 7543352.4982 127.9375 127.9375 0 run33.mat 140 4 2376833 2415955 +4900097 4978612 78516 7548442.7606 7552366.4375 127.9375 127.9375 1.941e-05 run33.mat 140 4 2466856 2506116 +5080398 5158630 78233 7557456.8579 7561370.2646 127.9375 127.9375 1.948e-05 run33.mat 140 4 2557011 2596129 +5260517 5338806 78290 7566465.144 7570377.7367 127.9375 127.9375 0 run33.mat 140 4 2647075 2686221 +5440597 5518879 78283 7575468.458 7579379.8737 127.9375 127.9375 0 run33.mat 140 4 2737119 2776261 +5620717 5698977 78261 7584473.5618 7588385.802 127.9375 127.9375 0 run33.mat 140 4 2827182 2866314 +5800756 5879269 78514 7593474.8892 7597400.0058 127.9375 127.9375 3.882e-05 run33.mat 140 4 2917206 2956464 +5981055 6059361 78307 7602492.5664 7606405.9687 127.9375 127.9375 7.7846e-05 run33.mat 140 4 3007359 3046514 +6161136 6239365 78230 7611496.1221 7615405.8455 127.9375 127.9375 0 run33.mat 140 4 3097404 3136520 +6341276 6419593 78318 7620501.6671 7624419.3801 127.9375 127.9375 3.8918e-05 run33.mat 140 4 3187478 3226638 +6521375 6599838 78464 7629507.8623 7633428.9931 127.9375 127.9375 0 run33.mat 140 4 3277531 3316764 +6701635 6779917 78283 7638520.2212 7642434.9819 127.9375 127.9375 6.0025e-05 run33.mat 140 4 3367665 3406808 +6881755 6960090 78336 7647526.766 7651444.4341 127.9375 127.9375 0 run33.mat 140 4 3457729 3496898 +7061874 7140236 78363 7656534.067 7660451.1413 127.9375 127.9375 0 run33.mat 140 4 3547792 3586975 +7241994 7320305 78312 7665540.4924 7669453.0194 127.9375 127.9375 0 run33.mat 140 4 3637856 3677014 +7422094 7500353 78260 7674542.7716 7678457.6774 127.9375 127.9375 0 run33.mat 140 4 3727910 3767041 +7602114 7680325 78212 7683544.0831 7687455.7164 127.9375 127.9375 0 run33.mat 140 4 3817924 3857031 +7782213 7860586 78374 7692550.5487 7696468.2699 127.9375 127.9375 1.9445e-05 run33.mat 140 4 3907977 3947166 +7962333 8040556 78224 7701556.5003 7705471.0081 127.9375 127.9375 1.9482e-05 run33.mat 140 4 3998042 4037155 +8127882 8307313 179432 7709833.0498 7718802.1615 127.9375 127.9375 3.4681e-05 run33.mat 140 4 4080820 4170495 +2 317815 317814 7820918.5319 7836807.2293 127.9375 127.9375 3.9926e-05 run34.mat 132.9403 4 1552 160407 +362363 434844 72482 7839033.7868 7842658.3745 127.9375 127.9375 1.5246e-05 run34.mat 2.8143 4 182682 218924 +465681 539390 73710 7844199.4739 7847885.9438 127.9375 127.9375 3.033e-05 run34.mat 14.7682 4 234343 271200 +565057 638079 73023 7849167.6683 7852821.9353 127.9375 127.9375 2.4528e-05 run34.mat 21.8798 4 284034 320546 +663859 738887 75029 7854109.5437 7857861.3328 127.9375 127.9375 3.7585e-05 run34.mat 33.2888 4 333436 370952 +764662 839389 74728 7859150.8539 7862886.1857 127.9375 127.9375 4.6575e-05 run34.mat 44.6927 4 383841 421206 +865212 939899 74688 7864176.1945 7867910.8774 127.9375 127.9375 2.398e-05 run34.mat 52.0717 4 434118 471462 +965656 1040215 74560 7869198.6856 7872927.0345 127.9375 127.9375 3.1859e-05 run34.mat 63.4625 4 484341 521623 +1066000 1142807 76808 7874215.3888 7878056.0845 127.9375 127.9375 7.938e-06 run34.mat 75.0507 4 534516 572921 +1168587 1245254 76668 7879346.1268 7883178.7402 127.9375 127.9375 5.3018e-05 run34.mat 82.7634 4 585812 624147 +1271032 1347614 76583 7884469.214 7888298.1266 127.9375 127.9375 2.2226e-05 run34.mat 94.3871 4 637036 675329 +1373433 1450375 76943 7889588.6027 7893436.4791 127.9375 127.9375 2.3607e-05 run34.mat 102.0996 4 688239 726712 +1475928 1554899 78972 7894713.244 7898660.5835 127.9375 127.9375 4.3912e-05 run34.mat 113.9307 4 739488 778976 +1580399 1659382 78984 7899937.4457 7903885.1839 127.9375 127.9375 2.1871e-05 run34.mat 125.7715 4 791727 831220 +1684866 1763679 78814 7905162.6809 7909100.9978 127.9375 127.9375 1.3861e-05 run34.mat 133.7841 4 843962 883371 +1789189 1867917 78729 7910377.998 7914311.093 127.9375 127.9375 2.0813e-05 run34.mat 145.5168 4 896126 935492 +1893718 1972460 78743 7915601.4752 7919542.052 127.9375 127.9375 2.2261e-05 run34.mat 153.6343 4 948393 987766 +1997999 2077035 79037 7920817.4449 7924769.3727 127.9375 127.9375 9.5355e-06 run34.mat 165.4433 4 1000536 1040055 +2102449 2181599 79151 7926038.8011 7929998.8359 127.9375 127.9375 3.1777e-05 run34.mat 173.4842 4 1052763 1092340 +2206977 2288119 81143 7931266.5911 7935324.6459 127.9375 127.9375 8.7763e-06 run34.mat 185.4936 4 1105030 1145602 +2313540 2394544 81005 7936595.9145 7940643.9946 127.9375 127.9375 9.1916e-06 run34.mat 193.7909 4 1158313 1198817 +2420070 2501147 81078 7941920.6719 7945976.2668 127.9375 127.9375 9.3912e-06 run34.mat 205.8657 4 1211581 1252121 +2526522 2609706 83185 7947245.1342 7951402.9762 127.9375 127.9375 5.645e-06 run34.mat 214.3599 4 1264809 1306402 +2635153 2891805 256653 7952676.0838 7965505.8726 127.9375 127.9375 1.0533e-05 run34.mat 221 4 1319127 1447422 +2 354020 354019 8016052.5705 8033754.052 127.9375 127.9375 2.9601e-05 run35.mat 205.4837 3.9295 10184 187200 +456065 518032 61968 8038855.2759 8041950.5463 127.9375 127.9375 2.7468e-05 run35.mat 1 3 238224 269210 +620184 681912 61729 8047061.8546 8050148.6569 127.9375 127.9375 0 run35.mat 1 3 320288 351153 +688001 750045 62045 8050451.4176 8053555.5944 127.9375 127.9375 9.0077e-06 run35.mat 1.1503 3 354197 385220 +852266 914311 62046 8058664.9865 8061766.7216 127.9375 127.9375 1.8015e-05 run35.mat 11 3 436334 467358 +954795 1016716 61922 8063792.3775 8066886.9952 127.9375 127.9375 1.7847e-05 run35.mat 11 3 487600 518563 +1118763 1180605 61843 8071990.288 8075082.8117 127.9375 127.9375 3.7382e-05 run35.mat 21 3 569588 600510 +1193199 1254867 61669 8075713.5638 8078795.3598 127.9375 127.9375 9.8867e-06 run35.mat 21 3 606808 637643 +1357004 1418821 61818 8083903.6481 8086994.8214 127.9375 127.9375 4.6233e-05 run35.mat 31 3 688714 719623 +1431449 1493204 61756 8087626.8699 8090711.5053 127.9375 127.9375 3.7023e-05 run35.mat 31 3 725938 756817 +1595203 1657071 61869 8095814.458 8098905.1186 127.9375 127.9375 4.6401e-05 run35.mat 41 3 807819 838754 +1669880 1731439 61560 8099545.0748 8102625.2698 127.9375 127.9375 9.2855e-06 run35.mat 41 3 845159 875940 +1833425 1895318 61894 8107725.8871 8110820.4003 127.9375 127.9375 1.8471e-05 run35.mat 51 3 926935 957883 +1908132 1969637 61506 8111460.149 8114535.1154 127.9375 127.9375 3.8413e-05 run35.mat 54.3363 3 964290 995044 +2071642 2135589 63948 8119634.263 8122833.0504 127.9375 127.9375 1.3508e-05 run35.mat 61 3 1046049 1078034 +2148337 2211741 63405 8123469.6305 8126641.2183 127.9375 127.9375 1.9032e-05 run35.mat 64.5523 3 1084398 1116101 +2313763 2375797 62035 8131740.9996 8134841.5345 127.9375 127.9375 9.0092e-06 run35.mat 71 3 1167114 1198133 +2388499 2451969 63471 8135478.8128 8138652.1589 127.9375 127.9375 1.9613e-05 run35.mat 71 3 1204484 1236221 +2553962 2618087 64126 8143750.8112 8146959.1538 127.9375 127.9375 0 run35.mat 81 3 1287219 1319283 +2630850 2694245 63396 8147596.366 8150766.663 127.9375 127.9375 2.705e-05 run35.mat 81 3 1325664 1357364 +2796242 2858136 61895 8155867.5291 8158962.8717 127.9375 127.9375 2.9142e-05 run35.mat 91 3 1408365 1439313 +2870920 2934412 63493 8159598.5172 8162775.0035 127.9375 127.9375 8.8023e-06 run35.mat 91 3 1445705 1477452 +3036381 3100317 63937 8167872.783 8171071.5049 127.9375 127.9375 3.7549e-05 run35.mat 101 3 1528439 1560409 +3113117 3176502 63386 8171710.366 8174880.3645 127.9375 127.9375 8.6172e-06 run35.mat 101 3 1566809 1598503 +3278481 3342435 63955 8179977.0608 8183175.6701 127.9375 127.9375 1.7279e-05 run35.mat 111 3 1649494 1681473 +3355242 3418622 63381 8183818.2459 8186985.8912 127.9375 127.9375 2.6655e-05 run35.mat 111 3 1687877 1719568 +3520601 3584756 64156 8192086.2602 8195292.4925 127.9375 127.9375 2.5739e-05 run35.mat 121 3 1770560 1802639 +3597569 3660947 63379 8195932.9825 8199102.3691 127.9375 127.9375 3.6676e-05 run35.mat 121.304 3 1809045 1840736 +3762919 3826882 63964 8204199.8428 8207398.6656 127.9375 127.9375 1.9065e-05 run35.mat 131 3 1891724 1923707 +3839727 3904909 65183 8208042.2377 8211298.8176 127.9375 127.9375 0 run35.mat 131.9063 3 1930130 1962723 +4006860 4071056 64197 8216398.8413 8219605.4621 127.9375 127.9375 4.4519e-05 run35.mat 141 3 2013700 2045799 +4083957 4149078 65122 8220253.1961 8223510.4568 127.9375 127.9375 2.6137e-05 run35.mat 142.5443 3 2052250 2084812 +4251040 4315210 64171 8228607.9012 8231816.2334 127.9375 127.9375 2.7119e-05 run35.mat 151 3 2135796 2167881 +4328072 4393225 65154 8232459.4106 8235716.2322 127.9375 127.9375 2.7099e-05 run35.mat 153.1768 3 2174313 2206891 +4495179 4559179 64001 8240813.4192 8244015.8496 127.9375 127.9375 1.8657e-05 run35.mat 161 3 2257870 2289872 +4572060 4637392 65333 8244659.0748 8247924.314 127.9375 127.9375 3.4997e-05 run35.mat 163.7257 3 2296312 2328980 +4739339 4803358 64020 8253022.904 8256222.9669 127.9375 127.9375 0 run35.mat 171 3 2379956 2411966 +4816268 4881376 65109 8256867.626 8260123.3062 127.9375 127.9375 8.3891e-06 run35.mat 174.3991 3 2418422 2450977 +4983338 5047336 63999 8265221.599 8268422.848 127.9375 127.9375 1.9054e-05 run35.mat 181 3 2501961 2533961 +5060241 5125571 65331 8269068.4033 8272332.0224 127.9375 127.9375 2.547e-05 run35.mat 181 3 2540414 2573080 +5227497 5291488 63992 8277431.3789 8280631.8152 127.9375 127.9375 8.5356e-06 run35.mat 191 3 2624045 2656042 +5304407 5369707 65301 8281277.6602 8284541.7418 127.9375 127.9375 1.7312e-05 run35.mat 191.1168 3 2662502 2695154 +5471637 5535633 63997 8289637.1646 8292838.3028 127.9375 127.9375 2.6001e-05 run35.mat 201 3 2746121 2778120 +5548551 5613629 65079 8293484.3332 8296738.3394 127.9375 127.9375 8.9782e-06 run35.mat 201.6736 3 2784579 2817120 +5715578 5781631 66054 8301834.744 8305138.1552 127.9375 127.9375 8.461e-06 run35.mat 211 3 2868096 2901124 +5794545 5859849 65305 8305783.4229 8309050.3071 127.9375 127.9375 2.6453e-05 run35.mat 212.6572 3 2907582 2940235 +5961783 6027644 65862 8314146.2695 8317438.1 127.9375 127.9375 2.5458e-05 run35.mat 221 3 2991204 3024136 +6040558 6392839 352282 8318084.0304 8335695.7192 127.9375 127.9375 2.7728e-05 run35.mat 221 3 3030594 3136690 +2 496475 496474 8378520.0314 8403341.0504 127.9375 127.9375 6.2081e-05 run36.mat 138.3641 2.2488 9221 250000 +515338 581456 66119 8404286.4735 8407591.7894 127.9375 127.9375 0 run36.mat 1.2546 1 250000 +599561 665900 66340 8408497.6994 8411814.9877 127.9375 127.9375 2.2972e-05 run36.mat 14.9053 1 250000 +681520 748427 66908 8412596.0585 8415940.0829 127.9375 127.9375 0 run36.mat 23.7851 1 250000 +764132 830979 66848 8416727.5815 8420069.4378 127.9375 127.9375 2.2798e-05 run36.mat 32.6553 1 250000 +846646 913506 66861 8420851.3301 8424195.1773 127.9375 127.9375 0 run36.mat 41.5253 1 250000 +929203 997878 68676 8424980.6337 8428411.8688 127.9375 127.9375 4.4382e-05 run36.mat 54.9263 1 250000 +1013568 1082247 68680 8429198.5941 8432630.8854 127.9375 127.9375 0 run36.mat 64.2722 1 250000 +1097916 1166622 68707 8433414.2144 8436851.2259 127.9375 127.9375 2.2181e-05 run36.mat 73.4464 1 250000 +1182277 1250974 68698 8437632.2563 8441068.4211 127.9375 127.9375 2.2184e-05 run36.mat 82.6244 1 250000 +1266661 1337204 70544 8441853.4065 8445381.5968 127.9375 127.9375 2.5203e-05 run36.mat 92.056 1 250000 +1352858 1421547 68690 8446162.506 8449598.4841 127.9375 127.9375 0 run36.mat 101.2318 1 250000 +1437211 1507776 70566 8450380.2963 8453907.5415 127.9375 127.9375 0 run36.mat 114.971 1 250000 +1523439 1594184 70746 8454692.7351 8458228.7246 127.9375 127.9375 2.872e-05 run36.mat 124.4249 1 250000 +1609852 1680269 70418 8459011.5302 8462534.6817 127.9375 127.9375 2.1642e-05 run36.mat 133.9104 1 250000 +1695911 1766708 70798 8463315.7472 8466855.578 127.9375 127.9375 8.969e-05 run36.mat 143.3918 1 250000 +1782358 1852958 70601 8467636.9313 8471168.7138 127.9375 127.9375 0 run36.mat 152.8673 1 250000 +1868557 1939136 70580 8471948.2399 8475478.0956 127.9375 127.9375 0 run36.mat 162.3264 1 250000 +1954772 2025368 70597 8476261.0997 8479787.9012 127.9375 127.9375 2.1587e-05 run36.mat 171.795 1 250000 +2041002 2113618 72617 8480571.4423 8484200.4822 127.9375 127.9375 4.1973e-05 run36.mat 181.5099 1 250000 +2129268 2201890 72623 8484984.7104 8488615.7805 127.9375 127.9375 4.3718e-05 run36.mat 191.2884 1 250000 +2217552 2290153 72602 8489398.8879 8493027.0568 127.9375 127.9375 0 run36.mat 205.1566 1 250000 +2305811 2378629 72819 8493812.6474 8497452.6452 127.9375 127.9375 0 run36.mat 214.9569 1 250000 +2394271 2647480 253210 8498234.9231 8510890.7713 127.9375 127.9375 1.2037e-05 run36.mat 221 1 250000 +2 713727 713726 9008248.8219 9043938.8182 127.9375 127.9375 1.2811e-05 run37.mat 181.4053 1.5399 11162 251162 +760995 832443 71449 9046302.2568 9049875.3987 127.9375 127.9375 2.133e-05 run37.mat 2.0005 4 251162 +864272 935186 70915 9051466.5351 9055009.5165 127.9375 127.9375 2.149e-05 run37.mat 13.8106 4 251162 +961311 1034053 72743 9056318.7261 9059956.0512 127.9375 127.9375 4.19e-05 run37.mat 24.9561 4 251162 +1060178 1134603 74426 9061262.075 9064981.7722 127.9375 127.9375 2.0476e-05 run37.mat 32.2533 4 251162 +1160730 1235197 74468 9066290.0502 9070012.0063 127.9375 127.9375 0 run37.mat 43.6455 4 251162 +1261271 1335590 74320 9071316.4204 9075032.9294 127.9375 127.9375 4.1011e-05 run37.mat 55.0815 4 251162 +1361668 1436125 74458 9076335.1805 9080060.33 127.9375 127.9375 0 run37.mat 62.4651 4 251162 +1462152 1538586 76435 9081362.2479 9085184.3336 127.9375 127.9375 2.16e-05 run37.mat 73.992 4 251162 +1564620 1641007 76388 9086482.5248 9090302.8425 127.9375 127.9375 1.995e-05 run37.mat 85.6461 4 251162 +1667157 1743251 76095 9091612.4234 9095415.9155 127.9375 127.9375 0 run37.mat 93.3621 4 251162 +1769409 1847747 78339 9096724.514 9100641.0426 127.9375 127.9375 1.9454e-05 run37.mat 105.15 4 251162 +1873893 1952084 78192 9101947.2312 9105856.7687 127.9375 127.9375 4.0604e-05 run37.mat 113.1265 4 251162 +1978165 2056444 78280 9107163.1805 9111074.3001 127.9375 127.9375 1.9468e-05 run37.mat 124.9841 4 251162 +2082600 2160879 78280 9112383.2855 9116296.3016 127.9375 127.9375 2.109e-05 run37.mat 132.9676 4 251162 +2186928 2265376 78449 9117601.0743 9121521.7902 127.9375 127.9375 0 run37.mat 144.8111 4 251162 +2291557 2371768 80212 9122832.6701 9126841.5447 127.9375 127.9375 1.8999e-05 run37.mat 153.0557 4 251162 +2397935 2478235 80301 9128152.1639 9132165.8257 127.9375 127.9375 0 run37.mat 165.0942 4 251162 +2504424 2584720 80297 9133476.1485 9137490.0931 127.9375 127.9375 3.7958e-05 run37.mat 173.4285 4 251162 +2610768 2691101 80334 9138792.3574 9142809.2177 127.9375 127.9375 1.897e-05 run37.mat 185.4367 4 251162 +2717349 2797556 80208 9144121.346 9148133.7444 127.9375 127.9375 1.9e-05 run37.mat 193.7699 4 251162 +2823720 2906106 82387 9149441.9875 9153559.5569 127.9375 127.9375 0 run37.mat 205.9166 4 251162 +2932265 3014765 82501 9154869.0408 9158994.1596 127.9375 127.9375 1.8472e-05 run37.mat 214.5691 4 251162 +3040938 3194932 153995 9160302.0359 9168004.1952 127.9375 127.9375 1.9792e-05 run37.mat 221 4 251162 +2 321376 321375 9224570.5396 9240643.2872 127.9375 127.9375 2.371e-05 run38.mat 212.468 3.9612 15866 176580 +423572 485202 61631 9245751.6697 9248833.4287 127.9375 127.9375 0 run38.mat 1 3 227681 258497 +511650 571403 59754 9250156.6471 9253142.3379 127.9375 127.9375 0 run38.mat 1 3 271721 301599 +639506 699867 60362 9256549.2261 9259566.7476 127.9375 127.9375 0 run38.mat 11.158 3 335652 365834 +752311 813995 61685 9262188.9041 9265272.878 127.9375 127.9375 2.4706e-05 run38.mat 21 3 392057 422900 +866446 928347 61902 9267896.2367 9270993.1056 127.9375 127.9375 0 run38.mat 34.1457 3 449127 480079 +980780 1042663 61884 9273612.3632 9276706.767 127.9375 127.9375 0 run38.mat 43.2184 3 506297 537240 +1094964 1158864 63901 9279321.2633 9282517.1657 127.9375 127.9375 7.3534e-05 run38.mat 52.5663 3 563391 595343 +1211138 1273014 61877 9285132.5207 9288224.4559 127.9375 127.9375 2.4629e-05 run38.mat 61.6365 3 621481 652420 +1325486 1389185 63700 9290848.7418 9294033.9637 127.9375 127.9375 2.3924e-05 run38.mat 71.0484 3 678657 710508 +1441474 1505347 63874 9296648.416 9299840.8491 127.9375 127.9375 4.7718e-05 run38.mat 81 3 736654 768592 +1557640 1621534 63895 9302457.3942 9305652.1508 127.9375 127.9375 2.7826e-05 run38.mat 94.549 3 794740 826688 +1673814 1737711 63898 9308264.5683 9311459.0346 127.9375 127.9375 4.9688e-05 run38.mat 103.938 3 852829 884779 +1789996 1853713 63718 9314073.5727 9317259.9555 127.9375 127.9375 0 run38.mat 113.2969 3 910922 942783 +1906002 1969912 63911 9319873.9861 9323070.1817 127.9375 127.9375 0 run38.mat 122.7203 3 968928 1000884 +2022230 2086106 63877 9325684.8885 9328880.344 127.9375 127.9375 0 run38.mat 132.1316 3 1027045 1058984 +2138400 2202257 63858 9331493.6811 9334686.4885 127.9375 127.9375 2.3865e-05 run38.mat 141.5292 3 1085132 1117062 +2254582 2318226 63645 9337304.3013 9340485.2134 127.9375 127.9375 4.9885e-05 run38.mat 151 3 1143226 1175049 +2370549 2434412 63864 9343104.0871 9346294.1013 127.9375 127.9375 2.3863e-05 run38.mat 161 3 1201212 1233145 +2486700 2550627 63928 9348910.1996 9352107.4752 127.9375 127.9375 5.1651e-05 run38.mat 174.402 3 1259290 1291254 +2602901 2668660 65760 9354722.0428 9358008.483 127.9375 127.9375 0 run38.mat 183.9716 3 1317393 1350274 +2720950 2784860 63911 9360622.9307 9363820.2281 127.9375 127.9375 0 run38.mat 193.4756 3 1376420 1408376 +2837116 2901035 63920 9366429.7829 9369627.5901 127.9375 127.9375 0 run38.mat 202.8987 3 1434506 1466466 +2953396 3019074 65679 9372244.8407 9375527.7793 127.9375 127.9375 0 run38.mat 212.5554 3 1492648 1525488 +3071423 3256769 185347 9378148.2427 9387413.0984 127.9375 127.9375 2.4667e-05 run38.mat 221 3 1551664 1626147 +2 463628 463627 9440758.8557 9463940.8452 127.9375 127.9375 3.2871e-06 run39.mat 145.9417 2.3177 13851 245675 +484314 550466 66153 9464977.8925 9468285.9163 127.9375 127.9375 2.3037e-05 run39.mat 1.791 1 256018 289095 +568630 635043 66414 9469190.8362 9472513.299 127.9375 127.9375 2.4859e-05 run39.mat 11 1 298178 331386 +650661 717785 67125 9473294.5356 9476650.5292 127.9375 127.9375 2.2703e-05 run39.mat 24.3269 1 339195 372759 +733425 800128 66704 9477430.9542 9480768.7423 127.9375 127.9375 0 run39.mat 33.2359 1 380579 413932 +815805 884530 68726 9481550.8635 9484987.626 127.9375 127.9375 0 run39.mat 42.3265 1 421771 456135 +900205 967029 66825 9485771.5024 9489111.0042 127.9375 127.9375 0 run39.mat 51.2507 1 463973 497386 +982715 1051388 68674 9489897.2316 9493328.3191 127.9375 127.9375 0 run39.mat 64.8085 1 505230 539568 +1067057 1135753 68697 9494113.6932 9497548.388 127.9375 127.9375 2.2184e-05 run39.mat 73.9928 1 547403 581752 +1151422 1220124 68703 9498332.0461 9501767.9302 127.9375 127.9375 2.2182e-05 run39.mat 83.1674 1 589587 623939 +1235797 1304395 68599 9502550.3014 9505981.5883 127.9375 127.9375 2.2216e-05 run39.mat 92.3064 1 631776 666077 +1319976 1388647 68672 9506760.8748 9510195.3103 127.9375 127.9375 2.2192e-05 run39.mat 101.5 1 673868 708205 +1404309 1475060 70752 9510975.2002 9514514.6064 127.9375 127.9375 0 run39.mat 115.1845 1 716036 751413 +1490733 1561275 70543 9515300.0265 9518824.0129 127.9375 127.9375 0 run39.mat 124.6887 1 759250 794523 +1576923 1647506 70584 9519608.1896 9523137.2345 127.9375 127.9375 0 run39.mat 134.1638 1 802347 837640 +1663151 1733918 70768 9523918.1946 9527458.3987 127.9375 127.9375 8.7933e-05 run39.mat 143.6175 1 845463 880848 +1749564 1820139 70576 9528239.0976 9531768.8274 127.9375 127.9375 4.3187e-05 run39.mat 153.0835 1 888671 923960 +1835779 1906375 70597 9532551.0706 9536082.4705 127.9375 127.9375 6.4761e-05 run39.mat 162.578 1 931780 967080 +1921987 1994595 72609 9536861.276 9540493.6472 127.9375 127.9375 0 run39.mat 172.2589 1 974886 1011192 +2010234 2080821 70588 9541273.8065 9544805.3015 127.9375 127.9375 2.159e-05 run39.mat 181.7999 1 1019011 1054307 +2096459 2169265 72807 9545585.1105 9549225.2529 127.9375 127.9375 2.0932e-05 run39.mat 191.5563 1 1062126 1098530 +2184919 2257534 72616 9550008.9901 9553638.3767 127.9375 127.9375 0 run39.mat 201.3249 1 1106358 1142667 +2273202 2345802 72601 9554421.2802 9558052.4117 127.9375 127.9375 2.0991e-05 run39.mat 215.2159 1 1150502 1186803 +2361436 2508345 146910 9558833.945 9566180.2644 127.9375 127.9375 1.1238e-05 run39.mat 221 1 1194621 1241389 +2 274692 274691 11967977.2072 11981710.8992 127.9375 127.9375 5.548e-06 run4.mat -1 -1 26055 163398 +376443 454391 77949 11986798.5514 11990696.4165 127.9375 127.9375 1.9551e-05 run4.mat -1 -1 214276 253252 +556283 634383 78101 11995790.2688 11999693.4053 127.9375 127.9375 0 run4.mat -1 -1 304200 343252 +736163 814422 78260 12004783.528 12008698.5772 127.9375 127.9375 1.9473e-05 run4.mat -1 -1 394144 433275 +916222 994197 77976 12013786.404 12017687.4569 127.9375 127.9375 1.9544e-05 run4.mat -1 -1 484178 523166 +1096082 1174204 78123 12022782.6918 12026686.1266 127.9375 127.9375 2.1133e-05 run4.mat -1 -1 574111 613174 +1275981 1354319 78339 12031774.7648 12035691.6308 127.9375 127.9375 0 run4.mat -1 -1 664065 703235 +1456062 1536228 80167 12040778.0925 12044788.4445 127.9375 127.9375 2.0594e-05 run4.mat -1 -1 754109 794194 +1638001 1716095 78095 12049877.2066 12053781.1856 127.9375 127.9375 1.9514e-05 run4.mat -1 -1 845083 884131 +1817861 1896121 78261 12058869.8434 12062783.733 127.9375 127.9375 2.1096e-05 run4.mat -1 -1 935017 974148 +1997921 2075969 78049 12067873.8883 12071776.7224 127.9375 127.9375 0 run4.mat -1 -1 1025051 1064076 +2177760 2256069 78310 12076864.9427 12080780.2461 127.9375 127.9375 1.9461e-05 run4.mat -1 -1 1114974 1154130 +2357820 2437965 80146 12085869.5136 12089875.9742 127.9375 127.9375 3.9614e-05 run4.mat -1 -1 1205008 1245082 +2539740 2618051 78312 12094962.5358 12098879.691 127.9375 127.9375 1.946e-05 run4.mat -1 -1 1295972 1335129 +2719839 2798305 78467 12103971.3369 12107892.8249 127.9375 127.9375 0 run4.mat -1 -1 1386026 1425260 +2900078 2978398 78321 12112981.951 12116897.4601 127.9375 127.9375 7.9453e-05 run4.mat -1 -1 1476149 1515311 +3080158 3158456 78299 12121987.7773 12125900.657 127.9375 127.9375 0 run4.mat -1 -1 1566193 1605344 +3260238 3338521 78284 12130990.6782 12134903.386 127.9375 127.9375 6.0024e-05 run4.mat -1 -1 1656237 1695380 +3440317 3518837 78521 12139993.4643 12143920.347 127.9375 127.9375 1.9408e-05 run4.mat -1 -1 1746280 1785542 +3620618 3698900 78283 12149008.5622 12152923.6296 127.9375 127.9375 3.8935e-05 run4.mat -1 -1 1836435 1875577 +3800656 3878859 78204 12158011.2578 12161921.5332 127.9375 127.9375 1.9487e-05 run4.mat -1 -1 1926457 1965561 +3980756 4059017 78262 12167016.7007 12170929.618 127.9375 127.9375 1.9473e-05 run4.mat -1 -1 2016511 2055644 +4160796 4239115 78320 12176020.1909 12179935.1627 127.9375 127.9375 0 run4.mat -1 -1 2106535 2145697 +4340895 4419382 78488 12185025.4345 12188948.0504 127.9375 127.9375 4.0451e-05 run4.mat -1 -1 2196589 2235834 +4521155 4599435 78281 12194036.5336 12197951.3747 127.9375 127.9375 0 run4.mat -1 -1 2286723 2325864 +4701195 4779531 78337 12203038.1349 12206955.9577 127.9375 127.9375 0 run4.mat -1 -1 2376747 2415916 +4881274 4959553 78280 12212042.3805 12215958.4032 127.9375 127.9375 1.9468e-05 run4.mat -1 -1 2466790 2505931 +5061355 5139890 78536 12221048.4737 12224973.7983 127.9375 127.9375 0 run4.mat -1 -1 2556835 2596104 +5241674 5319998 78325 12230063.4694 12233978.7376 127.9375 127.9375 1.9457e-05 run4.mat -1 -1 2646998 2686162 +5421754 5500035 78282 12239066.9562 12242981.8646 127.9375 127.9375 1.9468e-05 run4.mat -1 -1 2737042 2776184 +5601794 5680125 78332 12248070.0776 12251984.6767 127.9375 127.9375 5.9987e-05 run4.mat -1 -1 2827066 2866233 +5781893 5860415 78523 12257073.7289 12261000.5052 127.9375 127.9375 0 run4.mat -1 -1 2917119 2956382 +5962193 6040441 78249 12266089.7462 12270003.1536 127.9375 127.9375 1.9476e-05 run4.mat -1 -1 3007273 3046399 +6142253 6220519 78267 12275091.5325 12279006.3862 127.9375 127.9375 0 run4.mat -1 -1 3097307 3136442 +6322311 6400578 78268 12284097.3057 12288009.8289 127.9375 127.9375 3.8942e-05 run4.mat -1 -1 3187340 3226476 +6502331 6580567 78237 12293096.0802 12297010.7039 127.9375 127.9375 0 run4.mat -1 -1 3277354 3316474 +6682472 6760671 78200 12302103.8333 12306016.2855 127.9375 127.9375 4.06e-05 run4.mat -1 -1 3367429 3406530 +6862551 6941072 78522 12311109.4949 12315036.3156 127.9375 127.9375 3.8816e-05 run4.mat -1 -1 3457472 3496734 +7042871 7121195 78325 12320126.1187 12324042.0764 127.9375 127.9375 0 run4.mat -1 -1 3547636 3586800 +7222950 7301216 78267 12329129.187 12333043.6989 127.9375 127.9375 3.8943e-05 run4.mat -1 -1 3637679 3676814 +7402970 7481477 78508 12338129.4598 12342055.9137 127.9375 127.9375 2.1029e-05 run4.mat -1 -1 3727693 3766949 +7583230 7661402 78173 12347145.7728 12351053.3452 127.9375 127.9375 0 run4.mat -1 -1 3817828 3856915 +7763310 7841806 78497 12356147.6599 12360073.9337 127.9375 127.9375 3.8829e-05 run4.mat -1 -1 3907871 3947121 +7943569 8021901 78333 12365159.924 12369077.8261 127.9375 127.9375 3.891e-05 run4.mat -1 -1 3998005 4037173 +8108815 8270126 161312 12373424.3272 12381490.3544 127.9375 127.9375 9.4474e-06 run4.mat -1 -1 4080632 4161036 +2 387335 387334 10283186.5151 10302554.1755 127.9375 127.9375 2.8197e-05 run40.mat 7.6307 2 37897 231598 +433794 508654 74861 10304876.5947 10308620.6535 127.9375 127.9375 4.2411e-05 run40.mat 2.5549 2 254829 292260 +540741 617694 76954 10310224.0029 10314074.474 127.9375 127.9375 0 run40.mat 14.9765 2 308304 346782 +644143 720337 76195 10315395.9246 10319207.3229 127.9375 127.9375 2.0001e-05 run40.mat 22.7644 2 360008 398107 +746651 825230 78580 10320522.134 10324449.1609 127.9375 127.9375 0 run40.mat 34.6086 2 411264 450556 +851526 929705 78180 10325763.8464 10329674.8119 127.9375 127.9375 0 run40.mat 42.631 2 463704 502795 +955902 1034330 78429 10330984.6644 10334905.4573 127.9375 127.9375 1.9431e-05 run40.mat 54.4957 2 515894 555110 +1060608 1140856 80249 10336220.17 10340233.9383 127.9375 127.9375 1.8991e-05 run40.mat 62.7423 2 568250 608375 +1167090 1247400 80311 10341545.3792 10345559.3445 127.9375 127.9375 0 run40.mat 74.7883 2 621493 661650 +1273789 1354012 80224 10346878.8611 10350887.998 127.9375 127.9375 1.8996e-05 run40.mat 83.1336 2 674845 714958 +1380421 1462219 81799 10352208.9696 10356299.4759 127.9375 127.9375 0 run40.mat 95.3208 2 728163 769064 +1488734 1570987 82254 10357625.9148 10361738.6364 127.9375 127.9375 0 run40.mat 103.9265 2 782322 823450 +1597494 1679574 82081 10363063.3828 10367167.4663 127.9375 127.9375 0 run40.mat 112.5422 2 836704 877746 +1705882 1787949 82068 10368484.8919 10372587.0924 127.9375 127.9375 1.857e-05 run40.mat 124.7887 2 890901 931936 +1814688 1898518 83831 10373924.0684 10378114.7374 127.9375 127.9375 1.9694e-05 run40.mat 133.5743 2 945306 987223 +1924990 2008757 83768 10379439.5489 10383627.2172 127.9375 127.9375 0 run40.mat 146.0019 2 1000459 1042345 +2035591 2119547 83957 10384972.0645 10389168.7326 127.9375 127.9375 0 run40.mat 154.896 2 1055762 1097742 +2146534 2232092 85559 10390517.617 10394793.801 127.9375 127.9375 0 run40.mat 163.947 2 1111236 1154017 +2258921 2344710 85790 10396137.295 10400425.5639 127.9375 127.9375 0 run40.mat 173.0833 2 1167432 1210328 +2371633 2457338 85706 10401772.9389 10406058.7824 127.9375 127.9375 1.7781e-05 run40.mat 185.7137 2 1223791 1266645 +2484272 2570369 86098 10407405.8031 10411706.9613 127.9375 127.9375 0 run40.mat 194.8782 2 1280112 1323163 +2598859 2857829 258971 10413133.7533 10426084.2776 127.9375 127.9375 1.1769e-05 run40.mat 201 2 1337409 1466914 +2 930522 930521 10681011.4406 10727543.281 127.9375 127.9375 1.01e-05 run41.mat 196.6823 2 6712 250000 +977150 1051877 74728 10729874.3339 10733609.5777 127.9375 127.9375 2.0394e-05 run41.mat 3.848 2 250000 +1083808 1160911 77104 10735207.509 10739062.8964 127.9375 127.9375 0 run41.mat 12.356 2 250000 +1187304 1263767 76464 10740381.8361 10744203.0929 127.9375 127.9375 1.9931e-05 run41.mat 23.9361 2 250000 +1290039 1368491 78453 10745518.4934 10749441.8662 127.9375 127.9375 1.9425e-05 run41.mat 32.019 2 250000 +1394718 1473002 78285 10750751.4639 10754667.1649 127.9375 127.9375 2.2711e-05 run41.mat 43.8876 2 250000 +1499262 1577650 78389 10755978.9869 10759898.5426 127.9375 127.9375 2.2681e-05 run41.mat 55.732 2 250000 +1603882 1684263 80382 10761209.2427 10765230.2041 127.9375 127.9375 0 run41.mat 63.9691 2 250000 +1710420 1790712 80293 10766536.8687 10770552.7416 127.9375 127.9375 0 run41.mat 72.2524 2 250000 +1817105 1897171 80067 10771872.1599 10775875.5209 127.9375 127.9375 1.9034e-05 run41.mat 84.3415 2 250000 +1923589 2003655 80067 10777197.4082 10781200.7023 127.9375 127.9375 3.8067e-05 run41.mat 92.6533 2 250000 +2030036 2110137 80102 10782520.4483 10786525.029 127.9375 127.9375 7.7687e-05 run41.mat 104.7102 2 250000 +2136492 2218689 82198 10787843.9177 10791952.2783 127.9375 127.9375 0 run41.mat 113.2253 2 250000 +2245034 2327109 82076 10793268.4272 10797373.6212 127.9375 127.9375 0 run41.mat 125.4729 2 250000 +2353582 2437546 83965 10798695.4178 10802895.3168 127.9375 127.9375 1.815e-05 run41.mat 134.2262 2 250000 +2464025 2548140 84116 10804220.2634 10808425.0895 127.9375 127.9375 0 run41.mat 143.1022 2 250000 +2574804 2660896 86093 10809758.1199 10814063.9272 127.9375 127.9375 5.3104e-05 run41.mat 155.697 2 250000 +2687627 2773274 85648 10815398.6595 10819681.0208 127.9375 127.9375 3.5587e-05 run41.mat 164.8104 2 250000 +2800182 2883909 83728 10821025.9345 10825213.2056 127.9375 127.9375 1.8201e-05 run41.mat 173.7791 2 250000 +2910770 2996811 86042 10826556.5402 10830857.7638 127.9375 127.9375 0 run41.mat 182.8863 2 250000 +3023701 3109946 86246 10832202.267 10836514.8942 127.9375 127.9375 1.767e-05 run41.mat 195.5782 2 250000 +3137468 3337211 199744 10837892.345 10847876.5509 127.9375 127.9375 2.2889e-05 run41.mat 201 2 250000 +2 120797 120796 11367749.8488 11373790.2784 127.9375 127.9375 1.4196e-05 run42.mat 1 4 3890 34086 +165273 239293 74021 11376012.6726 11379713.6074 127.9375 127.9375 2.351e-05 run42.mat 2.8054 4 45206 63712 +270134 343953 73820 11381258.0704 11384945.9925 127.9375 127.9375 2.2198e-05 run42.mat 14.8016 4 71422 89877 +369574 444632 75059 11386227.4295 11389980.3517 127.9375 127.9375 4.6369e-05 run42.mat 22.1488 4 96284 115048 +470384 545158 74775 11391270.0623 11395007.05 127.9375 127.9375 2.4802e-05 run42.mat 33.5769 4 121487 140182 +571030 647756 76727 11396301.0071 11400136.3191 127.9375 127.9375 2.1687e-05 run42.mat 45.1505 4 146650 165832 +673601 748310 74710 11401431.9277 11405165.3323 127.9375 127.9375 2.3293e-05 run42.mat 52.6274 4 172293 190971 +774103 850646 76544 11406456.3962 11410281.5928 127.9375 127.9375 3.0867e-05 run42.mat 64.2314 4 197420 216556 +876421 953228 76808 11411573.6714 11415412.4846 127.9375 127.9375 7.4422e-06 run42.mat 71.9552 4 223001 242204 +979040 1055907 76868 11416704.1659 11420545.3816 127.9375 127.9375 2.2473e-05 run42.mat 83.5987 4 248656 267874 +1081442 1158029 76588 11421822.9412 11425651.8576 127.9375 127.9375 0 run42.mat 95.196 4 274258 293406 +1183850 1262607 78758 11426941.5825 11430880.9649 127.9375 127.9375 2.145e-05 run42.mat 103.1146 4 299861 319551 +1288143 1364735 76593 11432156.3273 11435986.5771 127.9375 127.9375 7.4631e-06 run42.mat 114.7683 4 325936 345085 +1390572 1469523 78952 11437279.0992 11441227.4687 127.9375 127.9375 2.8799e-05 run42.mat 122.7212 4 351544 371283 +1495058 1575348 80291 11442503.4248 11446517.8041 127.9375 127.9375 0 run42.mat 134.5614 4 377667 397740 +1601179 1680190 79012 11447810.3949 11451760.4195 127.9375 127.9375 2.1381e-05 run42.mat 142.7307 4 404198 423952 +1705677 1786180 80504 11453034.5078 11457059.9158 127.9375 127.9375 1.4517e-05 run42.mat 154.6798 4 430324 450451 +1812005 1893011 81007 11458351.7842 11462402.7947 127.9375 127.9375 6.021e-06 run42.mat 163.004 4 456907 477159 +1918287 1999412 81126 11463666.776 11467722.0067 127.9375 127.9375 0 run42.mat 175.0571 4 483478 503760 +2024691 2107718 83028 11468987.1838 11473137.4634 127.9375 127.9375 1.4576e-05 run42.mat 183.5531 4 510080 530839 +2133282 2214268 80987 11474414.894 11478465.9023 127.9375 127.9375 1.19e-05 run42.mat 195.6362 4 537229 557477 +2239747 2320743 80997 11479738.1554 11483789.7478 127.9375 127.9375 5.9256e-06 run42.mat 203.9905 4 563847 584097 +2346258 2429018 82761 11485065.5832 11489202.6769 127.9375 127.9375 0 run42.mat 212.5125 4 590476 611167 +2454694 2879432 424739 11490486.8908 11511720.9647 127.9375 127.9375 1.6088e-05 run42.mat 221 4 617586 701159 +2 291816 291815 11546272.6448 11560858.409 127.9375 127.9375 1.14e-05 run43.mat 216.8192 3.981 19285 92222 +393841 453818 59978 11565959.9967 11568957.5441 127.9375 127.9375 9.5305e-06 run43.mat 1 3 117728 132723 +554718 616101 61384 11574002.9488 11577074.4771 127.9375 127.9375 1.9451e-05 run43.mat 1 3 157950 173296 +718160 780197 62038 11582176.7557 11585277.8036 127.9375 127.9375 1.8428e-05 run43.mat 11 3 198812 214322 +820728 884261 63534 11587304.8523 11590480.9865 127.9375 127.9375 1.7994e-05 run43.mat 11 3 224455 240339 +986501 1048320 61820 11595592.7551 11598687.0357 127.9375 127.9375 9.8625e-06 run43.mat 21 3 265900 281356 +1060945 1124717 63773 11599315.3128 11602505.0845 127.9375 127.9375 8.9633e-06 run43.mat 21 3 284512 300456 +1226739 1288569 61831 11607604.8262 11610699.4737 127.9375 127.9375 3.5746e-05 run43.mat 31 3 325962 341421 +1301240 1362958 61719 11611333.7276 11614418.1183 127.9375 127.9375 2.7784e-05 run43.mat 31 3 344588 360019 +1464958 1526853 61896 11619518.0308 11622612.742 127.9375 127.9375 1.9702e-05 run43.mat 41 3 385520 400994 +1539621 1605086 65466 11623250.237 11626524.8449 127.9375 127.9375 1.8045e-05 run43.mat 41 3 404186 420553 +1707058 1771054 63997 11631624.0854 11634823.7685 127.9375 127.9375 1.7467e-05 run43.mat 51 3 446047 462047 +1783875 1845352 61478 11635463.0661 11638537.612 127.9375 127.9375 8.8846e-06 run43.mat 51 3 465253 480623 +1947357 2009267 61911 11643638.8299 11646734.4359 127.9375 127.9375 1.7645e-05 run43.mat 61 3 506125 521603 +2022009 2085412 63404 11647371.8061 11650540.5901 127.9375 127.9375 1.783e-05 run43.mat 61 3 524789 540640 +2187437 2251571 64135 11655641.5643 11658847.7882 127.9375 127.9375 1.8618e-05 run43.mat 71 3 566148 582181 +2264342 2327741 63400 11659487.6148 11662659.1483 127.9375 127.9375 8.8152e-06 run43.mat 71.2278 3 585374 601225 +2429739 2493882 64144 11667759.1825 11670963.8438 127.9375 127.9375 0 run43.mat 81 3 626725 642762 +2506666 2579891 73226 11671603.2474 11675265.2775 127.9375 127.9375 7.4592e-06 run43.mat 82.8729 3 645958 664265 +2681896 2744026 62131 11680366.0969 11683471.7619 127.9375 127.9375 8.9953e-06 run43.mat 91 3 689767 705300 +2756818 2820204 63387 11684114.8186 11687281.3266 127.9375 127.9375 0 run43.mat 93.2161 3 708498 724346 +2922196 2986312 64117 11692379.7511 11695587.9558 127.9375 127.9375 2.7537e-05 run43.mat 101 3 749845 765875 +2999074 3062470 63397 11696226.9571 11699396.68 127.9375 127.9375 8.6157e-06 run43.mat 103.5575 3 769066 784915 +3164432 3228583 64152 11704494.208 11707700.7413 127.9375 127.9375 1.782e-05 run43.mat 111 3 810406 826445 +3241388 3304716 63329 11708340.364 11711508.171 127.9375 127.9375 1.7851e-05 run43.mat 113.9302 3 829647 845479 +3406695 3470622 63928 11716607.1897 11719803.5473 127.9375 127.9375 1.7684e-05 run43.mat 121 3 870975 886958 +3483431 3546810 63380 11720444.2897 11723611.613 127.9375 127.9375 5.4313e-05 run43.mat 124.2547 3 890160 906006 +3648752 3712925 64174 11728708.6947 11731918.13 127.9375 127.9375 8.5114e-06 run43.mat 131 3 931492 947536 +3725811 3789113 63303 11732564.4229 11735726.6136 127.9375 127.9375 8.8287e-06 run43.mat 134.5625 3 950758 966584 +3891054 3955172 64119 11740826.0983 11744029.8334 127.9375 127.9375 0 run43.mat 141 3 992070 1008101 +3967960 4033294 65335 11744669.4103 11747937 127.9375 127.9375 2.6635e-05 run43.mat 141 3 1011298 1027631 +4135235 4199249 64015 11753033.3957 11756234.9321 127.9375 127.9375 8.7305e-06 run43.mat 151 3 1053118 1069122 +4212137 4277474 65338 11756877.5383 11760145.6717 127.9375 127.9375 8.7486e-06 run43.mat 151.1974 3 1072344 1088679 +4379413 4443418 64006 11765244.6116 11768442.5395 127.9375 127.9375 1.8853e-05 run43.mat 161 3 1114166 1130168 +4456308 4521413 65106 11769089.3249 11772342.4171 127.9375 127.9375 8.3895e-06 run43.mat 161.806 3 1133390 1149667 +4623373 4687549 64177 11777441.7925 11780650.76 127.9375 127.9375 1.7814e-05 run43.mat 171 3 1175158 1191203 +4700432 4765568 65137 11781294.2043 11784552.1449 127.9375 127.9375 8.3855e-06 run43.mat 172.4466 3 1194424 1210708 +4867533 4931739 64207 11789650.1246 11792860.8705 127.9375 127.9375 3.5413e-05 run43.mat 181 3 1236201 1252253 +4944621 5009780 65160 11793504.671 11796761.2455 127.9375 127.9375 8.5771e-06 run43.mat 183.0524 3 1255474 1271764 +5111713 5175929 64217 11801858.6804 11805069.8407 127.9375 127.9375 1.7604e-05 run43.mat 191 3 1297248 1313303 +5188840 5253949 65110 11805714.6332 11808969.876 127.9375 127.9375 8.389e-06 run43.mat 193.731 3 1316531 1332809 +5355871 5419871 64001 11814068.5013 11817267.186 127.9375 127.9375 9.3284e-06 run43.mat 201 3 1358290 1374291 +5432789 5498149 65361 11817912.5222 11821182.0106 127.9375 127.9375 2.6042e-05 run43.mat 204.3538 3 1377521 1393862 +5600092 5666148 66057 11826278.5253 11829582.6672 127.9375 127.9375 8.8453e-06 run43.mat 211 3 1419349 1435863 +5679066 5744342 65277 11830227.3664 11833490.0108 127.9375 127.9375 1.7903e-05 run43.mat 211 3 1439093 1455413 +5846291 5912353 66063 11838587.8789 11841891.1808 127.9375 127.9375 0 run43.mat 221 3 1480901 1497417 +5925274 6238239 312966 11842538.3112 11858185.2795 127.9375 127.9375 1.315e-05 run43.mat 221 3 1500648 1577617 +2 242206 242205 11999931.4277 12012039.5941 127.9375 127.9375 1.8408e-05 run44.mat 194.7899 3.1191 32477 72835 +286958 359086 72129 12014277.723 12017882.1247 127.9375 127.9375 0 run44.mat 4.5957 4 80294 92316 +390029 463685 73657 12019429.2858 12023111.5144 127.9375 127.9375 3.1386e-05 run44.mat 12.4356 4 97474 109750 +489318 562332 73015 12024395.2029 12028045.2228 127.9375 127.9375 2.2964e-05 run44.mat 23.6325 4 114022 126192 +588081 662882 74802 12029333.007 12033071.7867 127.9375 127.9375 3.0057e-05 run44.mat 34.9774 4 130484 142951 +688658 763369 74712 12034361.006 12038096.7251 127.9375 127.9375 2.5503e-05 run44.mat 42.3329 4 147247 159699 +789176 863712 74537 12039389.0947 12043115.6866 127.9375 127.9375 1.5167e-05 run44.mat 53.7264 4 164000 176424 +889511 964712 75202 12044404.2406 12048163.3873 127.9375 127.9375 2.4154e-05 run44.mat 65.2021 4 180724 193258 +990045 1066845 76801 12049431.3072 12053271.434 127.9375 127.9375 1.5547e-05 run44.mat 72.7881 4 197481 210281 +1092317 1169240 76924 12054544.3292 12058390.626 127.9375 127.9375 0 run44.mat 84.3679 4 214526 227348 +1194780 1271360 76581 12059669.6712 12063498.6631 127.9375 127.9375 2.1728e-05 run44.mat 92.043 4 231605 244368 +1297205 1376085 78881 12064788.1698 12068734.8269 127.9375 127.9375 7.4073e-06 run44.mat 103.9098 4 248676 261823 +1401630 1480123 78494 12070010.8654 12073937.5481 127.9375 127.9375 2.9129e-05 run44.mat 115.7049 4 266081 279164 +1505987 1584975 78989 12075227.4555 12079179.5467 127.9375 127.9375 1.4152e-05 run44.mat 123.6969 4 283475 296639 +1610476 1688927 78452 12080452.1397 12084376.4761 127.9375 127.9375 2.1696e-05 run44.mat 135.5346 4 300890 313966 +1714781 1793450 78670 12085666.4937 12089602.7585 127.9375 127.9375 3.5199e-05 run44.mat 143.5852 4 318275 331387 +1819275 1900102 80828 12090893.0786 12094934.9685 127.9375 127.9375 3.6145e-05 run44.mat 155.5541 4 335692 349163 +1925551 2006437 80887 12096205.8901 12100252.2105 127.9375 127.9375 5.9976e-06 run44.mat 163.8811 4 353405 366887 +2031847 2113072 81226 12101521.5705 12105583.389 127.9375 127.9375 2.8586e-06 run44.mat 175.8703 4 371122 384659 +2138425 2219395 80971 12106851.3009 12110899.382 127.9375 127.9375 1.4914e-05 run44.mat 184.236 4 388886 402381 +2244807 2326007 81201 12112171.6391 12116228.9198 127.9375 127.9375 5.751e-06 run44.mat 192.588 4 406617 420151 +2351454 2432451 80998 12117504.3271 12121551.4294 127.9375 127.9375 1.1611e-05 run44.mat 204.59 4 424392 437892 +2457938 2540939 83002 12122827.138 12126978.1501 127.9375 127.9375 1.1721e-05 run44.mat 213.1453 4 442140 455974 +2566355 2662927 96573 12128247.3894 12133075.8907 127.9375 127.9375 7.3877e-06 run44.mat 221 4 460210 476306 +2 314480 314479 12175274.6452 12191002.9254 127.9375 127.9375 1.8347e-05 run45.mat 215.1596 3.9735 7006 59442 +416524 478555 62032 12196105.4841 12199207.9146 127.9375 127.9375 4.8942e-05 run45.mat 1 3 76450 86788 +580615 642407 61793 12204310.1357 12207402.4451 127.9375 127.9375 1.0073e-05 run45.mat 1 3 103799 114099 +655385 716576 61192 12208049.6328 12211109.4601 127.9375 127.9375 1.9097e-05 run45.mat 4.3443 3 116261 126460 +818648 880591 61944 12216213.9 12219309.9006 127.9375 127.9375 1.784e-05 run45.mat 11 3 143473 153797 +921113 982781 61669 12221336.5939 12224420.4916 127.9375 127.9375 2.7394e-05 run45.mat 13.6609 3 160552 170830 +1084848 1146857 62010 12229523.0383 12232622.3788 127.9375 127.9375 1.8436e-05 run45.mat 21 3 187842 198177 +1159482 1221180 61699 12233254.669 12236340.9504 127.9375 127.9375 1.8941e-05 run45.mat 23.4423 3 200282 210565 +1323247 1387146 63900 12241443.29 12244636.1513 127.9375 127.9375 0 run45.mat 31 3 227577 238227 +1399787 1461514 61728 12245268.1596 12248355.825 127.9375 127.9375 2.1606e-05 run45.mat 33.4596 3 230335 230335 +1563528 1625393 61866 12253456.8896 12256549.2646 127.9375 127.9375 4.4554e-05 run45.mat 41 3 230335 230335 +1638186 1699714 61529 12257190.8683 12260265.1905 127.9375 127.9375 4.6243e-05 run45.mat 43.2042 3 230335 230335 +1801727 1865678 63952 12265367.6922 12268564.6463 127.9375 127.9375 2.8602e-05 run45.mat 51 3 230335 230335 +1878462 1941826 63365 12269202.8071 12272374.1285 127.9375 127.9375 8.62e-06 run45.mat 53.4672 3 230335 230335 +2043845 2105920 62076 12277471.3668 12280578.8535 127.9375 127.9375 0 run45.mat 61 3 230335 230335 +2118691 2182170 63480 12281215.5629 12284389.3109 127.9375 127.9375 0 run45.mat 63.4883 3 230335 230335 +2284166 2348102 63937 12289490.322 12292684.9233 127.9375 127.9375 2.3641e-05 run45.mat 71 3 230335 230335 +2360890 2424270 63381 12293324.5001 12296496.0439 127.9375 127.9375 1.8438e-05 run45.mat 73.858 3 230335 230335 +2526245 2590208 63964 12301594.1844 12304792.0123 127.9375 127.9375 4.4682e-05 run45.mat 81 3 230335 230335 +2602995 2666347 63353 12305429.9602 12308598.3887 127.9375 127.9375 8.8218e-06 run45.mat 84.1903 3 230335 230335 +2768366 2832273 63908 12313699.5599 12316893.9377 127.9375 127.9375 0 run45.mat 91 3 230335 230335 +2845085 2908479 63395 12317535.4365 12320707.8071 127.9375 127.9375 1.9035e-05 run45.mat 94.4835 3 230335 230335 +3010464 3074617 64154 12325806.8724 12329013.1124 127.9375 127.9375 2.574e-05 run45.mat 101 3 230335 230335 +3087402 3150821 63420 12329653.7834 12332822.8895 127.9375 127.9375 0 run45.mat 101 3 230335 230335 +3252785 3316739 63955 12337921.9476 12341119.6157 127.9375 127.9375 0 run45.mat 111 3 230335 230335 +3329566 3392887 63322 12341761.7255 12344926.7737 127.9375 127.9375 1.8254e-05 run45.mat 111 3 230335 230335 +3494864 3558836 63973 12350025.4701 12353225.369 127.9375 127.9375 8.5381e-06 run45.mat 121 3 230335 230335 +3571671 3637084 65414 12353868.2048 12357137.7582 127.9375 127.9375 3.5924e-05 run45.mat 121.1478 3 230335 230335 +3739043 3803034 63992 12362235.05 12365434.5622 127.9375 127.9375 2.6003e-05 run45.mat 131 3 230335 230335 +3815894 3881245 65352 12366078.3833 12369343.6164 127.9375 127.9375 8.3579e-06 run45.mat 131.7632 3 230335 230335 +3983179 4047179 64001 12374442.0623 12377642.2586 127.9375 127.9375 0 run45.mat 141 3 230335 230335 +4060094 4125403 65310 12378287.0528 12381553.3302 127.9375 127.9375 0 run45.mat 142.4156 3 230335 230335 +4227343 4291544 64202 12386650.1548 12389860.5157 127.9375 127.9375 9.2992e-06 run45.mat 151 3 230335 230335 +4304447 4369543 65097 12390505.052 12393762.4606 127.9375 127.9375 2.6147e-05 run45.mat 153.0624 3 230335 230335 +4471502 4535661 64160 12398856.8682 12402066.7084 127.9375 127.9375 0 run45.mat 161 3 230335 230335 +4548538 4613691 65154 12402710.138 12405967.2821 127.9375 127.9375 1.7351e-05 run45.mat 163.6635 3 230335 230335 +4715622 4779788 64167 12411064.2017 12414271.3379 127.9375 127.9375 8.5123e-06 run45.mat 171 3 230335 230335 +4792680 4857805 65126 12414917.076 12418173.587 127.9375 127.9375 2.555e-05 run45.mat 174.3362 3 230335 230335 +4959735 5023948 64214 12423271.1105 12426481.364 127.9375 127.9375 1.088e-05 run45.mat 181 3 230335 230335 +5036848 5101973 65126 12427126.6249 12430381.799 127.9375 127.9375 8.9717e-06 run45.mat 181 3 230335 230335 +5203921 5269951 66031 12435480.2747 12438781.0151 127.9375 127.9375 3.6358e-05 run45.mat 191 3 230335 230335 +5282838 5348198 65361 12439426.4696 12442694.1588 127.9375 127.9375 8.5507e-06 run45.mat 191.3208 3 230335 230335 +5450133 5514137 64005 12447791.5798 12450988.8423 127.9375 127.9375 0 run45.mat 201 3 230335 230335 +5527048 5592165 65118 12451638.3686 12454892.1291 127.9375 127.9375 0 run45.mat 201.9342 3 230335 230335 +5694100 5758302 64203 12459989.1721 12463200.085 127.9375 127.9375 2.7106e-05 run45.mat 211 3 230335 230335 +5771243 5836526 65284 12463845.8234 12467109.2147 127.9375 127.9375 2.6656e-05 run45.mat 212.5968 3 230335 230335 +5938455 6004524 66070 12472207.1021 12475509.8085 127.9375 127.9375 8.459e-06 run45.mat 221 3 230335 230335 +6017410 6538152 520743 12476155.0476 12502193.899 127.9375 127.9375 2.2271e-05 run45.mat 221 3 230335 230335 +2 206664 206663 12950317.1366 12960650.9427 127.9375 127.9375 2.2123e-05 run46.mat 209.2768 3.0533 145206 248528 +254105 325352 71248 12963021.6741 12966584.8649 127.9375 127.9375 0 run46.mat 2.3668 4 272249 307874 +357172 430190 73019 12968173.7607 12971826.9217 127.9375 127.9375 0 run46.mat 14.3658 4 323785 360295 +456306 528850 72545 12973133.4627 12976758.6124 127.9375 127.9375 2.1007e-05 run46.mat 21.4488 4 373354 409628 +554909 629575 74667 12978062.8272 12981795.2614 127.9375 127.9375 2.041e-05 run46.mat 32.8721 4 422658 459993 +655677 730083 74407 12983100.6651 12986822.6408 127.9375 127.9375 0 run46.mat 44.2934 4 473045 510249 +756196 830509 74314 12988128.0804 12991843.2639 127.9375 127.9375 2.0507e-05 run46.mat 51.6636 4 523306 560464 +856579 931062 74484 12993146.6198 12996871.663 127.9375 127.9375 2.046e-05 run46.mat 63.0789 4 573500 610743 +957097 1033288 76192 12998171.75 13001982.5923 127.9375 127.9375 0 run46.mat 74.6317 4 623761 661884 +1059302 1135728 76427 13003282.3918 13007104.8076 127.9375 127.9375 0 run46.mat 82.3203 4 674866 713080 +1161767 1238164 76398 13008407.7742 13012226.9213 127.9375 127.9375 3.9896e-05 run46.mat 93.9538 4 726100 764301 +1264288 1340548 76261 13013532.8179 13017346.1652 127.9375 127.9375 1.9984e-05 run46.mat 105.5778 4 777363 815495 +1366708 1442965 76258 13018654.7892 13022467.6634 127.9375 127.9375 0 run46.mat 113.2748 4 828576 866706 +1469124 1547272 78149 13023774.9913 13027682.4055 127.9375 127.9375 0 run46.mat 125.0557 4 879786 918861 +1573440 1651887 78448 13028990.1213 13032913.4402 127.9375 127.9375 0 run46.mat 133.0813 4 931946 971171 +1678047 1756169 78123 13034221.6235 13038126.6779 127.9375 127.9375 0 run46.mat 144.9079 4 984252 1023314 +1782347 1862521 80175 13039435.1897 13043445.6531 127.9375 127.9375 0 run46.mat 153.1154 4 1036404 1076493 +1888683 1968849 80167 13044752.5265 13048762.4188 127.9375 127.9375 1.901e-05 run46.mat 165.1449 4 1089575 1129659 +1995004 2075275 80272 13050068.0461 13054080.4541 127.9375 127.9375 0 run46.mat 173.4583 4 1142737 1182874 +2101482 2181749 80268 13055394.3228 13059407.3363 127.9375 127.9375 7.5944e-05 run46.mat 185.5057 4 1195978 1236114 +2208031 2288218 80188 13060720.7993 13064731.0923 127.9375 127.9375 0 run46.mat 193.8202 4 1249255 1289351 +2314485 2396568 82084 13066040.8737 13070147.7029 127.9375 127.9375 0 run46.mat 202.3405 4 1302485 1343528 +2422717 2505243 82527 13071454.8442 13075580.0085 127.9375 127.9375 0 run46.mat 214.5696 4 1356603 1397868 +2531503 2771235 239733 13076893.9774 13088883.3136 127.9375 127.9375 1.9601e-05 run46.mat 221 4 1410998 1523406 +2 285072 285071 13139694.734 13153952.188 127.9375 127.9375 3.2967e-05 run47.mat 215.5041 3.975 29106 171696 +387304 449139 61836 13159063.8321 13162158.3094 127.9375 127.9375 0 run47.mat 1 3 222814 253733 +475514 537405 61892 13163475.8428 13166569.8045 127.9375 127.9375 0 run47.mat 4.1042 3 266921 297868 +605494 667755 62262 13169974.1647 13173086.9588 127.9375 127.9375 0 run47.mat 11 3 331914 363045 +720180 782111 61932 13175707.9998 13178805.6233 127.9375 127.9375 0 run47.mat 21 3 389259 420226 +834568 896451 61884 13181429.9346 13184521.9119 127.9375 127.9375 5.1305e-05 run47.mat 33.9666 3 446456 477398 +948909 1010792 61884 13187145.1574 13190239.5918 127.9375 127.9375 0 run47.mat 43.0455 3 503629 534572 +1063086 1124933 61848 13192853.6697 13195947.5394 127.9375 127.9375 0 run47.mat 52.0994 3 560720 591645 +1177222 1239067 61846 13198561.996 13201654.409 127.9375 127.9375 2.6695e-05 run47.mat 61.1348 3 617790 648714 +1291497 1353483 61987 13204276.4885 13207372.6101 127.9375 127.9375 0 run47.mat 71 3 674930 705925 +1405763 1469490 63728 13209989.5997 13213176.004 127.9375 127.9375 0 run47.mat 84.3667 3 732066 763931 +1521949 1585637 63689 13215798.6474 13218983.4636 127.9375 127.9375 0 run47.mat 93.7417 3 790162 822007 +1637927 1701833 63907 13221597.6464 13224794.6889 127.9375 127.9375 0 run47.mat 103.1305 3 848153 880107 +1754127 1817983 63857 13227407.7619 13230600.8139 127.9375 127.9375 0 run47.mat 112.57 3 906256 938185 +1870290 1934184 63895 13233216.7725 13236409.5139 127.9375 127.9375 2.3851e-05 run47.mat 121.9745 3 964340 996288 +1986508 2050369 63862 13239027.4269 13242221.2674 127.9375 127.9375 0 run47.mat 131.3649 3 1022451 1054383 +2102695 2166537 63843 13244837.2814 13248030.2267 127.9375 127.9375 0 run47.mat 141 3 1080547 1112470 +2218843 2282727 63885 13250643.1459 13253838.1674 127.9375 127.9375 0 run47.mat 151 3 1138624 1170567 +2335008 2398890 63883 13256452.0516 13259648.4444 127.9375 127.9375 2.3856e-05 run47.mat 164.2701 3 1196708 1228651 +2451174 2515083 63910 13262261.2256 13265457.0485 127.9375 127.9375 2.3846e-05 run47.mat 173.6793 3 1254794 1286750 +2567363 2631099 63737 13268071.7411 13271256.3617 127.9375 127.9375 0 run47.mat 183.0176 3 1312891 1344761 +2683370 2747285 63916 13273868.601 13277067.7263 127.9375 127.9375 8.7424e-05 run47.mat 192.4121 3 1370898 1402856 +2799537 2865506 65970 13279678.7584 13282979.218 127.9375 127.9375 0 run47.mat 201.9863 3 1428983 1461970 +2917759 2983775 66017 13285591.0679 13288891.136 127.9375 127.9375 0 run47.mat 211.8718 3 1488097 1521107 +3036099 3210330 174232 13291507.1326 13300220.5384 127.9375 127.9375 1.7494e-05 run47.mat 221 3 1547270 1634331 +2 324413 324412 13440012.5166 13456237.2729 127.9375 127.9375 5.2075e-06 run48.mat 94.0266 4 5442 167678 +368909 440996 72088 13458460.9631 13462063.4356 127.9375 127.9375 1.5506e-05 run48.mat 3.6586 4 189927 225972 +471900 545684 73785 13463608.4719 13467299.1485 127.9375 127.9375 2.2208e-05 run48.mat 11.422 4 241425 278318 +571300 644262 72963 13468580.37 13472229.5003 127.9375 127.9375 3.1686e-05 run48.mat 22.6298 4 291127 327610 +669975 742783 72809 13473514.8328 13477153.5779 127.9375 127.9375 7.5019e-06 run48.mat 33.8805 4 340467 376872 +768586 843488 74903 13478445.3782 13482190.8059 127.9375 127.9375 0 run48.mat 45.2237 4 389774 427227 +869317 945918 76602 13483481.4241 13487313.0871 127.9375 127.9375 0 run48.mat 52.8492 4 440142 478444 +971696 1046567 74872 13488600.1844 13492343.1383 127.9375 127.9375 3.2405e-05 run48.mat 64.3143 4 491334 528771 +1071999 1148772 76774 13493616.1145 13497455.5779 127.9375 127.9375 7.1145e-06 run48.mat 71.9091 4 541487 579875 +1174553 1251486 76934 13498744.6399 13502591.5579 127.9375 127.9375 0 run48.mat 83.5312 4 592766 631235 +1276970 1353886 76917 13503863.8855 13507710.3152 127.9375 127.9375 1.4862e-05 run48.mat 95.175 4 643977 682437 +1379407 1460204 80798 13508985.2069 13513026.127 127.9375 127.9375 2.1381e-05 run48.mat 103.2538 4 695198 735598 +1485700 1564411 78712 13514298.7863 13518237.2201 127.9375 127.9375 1.404e-05 run48.mat 115.1439 4 748347 787704 +1590232 1669182 78951 13519527.2902 13523475.1162 127.9375 127.9375 3.3787e-05 run48.mat 123.2075 4 800615 840092 +1694728 1773546 78819 13524752.4592 13528691.7271 127.9375 127.9375 0 run48.mat 135.0336 4 852866 892276 +1798957 1877511 78555 13529963.6684 13533889.9113 127.9375 127.9375 6.9532e-06 run48.mat 143.0032 4 904982 944261 +1903283 1982056 78774 13535179.973 13539118.5649 127.9375 127.9375 0 run48.mat 154.844 4 957147 996536 +2007890 2086710 78821 13540409.6154 13544349.7794 127.9375 127.9375 1.8646e-05 run48.mat 162.8668 4 1009453 1048865 +2112106 2193452 81347 13545621.7575 13549687.5353 127.9375 127.9375 2.9181e-06 run48.mat 174.8915 4 1061564 1102238 +2218763 2299700 80938 13550956.0484 13555002.3065 127.9375 127.9375 3.0291e-06 run48.mat 183.2171 4 1114894 1155365 +2324941 2406174 81234 13556263.6667 13560327.0712 127.9375 127.9375 0 run48.mat 195.237 4 1167986 1208604 +2431614 2514745 83132 13561598.3511 13565753.8472 127.9375 127.9375 2.9023e-06 run48.mat 203.763 4 1221325 1262892 +2540117 2623247 83131 13567022.6048 13571178.4747 127.9375 127.9375 2.8555e-06 run48.mat 214.5741 4 1275579 1317146 +2648754 2888666 239913 13572454.4037 13584448.2365 127.9375 127.9375 3.9361e-06 run48.mat 221 4 1329900 1449847 +2 308004 308003 13627618.3507 13643018.8367 127.9375 127.9375 1.2661e-05 run49.mat 215.7768 3.9763 15738 169735 +410041 471760 61720 13648121.6978 13651206.129 127.9375 127.9375 0 run49.mat 1 3 220756 251616 +573942 635888 61947 13656317.3528 13659412.0593 127.9375 127.9375 0 run49.mat 1 3 302710 333684 +641862 702118 60257 13659710.8195 13662725.1156 127.9375 127.9375 9.275e-06 run49.mat 3.0422 3 336671 366801 +804181 866038 61858 13667829.7364 13670920.4224 127.9375 127.9375 8.83e-06 run49.mat 11 3 417834 448764 +906563 968438 61876 13672947.8151 13676041.6352 127.9375 127.9375 3.6952e-05 run49.mat 12.3971 3 469028 499966 +1070502 1132362 61861 13681143.1538 13684238.9496 127.9375 127.9375 0 run49.mat 21 3 551000 581932 +1144989 1206685 61697 13684868.4653 13687953.614 127.9375 127.9375 0 run49.mat 22.1137 3 588246 619095 +1308742 1370759 62018 13693055.3565 13696157.0171 127.9375 127.9375 2.6422e-05 run49.mat 31 3 670126 701135 +1383433 1445127 61695 13696791.6223 13699877.2389 127.9375 127.9375 2.8001e-05 run49.mat 31.8707 3 707473 738321 +1547121 1609204 62084 13704974.8558 13708081.3999 127.9375 127.9375 2.8439e-05 run49.mat 41 3 789320 820363 +1621977 1685406 63430 13708720.1887 13711889.8903 127.9375 127.9375 9.0118e-06 run49.mat 41.8814 3 826750 858469 +1787400 1849546 62147 13716989.5478 13720096.899 127.9375 127.9375 9.1978e-06 run49.mat 51 3 909465 940540 +1862336 1925756 63421 13720737.894 13723907.3087 127.9375 127.9375 3.485e-05 run49.mat 51.9461 3 946935 978646 +2027760 2089666 61907 13729006.6013 13732104.2917 127.9375 127.9375 1.8876e-05 run49.mat 61 3 1029650 1060595 +2102440 2166007 63568 13732742.1812 13735919.8364 127.9375 127.9375 9.3919e-06 run49.mat 61.9831 3 1066992 1098777 +2267999 2329860 61862 13741019.2997 13744113.8752 127.9375 127.9375 1.8891e-05 run49.mat 71 3 1149775 1180707 +2342655 2406010 63356 13744751.8988 13747921.0828 127.9375 127.9375 1.8446e-05 run49.mat 71.9522 3 1187105 1218784 +2508019 2572023 64005 13753021.43 13756220.0797 127.9375 127.9375 3.5127e-05 run49.mat 81 3 1269790 1301794 +2584816 2648176 63361 13756861.0355 13760029.7507 127.9375 127.9375 1.8644e-05 run49.mat 82.2906 3 1308191 1339872 +2750199 2814322 64124 13765127.5631 13768337.6386 127.9375 127.9375 4.3184e-05 run49.mat 91 3 1390886 1422949 +2827082 2890496 63415 13768975.1901 13772143.4033 127.9375 127.9375 8.6132e-06 run49.mat 92.6836 3 1429329 1461037 +2992498 3054422 61925 13777244.2109 13780342.044 127.9375 127.9375 8.8205e-06 run49.mat 101 3 1512041 1543004 +3067194 3132652 65459 13780977.6165 13784252.9714 127.9375 127.9375 0 run49.mat 102.9388 3 1549390 1582121 +3234616 3298615 64000 13789352.144 13792551.0181 127.9375 127.9375 8.5345e-06 run49.mat 111 3 1633105 1665106 +3311433 3374770 63338 13793192.7428 13796358.4836 127.9375 127.9375 1.7448e-05 run49.mat 113.3571 3 1671515 1703185 +3476758 3540889 64132 13801458.4539 13804665.7071 127.9375 127.9375 3.6048e-05 run49.mat 121 3 1754181 1786248 +3553710 3617090 63381 13805307.4803 13808476.2164 127.9375 127.9375 2.6655e-05 run49.mat 123.7055 3 1792659 1824350 +3719056 3783063 64008 13813574.0855 13816774.3938 127.9375 127.9375 8.9304e-06 run49.mat 131 3 1875336 1907341 +3795917 3859232 63316 13817418.2367 13820582.0661 127.9375 127.9375 0 run49.mat 134.0687 3 1913768 1945427 +3961176 4025168 63993 13825679.5441 13828879.4316 127.9375 127.9375 8.9325e-06 run49.mat 141 3 1996401 2028398 +4038065 4101364 63300 13829525.4535 13832688.3251 127.9375 127.9375 5.2775e-05 run49.mat 144.422 3 2034847 2066498 +4203315 4267511 64197 13837786.1526 13840997.1846 127.9375 127.9375 1.7412e-05 run49.mat 151 3 2117476 2149575 +4280386 4345530 65145 13841640.1545 13844899.2002 127.9375 127.9375 1.7354e-05 run49.mat 151 3 2156013 2188586 +4447458 4511659 64202 13849994.9629 13853202.9029 127.9375 127.9375 1.8796e-05 run49.mat 161 3 2239553 2271655 +4524558 4589896 65339 13853850.6888 13857116.9427 127.9375 127.9375 8.5536e-06 run49.mat 161.0203 3 2278104 2310774 +4691831 4755838 64008 13862212.8973 13865414.0373 127.9375 127.9375 2.8776e-05 run49.mat 171 3 2361744 2393749 +4768731 4834063 65333 13866058.2056 13869326.1162 127.9375 127.9375 2.7414e-05 run49.mat 171.6612 3 2400196 2432659 +4935992 5000034 64043 13874423.5422 13877625.8932 127.9375 127.9375 8.9255e-06 run49.mat 181 3 2483625 2514890 +5012950 5078263 65314 13878271.0154 13881535.4714 127.9375 127.9375 8.5569e-06 run49.mat 182.3075 3 2521214 2553872 +5180192 5244196 64005 13886634.3311 13889834.1127 127.9375 127.9375 0 run49.mat 191 3 2604839 2636842 +5257120 5322418 65299 13890481.6987 13893743.4035 127.9375 127.9375 1.7313e-05 run49.mat 192.9349 3 2643304 2675955 +5424355 5488557 64203 13898840.7701 13902053.7141 127.9375 127.9375 3.6008e-05 run49.mat 201 3 2726925 2759028 +5501485 5566779 65295 13902700.0371 13905963.7975 127.9375 127.9375 3.6767e-05 run49.mat 203.6029 3 2765492 2798140 +5668713 5734734 66022 13911058.0169 13914359.6929 127.9375 127.9375 8.4651e-06 run49.mat 211 3 2849110 2882122 +5747664 5812952 65289 13915005.6005 13918271.9517 127.9375 127.9375 9.1444e-06 run49.mat 214.5517 3 2888587 2921232 +5914893 5978881 63989 13923368.3155 13926565.6728 127.9375 127.9375 9.1312e-06 run49.mat 221 3 2972205 3004201 +5991805 6173234 181430 13927213.0823 13936288.2626 127.9375 127.9375 2.5205e-05 run49.mat 221 3 3010663 3095654 +2 263274 263273 12470695.4438 12483861.36 127.9375 127.9375 1.7366e-05 run5.mat -1 -1 24401 156080 +365015 443262 78248 12488948.6749 12492861.416 127.9375 127.9375 0 run5.mat -1 -1 206953 246078 +545034 623305 78272 12497948.8773 12501861.722 127.9375 127.9375 6.1655e-05 run5.mat -1 -1 296966 336103 +725074 803353 78280 12506951.464 12510868.0936 127.9375 127.9375 0 run5.mat -1 -1 386991 426132 +905134 983321 78188 12515956.3066 12519864.5005 127.9375 127.9375 0 run5.mat -1 -1 477025 516120 +1085173 1163299 78127 12524957.4248 12528864.2223 127.9375 127.9375 0 run5.mat -1 -1 567048 606112 +1265053 1343323 78271 12533950.8919 12537865.732 127.9375 127.9375 0 run5.mat -1 -1 656992 696129 +1445133 1523441 78309 12542954.107 12546872.408 127.9375 127.9375 3.8922e-05 run5.mat -1 -1 747036 786192 +1625232 1703717 78486 12551962.4838 12555885.8062 127.9375 127.9375 1.9417e-05 run5.mat -1 -1 837089 876333 +1805492 1883787 78296 12560973.9396 12564887.6345 127.9375 127.9375 0 run5.mat -1 -1 927223 966372 +1985552 2063861 78310 12569976.3197 12573891.7716 127.9375 127.9375 1.9461e-05 run5.mat -1 -1 1017257 1056413 +2165651 2243738 78088 12578983.4339 12582886.6718 127.9375 127.9375 0 run5.mat -1 -1 1107310 1146356 +2345532 2423803 78272 12587977.5158 12591889.7568 127.9375 127.9375 0 run5.mat -1 -1 1197255 1236392 +2525610 2604091 78482 12596982.4172 12600906.4505 127.9375 127.9375 1.9418e-05 run5.mat -1 -1 1287298 1326540 +2705850 2784078 78229 12605994.7666 12609903.6009 127.9375 127.9375 3.8962e-05 run5.mat -1 -1 1377422 1416538 +2838994 3995914 1156921 12612649.2477 12670492.8833 127.9375 127.9375 1.2075e-05 run5.mat -1 -1 1443997 1683997 +2 354378 354377 14016327.3723 14034050.076 127.9375 127.9375 9.8214e-06 run50.mat 203.2787 3.0806 7040 95654 +398965 470955 71991 14036279.2382 14039879.4645 127.9375 127.9375 1.5174e-05 run50.mat 4.5286 4 106801 124799 +501770 573652 71883 14041419.8524 14045014.6191 127.9375 127.9375 7.7749e-06 run50.mat 12.1155 4 132503 150475 +599306 672357 73052 14046297.3412 14049950.2739 127.9375 127.9375 2.2952e-05 run50.mat 23.2919 4 156888 175151 +698110 773106 74997 14051236.1036 14054987.9488 127.9375 127.9375 7.9607e-06 run50.mat 34.6602 4 181590 200340 +798917 873608 74692 14056279.8141 14060012.5013 127.9375 127.9375 7.3128e-06 run50.mat 41.9094 4 206793 225467 +899412 974169 74758 14061304.3397 14065040.9806 127.9375 127.9375 7.3064e-06 run50.mat 53.4951 4 231918 250608 +999942 1076492 76551 14066328.7858 14070156.219 127.9375 127.9375 1.51e-05 run50.mat 65.0359 4 257051 276190 +1102242 1179242 77001 14071443.9569 14075294.9004 127.9375 127.9375 0 run50.mat 72.7435 4 282627 301878 +1204721 1281493 76773 14076568.2769 14080408.2104 127.9375 127.9375 2.2171e-05 run50.mat 84.3652 4 308249 327443 +1307289 1384129 76841 14081698.776 14085538.3401 127.9375 127.9375 3.0747e-05 run50.mat 92.1129 4 333891 353103 +1409697 1488388 78692 14086817.6186 14090753.056 127.9375 127.9375 0 run50.mat 103.8707 4 359495 379168 +1513905 1592926 79022 14092027.0758 14095978.4819 127.9375 127.9375 2.9417e-05 run50.mat 115.7137 4 385548 405304 +1618462 1696937 78476 14097253.7424 14101180.1244 127.9375 127.9375 1.5377e-05 run50.mat 123.7192 4 411688 431308 +1722747 1801739 78993 14102471.6507 14106419.7945 127.9375 127.9375 2.1708e-05 run50.mat 135.5853 4 437761 457509 +1827110 1906020 78911 14107687.7737 14111633.5241 127.9375 127.9375 1.4326e-05 run50.mat 143.5752 4 463852 483581 +1931512 2010466 78955 14112908.7126 14116857.9044 127.9375 127.9375 7.0785e-06 run50.mat 155.4136 4 489954 509694 +2035998 2114492 78495 14118131.4731 14122059.2668 127.9375 127.9375 0 run50.mat 163.4044 4 516077 535702 +2140232 2221506 81275 14123344.8586 14127410.4332 127.9375 127.9375 2.9525e-06 run50.mat 175.4156 4 542136 562456 +2246516 2327796 81281 14128659.3025 14132721.8237 127.9375 127.9375 0 run50.mat 183.7359 4 568709 589030 +2353197 2434236 81040 14133993.1231 14138043.6737 127.9375 127.9375 0 run50.mat 195.7677 4 595381 615641 +2459716 2542775 83060 14139318.9127 14143472.5973 127.9375 127.9375 1.2306e-05 run50.mat 204.2551 4 622011 642776 +2568094 2651271 83178 14144737.933 14148897.8684 127.9375 127.9375 0 run50.mat 212.8914 4 649107 669902 +2676736 2913409 236674 14150170.0746 14162004.2755 127.9375 127.9375 3.0637e-06 run50.mat 221 4 676269 730918 +2 308243 308242 14202333.2068 14217747.2469 127.9375 127.9375 1.5165e-05 run51.mat 212.1138 3.9596 8009 85071 +410320 472287 61968 14222852.7404 14225951.4345 127.9375 127.9375 2.8493e-05 run51.mat 1 3 110591 126084 +574360 636204 61845 14231052.6232 14234145.5045 127.9375 127.9375 8.8319e-06 run51.mat 1 3 151603 167065 +641517 702459 60943 14234412.2268 14237458.8396 127.9375 127.9375 2.7721e-05 run51.mat 3.7774 3 168393 183629 +804540 866514 61975 14242562.6729 14245661.5174 127.9375 127.9375 0 run51.mat 11 3 209151 224645 +907034 968898 61865 14247689.7697 14250780.2272 127.9375 127.9375 1.9711e-05 run51.mat 13.1443 3 234775 250242 +1070959 1132972 62014 14255884.9798 14258984.773 127.9375 127.9375 0 run51.mat 21 3 275758 291263 +1145589 1209355 63767 14259616.5753 14262803.7398 127.9375 127.9375 9.3626e-06 run51.mat 23.1645 3 294417 310359 +1311418 1373213 61796 14267907.3587 14270997.7729 127.9375 127.9375 2.7133e-05 run51.mat 31 3 335876 351325 +1385905 1449635 63731 14271630.6077 14274816.8361 127.9375 127.9375 1.7141e-05 run51.mat 33.2191 3 354498 370432 +1551618 1613688 62071 14279916.314 14283021.5737 127.9375 127.9375 9.4133e-06 run51.mat 41 3 395928 411447 +1626476 1689909 63434 14283659.998 14286833.6164 127.9375 127.9375 2.6632e-05 run51.mat 43.2632 3 414643 430503 +1791898 1853979 62082 14291933.4082 14295034.2235 127.9375 127.9375 9.6167e-06 run51.mat 51 3 456001 471522 +1866762 1928305 61544 14295673.5124 14298753.7106 127.9375 127.9375 8.8751e-06 run51.mat 53.0753 3 474718 490104 +2030277 2092175 61899 14303850.154 14306947.2045 127.9375 127.9375 1.7853e-05 run51.mat 61 3 515599 531074 +2104953 2168528 63576 14307585.4922 14310764.2102 127.9375 127.9375 0 run51.mat 63.0438 3 534268 550162 +2270517 2334444 63928 14315862.4777 14319059.7161 127.9375 127.9375 1.7684e-05 run51.mat 71 3 575661 591644 +2347238 2410615 63378 14319697.9746 14322869.2718 127.9375 127.9375 9.6201e-06 run51.mat 73.3763 3 594842 610687 +2512616 2574689 62074 14327969.3916 14331071.5572 127.9375 127.9375 0 run51.mat 81 3 636188 651708 +2587457 2650859 63403 14331711.2392 14334879.4822 127.9375 127.9375 0 run51.mat 83.417 3 654899 670751 +2752836 2816772 63937 14339978.2955 14343175.4158 127.9375 127.9375 0 run51.mat 91 3 696246 712231 +2829539 2892951 63413 14343816.7705 14346985.5426 127.9375 127.9375 1.8028e-05 run51.mat 93.7307 3 715423 731276 +2994932 3058839 63908 14352084.501 14355279.0494 127.9375 127.9375 3.8361e-05 run51.mat 101 3 756773 772750 +3071587 3135022 63436 14355916.628 14359088.6676 127.9375 127.9375 2.6232e-05 run51.mat 104.072 3 775938 791797 +3236995 3301152 64158 14364187.2436 14367397.9675 127.9375 127.9375 8.7111e-06 run51.mat 111 3 817291 833331 +3313946 3377106 63161 14368037.7165 14371192.7706 127.9375 127.9375 0 run51.mat 114.4152 3 836530 852320 +3479074 3543206 64133 14376291.9035 14379497.7089 127.9375 127.9375 2.5748e-05 run51.mat 121 3 877813 893847 +3556028 3621458 65431 14380139.7728 14383412.601 127.9375 127.9375 8.5416e-06 run51.mat 121 3 897053 913411 +3723394 3787400 64007 14388509.6778 14391707.7647 127.9375 127.9375 8.7316e-06 run51.mat 131 3 938896 954898 +3800268 3863595 63328 14392353.0214 14395518.8904 127.9375 127.9375 9.0263e-06 run51.mat 131 3 958116 973948 +3965513 4029699 64187 14400616.1932 14403825.8285 127.9375 127.9375 8.7071e-06 run51.mat 141 3 999429 1015476 +4042597 4105866 63270 14404470.5757 14407634.338 127.9375 127.9375 2.8106e-05 run51.mat 141.0238 3 1018701 1034518 +4207793 4271779 63987 14412727.9517 14415928.0433 127.9375 127.9375 3.4938e-05 run51.mat 151 3 1060001 1075999 +4284672 4349992 65321 14416573.783 14419838.7558 127.9375 127.9375 1.7501e-05 run51.mat 151.6881 3 1079222 1095553 +4451933 4516103 64171 14424937.0396 14428144.5368 127.9375 127.9375 0 run51.mat 161 3 1121039 1137082 +4529000 4610099 81100 14428790.2354 14432843.9389 127.9375 127.9375 7.3616e-06 run51.mat 161 3 1140307 1160582 +4712050 4784224 72175 14437940.4265 14441551.0494 127.9375 127.9375 8.0955e-06 run51.mat 171 3 1186071 1204116 +4797146 4872282 75137 14442195.3 14445953.1564 127.9375 127.9375 1.5046e-05 run51.mat 173.0821 3 1207346 1226131 +4974232 5038427 64196 14451050.5386 14454262.4782 127.9375 127.9375 8.5084e-06 run51.mat 181 3 1251619 1267669 +5051321 5116540 65220 14454903.5817 14458168.2159 127.9375 127.9375 1.8308e-05 run51.mat 184.2199 3 1270892 1287198 +5218371 5282538 64168 14463258.3098 14466465.7415 127.9375 127.9375 8.7097e-06 run51.mat 191 3 1312657 1328699 +5295439 5360762 65324 14467112.142 14470376.9456 127.9375 127.9375 9.1395e-06 run51.mat 194.8581 3 1331924 1348256 +5462691 5528911 66221 14475472.4636 14478785.1636 127.9375 127.9375 8.8234e-06 run51.mat 201 3 1373740 1390295 +5541831 5606922 65092 14479431.5717 14482685.0506 127.9375 127.9375 2.6344e-05 run51.mat 201.1755 3 1393525 1409799 +5708851 5775115 66265 14487781.8853 14491097.8305 127.9375 127.9375 2.5878e-05 run51.mat 211 3 1435282 1451849 +5788062 5853179 65118 14491743.8512 14495000.4778 127.9375 127.9375 2.6335e-05 run51.mat 212.1638 3 1455086 1471366 +5955050 6019237 64188 14500092.9697 14503303.7983 127.9375 127.9375 8.9054e-06 run51.mat 221 3 1496834 1512882 +6032169 6244431 212263 14503949.612 14514562.5718 127.9375 127.9375 2.1663e-05 run51.mat 221 3 1516115 1564123 +2 249320 249319 14580011.9371 14592479.7507 127.9375 127.9375 2.1144e-05 run52.mat 188.1318 3.1494 1 1 +294017 366196 72180 14594715.522 14598323.3286 127.9375 127.9375 0 run52.mat 1.5631 4 1 1 +396944 468713 71770 14599861.1571 14603449.5685 127.9375 127.9375 9.0267e-06 run52.mat 13.3104 4 1 1 +494340 569446 75107 14604730.8704 14608486.8846 127.9375 127.9375 2.2662e-05 run52.mat 24.6181 4 1 1 +595147 670024 74878 14609772.1651 14613515.4457 127.9375 127.9375 0 run52.mat 32.0674 4 1 1 +695819 770550 74732 14614803.045 14618542.0302 127.9375 127.9375 1.4787e-05 run52.mat 43.4459 4 1 1 +796341 871054 74714 14619829.3441 14623566.8896 127.9375 127.9375 1.6662e-05 run52.mat 54.8738 4 1 1 +896822 971853 75032 14624857.6436 14628608.9726 127.9375 127.9375 1.5237e-05 run52.mat 62.2743 4 1 1 +997363 1074350 76988 14629881.0077 14633730.9548 127.9375 127.9375 7.2594e-06 run52.mat 73.8964 4 1 1 +1099849 1176774 76926 14635006.8897 14638851.5573 127.9375 127.9375 0 run52.mat 85.48 4 1 1 +1202260 1278877 76618 14640126.6202 14643960.3505 127.9375 127.9375 2.1387e-05 run52.mat 93.1882 4 1 1 +1304695 1381264 76570 14645248.6603 14649076.0714 127.9375 127.9375 2.2063e-05 run52.mat 104.8072 4 1 1 +1407114 1485870 78757 14650369.4588 14654308.4603 127.9375 127.9375 2.1612e-05 run52.mat 112.7519 4 1 1 +1511379 1590094 78716 14655584.5802 14659520.4507 127.9375 127.9375 0 run52.mat 124.537 4 1 1 +1615913 1694759 78847 14660811.1451 14664753.9429 127.9375 127.9375 1.4338e-05 run52.mat 132.5963 4 1 1 +1720240 1798681 78442 14666028.1835 14669948.3749 127.9375 127.9375 1.5384e-05 run52.mat 144.3003 4 1 1 +1824436 1903183 78748 14671237.1481 14675172.7695 127.9375 127.9375 2.226e-05 run52.mat 152.4057 4 1 1 +1928991 2007862 78872 14676465.4435 14680409.0102 127.9375 127.9375 0 run52.mat 164.2747 4 1 1 +2033231 2114350 81120 14681677.0986 14685731.7251 127.9375 127.9375 2.8623e-06 run52.mat 172.5084 4 1 1 +2139748 2220864 81117 14687001.9294 14691058.3362 127.9375 127.9375 0 run52.mat 184.5517 4 1 1 +2246249 2329119 82871 14692328.9651 14696472.9731 127.9375 127.9375 0 run52.mat 193.0496 4 1 1 +2354553 2437698 83146 14697742.4304 14701897.5981 127.9375 127.9375 3.0577e-06 run52.mat 205.2822 4 1 1 +2463112 2546184 83073 14703172.4518 14707324.2084 127.9375 127.9375 0 run52.mat 213.9071 4 1 1 +2571672 2715484 143813 14708599.5915 14715790.479 127.9375 127.9375 3.5809e-06 run52.mat 221 4 1 1 +2 545565 545564 15573441.9736 15600714.5359 127.9375 127.9375 1.6508e-05 run53.mat 216.3568 3.0211 200001 200001 +590006 662442 72437 15602939.1936 15606558.9008 127.9375 127.9375 0 run53.mat 2.1667 4 200001 200001 +693188 767016 73829 15608096.9185 15611788.1703 127.9375 127.9375 0 run53.mat 14.1133 4 200001 200001 +792567 865678 73112 15613065.8561 15616723.4663 127.9375 127.9375 7.4708e-06 run53.mat 25.315 4 200001 200001 +891336 966381 75046 15618003.4821 15621757.5437 127.9375 127.9375 2.2342e-05 run53.mat 32.6697 4 200001 200001 +992157 1068931 76775 15623046.0488 15626884.4259 127.9375 127.9375 7.1144e-06 run53.mat 44.2615 4 200001 200001 +1094756 1169265 74510 15628176.7906 15631900.9183 127.9375 127.9375 3.0346e-05 run53.mat 51.1711 4 200001 200001 +1195067 1272137 77071 15633192.3411 15637046.8399 127.9375 127.9375 2.1921e-05 run53.mat 63.3751 4 200001 200001 +1297592 1374619 77028 15638317.8916 15642170.1301 127.9375 127.9375 1.5336e-05 run53.mat 74.9917 4 200001 200001 +1400020 1476561 76542 15643439.8596 15647267.5514 127.9375 127.9375 7.6336e-06 run53.mat 82.6526 4 200001 200001 +1502370 1579342 76973 15648558.5619 15652406.9307 127.9375 127.9375 7.4262e-06 run53.mat 94.3063 4 200001 200001 +1604781 1683274 78494 15653676.3603 15657601.2952 127.9375 127.9375 1.4888e-05 run53.mat 102.2003 4 200001 200001 +1709126 1788066 78941 15658896.8977 15662841.6815 127.9375 127.9375 1.3838e-05 run53.mat 114.0572 4 200001 200001 +1813609 1892592 78984 15664117.2398 15668071.2204 127.9375 127.9375 6.9154e-06 run53.mat 122.1038 4 200001 200001 +1918115 1996889 78775 15669346.3362 15673283.9395 127.9375 127.9375 0 run53.mat 133.9268 4 200001 200001 +2022369 2101322 78954 15674558.3651 15678504.5556 127.9375 127.9375 0 run53.mat 145.7481 4 200001 200001 +2126856 2205543 78688 15679783.4657 15683715.8298 127.9375 127.9375 1.469e-05 run53.mat 153.7615 4 200001 200001 +2231077 2312010 80934 15684991.0365 15689040.1813 127.9375 127.9375 8.7668e-06 run53.mat 165.7145 4 200001 200001 +2337493 2418465 80973 15690315.0333 15694363.8774 127.9375 127.9375 0 run53.mat 174.0344 4 200001 200001 +2443831 2524995 81165 15695630.6651 15699691.4049 127.9375 127.9375 2.8928e-06 run53.mat 182.35 4 200001 200001 +2550302 2631604 81303 15700955.183 15705018.3634 127.9375 127.9375 3.2388e-06 run53.mat 194.4201 4 200001 200001 +2656970 2737993 81024 15706288.2925 15710339.0552 127.9375 127.9375 0 run53.mat 202.7471 4 200001 200001 +2763361 2846525 83165 15711608.2029 15715765.758 127.9375 127.9375 1.5082e-05 run53.mat 214.904 4 200001 200001 +2872108 3151628 279521 15717046.1746 15731021.777 127.9375 127.9375 3.4248e-06 run53.mat 221 4 200001 200001 +2 311252 311251 15782538.023 15798106.8434 127.9375 127.9375 1.8242e-05 run55.mat 200.1907 3.9054 24263 179935 +413305 475097 61793 15803206.0893 15806296.2883 127.9375 127.9375 2.8985e-05 run55.mat 1 3 230963 261861 +577156 637308 60153 15811398.9762 15814406.296 127.9375 127.9375 0 run55.mat 1 3 312893 342970 +646948 707355 60408 15814890.0162 15817912.2097 127.9375 127.9375 9.4626e-06 run55.mat 1.9144 3 347790 377995 +809425 871442 62018 15823015.0292 15826114.4731 127.9375 127.9375 8.8073e-06 run55.mat 11 3 429032 460042 +911959 973873 61915 15828142.0358 15831236.6868 127.9375 127.9375 1.8669e-05 run55.mat 11.3391 3 480301 511260 +1075925 1137954 62030 15836338.7829 15839439.6882 127.9375 127.9375 9.4195e-06 run55.mat 21 3 562288 593304 +1150583 1212284 61702 15840072.8812 15843157.2017 127.9375 127.9375 2.738e-05 run55.mat 21.0795 3 599619 630471 +1314344 1376342 61999 15848261.6901 15851359.835 127.9375 127.9375 0 run55.mat 31 3 681503 712503 +1389009 1450738 61730 15851993.0246 15855080.2513 127.9375 127.9375 1.8107e-05 run55.mat 31 3 718837 749703 +1552744 1614834 62091 15860182.2693 15863286.2887 127.9375 127.9375 8.7969e-06 run55.mat 41 3 800708 831754 +1627574 1688964 61391 15863923.4663 15866991.8464 127.9375 127.9375 2.1725e-05 run55.mat 41 3 838125 868821 +1790944 1855118 64175 15872090.8548 15875299.6851 127.9375 127.9375 8.5112e-06 run55.mat 51 3 919813 951902 +1867938 1931261 63324 15875940.8623 15879107.5586 127.9375 127.9375 0 run55.mat 51 3 958312 989975 +2033263 2095350 62088 15884206.6993 15887312.3033 127.9375 127.9375 0 run55.mat 61 3 1040978 1072023 +2108114 2171510 63397 15887951.6654 15891120.0738 127.9375 127.9375 9.6172e-06 run55.mat 61 3 1078405 1110105 +2273502 2337454 63953 15896218.4541 15899416.3081 127.9375 127.9375 9.1363e-06 run55.mat 71 3 1161103 1193080 +2350235 2413843 63609 15900055.7705 15903235.3028 127.9375 127.9375 0 run55.mat 71.3154 3 1199471 1231276 +2515822 2579767 63946 15908334.2325 15911532.7003 127.9375 127.9375 0 run55.mat 81 3 1282268 1314242 +2592566 2655908 63343 15912172.5419 15915340.3171 127.9375 127.9375 0 run55.mat 81.6522 3 1320642 1352314 +2757894 2822029 64136 15920439.3862 15923645.0169 127.9375 127.9375 8.7141e-06 run55.mat 91 3 1403309 1435378 +2834820 2898013 63194 15924284.8952 15927443.1748 127.9375 127.9375 2.593e-05 run55.mat 91.9804 3 1441774 1473372 +3000001 3064105 64105 15932546.6277 15935750.965 127.9375 127.9375 8.9169e-06 run55.mat 101 3 1524368 1556421 +3076891 3140266 63376 15936389.9821 15939559.3638 127.9375 127.9375 9.8213e-06 run55.mat 102.3425 3 1562815 1594504 +3242241 3306185 63945 15944656.2779 15947852.646 127.9375 127.9375 3.6352e-05 run55.mat 111 3 1645493 1677467 +3319030 3384408 65379 15948494.7188 15951766.5255 127.9375 127.9375 9.3257e-06 run55.mat 112.9255 3 1683890 1716580 +3486380 3550377 63998 15956866.0155 15960064.3711 127.9375 127.9375 8.7328e-06 run55.mat 121 3 1767569 1799569 +3563215 3628588 65374 15960706.954 15963975.2689 127.9375 127.9375 8.549e-06 run55.mat 123.5742 3 1805988 1838676 +3730540 3794728 64189 15969071.6152 15972283.5402 127.9375 127.9375 9.1027e-06 run55.mat 131 3 1889654 1921749 +3807609 3870741 63133 15972925.1872 15976083.0103 127.9375 127.9375 2.6156e-05 run55.mat 133.9939 3 1928189 1959757 +3972659 4036850 64192 15981178.6501 15984388.3005 127.9375 127.9375 3.74e-05 run55.mat 141 3 2010718 2042815 +4049756 4113007 63252 15985033 15988195.3274 127.9375 127.9375 1.7471e-05 run55.mat 144.356 3 2049268 2080906 +4214938 4278931 63994 15993291.3418 15996493.6902 127.9375 127.9375 1.8063e-05 run55.mat 151 3 2131863 2163861 +4291844 4357153 65310 15997140.2799 16000403.0121 127.9375 127.9375 2.509e-05 run55.mat 154.8881 3 2170318 2202974 +4459089 4523288 64200 16005501.0756 16008712.1778 127.9375 127.9375 9.4969e-06 run55.mat 161 3 2253944 2286045 +4536176 4601291 65116 16009353.5447 16012610.8032 127.9375 127.9375 3.4528e-05 run55.mat 161 3 2292490 2325048 +4703256 4767429 64174 16017708.1432 16020917.0977 127.9375 127.9375 8.7089e-06 run55.mat 171 3 2376033 2408121 +4780300 4845441 65142 16021561.8475 16024818.8245 127.9375 127.9375 8.5795e-06 run55.mat 171.5621 3 2414557 2447129 +4947376 5011541 64166 16029915.1717 16033122.7372 127.9375 127.9375 0 run55.mat 181 3 2498098 2530183 +5024451 5089588 65138 16033768.3239 16037027.801 127.9375 127.9375 2.5545e-05 run55.mat 182.1588 3 2536637 2569207 +5191518 5255703 64186 16042123.0361 16045332.0177 127.9375 127.9375 1.7415e-05 run55.mat 191 3 2620175 2652269 +5268626 5333939 65314 16045977.8317 16049242.3852 127.9375 127.9375 8.3628e-06 run55.mat 192.8615 3 2658730 2691390 +5435857 5501941 66085 16054339.2896 16057642.6904 127.9375 127.9375 1.6722e-05 run55.mat 201 3 2742350 2775393 +5514860 5579971 65112 16058288.8087 16061547.1081 127.9375 127.9375 3.414e-05 run55.mat 203.7968 3 2781853 2814410 +5681896 5746174 64279 16066643.4815 16069856.5621 127.9375 127.9375 8.4975e-06 run55.mat 211 3 2865374 2897515 +5758998 5824290 65293 16070498.0319 16073762.1344 127.9375 127.9375 8.5596e-06 run55.mat 214.4536 3 2903927 2936575 +5926227 5992384 66158 16078858.747 16082167.0381 127.9375 127.9375 8.2561e-06 run55.mat 221 3 2987546 3020625 +6005174 6099071 93898 16082806.601 16087505.3175 127.9375 127.9375 6.2226e-06 run55.mat 221 3 3027020 3041843 +2 318329 318328 16199922.8572 16215841.5354 127.9375 127.9375 1.229e-05 run56.mat 211.3255 3.044 7919 87520 +362805 435046 72242 16218067.1613 16221681.1924 127.9375 127.9375 2.3561e-05 run56.mat 2.4971 4 98639 116700 +465907 537722 71816 16223221.079 16226813.4163 127.9375 127.9375 1.6273e-05 run56.mat 14.2655 4 124416 142371 +563389 638384 74996 16228096.1054 16231845.8888 127.9375 127.9375 7.622e-06 run56.mat 25.554 4 148787 167537 +664111 738923 74813 16233132.3584 16236872.5588 127.9375 127.9375 7.301e-06 run56.mat 32.9611 4 173969 192673 +764724 839414 74691 16238163.16 16241896.8748 127.9375 127.9375 1.5816e-05 run56.mat 44.3742 4 199123 217797 +865240 939970 74731 16243189.3475 16246925.9533 127.9375 127.9375 3.8924e-05 run56.mat 51.741 4 224253 242937 +965775 1042383 76609 16248216.2733 16252045.0935 127.9375 127.9375 2.3047e-05 run56.mat 63.364 4 249388 268541 +1068161 1142908 74748 16253336.3515 16257073.4321 127.9375 127.9375 1.7334e-05 run56.mat 74.8309 4 274986 293674 +1168727 1245286 76560 16258364.8699 16262191.6937 127.9375 127.9375 1.46e-05 run56.mat 82.4436 4 300128 319269 +1271085 1347720 76636 16263482.2687 16267314.4461 127.9375 127.9375 7.2927e-06 run56.mat 94.0646 4 325719 344878 +1373571 1450137 76567 16268604.2445 16272434.002 127.9375 127.9375 0 run56.mat 105.6916 4 351342 370484 +1475968 1554858 78891 16273724.1148 16277670.5707 127.9375 127.9375 2.222e-05 run56.mat 113.6116 4 376942 396666 +1580472 1658928 78457 16278949.719 16282874.6442 127.9375 127.9375 1.4409e-05 run56.mat 125.4271 4 403069 422684 +1684732 1763756 79025 16284165.0437 16288116.1513 127.9375 127.9375 2.2504e-05 run56.mat 133.4703 4 429136 448892 +1789229 1868197 78969 16289388.3701 16293336.7905 127.9375 127.9375 2.1875e-05 run56.mat 145.2728 4 455261 475004 +1893741 1974539 80799 16294613.3803 16298654.8403 127.9375 127.9375 7.389e-06 run56.mat 153.5104 4 481390 501590 +1999938 2080579 80642 16299925.215 16303957.2196 127.9375 127.9375 0 run56.mat 165.5093 4 507941 528101 +2106384 2185519 79136 16305246.595 16309204.1639 127.9375 127.9375 2.9341e-06 run56.mat 173.6868 4 534553 554338 +2210832 2291964 81133 16310469.6761 16314524.8792 127.9375 127.9375 3.2936e-06 run56.mat 185.655 4 560667 580950 +2317492 2398495 81004 16315803.6451 16319851.9661 127.9375 127.9375 0 run56.mat 193.9947 4 587333 607584 +2423528 2506792 83265 16321103.9472 16325268.6245 127.9375 127.9375 5.6864e-06 run56.mat 202.4671 4 613842 634659 +2532330 2615396 83067 16326546.0545 16330697.5457 127.9375 127.9375 0 run56.mat 214.7295 4 641044 661812 +2640923 2928907 287985 16331973.3995 16346371.1699 127.9375 127.9375 8.1529e-07 run56.mat 221 4 668194 740178 +2 301046 301045 16381711.0006 16396761.6314 127.9375 127.9375 1.557e-05 run57.mat 197.4719 3.8931 10325 85583 +403106 463044 59939 16401865.9576 16404864.3735 127.9375 127.9375 0 run57.mat 1 3 111098 126083 +565092 627267 62176 16409963.849 16413074.2543 127.9375 127.9375 1.0215e-05 run57.mat 1 3 151597 167141 +636842 697492 60651 16413552.9899 16416585.4778 127.9375 127.9375 9.4247e-06 run57.mat 2.4677 3 169535 184698 +799551 859561 60011 16421689.2892 16424690.0802 127.9375 127.9375 9.1018e-06 run57.mat 11 3 210214 225217 +900082 962151 62070 16426714.3917 16429818.6621 127.9375 127.9375 8.7999e-06 run57.mat 11.39 3 235348 250866 +1064211 1126242 62032 16434921.1319 16438021.2949 127.9375 127.9375 0 run57.mat 21 3 276382 291890 +1138877 1200598 61722 16438655.1951 16441740.5203 127.9375 127.9375 0 run57.mat 21.3252 3 295049 310480 +1302629 1364623 61995 16446842.0044 16449943.4737 127.9375 127.9375 2.9505e-05 run57.mat 31 3 335989 351488 +1377316 1438981 61666 16450576.453 16453659.8194 127.9375 127.9375 8.8575e-06 run57.mat 31.0601 3 354662 370078 +1541009 1603086 62078 16458762.0412 16461863.8416 127.9375 127.9375 9.0029e-06 run57.mat 41 3 395587 411107 +1615829 1677233 61405 16462502.1131 16465573.4055 127.9375 127.9375 5.8541e-05 run57.mat 41 3 414292 429644 +1779210 1841324 62115 16470671.162 16473777.687 127.9375 127.9375 1.82e-05 run57.mat 51 3 455140 470669 +1854109 1917564 63456 16474416.3447 16477590.828 127.9375 127.9375 9.2079e-06 run57.mat 51 3 473865 489730 +2019528 2081638 62111 16482689.1801 16485793.3804 127.9375 127.9375 9.2032e-06 run57.mat 61 3 515222 530750 +2094413 2155951 61539 16486431.2054 16489509.4033 127.9375 127.9375 1.837e-05 run57.mat 61 3 533944 549329 +2257948 2321916 63969 16494609.2225 16497808.858 127.9375 127.9375 8.5386e-06 run57.mat 71 3 574829 590822 +2334698 2398278 63581 16498447.3245 16501626.6781 127.9375 127.9375 8.7901e-06 run57.mat 71 3 594018 609914 +2500267 2564235 63969 16506725.0266 16509924.1175 127.9375 127.9375 0 run57.mat 81 3 635412 651405 +2576990 2640379 63390 16510562.0463 16513732.46 127.9375 127.9375 1.8035e-05 run57.mat 81.2784 3 654594 670441 +2742367 2806511 64145 16518830.8586 16522037.4257 127.9375 127.9375 8.7128e-06 run57.mat 91 3 695939 711976 +2819309 2882698 63390 16522676.8697 16525848.2427 127.9375 127.9375 1.8035e-05 run57.mat 91.6535 3 715176 731024 +2984687 3048840 64154 16530946.1301 16534152.6119 127.9375 127.9375 8.514e-06 run57.mat 101 3 756522 772561 +3061627 3124989 63363 16534792.7557 16537962.1187 127.9375 127.9375 1.7842e-05 run57.mat 102.0153 3 775758 791599 +3226986 3290943 63958 16543060.9568 16546260.2275 127.9375 127.9375 0 run57.mat 111 3 817099 833090 +3303757 3367099 63343 16546902.0108 16550068.8879 127.9375 127.9375 2.8275e-05 run57.mat 112.26 3 836293 852129 +3469086 3535320 66235 16555168.5522 16558477.1081 127.9375 127.9375 1.7452e-05 run57.mat 121 3 877627 894187 +3548137 3613319 65183 16559120.1239 16562381.08 127.9375 127.9375 0 run57.mat 123.2585 3 897391 913686 +3715285 3779459 64175 16567475.9515 16570686.9974 127.9375 127.9375 0 run57.mat 131 3 939180 955224 +3792319 3855622 63304 16571330.742 16574495.4489 127.9375 127.9375 1.8059e-05 run57.mat 133.6546 3 958439 974266 +3957565 4023778 66214 16579592.389 16582901.5494 127.9375 127.9375 1.6882e-05 run57.mat 141 3 999753 1016306 +4036663 4099939 63277 16583545.9527 16586710.6303 127.9375 127.9375 1.7264e-05 run57.mat 144.3664 3 1019527 1035348 +4201883 4265871 63989 16591806.2588 16595007.16 127.9375 127.9375 8.7341e-06 run57.mat 151 3 1060835 1076832 +4278750 4342014 63265 16595649.5714 16598813.8865 127.9375 127.9375 8.834e-06 run57.mat 154.6634 3 1080052 1095869 +4443964 4508098 64135 16603911.4574 16607117.0697 127.9375 127.9375 9.9027e-06 run57.mat 161 3 1121358 1137391 +4520974 4586122 65149 16607762.3751 16611019.1516 127.9375 127.9375 4.3479e-05 run57.mat 161 3 1140611 1156898 +4688062 4752250 64189 16616119.1573 16619325.8829 127.9375 127.9375 4.5515e-05 run57.mat 171 3 1182385 1198433 +4765142 4830459 65318 16619972.1774 16623238.2603 127.9375 127.9375 2.5475e-05 run57.mat 171.291 3 1201656 1217986 +4932403 4996340 63938 16628334.7299 16631531.9311 127.9375 127.9375 1.8476e-05 run57.mat 181 3 1243473 1259458 +5009245 5074578 65334 16632176.1993 16635443.5385 127.9375 127.9375 2.6441e-05 run57.mat 181.912 3 1262684 1279018 +5176523 5242548 66026 16640541.6697 16643842.2343 127.9375 127.9375 3.54e-05 run57.mat 191 3 1304506 1321012 +5255448 5320746 65299 16644488.3054 16647753.1819 127.9375 127.9375 1.7508e-05 run57.mat 192.8294 3 1324237 1340563 +5422682 5488739 66058 16652848.3626 16656150.8807 127.9375 127.9375 8.6533e-06 run57.mat 201 3 1366048 1382563 +5501653 5566958 65306 16656796.3553 16660062.8138 127.9375 127.9375 3.4621e-05 run57.mat 203.8049 3 1385791 1402119 +5668882 5733057 64176 16665159.3028 16668367.7039 127.9375 127.9375 1.8408e-05 run57.mat 211 3 1427600 1443645 +5745993 5811251 65259 16669014.0401 16672275.6465 127.9375 127.9375 8.7592e-06 run57.mat 214.4739 3 1446879 1463194 +5913200 5979226 66027 16677377.3401 16680679.5487 127.9375 127.9375 3.4051e-05 run57.mat 221 3 1488683 1505190 +5992150 6083573 91424 16681321.9519 16685896.2694 127.9375 127.9375 1.8896e-05 run57.mat 221 3 1508421 1531282 +2 259664 259663 -35340.1134 -22354.308 127.9375 127.9375 1.7708e-05 run58.mat 200.3165 3.094 1 1 +304032 376137 72106 -20135.4457 -16529.4445 127.9375 127.9375 7.5751e-06 run58.mat 3.8965 4 1 1 +407096 480776 73681 -14981.1719 -11296.4043 127.9375 127.9375 3.1204e-05 run58.mat 11.7498 4 1 1 +506451 579703 73253 -10012.3867 -6349.0235 127.9375 127.9375 1.6127e-05 run58.mat 22.9756 4 1 1 +605435 678104 72670 -5062.1554 -1427.9483 127.9375 127.9375 1.5906e-05 run58.mat 34.1474 4 1 1 +703925 778754 74830 -136.6293 3601.7688 127.9375 127.9375 1.5108e-05 run58.mat 45.4745 4 1 1 +804572 879203 74632 4894.5625 8627.3598 127.9375 127.9375 1.5658e-05 run58.mat 52.8694 4 1 1 +904999 979707 74709 9915.8046 13653.235 127.9375 127.9375 1.5303e-05 run58.mat 64.2734 4 1 1 +1005490 1082117 76628 14940.6309 18772.9396 127.9375 127.9375 2.2379e-05 run58.mat 71.8671 4 1 1 +1107916 1185081 77166 20061.3719 23921.021 127.9375 127.9375 0 run58.mat 83.567 4 1 1 +1210550 1287417 76868 25194.1432 29036.6157 127.9375 127.9375 3.0571e-05 run58.mat 95.187 4 1 1 +1312960 1389829 76870 30312.5404 34157.5014 127.9375 127.9375 7.1056e-06 run58.mat 102.9041 4 1 1 +1415337 1494305 78969 35433.2548 39381.6886 127.9375 127.9375 2.2037e-05 run58.mat 114.6485 4 1 1 +1519845 1600690 80846 40659.1703 44700.3638 127.9375 127.9375 2.1682e-05 run58.mat 122.9094 4 1 1 +1626152 1704633 78482 45976.1381 49899.1527 127.9375 127.9375 8.2547e-06 run58.mat 134.7103 4 1 1 +1730468 1809411 78944 51188.845 55137.1316 127.9375 127.9375 1.432e-05 run58.mat 142.7604 4 1 1 +1834942 1915445 80504 56413.5712 60439.7015 127.9375 127.9375 2.1775e-05 run58.mat 154.718 4 1 1 +1941297 2021815 80519 61732.8802 65758.0965 127.9375 127.9375 0 run58.mat 163.027 4 1 1 +2047576 2128762 81187 67046.3614 71104.2456 127.9375 127.9375 2.9718e-06 run58.mat 175.1223 4 1 1 +2154191 2235042 80852 72376.1049 76419.0363 127.9375 127.9375 2.9679e-06 run58.mat 183.4523 4 1 1 +2260537 2343704 83168 77693.3486 81851.8027 127.9375 127.9375 2.8385e-06 run58.mat 195.6183 4 1 1 +2369014 2450170 81157 83115.6935 87175.9994 127.9375 127.9375 0 run58.mat 204.0676 4 1 1 +2475530 2558763 83234 88442.4342 92605.5395 127.9375 127.9375 0 run58.mat 212.6013 4 1 1 +2584075 2854646 270572 93872.9224 107403.5107 127.9375 127.9375 4.4154e-06 run58.mat 221 4 1 1 +2 323934 323933 150591.1524 166789.1965 127.9375 127.9375 2.9154e-05 run59.mat 202.579 4 1 1 +368375 458649 90275 169011.9744 173525.2568 127.9375 127.9375 6.0505e-06 run59.mat 5.6234 4 1 1 +489367 561330 71964 175060.1277 178658.5281 127.9375 127.9375 7.7662e-06 run59.mat 14.3986 4 1 1 +587053 660053 73001 179944.6805 183595.7072 127.9375 127.9375 7.4822e-06 run59.mat 21.4138 4 1 1 +685809 758734 72926 184882.0633 188529.2711 127.9375 127.9375 2.334e-05 run59.mat 32.6375 4 1 1 +784518 859229 74712 189817.8569 193553.5473 127.9375 127.9375 2.4993e-05 run59.mat 43.9735 4 1 1 +885031 959680 74650 194843.5325 198577.0936 127.9375 127.9375 7.8271e-06 run59.mat 55.408 4 1 1 +985469 1062124 76656 199864.4928 203699.8846 127.9375 127.9375 7.7884e-06 run59.mat 63.0024 4 1 1 +1087891 1164804 76914 204988.3623 208832.2886 127.9375 127.9375 7.2664e-06 run59.mat 74.6417 4 1 1 +1190310 1267110 76801 210105.9687 213946.6279 127.9375 127.9375 0 run59.mat 82.3536 4 1 1 +1292654 1369488 76835 215224.3493 219068.8434 127.9375 127.9375 2.1657e-05 run59.mat 93.9249 4 1 1 +1395036 1472159 77124 220342.5961 224200.8895 127.9375 127.9375 2.8658e-05 run59.mat 105.588 4 1 1 +1497702 1574274 76573 225476.9946 229306.5245 127.9375 127.9375 2.1731e-05 run59.mat 113.2853 4 1 1 +1600104 1679081 78978 230598.3925 234547.1061 127.9375 127.9375 1.4154e-05 run59.mat 125.0855 4 1 1 +1704625 1783056 78432 235823.819 239745.1384 127.9375 127.9375 2.2998e-05 run59.mat 133.0784 4 1 1 +1808874 1887761 78888 241036.5846 244979.4844 127.9375 127.9375 0 run59.mat 144.9202 4 1 1 +1913333 1994196 80864 246259.8193 250302.9047 127.9375 127.9375 2.1363e-05 run59.mat 153.0529 4 1 1 +2019694 2100201 80508 251577.7217 255602.3215 127.9375 127.9375 0 run59.mat 165.1469 4 1 1 +2126005 2207196 81192 256893.0945 260953.0502 127.9375 127.9375 2.9716e-06 run59.mat 173.51 4 1 1 +2232610 2313735 81126 262221.9412 266281.7239 127.9375 127.9375 0 run59.mat 185.5508 4 1 1 +2339174 2420137 80964 267550.107 271600.691 127.9375 127.9375 0 run59.mat 193.8729 4 1 1 +2445604 2528721 83118 272872.615 277028.7015 127.9375 127.9375 0 run59.mat 206.0151 4 1 1 +2554041 2637230 83190 278296.166 282455.0831 127.9375 127.9375 0 run59.mat 214.6557 4 1 1 +2662739 3095930 433192 283730.9913 305392.1907 127.9375 127.9375 2.2727e-06 run59.mat 221 4 1 1 +2 267952 267951 12731000.3158 12744389.3863 127.9375 127.9375 1.801e-05 run6.mat -1 -1 25068 158976 +369776 447841 78066 12749481.6918 12753383.8686 127.9375 127.9375 0 run6.mat -1 -1 209890 248923 +549655 627745 78091 12758474.2991 12762379.9064 127.9375 127.9375 1.9515e-05 run6.mat -1 -1 299833 338880 +729533 807763 78231 12767468.5419 12771381.7281 127.9375 127.9375 0 run6.mat -1 -1 389776 428893 +909575 987789 78215 12776471.8299 12780382.2283 127.9375 127.9375 0 run6.mat -1 -1 479801 518910 +1089574 1167678 78105 12785472.2763 12789377.7372 127.9375 127.9375 0 run6.mat -1 -1 569805 608858 +1269433 1347702 78270 12794464.5111 12798379.052 127.9375 127.9375 0 run6.mat -1 -1 659738 698874 +1449493 1527623 78131 12803466.0121 12807374.5939 127.9375 127.9375 3.9011e-05 run6.mat -1 -1 749772 788839 +1629373 1707676 78304 12812464.2499 12816377.0798 127.9375 127.9375 1.9462e-05 run6.mat -1 -1 839716 878869 +1809453 1887678 78226 12821465.7797 12825378.6512 127.9375 127.9375 1.9482e-05 run6.mat -1 -1 929760 968874 +1989472 2067427 77956 12830467.9296 12834365.1641 127.9375 127.9375 1.9549e-05 run6.mat -1 -1 1019773 1058753 +2169312 2247616 78305 12839458.6191 12843374.1637 127.9375 127.9375 0 run6.mat -1 -1 1109698 1148851 +2349391 2427523 78133 12848463.9015 12852372.0796 127.9375 127.9375 1.9505e-05 run6.mat -1 -1 1199741 1238808 +2529291 2607560 78270 12857460.2834 12861373.5965 127.9375 127.9375 0 run6.mat -1 -1 1289695 1328831 +2709331 2787600 78270 12866462.4229 12870375.6277 127.9375 127.9375 4.0564e-05 run6.mat -1 -1 1379718 1418855 +2889371 2967465 78095 12875461.8554 12879367.8857 127.9375 127.9375 3.9029e-05 run6.mat -1 -1 1469743 1508791 +3069230 3147348 78119 12884457.0065 12888363.1243 127.9375 127.9375 0 run6.mat -1 -1 1559676 1598737 +3249089 3327410 78322 12893449.0129 12897364.8724 127.9375 127.9375 3.8916e-05 run6.mat -1 -1 1649609 1688772 +3429170 3507226 78057 12902455.8302 12906357.7203 127.9375 127.9375 0 run6.mat -1 -1 1739654 1778683 +3609029 3687289 78261 12911447.1607 12915359.2538 127.9375 127.9375 2.1096e-05 run6.mat -1 -1 1829587 1868719 +3789070 3867161 78092 12920450.3829 12924354.2466 127.9375 127.9375 0 run6.mat -1 -1 1919612 1958659 +3968948 4047230 78283 12929444.2886 12933356.14 127.9375 127.9375 5.8402e-05 run6.mat -1 -1 2009555 2048697 +4149028 4227151 78124 12938448.3468 12942354.2856 127.9375 127.9375 1.9507e-05 run6.mat -1 -1 2099599 2138662 +4328928 4406998 78071 12947442.342 12951346.271 127.9375 127.9375 1.952e-05 run6.mat -1 -1 2189553 2228589 +4508747 4587022 78276 12956434.0139 12960347.3688 127.9375 127.9375 0 run6.mat -1 -1 2279466 2318605 +4688787 4766869 78083 12965436.445 12969338.8266 127.9375 127.9375 0 run6.mat -1 -1 2369490 2408533 +4868707 4946772 78066 12974430.7965 12978334.1101 127.9375 127.9375 1.9522e-05 run6.mat -1 -1 2459454 2498488 +5048566 5126825 78260 12983425.1455 12987337.0682 127.9375 127.9375 0 run6.mat -1 -1 2549388 2588518 +5228626 5306714 78089 12992427.5346 12996332.6545 127.9375 127.9375 3.9032e-05 run6.mat -1 -1 2639421 2678467 +5408506 5486670 78165 13001422.7704 13005329.8899 127.9375 127.9375 1.9497e-05 run6.mat -1 -1 2729365 2768449 +5588526 5666602 78077 13010424.3608 13014326.9782 127.9375 127.9375 2.2772e-05 run6.mat -1 -1 2819379 2858419 +5768405 5846590 78186 13019418.77 13023325.8448 127.9375 127.9375 1.9492e-05 run6.mat -1 -1 2909323 2948417 +5948466 6026584 78119 13028421.2584 13032327.8822 127.9375 127.9375 0 run6.mat -1 -1 2999357 3038418 +6128365 6206617 78253 13037415.3162 13041327.2135 127.9375 127.9375 0 run6.mat -1 -1 3089311 3128438 +6308405 6386703 78299 13046419.1688 13050332.2518 127.9375 127.9375 2.1085e-05 run6.mat -1 -1 3179335 3218485 +6488464 6566776 78313 13055419.2525 13059338.9323 127.9375 127.9375 5.838e-05 run6.mat -1 -1 3269368 3308526 +6668523 6746531 78009 13064422.8508 13068325.0139 127.9375 127.9375 0 run6.mat -1 -1 3359401 3398407 +6848425 6926502 78078 13073419.6178 13077323.0331 127.9375 127.9375 0 run6.mat -1 -1 3449357 3488396 +7028303 7106556 78254 13082414.1632 13086327.0163 127.9375 127.9375 1.9475e-05 run6.mat -1 -1 3539299 3578427 +7208344 7286652 78309 13091415.545 13095329.3489 127.9375 127.9375 3.8922e-05 run6.mat -1 -1 3629324 3668480 +7388402 7466738 78337 13100420.9213 13104337.574 127.9375 127.9375 1.9454e-05 run6.mat -1 -1 3719357 3758526 +7568523 7646606 78084 13109426.1789 13113328.3416 127.9375 127.9375 2.1143e-05 run6.mat -1 -1 3809421 3848465 +7748382 7826536 78155 13118417.5695 13122326.284 127.9375 127.9375 0 run6.mat -1 -1 3899355 3938434 +7928342 8006594 78253 13127416.7586 13131328.6459 127.9375 127.9375 0 run6.mat -1 -1 3989339 4028466 +8092936 8223766 130831 13135646.3852 13142184.3747 127.9375 127.9375 2.4267e-05 run6.mat -1 -1 4071639 4137024 +2 302837 302836 350356.4255 365503.339 127.9375 127.9375 9.6894e-06 run60.mat 212.7434 3.9625 9851 60339 +404897 464990 60094 370605.9879 373612.4033 127.9375 127.9375 0 run60.mat 1 3 77350 87366 +567051 626987 59937 378714.2307 381711.1863 127.9375 127.9375 0 run60.mat 1 3 104377 114367 +635315 697199 61885 382128.3458 385220.9304 127.9375 127.9375 4.4541e-05 run60.mat 3.4992 3 115754 126069 +799276 859257 59982 390325.4229 393323.5217 127.9375 127.9375 1.8212e-05 run60.mat 11 3 143082 153080 +899783 961662 61880 395350.929 398445.0814 127.9375 127.9375 1.0264e-05 run60.mat 12.6596 3 159834 170148 +1063716 1125722 62007 403547.5006 406649.4321 127.9375 127.9375 2.827e-05 run60.mat 21 3 187157 197493 +1138339 1200037 61699 407277.9329 410364.6749 127.9375 127.9375 8.8528e-06 run60.mat 22.4011 3 199595 209879 +1302095 1364101 62007 415465.5997 418567.7332 127.9375 127.9375 4.6297e-05 run60.mat 31 3 226889 237224 +1376748 1438455 61708 419200.0653 422286.8746 127.9375 127.9375 1.8938e-05 run60.mat 32.1218 3 239332 249614 +1540475 1602511 62037 427385.8233 430487.6459 127.9375 127.9375 0 run60.mat 41 3 266621 276961 +1615278 1678717 63440 431126.9875 434298.6332 127.9375 127.9375 0 run60.mat 42.1104 3 279089 289663 +1780694 1844637 63944 439397.277 442592.904 127.9375 127.9375 1.0131e-05 run60.mat 51 3 306659 317317 +1857447 1921018 63572 443236.2191 446412.4837 127.9375 127.9375 8.7914e-06 run60.mat 52.511 3 319452 330048 +2022994 2085096 62103 451512.3989 454617.0465 127.9375 127.9375 0 run60.mat 61 3 347044 357395 +2097865 2161243 63379 455255.6968 458424.7762 127.9375 127.9375 9.219e-06 run60.mat 62.5508 3 359523 370087 +2263234 2327212 63979 463526.3418 466722.3554 127.9375 127.9375 1.0126e-05 run60.mat 71 3 387086 397750 +2340003 2403386 63384 467363.2031 470532.7165 127.9375 127.9375 8.8174e-06 run60.mat 72.854 3 399882 410446 +2505373 2569517 64145 475631.0065 478839.2119 127.9375 127.9375 0 run60.mat 81 3 427445 438135 +2582284 2645679 63396 479476.8867 482647.835 127.9375 127.9375 1.0219e-05 run60.mat 83.2119 3 430264 430264 +2747673 2811567 63895 487746.4455 490941.9292 127.9375 127.9375 8.7469e-06 run60.mat 91 3 430264 430264 +2824373 2887739 63367 491582.3567 494750.0722 127.9375 127.9375 8.6198e-06 run60.mat 93.579 3 430264 430264 +2989713 3051831 62119 499849.2098 502954.2008 127.9375 127.9375 9.611e-06 run60.mat 101 3 430264 430264 +3064610 3128037 63428 503593.3522 506765.7022 127.9375 127.9375 1.9426e-05 run60.mat 103.6141 3 430264 430264 +3229986 3294130 64145 511864.1981 515070.3358 127.9375 127.9375 8.5152e-06 run60.mat 111 3 430264 430264 +3306940 3370138 63199 515709.5697 518870.8881 127.9375 127.9375 8.6427e-06 run60.mat 113.9623 3 430264 430264 +3472129 3536278 64150 523971.1619 527176.958 127.9375 127.9375 0 run60.mat 121 3 430264 430264 +3549097 3612461 63365 527818.8577 530988.1565 127.9375 127.9375 1.0224e-05 run60.mat 124.318 3 430264 430264 +3714412 3778387 63976 536082.9262 539283.569 127.9375 127.9375 1.7671e-05 run60.mat 131 3 430264 430264 +3791252 3854567 63316 539927.3947 543092.6784 127.9375 127.9375 1.7253e-05 run60.mat 134.6563 3 430264 430264 +3956530 4020675 64146 548190.6693 551397.2265 127.9375 127.9375 0 run60.mat 141 3 430264 430264 +4033556 4096834 63279 552041.71 555204.7867 127.9375 127.9375 0 run60.mat 141 3 430264 430264 +4198771 4262819 64049 560303.4009 563506.2497 127.9375 127.9375 0 run60.mat 151 3 430264 430264 +4275695 4341025 65331 564149.7149 567415.9201 127.9375 127.9375 2.6053e-05 run60.mat 151 3 430264 430264 +4442971 4506938 63968 572514.0708 575711.8847 127.9375 127.9375 1.807e-05 run60.mat 161 3 430264 430264 +4519812 4584933 65122 576354.8482 579611.6462 127.9375 127.9375 3.4135e-05 run60.mat 161.5057 3 430264 430264 +4686891 4751034 64144 584708.5854 587915.3224 127.9375 127.9375 8.5153e-06 run60.mat 171 3 430264 430264 +4763920 4829064 65145 588560.9163 591817.9528 127.9375 127.9375 8.9691e-06 run60.mat 172.152 3 430264 430264 +4931026 4995196 64171 596918.2886 600125.2635 127.9375 127.9375 8.7093e-06 run60.mat 181 3 430264 430264 +5008080 5073282 65203 600769.6297 604031.3461 127.9375 127.9375 3.5845e-05 run60.mat 182.8193 3 430264 430264 +5175209 5241287 66079 609129.1907 612431.5927 127.9375 127.9375 4.1906e-05 run60.mat 191 3 430264 430264 +5254205 5319507 65303 613078.1334 616343.8128 127.9375 127.9375 8.3642e-06 run60.mat 193.7728 3 430264 430264 +5421429 5485611 64183 621437.5124 624650.2386 127.9375 127.9375 1.1479e-05 run60.mat 201 3 430264 430264 +5498546 5563865 65320 625293.9702 628562.1382 127.9375 127.9375 1.6918e-05 run60.mat 204.4393 3 430264 430264 +5665749 5731814 66066 633653.8245 636958.0119 127.9375 127.9375 8.4595e-06 run60.mat 211 3 430264 430264 +5744759 5810097 65339 637606.3435 640874.0946 127.9375 127.9375 0 run60.mat 211 3 430264 430264 +5911949 5978013 66065 645964.5543 649268.313 127.9375 127.9375 1.6727e-05 run60.mat 221 3 430264 430264 +5990931 6055711 64781 649915.152 653150.9918 127.9375 127.9375 0 run60.mat 221 3 430264 430264 +2 281310 281309 13224687.6588 13238745.6509 127.9375 127.9375 1.6704e-05 run7.mat -1 -1 17434 158029 +383092 461402 78311 13243835.7871 13247752.6289 127.9375 127.9375 1.9461e-05 run7.mat -1 -1 208923 248079 +563171 641193 78023 13252841.5611 13256741.4021 127.9375 127.9375 4.0692e-05 run7.mat -1 -1 298966 337979 +743011 821333 78323 13261833.9977 13265747.9452 127.9375 127.9375 1.9458e-05 run7.mat -1 -1 388890 428052 +923111 1001346 78236 13270838.3945 13274749.1174 127.9375 127.9375 1.9479e-05 run7.mat -1 -1 478944 518063 +1103130 1181204 78075 13279839.1775 13283742.9746 127.9375 127.9375 3.9039e-05 run7.mat -1 -1 568957 607996 +1282971 1361282 78312 13288832.1953 13292744.9141 127.9375 127.9375 0 run7.mat -1 -1 658882 698039 +1463070 1541106 78037 13297835.4902 13301739.2454 127.9375 127.9375 0 run7.mat -1 -1 748935 787955 +1642889 1721096 78208 13306826.8571 13310739.2289 127.9375 127.9375 0 run7.mat -1 -1 838849 877954 +1822989 1900901 77913 13315833.079 13319727.6037 127.9375 127.9375 1.956e-05 run7.mat -1 -1 928902 967860 +2002789 2081046 78258 13324822.0151 13328736.5814 127.9375 127.9375 3.8947e-05 run7.mat -1 -1 1018807 1057937 +2182848 2260907 78060 13333824.311 13337728.9273 127.9375 127.9375 1.9523e-05 run7.mat -1 -1 1108840 1147871 +2362689 2440832 78144 13342818.4575 13346724.8169 127.9375 127.9375 4.0629e-05 run7.mat -1 -1 1198764 1237838 +2542588 2620702 78115 13351812.9835 13355718.4995 127.9375 127.9375 1.9509e-05 run7.mat -1 -1 1288718 1327777 +2722468 2800687 78220 13360807.1144 13364717.2878 127.9375 127.9375 1.9483e-05 run7.mat -1 -1 1378662 1417773 +2902488 2980651 78164 13369808.9853 13373717.1956 127.9375 127.9375 3.8994e-05 run7.mat -1 -1 1468676 1507759 +3082408 3160477 78070 13378804.0885 13382707.9367 127.9375 127.9375 0 run7.mat -1 -1 1558640 1597676 +3262267 3340329 78063 13387796.3542 13391699.0224 127.9375 127.9375 0 run7.mat -1 -1 1648573 1687606 +3442087 3520277 78191 13396791.4317 13400699.7403 127.9375 127.9375 3.8981e-05 run7.mat -1 -1 1738487 1777584 +3622167 3700209 78043 13405793.1179 13409694.7657 127.9375 127.9375 0 run7.mat -1 -1 1828531 1867554 +3801985 3880100 78116 13414785.7172 13418691.0885 127.9375 127.9375 6.0153e-05 run7.mat -1 -1 1918444 1957503 +3981826 4059918 78093 13423777.7099 13427681.9184 127.9375 127.9375 3.903e-05 run7.mat -1 -1 2008369 2047416 +4161705 4239891 78187 13432769.7628 13436678.2978 127.9375 127.9375 3.8983e-05 run7.mat -1 -1 2098312 2137406 +4341784 4419870 78087 13441773.6812 13445678.8321 127.9375 127.9375 3.9033e-05 run7.mat -1 -1 2188355 2227400 +4521644 4599667 78024 13450767.6045 13454669.3144 127.9375 127.9375 2.2787e-05 run7.mat -1 -1 2278289 2317302 +4701484 4779589 78106 13459759.9804 13463665.4385 127.9375 127.9375 0 run7.mat -1 -1 2368213 2407267 +4881364 4959463 78100 13468753.3363 13472658.7225 127.9375 127.9375 0 run7.mat -1 -1 2458157 2497208 +5061244 5139348 78105 13477747.8443 13481653.7241 127.9375 127.9375 1.9512e-05 run7.mat -1 -1 2548101 2587155 +5241123 5319083 77961 13486743.6991 13490639.8477 127.9375 127.9375 0 run7.mat -1 -1 2638044 2677026 +5420983 5499099 78117 13495735.9306 13499641.8221 127.9375 127.9375 6.3403e-05 run7.mat -1 -1 2727978 2767038 +5600983 5679079 78097 13504736.6621 13508639.5 127.9375 127.9375 0 run7.mat -1 -1 2817982 2857032 +5780862 5860757 79896 13513730.0327 13517722.9473 127.9375 127.9375 6.0402e-05 run7.mat -1 -1 2907926 2947875 +5962582 6040652 78071 13522815.8351 13526719.4117 127.9375 127.9375 1.952e-05 run7.mat -1 -1 2998790 3037827 +6142462 6220535 78074 13531811.4696 13535714.0695 127.9375 127.9375 0 run7.mat -1 -1 3088733 3127772 +6322321 6400572 78252 13540803.1812 13544716.8404 127.9375 127.9375 1.9475e-05 run7.mat -1 -1 3178667 3217795 +6502321 6580424 78104 13549802.798 13553710.9284 127.9375 127.9375 3.9024e-05 run7.mat -1 -1 3268671 3307725 +6682182 6760416 78235 13558796.9604 13562708.7626 127.9375 127.9375 1.9479e-05 run7.mat -1 -1 3358605 3397724 +6862221 6940181 77961 13567799.2741 13571696.4521 127.9375 127.9375 1.9548e-05 run7.mat -1 -1 3448629 3487611 +7042081 7120298 78218 13576791.0222 13580704.544 127.9375 127.9375 3.8967e-05 run7.mat -1 -1 3538563 3577673 +7222180 7300178 77999 13585796.9115 13589696.3511 127.9375 127.9375 2.1166e-05 run7.mat -1 -1 3628616 3667617 +7401958 7480196 78239 13594786.9522 13598697.944 127.9375 127.9375 1.9478e-05 run7.mat -1 -1 3718510 3757630 +7582040 7660341 78302 13603789.9345 13607707.7074 127.9375 127.9375 0 run7.mat -1 -1 3808554 3847707 +7762119 7840205 78087 13612795.3342 13616696.9044 127.9375 127.9375 6.0175e-05 run7.mat -1 -1 3898598 3937643 +7941999 8020077 78079 13621789.624 13625690.7233 127.9375 127.9375 0 run7.mat -1 -1 3988541 4027582 +8105975 8452605 346631 13629987.0714 13647315.9836 127.9375 127.9375 1.8319e-05 run7.mat -1 -1 4070533 4243836 +2 298433 298432 13897557.0825 13912480.3195 127.9375 127.9375 0 run8.mat -1 -1 19914 169148 +400313 478603 78291 13917573.5408 13921489.3276 127.9375 127.9375 0 run8.mat -1 -1 220090 259237 +580373 658499 78127 13926576.1666 13930483.0256 127.9375 127.9375 1.9506e-05 run8.mat -1 -1 310124 349189 +760272 838551 78280 13935571.5271 13939485.2282 127.9375 127.9375 0 run8.mat -1 -1 400078 439219 +940332 1018590 78259 13944573.8454 13948487.7905 127.9375 127.9375 5.842e-05 run8.mat -1 -1 490112 529242 +1120411 1198683 78273 13953577.6569 13957492.9259 127.9375 127.9375 0 run8.mat -1 -1 580155 619293 +1300511 1378884 78374 13962582.9738 13966504.4064 127.9375 127.9375 0 run8.mat -1 -1 670209 709397 +1480650 1558942 78293 13971592.9948 13975507.5785 127.9375 127.9375 0 run8.mat -1 -1 760282 799430 +1660711 1738753 78043 13980593.437 13984496.2872 127.9375 127.9375 0 run8.mat -1 -1 850317 889340 +1840650 1918989 78340 13989592.2739 13993509.0149 127.9375 127.9375 3.8907e-05 run8.mat -1 -1 940290 979461 +2020750 2099078 78329 13998597.6733 14002513.0091 127.9375 127.9375 0 run8.mat -1 -1 1030344 1069510 +2200850 2278837 77988 14007602.3784 14011500.801 127.9375 127.9375 0 run8.mat -1 -1 1120398 1159393 +2380729 2459026 78298 14016597.1409 14020512.597 127.9375 127.9375 0 run8.mat -1 -1 1210342 1249492 +2560829 2639382 78554 14025601.8085 14029527.7875 127.9375 127.9375 0 run8.mat -1 -1 1300396 1339674 +2741128 2819386 78259 14034615.7851 14038530.7965 127.9375 127.9375 0 run8.mat -1 -1 1390549 1429680 +2921168 2999478 78311 14043618.8499 14047532.925 127.9375 127.9375 0 run8.mat -1 -1 1480573 1519729 +3101268 3179602 78335 14052624.0359 14056541.3444 127.9375 127.9375 1.9455e-05 run8.mat -1 -1 1570627 1609796 +3281387 3361500 80114 14061629.767 14065635.4584 127.9375 127.9375 3.8045e-05 run8.mat -1 -1 1660690 1700749 +3463327 3541605 78279 14070728.7009 14074639.7299 127.9375 127.9375 3.8937e-05 run8.mat -1 -1 1751664 1790805 +3643407 3721697 78291 14079732.149 14083646.6955 127.9375 127.9375 1.9465e-05 run8.mat -1 -1 1841709 1880855 +3823447 3901773 78327 14088733.3914 14092651.7 127.9375 127.9375 1.9457e-05 run8.mat -1 -1 1931732 1970897 +4003547 4081649 78103 14097739.2419 14101644.9163 127.9375 127.9375 1.9512e-05 run8.mat -1 -1 2021786 2060839 +4183406 4261742 78337 14106733.1592 14110648.6781 127.9375 127.9375 0 run8.mat -1 -1 2111719 2150890 +4363506 4441840 78335 14115736.6309 14119654.2354 127.9375 127.9375 0 run8.mat -1 -1 2201773 2240942 +4543585 4621854 78270 14124740.1874 14128656.3318 127.9375 127.9375 0 run8.mat -1 -1 2291817 2330953 +4723624 4801888 78265 14133744.8393 14137657.3389 127.9375 127.9375 2.1094e-05 run8.mat -1 -1 2381841 2420974 +4903684 4982028 78345 14142745.4777 14146665.0137 127.9375 127.9375 1.9452e-05 run8.mat -1 -1 2471874 2511048 +5083805 5162134 78330 14151750.845 14155668.48 127.9375 127.9375 0 run8.mat -1 -1 2561939 2601105 +5263925 5342106 78182 14160757.8387 14164668.343 127.9375 127.9375 0 run8.mat -1 -1 2652003 2691095 +5444004 5522270 78267 14169762.8736 14173678.9361 127.9375 127.9375 0 run8.mat -1 -1 2742046 2781181 +5624043 5702226 78184 14178764.3585 14182672.9098 127.9375 127.9375 4.0608e-05 run8.mat -1 -1 2832069 2871163 +5804124 5882226 78103 14187770.2745 14191674.3503 127.9375 127.9375 3.9025e-05 run8.mat -1 -1 2922114 2961167 +5984023 6062311 78289 14196764.7905 14200677.2167 127.9375 127.9375 0 run8.mat -1 -1 3012067 3051213 +6164122 6242211 78090 14205769.6185 14209676.4229 127.9375 127.9375 2.1142e-05 run8.mat -1 -1 3102121 3141167 +6344002 6422134 78133 14214761.297 14218670.8359 127.9375 127.9375 0 run8.mat -1 -1 3192065 3231133 +6524042 6602313 78272 14223765.9254 14227679.2729 127.9375 127.9375 1.947e-05 run8.mat -1 -1 3282089 3321226 +6704082 6782420 78339 14232767.1369 14236684.5854 127.9375 127.9375 0 run8.mat -1 -1 3372113 3411284 +6884202 6962311 78110 14241773.9432 14245679.745 127.9375 127.9375 0 run8.mat -1 -1 3462177 3501233 +7064081 7142371 78291 14250768.8531 14254683.2556 127.9375 127.9375 1.9465e-05 run8.mat -1 -1 3552120 3591267 +7244181 7322205 78025 14259774.1727 14263673.4108 127.9375 127.9375 2.4414e-05 run8.mat -1 -1 3642174 3681188 +7424001 7502248 78248 14268762.5705 14272674.8645 127.9375 127.9375 4.0575e-05 run8.mat -1 -1 3732088 3771213 +7604060 7682333 78274 14277766.948 14281682.5 127.9375 127.9375 1.947e-05 run8.mat -1 -1 3822121 3861260 +7784120 7862190 78071 14286771.4474 14290673.7976 127.9375 127.9375 0 run8.mat -1 -1 3912156 3951192 +7963979 8042132 78154 14295764.7888 14299670.732 127.9375 127.9375 0 run8.mat -1 -1 4002089 4041167 +8128726 8220641 91916 14304002.3001 14308597.1164 127.9375 127.9375 5.2503e-05 run8.mat -1 -1 4084466 4130419 +2 288688 288687 14518069.4157 14532505.0274 127.9375 127.9375 0 run9.mat -1 -1 20441 164790 +390442 468756 78315 14537594.3876 14541507.1982 127.9375 127.9375 0 run9.mat -1 -1 215669 254828 +570522 648687 78166 14546597.8875 14550504.8453 127.9375 127.9375 6.1739e-05 run9.mat -1 -1 305713 344797 +750581 828690 78110 14555601.1784 14559503.6161 127.9375 127.9375 1.9511e-05 run9.mat -1 -1 395747 434803 +930481 1008670 78190 14564594.4449 14568503.92 127.9375 127.9375 3.8981e-05 run9.mat -1 -1 485700 524797 +1110520 1188835 78316 14573597.5929 14577514.5396 127.9375 127.9375 2.1081e-05 run9.mat -1 -1 575724 614883 +1290640 1368648 78009 14582602.7277 14586504.3479 127.9375 127.9375 1.9536e-05 run9.mat -1 -1 665788 704793 +1470500 1548779 78280 14591597.6987 14595512.029 127.9375 127.9375 0 run9.mat -1 -1 755722 794863 +1650560 1728698 78139 14600601.877 14604508.0153 127.9375 127.9375 2.1129e-05 run9.mat -1 -1 845756 884826 +1830479 1908605 78127 14609596.8871 14613503.671 127.9375 127.9375 3.9013e-05 run9.mat -1 -1 935719 974784 +2010499 2088553 78055 14618598.727 14622499.7591 127.9375 127.9375 0 run9.mat -1 -1 1025733 1064762 +2190379 2268626 78248 14627590.1302 14631504.0968 127.9375 127.9375 2.1099e-05 run9.mat -1 -1 1115677 1154802 +2370418 2448481 78064 14636593.0603 14640496.7114 127.9375 127.9375 0 run9.mat -1 -1 1205701 1244734 +2550278 2628613 78336 14645588.4407 14649504.6945 127.9375 127.9375 4.053e-05 run9.mat -1 -1 1295634 1334803 +2730377 2808325 77949 14654591.2567 14658488.2241 127.9375 127.9375 0 run9.mat -1 -1 1385688 1424664 +2910217 2988535 78319 14663584.5862 14667499.9857 127.9375 127.9375 1.9459e-05 run9.mat -1 -1 1475612 1514773 +3090297 3168448 78152 14672587.0866 14676496.6237 127.9375 127.9375 0 run9.mat -1 -1 1565656 1604733 +3270217 3348354 78138 14681582.3915 14685493.2729 127.9375 127.9375 1.9504e-05 run9.mat -1 -1 1655620 1694690 +3450138 3528209 78072 14690580.5787 14694483.7175 127.9375 127.9375 1.952e-05 run9.mat -1 -1 1745584 1784621 +3629997 3708181 78185 14699574.1008 14703481.6495 127.9375 127.9375 0 run9.mat -1 -1 1835518 1874611 +3809935 3888051 78117 14708570.1639 14712477.0139 127.9375 127.9375 0 run9.mat -1 -1 1925491 1964550 +3989955 4067948 77994 14717572.5689 14721470.2641 127.9375 127.9375 0 run9.mat -1 -1 2015504 2054503 +4169835 4248092 78258 14726564.4215 14730478.078 127.9375 127.9375 0 run9.mat -1 -1 2105448 2144579 +4349895 4428012 78118 14735567.7291 14739474.6193 127.9375 127.9375 0 run9.mat -1 -1 2195483 2234543 +4529794 4608027 78234 14744563.2463 14748477.2566 127.9375 127.9375 0 run9.mat -1 -1 2285436 2324554 +4709814 4788124 78311 14753565.2483 14757481.8603 127.9375 127.9375 3.8921e-05 run9.mat -1 -1 2375450 2414606 +4889914 4967989 78076 14762570.5623 14766474.5176 127.9375 127.9375 1.9519e-05 run9.mat -1 -1 2465504 2504543 +5069793 5147978 78186 14771563.4448 14775475.0309 127.9375 127.9375 2.1116e-05 run9.mat -1 -1 2555447 2594541 +5249773 5327890 78118 14780563.4928 14784469.6906 127.9375 127.9375 0 run9.mat -1 -1 2645441 2684502 +5429653 5507692 78040 14789559.7038 14793461.729 127.9375 127.9375 2.1155e-05 run9.mat -1 -1 2735385 2774406 +5609492 5687714 78223 14798549.3148 14802461.393 127.9375 127.9375 6.0071e-05 run9.mat -1 -1 2825309 2864421 +5789592 5867618 78027 14807554.5936 14811455.7775 127.9375 127.9375 0 run9.mat -1 -1 2915362 2954377 +5969492 6047803 78312 14816548.6951 14820465.8321 127.9375 127.9375 1.946e-05 run9.mat -1 -1 3005316 3044474 +6149612 6227926 78315 14825558.6437 14829472.5793 127.9375 127.9375 0 run9.mat -1 -1 3095380 3134539 +6329691 6407864 78174 14834561.6168 14838469.4862 127.9375 127.9375 0 run9.mat -1 -1 3185424 3224512 +6509751 6587979 78229 14843564.4805 14847475.537 127.9375 127.9375 3.8962e-05 run9.mat -1 -1 3275458 3314573 +6689870 6768184 78315 14852569.8972 14856486.506 127.9375 127.9375 0 run9.mat -1 -1 3365521 3404680 +6869971 6948039 78069 14861573.1196 14865480.5417 127.9375 127.9375 0 run9.mat -1 -1 3455576 3494611 +7049811 7127971 78161 14870568.9635 14874477.4872 127.9375 127.9375 0 run9.mat -1 -1 3545500 3584581 +7229869 7308133 78265 14879571.6996 14883485.0308 127.9375 127.9375 1.9472e-05 run9.mat -1 -1 3635533 3674666 +7409929 7488077 78149 14888575.0784 14892481.9097 127.9375 127.9375 1.9501e-05 run9.mat -1 -1 3725566 3764642 +7589849 7668085 78237 14897570.6245 14901482.3681 127.9375 127.9375 1.9479e-05 run9.mat -1 -1 3815531 3854650 +7769909 7847980 78072 14906572.8026 14910474.7503 127.9375 127.9375 6.5066e-05 run9.mat -1 -1 3905564 3944602 +7949789 8027938 78150 14915566.2711 14919476.4762 127.9375 127.9375 0 run9.mat -1 -1 3995508 4034584 +8113932 8492793 378862 14923773.4279 14942716.7136 127.9375 127.9375 1.2067e-05 run9.mat -1 -1 4077583 4267010 diff --git a/Scripts_20180425/Scripts_20180425/read_bpm.c b/Scripts_20180425/Scripts_20180425/read_bpm.c new file mode 100644 index 0000000..0ebf2ff --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/read_bpm.c @@ -0,0 +1,4 @@ +#include "read_bpm.h" +void read_bpm(){ + +} diff --git a/Scripts_20180425/Scripts_20180425/read_bpm.h b/Scripts_20180425/Scripts_20180425/read_bpm.h new file mode 100644 index 0000000..a6ef8af --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/read_bpm.h @@ -0,0 +1,2 @@ +void read_bpm(); + diff --git a/Scripts_20180425/Scripts_20180425/run41_offsetcor.txt b/Scripts_20180425/Scripts_20180425/run41_offsetcor.txt new file mode 100644 index 0000000..ee4cfea --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/run41_offsetcor.txt @@ -0,0 +1,30 @@ +-218.167 -194.002 -140.646 -75.2991 +-67.3555 -77.3628 -93.6049 -20.9276 +-553.543 -684.434 -348.14 -214.802 +-360.921 -377.561 -263.443 -77.6797 +-526.259 -614.737 -408.842 -248.319 +-644.821 -719.405 -412.63 -205.623 +-661.609 -809.545 -455.108 -252.903 +-435.597 -522.672 -411.59 -84.6011 +-253.72 -226.285 -180.647 22.6189 +-472.177 -561.795 -276.614 -85.7482 +-357.245 -424.352 -234.934 40.1447 +-460.682 -539.896 -279.477 -10.6507 +15.3619 13.046 0.88509 226.166 +49.5296 52.1076 16.0406 243.855 +-490.044 -550.913 -398.695 -15.3652 +-303.71 -335.655 -257.272 96.7334 +340.459 424.263 171.525 445.012 +828.337 984.52 519.619 652.426 +-388.902 -435.523 -244.325 78.7485 +-461.016 -543.309 -307.874 18.4046 +-336.787 -392.552 -195.698 100.01 +0 0 0 0 +0 0 0 0 +0 0 0 0 +0 0 0 0 +0 0 0 0 +0 0 0 0 +0 0 0 0 +0 0 0 0 +0 0 0 0 diff --git a/Scripts_20180425/Scripts_20180425/run41_offsetcor_2.txt b/Scripts_20180425/Scripts_20180425/run41_offsetcor_2.txt new file mode 100644 index 0000000..dff05bf --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/run41_offsetcor_2.txt @@ -0,0 +1,30 @@ +0.934587 -16.5695 -5.5969 11.3143 +1.63546 -3.60937 0.300596 -0.39599 +-10.7904 32.3609 -1.24054 -19.3769 +12.4481 34.297 -27.1212 -13.7738 +-10.5226 5.64627 13.3877 -4.63387 +12.3633 1.56473 6.4829 29.5066 +3.33344 -45.8905 18.7726 11.3377 +2.66896 -8.64971 19.8809 -5.59277 +14.2329 -13.392 -10.7488 -0.419089 +13.224 6.2408 -12.9753 -2.38909 +-1.53645 -10.8866 -2.5578 -8.10658 +3.50311 1.33873 -8.07407 -3.04499 +0.603294 2.31226 0.827738 -7.93425 +-4.86394 7.19561 0.865334 5.36959 +-2.08893 -3.49912 30.9452 -7.96375 +7.20633 -1.28265 4.75495 8.85736 +25.1335 28.4375 53.6191 27.7857 +243.575 286.586 173.384 126.117 +4.79556 -10.7773 3.9682 10.7819 +0.63906 -15.43 0.918258 1.73947 +-8.80039 -4.89504 -30.9966 10.0391 +0 0 0 0 +0 0 0 0 +0 0 0 0 +0 0 0 0 +0 0 0 0 +0 0 0 0 +0 0 0 0 +0 0 0 0 +0 0 0 0 diff --git a/Scripts_20180425/Scripts_20180425/runJob.sh b/Scripts_20180425/Scripts_20180425/runJob.sh new file mode 100755 index 0000000..2f3d2d5 --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/runJob.sh @@ -0,0 +1,26 @@ +HOME=/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20180425 +mkdir -p $HOME/jobs #make the directory if it doesn't exist +JOB_HOME=$HOME/jobs +rm -rf $JOB_HOME/* #clean up the directory if it does exist +cd $JOB_HOME +for i in {31..60} #199 +do + touch $JOB_HOME/runjob$i.sh + echo "#!/bin/bash" >> $JOB_HOME/runjob$i.sh + echo ". /local/env.sh" >> $JOB_HOME/runjob$i.sh + echo ". /cvmfs/lhcb.cern.ch/lib/lhcb/LBSCRIPTS/LBSCRIPTS_v9r2p2/InstallArea/scripts/LbLogin.sh -c x86_64-slc6-gcc49-opt" >> $JOB_HOME/runjob$i.sh +# echo ". SetupProject.sh Geant4" >> $JOB_HOME/runjob$i.sh + + echo "source /cvmfs/lhcb.cern.ch/lib/lcg/releases/gcc/4.9.3/x86_64-slc6/setup.sh" >> $JOB_HOME/runjob$i.sh + #point to the correct CERN ROOT + echo "source /cvmfs/lhcb.cern.ch/lib/lcg/releases/LCG_84/ROOT/6.06.02/x86_64-slc6-gcc49-opt/bin/thisroot.sh " >> $JOB_HOME/runjob$i.sh + #include the gsl libraries + echo "export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/work/leverington/gsl-2.4/lib " >> $JOB_HOME/runjob$i.sh + + #execute this command + echo "/work/leverington/beamprofilemonitor/hitdata/Scripts/Scripts_20180425/convert_clean /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ run$i /work/leverington/beamprofilemonitor/hitdata/HIT_2018-04-25/ethercat/with_timestamp/run$i.csv" >> $JOB_HOME/runjob$i.sh + + + qsub -l os=slc6 -l ujl=20 -cwd -j yes $JOB_HOME/runjob$i.sh +sleep 1 +done diff --git a/Scripts_20180425/Scripts_20180425/saturation_carbon0mm5.txt b/Scripts_20180425/Scripts_20180425/saturation_carbon0mm5.txt new file mode 100644 index 0000000..9d49743 --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/saturation_carbon0mm5.txt @@ -0,0 +1,23 @@ +0.407931 1.36209 +0.448122 1.49633 +0.47902 1.59292 +0.504 1.63279 +0.524972 1.6976 +0.543077 1.71537 +0.559042 1.74439 +0.57333 1.79363 +0.586255 1.81871 +0.598062 1.83225 +0.608918 1.83305 +0.618952 1.88216 +0.628293 1.89395 +0.63704 1.91505 +0.645287 1.93775 +0.653116 1.91768 +0.660571 1.96707 +0.66769 1.98071 +0.674469 1.98587 +0.680944 1.95927 +0.689677 2.02167 +0.698001 2.04147 +0.705808 2.02705 diff --git a/Scripts_20180425/Scripts_20180425/saturation_carbon0mm5_MPVcorr.txt b/Scripts_20180425/Scripts_20180425/saturation_carbon0mm5_MPVcorr.txt new file mode 100644 index 0000000..d163f93 --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/saturation_carbon0mm5_MPVcorr.txt @@ -0,0 +1,23 @@ +0.407931 1.37975 +0.448122 1.52515 +0.47902 1.63149 +0.504 1.68125 +0.524972 1.75601 +0.543077 1.78222 +0.559042 1.81616 +0.57333 1.87599 +0.586255 1.90921 +0.598062 1.92668 +0.608918 1.93431 +0.618952 1.9897 +0.628293 2.00668 +0.63704 2.03365 +0.645287 2.06098 +0.653116 2.04096 +0.660571 2.09748 +0.66769 2.11689 +0.674469 2.12447 +0.680944 2.09839 +0.689677 2.16876 +0.698001 2.1945 +0.705808 2.17567 diff --git a/Scripts_20180425/Scripts_20180425/saturation_carbon0mm5_MPVcorr_run31.txt b/Scripts_20180425/Scripts_20180425/saturation_carbon0mm5_MPVcorr_run31.txt new file mode 100644 index 0000000..f9a1590 --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/saturation_carbon0mm5_MPVcorr_run31.txt @@ -0,0 +1,23 @@ +0.407931 1.1637 +0.448122 1.31732 +0.47902 1.38601 +0.504 1.44403 +0.524972 1.49577 +0.543077 1.54722 +0.559042 1.55303 +0.57333 1.62067 +0.586255 1.63358 +0.598062 1.63117 +0.608918 1.65949 +0.618952 1.6749 +0.628293 1.72948 +0.63704 1.73834 +0.645287 1.77529 +0.653116 1.75661 +0.660571 1.78831 +0.66769 1.81972 +0.674469 1.82563 +0.680944 1.84333 +0.689677 1.83739 +0.698001 1.8817 +0.705808 1.87224 diff --git a/Scripts_20180425/Scripts_20180425/saturation_carbon0mm5_MPVcorr_run37.txt b/Scripts_20180425/Scripts_20180425/saturation_carbon0mm5_MPVcorr_run37.txt new file mode 100644 index 0000000..8261f0b --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/saturation_carbon0mm5_MPVcorr_run37.txt @@ -0,0 +1,23 @@ +0.407931 1.17694 +0.448122 1.30837 +0.47902 1.40325 +0.504 1.45538 +0.524972 1.5169 +0.543077 1.52986 +0.559042 1.55898 +0.57333 1.61751 +0.586255 1.63525 +0.598062 1.65702 +0.608918 1.66789 +0.618952 1.70891 +0.628293 1.72722 +0.63704 1.75025 +0.645287 1.77156 +0.653116 1.75664 +0.660571 1.80473 +0.66769 1.81824 +0.674469 1.82444 +0.680944 1.80435 +0.689677 1.86752 +0.698001 1.88244 +0.705808 1.86973 diff --git a/Scripts_20180425/Scripts_20180425/saturation_carbon0mm5_run31.txt b/Scripts_20180425/Scripts_20180425/saturation_carbon0mm5_run31.txt new file mode 100644 index 0000000..9b3618c --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/saturation_carbon0mm5_run31.txt @@ -0,0 +1,23 @@ +0.407931 1.14881 +0.448122 1.29243 +0.47902 1.35325 +0.504 1.4024 +0.524972 1.44602 +0.543077 1.48918 +0.559042 1.49166 +0.57333 1.54952 +0.586255 1.55615 +0.598062 1.55122 +0.608918 1.57262 +0.618952 1.58438 +0.628293 1.63232 +0.63704 1.63696 +0.645287 1.66914 +0.653116 1.65051 +0.660571 1.67713 +0.66769 1.70266 +0.674469 1.70652 +0.680944 1.72112 +0.689677 1.71278 +0.698001 1.75048 +0.705808 1.74435 diff --git a/Scripts_20180425/Scripts_20180425/saturation_carbon0mm5_run37.txt b/Scripts_20180425/Scripts_20180425/saturation_carbon0mm5_run37.txt new file mode 100644 index 0000000..05ed603 --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/saturation_carbon0mm5_run37.txt @@ -0,0 +1,23 @@ +0.407931 1.16188 +0.448122 1.28365 +0.47902 1.37008 +0.504 1.41343 +0.524972 1.46645 +0.543077 1.47247 +0.559042 1.49738 +0.57333 1.5465 +0.586255 1.55774 +0.598062 1.57581 +0.608918 1.58058 +0.618952 1.61655 +0.628293 1.63019 +0.63704 1.64818 +0.645287 1.66563 +0.653116 1.65053 +0.660571 1.69252 +0.66769 1.70127 +0.674469 1.70541 +0.680944 1.68472 +0.689677 1.74086 +0.698001 1.75118 +0.705808 1.742 diff --git a/Scripts_20180425/Scripts_20180425/saturation_helium0mm5.txt b/Scripts_20180425/Scripts_20180425/saturation_helium0mm5.txt new file mode 100644 index 0000000..00e4ddd --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/saturation_helium0mm5.txt @@ -0,0 +1,23 @@ +0.316662 2.21464 +0.347272 2.21477 +0.371222 2.3342 +0.391037 2.3265 +0.408018 2.3557 +0.422922 2.37263 +0.436235 2.36686 +0.448275 2.38007 +0.459299 2.3976 +0.469441 2.37891 +0.478846 2.35576 +0.487649 2.37986 +0.495887 2.38209 +0.503656 2.37453 +0.510991 2.35952 +0.517959 2.37361 +0.524572 2.37958 +0.530889 2.39305 +0.536926 2.37296 +0.542699 2.41195 +0.550671 2.38349 +0.558452 2.33751 +0.565815 2.37549 diff --git a/Scripts_20180425/Scripts_20180425/saturation_helium0mm5_MPVcorr.txt b/Scripts_20180425/Scripts_20180425/saturation_helium0mm5_MPVcorr.txt new file mode 100644 index 0000000..4eb45da --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/saturation_helium0mm5_MPVcorr.txt @@ -0,0 +1,23 @@ +0.316662 2.13162 +0.347272 2.16599 +0.371222 2.29837 +0.391037 2.29941 +0.408018 2.3324 +0.422922 2.35441 +0.436235 2.35092 +0.448275 2.36879 +0.459299 2.38847 +0.469441 2.37227 +0.478846 2.35263 +0.487649 2.37713 +0.495887 2.38227 +0.503656 2.37608 +0.510991 2.36535 +0.517959 2.38286 +0.524572 2.39007 +0.530889 2.40497 +0.536926 2.39063 +0.542699 2.43146 +0.550671 2.40476 +0.558452 2.36093 +0.565815 2.40318 diff --git a/Scripts_20180425/Scripts_20180425/saturation_helium0mm5_MPVcorr_run39.txt b/Scripts_20180425/Scripts_20180425/saturation_helium0mm5_MPVcorr_run39.txt new file mode 100644 index 0000000..09eae3e --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/saturation_helium0mm5_MPVcorr_run39.txt @@ -0,0 +1,23 @@ +0.316662 1.74273 +0.347272 1.77219 +0.371222 1.89247 +0.391037 1.90723 +0.408018 1.95395 +0.422922 1.95481 +0.436235 1.93413 +0.448275 1.96205 +0.459299 1.9992 +0.469441 1.9764 +0.478846 1.95567 +0.487649 1.97968 +0.495887 1.9981 +0.503656 1.98432 +0.510991 1.96894 +0.517959 1.98753 +0.524572 1.98753 +0.530889 2.0019 +0.536926 1.99426 +0.542699 2.03049 +0.550671 2.01789 +0.558452 1.98311 +0.565815 2.00113 diff --git a/Scripts_20180425/Scripts_20180425/saturation_helium0mm5_run39.txt b/Scripts_20180425/Scripts_20180425/saturation_helium0mm5_run39.txt new file mode 100644 index 0000000..bda8e2d --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/saturation_helium0mm5_run39.txt @@ -0,0 +1,23 @@ +0.316662 1.81061 +0.347272 1.8121 +0.371222 1.92197 +0.391037 1.92969 +0.408018 1.97347 +0.422922 1.96994 +0.436235 1.94724 +0.448275 1.97139 +0.459299 2.00684 +0.469441 1.98193 +0.478846 1.95827 +0.487649 1.98196 +0.495887 1.99795 +0.503656 1.98303 +0.510991 1.96409 +0.517959 1.97981 +0.524572 1.97881 +0.530889 1.99198 +0.536926 1.97952 +0.542699 2.0142 +0.550671 2.00005 +0.558452 1.96344 +0.565815 1.97808 diff --git a/Scripts_20180425/Scripts_20180425/saturation_oxygen0mm5.txt b/Scripts_20180425/Scripts_20180425/saturation_oxygen0mm5.txt new file mode 100644 index 0000000..12b7ea1 --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/saturation_oxygen0mm5.txt @@ -0,0 +1,23 @@ +0.436386 0.683947 +0.479001 0.714614 +0.511349 0.703026 +0.537325 0.760769 +0.559062 0.766604 +0.577647 0.774906 +0.594124 0.740528 +0.608731 0.799921 +0.621998 0.80052 +0.634024 0.806688 +0.645051 0.796245 +0.655227 0.794167 +0.664724 0.808471 +0.673476 0.816525 +0.681811 0.746823 +0.689682 0.84797 +0.697243 0.833595 +0.704219 0.800638 +0.710969 0.856754 +0.717443 0.838016 +0.726111 0.867359 +0.734357 1.75 +0.742074 1.75 diff --git a/Scripts_20180425/Scripts_20180425/saturation_oxygen0mm5_MPVcorr.txt b/Scripts_20180425/Scripts_20180425/saturation_oxygen0mm5_MPVcorr.txt new file mode 100644 index 0000000..73c2c30 --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/saturation_oxygen0mm5_MPVcorr.txt @@ -0,0 +1,23 @@ +0.436386 0.693045 +0.479001 0.729749 +0.511349 0.720711 +0.537325 0.784528 +0.559062 0.794617 +0.577647 0.805998 +0.594124 0.773024 +0.608731 0.837119 +0.621998 0.838542 +0.634024 0.847928 +0.645051 0.839491 +0.655227 0.83949 +0.664724 0.855861 +0.673476 0.864788 +0.681811 0.792981 +0.689682 0.900998 +0.697243 0.88593 +0.704219 0.850981 +0.710969 0.912795 +0.717443 0.891014 +0.726111 0.924423 +0.734357 1.86917 +0.742074 1.86327 diff --git a/Scripts_20180425/Scripts_20180425/saturation_oxygen0mm5_MPVcorr_run40.txt b/Scripts_20180425/Scripts_20180425/saturation_oxygen0mm5_MPVcorr_run40.txt new file mode 100644 index 0000000..b20454b --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/saturation_oxygen0mm5_MPVcorr_run40.txt @@ -0,0 +1,23 @@ +0.436386 1.13665 +0.479001 1.20608 +0.511349 1.19644 +0.537325 1.2998 +0.559062 1.30473 +0.577647 1.30353 +0.594124 1.25837 +0.608731 1.37725 +0.621998 1.38349 +0.634024 1.41513 +0.645051 1.40503 +0.655227 1.36892 +0.664724 1.3995 +0.673476 1.40616 +0.681811 1.30237 +0.689682 1.50067 +0.697243 1.47335 +0.704219 1.37645 +0.710969 1.51244 +0.717443 1.48454 +0.726111 1.45924 +0.734357 1.86917 +0.742074 1.86327 diff --git a/Scripts_20180425/Scripts_20180425/saturation_oxygen0mm5_MPVcorr_run41.txt b/Scripts_20180425/Scripts_20180425/saturation_oxygen0mm5_MPVcorr_run41.txt new file mode 100644 index 0000000..d2eb757 --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/saturation_oxygen0mm5_MPVcorr_run41.txt @@ -0,0 +1,23 @@ +0.436386 1.12633 +0.479001 1.19863 +0.511349 1.24247 +0.537325 1.29879 +0.559062 1.34025 +0.577647 1.35174 +0.594124 1.37778 +0.608731 1.41734 +0.621998 1.36071 +0.634024 1.43599 +0.645051 1.41672 +0.655227 1.42659 +0.664724 1.33049 +0.673476 1.43894 +0.681811 1.5119 +0.689682 1.36433 +0.697243 1.31708 +0.704219 1.33339 +0.710969 1.55843 +0.717443 1.54755 +0.726111 1.47227 +0.734357 1.86917 +0.742074 1.86327 diff --git a/Scripts_20180425/Scripts_20180425/saturation_oxygen0mm5_run40.txt b/Scripts_20180425/Scripts_20180425/saturation_oxygen0mm5_run40.txt new file mode 100644 index 0000000..7f3dd9b --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/saturation_oxygen0mm5_run40.txt @@ -0,0 +1,23 @@ +0.436386 1.12173 +0.479001 1.18107 +0.511349 1.16709 +0.537325 1.26043 +0.559062 1.25874 +0.577647 1.25325 +0.594124 1.20548 +0.608731 1.31605 +0.621998 1.32076 +0.634024 1.34631 +0.645051 1.33265 +0.655227 1.29502 +0.664724 1.322 +0.673476 1.32768 +0.681811 1.22656 +0.689682 1.41235 +0.697243 1.38631 +0.704219 1.29502 +0.710969 1.41959 +0.717443 1.39624 +0.726111 1.36916 +0.734357 1.75 +0.742074 1.75 diff --git a/Scripts_20180425/Scripts_20180425/saturation_oxygen0mm5_run41.txt b/Scripts_20180425/Scripts_20180425/saturation_oxygen0mm5_run41.txt new file mode 100644 index 0000000..ca3cc86 --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/saturation_oxygen0mm5_run41.txt @@ -0,0 +1,23 @@ +0.436386 1.11154 +0.479001 1.17377 +0.511349 1.21199 +0.537325 1.25945 +0.559062 1.293 +0.577647 1.2996 +0.594124 1.31986 +0.608731 1.35436 +0.621998 1.29901 +0.634024 1.36615 +0.645051 1.34373 +0.655227 1.34957 +0.664724 1.25682 +0.673476 1.35864 +0.681811 1.4239 +0.689682 1.28403 +0.697243 1.23928 +0.704219 1.25451 +0.710969 1.46275 +0.717443 1.4555 +0.726111 1.38139 +0.734357 1.75 +0.742074 1.75 diff --git a/Scripts_20180425/Scripts_20180425/saturation_proton0mm5.txt b/Scripts_20180425/Scripts_20180425/saturation_proton0mm5.txt new file mode 100644 index 0000000..712e91c --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/saturation_proton0mm5.txt @@ -0,0 +1,23 @@ +0.308525 2.74758 +0.340994 2.70615 +0.366173 2.67042 +0.386744 2.65825 +0.404198 2.64881 +0.419413 2.65225 +0.432945 2.63105 +0.44518 2.62873 +0.456345 2.63539 +0.466617 2.61451 +0.476154 2.61255 +0.485023 2.60962 +0.493348 2.60139 +0.501186 2.61552 +0.508639 2.60786 +0.515744 2.59116 +0.522563 2.58444 +0.529111 2.60748 +0.53538 2.60069 +0.541398 2.5974 +0.549576 2.59644 +0.557429 2.56601 +0.564849 2.56591 diff --git a/Scripts_20180425/Scripts_20180425/saturation_proton0mm5_MPVcorr.txt b/Scripts_20180425/Scripts_20180425/saturation_proton0mm5_MPVcorr.txt new file mode 100644 index 0000000..89b3b55 --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/saturation_proton0mm5_MPVcorr.txt @@ -0,0 +1,23 @@ +0.308525 2.92526 +0.340994 2.92967 +0.366173 2.93889 +0.386744 2.96043 +0.404198 2.98003 +0.419413 3.00848 +0.432945 3.00289 +0.44518 3.0225 +0.456345 3.05498 +0.466617 3.04488 +0.476154 3.05704 +0.485023 3.06318 +0.493348 3.06339 +0.501186 3.09493 +0.508639 3.09342 +0.515744 3.08763 +0.522563 3.09687 +0.529111 3.11946 +0.53538 3.11838 +0.541398 3.13298 +0.549576 3.13554 +0.557429 3.10995 +0.564849 3.12404 diff --git a/Scripts_20180425/Scripts_20180425/saturation_proton0mm5_MPVcorr_run32.txt b/Scripts_20180425/Scripts_20180425/saturation_proton0mm5_MPVcorr_run32.txt new file mode 100644 index 0000000..979032d --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/saturation_proton0mm5_MPVcorr_run32.txt @@ -0,0 +1,23 @@ +0.308525 2.36096 +0.340994 2.38562 +0.366173 2.41737 +0.386744 2.44454 +0.404198 2.45924 +0.419413 2.47315 +0.432945 2.4903 +0.44518 2.51097 +0.456345 2.52463 +0.466617 2.52752 +0.476154 2.53119 +0.485023 2.52626 +0.493348 2.54087 +0.501186 2.54346 +0.508639 2.55105 +0.515744 2.55272 +0.522563 2.55476 +0.529111 2.55215 +0.53538 2.57389 +0.541398 2.58289 +0.549576 2.58788 +0.557429 2.54535 +0.564849 2.59576 diff --git a/Scripts_20180425/Scripts_20180425/saturation_proton0mm5_MPVcorr_run38.txt b/Scripts_20180425/Scripts_20180425/saturation_proton0mm5_MPVcorr_run38.txt new file mode 100644 index 0000000..41369f1 --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/saturation_proton0mm5_MPVcorr_run38.txt @@ -0,0 +1,23 @@ +0.308525 2.39833 +0.340994 2.43674 +0.366173 2.45516 +0.386744 2.46192 +0.404198 2.49074 +0.419413 2.50774 +0.432945 2.4998 +0.44518 2.51128 +0.456345 2.54143 +0.466617 2.53622 +0.476154 2.53555 +0.485023 2.54953 +0.493348 2.54902 +0.501186 2.58092 +0.508639 2.57366 +0.515744 2.56785 +0.522563 2.56872 +0.529111 2.58949 +0.53538 2.59201 +0.541398 2.59937 +0.549576 2.59409 +0.557429 2.58357 +0.564849 2.59563 diff --git a/Scripts_20180425/Scripts_20180425/saturation_proton0mm5_run32.txt b/Scripts_20180425/Scripts_20180425/saturation_proton0mm5_run32.txt new file mode 100644 index 0000000..ec24f75 --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/saturation_proton0mm5_run32.txt @@ -0,0 +1,23 @@ +0.308525 2.23736 +0.340994 2.20765 +0.366173 2.19279 +0.386744 2.18956 +0.404198 2.18048 +0.419413 2.17696 +0.432945 2.17951 +0.44518 2.18015 +0.456345 2.17542 +0.466617 2.16615 +0.476154 2.16033 +0.485023 2.14903 +0.493348 2.15477 +0.501186 2.1464 +0.508639 2.14713 +0.515744 2.1398 +0.522563 2.13034 +0.529111 2.13187 +0.53538 2.14385 +0.541398 2.13927 +0.549576 2.14075 +0.557429 2.09934 +0.564849 2.12889 diff --git a/Scripts_20180425/Scripts_20180425/saturation_proton0mm5_run38.txt b/Scripts_20180425/Scripts_20180425/saturation_proton0mm5_run38.txt new file mode 100644 index 0000000..093c9aa --- /dev/null +++ b/Scripts_20180425/Scripts_20180425/saturation_proton0mm5_run38.txt @@ -0,0 +1,23 @@ +0.308525 2.27278 +0.340994 2.25495 +0.366173 2.22707 +0.386744 2.20512 +0.404198 2.20841 +0.419413 2.2074 +0.432945 2.18782 +0.44518 2.18042 +0.456345 2.1899 +0.466617 2.17361 +0.476154 2.16405 +0.485023 2.16882 +0.493348 2.16168 +0.501186 2.17801 +0.508639 2.16616 +0.515744 2.15248 +0.522563 2.14198 +0.529111 2.16306 +0.53538 2.15895 +0.541398 2.15292 +0.549576 2.14589 +0.557429 2.13086 +0.564849 2.12878 diff --git a/Scripts_20191124/Scripts_20191124/Makefile b/Scripts_20191124/Scripts_20191124/Makefile new file mode 100644 index 0000000..28199df --- /dev/null +++ b/Scripts_20191124/Scripts_20191124/Makefile @@ -0,0 +1,38 @@ + +ROOTCFLAGS := $(shell root-config --cflags) +ROOTLIBS := $(shell root-config --libs) +ROOTGLIBS := $(shell root-config --glibs) + +GSLCFLAGS := $(shell gsl-config --cflags) +GSLLIBS := $(shell gsl-config --libs) +GSLGLIBS := $(shell gsl-config --glibs) + + +LDFLAGS = -O +LIBS += $(ROOTLIBS) $(GSLLIBS) +CFLAGS += $(ROOTCFLAGS) $(GSLCFLAGS) #-std=gnu++11 + +# Not sure why Minuit isn't being included -- put in by hand +# +LIBS += -lMinuit + + +all: hit_analyse_v2 + + + +hit_analyse_v2: hit_analyse_v2.o + g++ -o hit_analyse_v2 hit_analyse_v2.o $(LDFLAGS) $(LIBS) + +%.o: %.c + g++ ${CFLAGS} -c -g $< + + +test: + @echo $(ROOTCFLAGS) + @echo $(LDFLAGS) + @echo $(LIBS) + +clean: + -rm -f *.o + diff --git a/Scripts_20191124/Scripts_20191124/Scripts_20191124.tgz b/Scripts_20191124/Scripts_20191124/Scripts_20191124.tgz new file mode 100644 index 0000000..605de5c Binary files /dev/null and b/Scripts_20191124/Scripts_20191124/Scripts_20191124.tgz differ diff --git a/Scripts_20191124/Scripts_20191124/hit_analyse_v2 b/Scripts_20191124/Scripts_20191124/hit_analyse_v2 new file mode 100755 index 0000000..6b6443f Binary files /dev/null and b/Scripts_20191124/Scripts_20191124/hit_analyse_v2 differ diff --git a/Scripts_20191124/Scripts_20191124/hit_analyse_v2.c b/Scripts_20191124/Scripts_20191124/hit_analyse_v2.c new file mode 100644 index 0000000..5af3e17 --- /dev/null +++ b/Scripts_20191124/Scripts_20191124/hit_analyse_v2.c @@ -0,0 +1,440 @@ +#define hit_analyse_v2_cxx +#include "hit_analyse_v2.h" + +int main(int argc, char **argv){ + + opendatafiles(argc, argv); + histograms(argc, argv); + analyse(argc, argv); + closedatafiles(); + return 0; +} + +int opendatafiles(int argc, char ** argv){ + if (argc>2){ + //open bpm data file + filename = Form("%s%s.da2",argv[1],argv[2]); + file.open(filename, ifstream::in | ifstream::binary); + + if (!file.is_open()) + { + std::cerr << " ### Hitdata: File could not be opened!" << filename << std::endl; + return 0; //file could not be opened + } + else {std::cout << filename << " opened successfully." << std::endl;} + } + string visualize_check = argv[5]; //plot data + if (visualize_check == "vis_true") {visualize = true;} + else{ visualize= false;} + + return 1; +} + +int closedatafiles(){ + + if (file.is_open()) file.close(); + // if (timestampfile.is_open()) timestampfile.close(); + //if (offsetfile.is_open()) offsetfile.close(); + + rootFile->Write(); + rootFile->Close(); +} + + +int analyse(int argc, char **argv) +{ + int first_frame = 0; // 1440000 + int nr_frames = -1; + int increment = 1; + + + + + //Read first record to find board configuration + Fullframe sampleframe; + if (sampleframe.read(&file) == 0) + { + std::cerr << " ### Hitdata: First frame could not be read!" << std::endl; + file.close(); + return 0; + } + else { + std::cout << "Sample frame size (bytes): " << sampleframe.sizeInFile() << std::endl; + } + + //Check file size + file.seekg(0, std::ios::beg); + std::streamsize fsize = file.tellg(); + file.seekg(0, std::ios::end); + fsize = file.tellg() - fsize; + + //Determine real frames to read + unsigned int max_frames = fsize / sampleframe.sizeInFile(); + if ((max_frames == -1) || (max_frames < nr_frames)) + nr_frames = max_frames; + + std::cout << " Hitdata: Nr frames to be read: " << nr_frames << std::endl; + + ///set the background levels from first N events + int bkg_frames = 1000; + if (set_background_v2(0, bkg_frames)==0) return 0; + + BPMbeamrecon_Zeroed.Position = -128.; + BPMbeamrecon_Zeroed.Focus = -1.; + BPMbeamrecon_Zeroed.Peak = -1.; + BPMbeamrecon_Zeroed.Position = -128.; + BPMbeamrecon_Zeroed.Rsqr = -1.; + BPMbeamrecon_Zeroed.Skew = -128.; + BPMbeamrecon_Zeroed.Position = -128.; + BPMbeamrecon_Zeroed.Sum = 0.; + BPMbeamrecon_Zeroed.n_channels = 0; + + //read board + //Read! + std::cout << "Reading data starting from frame: " << first_frame << std::endl; + file.seekg(first_frame * sampleframe.sizeInFile(), std::ios::beg); + for (int frame_nr = first_frame; frame_nr < nr_frames; frame_nr++) + { + eventID=frame_nr; + if ((frame_nr%100000) == 0) + std::cout << " Frame " << frame_nr << std::endl; + + file.seekg((frame_nr*increment) * sampleframe.sizeInFile() , std::ios::beg); + if (sampleframe.read(&file) == 0) //read the next frame and catch if returns error + { + std::cerr << " ### Hitdata: Frame " << frame_nr << " could not be read! Stopping." << std::endl; + file.close(); //read error, finish! + return 0; + } + for (int boardnumber = 0; boardnumber<4; boardnumber++){ + board_b[boardnumber] = readboard(sampleframe,boardnumber);//a bit redundant but does some analysis + // std::cout << board_b[0].integratedsignalamp << std::endl; + if (boardnumber==0&&board_b[0].integratedsignalamp>1000 && board_b[0].maxchannel_amp>100.){ + BPMbeamrecon_0 = beamreconstruction(board_b[0], 80.); // do the linear regression fit of the beam; + // std::cout << "doing regression" << std::endl; + } + else if (boardnumber==0) {BPMbeamrecon_0=BPMbeamrecon_Zeroed;} + + if (boardnumber==1&&board_b[1].integratedsignalamp>1000 && board_b[1].maxchannel_amp>100.){ + BPMbeamrecon_1 = beamreconstruction(board_b[1], 80.); // do the linear regression fit of the beam; + // std::cout << "doing regression" << std::endl; + } + else if (boardnumber==1) {BPMbeamrecon_1=BPMbeamrecon_Zeroed;} + if (boardnumber==2&&board_b[2].integratedsignalamp>1000 && board_b[2].maxchannel_amp>100.){ + BPMbeamrecon_2 = beamreconstruction(board_b[2], 80.); // do the linear regression fit of the beam; + // std::cout << "doing regression" << std::endl; + } + else if (boardnumber==2) {BPMbeamrecon_2=BPMbeamrecon_Zeroed;} + if (boardnumber==3&&board_b[3].integratedsignalamp>1000 && board_b[3].maxchannel_amp>100.){ + BPMbeamrecon_3 = beamreconstruction(board_b[3], 80.); // do the linear regression fit of the beam; + // std::cout << "doing regression" << std::endl; + } + else if (boardnumber==3) {BPMbeamrecon_3=BPMbeamrecon_Zeroed;} + + } + for (int j = 0;j<320;j++){ + if (board_b[0].maxchannel_amp>100.) TH2D_b0_signal_vs_channel->Fill(j, board_b[0].channel_amp[j]); + if (board_b[1].maxchannel_amp>100.) TH2D_b1_signal_vs_channel->Fill(j, board_b[1].channel_amp[j]); + if (board_b[2].maxchannel_amp>100.) TH2D_b2_signal_vs_channel->Fill(j, board_b[2].channel_amp[j]); + if (board_b[3].maxchannel_amp>100.) TH2D_b3_signal_vs_channel->Fill(j, board_b[3].channel_amp[j]); + + } + rootTree->Fill(); + + } + + + return 1; +} + +void histograms(int fargc, char ** argv){ + + //open output root file + rootfilename = Form("%s/root/%s.root",argv[1],argv[2]); + rootFile = new TFile(rootfilename,"RECREATE"); + if ( rootFile->IsOpen() ) {printf("ROOT file opened successfully\n"); + } + else { printf("ROOT file failed to open. \n");} + rootTree = new TTree("t","HIT Data Root Tree"); + rootTree ->Branch("BPMbeamrecon_0", &BPMbeamrecon_0, "Position/D:Focus:Peak:Rsqr:Skew:Kurtosis:Sum:n_channels/I"); + rootTree ->Branch("BPMbeamrecon_1", &BPMbeamrecon_1, "Position/D:Focus:Peak:Rsqr:Skew:Kurtosis:Sum:n_channels/I"); + rootTree ->Branch("BPMbeamrecon_2", &BPMbeamrecon_2, "Position/D:Focus:Peak:Rsqr:Skew:Kurtosis:Sum:n_channels/I"); + rootTree ->Branch("BPMbeamrecon_3", &BPMbeamrecon_3, "Position/D:Focus:Peak:Rsqr:Skew:Kurtosis:Sum:n_channels/I"); + + rootTree ->Branch("eventID",&eventID,"eventID/I"); + + TH2D_b0_signal_vs_channel = new TH2D("TH2D_b0_signal_vs_channel","TH2D_b0_signal_vs_channel",320,0,320,1200,-2000,20000); + TH2D_b1_signal_vs_channel = new TH2D("TH2D_b1_signal_vs_channel","TH2D_b1_signal_vs_channel",320,0,320,1200,-2000,20000); + TH2D_b2_signal_vs_channel = new TH2D("TH2D_b2_signal_vs_channel","TH2D_b2_signal_vs_channel",320,0,320,1200,-2000,20000); + TH2D_b3_signal_vs_channel = new TH2D("TH2D_b3_signal_vs_channel","TH2D_b3_signal_vs_channel",320,0,320,1200,-2000,20000); + +} + + +//Function for average +double avg ( vector v ) +{ + double return_value = 0.0; + int n = v.size(); + + for ( int i=0; i < n; i++) + { + return_value += v[i].chnumber; + } + + return ( return_value / double(n)); +} +//****************End of average funtion**************** + + +//Function for variance +double variance ( vector v , double mean ) +{ + double sum = 0.0; + double temp =0.0; + double var =0.0; + + for ( int j =0; j < v.size(); j++) + { + temp = pow((v[j].chnumber - mean) , 2); + sum += temp; + } + + return var = sum/double(v.size() -2); +} +//****************End of variance funtion**************** + + +int set_background_v2(int start_frame, int max_frames){ + std::cout << "Setting background levels." << std::endl; + for (int j = 0; j<320; j++){ + for (int k = 0; k<4; k++){ + board_b_bkg[k].channel_amp[j] = 0.; + } + } + + //Read first record to find board configuration + Fullframe sampleframe; + + //Read + // file.seekg(sampleframe.sizeInFile(), std::ios::beg); + for (int frame_nr = start_frame; frame_nr < max_frames; frame_nr++) + { + file.seekg(frame_nr * sampleframe.sizeInFile() , std::ios::beg); + if (sampleframe.read(&file) == 0) //read the next frame and catch if returns error + { + std::cerr << " ### Hitdata: Frame " << frame_nr << " could not be read!" << std::endl; + file.close(); //read error, finish! + return 0; + } + for (int boardnumber = 0; boardnumber<4; boardnumber++){ + for (int j = 0; jsensor_data[j] << std::endl; + } + } + } + + std::cout << "Background set." << std::endl; + return 1; +} + +bpm_frame_v2 readboard(Fullframe frame, int boardnumber){ + + bpm_frame_v2 board; + + board.integratedsignalamp = 0.; + board.maxchannel_amp = 0.; + // file.seekg(boardnumber*sizeof(BufferData)+4*frame*sizeof(BufferData)); + //file.read ((char*)dataptr ,sizeof(BufferData)); + + if (frame.boards[boardnumber].syncframe.device_nr==boardnumber){ + for (int j = 0; j board.maxchannel_amp) { + board.maxchannel = j; + board.maxchannel_amp = board.channel_amp[j]; + // cout << maxchannel_b0 << " " < signal_list; + vector channel_list; + + SumY = 0.; + SumS = 0.; + SumT = 0.; + SumS2 = 0.; + SumST = 0.; + SumT2 = 0.; + SumYS = 0.; + SumYT = 0.; + b_den = 0.; + b_num = 0.; + b = 0.; + p = 0.; + c = 0.; + SumYYM = 0.; + SumYYP = 0.; + MeanY = 0.; + + + // const int array_length = sizeof(frametoanalyse.channel_amp)/sizeof(double); + const int array_length = 320; + vector channel_reducedlist; //for anomaly detection + vector channel_reducedlistcopy; //for anomaly detection + + Channel tmp; + + int temp_lastneighbour= -128; + for (int i = 0; i< array_length; i++){ + if (frametoanalyse.channel_amp[i]>=threshold) { + // cout << "ch: " << i << endl; + // signal_list.push_back(frametoanalyse.channel_amp[i]); + // channel_list.push_back(frametoanalyse.channel_position[i]); + tmp.amplitude = frametoanalyse.channel_amp[i]; + tmp.position = frametoanalyse.channel_position[i]; + tmp.chnumber = i; + tmp.last_neighbour = temp_lastneighbour; + temp_lastneighbour = i ; + channel_reducedlist.push_back(tmp); + if (channel_reducedlist.size()>1){ + channel_reducedlist[channel_reducedlist.size() - 2].next_neighbour = i; + } + + } + } + + //anomaly detection + //remove channels without neighbours. + for (int i = 0; i2){ + cluster_average = avg(channel_reducedlistcopy); + cluster_variance = variance(channel_reducedlistcopy, cluster_average); + // cout << cluster_average << " " << cluster_variance << endl; + } + + //include all channels +/- 2*variance of the main cluster + for (int i = 0; i< array_length; i++){ + if (abs(i-cluster_average)<2*cluster_variance){ + signal_list.push_back(frametoanalyse.channel_amp[i]); + channel_list.push_back(frametoanalyse.channel_position[i]); + } + } + // sort(channel_reducedlist.begin(),channel_reducedlist.end(),CompareChannels); + + + + + const int vector_length = channel_list.size(); + beam.n_channels = vector_length; + beam.Sum = std::accumulate(signal_list.begin(), signal_list.end(),0); + if (vector_length<=3) return beam; + + double S[vector_length]; + double T[vector_length]; + + + + + for(int k=0; k y = b*exp(-p*(x-c)*(x-c)) + p = -ABC(0)/2.; c = -ABC(1)/ABC(0); + + for(int k=0; k +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "TStopwatch.h" +#include "Math/MinimizerOptions.h" +#include "TVirtualFitter.h" +#include "TMatrixD.h" +#include "TApplication.h" +#include "TRint.h" +#include "TSystem.h" +#include "TMultiGraph.h" +#include "TObject.h" + +//function declarations +int analyse(int argc, char **argv); +int opendatafiles(int argc, char ** argv); +void histograms(int argc, char ** argv); +int closedatafiles(); +int set_background_v2(int start_frame, int frames); + + +//////global variables + +//opendatafiles +long int fileframesize; +char * filename; +ifstream file; +TFile *rootFile; //output root file +TTree *rootTree; +char * rootfilename; +char * offsetfilename; +ifstream offsetfile; + +struct bpm_frame_v2 { + double channel_amp[320]; + double channel_position[320]; + double avg_position; + double avg_width; + double integratedsignalamp; + int maxchannel; + double maxchannel_amp; +}; + + +bpm_frame_v2 board_b[4]; +bpm_frame_v2 board_b_bkg[4]; + + +bpm_frame_v2 readboard(Fullframe frame, int boardnumber); +int framestart = 0; + +struct beamRecon { + + double Position; + double Focus; + double Peak; + double Rsqr; + double Skew; + double Kurtosis; + double Sum; + int n_channels; +}; + + +beamRecon beamreconstruction(bpm_frame_v2 frametoanalyse, double threshold); +beamRecon BPMbeamrecon_0,BPMbeamrecon_1,BPMbeamrecon_2,BPMbeamrecon_3; + +beamRecon BPMbeamrecon_Zeroed; + + + +TGraph * board_graph = new TGraph(320); +TF1 * beamrecon_function1 = new TF1("beamrecon_function1", "gaus(0)",0.,320.); + + +class Channel{ + public: + double amplitude;; + double position; + int chnumber; + int last_neighbour; + int next_neighbour; +}; + + +bool CompareChannels(Channel A, Channel B); + +double avg ( vector v ); +double variance ( vector v , double mean ); + +bool visualize = false; +int eventID; + +////histograms +TH2D * TH2D_b0_signal_vs_channel; +TH2D * TH2D_b1_signal_vs_channel; +TH2D * TH2D_b2_signal_vs_channel; +TH2D * TH2D_b3_signal_vs_channel; diff --git a/Scripts_20191124/Scripts_20191124/hitreader.c b/Scripts_20191124/Scripts_20191124/hitreader.c new file mode 100644 index 0000000..df2ee20 --- /dev/null +++ b/Scripts_20191124/Scripts_20191124/hitreader.c @@ -0,0 +1,410 @@ +//This is an object interface for reading HIT data files +//See HIT documentation for details and examples. +/* + .L hitreader.c + + Hitdata data; + data.read(“my_file.da2”); //to load whole file at once – forget it! See below. + data.read(“my_file.da2”,1000,100,10) //to read 100 frames starting from frame 1000 and incrementing by 10 (i.e. frame 1000, 1010, 1020, ... 1990 will be read) + //Reading 10 000 frames is reasonable. Reading 100 000 frames made my VM beg for memory. + + data.nrFrames //to see how many frames you have + data.frames[0].nrBoards //to see how many boards you had in the system + data.frames[0].boards[0].nrChannels //to see how many channels you have in board 0 + data.frames[10].boards[0].data[100] //get signal value for frame 10, board 0, channel 100 + data.frames[10].boards[0].syncframe.local_ctr //get the local synchro counter for frame 10, board 0 + //same for .global_ctr, .sma_state, .dummy, .device_nr, .data_ok + + */ + +//*********************** Helper ************************* + +//#define debug(str) std::cout << "HIT DEBUG: " << str << endl; +#define debug(str) + +//*********************** Syncframe ************************* +class Syncframe +{ + public: + Syncframe() + { + debug("Syncframe()"); + + local_ctr = global_ctr = 0; + sma_state = dummy = 0; + device_nr = -1; + data_ok = 0; + }; + + ~Syncframe() + { + debug("~Syncframe()"); + }; + + int sizeInFile() + { + return 16; + }; + + int read(std::ifstream* file) + { + char buffer[16]; + file->read(buffer,16); + if (file->fail()) + return 0; + local_ctr = *(unsigned short*)(buffer+0); + global_ctr = *(unsigned short*)(buffer+2); + sma_state = *(unsigned short*)(buffer+4); + dummy = *(unsigned short*)(buffer+6); + device_nr = *(int*)(buffer+8); + data_ok = *(int*)(buffer+12); + std::cout << "Syncframe:" << local_ctr << " " << global_ctr << " " << sma_state << " " << dummy << " " << device_nr << " " << data_ok << std::endl; + + return 1; + }; + + + unsigned short local_ctr; + unsigned short global_ctr; + unsigned short sma_state; + unsigned short dummy; + int device_nr; + unsigned int data_ok; +}; + +//*********************** Sensorframe ************************* +class Boardframe +{ + public: + Boardframe(int nr_channels = 0) + { + debug("Boardframe()"); + + data = NULL; + resize (nr_channels); + }; + + Boardframe(const Boardframe& in) + { + debug("Boardframe(Boardframe&)"); + + data = NULL; + resize(in.nrChannels); + for (int i = 0; i < nrChannels; i++) + data[i] = in.data[i]; + syncframe = in.syncframe; + }; + + Boardframe& operator=(const Boardframe& in) + { + debug("Boardframe::operator=="); + + resize(in.nrChannels);//creates an array called data of length nrChannels + for (int i = 0; i < nrChannels; i++) + data[i] = in.data[i]; + syncframe = in.syncframe; + return *this; + }; + + ~Boardframe() + { + debug("~Boardframe()"); + + if (data) + delete[] data; + }; + + void resize(int nr_channels) + { + if (data) + delete[] data; + nrChannels = nr_channels; + if (nrChannels) + data = new unsigned short[nrChannels]; + else + data = NULL; + }; + + int sizeInFile() + { + return syncframe.sizeInFile() + nrChannels*2; + }; + + int read(std::ifstream* file) + { + if (syncframe.read(file) == 0)//get the syncframe before the board data + return 0; + //I must be already resized at this point! + file->read((char*)data,2*nrChannels); + if (file->fail()) + return 0; + std::cout<< "data[" << nrChannels << "]: "; + for (int i = 0;iread((char*)&nr_boards,2); + if (file->fail() || nr_boards>6){ + std::cerr << "Unrealistic number of board to be read:"<< nr_boards << std:endl; + return 0; + } + std::cout << " nr_boards: " << nr_boards << std::endl; + //Read channel counts + unsigned short* channel_counts = new unsigned short[nr_boards]; + file->read((char*)channel_counts,nr_boards*2); + if (file->fail()) + { + delete[] channel_counts; + return 0; + } + + + + //Read board frames + resize(nr_boards); + for (int board_nr = 0; board_nr < nr_boards; board_nr++) + { + std::cout << " channel_counts[" << board_nr << "]: "<< channel_counts[board_nr] << std::endl; + + boards[board_nr].resize(channel_counts[board_nr]); + if (boards[board_nr].read(file) == 0)//read the board + { + delete[] channel_counts; + return 0; + } + } + + delete[] channel_counts; + return 1; + }; + + int nrChannels() + { + int result = 0; + for (int board_nr = 0; board_nr < nrBoards; board_nr++) + result += boards[board_nr].nrChannels; + return result; + }; + + unsigned short& operator[] (int index) + { + for (int board_nr = 0; board_nr < nrBoards; board_nr++) + { + if (index >= boards[board_nr].nrChannels) + index -= boards[board_nr].nrChannels; + else + return boards[board_nr][index]; + } + + std::cerr << " ### Fullframe::operator[]: index out of range!" << std::endl; + // return (*NULL); //this will cause crash (intended). + return boards[nrBoards][index]; + }; + + int nrBoards; + Boardframe* boards; +}; + +//*********************** Hitdata ************************* + +class Hitdata +{ + public: + Hitdata(int nr_frames = 0) + { + frames = NULL; + resize(nr_frames); + }; + + Hitdata(const Hitdata& in) + { + frames = NULL; + resize(in.nrFrames); + for (int i = 0; i < nrFrames; i++) + frames[i] = in.frames[i]; + }; + + Hitdata& operator=(const Hitdata& in) + { + resize(in.nrFrames); + for (int i = 0; i < nrFrames; i++) + frames[i] = in.frames[i]; + + return *this; + }; + + ~Hitdata() + { + if (nrFrames) + delete[] frames; + }; + + void resize (int nr_frames) + { + if (nrFrames) + delete[] frames; + nrFrames = nr_frames; + if (nrFrames) + frames = new Fullframe[nrFrames]; + else + frames = NULL; + }; + + //Read data from a given file. + //first_frame is the number of first frame to be read + //nr_frames is the maximum number of frames to be read + //-1 to read all of them + //increment allows you reading once every nth sample + //Return number of frames read or 0 in case of failure + int readFile(char* filename, int first_frame = 0, int nr_frames = -1, int increment = 1) + { + std::ifstream file; + //Open the file + file.open(filename, ios_base::in | ios_base::binary); + if (!file.is_open()) + { + std::cerr << " ### Hitdata: File could not be open!" << std::endl; + return 0; //file could not be opened + } + + //Read first record to find board configuration + Fullframe sampleframe; + if (sampleframe.read(&file) == 0) + { + std::cerr << " ### Hitdata: First frame could not be read!" << std::endl; + file.close(); + return 0; + } + + //Check file size + file.seekg(0, std::ios::beg); + std::streamsize fsize = file.tellg(); + file.seekg(0, std::ios::end); + fsize = file.tellg() - fsize; + + //Determine real frames to read + unsigned int max_frames = (fsize / sampleframe.sizeInFile() - first_frame) / increment; + if ((max_frames == -1) || (max_frames < nr_frames)) + nr_frames = max_frames; + + std::cout << " Hitdata: Nr frames to be read: " << nr_frames << std::endl; + + //Read! + resize(nr_frames); //make an array called frames of size nr_frames + file.seekg(first_frame * sampleframe.sizeInFile(), std::ios::beg); + for (int frame_nr = 0; frame_nr < nr_frames; frame_nr++) + { + // if ((frame_nr%100) == 0) + std::cout << " Frame " << frame_nr << std::endl; + + file.seekg((first_frame + frame_nr*increment) * sampleframe.sizeInFile(), std::ios::beg); + if (frames[frame_nr].read(&file) == 0) //read the next frame + { + std::cerr << " ### Hitdata: Frame " << frame_nr << " could not be read!" << std::endl; + file.close(); //read error, finish! + // frames = frame_nr; //Kinky! We decrease nr_frames, but the actual array size remains unchanged! + ///???? I don't know what the above line does. + return frame_nr; + } + std::cout << frames[frame_nr].nrBoards << std::endl; + } + + //Finished + file.close(); + return nr_frames; + }; + + Fullframe& operator[] (int index) + { + if (index < nrFrames) + return frames[index]; + else + { + std::cerr << " ### Hitdata::operator[]: index out of range!" << std::endl; + // return (*NULL); //this will cause crash (intended). + return frames[index]; + + } + }; + + int nrFrames; + Fullframe* frames; +}; + + + + + + diff --git a/Scripts_20191124/Scripts_20191124/hitreader.h b/Scripts_20191124/Scripts_20191124/hitreader.h new file mode 100644 index 0000000..4af0858 --- /dev/null +++ b/Scripts_20191124/Scripts_20191124/hitreader.h @@ -0,0 +1,440 @@ +//This is an object interface for reading HIT data files +//See HIT documentation for details and examples. +/* + .L hitreader.c + + Hitdata data; + data.read(“my_file.da2”); //to load whole file at once – forget it! See below. + data.read(“my_file.da2”,1000,100,10) //to read 100 frames starting from frame 1000 and incrementing by 10 (i.e. frame 1000, 1010, 1020, ... 1990 will be read) + //Reading 10 000 frames is reasonable. Reading 100 000 frames made my VM beg for memory. + + data.nrFrames //to see how many frames you have + data.frames[0].nrBoards //to see how many boards you had in the system + data.frames[0].boards[0].nrChannels //to see how many channels you have in board 0 + data.frames[10].boards[0].data[100] //get signal value for frame 10, board 0, channel 100 + data.frames[10].boards[0].syncframe.local_ctr //get the local synchro counter for frame 10, board 0 + //same for .global_ctr, .sma_state, .dummy, .device_nr, .data_ok + + */ + +//*********************** Helper ************************* +#include +#include + +using namespace std; + +//#define debug(str) std::cout << "HIT DEBUG: " << str << endl; +#define debug(str) + +//*********************** Syncframe ************************* +class Syncframe +{ + public: + Syncframe() + { + debug("Syncframe()"); + + local_ctr = global_ctr = 0; + sma_state = dummy = 0; + device_nr = -1; + data_ok = 0; + }; + + ~Syncframe() + { + debug("~Syncframe()"); + }; + + int sizeInFile() + { + return 16; + }; + + int read(std::ifstream* file) + { + char buffer[16]; + file->read(buffer,16); + if (file->fail()) + return 0; + local_ctr = *(unsigned short*)(buffer+0); + global_ctr = *(unsigned short*)(buffer+2); + sma_state = *(unsigned short*)(buffer+4); + dummy = *(unsigned short*)(buffer+6); + device_nr = *(int*)(buffer+8); + data_ok = *(int*)(buffer+12); + // std::cout << "Syncframe:" << local_ctr << " " << global_ctr << " " << sma_state << " " << dummy << " " << device_nr << " " << data_ok << std::endl; + + return 1; + }; + + + unsigned short local_ctr; + unsigned short global_ctr; + unsigned short sma_state; + unsigned short dummy; + int device_nr; + unsigned int data_ok; +}; + +//*********************** Sensorframe ************************* +class Boardframe +{ + public: + Boardframe(int nr_channels = 0) + { + debug("Boardframe()"); + + data = NULL; + resize (nr_channels); + }; + + Boardframe(const Boardframe& in) + { + debug("Boardframe(Boardframe&)"); + + data = NULL; + resize(in.nrChannels); + for (int i = 0; i < nrChannels; i++) + data[i] = in.data[i]; + syncframe = in.syncframe; + }; + + Boardframe& operator=(const Boardframe& in) + { + debug("Boardframe::operator=="); + + resize(in.nrChannels);//creates an array called data of length nrChannels + for (int i = 0; i < nrChannels; i++) + data[i] = in.data[i]; + syncframe = in.syncframe; + return *this; + }; + + ~Boardframe() + { + debug("~Boardframe()"); + + if (data) + delete[] data; + }; + + void resize(int nr_channels) + { + if (data) + delete[] data; + nrChannels = nr_channels; + if (nrChannels) + data = new unsigned short[nrChannels]; + else + data = NULL; + }; + + int sizeInFile() + { + // std::cout << "boardframe.sizeInFile() = " << syncframe.sizeInFile() + nrChannels*2 << std::endl; + return syncframe.sizeInFile() + nrChannels*2; + + }; + + int read(std::ifstream* file) + { + if (syncframe.read(file) == 0)//get the syncframe before the board data + return 0; + //I must be already resized at this point! + file->read((char*)data,2*nrChannels); + if (file->fail()) + return 0; + // std::cout<< "data[" << nrChannels << "]: "; + // for (int i = 0;iread((char*)&nr_boards,2); + if (nr_boards==4) break; + } + if ( nr_boards!=4){ + std::cerr << "Resync failed." << std::endl; + return 0; + } + + } + //std::cout << " nr_boards: " << nr_boards << std::endl; + //Read channel counts + unsigned short* channel_counts = new unsigned short[nr_boards]; + file->read((char*)channel_counts,nr_boards*2); + if (file->fail()) + { + delete[] channel_counts; + return 0; + } + + + + //Read board frames + resize(nr_boards); + for (int board_nr = 0; board_nr < nr_boards; board_nr++) + { + // std::cout << " channel_counts[" << board_nr << "]: "<< channel_counts[board_nr] << std::endl; + + boards[board_nr].resize(channel_counts[board_nr]); + if (boards[board_nr].read(file) == 0)//read the board + { + delete[] channel_counts; + return 0; + } + } + + delete[] channel_counts; + return 1; + }; + + int nrChannels() + { + int result = 0; + for (int board_nr = 0; board_nr < nrBoards; board_nr++) + result += boards[board_nr].nrChannels; + return result; + }; + + unsigned short& operator[] (int index) + { + for (int board_nr = 0; board_nr < nrBoards; board_nr++) + { + if (index >= boards[board_nr].nrChannels) + index -= boards[board_nr].nrChannels; + else + return boards[board_nr][index]; + } + + std::cerr << " ### Fullframe::operator[]: index out of range!" << std::endl; + // return (*NULL); //this will cause crash (intended). + return boards[nrBoards][index]; + }; + + int nrBoards; + Boardframe* boards; +}; + +//*********************** Hitdata ************************* + +class Hitdata +{ + public: + Hitdata(int nr_frames = 0) + { + frames = NULL; + resize(nr_frames); + }; + + Hitdata(const Hitdata& in) + { + frames = NULL; + resize(in.nrFrames); + for (int i = 0; i < nrFrames; i++) + frames[i] = in.frames[i]; + }; + + Hitdata& operator=(const Hitdata& in) + { + resize(in.nrFrames); + for (int i = 0; i < nrFrames; i++) + frames[i] = in.frames[i]; + + return *this; + }; + + ~Hitdata() + { + if (nrFrames) + delete[] frames; + }; + + void resize (int nr_frames) + { + if (nrFrames) + delete[] frames; + nrFrames = nr_frames; + if (nrFrames) + frames = new Fullframe[nrFrames]; + else + frames = NULL; + }; + + //Read data from a given file. + //first_frame is the number of first frame to be read + //nr_frames is the maximum number of frames to be read + //-1 to read all of them + //increment allows you reading once every nth sample + //Return number of frames read or 0 in case of failure + int readFile(char* filename, int first_frame = 1, int nr_frames = -1, int increment = 1) + { + std::ifstream file; + //Open the file + file.open(filename, ios_base::in | ios_base::binary); + if (!file.is_open()) + { + std::cerr << " ### Hitdata: File could not be open!" << std::endl; + return 0; //file could not be opened + } + + //Read first record to find board configuration + Fullframe sampleframe; + if (sampleframe.read(&file) == 0) + { + std::cerr << " ### Hitdata: First frame could not be read!" << std::endl; + file.close(); + return 0; + } + else { + std::cout << "Sample frame size (bytes): " << sampleframe.sizeInFile() << std::endl; + } + + //Check file size + file.seekg(0, std::ios::beg); + std::streamsize fsize = file.tellg(); + file.seekg(0, std::ios::end); + fsize = file.tellg() - fsize; + + //Determine real frames to read + unsigned int max_frames = fsize / sampleframe.sizeInFile(); + if ((max_frames == -1) || (max_frames < nr_frames)) + nr_frames = max_frames; + + std::cout << " Hitdata: Nr frames to be read: " << nr_frames << std::endl; + + //Read! + // resize(nr_frames); //make an array of Fullframes called frames of size nr_frames + file.seekg(first_frame * sampleframe.sizeInFile(), std::ios::beg); + for (int frame_nr = first_frame; frame_nr < nr_frames; frame_nr++) + { + if ((frame_nr%10000) == 0) + std::cout << " Frame " << frame_nr << std::endl; + + file.seekg((frame_nr*increment) * sampleframe.sizeInFile() , std::ios::beg); + if (file.eof()) { + std::cerr<< "end of file reached." << std::endl; + return frame_nr; + } + if ( sampleframe.read(&file) == 0) //read the next frame + { + std::cerr << " ### Hitdata: Frame " << frame_nr << " could not be read!" << std::endl; + file.close(); //read error, finish! + // frames = frame_nr; //Kinky! We decrease nr_frames, but the actual array size remains unchanged! + ///???? I don't know what the above line does. + return frame_nr; + } + // std::cout << frames[frame_nr].nrBoards << std::endl; + } + + //Finished + file.close(); + return nr_frames; + }; + + Fullframe& operator[] (int index) + { + if (index < nrFrames) + return frames[index]; + else + { + std::cerr << " ### Hitdata::operator[]: index out of range!" << std::endl; + // return (*NULL); //this will cause crash (intended). + return frames[index]; + + } + }; + + int nrFrames; + Fullframe* frames; +}; + + + + + + diff --git a/Scripts_20191124/Scripts_20191124/oldfile.tgz b/Scripts_20191124/Scripts_20191124/oldfile.tgz new file mode 100644 index 0000000..dad582d Binary files /dev/null and b/Scripts_20191124/Scripts_20191124/oldfile.tgz differ diff --git a/Scripts_20201214/Scripts_20201214/Makefile b/Scripts_20201214/Scripts_20201214/Makefile new file mode 100644 index 0000000..28199df --- /dev/null +++ b/Scripts_20201214/Scripts_20201214/Makefile @@ -0,0 +1,38 @@ + +ROOTCFLAGS := $(shell root-config --cflags) +ROOTLIBS := $(shell root-config --libs) +ROOTGLIBS := $(shell root-config --glibs) + +GSLCFLAGS := $(shell gsl-config --cflags) +GSLLIBS := $(shell gsl-config --libs) +GSLGLIBS := $(shell gsl-config --glibs) + + +LDFLAGS = -O +LIBS += $(ROOTLIBS) $(GSLLIBS) +CFLAGS += $(ROOTCFLAGS) $(GSLCFLAGS) #-std=gnu++11 + +# Not sure why Minuit isn't being included -- put in by hand +# +LIBS += -lMinuit + + +all: hit_analyse_v2 + + + +hit_analyse_v2: hit_analyse_v2.o + g++ -o hit_analyse_v2 hit_analyse_v2.o $(LDFLAGS) $(LIBS) + +%.o: %.c + g++ ${CFLAGS} -c -g $< + + +test: + @echo $(ROOTCFLAGS) + @echo $(LDFLAGS) + @echo $(LIBS) + +clean: + -rm -f *.o + diff --git a/Scripts_20201214/Scripts_20201214/hit_analyse_v2 b/Scripts_20201214/Scripts_20201214/hit_analyse_v2 new file mode 100755 index 0000000..dc12d0d Binary files /dev/null and b/Scripts_20201214/Scripts_20201214/hit_analyse_v2 differ diff --git a/Scripts_20201214/Scripts_20201214/hit_analyse_v2.c b/Scripts_20201214/Scripts_20201214/hit_analyse_v2.c new file mode 100644 index 0000000..5af3e17 --- /dev/null +++ b/Scripts_20201214/Scripts_20201214/hit_analyse_v2.c @@ -0,0 +1,440 @@ +#define hit_analyse_v2_cxx +#include "hit_analyse_v2.h" + +int main(int argc, char **argv){ + + opendatafiles(argc, argv); + histograms(argc, argv); + analyse(argc, argv); + closedatafiles(); + return 0; +} + +int opendatafiles(int argc, char ** argv){ + if (argc>2){ + //open bpm data file + filename = Form("%s%s.da2",argv[1],argv[2]); + file.open(filename, ifstream::in | ifstream::binary); + + if (!file.is_open()) + { + std::cerr << " ### Hitdata: File could not be opened!" << filename << std::endl; + return 0; //file could not be opened + } + else {std::cout << filename << " opened successfully." << std::endl;} + } + string visualize_check = argv[5]; //plot data + if (visualize_check == "vis_true") {visualize = true;} + else{ visualize= false;} + + return 1; +} + +int closedatafiles(){ + + if (file.is_open()) file.close(); + // if (timestampfile.is_open()) timestampfile.close(); + //if (offsetfile.is_open()) offsetfile.close(); + + rootFile->Write(); + rootFile->Close(); +} + + +int analyse(int argc, char **argv) +{ + int first_frame = 0; // 1440000 + int nr_frames = -1; + int increment = 1; + + + + + //Read first record to find board configuration + Fullframe sampleframe; + if (sampleframe.read(&file) == 0) + { + std::cerr << " ### Hitdata: First frame could not be read!" << std::endl; + file.close(); + return 0; + } + else { + std::cout << "Sample frame size (bytes): " << sampleframe.sizeInFile() << std::endl; + } + + //Check file size + file.seekg(0, std::ios::beg); + std::streamsize fsize = file.tellg(); + file.seekg(0, std::ios::end); + fsize = file.tellg() - fsize; + + //Determine real frames to read + unsigned int max_frames = fsize / sampleframe.sizeInFile(); + if ((max_frames == -1) || (max_frames < nr_frames)) + nr_frames = max_frames; + + std::cout << " Hitdata: Nr frames to be read: " << nr_frames << std::endl; + + ///set the background levels from first N events + int bkg_frames = 1000; + if (set_background_v2(0, bkg_frames)==0) return 0; + + BPMbeamrecon_Zeroed.Position = -128.; + BPMbeamrecon_Zeroed.Focus = -1.; + BPMbeamrecon_Zeroed.Peak = -1.; + BPMbeamrecon_Zeroed.Position = -128.; + BPMbeamrecon_Zeroed.Rsqr = -1.; + BPMbeamrecon_Zeroed.Skew = -128.; + BPMbeamrecon_Zeroed.Position = -128.; + BPMbeamrecon_Zeroed.Sum = 0.; + BPMbeamrecon_Zeroed.n_channels = 0; + + //read board + //Read! + std::cout << "Reading data starting from frame: " << first_frame << std::endl; + file.seekg(first_frame * sampleframe.sizeInFile(), std::ios::beg); + for (int frame_nr = first_frame; frame_nr < nr_frames; frame_nr++) + { + eventID=frame_nr; + if ((frame_nr%100000) == 0) + std::cout << " Frame " << frame_nr << std::endl; + + file.seekg((frame_nr*increment) * sampleframe.sizeInFile() , std::ios::beg); + if (sampleframe.read(&file) == 0) //read the next frame and catch if returns error + { + std::cerr << " ### Hitdata: Frame " << frame_nr << " could not be read! Stopping." << std::endl; + file.close(); //read error, finish! + return 0; + } + for (int boardnumber = 0; boardnumber<4; boardnumber++){ + board_b[boardnumber] = readboard(sampleframe,boardnumber);//a bit redundant but does some analysis + // std::cout << board_b[0].integratedsignalamp << std::endl; + if (boardnumber==0&&board_b[0].integratedsignalamp>1000 && board_b[0].maxchannel_amp>100.){ + BPMbeamrecon_0 = beamreconstruction(board_b[0], 80.); // do the linear regression fit of the beam; + // std::cout << "doing regression" << std::endl; + } + else if (boardnumber==0) {BPMbeamrecon_0=BPMbeamrecon_Zeroed;} + + if (boardnumber==1&&board_b[1].integratedsignalamp>1000 && board_b[1].maxchannel_amp>100.){ + BPMbeamrecon_1 = beamreconstruction(board_b[1], 80.); // do the linear regression fit of the beam; + // std::cout << "doing regression" << std::endl; + } + else if (boardnumber==1) {BPMbeamrecon_1=BPMbeamrecon_Zeroed;} + if (boardnumber==2&&board_b[2].integratedsignalamp>1000 && board_b[2].maxchannel_amp>100.){ + BPMbeamrecon_2 = beamreconstruction(board_b[2], 80.); // do the linear regression fit of the beam; + // std::cout << "doing regression" << std::endl; + } + else if (boardnumber==2) {BPMbeamrecon_2=BPMbeamrecon_Zeroed;} + if (boardnumber==3&&board_b[3].integratedsignalamp>1000 && board_b[3].maxchannel_amp>100.){ + BPMbeamrecon_3 = beamreconstruction(board_b[3], 80.); // do the linear regression fit of the beam; + // std::cout << "doing regression" << std::endl; + } + else if (boardnumber==3) {BPMbeamrecon_3=BPMbeamrecon_Zeroed;} + + } + for (int j = 0;j<320;j++){ + if (board_b[0].maxchannel_amp>100.) TH2D_b0_signal_vs_channel->Fill(j, board_b[0].channel_amp[j]); + if (board_b[1].maxchannel_amp>100.) TH2D_b1_signal_vs_channel->Fill(j, board_b[1].channel_amp[j]); + if (board_b[2].maxchannel_amp>100.) TH2D_b2_signal_vs_channel->Fill(j, board_b[2].channel_amp[j]); + if (board_b[3].maxchannel_amp>100.) TH2D_b3_signal_vs_channel->Fill(j, board_b[3].channel_amp[j]); + + } + rootTree->Fill(); + + } + + + return 1; +} + +void histograms(int fargc, char ** argv){ + + //open output root file + rootfilename = Form("%s/root/%s.root",argv[1],argv[2]); + rootFile = new TFile(rootfilename,"RECREATE"); + if ( rootFile->IsOpen() ) {printf("ROOT file opened successfully\n"); + } + else { printf("ROOT file failed to open. \n");} + rootTree = new TTree("t","HIT Data Root Tree"); + rootTree ->Branch("BPMbeamrecon_0", &BPMbeamrecon_0, "Position/D:Focus:Peak:Rsqr:Skew:Kurtosis:Sum:n_channels/I"); + rootTree ->Branch("BPMbeamrecon_1", &BPMbeamrecon_1, "Position/D:Focus:Peak:Rsqr:Skew:Kurtosis:Sum:n_channels/I"); + rootTree ->Branch("BPMbeamrecon_2", &BPMbeamrecon_2, "Position/D:Focus:Peak:Rsqr:Skew:Kurtosis:Sum:n_channels/I"); + rootTree ->Branch("BPMbeamrecon_3", &BPMbeamrecon_3, "Position/D:Focus:Peak:Rsqr:Skew:Kurtosis:Sum:n_channels/I"); + + rootTree ->Branch("eventID",&eventID,"eventID/I"); + + TH2D_b0_signal_vs_channel = new TH2D("TH2D_b0_signal_vs_channel","TH2D_b0_signal_vs_channel",320,0,320,1200,-2000,20000); + TH2D_b1_signal_vs_channel = new TH2D("TH2D_b1_signal_vs_channel","TH2D_b1_signal_vs_channel",320,0,320,1200,-2000,20000); + TH2D_b2_signal_vs_channel = new TH2D("TH2D_b2_signal_vs_channel","TH2D_b2_signal_vs_channel",320,0,320,1200,-2000,20000); + TH2D_b3_signal_vs_channel = new TH2D("TH2D_b3_signal_vs_channel","TH2D_b3_signal_vs_channel",320,0,320,1200,-2000,20000); + +} + + +//Function for average +double avg ( vector v ) +{ + double return_value = 0.0; + int n = v.size(); + + for ( int i=0; i < n; i++) + { + return_value += v[i].chnumber; + } + + return ( return_value / double(n)); +} +//****************End of average funtion**************** + + +//Function for variance +double variance ( vector v , double mean ) +{ + double sum = 0.0; + double temp =0.0; + double var =0.0; + + for ( int j =0; j < v.size(); j++) + { + temp = pow((v[j].chnumber - mean) , 2); + sum += temp; + } + + return var = sum/double(v.size() -2); +} +//****************End of variance funtion**************** + + +int set_background_v2(int start_frame, int max_frames){ + std::cout << "Setting background levels." << std::endl; + for (int j = 0; j<320; j++){ + for (int k = 0; k<4; k++){ + board_b_bkg[k].channel_amp[j] = 0.; + } + } + + //Read first record to find board configuration + Fullframe sampleframe; + + //Read + // file.seekg(sampleframe.sizeInFile(), std::ios::beg); + for (int frame_nr = start_frame; frame_nr < max_frames; frame_nr++) + { + file.seekg(frame_nr * sampleframe.sizeInFile() , std::ios::beg); + if (sampleframe.read(&file) == 0) //read the next frame and catch if returns error + { + std::cerr << " ### Hitdata: Frame " << frame_nr << " could not be read!" << std::endl; + file.close(); //read error, finish! + return 0; + } + for (int boardnumber = 0; boardnumber<4; boardnumber++){ + for (int j = 0; jsensor_data[j] << std::endl; + } + } + } + + std::cout << "Background set." << std::endl; + return 1; +} + +bpm_frame_v2 readboard(Fullframe frame, int boardnumber){ + + bpm_frame_v2 board; + + board.integratedsignalamp = 0.; + board.maxchannel_amp = 0.; + // file.seekg(boardnumber*sizeof(BufferData)+4*frame*sizeof(BufferData)); + //file.read ((char*)dataptr ,sizeof(BufferData)); + + if (frame.boards[boardnumber].syncframe.device_nr==boardnumber){ + for (int j = 0; j board.maxchannel_amp) { + board.maxchannel = j; + board.maxchannel_amp = board.channel_amp[j]; + // cout << maxchannel_b0 << " " < signal_list; + vector channel_list; + + SumY = 0.; + SumS = 0.; + SumT = 0.; + SumS2 = 0.; + SumST = 0.; + SumT2 = 0.; + SumYS = 0.; + SumYT = 0.; + b_den = 0.; + b_num = 0.; + b = 0.; + p = 0.; + c = 0.; + SumYYM = 0.; + SumYYP = 0.; + MeanY = 0.; + + + // const int array_length = sizeof(frametoanalyse.channel_amp)/sizeof(double); + const int array_length = 320; + vector channel_reducedlist; //for anomaly detection + vector channel_reducedlistcopy; //for anomaly detection + + Channel tmp; + + int temp_lastneighbour= -128; + for (int i = 0; i< array_length; i++){ + if (frametoanalyse.channel_amp[i]>=threshold) { + // cout << "ch: " << i << endl; + // signal_list.push_back(frametoanalyse.channel_amp[i]); + // channel_list.push_back(frametoanalyse.channel_position[i]); + tmp.amplitude = frametoanalyse.channel_amp[i]; + tmp.position = frametoanalyse.channel_position[i]; + tmp.chnumber = i; + tmp.last_neighbour = temp_lastneighbour; + temp_lastneighbour = i ; + channel_reducedlist.push_back(tmp); + if (channel_reducedlist.size()>1){ + channel_reducedlist[channel_reducedlist.size() - 2].next_neighbour = i; + } + + } + } + + //anomaly detection + //remove channels without neighbours. + for (int i = 0; i2){ + cluster_average = avg(channel_reducedlistcopy); + cluster_variance = variance(channel_reducedlistcopy, cluster_average); + // cout << cluster_average << " " << cluster_variance << endl; + } + + //include all channels +/- 2*variance of the main cluster + for (int i = 0; i< array_length; i++){ + if (abs(i-cluster_average)<2*cluster_variance){ + signal_list.push_back(frametoanalyse.channel_amp[i]); + channel_list.push_back(frametoanalyse.channel_position[i]); + } + } + // sort(channel_reducedlist.begin(),channel_reducedlist.end(),CompareChannels); + + + + + const int vector_length = channel_list.size(); + beam.n_channels = vector_length; + beam.Sum = std::accumulate(signal_list.begin(), signal_list.end(),0); + if (vector_length<=3) return beam; + + double S[vector_length]; + double T[vector_length]; + + + + + for(int k=0; k y = b*exp(-p*(x-c)*(x-c)) + p = -ABC(0)/2.; c = -ABC(1)/ABC(0); + + for(int k=0; k +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "TStopwatch.h" +#include "Math/MinimizerOptions.h" +#include "TVirtualFitter.h" +#include "TMatrixD.h" +#include "TApplication.h" +#include "TRint.h" +#include "TSystem.h" +#include "TMultiGraph.h" +#include "TObject.h" + +//function declarations +int analyse(int argc, char **argv); +int opendatafiles(int argc, char ** argv); +void histograms(int argc, char ** argv); +int closedatafiles(); +int set_background_v2(int start_frame, int frames); + + +//////global variables + +//opendatafiles +long int fileframesize; +char * filename; +ifstream file; +TFile *rootFile; //output root file +TTree *rootTree; +char * rootfilename; +char * offsetfilename; +ifstream offsetfile; + +struct bpm_frame_v2 { + double channel_amp[320]; + double channel_position[320]; + double avg_position; + double avg_width; + double integratedsignalamp; + int maxchannel; + double maxchannel_amp; +}; + + +bpm_frame_v2 board_b[4]; +bpm_frame_v2 board_b_bkg[4]; + + +bpm_frame_v2 readboard(Fullframe frame, int boardnumber); +int framestart = 0; + +struct beamRecon { + + double Position; + double Focus; + double Peak; + double Rsqr; + double Skew; + double Kurtosis; + double Sum; + int n_channels; +}; + + +beamRecon beamreconstruction(bpm_frame_v2 frametoanalyse, double threshold); +beamRecon BPMbeamrecon_0,BPMbeamrecon_1,BPMbeamrecon_2,BPMbeamrecon_3; + +beamRecon BPMbeamrecon_Zeroed; + + + +TGraph * board_graph = new TGraph(320); +TF1 * beamrecon_function1 = new TF1("beamrecon_function1", "gaus(0)",0.,320.); + + +class Channel{ + public: + double amplitude;; + double position; + int chnumber; + int last_neighbour; + int next_neighbour; +}; + + +bool CompareChannels(Channel A, Channel B); + +double avg ( vector v ); +double variance ( vector v , double mean ); + +bool visualize = false; +int eventID; + +////histograms +TH2D * TH2D_b0_signal_vs_channel; +TH2D * TH2D_b1_signal_vs_channel; +TH2D * TH2D_b2_signal_vs_channel; +TH2D * TH2D_b3_signal_vs_channel; diff --git a/Scripts_20201214/Scripts_20201214/hitreader.c b/Scripts_20201214/Scripts_20201214/hitreader.c new file mode 100644 index 0000000..df2ee20 --- /dev/null +++ b/Scripts_20201214/Scripts_20201214/hitreader.c @@ -0,0 +1,410 @@ +//This is an object interface for reading HIT data files +//See HIT documentation for details and examples. +/* + .L hitreader.c + + Hitdata data; + data.read(“my_file.da2”); //to load whole file at once – forget it! See below. + data.read(“my_file.da2”,1000,100,10) //to read 100 frames starting from frame 1000 and incrementing by 10 (i.e. frame 1000, 1010, 1020, ... 1990 will be read) + //Reading 10 000 frames is reasonable. Reading 100 000 frames made my VM beg for memory. + + data.nrFrames //to see how many frames you have + data.frames[0].nrBoards //to see how many boards you had in the system + data.frames[0].boards[0].nrChannels //to see how many channels you have in board 0 + data.frames[10].boards[0].data[100] //get signal value for frame 10, board 0, channel 100 + data.frames[10].boards[0].syncframe.local_ctr //get the local synchro counter for frame 10, board 0 + //same for .global_ctr, .sma_state, .dummy, .device_nr, .data_ok + + */ + +//*********************** Helper ************************* + +//#define debug(str) std::cout << "HIT DEBUG: " << str << endl; +#define debug(str) + +//*********************** Syncframe ************************* +class Syncframe +{ + public: + Syncframe() + { + debug("Syncframe()"); + + local_ctr = global_ctr = 0; + sma_state = dummy = 0; + device_nr = -1; + data_ok = 0; + }; + + ~Syncframe() + { + debug("~Syncframe()"); + }; + + int sizeInFile() + { + return 16; + }; + + int read(std::ifstream* file) + { + char buffer[16]; + file->read(buffer,16); + if (file->fail()) + return 0; + local_ctr = *(unsigned short*)(buffer+0); + global_ctr = *(unsigned short*)(buffer+2); + sma_state = *(unsigned short*)(buffer+4); + dummy = *(unsigned short*)(buffer+6); + device_nr = *(int*)(buffer+8); + data_ok = *(int*)(buffer+12); + std::cout << "Syncframe:" << local_ctr << " " << global_ctr << " " << sma_state << " " << dummy << " " << device_nr << " " << data_ok << std::endl; + + return 1; + }; + + + unsigned short local_ctr; + unsigned short global_ctr; + unsigned short sma_state; + unsigned short dummy; + int device_nr; + unsigned int data_ok; +}; + +//*********************** Sensorframe ************************* +class Boardframe +{ + public: + Boardframe(int nr_channels = 0) + { + debug("Boardframe()"); + + data = NULL; + resize (nr_channels); + }; + + Boardframe(const Boardframe& in) + { + debug("Boardframe(Boardframe&)"); + + data = NULL; + resize(in.nrChannels); + for (int i = 0; i < nrChannels; i++) + data[i] = in.data[i]; + syncframe = in.syncframe; + }; + + Boardframe& operator=(const Boardframe& in) + { + debug("Boardframe::operator=="); + + resize(in.nrChannels);//creates an array called data of length nrChannels + for (int i = 0; i < nrChannels; i++) + data[i] = in.data[i]; + syncframe = in.syncframe; + return *this; + }; + + ~Boardframe() + { + debug("~Boardframe()"); + + if (data) + delete[] data; + }; + + void resize(int nr_channels) + { + if (data) + delete[] data; + nrChannels = nr_channels; + if (nrChannels) + data = new unsigned short[nrChannels]; + else + data = NULL; + }; + + int sizeInFile() + { + return syncframe.sizeInFile() + nrChannels*2; + }; + + int read(std::ifstream* file) + { + if (syncframe.read(file) == 0)//get the syncframe before the board data + return 0; + //I must be already resized at this point! + file->read((char*)data,2*nrChannels); + if (file->fail()) + return 0; + std::cout<< "data[" << nrChannels << "]: "; + for (int i = 0;iread((char*)&nr_boards,2); + if (file->fail() || nr_boards>6){ + std::cerr << "Unrealistic number of board to be read:"<< nr_boards << std:endl; + return 0; + } + std::cout << " nr_boards: " << nr_boards << std::endl; + //Read channel counts + unsigned short* channel_counts = new unsigned short[nr_boards]; + file->read((char*)channel_counts,nr_boards*2); + if (file->fail()) + { + delete[] channel_counts; + return 0; + } + + + + //Read board frames + resize(nr_boards); + for (int board_nr = 0; board_nr < nr_boards; board_nr++) + { + std::cout << " channel_counts[" << board_nr << "]: "<< channel_counts[board_nr] << std::endl; + + boards[board_nr].resize(channel_counts[board_nr]); + if (boards[board_nr].read(file) == 0)//read the board + { + delete[] channel_counts; + return 0; + } + } + + delete[] channel_counts; + return 1; + }; + + int nrChannels() + { + int result = 0; + for (int board_nr = 0; board_nr < nrBoards; board_nr++) + result += boards[board_nr].nrChannels; + return result; + }; + + unsigned short& operator[] (int index) + { + for (int board_nr = 0; board_nr < nrBoards; board_nr++) + { + if (index >= boards[board_nr].nrChannels) + index -= boards[board_nr].nrChannels; + else + return boards[board_nr][index]; + } + + std::cerr << " ### Fullframe::operator[]: index out of range!" << std::endl; + // return (*NULL); //this will cause crash (intended). + return boards[nrBoards][index]; + }; + + int nrBoards; + Boardframe* boards; +}; + +//*********************** Hitdata ************************* + +class Hitdata +{ + public: + Hitdata(int nr_frames = 0) + { + frames = NULL; + resize(nr_frames); + }; + + Hitdata(const Hitdata& in) + { + frames = NULL; + resize(in.nrFrames); + for (int i = 0; i < nrFrames; i++) + frames[i] = in.frames[i]; + }; + + Hitdata& operator=(const Hitdata& in) + { + resize(in.nrFrames); + for (int i = 0; i < nrFrames; i++) + frames[i] = in.frames[i]; + + return *this; + }; + + ~Hitdata() + { + if (nrFrames) + delete[] frames; + }; + + void resize (int nr_frames) + { + if (nrFrames) + delete[] frames; + nrFrames = nr_frames; + if (nrFrames) + frames = new Fullframe[nrFrames]; + else + frames = NULL; + }; + + //Read data from a given file. + //first_frame is the number of first frame to be read + //nr_frames is the maximum number of frames to be read + //-1 to read all of them + //increment allows you reading once every nth sample + //Return number of frames read or 0 in case of failure + int readFile(char* filename, int first_frame = 0, int nr_frames = -1, int increment = 1) + { + std::ifstream file; + //Open the file + file.open(filename, ios_base::in | ios_base::binary); + if (!file.is_open()) + { + std::cerr << " ### Hitdata: File could not be open!" << std::endl; + return 0; //file could not be opened + } + + //Read first record to find board configuration + Fullframe sampleframe; + if (sampleframe.read(&file) == 0) + { + std::cerr << " ### Hitdata: First frame could not be read!" << std::endl; + file.close(); + return 0; + } + + //Check file size + file.seekg(0, std::ios::beg); + std::streamsize fsize = file.tellg(); + file.seekg(0, std::ios::end); + fsize = file.tellg() - fsize; + + //Determine real frames to read + unsigned int max_frames = (fsize / sampleframe.sizeInFile() - first_frame) / increment; + if ((max_frames == -1) || (max_frames < nr_frames)) + nr_frames = max_frames; + + std::cout << " Hitdata: Nr frames to be read: " << nr_frames << std::endl; + + //Read! + resize(nr_frames); //make an array called frames of size nr_frames + file.seekg(first_frame * sampleframe.sizeInFile(), std::ios::beg); + for (int frame_nr = 0; frame_nr < nr_frames; frame_nr++) + { + // if ((frame_nr%100) == 0) + std::cout << " Frame " << frame_nr << std::endl; + + file.seekg((first_frame + frame_nr*increment) * sampleframe.sizeInFile(), std::ios::beg); + if (frames[frame_nr].read(&file) == 0) //read the next frame + { + std::cerr << " ### Hitdata: Frame " << frame_nr << " could not be read!" << std::endl; + file.close(); //read error, finish! + // frames = frame_nr; //Kinky! We decrease nr_frames, but the actual array size remains unchanged! + ///???? I don't know what the above line does. + return frame_nr; + } + std::cout << frames[frame_nr].nrBoards << std::endl; + } + + //Finished + file.close(); + return nr_frames; + }; + + Fullframe& operator[] (int index) + { + if (index < nrFrames) + return frames[index]; + else + { + std::cerr << " ### Hitdata::operator[]: index out of range!" << std::endl; + // return (*NULL); //this will cause crash (intended). + return frames[index]; + + } + }; + + int nrFrames; + Fullframe* frames; +}; + + + + + + diff --git a/Scripts_20201214/Scripts_20201214/hitreader.h b/Scripts_20201214/Scripts_20201214/hitreader.h new file mode 100644 index 0000000..6e6f383 --- /dev/null +++ b/Scripts_20201214/Scripts_20201214/hitreader.h @@ -0,0 +1,441 @@ +//This is an object interface for reading HIT data files +//See HIT documentation for details and examples. +/* + .L hitreader.c + + Hitdata data; + data.read(“my_file.da2”); //to load whole file at once – forget it! See below. + data.read(“my_file.da2”,1000,100,10) //to read 100 frames starting from frame 1000 and incrementing by 10 (i.e. frame 1000, 1010, 1020, ... 1990 will be read) + //Reading 10 000 frames is reasonable. Reading 100 000 frames made my VM beg for memory. + + data.nrFrames //to see how many frames you have + data.frames[0].nrBoards //to see how many boards you had in the system + data.frames[0].boards[0].nrChannels //to see how many channels you have in board 0 + data.frames[10].boards[0].data[100] //get signal value for frame 10, board 0, channel 100 + data.frames[10].boards[0].syncframe.local_ctr //get the local synchro counter for frame 10, board 0 + //same for .global_ctr, .sma_state, .dummy, .device_nr, .data_ok + + */ + +//*********************** Helper ************************* +#include +#include + +using namespace std; + +//#define debug(str) std::cout << "HIT DEBUG: " << str << endl; +#define debug(str) + +//*********************** Syncframe ************************* +class Syncframe +{ + public: + Syncframe() + { + debug("Syncframe()"); + + local_ctr = global_ctr = 0; + sma_state = dummy = 0; + device_nr = -1; + data_ok = 0; + }; + + ~Syncframe() + { + debug("~Syncframe()"); + }; + + int sizeInFile() + { + return 16; + }; + + int read(std::ifstream* file) + { + char buffer[16]; + file->read(buffer,16); + if (file->fail()) + return 0; + local_ctr = *(unsigned short*)(buffer+0); + global_ctr = *(unsigned short*)(buffer+2); + sma_state = *(unsigned short*)(buffer+4); + dummy = *(unsigned short*)(buffer+6); + device_nr = *(int*)(buffer+8); + data_ok = *(int*)(buffer+12); + std::cout << "Syncframe:" << local_ctr << " " << global_ctr << " " << sma_state << " " << dummy << " " << device_nr << " " << data_ok << std::endl; + + return 1; + }; + + + unsigned short local_ctr; + unsigned short global_ctr; + unsigned short sma_state; + unsigned short dummy; + int device_nr; + unsigned int data_ok; +}; + +//*********************** Sensorframe ************************* +class Boardframe +{ + public: + Boardframe(int nr_channels = 0) + { + debug("Boardframe()"); + + data = NULL; + resize (nr_channels); + }; + + Boardframe(const Boardframe& in) + { + debug("Boardframe(Boardframe&)"); + + data = NULL; + resize(in.nrChannels); + for (int i = 0; i < nrChannels; i++) + data[i] = in.data[i]; + syncframe = in.syncframe; + }; + + Boardframe& operator=(const Boardframe& in) + { + debug("Boardframe::operator=="); + + resize(in.nrChannels);//creates an array called data of length nrChannels + for (int i = 0; i < nrChannels; i++) + data[i] = in.data[i]; + syncframe = in.syncframe; + return *this; + }; + + ~Boardframe() + { + debug("~Boardframe()"); + + if (data) + delete[] data; + }; + + void resize(int nr_channels) + { + if (data) + delete[] data; + nrChannels = nr_channels; + if (nrChannels) + data = new unsigned short[nrChannels]; + else + data = NULL; + }; + + int sizeInFile() + { + std::cout << "boardframe.sizeInFile() = " << syncframe.sizeInFile() + nrChannels*2 << std::endl; + return syncframe.sizeInFile() + nrChannels*2; + + }; + + int read(std::ifstream* file) + { + if (syncframe.read(file) == 0)//get the syncframe before the board data + return 0; + //I must be already resized at this point! + file->read((char*)data,2*nrChannels); + if (file->fail()) + return 0; + std::cout<< "data[" << nrChannels << "]: "; + for (int i = 0;iread((char*)&nr_boards,2); + if (nr_boards==4) break; + } + if ( nr_boards!=4){ + std::cerr << "Resync failed." << std::endl; + return 0; + } + + } + //std::cout << " nr_boards: " << nr_boards << std::endl; + //Read channel counts + unsigned short* channel_counts = new unsigned short[nr_boards]; + file->read((char*)channel_counts,nr_boards*2); + if (file->fail()) + { + delete[] channel_counts; + return 0; + } + + + + //Read board frames + resize(nr_boards); + for (int board_nr = 0; board_nr < nr_boards; board_nr++) + { + // std::cout << " channel_counts[" << board_nr << "]: "<< channel_counts[board_nr] << std::endl; + + boards[board_nr].resize(channel_counts[board_nr]); + if (boards[board_nr].read(file) == 0)//read the board + { + delete[] channel_counts; + return 0; + } + } + + delete[] channel_counts; + return 1; + }; + + int nrChannels() + { + int result = 0; + for (int board_nr = 0; board_nr < nrBoards; board_nr++) + result += boards[board_nr].nrChannels; + return result; + }; + + unsigned short& operator[] (int index) + { + for (int board_nr = 0; board_nr < nrBoards; board_nr++) + { + if (index >= boards[board_nr].nrChannels) + index -= boards[board_nr].nrChannels; + else + return boards[board_nr][index]; + } + + std::cerr << " ### Fullframe::operator[]: index out of range!" << std::endl; + // return (*NULL); //this will cause crash (intended). + return boards[nrBoards][index]; + }; + + int nrBoards; + Boardframe* boards; +}; + +//*********************** Hitdata ************************* + +class Hitdata +{ + public: + Hitdata(int nr_frames = 0) + { + frames = NULL; + resize(nr_frames); + }; + + Hitdata(const Hitdata& in) + { + frames = NULL; + resize(in.nrFrames); + for (int i = 0; i < nrFrames; i++) + frames[i] = in.frames[i]; + }; + + Hitdata& operator=(const Hitdata& in) + { + resize(in.nrFrames); + for (int i = 0; i < nrFrames; i++) + frames[i] = in.frames[i]; + + return *this; + }; + + ~Hitdata() + { + if (nrFrames) + delete[] frames; + }; + + void resize (int nr_frames) + { + if (nrFrames) + delete[] frames; + nrFrames = nr_frames; + if (nrFrames) + frames = new Fullframe[nrFrames]; + else + frames = NULL; + }; + + //Read data from a given file. + //first_frame is the number of first frame to be read + //nr_frames is the maximum number of frames to be read + //-1 to read all of them + //increment allows you reading once every nth sample + //Return number of frames read or 0 in case of failure + int readFile(char* filename, int first_frame = 1, int nr_frames = -1, int increment = 1) + { + std::ifstream file; + //Open the file + file.open(filename, ios_base::in | ios_base::binary); + if (!file.is_open()) + { + std::cerr << " ### Hitdata: File could not be open!" << std::endl; + return 0; //file could not be opened + } + + //Read first record to find board configuration + Fullframe sampleframe; + if (sampleframe.read(&file) == 0) + { + std::cerr << " ### Hitdata: First frame could not be read!" << std::endl; + file.close(); + return 0; + } + else { + std::cout << "Sample frame size (bytes): " << sampleframe.sizeInFile() << std::endl; + } + + //Check file size + file.seekg(0, std::ios::beg); + std::streamsize fsize = file.tellg(); + file.seekg(0, std::ios::end); + fsize = file.tellg() - fsize; + + //Determine real frames to read + unsigned int max_frames = fsize / sampleframe.sizeInFile(); + if ((max_frames == -1) || (max_frames < nr_frames)) + nr_frames = max_frames; + + std::cout << " Hitdata: Nr frames to be read: " << nr_frames << std::endl; + + //Read! + // resize(nr_frames); //make an array of Fullframes called frames of size nr_frames + file.seekg(first_frame * sampleframe.sizeInFile(), std::ios::beg); + for (int frame_nr = first_frame; frame_nr < nr_frames; frame_nr++) + { + if ((frame_nr%10000) == 0) + std::cout << " Frame " << frame_nr << std::endl; + + file.seekg((frame_nr*increment) * sampleframe.sizeInFile() , std::ios::beg); + if (file.eof()) { + std::cerr<< "end of file reached." << std::endl; + return frame_nr; + } + if ( sampleframe.read(&file) == 0) //read the next frame + { + std::cerr << " ### Hitdata: Frame " << frame_nr << " could not be read!" << std::endl; + file.close(); //read error, finish! + // frames = frame_nr; //Kinky! We decrease nr_frames, but the actual array size remains unchanged! + ///???? I don't know what the above line does. + return frame_nr; + } + // std::cout << frames[frame_nr].nrBoards << std::endl; + } + + //Finished + file.close(); + return nr_frames; + }; + + Fullframe& operator[] (int index) + { + if (index < nrFrames) + return frames[index]; + else + { + std::cerr << " ### Hitdata::operator[]: index out of range!" << std::endl; + // return (*NULL); //this will cause crash (intended). + return frames[index]; + + } + }; + + int nrFrames; + Fullframe* frames; +}; + + + + + + diff --git a/Scripts_20210119/Scripts_20210119/Makefile b/Scripts_20210119/Scripts_20210119/Makefile new file mode 100644 index 0000000..28199df --- /dev/null +++ b/Scripts_20210119/Scripts_20210119/Makefile @@ -0,0 +1,38 @@ + +ROOTCFLAGS := $(shell root-config --cflags) +ROOTLIBS := $(shell root-config --libs) +ROOTGLIBS := $(shell root-config --glibs) + +GSLCFLAGS := $(shell gsl-config --cflags) +GSLLIBS := $(shell gsl-config --libs) +GSLGLIBS := $(shell gsl-config --glibs) + + +LDFLAGS = -O +LIBS += $(ROOTLIBS) $(GSLLIBS) +CFLAGS += $(ROOTCFLAGS) $(GSLCFLAGS) #-std=gnu++11 + +# Not sure why Minuit isn't being included -- put in by hand +# +LIBS += -lMinuit + + +all: hit_analyse_v2 + + + +hit_analyse_v2: hit_analyse_v2.o + g++ -o hit_analyse_v2 hit_analyse_v2.o $(LDFLAGS) $(LIBS) + +%.o: %.c + g++ ${CFLAGS} -c -g $< + + +test: + @echo $(ROOTCFLAGS) + @echo $(LDFLAGS) + @echo $(LIBS) + +clean: + -rm -f *.o + diff --git a/Scripts_20210119/Scripts_20210119/hit_analyse_v2 b/Scripts_20210119/Scripts_20210119/hit_analyse_v2 new file mode 100755 index 0000000..3da64f0 Binary files /dev/null and b/Scripts_20210119/Scripts_20210119/hit_analyse_v2 differ diff --git a/Scripts_20210119/Scripts_20210119/hit_analyse_v2.c b/Scripts_20210119/Scripts_20210119/hit_analyse_v2.c new file mode 100644 index 0000000..5af3e17 --- /dev/null +++ b/Scripts_20210119/Scripts_20210119/hit_analyse_v2.c @@ -0,0 +1,440 @@ +#define hit_analyse_v2_cxx +#include "hit_analyse_v2.h" + +int main(int argc, char **argv){ + + opendatafiles(argc, argv); + histograms(argc, argv); + analyse(argc, argv); + closedatafiles(); + return 0; +} + +int opendatafiles(int argc, char ** argv){ + if (argc>2){ + //open bpm data file + filename = Form("%s%s.da2",argv[1],argv[2]); + file.open(filename, ifstream::in | ifstream::binary); + + if (!file.is_open()) + { + std::cerr << " ### Hitdata: File could not be opened!" << filename << std::endl; + return 0; //file could not be opened + } + else {std::cout << filename << " opened successfully." << std::endl;} + } + string visualize_check = argv[5]; //plot data + if (visualize_check == "vis_true") {visualize = true;} + else{ visualize= false;} + + return 1; +} + +int closedatafiles(){ + + if (file.is_open()) file.close(); + // if (timestampfile.is_open()) timestampfile.close(); + //if (offsetfile.is_open()) offsetfile.close(); + + rootFile->Write(); + rootFile->Close(); +} + + +int analyse(int argc, char **argv) +{ + int first_frame = 0; // 1440000 + int nr_frames = -1; + int increment = 1; + + + + + //Read first record to find board configuration + Fullframe sampleframe; + if (sampleframe.read(&file) == 0) + { + std::cerr << " ### Hitdata: First frame could not be read!" << std::endl; + file.close(); + return 0; + } + else { + std::cout << "Sample frame size (bytes): " << sampleframe.sizeInFile() << std::endl; + } + + //Check file size + file.seekg(0, std::ios::beg); + std::streamsize fsize = file.tellg(); + file.seekg(0, std::ios::end); + fsize = file.tellg() - fsize; + + //Determine real frames to read + unsigned int max_frames = fsize / sampleframe.sizeInFile(); + if ((max_frames == -1) || (max_frames < nr_frames)) + nr_frames = max_frames; + + std::cout << " Hitdata: Nr frames to be read: " << nr_frames << std::endl; + + ///set the background levels from first N events + int bkg_frames = 1000; + if (set_background_v2(0, bkg_frames)==0) return 0; + + BPMbeamrecon_Zeroed.Position = -128.; + BPMbeamrecon_Zeroed.Focus = -1.; + BPMbeamrecon_Zeroed.Peak = -1.; + BPMbeamrecon_Zeroed.Position = -128.; + BPMbeamrecon_Zeroed.Rsqr = -1.; + BPMbeamrecon_Zeroed.Skew = -128.; + BPMbeamrecon_Zeroed.Position = -128.; + BPMbeamrecon_Zeroed.Sum = 0.; + BPMbeamrecon_Zeroed.n_channels = 0; + + //read board + //Read! + std::cout << "Reading data starting from frame: " << first_frame << std::endl; + file.seekg(first_frame * sampleframe.sizeInFile(), std::ios::beg); + for (int frame_nr = first_frame; frame_nr < nr_frames; frame_nr++) + { + eventID=frame_nr; + if ((frame_nr%100000) == 0) + std::cout << " Frame " << frame_nr << std::endl; + + file.seekg((frame_nr*increment) * sampleframe.sizeInFile() , std::ios::beg); + if (sampleframe.read(&file) == 0) //read the next frame and catch if returns error + { + std::cerr << " ### Hitdata: Frame " << frame_nr << " could not be read! Stopping." << std::endl; + file.close(); //read error, finish! + return 0; + } + for (int boardnumber = 0; boardnumber<4; boardnumber++){ + board_b[boardnumber] = readboard(sampleframe,boardnumber);//a bit redundant but does some analysis + // std::cout << board_b[0].integratedsignalamp << std::endl; + if (boardnumber==0&&board_b[0].integratedsignalamp>1000 && board_b[0].maxchannel_amp>100.){ + BPMbeamrecon_0 = beamreconstruction(board_b[0], 80.); // do the linear regression fit of the beam; + // std::cout << "doing regression" << std::endl; + } + else if (boardnumber==0) {BPMbeamrecon_0=BPMbeamrecon_Zeroed;} + + if (boardnumber==1&&board_b[1].integratedsignalamp>1000 && board_b[1].maxchannel_amp>100.){ + BPMbeamrecon_1 = beamreconstruction(board_b[1], 80.); // do the linear regression fit of the beam; + // std::cout << "doing regression" << std::endl; + } + else if (boardnumber==1) {BPMbeamrecon_1=BPMbeamrecon_Zeroed;} + if (boardnumber==2&&board_b[2].integratedsignalamp>1000 && board_b[2].maxchannel_amp>100.){ + BPMbeamrecon_2 = beamreconstruction(board_b[2], 80.); // do the linear regression fit of the beam; + // std::cout << "doing regression" << std::endl; + } + else if (boardnumber==2) {BPMbeamrecon_2=BPMbeamrecon_Zeroed;} + if (boardnumber==3&&board_b[3].integratedsignalamp>1000 && board_b[3].maxchannel_amp>100.){ + BPMbeamrecon_3 = beamreconstruction(board_b[3], 80.); // do the linear regression fit of the beam; + // std::cout << "doing regression" << std::endl; + } + else if (boardnumber==3) {BPMbeamrecon_3=BPMbeamrecon_Zeroed;} + + } + for (int j = 0;j<320;j++){ + if (board_b[0].maxchannel_amp>100.) TH2D_b0_signal_vs_channel->Fill(j, board_b[0].channel_amp[j]); + if (board_b[1].maxchannel_amp>100.) TH2D_b1_signal_vs_channel->Fill(j, board_b[1].channel_amp[j]); + if (board_b[2].maxchannel_amp>100.) TH2D_b2_signal_vs_channel->Fill(j, board_b[2].channel_amp[j]); + if (board_b[3].maxchannel_amp>100.) TH2D_b3_signal_vs_channel->Fill(j, board_b[3].channel_amp[j]); + + } + rootTree->Fill(); + + } + + + return 1; +} + +void histograms(int fargc, char ** argv){ + + //open output root file + rootfilename = Form("%s/root/%s.root",argv[1],argv[2]); + rootFile = new TFile(rootfilename,"RECREATE"); + if ( rootFile->IsOpen() ) {printf("ROOT file opened successfully\n"); + } + else { printf("ROOT file failed to open. \n");} + rootTree = new TTree("t","HIT Data Root Tree"); + rootTree ->Branch("BPMbeamrecon_0", &BPMbeamrecon_0, "Position/D:Focus:Peak:Rsqr:Skew:Kurtosis:Sum:n_channels/I"); + rootTree ->Branch("BPMbeamrecon_1", &BPMbeamrecon_1, "Position/D:Focus:Peak:Rsqr:Skew:Kurtosis:Sum:n_channels/I"); + rootTree ->Branch("BPMbeamrecon_2", &BPMbeamrecon_2, "Position/D:Focus:Peak:Rsqr:Skew:Kurtosis:Sum:n_channels/I"); + rootTree ->Branch("BPMbeamrecon_3", &BPMbeamrecon_3, "Position/D:Focus:Peak:Rsqr:Skew:Kurtosis:Sum:n_channels/I"); + + rootTree ->Branch("eventID",&eventID,"eventID/I"); + + TH2D_b0_signal_vs_channel = new TH2D("TH2D_b0_signal_vs_channel","TH2D_b0_signal_vs_channel",320,0,320,1200,-2000,20000); + TH2D_b1_signal_vs_channel = new TH2D("TH2D_b1_signal_vs_channel","TH2D_b1_signal_vs_channel",320,0,320,1200,-2000,20000); + TH2D_b2_signal_vs_channel = new TH2D("TH2D_b2_signal_vs_channel","TH2D_b2_signal_vs_channel",320,0,320,1200,-2000,20000); + TH2D_b3_signal_vs_channel = new TH2D("TH2D_b3_signal_vs_channel","TH2D_b3_signal_vs_channel",320,0,320,1200,-2000,20000); + +} + + +//Function for average +double avg ( vector v ) +{ + double return_value = 0.0; + int n = v.size(); + + for ( int i=0; i < n; i++) + { + return_value += v[i].chnumber; + } + + return ( return_value / double(n)); +} +//****************End of average funtion**************** + + +//Function for variance +double variance ( vector v , double mean ) +{ + double sum = 0.0; + double temp =0.0; + double var =0.0; + + for ( int j =0; j < v.size(); j++) + { + temp = pow((v[j].chnumber - mean) , 2); + sum += temp; + } + + return var = sum/double(v.size() -2); +} +//****************End of variance funtion**************** + + +int set_background_v2(int start_frame, int max_frames){ + std::cout << "Setting background levels." << std::endl; + for (int j = 0; j<320; j++){ + for (int k = 0; k<4; k++){ + board_b_bkg[k].channel_amp[j] = 0.; + } + } + + //Read first record to find board configuration + Fullframe sampleframe; + + //Read + // file.seekg(sampleframe.sizeInFile(), std::ios::beg); + for (int frame_nr = start_frame; frame_nr < max_frames; frame_nr++) + { + file.seekg(frame_nr * sampleframe.sizeInFile() , std::ios::beg); + if (sampleframe.read(&file) == 0) //read the next frame and catch if returns error + { + std::cerr << " ### Hitdata: Frame " << frame_nr << " could not be read!" << std::endl; + file.close(); //read error, finish! + return 0; + } + for (int boardnumber = 0; boardnumber<4; boardnumber++){ + for (int j = 0; jsensor_data[j] << std::endl; + } + } + } + + std::cout << "Background set." << std::endl; + return 1; +} + +bpm_frame_v2 readboard(Fullframe frame, int boardnumber){ + + bpm_frame_v2 board; + + board.integratedsignalamp = 0.; + board.maxchannel_amp = 0.; + // file.seekg(boardnumber*sizeof(BufferData)+4*frame*sizeof(BufferData)); + //file.read ((char*)dataptr ,sizeof(BufferData)); + + if (frame.boards[boardnumber].syncframe.device_nr==boardnumber){ + for (int j = 0; j board.maxchannel_amp) { + board.maxchannel = j; + board.maxchannel_amp = board.channel_amp[j]; + // cout << maxchannel_b0 << " " < signal_list; + vector channel_list; + + SumY = 0.; + SumS = 0.; + SumT = 0.; + SumS2 = 0.; + SumST = 0.; + SumT2 = 0.; + SumYS = 0.; + SumYT = 0.; + b_den = 0.; + b_num = 0.; + b = 0.; + p = 0.; + c = 0.; + SumYYM = 0.; + SumYYP = 0.; + MeanY = 0.; + + + // const int array_length = sizeof(frametoanalyse.channel_amp)/sizeof(double); + const int array_length = 320; + vector channel_reducedlist; //for anomaly detection + vector channel_reducedlistcopy; //for anomaly detection + + Channel tmp; + + int temp_lastneighbour= -128; + for (int i = 0; i< array_length; i++){ + if (frametoanalyse.channel_amp[i]>=threshold) { + // cout << "ch: " << i << endl; + // signal_list.push_back(frametoanalyse.channel_amp[i]); + // channel_list.push_back(frametoanalyse.channel_position[i]); + tmp.amplitude = frametoanalyse.channel_amp[i]; + tmp.position = frametoanalyse.channel_position[i]; + tmp.chnumber = i; + tmp.last_neighbour = temp_lastneighbour; + temp_lastneighbour = i ; + channel_reducedlist.push_back(tmp); + if (channel_reducedlist.size()>1){ + channel_reducedlist[channel_reducedlist.size() - 2].next_neighbour = i; + } + + } + } + + //anomaly detection + //remove channels without neighbours. + for (int i = 0; i2){ + cluster_average = avg(channel_reducedlistcopy); + cluster_variance = variance(channel_reducedlistcopy, cluster_average); + // cout << cluster_average << " " << cluster_variance << endl; + } + + //include all channels +/- 2*variance of the main cluster + for (int i = 0; i< array_length; i++){ + if (abs(i-cluster_average)<2*cluster_variance){ + signal_list.push_back(frametoanalyse.channel_amp[i]); + channel_list.push_back(frametoanalyse.channel_position[i]); + } + } + // sort(channel_reducedlist.begin(),channel_reducedlist.end(),CompareChannels); + + + + + const int vector_length = channel_list.size(); + beam.n_channels = vector_length; + beam.Sum = std::accumulate(signal_list.begin(), signal_list.end(),0); + if (vector_length<=3) return beam; + + double S[vector_length]; + double T[vector_length]; + + + + + for(int k=0; k y = b*exp(-p*(x-c)*(x-c)) + p = -ABC(0)/2.; c = -ABC(1)/ABC(0); + + for(int k=0; k +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include "TStopwatch.h" +#include "Math/MinimizerOptions.h" +#include "TVirtualFitter.h" +#include "TMatrixD.h" +#include "TApplication.h" +#include "TRint.h" +#include "TSystem.h" +#include "TMultiGraph.h" +#include "TObject.h" + +//function declarations +int analyse(int argc, char **argv); +int opendatafiles(int argc, char ** argv); +void histograms(int argc, char ** argv); +int closedatafiles(); +int set_background_v2(int start_frame, int frames); + + +//////global variables + +//opendatafiles +long int fileframesize; +char * filename; +ifstream file; +TFile *rootFile; //output root file +TTree *rootTree; +char * rootfilename; +char * offsetfilename; +ifstream offsetfile; + +struct bpm_frame_v2 { + double channel_amp[320]; + double channel_position[320]; + double avg_position; + double avg_width; + double integratedsignalamp; + int maxchannel; + double maxchannel_amp; +}; + + +bpm_frame_v2 board_b[4]; +bpm_frame_v2 board_b_bkg[4]; + + +bpm_frame_v2 readboard(Fullframe frame, int boardnumber); +int framestart = 0; + +struct beamRecon { + + double Position; + double Focus; + double Peak; + double Rsqr; + double Skew; + double Kurtosis; + double Sum; + int n_channels; +}; + + +beamRecon beamreconstruction(bpm_frame_v2 frametoanalyse, double threshold); +beamRecon BPMbeamrecon_0,BPMbeamrecon_1,BPMbeamrecon_2,BPMbeamrecon_3; + +beamRecon BPMbeamrecon_Zeroed; + + + +TGraph * board_graph = new TGraph(320); +TF1 * beamrecon_function1 = new TF1("beamrecon_function1", "gaus(0)",0.,320.); + + +class Channel{ + public: + double amplitude;; + double position; + int chnumber; + int last_neighbour; + int next_neighbour; +}; + + +bool CompareChannels(Channel A, Channel B); + +double avg ( vector v ); +double variance ( vector v , double mean ); + +bool visualize = false; +int eventID; + +////histograms +TH2D * TH2D_b0_signal_vs_channel; +TH2D * TH2D_b1_signal_vs_channel; +TH2D * TH2D_b2_signal_vs_channel; +TH2D * TH2D_b3_signal_vs_channel; diff --git a/Scripts_20210119/Scripts_20210119/hitreader.c b/Scripts_20210119/Scripts_20210119/hitreader.c new file mode 100644 index 0000000..df2ee20 --- /dev/null +++ b/Scripts_20210119/Scripts_20210119/hitreader.c @@ -0,0 +1,410 @@ +//This is an object interface for reading HIT data files +//See HIT documentation for details and examples. +/* + .L hitreader.c + + Hitdata data; + data.read(“my_file.da2”); //to load whole file at once – forget it! See below. + data.read(“my_file.da2”,1000,100,10) //to read 100 frames starting from frame 1000 and incrementing by 10 (i.e. frame 1000, 1010, 1020, ... 1990 will be read) + //Reading 10 000 frames is reasonable. Reading 100 000 frames made my VM beg for memory. + + data.nrFrames //to see how many frames you have + data.frames[0].nrBoards //to see how many boards you had in the system + data.frames[0].boards[0].nrChannels //to see how many channels you have in board 0 + data.frames[10].boards[0].data[100] //get signal value for frame 10, board 0, channel 100 + data.frames[10].boards[0].syncframe.local_ctr //get the local synchro counter for frame 10, board 0 + //same for .global_ctr, .sma_state, .dummy, .device_nr, .data_ok + + */ + +//*********************** Helper ************************* + +//#define debug(str) std::cout << "HIT DEBUG: " << str << endl; +#define debug(str) + +//*********************** Syncframe ************************* +class Syncframe +{ + public: + Syncframe() + { + debug("Syncframe()"); + + local_ctr = global_ctr = 0; + sma_state = dummy = 0; + device_nr = -1; + data_ok = 0; + }; + + ~Syncframe() + { + debug("~Syncframe()"); + }; + + int sizeInFile() + { + return 16; + }; + + int read(std::ifstream* file) + { + char buffer[16]; + file->read(buffer,16); + if (file->fail()) + return 0; + local_ctr = *(unsigned short*)(buffer+0); + global_ctr = *(unsigned short*)(buffer+2); + sma_state = *(unsigned short*)(buffer+4); + dummy = *(unsigned short*)(buffer+6); + device_nr = *(int*)(buffer+8); + data_ok = *(int*)(buffer+12); + std::cout << "Syncframe:" << local_ctr << " " << global_ctr << " " << sma_state << " " << dummy << " " << device_nr << " " << data_ok << std::endl; + + return 1; + }; + + + unsigned short local_ctr; + unsigned short global_ctr; + unsigned short sma_state; + unsigned short dummy; + int device_nr; + unsigned int data_ok; +}; + +//*********************** Sensorframe ************************* +class Boardframe +{ + public: + Boardframe(int nr_channels = 0) + { + debug("Boardframe()"); + + data = NULL; + resize (nr_channels); + }; + + Boardframe(const Boardframe& in) + { + debug("Boardframe(Boardframe&)"); + + data = NULL; + resize(in.nrChannels); + for (int i = 0; i < nrChannels; i++) + data[i] = in.data[i]; + syncframe = in.syncframe; + }; + + Boardframe& operator=(const Boardframe& in) + { + debug("Boardframe::operator=="); + + resize(in.nrChannels);//creates an array called data of length nrChannels + for (int i = 0; i < nrChannels; i++) + data[i] = in.data[i]; + syncframe = in.syncframe; + return *this; + }; + + ~Boardframe() + { + debug("~Boardframe()"); + + if (data) + delete[] data; + }; + + void resize(int nr_channels) + { + if (data) + delete[] data; + nrChannels = nr_channels; + if (nrChannels) + data = new unsigned short[nrChannels]; + else + data = NULL; + }; + + int sizeInFile() + { + return syncframe.sizeInFile() + nrChannels*2; + }; + + int read(std::ifstream* file) + { + if (syncframe.read(file) == 0)//get the syncframe before the board data + return 0; + //I must be already resized at this point! + file->read((char*)data,2*nrChannels); + if (file->fail()) + return 0; + std::cout<< "data[" << nrChannels << "]: "; + for (int i = 0;iread((char*)&nr_boards,2); + if (file->fail() || nr_boards>6){ + std::cerr << "Unrealistic number of board to be read:"<< nr_boards << std:endl; + return 0; + } + std::cout << " nr_boards: " << nr_boards << std::endl; + //Read channel counts + unsigned short* channel_counts = new unsigned short[nr_boards]; + file->read((char*)channel_counts,nr_boards*2); + if (file->fail()) + { + delete[] channel_counts; + return 0; + } + + + + //Read board frames + resize(nr_boards); + for (int board_nr = 0; board_nr < nr_boards; board_nr++) + { + std::cout << " channel_counts[" << board_nr << "]: "<< channel_counts[board_nr] << std::endl; + + boards[board_nr].resize(channel_counts[board_nr]); + if (boards[board_nr].read(file) == 0)//read the board + { + delete[] channel_counts; + return 0; + } + } + + delete[] channel_counts; + return 1; + }; + + int nrChannels() + { + int result = 0; + for (int board_nr = 0; board_nr < nrBoards; board_nr++) + result += boards[board_nr].nrChannels; + return result; + }; + + unsigned short& operator[] (int index) + { + for (int board_nr = 0; board_nr < nrBoards; board_nr++) + { + if (index >= boards[board_nr].nrChannels) + index -= boards[board_nr].nrChannels; + else + return boards[board_nr][index]; + } + + std::cerr << " ### Fullframe::operator[]: index out of range!" << std::endl; + // return (*NULL); //this will cause crash (intended). + return boards[nrBoards][index]; + }; + + int nrBoards; + Boardframe* boards; +}; + +//*********************** Hitdata ************************* + +class Hitdata +{ + public: + Hitdata(int nr_frames = 0) + { + frames = NULL; + resize(nr_frames); + }; + + Hitdata(const Hitdata& in) + { + frames = NULL; + resize(in.nrFrames); + for (int i = 0; i < nrFrames; i++) + frames[i] = in.frames[i]; + }; + + Hitdata& operator=(const Hitdata& in) + { + resize(in.nrFrames); + for (int i = 0; i < nrFrames; i++) + frames[i] = in.frames[i]; + + return *this; + }; + + ~Hitdata() + { + if (nrFrames) + delete[] frames; + }; + + void resize (int nr_frames) + { + if (nrFrames) + delete[] frames; + nrFrames = nr_frames; + if (nrFrames) + frames = new Fullframe[nrFrames]; + else + frames = NULL; + }; + + //Read data from a given file. + //first_frame is the number of first frame to be read + //nr_frames is the maximum number of frames to be read + //-1 to read all of them + //increment allows you reading once every nth sample + //Return number of frames read or 0 in case of failure + int readFile(char* filename, int first_frame = 0, int nr_frames = -1, int increment = 1) + { + std::ifstream file; + //Open the file + file.open(filename, ios_base::in | ios_base::binary); + if (!file.is_open()) + { + std::cerr << " ### Hitdata: File could not be open!" << std::endl; + return 0; //file could not be opened + } + + //Read first record to find board configuration + Fullframe sampleframe; + if (sampleframe.read(&file) == 0) + { + std::cerr << " ### Hitdata: First frame could not be read!" << std::endl; + file.close(); + return 0; + } + + //Check file size + file.seekg(0, std::ios::beg); + std::streamsize fsize = file.tellg(); + file.seekg(0, std::ios::end); + fsize = file.tellg() - fsize; + + //Determine real frames to read + unsigned int max_frames = (fsize / sampleframe.sizeInFile() - first_frame) / increment; + if ((max_frames == -1) || (max_frames < nr_frames)) + nr_frames = max_frames; + + std::cout << " Hitdata: Nr frames to be read: " << nr_frames << std::endl; + + //Read! + resize(nr_frames); //make an array called frames of size nr_frames + file.seekg(first_frame * sampleframe.sizeInFile(), std::ios::beg); + for (int frame_nr = 0; frame_nr < nr_frames; frame_nr++) + { + // if ((frame_nr%100) == 0) + std::cout << " Frame " << frame_nr << std::endl; + + file.seekg((first_frame + frame_nr*increment) * sampleframe.sizeInFile(), std::ios::beg); + if (frames[frame_nr].read(&file) == 0) //read the next frame + { + std::cerr << " ### Hitdata: Frame " << frame_nr << " could not be read!" << std::endl; + file.close(); //read error, finish! + // frames = frame_nr; //Kinky! We decrease nr_frames, but the actual array size remains unchanged! + ///???? I don't know what the above line does. + return frame_nr; + } + std::cout << frames[frame_nr].nrBoards << std::endl; + } + + //Finished + file.close(); + return nr_frames; + }; + + Fullframe& operator[] (int index) + { + if (index < nrFrames) + return frames[index]; + else + { + std::cerr << " ### Hitdata::operator[]: index out of range!" << std::endl; + // return (*NULL); //this will cause crash (intended). + return frames[index]; + + } + }; + + int nrFrames; + Fullframe* frames; +}; + + + + + + diff --git a/Scripts_20210119/Scripts_20210119/hitreader.h b/Scripts_20210119/Scripts_20210119/hitreader.h new file mode 100644 index 0000000..4af0858 --- /dev/null +++ b/Scripts_20210119/Scripts_20210119/hitreader.h @@ -0,0 +1,440 @@ +//This is an object interface for reading HIT data files +//See HIT documentation for details and examples. +/* + .L hitreader.c + + Hitdata data; + data.read(“my_file.da2”); //to load whole file at once – forget it! See below. + data.read(“my_file.da2”,1000,100,10) //to read 100 frames starting from frame 1000 and incrementing by 10 (i.e. frame 1000, 1010, 1020, ... 1990 will be read) + //Reading 10 000 frames is reasonable. Reading 100 000 frames made my VM beg for memory. + + data.nrFrames //to see how many frames you have + data.frames[0].nrBoards //to see how many boards you had in the system + data.frames[0].boards[0].nrChannels //to see how many channels you have in board 0 + data.frames[10].boards[0].data[100] //get signal value for frame 10, board 0, channel 100 + data.frames[10].boards[0].syncframe.local_ctr //get the local synchro counter for frame 10, board 0 + //same for .global_ctr, .sma_state, .dummy, .device_nr, .data_ok + + */ + +//*********************** Helper ************************* +#include +#include + +using namespace std; + +//#define debug(str) std::cout << "HIT DEBUG: " << str << endl; +#define debug(str) + +//*********************** Syncframe ************************* +class Syncframe +{ + public: + Syncframe() + { + debug("Syncframe()"); + + local_ctr = global_ctr = 0; + sma_state = dummy = 0; + device_nr = -1; + data_ok = 0; + }; + + ~Syncframe() + { + debug("~Syncframe()"); + }; + + int sizeInFile() + { + return 16; + }; + + int read(std::ifstream* file) + { + char buffer[16]; + file->read(buffer,16); + if (file->fail()) + return 0; + local_ctr = *(unsigned short*)(buffer+0); + global_ctr = *(unsigned short*)(buffer+2); + sma_state = *(unsigned short*)(buffer+4); + dummy = *(unsigned short*)(buffer+6); + device_nr = *(int*)(buffer+8); + data_ok = *(int*)(buffer+12); + // std::cout << "Syncframe:" << local_ctr << " " << global_ctr << " " << sma_state << " " << dummy << " " << device_nr << " " << data_ok << std::endl; + + return 1; + }; + + + unsigned short local_ctr; + unsigned short global_ctr; + unsigned short sma_state; + unsigned short dummy; + int device_nr; + unsigned int data_ok; +}; + +//*********************** Sensorframe ************************* +class Boardframe +{ + public: + Boardframe(int nr_channels = 0) + { + debug("Boardframe()"); + + data = NULL; + resize (nr_channels); + }; + + Boardframe(const Boardframe& in) + { + debug("Boardframe(Boardframe&)"); + + data = NULL; + resize(in.nrChannels); + for (int i = 0; i < nrChannels; i++) + data[i] = in.data[i]; + syncframe = in.syncframe; + }; + + Boardframe& operator=(const Boardframe& in) + { + debug("Boardframe::operator=="); + + resize(in.nrChannels);//creates an array called data of length nrChannels + for (int i = 0; i < nrChannels; i++) + data[i] = in.data[i]; + syncframe = in.syncframe; + return *this; + }; + + ~Boardframe() + { + debug("~Boardframe()"); + + if (data) + delete[] data; + }; + + void resize(int nr_channels) + { + if (data) + delete[] data; + nrChannels = nr_channels; + if (nrChannels) + data = new unsigned short[nrChannels]; + else + data = NULL; + }; + + int sizeInFile() + { + // std::cout << "boardframe.sizeInFile() = " << syncframe.sizeInFile() + nrChannels*2 << std::endl; + return syncframe.sizeInFile() + nrChannels*2; + + }; + + int read(std::ifstream* file) + { + if (syncframe.read(file) == 0)//get the syncframe before the board data + return 0; + //I must be already resized at this point! + file->read((char*)data,2*nrChannels); + if (file->fail()) + return 0; + // std::cout<< "data[" << nrChannels << "]: "; + // for (int i = 0;iread((char*)&nr_boards,2); + if (nr_boards==4) break; + } + if ( nr_boards!=4){ + std::cerr << "Resync failed." << std::endl; + return 0; + } + + } + //std::cout << " nr_boards: " << nr_boards << std::endl; + //Read channel counts + unsigned short* channel_counts = new unsigned short[nr_boards]; + file->read((char*)channel_counts,nr_boards*2); + if (file->fail()) + { + delete[] channel_counts; + return 0; + } + + + + //Read board frames + resize(nr_boards); + for (int board_nr = 0; board_nr < nr_boards; board_nr++) + { + // std::cout << " channel_counts[" << board_nr << "]: "<< channel_counts[board_nr] << std::endl; + + boards[board_nr].resize(channel_counts[board_nr]); + if (boards[board_nr].read(file) == 0)//read the board + { + delete[] channel_counts; + return 0; + } + } + + delete[] channel_counts; + return 1; + }; + + int nrChannels() + { + int result = 0; + for (int board_nr = 0; board_nr < nrBoards; board_nr++) + result += boards[board_nr].nrChannels; + return result; + }; + + unsigned short& operator[] (int index) + { + for (int board_nr = 0; board_nr < nrBoards; board_nr++) + { + if (index >= boards[board_nr].nrChannels) + index -= boards[board_nr].nrChannels; + else + return boards[board_nr][index]; + } + + std::cerr << " ### Fullframe::operator[]: index out of range!" << std::endl; + // return (*NULL); //this will cause crash (intended). + return boards[nrBoards][index]; + }; + + int nrBoards; + Boardframe* boards; +}; + +//*********************** Hitdata ************************* + +class Hitdata +{ + public: + Hitdata(int nr_frames = 0) + { + frames = NULL; + resize(nr_frames); + }; + + Hitdata(const Hitdata& in) + { + frames = NULL; + resize(in.nrFrames); + for (int i = 0; i < nrFrames; i++) + frames[i] = in.frames[i]; + }; + + Hitdata& operator=(const Hitdata& in) + { + resize(in.nrFrames); + for (int i = 0; i < nrFrames; i++) + frames[i] = in.frames[i]; + + return *this; + }; + + ~Hitdata() + { + if (nrFrames) + delete[] frames; + }; + + void resize (int nr_frames) + { + if (nrFrames) + delete[] frames; + nrFrames = nr_frames; + if (nrFrames) + frames = new Fullframe[nrFrames]; + else + frames = NULL; + }; + + //Read data from a given file. + //first_frame is the number of first frame to be read + //nr_frames is the maximum number of frames to be read + //-1 to read all of them + //increment allows you reading once every nth sample + //Return number of frames read or 0 in case of failure + int readFile(char* filename, int first_frame = 1, int nr_frames = -1, int increment = 1) + { + std::ifstream file; + //Open the file + file.open(filename, ios_base::in | ios_base::binary); + if (!file.is_open()) + { + std::cerr << " ### Hitdata: File could not be open!" << std::endl; + return 0; //file could not be opened + } + + //Read first record to find board configuration + Fullframe sampleframe; + if (sampleframe.read(&file) == 0) + { + std::cerr << " ### Hitdata: First frame could not be read!" << std::endl; + file.close(); + return 0; + } + else { + std::cout << "Sample frame size (bytes): " << sampleframe.sizeInFile() << std::endl; + } + + //Check file size + file.seekg(0, std::ios::beg); + std::streamsize fsize = file.tellg(); + file.seekg(0, std::ios::end); + fsize = file.tellg() - fsize; + + //Determine real frames to read + unsigned int max_frames = fsize / sampleframe.sizeInFile(); + if ((max_frames == -1) || (max_frames < nr_frames)) + nr_frames = max_frames; + + std::cout << " Hitdata: Nr frames to be read: " << nr_frames << std::endl; + + //Read! + // resize(nr_frames); //make an array of Fullframes called frames of size nr_frames + file.seekg(first_frame * sampleframe.sizeInFile(), std::ios::beg); + for (int frame_nr = first_frame; frame_nr < nr_frames; frame_nr++) + { + if ((frame_nr%10000) == 0) + std::cout << " Frame " << frame_nr << std::endl; + + file.seekg((frame_nr*increment) * sampleframe.sizeInFile() , std::ios::beg); + if (file.eof()) { + std::cerr<< "end of file reached." << std::endl; + return frame_nr; + } + if ( sampleframe.read(&file) == 0) //read the next frame + { + std::cerr << " ### Hitdata: Frame " << frame_nr << " could not be read!" << std::endl; + file.close(); //read error, finish! + // frames = frame_nr; //Kinky! We decrease nr_frames, but the actual array size remains unchanged! + ///???? I don't know what the above line does. + return frame_nr; + } + // std::cout << frames[frame_nr].nrBoards << std::endl; + } + + //Finished + file.close(); + return nr_frames; + }; + + Fullframe& operator[] (int index) + { + if (index < nrFrames) + return frames[index]; + else + { + std::cerr << " ### Hitdata::operator[]: index out of range!" << std::endl; + // return (*NULL); //this will cause crash (intended). + return frames[index]; + + } + }; + + int nrFrames; + Fullframe* frames; +}; + + + + + +