diff --git a/leptonic/create_hists.py b/leptonic/create_hists.py new file mode 100755 index 0000000..80a9033 --- /dev/null +++ b/leptonic/create_hists.py @@ -0,0 +1,113 @@ +#!/usr/bin/env python + +from sys import argv +argv = [] + +import ROOT as root +from array import array + +''' +double weightEWKWZCorr(float mass){ + double value = 1.0; + if (mass<100) value = 1.006; + else if(mass<160) value = 1.006; + else if(mass<180) value = 0.998; + else if(mass<200) value = 0.993; + else if(mass<220) value = 0.993; + else if(mass<250) value = 0.993; + else if(mass<300) value = 0.992; + else if(mass<350) value = 0.990; + else if(mass<430) value = 0.988; + else if(mass<500) value = 0.984; + else if(mass<600) value = 0.980; + else value = 0.975; + return value; +} +''' +bins = array('f', [0, 100, 160, 180, 200, 220, 250, 300, 350, 430, 500, 600, 999]) +vals = array('f', [1.006, 1.006, 0.998, 0.993, 0.993, 0.993, 0.992, 0.990, 0.988, 0.984, 0.980, 0.975]) +h1 = root.TH1D('hEWKWZCorr', '', len(bins)-1, bins) +for ib, val in enumerate(vals): + h1.SetBinContent(ib+1, val) + + +''' +float kfactor_qqZZ_qcd_M(float GENmassZZ, int finalState = 2) +{ + + // finalState=1 : 4e/4mu/4tau + // finalState=2 : 2e2mu/2mutau/2e2tau + + float k=0.0; + + if (finalState==1) { + k+=1.23613311013*(abs(GENmassZZ)>0.0&&abs(GENmassZZ)<=25.0); + k+=1.17550314639*(abs(GENmassZZ)>25.0&&abs(GENmassZZ)<=50.0); + k+=1.17044565911*(abs(GENmassZZ)>50.0&&abs(GENmassZZ)<=75.0); + k+=1.03141209689*(abs(GENmassZZ)>75.0&&abs(GENmassZZ)<=100.0); + k+=1.05285574912*(abs(GENmassZZ)>100.0&&abs(GENmassZZ)<=125.0); + k+=1.11287217794*(abs(GENmassZZ)>125.0&&abs(GENmassZZ)<=150.0); + k+=1.13361441158*(abs(GENmassZZ)>150.0&&abs(GENmassZZ)<=175.0); + k+=1.10355603327*(abs(GENmassZZ)>175.0&&abs(GENmassZZ)<=200.0); + k+=1.10053981637*(abs(GENmassZZ)>200.0&&abs(GENmassZZ)<=225.0); + k+=1.10972676811*(abs(GENmassZZ)>225.0&&abs(GENmassZZ)<=250.0); + k+=1.12069120525*(abs(GENmassZZ)>250.0&&abs(GENmassZZ)<=275.0); + k+=1.11589101635*(abs(GENmassZZ)>275.0&&abs(GENmassZZ)<=300.0); + k+=1.13906170314*(abs(GENmassZZ)>300.0&&abs(GENmassZZ)<=325.0); + k+=1.14854594271*(abs(GENmassZZ)>325.0&&abs(GENmassZZ)<=350.0); + k+=1.14616229031*(abs(GENmassZZ)>350.0&&abs(GENmassZZ)<=375.0); + k+=1.14573157789*(abs(GENmassZZ)>375.0&&abs(GENmassZZ)<=400.0); + k+=1.13829430515*(abs(GENmassZZ)>400.0&&abs(GENmassZZ)<=425.0); + k+=1.15521193686*(abs(GENmassZZ)>425.0&&abs(GENmassZZ)<=450.0); + k+=1.13679822698*(abs(GENmassZZ)>450.0&&abs(GENmassZZ)<=475.0); + k+=1.13223956942*(abs(GENmassZZ)>475.0); + } + + if (finalState==2) { + k+=1.25094466582*(abs(GENmassZZ)>0.0&&abs(GENmassZZ)<=25.0); + k+=1.22459455362*(abs(GENmassZZ)>25.0&&abs(GENmassZZ)<=50.0); + k+=1.19287368979*(abs(GENmassZZ)>50.0&&abs(GENmassZZ)<=75.0); + k+=1.04597506451*(abs(GENmassZZ)>75.0&&abs(GENmassZZ)<=100.0); + k+=1.08323413771*(abs(GENmassZZ)>100.0&&abs(GENmassZZ)<=125.0); + k+=1.09994968030*(abs(GENmassZZ)>125.0&&abs(GENmassZZ)<=150.0); + k+=1.16698455800*(abs(GENmassZZ)>150.0&&abs(GENmassZZ)<=175.0); + k+=1.10399053155*(abs(GENmassZZ)>175.0&&abs(GENmassZZ)<=200.0); + k+=1.10592664340*(abs(GENmassZZ)>200.0&&abs(GENmassZZ)<=225.0); + k+=1.10690381480*(abs(GENmassZZ)>225.0&&abs(GENmassZZ)<=250.0); + k+=1.11194928918*(abs(GENmassZZ)>250.0&&abs(GENmassZZ)<=275.0); + k+=1.13522586553*(abs(GENmassZZ)>275.0&&abs(GENmassZZ)<=300.0); + k+=1.11895090244*(abs(GENmassZZ)>300.0&&abs(GENmassZZ)<=325.0); + k+=1.13898508615*(abs(GENmassZZ)>325.0&&abs(GENmassZZ)<=350.0); + k+=1.15463977506*(abs(GENmassZZ)>350.0&&abs(GENmassZZ)<=375.0); + k+=1.17341664594*(abs(GENmassZZ)>375.0&&abs(GENmassZZ)<=400.0); + k+=1.20093349763*(abs(GENmassZZ)>400.0&&abs(GENmassZZ)<=425.0); + k+=1.18915554919*(abs(GENmassZZ)>425.0&&abs(GENmassZZ)<=450.0); + k+=1.18546007375*(abs(GENmassZZ)>450.0&&abs(GENmassZZ)<=475.0); + k+=1.12864505708*(abs(GENmassZZ)>475.0); + } + + if (k==0.0) return 1.1; + else return k; // if something goes wrong return inclusive k-factor + +} +''' + +xbins = array('f', [0.5, 1.5, 2.5]) +ybins = array('f', [x*25 for x in xrange(20)]) +data = [[1.23613311013, 1.17550314639, 1.17044565911, 1.03141209689, 1.05285574912, 1.11287217794, + 1.13361441158, 1.10355603327, 1.10053981637, 1.10972676811, 1.12069120525, 1.11589101635, + 1.13906170314, 1.14854594271, 1.14616229031, 1.14573157789, 1.13829430515, 1.15521193686, + 1.13679822698, 1.13223956942], + [1.25094466582, 1.22459455362, 1.19287368979, 1.04597506451, 1.08323413771, 1.09994968030, + 1.16698455800, 1.10399053155, 1.10592664340, 1.10690381480, 1.11194928918, 1.13522586553, + 1.11895090244, 1.13898508615, 1.15463977506, 1.17341664594, 1.20093349763, 1.18915554919, + 1.18546007375, 1.12864505708]] +h2 = root.TH2D('hqqZZKfactor', '', len(xbins)-1, xbins, len(ybins)-1, ybins) +for ix, d in enumerate(data): + for iy, v in enumerate(d): + h2.SetBinContent(ix+1, iy+1, v) + +fout = root.TFile('data/leptonic/data.root', 'RECREATE') +fout.WriteTObject(h1) +fout.WriteTObject(h2) +fout.Close() \ No newline at end of file diff --git a/leptonic/data.root b/leptonic/data.root new file mode 100644 index 0000000..c92e3a8 Binary files /dev/null and b/leptonic/data.root differ diff --git a/leptonic/leptonic_Tracking_EfficienciesAndSF_BCDEFGH.root b/leptonic/leptonic_Tracking_EfficienciesAndSF_BCDEFGH.root new file mode 100644 index 0000000..f1ea7dc Binary files /dev/null and b/leptonic/leptonic_Tracking_EfficienciesAndSF_BCDEFGH.root differ diff --git a/leptonic/leptonic_muon_scalefactors_37ifb.root b/leptonic/leptonic_muon_scalefactors_37ifb.root new file mode 100644 index 0000000..0b5574b Binary files /dev/null and b/leptonic/leptonic_muon_scalefactors_37ifb.root differ diff --git a/leptonic/leptonic_scalefactors_80x_dylan_37ifb.root b/leptonic/leptonic_scalefactors_80x_dylan_37ifb.root new file mode 100644 index 0000000..0ce8473 Binary files /dev/null and b/leptonic/leptonic_scalefactors_80x_dylan_37ifb.root differ diff --git a/leptonic/leptonic_scalefactors_80x_egpog_37ifb.root b/leptonic/leptonic_scalefactors_80x_egpog_37ifb.root new file mode 100644 index 0000000..b979e16 Binary files /dev/null and b/leptonic/leptonic_scalefactors_80x_egpog_37ifb.root differ diff --git a/moriond17/CSVv2_Moriond17_B_H.csv b/moriond17/CSVv2_Moriond17_B_H.csv new file mode 100644 index 0000000..466cd5b --- /dev/null +++ b/moriond17/CSVv2_Moriond17_B_H.csv @@ -0,0 +1,1918 @@ +CSVv2;OperatingPoint, measurementType, sysType, jetFlavor, etaMin, etaMax, ptMin, ptMax, discrMin, discrMax, formula +0, mujets, central, 1, -2.4, 2.4, 20, 1000, 0, 1, "0.884016*((1.+(0.0331508*x))/(1.+(0.0285096*x)))" +0, mujets, central, 0, -2.4, 2.4, 20, 1000, 0, 1, "0.884016*((1.+(0.0331508*x))/(1.+(0.0285096*x)))" +0, mujets, down, 1, -2.4, 2.4, 20, 30, 0, 1, "(0.884016*((1.+(0.0331508*x))/(1.+(0.0285096*x))))-0.063606932759284973" +0, mujets, down, 1, -2.4, 2.4, 30, 50, 0, 1, "(0.884016*((1.+(0.0331508*x))/(1.+(0.0285096*x))))-0.034989029169082642" +0, mujets, down, 1, -2.4, 2.4, 50, 70, 0, 1, "(0.884016*((1.+(0.0331508*x))/(1.+(0.0285096*x))))-0.033047597855329514" +0, mujets, down, 1, -2.4, 2.4, 70, 100, 0, 1, "(0.884016*((1.+(0.0331508*x))/(1.+(0.0285096*x))))-0.034643515944480896" +0, mujets, down, 1, -2.4, 2.4, 100, 140, 0, 1, "(0.884016*((1.+(0.0331508*x))/(1.+(0.0285096*x))))-0.033017721027135849" +0, mujets, down, 1, -2.4, 2.4, 140, 200, 0, 1, "(0.884016*((1.+(0.0331508*x))/(1.+(0.0285096*x))))-0.028828304260969162" +0, mujets, down, 1, -2.4, 2.4, 200, 300, 0, 1, "(0.884016*((1.+(0.0331508*x))/(1.+(0.0285096*x))))-0.045852780342102051" +0, mujets, down, 1, -2.4, 2.4, 300, 600, 0, 1, "(0.884016*((1.+(0.0331508*x))/(1.+(0.0285096*x))))-0.045958288013935089" +0, mujets, down, 1, -2.4, 2.4, 600, 1000, 0, 1, "(0.884016*((1.+(0.0331508*x))/(1.+(0.0285096*x))))-0.056262202560901642" +0, mujets, down, 0, -2.4, 2.4, 20, 30, 0, 1, "(0.884016*((1.+(0.0331508*x))/(1.+(0.0285096*x))))-0.025442773476243019" +0, mujets, down, 0, -2.4, 2.4, 30, 50, 0, 1, "(0.884016*((1.+(0.0331508*x))/(1.+(0.0285096*x))))-0.013995612040162086" +0, mujets, down, 0, -2.4, 2.4, 50, 70, 0, 1, "(0.884016*((1.+(0.0331508*x))/(1.+(0.0285096*x))))-0.01321903895586729" +0, mujets, down, 0, -2.4, 2.4, 70, 100, 0, 1, "(0.884016*((1.+(0.0331508*x))/(1.+(0.0285096*x))))-0.013857406564056873" +0, mujets, down, 0, -2.4, 2.4, 100, 140, 0, 1, "(0.884016*((1.+(0.0331508*x))/(1.+(0.0285096*x))))-0.013207088224589825" +0, mujets, down, 0, -2.4, 2.4, 140, 200, 0, 1, "(0.884016*((1.+(0.0331508*x))/(1.+(0.0285096*x))))-0.011531321331858635" +0, mujets, down, 0, -2.4, 2.4, 200, 300, 0, 1, "(0.884016*((1.+(0.0331508*x))/(1.+(0.0285096*x))))-0.01834111288189888" +0, mujets, down, 0, -2.4, 2.4, 300, 600, 0, 1, "(0.884016*((1.+(0.0331508*x))/(1.+(0.0285096*x))))-0.018383314833045006" +0, mujets, down, 0, -2.4, 2.4, 600, 1000, 0, 1, "(0.884016*((1.+(0.0331508*x))/(1.+(0.0285096*x))))-0.022504881024360657" +0, mujets, up, 1, -2.4, 2.4, 20, 30, 0, 1, "(0.884016*((1.+(0.0331508*x))/(1.+(0.0285096*x))))+0.063606932759284973" +0, mujets, up, 1, -2.4, 2.4, 30, 50, 0, 1, "(0.884016*((1.+(0.0331508*x))/(1.+(0.0285096*x))))+0.034989029169082642" +0, mujets, up, 1, -2.4, 2.4, 50, 70, 0, 1, "(0.884016*((1.+(0.0331508*x))/(1.+(0.0285096*x))))+0.033047597855329514" +0, mujets, up, 1, -2.4, 2.4, 70, 100, 0, 1, "(0.884016*((1.+(0.0331508*x))/(1.+(0.0285096*x))))+0.034643515944480896" +0, mujets, up, 1, -2.4, 2.4, 100, 140, 0, 1, "(0.884016*((1.+(0.0331508*x))/(1.+(0.0285096*x))))+0.033017721027135849" +0, mujets, up, 1, -2.4, 2.4, 140, 200, 0, 1, "(0.884016*((1.+(0.0331508*x))/(1.+(0.0285096*x))))+0.028828304260969162" +0, mujets, up, 1, -2.4, 2.4, 200, 300, 0, 1, "(0.884016*((1.+(0.0331508*x))/(1.+(0.0285096*x))))+0.045852780342102051" +0, mujets, up, 1, -2.4, 2.4, 300, 600, 0, 1, "(0.884016*((1.+(0.0331508*x))/(1.+(0.0285096*x))))+0.045958288013935089" +0, mujets, up, 1, -2.4, 2.4, 600, 1000, 0, 1, "(0.884016*((1.+(0.0331508*x))/(1.+(0.0285096*x))))+0.056262202560901642" +0, mujets, up, 0, -2.4, 2.4, 20, 30, 0, 1, "(0.884016*((1.+(0.0331508*x))/(1.+(0.0285096*x))))+0.025442773476243019" +0, mujets, up, 0, -2.4, 2.4, 30, 50, 0, 1, "(0.884016*((1.+(0.0331508*x))/(1.+(0.0285096*x))))+0.013995612040162086" +0, mujets, up, 0, -2.4, 2.4, 50, 70, 0, 1, "(0.884016*((1.+(0.0331508*x))/(1.+(0.0285096*x))))+0.01321903895586729" +0, mujets, up, 0, -2.4, 2.4, 70, 100, 0, 1, "(0.884016*((1.+(0.0331508*x))/(1.+(0.0285096*x))))+0.013857406564056873" +0, mujets, up, 0, -2.4, 2.4, 100, 140, 0, 1, "(0.884016*((1.+(0.0331508*x))/(1.+(0.0285096*x))))+0.013207088224589825" +0, mujets, up, 0, -2.4, 2.4, 140, 200, 0, 1, "(0.884016*((1.+(0.0331508*x))/(1.+(0.0285096*x))))+0.011531321331858635" +0, mujets, up, 0, -2.4, 2.4, 200, 300, 0, 1, "(0.884016*((1.+(0.0331508*x))/(1.+(0.0285096*x))))+0.01834111288189888" +0, mujets, up, 0, -2.4, 2.4, 300, 600, 0, 1, "(0.884016*((1.+(0.0331508*x))/(1.+(0.0285096*x))))+0.018383314833045006" +0, mujets, up, 0, -2.4, 2.4, 600, 1000, 0, 1, "(0.884016*((1.+(0.0331508*x))/(1.+(0.0285096*x))))+0.022504881024360657" +1, mujets, central, 1, -2.4, 2.4, 20, 1000, 0, 1, "0.718014*((1.+(0.0685826*x))/(1.+(0.0475779*x)))" +1, mujets, central, 0, -2.4, 2.4, 20, 1000, 0, 1, "0.718014*((1.+(0.0685826*x))/(1.+(0.0475779*x)))" +1, mujets, down, 1, -2.4, 2.4, 20, 30, 0, 1, "(0.718014*((1.+(0.0685826*x))/(1.+(0.0475779*x))))-0.12166473269462585" +1, mujets, down, 1, -2.4, 2.4, 30, 50, 0, 1, "(0.718014*((1.+(0.0685826*x))/(1.+(0.0475779*x))))-0.055085029453039169" +1, mujets, down, 1, -2.4, 2.4, 50, 70, 0, 1, "(0.718014*((1.+(0.0685826*x))/(1.+(0.0475779*x))))-0.048597507178783417" +1, mujets, down, 1, -2.4, 2.4, 70, 100, 0, 1, "(0.718014*((1.+(0.0685826*x))/(1.+(0.0475779*x))))-0.043902803212404251" +1, mujets, down, 1, -2.4, 2.4, 100, 140, 0, 1, "(0.718014*((1.+(0.0685826*x))/(1.+(0.0475779*x))))-0.042596768587827682" +1, mujets, down, 1, -2.4, 2.4, 140, 200, 0, 1, "(0.718014*((1.+(0.0685826*x))/(1.+(0.0475779*x))))-0.049642853438854218" +1, mujets, down, 1, -2.4, 2.4, 200, 300, 0, 1, "(0.718014*((1.+(0.0685826*x))/(1.+(0.0475779*x))))-0.06421864777803421" +1, mujets, down, 1, -2.4, 2.4, 300, 600, 0, 1, "(0.718014*((1.+(0.0685826*x))/(1.+(0.0475779*x))))-0.070689648389816284" +1, mujets, down, 1, -2.4, 2.4, 600, 1000, 0, 1, "(0.718014*((1.+(0.0685826*x))/(1.+(0.0475779*x))))-0.10414865612983704" +1, mujets, down, 0, -2.4, 2.4, 20, 30, 0, 1, "(0.718014*((1.+(0.0685826*x))/(1.+(0.0475779*x))))-0.040554910898208618" +1, mujets, down, 0, -2.4, 2.4, 30, 50, 0, 1, "(0.718014*((1.+(0.0685826*x))/(1.+(0.0475779*x))))-0.01836167648434639" +1, mujets, down, 0, -2.4, 2.4, 50, 70, 0, 1, "(0.718014*((1.+(0.0685826*x))/(1.+(0.0475779*x))))-0.016199169680476189" +1, mujets, down, 0, -2.4, 2.4, 70, 100, 0, 1, "(0.718014*((1.+(0.0685826*x))/(1.+(0.0475779*x))))-0.014634267427027225" +1, mujets, down, 0, -2.4, 2.4, 100, 140, 0, 1, "(0.718014*((1.+(0.0685826*x))/(1.+(0.0475779*x))))-0.014198922552168369" +1, mujets, down, 0, -2.4, 2.4, 140, 200, 0, 1, "(0.718014*((1.+(0.0685826*x))/(1.+(0.0475779*x))))-0.016547618433833122" +1, mujets, down, 0, -2.4, 2.4, 200, 300, 0, 1, "(0.718014*((1.+(0.0685826*x))/(1.+(0.0475779*x))))-0.02140621654689312" +1, mujets, down, 0, -2.4, 2.4, 300, 600, 0, 1, "(0.718014*((1.+(0.0685826*x))/(1.+(0.0475779*x))))-0.023563217371702194" +1, mujets, down, 0, -2.4, 2.4, 600, 1000, 0, 1, "(0.718014*((1.+(0.0685826*x))/(1.+(0.0475779*x))))-0.034716218709945679" +1, mujets, up, 1, -2.4, 2.4, 20, 30, 0, 1, "(0.718014*((1.+(0.0685826*x))/(1.+(0.0475779*x))))+0.12166473269462585" +1, mujets, up, 1, -2.4, 2.4, 30, 50, 0, 1, "(0.718014*((1.+(0.0685826*x))/(1.+(0.0475779*x))))+0.055085029453039169" +1, mujets, up, 1, -2.4, 2.4, 50, 70, 0, 1, "(0.718014*((1.+(0.0685826*x))/(1.+(0.0475779*x))))+0.048597507178783417" +1, mujets, up, 1, -2.4, 2.4, 70, 100, 0, 1, "(0.718014*((1.+(0.0685826*x))/(1.+(0.0475779*x))))+0.043902803212404251" +1, mujets, up, 1, -2.4, 2.4, 100, 140, 0, 1, "(0.718014*((1.+(0.0685826*x))/(1.+(0.0475779*x))))+0.042596768587827682" +1, mujets, up, 1, -2.4, 2.4, 140, 200, 0, 1, "(0.718014*((1.+(0.0685826*x))/(1.+(0.0475779*x))))+0.049642853438854218" +1, mujets, up, 1, -2.4, 2.4, 200, 300, 0, 1, "(0.718014*((1.+(0.0685826*x))/(1.+(0.0475779*x))))+0.06421864777803421" +1, mujets, up, 1, -2.4, 2.4, 300, 600, 0, 1, "(0.718014*((1.+(0.0685826*x))/(1.+(0.0475779*x))))+0.070689648389816284" +1, mujets, up, 1, -2.4, 2.4, 600, 1000, 0, 1, "(0.718014*((1.+(0.0685826*x))/(1.+(0.0475779*x))))+0.10414865612983704" +1, mujets, up, 0, -2.4, 2.4, 20, 30, 0, 1, "(0.718014*((1.+(0.0685826*x))/(1.+(0.0475779*x))))+0.040554910898208618" +1, mujets, up, 0, -2.4, 2.4, 30, 50, 0, 1, "(0.718014*((1.+(0.0685826*x))/(1.+(0.0475779*x))))+0.01836167648434639" +1, mujets, up, 0, -2.4, 2.4, 50, 70, 0, 1, "(0.718014*((1.+(0.0685826*x))/(1.+(0.0475779*x))))+0.016199169680476189" +1, mujets, up, 0, -2.4, 2.4, 70, 100, 0, 1, "(0.718014*((1.+(0.0685826*x))/(1.+(0.0475779*x))))+0.014634267427027225" +1, mujets, up, 0, -2.4, 2.4, 100, 140, 0, 1, "(0.718014*((1.+(0.0685826*x))/(1.+(0.0475779*x))))+0.014198922552168369" +1, mujets, up, 0, -2.4, 2.4, 140, 200, 0, 1, "(0.718014*((1.+(0.0685826*x))/(1.+(0.0475779*x))))+0.016547618433833122" +1, mujets, up, 0, -2.4, 2.4, 200, 300, 0, 1, "(0.718014*((1.+(0.0685826*x))/(1.+(0.0475779*x))))+0.02140621654689312" +1, mujets, up, 0, -2.4, 2.4, 300, 600, 0, 1, "(0.718014*((1.+(0.0685826*x))/(1.+(0.0475779*x))))+0.023563217371702194" +1, mujets, up, 0, -2.4, 2.4, 600, 1000, 0, 1, "(0.718014*((1.+(0.0685826*x))/(1.+(0.0475779*x))))+0.034716218709945679" +2, mujets, central, 1, -2.4, 2.4, 20, 1000, 0, 1, "0.849497*((1.+(0.01854*x))/(1.+(0.0153613*x)))" +2, mujets, central, 0, -2.4, 2.4, 20, 1000, 0, 1, "0.849497*((1.+(0.01854*x))/(1.+(0.0153613*x)))" +2, mujets, down, 1, -2.4, 2.4, 20, 30, 0, 1, "(0.849497*((1.+(0.01854*x))/(1.+(0.0153613*x))))-0.12066856026649475" +2, mujets, down, 1, -2.4, 2.4, 30, 50, 0, 1, "(0.849497*((1.+(0.01854*x))/(1.+(0.0153613*x))))-0.079742610454559326" +2, mujets, down, 1, -2.4, 2.4, 50, 70, 0, 1, "(0.849497*((1.+(0.01854*x))/(1.+(0.0153613*x))))-0.073544494807720184" +2, mujets, down, 1, -2.4, 2.4, 70, 100, 0, 1, "(0.849497*((1.+(0.01854*x))/(1.+(0.0153613*x))))-0.059891223907470703" +2, mujets, down, 1, -2.4, 2.4, 100, 140, 0, 1, "(0.849497*((1.+(0.01854*x))/(1.+(0.0153613*x))))-0.059213291853666306" +2, mujets, down, 1, -2.4, 2.4, 140, 200, 0, 1, "(0.849497*((1.+(0.01854*x))/(1.+(0.0153613*x))))-0.058427996933460236" +2, mujets, down, 1, -2.4, 2.4, 200, 300, 0, 1, "(0.849497*((1.+(0.01854*x))/(1.+(0.0153613*x))))-0.099112451076507568" +2, mujets, down, 1, -2.4, 2.4, 300, 600, 0, 1, "(0.849497*((1.+(0.01854*x))/(1.+(0.0153613*x))))-0.11530528217554092" +2, mujets, down, 1, -2.4, 2.4, 600, 1000, 0, 1, "(0.849497*((1.+(0.01854*x))/(1.+(0.0153613*x))))-0.19122670590877533" +2, mujets, down, 0, -2.4, 2.4, 20, 30, 0, 1, "(0.849497*((1.+(0.01854*x))/(1.+(0.0153613*x))))-0.034476730972528458" +2, mujets, down, 0, -2.4, 2.4, 30, 50, 0, 1, "(0.849497*((1.+(0.01854*x))/(1.+(0.0153613*x))))-0.022783603519201279" +2, mujets, down, 0, -2.4, 2.4, 50, 70, 0, 1, "(0.849497*((1.+(0.01854*x))/(1.+(0.0153613*x))))-0.021012712270021439" +2, mujets, down, 0, -2.4, 2.4, 70, 100, 0, 1, "(0.849497*((1.+(0.01854*x))/(1.+(0.0153613*x))))-0.017111778259277344" +2, mujets, down, 0, -2.4, 2.4, 100, 140, 0, 1, "(0.849497*((1.+(0.01854*x))/(1.+(0.0153613*x))))-0.016918083652853966" +2, mujets, down, 0, -2.4, 2.4, 140, 200, 0, 1, "(0.849497*((1.+(0.01854*x))/(1.+(0.0153613*x))))-0.016693713143467903" +2, mujets, down, 0, -2.4, 2.4, 200, 300, 0, 1, "(0.849497*((1.+(0.01854*x))/(1.+(0.0153613*x))))-0.02831784263253212" +2, mujets, down, 0, -2.4, 2.4, 300, 600, 0, 1, "(0.849497*((1.+(0.01854*x))/(1.+(0.0153613*x))))-0.032944366335868835" +2, mujets, down, 0, -2.4, 2.4, 600, 1000, 0, 1, "(0.849497*((1.+(0.01854*x))/(1.+(0.0153613*x))))-0.054636202752590179" +2, mujets, up, 1, -2.4, 2.4, 20, 30, 0, 1, "(0.849497*((1.+(0.01854*x))/(1.+(0.0153613*x))))+0.12066856026649475" +2, mujets, up, 1, -2.4, 2.4, 30, 50, 0, 1, "(0.849497*((1.+(0.01854*x))/(1.+(0.0153613*x))))+0.079742610454559326" +2, mujets, up, 1, -2.4, 2.4, 50, 70, 0, 1, "(0.849497*((1.+(0.01854*x))/(1.+(0.0153613*x))))+0.073544494807720184" +2, mujets, up, 1, -2.4, 2.4, 70, 100, 0, 1, "(0.849497*((1.+(0.01854*x))/(1.+(0.0153613*x))))+0.059891223907470703" +2, mujets, up, 1, -2.4, 2.4, 100, 140, 0, 1, "(0.849497*((1.+(0.01854*x))/(1.+(0.0153613*x))))+0.059213291853666306" +2, mujets, up, 1, -2.4, 2.4, 140, 200, 0, 1, "(0.849497*((1.+(0.01854*x))/(1.+(0.0153613*x))))+0.058427996933460236" +2, mujets, up, 1, -2.4, 2.4, 200, 300, 0, 1, "(0.849497*((1.+(0.01854*x))/(1.+(0.0153613*x))))+0.099112451076507568" +2, mujets, up, 1, -2.4, 2.4, 300, 600, 0, 1, "(0.849497*((1.+(0.01854*x))/(1.+(0.0153613*x))))+0.11530528217554092" +2, mujets, up, 1, -2.4, 2.4, 600, 1000, 0, 1, "(0.849497*((1.+(0.01854*x))/(1.+(0.0153613*x))))+0.19122670590877533" +2, mujets, up, 0, -2.4, 2.4, 20, 30, 0, 1, "(0.849497*((1.+(0.01854*x))/(1.+(0.0153613*x))))+0.034476730972528458" +2, mujets, up, 0, -2.4, 2.4, 30, 50, 0, 1, "(0.849497*((1.+(0.01854*x))/(1.+(0.0153613*x))))+0.022783603519201279" +2, mujets, up, 0, -2.4, 2.4, 50, 70, 0, 1, "(0.849497*((1.+(0.01854*x))/(1.+(0.0153613*x))))+0.021012712270021439" +2, mujets, up, 0, -2.4, 2.4, 70, 100, 0, 1, "(0.849497*((1.+(0.01854*x))/(1.+(0.0153613*x))))+0.017111778259277344" +2, mujets, up, 0, -2.4, 2.4, 100, 140, 0, 1, "(0.849497*((1.+(0.01854*x))/(1.+(0.0153613*x))))+0.016918083652853966" +2, mujets, up, 0, -2.4, 2.4, 140, 200, 0, 1, "(0.849497*((1.+(0.01854*x))/(1.+(0.0153613*x))))+0.016693713143467903" +2, mujets, up, 0, -2.4, 2.4, 200, 300, 0, 1, "(0.849497*((1.+(0.01854*x))/(1.+(0.0153613*x))))+0.02831784263253212" +2, mujets, up, 0, -2.4, 2.4, 300, 600, 0, 1, "(0.849497*((1.+(0.01854*x))/(1.+(0.0153613*x))))+0.032944366335868835" +2, mujets, up, 0, -2.4, 2.4, 600, 1000, 0, 1, "(0.849497*((1.+(0.01854*x))/(1.+(0.0153613*x))))+0.054636202752590179" +0, comb, central, 1, -2.4, 2.4, 20, 1000, 0, 1, "0.887973*((1.+(0.0523821*x))/(1.+(0.0460876*x)))" +0, comb, central, 0, -2.4, 2.4, 20, 1000, 0, 1, "0.887973*((1.+(0.0523821*x))/(1.+(0.0460876*x)))" +0, comb, down, 1, -2.4, 2.4, 20, 30, 0, 1, "(0.887973*((1.+(0.0523821*x))/(1.+(0.0460876*x))))-0.063454590737819672" +0, comb, down, 1, -2.4, 2.4, 30, 50, 0, 1, "(0.887973*((1.+(0.0523821*x))/(1.+(0.0460876*x))))-0.031410016119480133" +0, comb, down, 1, -2.4, 2.4, 50, 70, 0, 1, "(0.887973*((1.+(0.0523821*x))/(1.+(0.0460876*x))))-0.02891194075345993" +0, comb, down, 1, -2.4, 2.4, 70, 100, 0, 1, "(0.887973*((1.+(0.0523821*x))/(1.+(0.0460876*x))))-0.028121808543801308" +0, comb, down, 1, -2.4, 2.4, 100, 140, 0, 1, "(0.887973*((1.+(0.0523821*x))/(1.+(0.0460876*x))))-0.027028990909457207" +0, comb, down, 1, -2.4, 2.4, 140, 200, 0, 1, "(0.887973*((1.+(0.0523821*x))/(1.+(0.0460876*x))))-0.027206243947148323" +0, comb, down, 1, -2.4, 2.4, 200, 300, 0, 1, "(0.887973*((1.+(0.0523821*x))/(1.+(0.0460876*x))))-0.033642303198575974" +0, comb, down, 1, -2.4, 2.4, 300, 600, 0, 1, "(0.887973*((1.+(0.0523821*x))/(1.+(0.0460876*x))))-0.04273652657866478" +0, comb, down, 1, -2.4, 2.4, 600, 1000, 0, 1, "(0.887973*((1.+(0.0523821*x))/(1.+(0.0460876*x))))-0.054665762931108475" +0, comb, down, 0, -2.4, 2.4, 20, 30, 0, 1, "(0.887973*((1.+(0.0523821*x))/(1.+(0.0460876*x))))-0.025381835177540779" +0, comb, down, 0, -2.4, 2.4, 30, 50, 0, 1, "(0.887973*((1.+(0.0523821*x))/(1.+(0.0460876*x))))-0.012564006261527538" +0, comb, down, 0, -2.4, 2.4, 50, 70, 0, 1, "(0.887973*((1.+(0.0523821*x))/(1.+(0.0460876*x))))-0.011564776301383972" +0, comb, down, 0, -2.4, 2.4, 70, 100, 0, 1, "(0.887973*((1.+(0.0523821*x))/(1.+(0.0460876*x))))-0.011248723603785038" +0, comb, down, 0, -2.4, 2.4, 100, 140, 0, 1, "(0.887973*((1.+(0.0523821*x))/(1.+(0.0460876*x))))-0.010811596177518368" +0, comb, down, 0, -2.4, 2.4, 140, 200, 0, 1, "(0.887973*((1.+(0.0523821*x))/(1.+(0.0460876*x))))-0.010882497765123844" +0, comb, down, 0, -2.4, 2.4, 200, 300, 0, 1, "(0.887973*((1.+(0.0523821*x))/(1.+(0.0460876*x))))-0.013456921093165874" +0, comb, down, 0, -2.4, 2.4, 300, 600, 0, 1, "(0.887973*((1.+(0.0523821*x))/(1.+(0.0460876*x))))-0.017094610258936882" +0, comb, down, 0, -2.4, 2.4, 600, 1000, 0, 1, "(0.887973*((1.+(0.0523821*x))/(1.+(0.0460876*x))))-0.02186630479991436" +0, comb, up, 1, -2.4, 2.4, 20, 30, 0, 1, "(0.887973*((1.+(0.0523821*x))/(1.+(0.0460876*x))))+0.063454590737819672" +0, comb, up, 1, -2.4, 2.4, 30, 50, 0, 1, "(0.887973*((1.+(0.0523821*x))/(1.+(0.0460876*x))))+0.031410016119480133" +0, comb, up, 1, -2.4, 2.4, 50, 70, 0, 1, "(0.887973*((1.+(0.0523821*x))/(1.+(0.0460876*x))))+0.02891194075345993" +0, comb, up, 1, -2.4, 2.4, 70, 100, 0, 1, "(0.887973*((1.+(0.0523821*x))/(1.+(0.0460876*x))))+0.028121808543801308" +0, comb, up, 1, -2.4, 2.4, 100, 140, 0, 1, "(0.887973*((1.+(0.0523821*x))/(1.+(0.0460876*x))))+0.027028990909457207" +0, comb, up, 1, -2.4, 2.4, 140, 200, 0, 1, "(0.887973*((1.+(0.0523821*x))/(1.+(0.0460876*x))))+0.027206243947148323" +0, comb, up, 1, -2.4, 2.4, 200, 300, 0, 1, "(0.887973*((1.+(0.0523821*x))/(1.+(0.0460876*x))))+0.033642303198575974" +0, comb, up, 1, -2.4, 2.4, 300, 600, 0, 1, "(0.887973*((1.+(0.0523821*x))/(1.+(0.0460876*x))))+0.04273652657866478" +0, comb, up, 1, -2.4, 2.4, 600, 1000, 0, 1, "(0.887973*((1.+(0.0523821*x))/(1.+(0.0460876*x))))+0.054665762931108475" +0, comb, up, 0, -2.4, 2.4, 20, 30, 0, 1, "(0.887973*((1.+(0.0523821*x))/(1.+(0.0460876*x))))+0.025381835177540779" +0, comb, up, 0, -2.4, 2.4, 30, 50, 0, 1, "(0.887973*((1.+(0.0523821*x))/(1.+(0.0460876*x))))+0.012564006261527538" +0, comb, up, 0, -2.4, 2.4, 50, 70, 0, 1, "(0.887973*((1.+(0.0523821*x))/(1.+(0.0460876*x))))+0.011564776301383972" +0, comb, up, 0, -2.4, 2.4, 70, 100, 0, 1, "(0.887973*((1.+(0.0523821*x))/(1.+(0.0460876*x))))+0.011248723603785038" +0, comb, up, 0, -2.4, 2.4, 100, 140, 0, 1, "(0.887973*((1.+(0.0523821*x))/(1.+(0.0460876*x))))+0.010811596177518368" +0, comb, up, 0, -2.4, 2.4, 140, 200, 0, 1, "(0.887973*((1.+(0.0523821*x))/(1.+(0.0460876*x))))+0.010882497765123844" +0, comb, up, 0, -2.4, 2.4, 200, 300, 0, 1, "(0.887973*((1.+(0.0523821*x))/(1.+(0.0460876*x))))+0.013456921093165874" +0, comb, up, 0, -2.4, 2.4, 300, 600, 0, 1, "(0.887973*((1.+(0.0523821*x))/(1.+(0.0460876*x))))+0.017094610258936882" +0, comb, up, 0, -2.4, 2.4, 600, 1000, 0, 1, "(0.887973*((1.+(0.0523821*x))/(1.+(0.0460876*x))))+0.02186630479991436" +1, comb, central, 1, -2.4, 2.4, 20, 1000, 0, 1, "0.561694*((1.+(0.31439*x))/(1.+(0.17756*x)))" +1, comb, central, 0, -2.4, 2.4, 20, 1000, 0, 1, "0.561694*((1.+(0.31439*x))/(1.+(0.17756*x)))" +1, comb, down, 1, -2.4, 2.4, 20, 30, 0, 1, "(0.561694*((1.+(0.31439*x))/(1.+(0.17756*x))))-0.12064050137996674" +1, comb, down, 1, -2.4, 2.4, 30, 50, 0, 1, "(0.561694*((1.+(0.31439*x))/(1.+(0.17756*x))))-0.042138919234275818" +1, comb, down, 1, -2.4, 2.4, 50, 70, 0, 1, "(0.561694*((1.+(0.31439*x))/(1.+(0.17756*x))))-0.03711806982755661" +1, comb, down, 1, -2.4, 2.4, 70, 100, 0, 1, "(0.561694*((1.+(0.31439*x))/(1.+(0.17756*x))))-0.036822021007537842" +1, comb, down, 1, -2.4, 2.4, 100, 140, 0, 1, "(0.561694*((1.+(0.31439*x))/(1.+(0.17756*x))))-0.034397732466459274" +1, comb, down, 1, -2.4, 2.4, 140, 200, 0, 1, "(0.561694*((1.+(0.31439*x))/(1.+(0.17756*x))))-0.0362386554479599" +1, comb, down, 1, -2.4, 2.4, 200, 300, 0, 1, "(0.561694*((1.+(0.31439*x))/(1.+(0.17756*x))))-0.044985830783843994" +1, comb, down, 1, -2.4, 2.4, 300, 600, 0, 1, "(0.561694*((1.+(0.31439*x))/(1.+(0.17756*x))))-0.064243391156196594" +1, comb, down, 1, -2.4, 2.4, 600, 1000, 0, 1, "(0.561694*((1.+(0.31439*x))/(1.+(0.17756*x))))-0.097131341695785522" +1, comb, down, 0, -2.4, 2.4, 20, 30, 0, 1, "(0.561694*((1.+(0.31439*x))/(1.+(0.17756*x))))-0.040213499218225479" +1, comb, down, 0, -2.4, 2.4, 30, 50, 0, 1, "(0.561694*((1.+(0.31439*x))/(1.+(0.17756*x))))-0.014046305790543556" +1, comb, down, 0, -2.4, 2.4, 50, 70, 0, 1, "(0.561694*((1.+(0.31439*x))/(1.+(0.17756*x))))-0.012372690252959728" +1, comb, down, 0, -2.4, 2.4, 70, 100, 0, 1, "(0.561694*((1.+(0.31439*x))/(1.+(0.17756*x))))-0.012274007312953472" +1, comb, down, 0, -2.4, 2.4, 100, 140, 0, 1, "(0.561694*((1.+(0.31439*x))/(1.+(0.17756*x))))-0.011465910822153091" +1, comb, down, 0, -2.4, 2.4, 140, 200, 0, 1, "(0.561694*((1.+(0.31439*x))/(1.+(0.17756*x))))-0.012079551815986633" +1, comb, down, 0, -2.4, 2.4, 200, 300, 0, 1, "(0.561694*((1.+(0.31439*x))/(1.+(0.17756*x))))-0.014995276927947998" +1, comb, down, 0, -2.4, 2.4, 300, 600, 0, 1, "(0.561694*((1.+(0.31439*x))/(1.+(0.17756*x))))-0.021414462476968765" +1, comb, down, 0, -2.4, 2.4, 600, 1000, 0, 1, "(0.561694*((1.+(0.31439*x))/(1.+(0.17756*x))))-0.032377112656831741" +1, comb, up, 1, -2.4, 2.4, 20, 30, 0, 1, "(0.561694*((1.+(0.31439*x))/(1.+(0.17756*x))))+0.12064050137996674" +1, comb, up, 1, -2.4, 2.4, 30, 50, 0, 1, "(0.561694*((1.+(0.31439*x))/(1.+(0.17756*x))))+0.042138919234275818" +1, comb, up, 1, -2.4, 2.4, 50, 70, 0, 1, "(0.561694*((1.+(0.31439*x))/(1.+(0.17756*x))))+0.03711806982755661" +1, comb, up, 1, -2.4, 2.4, 70, 100, 0, 1, "(0.561694*((1.+(0.31439*x))/(1.+(0.17756*x))))+0.036822021007537842" +1, comb, up, 1, -2.4, 2.4, 100, 140, 0, 1, "(0.561694*((1.+(0.31439*x))/(1.+(0.17756*x))))+0.034397732466459274" +1, comb, up, 1, -2.4, 2.4, 140, 200, 0, 1, "(0.561694*((1.+(0.31439*x))/(1.+(0.17756*x))))+0.0362386554479599" +1, comb, up, 1, -2.4, 2.4, 200, 300, 0, 1, "(0.561694*((1.+(0.31439*x))/(1.+(0.17756*x))))+0.044985830783843994" +1, comb, up, 1, -2.4, 2.4, 300, 600, 0, 1, "(0.561694*((1.+(0.31439*x))/(1.+(0.17756*x))))+0.064243391156196594" +1, comb, up, 1, -2.4, 2.4, 600, 1000, 0, 1, "(0.561694*((1.+(0.31439*x))/(1.+(0.17756*x))))+0.097131341695785522" +1, comb, up, 0, -2.4, 2.4, 20, 30, 0, 1, "(0.561694*((1.+(0.31439*x))/(1.+(0.17756*x))))+0.040213499218225479" +1, comb, up, 0, -2.4, 2.4, 30, 50, 0, 1, "(0.561694*((1.+(0.31439*x))/(1.+(0.17756*x))))+0.014046305790543556" +1, comb, up, 0, -2.4, 2.4, 50, 70, 0, 1, "(0.561694*((1.+(0.31439*x))/(1.+(0.17756*x))))+0.012372690252959728" +1, comb, up, 0, -2.4, 2.4, 70, 100, 0, 1, "(0.561694*((1.+(0.31439*x))/(1.+(0.17756*x))))+0.012274007312953472" +1, comb, up, 0, -2.4, 2.4, 100, 140, 0, 1, "(0.561694*((1.+(0.31439*x))/(1.+(0.17756*x))))+0.011465910822153091" +1, comb, up, 0, -2.4, 2.4, 140, 200, 0, 1, "(0.561694*((1.+(0.31439*x))/(1.+(0.17756*x))))+0.012079551815986633" +1, comb, up, 0, -2.4, 2.4, 200, 300, 0, 1, "(0.561694*((1.+(0.31439*x))/(1.+(0.17756*x))))+0.014995276927947998" +1, comb, up, 0, -2.4, 2.4, 300, 600, 0, 1, "(0.561694*((1.+(0.31439*x))/(1.+(0.17756*x))))+0.021414462476968765" +1, comb, up, 0, -2.4, 2.4, 600, 1000, 0, 1, "(0.561694*((1.+(0.31439*x))/(1.+(0.17756*x))))+0.032377112656831741" +2, comb, central, 1, -2.4, 2.4, 20, 1000, 0, 1, "0.817647*((1.+(0.038703*x))/(1.+(0.0312388*x)))" +2, comb, central, 0, -2.4, 2.4, 20, 1000, 0, 1, "0.817647*((1.+(0.038703*x))/(1.+(0.0312388*x)))" +2, comb, down, 1, -2.4, 2.4, 20, 30, 0, 1, "(0.817647*((1.+(0.038703*x))/(1.+(0.0312388*x))))-0.11806446313858032" +2, comb, down, 1, -2.4, 2.4, 30, 50, 0, 1, "(0.817647*((1.+(0.038703*x))/(1.+(0.0312388*x))))-0.054699532687664032" +2, comb, down, 1, -2.4, 2.4, 50, 70, 0, 1, "(0.817647*((1.+(0.038703*x))/(1.+(0.0312388*x))))-0.047356218099594116" +2, comb, down, 1, -2.4, 2.4, 70, 100, 0, 1, "(0.817647*((1.+(0.038703*x))/(1.+(0.0312388*x))))-0.047634456306695938" +2, comb, down, 1, -2.4, 2.4, 100, 140, 0, 1, "(0.817647*((1.+(0.038703*x))/(1.+(0.0312388*x))))-0.04632849246263504" +2, comb, down, 1, -2.4, 2.4, 140, 200, 0, 1, "(0.817647*((1.+(0.038703*x))/(1.+(0.0312388*x))))-0.048323042690753937" +2, comb, down, 1, -2.4, 2.4, 200, 300, 0, 1, "(0.817647*((1.+(0.038703*x))/(1.+(0.0312388*x))))-0.068715795874595642" +2, comb, down, 1, -2.4, 2.4, 300, 600, 0, 1, "(0.817647*((1.+(0.038703*x))/(1.+(0.0312388*x))))-0.10824859887361526" +2, comb, down, 1, -2.4, 2.4, 600, 1000, 0, 1, "(0.817647*((1.+(0.038703*x))/(1.+(0.0312388*x))))-0.18500012159347534" +2, comb, down, 0, -2.4, 2.4, 20, 30, 0, 1, "(0.817647*((1.+(0.038703*x))/(1.+(0.0312388*x))))-0.033732704818248749" +2, comb, down, 0, -2.4, 2.4, 30, 50, 0, 1, "(0.817647*((1.+(0.038703*x))/(1.+(0.0312388*x))))-0.01562843844294548" +2, comb, down, 0, -2.4, 2.4, 50, 70, 0, 1, "(0.817647*((1.+(0.038703*x))/(1.+(0.0312388*x))))-0.013530348427593708" +2, comb, down, 0, -2.4, 2.4, 70, 100, 0, 1, "(0.817647*((1.+(0.038703*x))/(1.+(0.0312388*x))))-0.013609844259917736" +2, comb, down, 0, -2.4, 2.4, 100, 140, 0, 1, "(0.817647*((1.+(0.038703*x))/(1.+(0.0312388*x))))-0.013236711733043194" +2, comb, down, 0, -2.4, 2.4, 140, 200, 0, 1, "(0.817647*((1.+(0.038703*x))/(1.+(0.0312388*x))))-0.013806583359837532" +2, comb, down, 0, -2.4, 2.4, 200, 300, 0, 1, "(0.817647*((1.+(0.038703*x))/(1.+(0.0312388*x))))-0.019633084535598755" +2, comb, down, 0, -2.4, 2.4, 300, 600, 0, 1, "(0.817647*((1.+(0.038703*x))/(1.+(0.0312388*x))))-0.030928170308470726" +2, comb, down, 0, -2.4, 2.4, 600, 1000, 0, 1, "(0.817647*((1.+(0.038703*x))/(1.+(0.0312388*x))))-0.052857179194688797" +2, comb, up, 1, -2.4, 2.4, 20, 30, 0, 1, "(0.817647*((1.+(0.038703*x))/(1.+(0.0312388*x))))+0.11806446313858032" +2, comb, up, 1, -2.4, 2.4, 30, 50, 0, 1, "(0.817647*((1.+(0.038703*x))/(1.+(0.0312388*x))))+0.054699532687664032" +2, comb, up, 1, -2.4, 2.4, 50, 70, 0, 1, "(0.817647*((1.+(0.038703*x))/(1.+(0.0312388*x))))+0.047356218099594116" +2, comb, up, 1, -2.4, 2.4, 70, 100, 0, 1, "(0.817647*((1.+(0.038703*x))/(1.+(0.0312388*x))))+0.047634456306695938" +2, comb, up, 1, -2.4, 2.4, 100, 140, 0, 1, "(0.817647*((1.+(0.038703*x))/(1.+(0.0312388*x))))+0.04632849246263504" +2, comb, up, 1, -2.4, 2.4, 140, 200, 0, 1, "(0.817647*((1.+(0.038703*x))/(1.+(0.0312388*x))))+0.048323042690753937" +2, comb, up, 1, -2.4, 2.4, 200, 300, 0, 1, "(0.817647*((1.+(0.038703*x))/(1.+(0.0312388*x))))+0.068715795874595642" +2, comb, up, 1, -2.4, 2.4, 300, 600, 0, 1, "(0.817647*((1.+(0.038703*x))/(1.+(0.0312388*x))))+0.10824859887361526" +2, comb, up, 1, -2.4, 2.4, 600, 1000, 0, 1, "(0.817647*((1.+(0.038703*x))/(1.+(0.0312388*x))))+0.18500012159347534" +2, comb, up, 0, -2.4, 2.4, 20, 30, 0, 1, "(0.817647*((1.+(0.038703*x))/(1.+(0.0312388*x))))+0.033732704818248749" +2, comb, up, 0, -2.4, 2.4, 30, 50, 0, 1, "(0.817647*((1.+(0.038703*x))/(1.+(0.0312388*x))))+0.01562843844294548" +2, comb, up, 0, -2.4, 2.4, 50, 70, 0, 1, "(0.817647*((1.+(0.038703*x))/(1.+(0.0312388*x))))+0.013530348427593708" +2, comb, up, 0, -2.4, 2.4, 70, 100, 0, 1, "(0.817647*((1.+(0.038703*x))/(1.+(0.0312388*x))))+0.013609844259917736" +2, comb, up, 0, -2.4, 2.4, 100, 140, 0, 1, "(0.817647*((1.+(0.038703*x))/(1.+(0.0312388*x))))+0.013236711733043194" +2, comb, up, 0, -2.4, 2.4, 140, 200, 0, 1, "(0.817647*((1.+(0.038703*x))/(1.+(0.0312388*x))))+0.013806583359837532" +2, comb, up, 0, -2.4, 2.4, 200, 300, 0, 1, "(0.817647*((1.+(0.038703*x))/(1.+(0.0312388*x))))+0.019633084535598755" +2, comb, up, 0, -2.4, 2.4, 300, 600, 0, 1, "(0.817647*((1.+(0.038703*x))/(1.+(0.0312388*x))))+0.030928170308470726" +2, comb, up, 0, -2.4, 2.4, 600, 1000, 0, 1, "(0.817647*((1.+(0.038703*x))/(1.+(0.0312388*x))))+0.052857179194688797" +0, incl, central, 2, 0, 2.4, 20, 1000, 0, 1, "1.13904+-0.000594946*x+1.97303e-06*x*x+-1.38194e-09*x*x*x" +0, incl, down, 2, 0, 2.4, 20, 1000, 0, 1, "(1.13904+-0.000594946*x+1.97303e-06*x*x+-1.38194e-09*x*x*x)*(1-(0.0996438+-8.33354e-05*x+4.74359e-08*x*x))" +0, incl, down_correlated, 2, 0, 2.4, 20, 1000, 0, 1, "(1.13904+-0.000594946*x+1.97303e-06*x*x+-1.38194e-09*x*x*x)*(1-(0.0908666+-8.3008e-05*x+4.06224e-08*x*x))" +0, incl, down_uncorrelated, 2, 0, 2.4, 20, 1000, 0, 1, "(1.13904+-0.000594946*x+1.97303e-06*x*x+-1.38194e-09*x*x*x)*(1-(0.0378438))" +0, incl, up, 2, 0, 2.4, 20, 1000, 0, 1, "(1.13904+-0.000594946*x+1.97303e-06*x*x+-1.38194e-09*x*x*x)*(1+(0.0996438+-8.33354e-05*x+4.74359e-08*x*x))" +0, incl, up_correlated, 2, 0, 2.4, 20, 1000, 0, 1, "(1.13904+-0.000594946*x+1.97303e-06*x*x+-1.38194e-09*x*x*x)*(1+(0.0908666+-8.3008e-05*x+4.06224e-08*x*x))" +0, incl, up_uncorrelated, 2, 0, 2.4, 20, 1000, 0, 1, "(1.13904+-0.000594946*x+1.97303e-06*x*x+-1.38194e-09*x*x*x)*(1+(0.0378438))" +1, incl, central, 2, 0, 2.4, 20, 1000, 0, 1, "1.0589+0.000382569*x+-2.4252e-07*x*x+2.20966e-10*x*x*x" +1, incl, down, 2, 0, 2.4, 20, 1000, 0, 1, "(1.0589+0.000382569*x+-2.4252e-07*x*x+2.20966e-10*x*x*x)*(1-(0.100485+3.95509e-05*x+-4.90326e-08*x*x))" +1, incl, down_correlated, 2, 0, 2.4, 20, 1000, 0, 1, "(1.0589+0.000382569*x+-2.4252e-07*x*x+2.20966e-10*x*x*x)*(1-(0.0671806+4.6732e-05*x+-6.01135e-08*x*x))" +1, incl, down_uncorrelated, 2, 0, 2.4, 20, 1000, 0, 1, "(1.0589+0.000382569*x+-2.4252e-07*x*x+2.20966e-10*x*x*x)*(1-(0.0765736))" +1, incl, up, 2, 0, 2.4, 20, 1000, 0, 1, "(1.0589+0.000382569*x+-2.4252e-07*x*x+2.20966e-10*x*x*x)*(1+(0.100485+3.95509e-05*x+-4.90326e-08*x*x))" +1, incl, up_correlated, 2, 0, 2.4, 20, 1000, 0, 1, "(1.0589+0.000382569*x+-2.4252e-07*x*x+2.20966e-10*x*x*x)*(1+(0.0671806+4.6732e-05*x+-6.01135e-08*x*x))" +1, incl, up_uncorrelated, 2, 0, 2.4, 20, 1000, 0, 1, "(1.0589+0.000382569*x+-2.4252e-07*x*x+2.20966e-10*x*x*x)*(1+(0.0765736))" +2, incl, central, 2, 0, 2.4, 20, 1000, 0, 1, "0.971945+163.215/(x*x)+0.000517836*x" +2, incl, down, 2, 0, 2.4, 20, 1000, 0, 1, "(0.971945+163.215/(x*x)+0.000517836*x)*(1-(0.291298+-0.000222983*x+1.69699e-07*x*x))" +2, incl, down_correlated, 2, 0, 2.4, 20, 1000, 0, 1, "(0.971945+163.215/(x*x)+0.000517836*x)*(1-(0.219249+-0.000309762*x+2.26184e-07*x*x))" +2, incl, down_uncorrelated, 2, 0, 2.4, 20, 1000, 0, 1, "(0.971945+163.215/(x*x)+0.000517836*x)*(1-(0.190708))" +2, incl, up, 2, 0, 2.4, 20, 1000, 0, 1, "(0.971945+163.215/(x*x)+0.000517836*x)*(1+(0.291298+-0.000222983*x+1.69699e-07*x*x))" +2, incl, up_correlated, 2, 0, 2.4, 20, 1000, 0, 1, "(0.971945+163.215/(x*x)+0.000517836*x)*(1+(0.219249+-0.000309762*x+2.26184e-07*x*x))" +2, incl, up_uncorrelated, 2, 0, 2.4, 20, 1000, 0, 1, "(0.971945+163.215/(x*x)+0.000517836*x)*(1+(0.190708))" +3, iterativefit, central, 1, 0.0, 2.4, 20.0, 10000, -15, 1.1, "1.0" +3, iterativefit, central, 0, 0.0, 2.4, 20, 30, -15, 0, "1.64439" +3, iterativefit, central, 0, 0.0, 2.4, 20, 30, 0, 0.1356, "0.976678" +3, iterativefit, central, 0, 0.0, 2.4, 20, 30, 0.1356, 0.4069, "0.861376+0.830898*x" +3, iterativefit, central, 0, 0.0, 2.4, 20, 30, 0.4069, 0.5731, "2.0992+-2.21118*x" +3, iterativefit, central, 0, 0.0, 2.4, 20, 30, 0.5731, 0.6342, "-2.50105+5.81577*x" +3, iterativefit, central, 0, 0.0, 2.4, 20, 30, 0.6342, 0.6954, "3.40763+-3.50098*x" +3, iterativefit, central, 0, 0.0, 2.4, 20, 30, 0.6954, 0.7566, "0.794021+0.257453*x" +3, iterativefit, central, 0, 0.0, 2.4, 20, 30, 0.7566, 0.8178, "0.506815+0.637053*x" +3, iterativefit, central, 0, 0.0, 2.4, 20, 30, 0.8178, 0.85895, "-0.127807+1.41306*x" +3, iterativefit, central, 0, 0.0, 2.4, 20, 30, 0.85895, 0.88, "4.20802+-3.63476*x" +3, iterativefit, central, 0, 0.0, 2.4, 20, 30, 0.88, 0.901, "2.92106+-2.17231*x" +3, iterativefit, central, 0, 0.0, 2.4, 20, 30, 0.901, 0.922, "1.83565+-0.967633*x" +3, iterativefit, central, 0, 0.0, 2.4, 20, 30, 0.922, 0.943, "5.35572+-4.78549*x" +3, iterativefit, central, 0, 0.0, 2.4, 20, 30, 0.943, 0.95915, "-1.16607+2.13051*x" +3, iterativefit, central, 0, 0.0, 2.4, 20, 30, 0.95915, 0.97045, "1.12636+-0.259551*x" +3, iterativefit, central, 0, 0.0, 2.4, 20, 30, 0.97045, 0.98175, "-2.08613+3.05076*x" +3, iterativefit, central, 0, 0.0, 2.4, 20, 30, 0.98175, 0.99305, "3.31741+-2.45324*x" +3, iterativefit, central, 0, 0.0, 2.4, 20, 30, 0.99305, 1.00435, "-2.50141+3.40631*x" +3, iterativefit, central, 0, 0.0, 2.4, 20, 30, 1.00435, 1.1, "0.922202" +3, iterativefit, up_jes, 0, 0.0, 2.4, 20, 30, -15, 0, "1.40658" +3, iterativefit, up_jes, 0, 0.0, 2.4, 20, 30, 0, 0.1356, "0.779415" +3, iterativefit, up_jes, 0, 0.0, 2.4, 20, 30, 0.1356, 0.4069, "0.668463+0.842695*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 20, 30, 0.4069, 0.5731, "2.21103+-2.94832*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 20, 30, 0.5731, 0.6342, "-6.36556+12.0169*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 20, 30, 0.6342, 0.6954, "3.83971+-4.07463*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 20, 30, 0.6954, 0.7566, "1.6575+-0.93657*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 20, 30, 0.7566, 0.8178, "-0.895875+2.43824*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 20, 30, 0.8178, 0.85895, "-1.12536+2.71885*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 20, 30, 0.85895, 0.88, "4.42663+-3.74485*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 20, 30, 0.88, 0.901, "3.7614+-2.9889*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 20, 30, 0.901, 0.922, "1.73933+-0.744646*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 20, 30, 0.922, 0.943, "5.25624+-4.55908*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 20, 30, 0.943, 0.95915, "-1.41154+2.51173*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 20, 30, 0.95915, 0.97045, "2.22668+-1.28144*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 20, 30, 0.97045, 0.98175, "-2.41294+3.49946*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 20, 30, 0.98175, 0.99305, "0.976828+0.0466736*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 20, 30, 0.99305, 1.00435, "-3.84201+4.89924*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 20, 30, 1.00435, 1.1, "1.07397" +3, iterativefit, down_jes, 0, 0.0, 2.4, 20, 30, -15, 0, "1.71912" +3, iterativefit, down_jes, 0, 0.0, 2.4, 20, 30, 0, 0.1356, "1.19365" +3, iterativefit, down_jes, 0, 0.0, 2.4, 20, 30, 0.1356, 0.4069, "1.1046+0.610662*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 20, 30, 0.4069, 0.5731, "2.33391+-2.4105*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 20, 30, 0.5731, 0.6342, "-1.14814+3.66532*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 20, 30, 0.6342, 0.6954, "2.85712+-2.65014*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 20, 30, 0.6954, 0.7566, "0.838908+0.252095*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 20, 30, 0.7566, 0.8178, "1.64135+-0.808491*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 20, 30, 0.8178, 0.85895, "0.385795+0.726791*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 20, 30, 0.85895, 0.88, "5.12771+-4.7938*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 20, 30, 0.88, 0.901, "1.25172+-0.389274*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 20, 30, 0.901, 0.922, "1.88805+-1.09552*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 20, 30, 0.922, 0.943, "5.12436+-4.60561*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 20, 30, 0.943, 0.95915, "0.335633+0.472567*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 20, 30, 0.95915, 0.97045, "0.0176915+0.804049*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 20, 30, 0.97045, 0.98175, "-0.172709+1.00025*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 20, 30, 0.98175, 0.99305, "3.62966+-2.8728*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 20, 30, 0.99305, 1.00435, "-0.0938583+0.876773*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 20, 30, 1.00435, 1.1, "0.790867" +3, iterativefit, up_lf, 0, 0.0, 2.4, 20, 30, -15, 0, "1.42896" +3, iterativefit, up_lf, 0, 0.0, 2.4, 20, 30, 0, 0.1356, "0.17999" +3, iterativefit, up_lf, 0, 0.0, 2.4, 20, 30, 0.1356, 0.4069, "-0.10452+2.38108*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 20, 30, 0.4069, 0.5731, "1.86581+-2.46121*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 20, 30, 0.5731, 0.6342, "-7.73466+14.2906*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 20, 30, 0.6342, 0.6954, "3.76489+-3.84175*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 20, 30, 0.6954, 0.7566, "0.659731+0.623529*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 20, 30, 0.7566, 0.8178, "-0.195944+1.75448*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 20, 30, 0.8178, 0.85895, "-0.889995+2.60316*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 20, 30, 0.85895, 0.88, "5.59997+-4.95254*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 20, 30, 0.88, 0.901, "3.00707+-2.00606*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 20, 30, 0.901, 0.922, "1.98487+-0.871547*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 20, 30, 0.922, 0.943, "6.66516+-5.94778*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 20, 30, 0.943, 0.95915, "-1.7682+2.99533*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 20, 30, 0.95915, 0.97045, "1.32166+-0.226116*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 20, 30, 0.97045, 0.98175, "-2.7289+3.94778*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 20, 30, 0.98175, 0.99305, "4.16758+-3.0769*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 20, 30, 0.99305, 1.00435, "-3.12948+4.27122*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 20, 30, 1.00435, 1.1, "0.956458" +3, iterativefit, down_lf, 0, 0.0, 2.4, 20, 30, -15, 0, "1.68832" +3, iterativefit, down_lf, 0, 0.0, 2.4, 20, 30, 0, 0.1356, "0.99923" +3, iterativefit, down_lf, 0, 0.0, 2.4, 20, 30, 0.1356, 0.4069, "1.05881+0.513871*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 20, 30, 0.4069, 0.5731, "2.14676+-2.1599*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 20, 30, 0.5731, 0.6342, "-1.43075+4.08249*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 20, 30, 0.6342, 0.6954, "3.33434+-3.43105*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 20, 30, 0.6954, 0.7566, "0.821421+0.182583*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 20, 30, 0.7566, 0.8178, "0.650471+0.408528*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 20, 30, 0.8178, 0.85895, "0.0280465+1.16962*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 20, 30, 0.85895, 0.88, "3.92311+-3.36505*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 20, 30, 0.88, 0.901, "2.90326+-2.20614*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 20, 30, 0.901, 0.922, "1.80501+-0.987209*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 20, 30, 0.922, 0.943, "5.08759+-4.54749*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 20, 30, 0.943, 0.95915, "-1.04287+1.95352*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 20, 30, 0.95915, 0.97045, "1.08634+-0.266369*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 20, 30, 0.97045, 0.98175, "-1.95456+2.86712*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 20, 30, 0.98175, 0.99305, "3.14334+-2.32554*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 20, 30, 0.99305, 1.00435, "-2.3728+3.22921*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 20, 30, 1.00435, 1.1, "0.770748" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 20, 30, -15, 0, "1.78696" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 20, 30, 0, 0.1356, "1.04798" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 20, 30, 0.1356, 0.4069, "0.95471+0.677392*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 20, 30, 0.4069, 0.5731, "2.1967+-2.37494*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 20, 30, 0.5731, 0.6342, "-2.38849+5.62575*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 20, 30, 0.6342, 0.6954, "3.46+-3.59609*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 20, 30, 0.6954, 0.7566, "0.787718+0.246708*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 20, 30, 0.7566, 0.8178, "0.502363+0.623862*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 20, 30, 0.8178, 0.85895, "0.144551+1.06139*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 20, 30, 0.85895, 0.88, "4.15011+-3.60193*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 20, 30, 0.88, 0.901, "2.87522+-2.15319*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 20, 30, 0.901, 0.922, "1.67362+-0.819562*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 20, 30, 0.922, 0.943, "5.2576+-4.70674*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 20, 30, 0.943, 0.95915, "-0.858731+1.77929*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 20, 30, 0.95915, 0.97045, "0.888667+-0.0425248*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 20, 30, 0.97045, 0.98175, "-2.09283+3.02976*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 20, 30, 0.98175, 0.99305, "2.16817+-1.31045*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 20, 30, 0.99305, 1.00435, "5.76876+-4.93624*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 20, 30, 1.00435, 1.1, "0.812147" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 20, 30, -15, 0, "1.50386" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 20, 30, 0, 0.1356, "0.906005" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 20, 30, 0.1356, 0.4069, "0.769317+0.982889*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 20, 30, 0.4069, 0.5731, "2.00334+-2.04984*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 20, 30, 0.5731, 0.6342, "-2.61299+6.00516*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 20, 30, 0.6342, 0.6954, "3.35675+-3.40785*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 20, 30, 0.6954, 0.7566, "0.800459+0.268144*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 20, 30, 0.7566, 0.8178, "0.511349+0.650262*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 20, 30, 0.8178, 0.85895, "-0.397128+1.76114*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 20, 30, 0.85895, 0.88, "4.26638+-3.66817*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 20, 30, 0.88, 0.901, "2.96714+-2.19177*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 20, 30, 0.901, 0.922, "1.99633+-1.11429*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 20, 30, 0.922, 0.943, "5.45413+-4.86461*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 20, 30, 0.943, 0.95915, "-1.47025+2.47832*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 20, 30, 0.95915, 0.97045, "1.36166+-0.474199*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 20, 30, 0.97045, 0.98175, "-2.08006+3.07232*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 20, 30, 0.98175, 0.99305, "4.45457+-3.58378*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 20, 30, 0.99305, 1.00435, "-10.679+11.6557*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 20, 30, 1.00435, 1.1, "1.03128" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 20, 30, -15, 0, "1.74439" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 20, 30, 0, 0.1356, "0.963278" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 20, 30, 0.1356, 0.4069, "0.862729+0.718086*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 20, 30, 0.4069, 0.5731, "2.11014+-2.34755*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 20, 30, 0.5731, 0.6342, "-2.8392+6.28853*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 20, 30, 0.6342, 0.6954, "3.22571+-3.27456*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 20, 30, 0.6954, 0.7566, "0.641872+0.441055*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 20, 30, 0.7566, 0.8178, "0.374411+0.794559*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 20, 30, 0.8178, 0.85895, "-0.341967+1.67054*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 20, 30, 0.85895, 0.88, "4.07361+-3.47013*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 20, 30, 0.88, 0.901, "2.78453+-2.00526*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 20, 30, 0.901, 0.922, "1.79536+-0.907406*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 20, 30, 0.922, 0.943, "5.29608+-4.70428*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 20, 30, 0.943, 0.95915, "-1.53647+2.54126*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 20, 30, 0.95915, 0.97045, "1.19332+-0.304786*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 20, 30, 0.97045, 0.98175, "-2.20833+3.20044*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 20, 30, 0.98175, 0.99305, "4.29178+-3.4205*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 20, 30, 0.99305, 1.00435, "-10.8979+11.8755*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 20, 30, 1.00435, 1.1, "1.03265" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 20, 30, -15, 0, "1.54351" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 20, 30, 0, 0.1356, "0.990212" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 20, 30, 0.1356, 0.4069, "0.860148+0.945143*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 20, 30, 0.4069, 0.5731, "2.08847+-2.0736*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 20, 30, 0.5731, 0.6342, "-2.15941+5.33851*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 20, 30, 0.6342, 0.6954, "3.59221+-3.73058*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 20, 30, 0.6954, 0.7566, "0.94805+0.0717797*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 20, 30, 0.7566, 0.8178, "0.640826+0.477839*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 20, 30, 0.8178, 0.85895, "0.0887963+1.15286*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 20, 30, 0.85895, 0.88, "4.34467+-3.80188*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 20, 30, 0.88, 0.901, "3.05964+-2.34163*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 20, 30, 0.901, 0.922, "1.87671+-1.02871*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 20, 30, 0.922, 0.943, "5.41692+-4.86842*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 20, 30, 0.943, 0.95915, "-0.791602+1.71538*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 20, 30, 0.95915, 0.97045, "1.05881+-0.213838*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 20, 30, 0.97045, 0.98175, "-1.96287+2.89985*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 20, 30, 0.98175, 0.99305, "2.33237+-1.47524*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 20, 30, 0.99305, 1.00435, "5.99135+-5.15983*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 20, 30, 1.00435, 1.1, "0.810636" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 20, 30, -15, 0, "1.26755" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 20, 30, 0, 0.1356, "1.67187" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 20, 30, 0.1356, 0.4069, "2.07573+-2.97829*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 20, 30, 0.4069, 0.5731, "1.41687+-1.35909*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 20, 30, 0.5731, 0.6342, "-0.0774503+1.24835*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 20, 30, 0.6342, 0.6954, "0.990892+-0.436197*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 20, 30, 0.6954, 0.7566, "1.10089+-0.594372*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 20, 30, 0.7566, 0.8178, "1.78827+-1.50288*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 20, 30, 0.8178, 0.85895, "2.2405+-2.05587*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 20, 30, 0.85895, 0.88, "0.910685+-0.507685*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 20, 30, 0.88, 0.901, "1.59278+-1.2828*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 20, 30, 0.901, 0.922, "1.71892+-1.42279*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 20, 30, 0.922, 0.943, "1.78749+-1.49717*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 20, 30, 0.943, 0.95915, "1.78649+-1.4961*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 20, 30, 0.95915, 0.97045, "0.656026+-0.317493*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 20, 30, 0.97045, 0.98175, "1.45339+-1.13914*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 20, 30, 0.98175, 0.99305, "3.11281+-2.8294*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 20, 30, 0.99305, 1.00435, "7.57349+-7.3213*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 20, 30, 1.00435, 1.1, "0.22034" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 20, 30, -15, 0, "0.694509" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 20, 30, 0, 0.1356, "0" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 20, 30, 0.1356, 0.4069, "-0.608265+4.48573*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 20, 30, 0.4069, 0.5731, "0.224054+2.44022*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 20, 30, 0.5731, 0.6342, "2.90709+-2.2414*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 20, 30, 0.6342, 0.6954, "0.988897+0.783184*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 20, 30, 0.6954, 0.7566, "0.791403+1.06718*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 20, 30, 0.7566, 0.8178, "-0.442777+2.6984*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 20, 30, 0.8178, 0.85895, "-1.25475+3.69128*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 20, 30, 0.85895, 0.88, "1.13291+0.911538*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 20, 30, 0.88, 0.901, "-0.0917878+2.30324*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 20, 30, 0.901, 0.922, "-0.318259+2.55459*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 20, 30, 0.922, 0.943, "-0.441386+2.68814*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 20, 30, 0.943, 0.95915, "-0.439586+2.68623*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 20, 30, 0.95915, 0.97045, "1.59014+0.570053*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 20, 30, 0.97045, 0.98175, "0.158486+2.0453*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 20, 30, 0.98175, 0.99305, "-2.82096+5.08013*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 20, 30, 0.99305, 1.00435, "-10.83+13.1453*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 20, 30, 1.00435, 1.1, "2.37241" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 20, 30, -15, 0, "1.01114" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 20, 30, 0, 0.1356, "1.49076" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 20, 30, 0.1356, 0.4069, "1.877+-2.84833*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 20, 30, 0.4069, 0.5731, "1.375+-1.61461*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 20, 30, 0.5731, 0.6342, "-3.80527+7.42442*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 20, 30, 0.6342, 0.6954, "0.569102+0.526954*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 20, 30, 0.6954, 0.7566, "0.443405+0.707709*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 20, 30, 0.7566, 0.8178, "0.0165047+1.27194*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 20, 30, 0.8178, 0.85895, "-0.98942+2.50198*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 20, 30, 0.85895, 0.88, "-0.725016+2.19416*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 20, 30, 0.88, 0.901, "-1.29765+2.84487*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 20, 30, 0.901, 0.922, "-1.6352+3.21952*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 20, 30, 0.922, 0.943, "-1.96101+3.57289*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 20, 30, 0.943, 0.95915, "-2.14841+3.77162*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 20, 30, 0.95915, 0.97045, "-1.1244+2.704*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 20, 30, 0.97045, 0.98175, "-2.10313+3.71253*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 20, 30, 0.98175, 0.99305, "-4.10816+5.75483*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 20, 30, 0.99305, 1.00435, "-10.5863+12.2783*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 20, 30, 1.00435, 1.1, "1.74542" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 20, 30, -15, 0, "0.989104" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 20, 30, 0, 0.1356, "0.519927" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 20, 30, 0.1356, 0.4069, "0.142109+2.78627*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 20, 30, 0.4069, 0.5731, "0.633173+1.57943*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 20, 30, 0.5731, 0.6342, "5.70057+-7.26265*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 20, 30, 0.6342, 0.6954, "1.42151+-0.515472*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 20, 30, 0.6954, 0.7566, "1.54446+-0.692288*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 20, 30, 0.7566, 0.8178, "1.96206+-1.24423*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 20, 30, 0.8178, 0.85895, "2.94607+-2.44747*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 20, 30, 0.85895, 0.88, "2.68743+-2.14635*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 20, 30, 0.88, 0.901, "3.24758+-2.78289*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 20, 30, 0.901, 0.922, "3.57778+-3.14937*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 20, 30, 0.922, 0.943, "3.89649+-3.49504*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 20, 30, 0.943, 0.95915, "4.07981+-3.68944*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 20, 30, 0.95915, 0.97045, "3.07811+-2.64508*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 20, 30, 0.97045, 0.98175, "4.03551+-3.63164*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 20, 30, 0.98175, 0.99305, "5.99685+-5.62944*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 20, 30, 0.99305, 1.00435, "12.3338+-12.0108*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 20, 30, 1.00435, 1.1, "0.27082" +3, iterativefit, central, 0, 0.0, 2.4, 30, 40, -15, 0, "1.64089" +3, iterativefit, central, 0, 0.0, 2.4, 30, 40, 0, 0.1356, "1.00309" +3, iterativefit, central, 0, 0.0, 2.4, 30, 40, 0.1356, 0.4069, "0.993063+0.0862144*x" +3, iterativefit, central, 0, 0.0, 2.4, 30, 40, 0.4069, 0.5731, "0.900563+0.313545*x" +3, iterativefit, central, 0, 0.0, 2.4, 30, 40, 0.5731, 0.6342, "1.42373+-0.599325*x" +3, iterativefit, central, 0, 0.0, 2.4, 30, 40, 0.6342, 0.6954, "0.233007+1.27819*x" +3, iterativefit, central, 0, 0.0, 2.4, 30, 40, 0.6954, 0.7566, "1.94577+-1.1848*x" +3, iterativefit, central, 0, 0.0, 2.4, 30, 40, 0.7566, 0.8178, "0.777908+0.358768*x" +3, iterativefit, central, 0, 0.0, 2.4, 30, 40, 0.8178, 0.85895, "1.24716+-0.215028*x" +3, iterativefit, central, 0, 0.0, 2.4, 30, 40, 0.85895, 0.88, "0.83122+0.269213*x" +3, iterativefit, central, 0, 0.0, 2.4, 30, 40, 0.88, 0.901, "4.47347+-3.86971*x" +3, iterativefit, central, 0, 0.0, 2.4, 30, 40, 0.901, 0.922, "0.764648+0.246632*x" +3, iterativefit, central, 0, 0.0, 2.4, 30, 40, 0.922, 0.943, "1.98433+-1.07624*x" +3, iterativefit, central, 0, 0.0, 2.4, 30, 40, 0.943, 0.95915, "1.70083+-0.775599*x" +3, iterativefit, central, 0, 0.0, 2.4, 30, 40, 0.95915, 0.97045, "1.09868+-0.1478*x" +3, iterativefit, central, 0, 0.0, 2.4, 30, 40, 0.97045, 0.98175, "1.04169+-0.0890775*x" +3, iterativefit, central, 0, 0.0, 2.4, 30, 40, 0.98175, 0.99305, "3.07102+-2.15613*x" +3, iterativefit, central, 0, 0.0, 2.4, 30, 40, 0.99305, 1.00435, "20.0122+-19.2159*x" +3, iterativefit, central, 0, 0.0, 2.4, 30, 40, 1.00435, 1.1, "0.711554" +3, iterativefit, up_jes, 0, 0.0, 2.4, 30, 40, -15, 0, "1.47493" +3, iterativefit, up_jes, 0, 0.0, 2.4, 30, 40, 0, 0.1356, "0.850329" +3, iterativefit, up_jes, 0, 0.0, 2.4, 30, 40, 0.1356, 0.4069, "0.805604+0.329038*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 30, 40, 0.4069, 0.5731, "0.57882+0.886382*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 30, 40, 0.5731, 0.6342, "1.19823+-0.194421*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 30, 40, 0.6342, 0.6954, "0.691262+0.604959*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 30, 40, 0.6954, 0.7566, "2.1096+-1.43464*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 30, 40, 0.7566, 0.8178, "0.190909+1.1013*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 30, 40, 0.8178, 0.85895, "1.36876+-0.338969*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 30, 40, 0.85895, 0.88, "0.743951+0.38844*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 30, 40, 0.88, 0.901, "3.79723+-3.08119*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 30, 40, 0.901, 0.922, "0.837815+0.203394*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 30, 40, 0.922, 0.943, "2.5868+-1.69356*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 30, 40, 0.943, 0.95915, "1.53466+-0.577818*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 30, 40, 0.95915, 0.97045, "1.3004+-0.333581*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 30, 40, 0.97045, 0.98175, "-0.479177+1.50018*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 30, 40, 0.98175, 0.99305, "2.91319+-1.95524*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 30, 40, 0.99305, 1.00435, "6.21176+-5.2769*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 30, 40, 1.00435, 1.1, "0.912023" +3, iterativefit, down_jes, 0, 0.0, 2.4, 30, 40, -15, 0, "2.0227" +3, iterativefit, down_jes, 0, 0.0, 2.4, 30, 40, 0, 0.1356, "1.13621" +3, iterativefit, down_jes, 0, 0.0, 2.4, 30, 40, 0.1356, 0.4069, "1.15546+-0.115498*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 30, 40, 0.4069, 0.5731, "1.1821+-0.180961*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 30, 40, 0.5731, 0.6342, "1.60327+-0.915856*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 30, 40, 0.6342, 0.6954, "0.571642+0.710803*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 30, 40, 0.6954, 0.7566, "1.31804+-0.362531*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 30, 40, 0.7566, 0.8178, "0.676647+0.485198*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 30, 40, 0.8178, 0.85895, "1.94965+-1.07142*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 30, 40, 0.85895, 0.88, "-1.24496+2.64779*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 30, 40, 0.88, 0.901, "4.61522+-4.01152*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 30, 40, 0.901, 0.922, "3.45019+-2.71847*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 30, 40, 0.922, 0.943, "0.793759+0.16269*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 30, 40, 0.943, 0.95915, "1.4408+-0.523464*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 30, 40, 0.95915, 0.97045, "2.2048+-1.32*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 30, 40, 0.97045, 0.98175, "1.33375+-0.422427*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 30, 40, 0.98175, 0.99305, "2.55143+-1.66275*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 30, 40, 0.99305, 1.00435, "35.4564+-34.798*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 30, 40, 1.00435, 1.1, "0.505426" +3, iterativefit, up_lf, 0, 0.0, 2.4, 30, 40, -15, 0, "1.57084" +3, iterativefit, up_lf, 0, 0.0, 2.4, 30, 40, 0, 0.1356, "0.457062" +3, iterativefit, up_lf, 0, 0.0, 2.4, 30, 40, 0.1356, 0.4069, "0.300382+1.39019*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 30, 40, 0.4069, 0.5731, "0.607646+0.635054*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 30, 40, 0.5731, 0.6342, "0.33079+1.11814*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 30, 40, 0.6342, 0.6954, "-0.221109+1.98837*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 30, 40, 0.6954, 0.7566, "1.75286+-0.850239*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 30, 40, 0.7566, 0.8178, "0.668677+0.582725*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 30, 40, 0.8178, 0.85895, "1.10356+0.0509476*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 30, 40, 0.85895, 0.88, "0.724868+0.491831*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 30, 40, 0.88, 0.901, "4.92657+-4.28283*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 30, 40, 0.901, 0.922, "0.501848+0.628071*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 30, 40, 0.922, 0.943, "2.05245+-1.05371*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 30, 40, 0.943, 0.95915, "1.79424+-0.77989*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 30, 40, 0.95915, 0.97045, "1.08244+-0.0377771*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 30, 40, 0.97045, 0.98175, "1.10844+-0.0645661*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 30, 40, 0.98175, 0.99305, "3.34862+-2.34639*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 30, 40, 0.99305, 1.00435, "21.8961+-21.0237*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 30, 40, 1.00435, 1.1, "0.730122" +3, iterativefit, down_lf, 0, 0.0, 2.4, 30, 40, -15, 0, "1.68134" +3, iterativefit, down_lf, 0, 0.0, 2.4, 30, 40, 0, 0.1356, "1.24873" +3, iterativefit, down_lf, 0, 0.0, 2.4, 30, 40, 0.1356, 0.4069, "1.39754+-0.675791*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 30, 40, 0.4069, 0.5731, "1.07146+0.125577*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 30, 40, 0.5731, 0.6342, "2.06197+-1.60275*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 30, 40, 0.6342, 0.6954, "0.498302+0.862822*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 30, 40, 0.6954, 0.7566, "2.05793+-1.37996*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 30, 40, 0.7566, 0.8178, "0.841507+0.227792*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 30, 40, 0.8178, 0.85895, "1.3307+-0.370389*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 30, 40, 0.85895, 0.88, "0.893121+0.139045*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 30, 40, 0.88, 0.901, "4.20738+-3.62716*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 30, 40, 0.901, 0.922, "0.917989+0.0236636*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 30, 40, 0.922, 0.943, "1.94394+-1.08908*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 30, 40, 0.943, 0.95915, "1.64575+-0.772862*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 30, 40, 0.95915, 0.97045, "1.10784+-0.212048*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 30, 40, 0.97045, 0.98175, "1.00238+-0.103375*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 30, 40, 0.98175, 0.99305, "2.9079+-2.04432*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 30, 40, 0.99305, 1.00435, "18.9054+-18.1538*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 30, 40, 1.00435, 1.1, "0.643203" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 30, 40, -15, 0, "1.78808" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 30, 40, 0, 0.1356, "1.08142" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 30, 40, 0.1356, 0.4069, "1.09681+-0.0960421*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 30, 40, 0.4069, 0.5731, "0.980267+0.190365*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 30, 40, 0.5731, 0.6342, "1.53532+-0.778142*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 30, 40, 0.6342, 0.6954, "0.289315+1.18654*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 30, 40, 0.6954, 0.7566, "1.95169+-1.20399*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 30, 40, 0.7566, 0.8178, "0.768194+0.360242*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 30, 40, 0.8178, 0.85895, "1.49293+-0.525956*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 30, 40, 0.85895, 0.88, "0.782357+0.301298*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 30, 40, 0.88, 0.901, "4.4732+-3.89285*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 30, 40, 0.901, 0.922, "0.63901+0.362641*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 30, 40, 0.922, 0.943, "1.9307+-1.03832*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 30, 40, 0.943, 0.95915, "1.89667+-1.00224*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 30, 40, 0.95915, 0.97045, "0.981005+-0.0475749*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 30, 40, 0.97045, 0.98175, "0.875728+0.0609084*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 30, 40, 0.98175, 0.99305, "2.04308+-1.12815*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 30, 40, 0.99305, 1.00435, "24.5837+-23.8265*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 30, 40, 1.00435, 1.1, "0.652111" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 30, 40, -15, 0, "1.49648" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 30, 40, 0, 0.1356, "0.926155" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 30, 40, 0.1356, 0.4069, "0.891281+0.265047*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 30, 40, 0.4069, 0.5731, "0.822366+0.434413*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 30, 40, 0.5731, 0.6342, "1.31425+-0.423875*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 30, 40, 0.6342, 0.6954, "0.177759+1.36813*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 30, 40, 0.6954, 0.7566, "1.93999+-1.166*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 30, 40, 0.7566, 0.8178, "0.787448+0.357325*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 30, 40, 0.8178, 0.85895, "1.00602+0.0900532*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 30, 40, 0.85895, 0.88, "0.879173+0.237733*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 30, 40, 0.88, 0.901, "4.47378+-3.84705*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 30, 40, 0.901, 0.922, "0.887932+0.132806*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 30, 40, 0.922, 0.943, "2.03698+-1.11345*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 30, 40, 0.943, 0.95915, "1.50869+-0.553228*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 30, 40, 0.95915, 0.97045, "1.21415+-0.246142*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 30, 40, 0.97045, 0.98175, "1.20455+-0.236246*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 30, 40, 0.98175, 0.99305, "4.07968+-3.16482*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 30, 40, 0.99305, 1.00435, "15.5268+-14.6921*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 30, 40, 1.00435, 1.1, "0.769941" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 30, 40, -15, 0, "1.74672" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 30, 40, 0, 0.1356, "0.985806" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 30, 40, 0.1356, 0.4069, "0.984859+0.0198967*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 30, 40, 0.4069, 0.5731, "0.910168+0.203459*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 30, 40, 0.5731, 0.6342, "1.21046+-0.320511*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 30, 40, 0.6342, 0.6954, "0.0878488+1.4496*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 30, 40, 0.6954, 0.7566, "1.78139+-0.985748*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 30, 40, 0.7566, 0.8178, "0.668097+0.485697*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 30, 40, 0.8178, 0.85895, "1.05571+0.0117303*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 30, 40, 0.85895, 0.88, "0.713344+0.410313*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 30, 40, 0.88, 0.901, "4.33504+-3.70525*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 30, 40, 0.901, 0.922, "0.717035+0.310294*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 30, 40, 0.922, 0.943, "1.90877+-0.982265*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 30, 40, 0.943, 0.95915, "1.43178+-0.476443*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 30, 40, 0.95915, 0.97045, "1.07905+-0.108691*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 30, 40, 0.97045, 0.98175, "1.07684+-0.106407*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 30, 40, 0.98175, 0.99305, "3.94789+-3.03083*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 30, 40, 0.99305, 1.00435, "15.4173+-14.5805*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 30, 40, 1.00435, 1.1, "0.771993" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 30, 40, -15, 0, "1.53335" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 30, 40, 0, 0.1356, "1.02064" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 30, 40, 0.1356, 0.4069, "1.00134+0.153544*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 30, 40, 0.4069, 0.5731, "0.890757+0.425301*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 30, 40, 0.5731, 0.6342, "1.64019+-0.88238*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 30, 40, 0.6342, 0.6954, "0.380377+1.10408*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 30, 40, 0.6954, 0.7566, "2.11257+-1.38684*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 30, 40, 0.7566, 0.8178, "0.889358+0.229872*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 30, 40, 0.8178, 0.85895, "1.44147+-0.445252*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 30, 40, 0.85895, 0.88, "0.950855+0.125932*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 30, 40, 0.88, 0.901, "4.61377+-4.03647*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 30, 40, 0.901, 0.922, "0.812947+0.181979*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 30, 40, 0.922, 0.943, "2.06093+-1.17159*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 30, 40, 0.943, 0.95915, "1.9739+-1.0793*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 30, 40, 0.95915, 0.97045, "1.11854+-0.187499*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 30, 40, 0.97045, 0.98175, "1.00594+-0.0714775*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 30, 40, 0.98175, 0.99305, "2.18053+-1.2679*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 30, 40, 0.99305, 1.00435, "24.6764+-23.9212*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 30, 40, 1.00435, 1.1, "0.650171" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 30, 40, -15, 0, "1.34104" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 30, 40, 0, 0.1356, "1.46157" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 30, 40, 0.1356, 0.4069, "1.7554+-2.16687*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 30, 40, 0.4069, 0.5731, "1.07741+-0.500636*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 30, 40, 0.5731, 0.6342, "0.731251+0.103377*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 30, 40, 0.6342, 0.6954, "0.988464+-0.302194*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 30, 40, 0.6954, 0.7566, "0.901645+-0.177347*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 30, 40, 0.7566, 0.8178, "1.07636+-0.408269*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 30, 40, 0.8178, 0.85895, "1.20938+-0.570929*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 30, 40, 0.85895, 0.88, "1.23131+-0.596456*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 30, 40, 0.88, 0.901, "1.17258+-0.529718*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 30, 40, 0.901, 0.922, "1.27411+-0.642407*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 30, 40, 0.922, 0.943, "0.923699+-0.262347*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 30, 40, 0.943, 0.95915, "1.27313+-0.6329*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 30, 40, 0.95915, 0.97045, "1.08535+-0.437124*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 30, 40, 0.97045, 0.98175, "1.77353+-1.14626*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 30, 40, 0.98175, 0.99305, "0.790362+-0.144812*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 30, 40, 0.99305, 1.00435, "30.95+-30.5155*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 30, 40, 1.00435, 1.1, "0.30173" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 30, 40, -15, 0, "0.829498" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 30, 40, 0, 0.1356, "0.270579" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 30, 40, 0.1356, 0.4069, "-0.189118+3.39009*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 30, 40, 0.4069, 0.5731, "0.871606+0.78325*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 30, 40, 0.5731, 0.6342, "1.41318+-0.161735*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 30, 40, 0.6342, 0.6954, "1.01076+0.472786*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 30, 40, 0.6954, 0.7566, "1.14659+0.27746*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 30, 40, 0.7566, 0.8178, "0.873248+0.638741*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 30, 40, 0.8178, 0.85895, "0.665132+0.893224*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 30, 40, 0.85895, 0.88, "0.630827+0.933162*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 30, 40, 0.88, 0.901, "0.722711+0.828749*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 30, 40, 0.901, 0.922, "0.563861+1.00505*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 30, 40, 0.922, 0.943, "1.11209+0.410445*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 30, 40, 0.943, 0.95915, "0.565401+0.990178*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 30, 40, 0.95915, 0.97045, "0.859183+0.683884*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 30, 40, 0.97045, 0.98175, "-0.217478+1.79333*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 30, 40, 0.98175, 0.99305, "1.3207+0.22656*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 30, 40, 0.99305, 1.00435, "-45.8644+47.7418*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 30, 40, 1.00435, 1.1, "2.08517" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 30, 40, -15, 0, "0.982039" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 30, 40, 0, 0.1356, "1.29622" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 30, 40, 0.1356, 0.4069, "1.53467+-1.75851*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 30, 40, 0.4069, 0.5731, "0.673986+0.356713*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 30, 40, 0.5731, 0.6342, "0.241388+1.11155*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 30, 40, 0.6342, 0.6954, "0.91191+0.054279*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 30, 40, 0.6954, 0.7566, "0.721529+0.328051*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 30, 40, 0.7566, 0.8178, "0.635247+0.442091*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 30, 40, 0.8178, 0.85895, "0.392874+0.738462*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 30, 40, 0.85895, 0.88, "0.240739+0.91558*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 30, 40, 0.88, 0.901, "0.177443+0.987507*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 30, 40, 0.901, 0.922, "0.006843+1.17685*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 30, 40, 0.922, 0.943, "0.218693+0.94708*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 30, 40, 0.943, 0.95915, "-0.143986+1.33168*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 30, 40, 0.95915, 0.97045, "-0.0507323+1.23446*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 30, 40, 0.97045, 0.98175, "-0.856465+2.06472*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 30, 40, 0.98175, 0.99305, "0.253743+0.933877*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 30, 40, 0.99305, 1.00435, "-36.6804+38.1265*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 30, 40, 1.00435, 1.1, "1.61196" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 30, 40, -15, 0, "1.01863" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 30, 40, 0, 0.1356, "0.692747" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 30, 40, 0.1356, 0.4069, "0.445408+1.82403*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 30, 40, 0.4069, 0.5731, "1.33816+-0.370004*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 30, 40, 0.5731, 0.6342, "1.78688+-1.15297*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 30, 40, 0.6342, 0.6954, "1.09137+-0.0563015*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 30, 40, 0.6954, 0.7566, "1.28885+-0.340274*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 30, 40, 0.7566, 0.8178, "1.37834+-0.458563*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 30, 40, 0.8178, 0.85895, "1.62975+-0.765978*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 30, 40, 0.85895, 0.88, "1.78755+-0.949695*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 30, 40, 0.88, 0.901, "1.85321+-1.0243*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 30, 40, 0.901, 0.922, "2.03016+-1.2207*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 30, 40, 0.922, 0.943, "1.81042+-0.982368*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 30, 40, 0.943, 0.95915, "2.18661+-1.3813*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 30, 40, 0.95915, 0.97045, "2.08988+-1.28045*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 30, 40, 0.97045, 0.98175, "2.92564+-2.14166*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 30, 40, 0.98175, 0.99305, "1.77406+-0.968674*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 30, 40, 0.99305, 1.00435, "40.0844+-39.5471*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 30, 40, 1.00435, 1.1, "0.365239" +3, iterativefit, central, 0, 0.0, 2.4, 40, 60, -15, 0, "1.66046" +3, iterativefit, central, 0, 0.0, 2.4, 40, 60, 0, 0.1356, "0.982408" +3, iterativefit, central, 0, 0.0, 2.4, 40, 60, 0.1356, 0.4069, "0.902005+0.559059*x" +3, iterativefit, central, 0, 0.0, 2.4, 40, 60, 0.4069, 0.5731, "1.2583+-0.316565*x" +3, iterativefit, central, 0, 0.0, 2.4, 40, 60, 0.5731, 0.6342, "1.83017+-1.31443*x" +3, iterativefit, central, 0, 0.0, 2.4, 40, 60, 0.6342, 0.6954, "0.573401+0.667236*x" +3, iterativefit, central, 0, 0.0, 2.4, 40, 60, 0.6954, 0.7566, "0.207056+1.19405*x" +3, iterativefit, central, 0, 0.0, 2.4, 40, 60, 0.7566, 0.8178, "1.99894+-1.17429*x" +3, iterativefit, central, 0, 0.0, 2.4, 40, 60, 0.8178, 0.85895, "1.79154+-0.920686*x" +3, iterativefit, central, 0, 0.0, 2.4, 40, 60, 0.85895, 0.88, "1.20865+-0.242073*x" +3, iterativefit, central, 0, 0.0, 2.4, 40, 60, 0.88, 0.901, "0.913841+0.0929352*x" +3, iterativefit, central, 0, 0.0, 2.4, 40, 60, 0.901, 0.922, "1.21505+-0.241365*x" +3, iterativefit, central, 0, 0.0, 2.4, 40, 60, 0.922, 0.943, "1.70514+-0.772917*x" +3, iterativefit, central, 0, 0.0, 2.4, 40, 60, 0.943, 0.95915, "2.28581+-1.38869*x" +3, iterativefit, central, 0, 0.0, 2.4, 40, 60, 0.95915, 0.97045, "4.78962+-3.99914*x" +3, iterativefit, central, 0, 0.0, 2.4, 40, 60, 0.97045, 0.98175, "0.101218+0.832027*x" +3, iterativefit, central, 0, 0.0, 2.4, 40, 60, 0.98175, 0.99305, "-2.09945+3.0736*x" +3, iterativefit, central, 0, 0.0, 2.4, 40, 60, 0.99305, 1.00435, "0.937162+0.0157399*x" +3, iterativefit, central, 0, 0.0, 2.4, 40, 60, 1.00435, 1.1, "0.957447" +3, iterativefit, up_jes, 0, 0.0, 2.4, 40, 60, -15, 0, "1.54887" +3, iterativefit, up_jes, 0, 0.0, 2.4, 40, 60, 0, 0.1356, "0.955009" +3, iterativefit, up_jes, 0, 0.0, 2.4, 40, 60, 0.1356, 0.4069, "0.87009+0.599972*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 40, 60, 0.4069, 0.5731, "1.26681+-0.375011*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 40, 60, 0.5731, 0.6342, "1.57653+-0.915441*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 40, 60, 0.6342, 0.6954, "0.493296+0.792592*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 40, 60, 0.6954, 0.7566, "0.385635+0.947411*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 40, 60, 0.7566, 0.8178, "1.84931+-0.987129*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 40, 60, 0.8178, 0.85895, "1.69015+-0.792508*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 40, 60, 0.85895, 0.88, "1.29349+-0.330715*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 40, 60, 0.88, 0.901, "1.09446+-0.104547*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 40, 60, 0.901, 0.922, "1.28178+-0.312446*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 40, 60, 0.922, 0.943, "1.70863+-0.775404*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 40, 60, 0.943, 0.95915, "2.40965+-1.5188*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 40, 60, 0.95915, 0.97045, "4.88002+-4.09439*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 40, 60, 0.97045, 0.98175, "-1.28318+2.25648*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 40, 60, 0.98175, 0.99305, "-1.08371+2.05331*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 40, 60, 0.99305, 1.00435, "-3.13775+4.12172*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 40, 60, 1.00435, 1.1, "1.00565" +3, iterativefit, down_jes, 0, 0.0, 2.4, 40, 60, -15, 0, "1.75724" +3, iterativefit, down_jes, 0, 0.0, 2.4, 40, 60, 0, 0.1356, "1.01126" +3, iterativefit, down_jes, 0, 0.0, 2.4, 40, 60, 0.1356, 0.4069, "0.938628+0.496062*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 40, 60, 0.4069, 0.5731, "1.30252+-0.398252*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 40, 60, 0.5731, 0.6342, "1.82705+-1.31349*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 40, 60, 0.6342, 0.6954, "0.539676+0.716423*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 40, 60, 0.6954, 0.7566, "0.183841+1.22812*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 40, 60, 0.7566, 0.8178, "2.05209+-1.24115*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 40, 60, 0.8178, 0.85895, "1.51713+-0.587005*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 40, 60, 0.85895, 0.88, "1.77363+-0.885625*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 40, 60, 0.88, 0.901, "1.31395+-0.363259*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 40, 60, 0.901, 0.922, "0.345056+0.712094*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 40, 60, 0.922, 0.943, "2.02661+-1.11171*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 40, 60, 0.943, 0.95915, "2.67579+-1.80014*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 40, 60, 0.95915, 0.97045, "4.3374+-3.53251*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 40, 60, 0.97045, 0.98175, "1.27677+-0.378689*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 40, 60, 0.98175, 0.99305, "-2.63046+3.60118*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 40, 60, 0.99305, 1.00435, "2.74525+-1.81216*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 40, 60, 1.00435, 1.1, "0.930145" +3, iterativefit, up_lf, 0, 0.0, 2.4, 40, 60, -15, 0, "1.59522" +3, iterativefit, up_lf, 0, 0.0, 2.4, 40, 60, 0, 0.1356, "0.659353" +3, iterativefit, up_lf, 0, 0.0, 2.4, 40, 60, 0.1356, 0.4069, "0.480109+1.42454*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 40, 60, 0.4069, 0.5731, "1.0554+0.0106929*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 40, 60, 0.5731, 0.6342, "1.69133+-1.09894*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 40, 60, 0.6342, 0.6954, "0.353109+1.01116*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 40, 60, 0.6954, 0.7566, "0.0769023+1.40835*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 40, 60, 0.7566, 0.8178, "1.97348+-1.09837*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 40, 60, 0.8178, 0.85895, "1.81905+-0.909528*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 40, 60, 0.85895, 0.88, "1.10014+-0.0725661*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 40, 60, 0.88, 0.901, "0.883846+0.173226*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 40, 60, 0.901, 0.922, "1.33376+-0.326129*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 40, 60, 0.922, 0.943, "1.69377+-0.716588*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 40, 60, 0.943, 0.95915, "2.34536+-1.40756*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 40, 60, 0.95915, 0.97045, "4.90861+-4.07999*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 40, 60, 0.97045, 0.98175, "0.0841755+0.891353*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 40, 60, 0.98175, 0.99305, "-2.20952+3.22769*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 40, 60, 0.99305, 1.00435, "0.974251+0.0216341*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 40, 60, 1.00435, 1.1, "0.975382" +3, iterativefit, down_lf, 0, 0.0, 2.4, 40, 60, -15, 0, "1.71284" +3, iterativefit, down_lf, 0, 0.0, 2.4, 40, 60, 0, 0.1356, "1.20709" +3, iterativefit, down_lf, 0, 0.0, 2.4, 40, 60, 0.1356, 0.4069, "1.24122+-0.136924*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 40, 60, 0.4069, 0.5731, "1.42139+-0.579707*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 40, 60, 0.5731, 0.6342, "1.94173+-1.48765*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 40, 60, 0.6342, 0.6954, "0.750517+0.390645*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 40, 60, 0.6954, 0.7566, "0.311707+1.02166*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 40, 60, 0.7566, 0.8178, "2.01931+-1.23528*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 40, 60, 0.8178, 0.85895, "1.76934+-0.929614*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 40, 60, 0.85895, 0.88, "1.29584+-0.378366*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 40, 60, 0.88, 0.901, "0.937917+0.0283668*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 40, 60, 0.901, 0.922, "1.11952+-0.173191*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 40, 60, 0.922, 0.943, "1.7142+-0.818175*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 40, 60, 0.943, 0.95915, "2.23782+-1.37345*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 40, 60, 0.95915, 0.97045, "4.69371+-3.93393*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 40, 60, 0.97045, 0.98175, "0.114917+0.78428*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 40, 60, 0.98175, 0.99305, "-2.01083+2.94954*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 40, 60, 0.99305, 1.00435, "0.907291+0.0109994*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 40, 60, 1.00435, 1.1, "0.906651" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 40, 60, -15, 0, "1.79098" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 40, 60, 0, 0.1356, "1.03071" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 40, 60, 0.1356, 0.4069, "0.963624+0.455806*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 40, 60, 0.4069, 0.5731, "1.31245+-0.401468*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 40, 60, 0.5731, 0.6342, "1.88704+-1.40406*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 40, 60, 0.6342, 0.6954, "0.606875+0.614482*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 40, 60, 0.6954, 0.7566, "0.226477+1.1615*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 40, 60, 0.7566, 0.8178, "1.98704+-1.16543*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 40, 60, 0.8178, 0.85895, "1.97592+-1.15184*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 40, 60, 0.85895, 0.88, "1.17323+-0.217334*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 40, 60, 0.88, 0.901, "0.905117+0.0873356*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 40, 60, 0.901, 0.922, "1.11334+-0.143766*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 40, 60, 0.922, 0.943, "1.67824+-0.756452*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 40, 60, 0.943, 0.95915, "2.47267+-1.59891*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 40, 60, 0.95915, 0.97045, "4.62949+-3.84759*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 40, 60, 0.97045, 0.98175, "-0.155383+1.08299*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 40, 60, 0.98175, 0.99305, "-2.6882+3.66289*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 40, 60, 0.99305, 1.00435, "1.77219+-0.828722*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 40, 60, 1.00435, 1.1, "0.9447" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 40, 60, -15, 0, "1.53207" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 40, 60, 0, 0.1356, "0.934942" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 40, 60, 0.1356, 0.4069, "0.84139+0.660617*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 40, 60, 0.4069, 0.5731, "1.20502+-0.23305*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 40, 60, 0.5731, 0.6342, "1.77423+-1.22625*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 40, 60, 0.6342, 0.6954, "0.540472+0.71912*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 40, 60, 0.6954, 0.7566, "0.187953+1.22605*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 40, 60, 0.7566, 0.8178, "2.01063+-1.18299*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 40, 60, 0.8178, 0.85895, "1.61017+-0.69331*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 40, 60, 0.85895, 0.88, "1.24348+-0.266404*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 40, 60, 0.88, 0.901, "0.922417+0.0984424*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 40, 60, 0.901, 0.922, "1.31508+-0.337362*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 40, 60, 0.922, 0.943, "1.73159+-0.789107*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 40, 60, 0.943, 0.95915, "2.102+-1.18191*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 40, 60, 0.95915, 0.97045, "4.9471+-4.14819*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 40, 60, 0.97045, 0.98175, "0.353614+0.585173*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 40, 60, 0.98175, 0.99305, "-1.52032+2.49394*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 40, 60, 0.99305, 1.00435, "0.115804+0.846368*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 40, 60, 1.00435, 1.1, "0.969974" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 40, 60, -15, 0, "1.76162" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 40, 60, 0, 0.1356, "0.97152" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 40, 60, 0.1356, 0.4069, "0.897938+0.513816*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 40, 60, 0.4069, 0.5731, "1.25363+-0.36034*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 40, 60, 0.5731, 0.6342, "1.73953+-1.20818*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 40, 60, 0.6342, 0.6954, "0.481896+0.774842*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 40, 60, 0.6954, 0.7566, "0.124308+1.28906*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 40, 60, 0.7566, 0.8178, "1.91258+-1.0745*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 40, 60, 0.8178, 0.85895, "1.65491+-0.759426*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 40, 60, 0.85895, 0.88, "1.12411+-0.141464*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 40, 60, 0.88, 0.901, "0.825325+0.198068*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 40, 60, 0.901, 0.922, "1.19162+-0.208474*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 40, 60, 0.922, 0.943, "1.64367+-0.698766*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 40, 60, 0.943, 0.95915, "2.05511+-1.13508*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 40, 60, 0.95915, 0.97045, "4.84217+-4.04084*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 40, 60, 0.97045, 0.98175, "0.253733+0.687316*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 40, 60, 0.98175, 0.99305, "-1.60957+2.58526*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 40, 60, 0.99305, 1.00435, "0.0563375+0.90769*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 40, 60, 1.00435, 1.1, "0.971886" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 40, 60, -15, 0, "1.55794" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 40, 60, 0, 0.1356, "0.993451" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 40, 60, 0.1356, 0.4069, "0.906099+0.604869*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 40, 60, 0.4069, 0.5731, "1.26298+-0.272215*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 40, 60, 0.5731, 0.6342, "1.92193+-1.42201*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 40, 60, 0.6342, 0.6954, "0.666069+0.558221*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 40, 60, 0.6954, 0.7566, "0.290866+1.09777*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 40, 60, 0.7566, 0.8178, "2.08635+-1.27532*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 40, 60, 0.8178, 0.85895, "1.92988+-1.084*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 40, 60, 0.85895, 0.88, "1.29424+-0.343972*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 40, 60, 0.88, 0.901, "1.00347+-0.0135567*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 40, 60, 0.901, 0.922, "1.23874+-0.274672*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 40, 60, 0.922, 0.943, "1.76735+-0.848002*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 40, 60, 0.943, 0.95915, "2.51943+-1.64554*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 40, 60, 0.95915, 0.97045, "4.73626+-3.95678*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 40, 60, 0.97045, 0.98175, "-0.053268+0.97858*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 40, 60, 0.98175, 0.99305, "-2.59558+3.56815*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 40, 60, 0.99305, 1.00435, "1.82932+-0.887721*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 40, 60, 1.00435, 1.1, "0.942802" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 40, 60, -15, 0, "1.44096" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 40, 60, 0, 0.1356, "1.26725" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 40, 60, 0.1356, 0.4069, "1.45582+-1.39066*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 40, 60, 0.4069, 0.5731, "0.968433+-0.192849*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 40, 60, 0.5731, 0.6342, "0.868728+-0.0188736*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 40, 60, 0.6342, 0.6954, "0.921813+-0.102578*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 40, 60, 0.6954, 0.7566, "1.21264+-0.520789*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 40, 60, 0.7566, 0.8178, "0.700093+0.156641*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 40, 60, 0.8178, 0.85895, "1.09264+-0.32336*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 40, 60, 0.85895, 0.88, "1.01269+-0.230278*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 40, 60, 0.88, 0.901, "1.02096+-0.239676*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 40, 60, 0.901, 0.922, "0.878999+-0.0821216*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 40, 60, 0.922, 0.943, "1.02499+-0.240458*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 40, 60, 0.943, 0.95915, "1.18985+-0.415293*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 40, 60, 0.95915, 0.97045, "1.06562+-0.285769*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 40, 60, 0.97045, 0.98175, "1.13282+-0.355014*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 40, 60, 0.98175, 0.99305, "0.302079+0.49117*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 40, 60, 0.99305, 1.00435, "4.81658+-4.05493*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 40, 60, 1.00435, 1.1, "0.744015" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 40, 60, -15, 0, "0.842332" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 40, 60, 0, 0.1356, "0.633369" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 40, 60, 0.1356, 0.4069, "0.378361+1.88059*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 40, 60, 0.4069, 0.5731, "1.03746+0.26079*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 40, 60, 0.5731, 0.6342, "1.17229+0.0255229*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 40, 60, 0.6342, 0.6954, "1.1005+0.138716*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 40, 60, 0.6954, 0.7566, "0.707219+0.704266*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 40, 60, 0.7566, 0.8178, "1.40033+-0.211826*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 40, 60, 0.8178, 0.85895, "0.869494+0.437281*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 40, 60, 0.85895, 0.88, "0.977614+0.311407*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 40, 60, 0.88, 0.901, "0.96643+0.324115*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 40, 60, 0.901, 0.922, "1.1584+0.111053*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 40, 60, 0.922, 0.943, "0.960982+0.325172*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 40, 60, 0.943, 0.95915, "0.738028+0.561603*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 40, 60, 0.95915, 0.97045, "0.906028+0.386447*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 40, 60, 0.97045, 0.98175, "0.815155+0.480087*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 40, 60, 0.98175, 0.99305, "1.93857+-0.664212*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 40, 60, 0.99305, 1.00435, "-4.16642+5.4835*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 40, 60, 1.00435, 1.1, "1.34094" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 40, 60, -15, 0, "0.957518" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 40, 60, 0, 0.1356, "1.13637" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 40, 60, 0.1356, 0.4069, "1.25511+-0.875692*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 40, 60, 0.4069, 0.5731, "0.841129+0.141714*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 40, 60, 0.5731, 0.6342, "0.758573+0.285766*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 40, 60, 0.6342, 0.6954, "0.893345+0.0732588*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 40, 60, 0.6954, 0.7566, "0.920832+0.0337315*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 40, 60, 0.7566, 0.8178, "0.719645+0.299642*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 40, 60, 0.8178, 0.85895, "0.663738+0.368004*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 40, 60, 0.85895, 0.88, "0.632657+0.404189*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 40, 60, 0.88, 0.901, "0.592996+0.449258*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 40, 60, 0.901, 0.922, "0.663295+0.371234*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 40, 60, 0.922, 0.943, "0.533617+0.511884*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 40, 60, 0.943, 0.95915, "0.358025+0.698089*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 40, 60, 0.95915, 0.97045, "0.418244+0.635306*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 40, 60, 0.97045, 0.98175, "0.325069+0.731318*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 40, 60, 0.98175, 0.99305, "1.21878+-0.179006*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 40, 60, 0.99305, 1.00435, "-3.82678+4.90187*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 40, 60, 1.00435, 1.1, "1.09641" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 40, 60, -15, 0, "1.04643" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 40, 60, 0, 0.1356, "0.85097" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 40, 60, 0.1356, 0.4069, "0.721201+0.957003*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 40, 60, 0.4069, 0.5731, "1.17362+-0.154873*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 40, 60, 0.5731, 0.6342, "1.26384+-0.3123*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 40, 60, 0.6342, 0.6954, "1.11656+-0.0800612*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 40, 60, 0.6954, 0.7566, "1.08652+-0.0368636*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 40, 60, 0.7566, 0.8178, "1.30639+-0.327465*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 40, 60, 0.8178, 0.85895, "1.36749+-0.402174*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 40, 60, 0.85895, 0.88, "1.40145+-0.441719*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 40, 60, 0.88, 0.901, "1.4448+-0.490973*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 40, 60, 0.901, 0.922, "1.36797+-0.405705*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 40, 60, 0.922, 0.943, "1.50969+-0.559414*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 40, 60, 0.943, 0.95915, "1.70159+-0.76291*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 40, 60, 0.95915, 0.97045, "1.63577+-0.694296*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 40, 60, 0.97045, 0.98175, "1.7376+-0.799223*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 40, 60, 0.98175, 0.99305, "0.760907+0.195627*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 40, 60, 0.99305, 1.00435, "6.27497+-5.35703*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 40, 60, 1.00435, 1.1, "0.89464" +3, iterativefit, central, 0, 0.0, 2.4, 60, 100, -15, 0, "1.37878" +3, iterativefit, central, 0, 0.0, 2.4, 60, 100, 0, 0.1356, "1.11732" +3, iterativefit, central, 0, 0.0, 2.4, 60, 100, 0.1356, 0.4069, "1.14779+-0.219171*x" +3, iterativefit, central, 0, 0.0, 2.4, 60, 100, 0.4069, 0.5731, "1.01883+0.0977544*x" +3, iterativefit, central, 0, 0.0, 2.4, 60, 100, 0.5731, 0.6342, "1.24113+-0.290123*x" +3, iterativefit, central, 0, 0.0, 2.4, 60, 100, 0.6342, 0.6954, "1.44037+-0.604287*x" +3, iterativefit, central, 0, 0.0, 2.4, 60, 100, 0.6954, 0.7566, "0.976795+0.0623433*x" +3, iterativefit, central, 0, 0.0, 2.4, 60, 100, 0.7566, 0.8178, "1.33462+-0.410597*x" +3, iterativefit, central, 0, 0.0, 2.4, 60, 100, 0.8178, 0.85895, "0.832065+0.203926*x" +3, iterativefit, central, 0, 0.0, 2.4, 60, 100, 0.85895, 0.88, "1.74468+-0.858548*x" +3, iterativefit, central, 0, 0.0, 2.4, 60, 100, 0.88, 0.901, "0.758992+0.261548*x" +3, iterativefit, central, 0, 0.0, 2.4, 60, 100, 0.901, 0.922, "3.17258+-2.41724*x" +3, iterativefit, central, 0, 0.0, 2.4, 60, 100, 0.922, 0.943, "-1.49778+2.64823*x" +3, iterativefit, central, 0, 0.0, 2.4, 60, 100, 0.943, 0.95915, "4.07247+-3.25872*x" +3, iterativefit, central, 0, 0.0, 2.4, 60, 100, 0.95915, 0.97045, "-1.09742+2.13136*x" +3, iterativefit, central, 0, 0.0, 2.4, 60, 100, 0.97045, 0.98175, "3.39617+-2.49906*x" +3, iterativefit, central, 0, 0.0, 2.4, 60, 100, 0.98175, 0.99305, "0.618045+0.330705*x" +3, iterativefit, central, 0, 0.0, 2.4, 60, 100, 0.99305, 1.00435, "-12.7455+13.7877*x" +3, iterativefit, central, 0, 0.0, 2.4, 60, 100, 1.00435, 1.1, "1.10152" +3, iterativefit, up_jes, 0, 0.0, 2.4, 60, 100, -15, 0, "1.33889" +3, iterativefit, up_jes, 0, 0.0, 2.4, 60, 100, 0, 0.1356, "1.12902" +3, iterativefit, up_jes, 0, 0.0, 2.4, 60, 100, 0.1356, 0.4069, "1.16412+-0.257073*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 60, 100, 0.4069, 0.5731, "1.01276+0.114904*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 60, 100, 0.5731, 0.6342, "1.31956+-0.420428*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 60, 100, 0.6342, 0.6954, "1.49323+-0.69428*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 60, 100, 0.6954, 0.7566, "0.88213+0.184502*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 60, 100, 0.7566, 0.8178, "1.30007+-0.367891*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 60, 100, 0.8178, 0.85895, "0.820257+0.21882*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 60, 100, 0.85895, 0.88, "1.53436+-0.612545*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 60, 100, 0.88, 0.901, "0.971794+0.0267325*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 60, 100, 0.901, 0.922, "3.48143+-2.75866*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 60, 100, 0.922, 0.943, "-1.64933+2.80616*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 60, 100, 0.943, 0.95915, "4.20432+-3.40132*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 60, 100, 0.95915, 0.97045, "-1.20855+2.24209*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 60, 100, 0.97045, 0.98175, "3.24769+-2.34984*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 60, 100, 0.98175, 0.99305, "0.131316+0.824459*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 60, 100, 0.99305, 1.00435, "-10.4683+11.4983*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 60, 100, 1.00435, 1.1, "1.07975" +3, iterativefit, down_jes, 0, 0.0, 2.4, 60, 100, -15, 0, "1.46448" +3, iterativefit, down_jes, 0, 0.0, 2.4, 60, 100, 0, 0.1356, "1.09484" +3, iterativefit, down_jes, 0, 0.0, 2.4, 60, 100, 0.1356, 0.4069, "1.11631+-0.149829*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 60, 100, 0.4069, 0.5731, "1.03302+0.0548618*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 60, 100, 0.5731, 0.6342, "1.15799+-0.163197*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 60, 100, 0.6342, 0.6954, "1.31918+-0.417349*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 60, 100, 0.6954, 0.7566, "1.00017+0.0413909*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 60, 100, 0.7566, 0.8178, "1.40281+-0.490785*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 60, 100, 0.8178, 0.85895, "0.730103+0.3318*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 60, 100, 0.85895, 0.88, "1.89972+-1.02989*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 60, 100, 0.88, 0.901, "0.855352+0.1569*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 60, 100, 0.901, 0.922, "3.2442+-2.49443*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 60, 100, 0.922, 0.943, "-1.4181+2.5623*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 60, 100, 0.943, 0.95915, "3.72741+-2.89423*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 60, 100, 0.95915, 0.97045, "-1.29627+2.3434*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 60, 100, 0.97045, 0.98175, "3.53625+-2.63627*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 60, 100, 0.98175, 0.99305, "1.30232+-0.360814*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 60, 100, 0.99305, 1.00435, "-14.5106+15.5628*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 60, 100, 1.00435, 1.1, "1.1187" +3, iterativefit, up_lf, 0, 0.0, 2.4, 60, 100, -15, 0, "1.31295" +3, iterativefit, up_lf, 0, 0.0, 2.4, 60, 100, 0, 0.1356, "0.893332" +3, iterativefit, up_lf, 0, 0.0, 2.4, 60, 100, 0.1356, 0.4069, "0.856715+0.387777*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 60, 100, 0.4069, 0.5731, "0.872006+0.350196*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 60, 100, 0.5731, 0.6342, "1.17732+-0.182543*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 60, 100, 0.6342, 0.6954, "1.40092+-0.535117*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 60, 100, 0.6954, 0.7566, "0.913377+0.165982*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 60, 100, 0.7566, 0.8178, "1.29933+-0.34413*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 60, 100, 0.8178, 0.85895, "0.773237+0.299171*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 60, 100, 0.85895, 0.88, "1.70269+-0.782911*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 60, 100, 0.88, 0.901, "0.756288+0.292547*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 60, 100, 0.901, 0.922, "3.26884+-2.49608*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 60, 100, 0.922, 0.943, "-1.58566+2.76911*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 60, 100, 0.943, 0.95915, "4.1726+-3.33721*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 60, 100, 0.95915, 0.97045, "-1.15194+2.21409*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 60, 100, 0.97045, 0.98175, "3.47345+-2.55214*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 60, 100, 0.98175, 0.99305, "0.625008+0.349257*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 60, 100, 0.99305, 1.00435, "-13.0912+14.1614*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 60, 100, 1.00435, 1.1, "1.11199" +3, iterativefit, down_lf, 0, 0.0, 2.4, 60, 100, -15, 0, "1.4362" +3, iterativefit, down_lf, 0, 0.0, 2.4, 60, 100, 0, 0.1356, "1.28328" +3, iterativefit, down_lf, 0, 0.0, 2.4, 60, 100, 0.1356, 0.4069, "1.4001+-0.744594*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 60, 100, 0.4069, 0.5731, "1.14624+-0.12072*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 60, 100, 0.5731, 0.6342, "1.29674+-0.383332*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 60, 100, 0.6342, 0.6954, "1.47496+-0.664346*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 60, 100, 0.6954, 0.7566, "1.03199+-0.0273437*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 60, 100, 0.7566, 0.8178, "1.36559+-0.468257*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 60, 100, 0.8178, 0.85895, "0.883244+0.121548*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 60, 100, 0.85895, 0.88, "1.78156+-0.924284*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 60, 100, 0.88, 0.901, "0.761569+0.234799*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 60, 100, 0.901, 0.922, "3.09025+-2.34975*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 60, 100, 0.922, 0.943, "-1.42218+2.54442*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 60, 100, 0.943, 0.95915, "3.98708+-3.1918*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 60, 100, 0.95915, 0.97045, "-1.05057+2.0604*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 60, 100, 0.97045, 0.98175, "3.33033+-2.4539*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 60, 100, 0.98175, 0.99305, "0.61221+0.314751*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 60, 100, 0.99305, 1.00435, "-12.4502+13.4686*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 60, 100, 1.00435, 1.1, "1.06383" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 60, 100, -15, 0, "1.51603" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 60, 100, 0, 0.1356, "1.15779" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 60, 100, 0.1356, 0.4069, "1.19974+-0.306648*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 60, 100, 0.4069, 0.5731, "1.0616+0.0328473*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 60, 100, 0.5731, 0.6342, "1.28813+-0.362414*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 60, 100, 0.6342, 0.6954, "1.47832+-0.662317*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 60, 100, 0.6954, 0.7566, "0.988428+0.0421635*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 60, 100, 0.7566, 0.8178, "1.32644+-0.404586*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 60, 100, 0.8178, 0.85895, "0.985706+0.01206*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 60, 100, 0.85895, 0.88, "1.70998+-0.83115*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 60, 100, 0.88, 0.901, "0.687973+0.330223*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 60, 100, 0.901, 0.922, "3.17941+-2.43496*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 60, 100, 0.922, 0.943, "-1.55294+2.69773*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 60, 100, 0.943, 0.95915, "4.30911+-3.51865*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 60, 100, 0.95915, 0.97045, "-1.31422+2.34418*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 60, 100, 0.97045, 0.98175, "3.17509+-2.28184*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 60, 100, 0.98175, 0.99305, "0.0532895+0.897999*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 60, 100, 0.99305, 1.00435, "-11.7785+12.8126*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 60, 100, 1.00435, 1.1, "1.08949" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 60, 100, -15, 0, "1.24388" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 60, 100, 0, 0.1356, "1.07757" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 60, 100, 0.1356, 0.4069, "1.09674+-0.13318*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 60, 100, 0.4069, 0.5731, "0.976805+0.161562*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 60, 100, 0.5731, 0.6342, "1.19494+-0.219062*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 60, 100, 0.6342, 0.6954, "1.40308+-0.547248*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 60, 100, 0.6954, 0.7566, "0.965371+0.0821817*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 60, 100, 0.7566, 0.8178, "1.34268+-0.416512*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 60, 100, 0.8178, 0.85895, "0.681039+0.392541*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 60, 100, 0.85895, 0.88, "1.77881+-0.885492*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 60, 100, 0.88, 0.901, "0.828816+0.194042*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 60, 100, 0.901, 0.922, "3.16591+-2.39985*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 60, 100, 0.922, 0.943, "-1.44357+2.59959*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 60, 100, 0.943, 0.95915, "3.83989+-3.00324*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 60, 100, 0.95915, 0.97045, "-0.884308+1.92217*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 60, 100, 0.97045, 0.98175, "3.61353+-2.71263*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 60, 100, 0.98175, 0.99305, "1.17323+-0.226967*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 60, 100, 0.99305, 1.00435, "-13.6962+14.7465*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 60, 100, 1.00435, 1.1, "1.11333" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 60, 100, -15, 0, "1.49497" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 60, 100, 0, 0.1356, "1.10905" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 60, 100, 0.1356, 0.4069, "1.14566+-0.258592*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 60, 100, 0.4069, 0.5731, "1.01465+0.0633759*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 60, 100, 0.5731, 0.6342, "1.18428+-0.232608*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 60, 100, 0.6342, 0.6954, "1.36578+-0.518791*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 60, 100, 0.6954, 0.7566, "0.8956+0.157334*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 60, 100, 0.7566, 0.8178, "1.26395+-0.329512*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 60, 100, 0.8178, 0.85895, "0.716824+0.339507*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 60, 100, 0.85895, 0.88, "1.67249+-0.773086*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 60, 100, 0.88, 0.901, "0.719289+0.310092*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 60, 100, 0.901, 0.922, "3.0945+-2.32611*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 60, 100, 0.922, 0.943, "-1.52833+2.68781*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 60, 100, 0.943, 0.95915, "3.81374+-2.97717*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 60, 100, 0.95915, 0.97045, "-0.993798+2.03513*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 60, 100, 0.97045, 0.98175, "3.52998+-2.6264*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 60, 100, 0.98175, 0.99305, "1.09717+-0.148362*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 60, 100, 0.99305, 1.00435, "-13.7851+14.8381*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 60, 100, 1.00435, 1.1, "1.11596" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 60, 100, -15, 0, "1.26118" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 60, 100, 0, 0.1356, "1.12571" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 60, 100, 0.1356, 0.4069, "1.14996+-0.179265*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 60, 100, 0.4069, 0.5731, "1.02308+0.13256*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 60, 100, 0.5731, 0.6342, "1.29869+-0.348354*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 60, 100, 0.6342, 0.6954, "1.5159+-0.690847*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 60, 100, 0.6954, 0.7566, "1.05901+-0.033823*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 60, 100, 0.7566, 0.8178, "1.40619+-0.49269*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 60, 100, 0.8178, 0.85895, "0.948742+0.066669*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 60, 100, 0.85895, 0.88, "1.81778+-0.945078*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 60, 100, 0.88, 0.901, "0.799195+0.212407*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 60, 100, 0.901, 0.922, "3.25166+-2.50953*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 60, 100, 0.922, 0.943, "-1.46686+2.60818*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 60, 100, 0.943, 0.95915, "4.33445+-3.5438*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 60, 100, 0.95915, 0.97045, "-1.20234+2.2288*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 60, 100, 0.97045, 0.98175, "3.26073+-2.37017*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 60, 100, 0.98175, 0.99305, "0.132995+0.815707*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 60, 100, 0.99305, 1.00435, "-11.6931+12.7245*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 60, 100, 1.00435, 1.1, "1.08688" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 60, 100, -15, 0, "1.2556" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 60, 100, 0, 0.1356, "1.16397" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 60, 100, 0.1356, 0.4069, "1.28249+-0.874008*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 60, 100, 0.4069, 0.5731, "0.990785+-0.157114*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 60, 100, 0.5731, 0.6342, "0.938746+-0.0663116*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 60, 100, 0.6342, 0.6954, "0.895461+0.00193993*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 60, 100, 0.6954, 0.7566, "0.942413+-0.065577*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 60, 100, 0.7566, 0.8178, "0.957836+-0.085962*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 60, 100, 0.8178, 0.85895, "1.11835+-0.282244*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 60, 100, 0.85895, 0.88, "1.05383+-0.207125*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 60, 100, 0.88, 0.901, "0.908626+-0.0421188*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 60, 100, 0.901, 0.922, "1.0146+-0.159738*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 60, 100, 0.922, 0.943, "0.968531+-0.10977*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 60, 100, 0.943, 0.95915, "1.33027+-0.493371*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 60, 100, 0.95915, 0.97045, "0.846415+0.0110874*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 60, 100, 0.97045, 0.98175, "0.772991+0.0867468*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 60, 100, 0.98175, 0.99305, "0.566678+0.296895*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 60, 100, 0.99305, 1.00435, "4.5881+-3.75267*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 60, 100, 1.00435, 1.1, "0.819105" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 60, 100, -15, 0, "0.748852" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 60, 100, 0, 0.1356, "0.800057" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 60, 100, 0.1356, 0.4069, "0.655811+1.06377*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 60, 100, 0.4069, 0.5731, "1.01085+0.191225*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 60, 100, 0.5731, 0.6342, "1.07419+0.0807088*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 60, 100, 0.6342, 0.6954, "1.12687+-0.00236111*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 60, 100, 0.6954, 0.7566, "1.06972+0.0798147*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 60, 100, 0.7566, 0.8178, "1.05095+0.104625*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 60, 100, 0.8178, 0.85895, "0.855581+0.343522*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 60, 100, 0.85895, 0.88, "0.934113+0.252095*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 60, 100, 0.88, 0.901, "1.11084+0.0512634*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 60, 100, 0.901, 0.922, "0.981861+0.19442*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 60, 100, 0.922, 0.943, "1.03793+0.133603*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 60, 100, 0.943, 0.95915, "0.59766+0.600489*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 60, 100, 0.95915, 0.97045, "1.18656+-0.0134946*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 60, 100, 0.97045, 0.98175, "1.27593+-0.105581*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 60, 100, 0.98175, 0.99305, "1.52703+-0.361355*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 60, 100, 0.99305, 1.00435, "-3.3675+4.56743*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 60, 100, 1.00435, 1.1, "1.2198" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 60, 100, -15, 0, "0.96915" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 60, 100, 0, 0.1356, "1.07855" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 60, 100, 0.1356, 0.4069, "1.15392+-0.555865*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 60, 100, 0.4069, 0.5731, "0.909589+0.0446123*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 60, 100, 0.5731, 0.6342, "0.818883+0.202886*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 60, 100, 0.6342, 0.6954, "0.829425+0.186263*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 60, 100, 0.6954, 0.7566, "0.887495+0.102757*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 60, 100, 0.7566, 0.8178, "0.866982+0.12987*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 60, 100, 0.8178, 0.85895, "0.77265+0.245217*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 60, 100, 0.85895, 0.88, "0.738729+0.284708*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 60, 100, 0.88, 0.901, "0.796543+0.219011*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 60, 100, 0.901, 0.922, "0.718929+0.305153*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 60, 100, 0.922, 0.943, "0.733431+0.289424*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 60, 100, 0.943, 0.95915, "0.405212+0.637483*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 60, 100, 0.95915, 0.97045, "0.794109+0.232022*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 60, 100, 0.97045, 0.98175, "0.870848+0.152947*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 60, 100, 0.98175, 0.99305, "1.11553+-0.0962795*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 60, 100, 0.99305, 1.00435, "-3.22562+4.27525*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 60, 100, 1.00435, 1.1, "1.06823" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 60, 100, -15, 0, "1.03288" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 60, 100, 0, 0.1356, "0.916286" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 60, 100, 0.1356, 0.4069, "0.835954+0.592417*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 60, 100, 0.4069, 0.5731, "1.09636+-0.0475458*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 60, 100, 0.5731, 0.6342, "1.19303+-0.216227*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 60, 100, 0.6342, 0.6954, "1.18179+-0.198511*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 60, 100, 0.6954, 0.7566, "1.1199+-0.109514*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 60, 100, 0.7566, 0.8178, "1.14176+-0.138409*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 60, 100, 0.8178, 0.85895, "1.2423+-0.261342*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 60, 100, 0.85895, 0.88, "1.27845+-0.30343*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 60, 100, 0.88, 0.901, "1.21684+-0.233413*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 60, 100, 0.901, 0.922, "1.29955+-0.325219*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 60, 100, 0.922, 0.943, "1.2841+-0.308456*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 60, 100, 0.943, 0.95915, "1.6339+-0.679402*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 60, 100, 0.95915, 0.97045, "1.21943+-0.247279*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 60, 100, 0.97045, 0.98175, "1.13764+-0.163004*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 60, 100, 0.98175, 0.99305, "0.876877+0.102611*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 60, 100, 0.99305, 1.00435, "5.50348+-4.55638*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 60, 100, 1.00435, 1.1, "0.927287" +3, iterativefit, central, 0, 0.0, 2.4, 100, 10000, -15, 0, "1.79624" +3, iterativefit, central, 0, 0.0, 2.4, 100, 10000, 0, 0.1356, "1.26263" +3, iterativefit, central, 0, 0.0, 2.4, 100, 10000, 0.1356, 0.4069, "1.35833+-0.72121*x" +3, iterativefit, central, 0, 0.0, 2.4, 100, 10000, 0.4069, 0.5731, "1.08437+-0.0479235*x" +3, iterativefit, central, 0, 0.0, 2.4, 100, 10000, 0.5731, 0.6342, "0.143645+1.59354*x" +3, iterativefit, central, 0, 0.0, 2.4, 100, 10000, 0.6342, 0.6954, "1.99844+-1.33108*x" +3, iterativefit, central, 0, 0.0, 2.4, 100, 10000, 0.6954, 0.7566, "1.27937+-0.29705*x" +3, iterativefit, central, 0, 0.0, 2.4, 100, 10000, 0.7566, 0.8178, "2.30171+-1.64827*x" +3, iterativefit, central, 0, 0.0, 2.4, 100, 10000, 0.8178, 0.85895, "1.66859+-0.874101*x" +3, iterativefit, central, 0, 0.0, 2.4, 100, 10000, 0.85895, 0.88, "-1.01439+2.24946*x" +3, iterativefit, central, 0, 0.0, 2.4, 100, 10000, 0.88, 0.901, "2.69363+-1.9642*x" +3, iterativefit, central, 0, 0.0, 2.4, 100, 10000, 0.901, 0.922, "2.40077+-1.63916*x" +3, iterativefit, central, 0, 0.0, 2.4, 100, 10000, 0.922, 0.943, "-2.06372+3.20301*x" +3, iterativefit, central, 0, 0.0, 2.4, 100, 10000, 0.943, 0.95915, "4.37318+-3.62296*x" +3, iterativefit, central, 0, 0.0, 2.4, 100, 10000, 0.95915, 0.97045, "1.63113+-0.764132*x" +3, iterativefit, central, 0, 0.0, 2.4, 100, 10000, 0.97045, 0.98175, "-4.76479+5.82654*x" +3, iterativefit, central, 0, 0.0, 2.4, 100, 10000, 0.98175, 0.99305, "-0.659885+1.64533*x" +3, iterativefit, central, 0, 0.0, 2.4, 100, 10000, 0.99305, 1.00435, "-17.2147+18.316*x" +3, iterativefit, central, 0, 0.0, 2.4, 100, 10000, 1.00435, 1.1, "1.18295" +3, iterativefit, up_jes, 0, 0.0, 2.4, 100, 10000, -15, 0, "1.75687" +3, iterativefit, up_jes, 0, 0.0, 2.4, 100, 10000, 0, 0.1356, "1.28309" +3, iterativefit, up_jes, 0, 0.0, 2.4, 100, 10000, 0.1356, 0.4069, "1.37864+-0.722982*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 100, 10000, 0.4069, 0.5731, "1.12982+-0.111468*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 100, 10000, 0.5731, 0.6342, "0.142828+1.61073*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 100, 10000, 0.6342, 0.6954, "2.12615+-1.51656*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 100, 10000, 0.6954, 0.7566, "1.22473+-0.220293*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 100, 10000, 0.7566, 0.8178, "2.40733+-1.78334*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 100, 10000, 0.8178, 0.85895, "1.62692+-0.829057*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 100, 10000, 0.85895, 0.88, "-0.817519+2.01679*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 100, 10000, 0.88, 0.901, "2.46008+-1.70776*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 100, 10000, 0.901, 0.922, "2.32735+-1.56044*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 100, 10000, 0.922, 0.943, "-2.11897+3.26203*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 100, 10000, 0.943, 0.95915, "4.81996+-4.09633*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 100, 10000, 0.95915, 0.97045, "1.12718+-0.246273*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 100, 10000, 0.97045, 0.98175, "-4.62348+5.67949*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 100, 10000, 0.98175, 0.99305, "-0.317241+1.2932*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 100, 10000, 0.99305, 1.00435, "-15.1407+16.2205*x" +3, iterativefit, up_jes, 0, 0.0, 2.4, 100, 10000, 1.00435, 1.1, "1.1525" +3, iterativefit, down_jes, 0, 0.0, 2.4, 100, 10000, -15, 0, "1.83353" +3, iterativefit, down_jes, 0, 0.0, 2.4, 100, 10000, 0, 0.1356, "1.20615" +3, iterativefit, down_jes, 0, 0.0, 2.4, 100, 10000, 0.1356, 0.4069, "1.28043+-0.563484*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 100, 10000, 0.4069, 0.5731, "1.03691+0.0349977*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 100, 10000, 0.5731, 0.6342, "0.102657+1.66517*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 100, 10000, 0.6342, 0.6954, "1.9722+-1.28271*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 100, 10000, 0.6954, 0.7566, "1.40417+-0.465875*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 100, 10000, 0.7566, 0.8178, "2.21424+-1.53653*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 100, 10000, 0.8178, 0.85895, "1.75669+-0.97705*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 100, 10000, 0.85895, 0.88, "-1.33351+2.6206*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 100, 10000, 0.88, 0.901, "2.82071+-2.10011*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 100, 10000, 0.901, 0.922, "2.53309+-1.78089*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 100, 10000, 0.922, 0.943, "-2.19726+3.34965*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 100, 10000, 0.943, 0.95915, "4.27874+-3.5178*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 100, 10000, 0.95915, 0.97045, "2.1911+-1.34124*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 100, 10000, 0.97045, 0.98175, "-5.41099+6.49233*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 100, 10000, 0.98175, 0.99305, "-0.767999+1.76303*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 100, 10000, 0.99305, 1.00435, "-19.2753+20.3999*x" +3, iterativefit, down_jes, 0, 0.0, 2.4, 100, 10000, 1.00435, 1.1, "1.21544" +3, iterativefit, up_lf, 0, 0.0, 2.4, 100, 10000, -15, 0, "1.77332" +3, iterativefit, up_lf, 0, 0.0, 2.4, 100, 10000, 0, 0.1356, "0.951518" +3, iterativefit, up_lf, 0, 0.0, 2.4, 100, 10000, 0.1356, 0.4069, "0.965735+0.105228*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 100, 10000, 0.4069, 0.5731, "0.896513+0.275348*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 100, 10000, 0.5731, 0.6342, "0.0956497+1.67277*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 100, 10000, 0.6342, 0.6954, "1.90873+-1.18607*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 100, 10000, 0.6954, 0.7566, "1.18975+-0.152164*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 100, 10000, 0.7566, 0.8178, "2.26826+-1.57763*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 100, 10000, 0.8178, 0.85895, "1.63513+-0.803449*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 100, 10000, 0.85895, 0.88, "-0.903621+2.1522*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 100, 10000, 0.88, 0.901, "2.56542+-1.7899*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 100, 10000, 0.901, 0.922, "2.41994+-1.62843*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 100, 10000, 0.922, 0.943, "-2.16858+3.34828*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 100, 10000, 0.943, 0.95915, "4.49903+-3.72236*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 100, 10000, 0.95915, 0.97045, "1.68071+-0.784009*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 100, 10000, 0.97045, 0.98175, "-4.95307+6.05177*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 100, 10000, 0.98175, 0.99305, "-0.688257+1.70767*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 100, 10000, 0.99305, 1.00435, "-17.8292+18.9686*x" +3, iterativefit, up_lf, 0, 0.0, 2.4, 100, 10000, 1.00435, 1.1, "1.18638" +3, iterativefit, down_lf, 0, 0.0, 2.4, 100, 10000, -15, 0, "1.81403" +3, iterativefit, down_lf, 0, 0.0, 2.4, 100, 10000, 0, 0.1356, "1.44928" +3, iterativefit, down_lf, 0, 0.0, 2.4, 100, 10000, 0.1356, 0.4069, "1.66108+-1.35839*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 100, 10000, 0.4069, 0.5731, "1.22926+-0.297148*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 100, 10000, 0.5731, 0.6342, "0.180656+1.53256*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 100, 10000, 0.6342, 0.6954, "2.06774+-1.44297*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 100, 10000, 0.6954, 0.7566, "1.34855+-0.408767*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 100, 10000, 0.7566, 0.8178, "2.32764+-1.70283*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 100, 10000, 0.8178, 0.85895, "1.6945+-0.928627*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 100, 10000, 0.85895, 0.88, "-1.09985+2.32458*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 100, 10000, 0.88, 0.901, "2.79265+-2.0987*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 100, 10000, 0.901, 0.922, "2.38615+-1.64754*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 100, 10000, 0.922, 0.943, "-1.98301+3.09124*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 100, 10000, 0.943, 0.95915, "4.27645+-3.54657*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 100, 10000, 0.95915, 0.97045, "1.59302+-0.748857*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 100, 10000, 0.97045, 0.98175, "-4.61994+5.65329*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 100, 10000, 0.98175, 0.99305, "-0.638056+1.59738*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 100, 10000, 0.99305, 1.00435, "-16.7421+17.8141*x" +3, iterativefit, down_lf, 0, 0.0, 2.4, 100, 10000, 1.00435, 1.1, "1.12804" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 100, 10000, -15, 0, "2.0733" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 100, 10000, 0, 0.1356, "1.32574" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 100, 10000, 0.1356, 0.4069, "1.44176+-0.87008*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 100, 10000, 0.4069, 0.5731, "1.14445+-0.139422*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 100, 10000, 0.5731, 0.6342, "0.190381+1.52533*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 100, 10000, 0.6342, 0.6954, "2.06046+-1.42338*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 100, 10000, 0.6954, 0.7566, "1.30676+-0.339551*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 100, 10000, 0.7566, 0.8178, "2.29796+-1.64963*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 100, 10000, 0.8178, 0.85895, "1.84463+-1.0953*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 100, 10000, 0.85895, 0.88, "-1.02788+2.24892*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 100, 10000, 0.88, 0.901, "2.64741+-1.92755*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 100, 10000, 0.901, 0.922, "2.31082+-1.55398*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 100, 10000, 0.922, 0.943, "-2.01387+3.13658*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 100, 10000, 0.943, 0.95915, "4.43622+-3.70339*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 100, 10000, 0.95915, 0.97045, "1.67359+-0.8231*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 100, 10000, 0.97045, 0.98175, "-5.18651+6.24589*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 100, 10000, 0.98175, 0.99305, "-1.44074+2.43049*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 100, 10000, 0.99305, 1.00435, "-14.2365+15.3158*x" +3, iterativefit, up_hfstats1, 0, 0.0, 2.4, 100, 10000, 1.00435, 1.1, "1.14762" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 100, 10000, -15, 0, "1.52552" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 100, 10000, 0, 0.1356, "1.20095" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 100, 10000, 0.1356, 0.4069, "1.27681+-0.575739*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 100, 10000, 0.4069, 0.5731, "1.02566+0.0414902*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 100, 10000, 0.5731, 0.6342, "0.0979759+1.66021*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 100, 10000, 0.6342, 0.6954, "1.93786+-1.2409*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 100, 10000, 0.6954, 0.7566, "1.25263+-0.255521*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 100, 10000, 0.7566, 0.8178, "2.30538+-1.64695*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 100, 10000, 0.8178, 0.85895, "1.49658+-0.657952*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 100, 10000, 0.85895, 0.88, "-1.00121+2.25*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 100, 10000, 0.88, 0.901, "2.73882+-2.00003*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 100, 10000, 0.901, 0.922, "2.48869+-1.72241*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 100, 10000, 0.922, 0.943, "-2.11244+3.26797*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 100, 10000, 0.943, 0.95915, "4.31162+-3.54441*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 100, 10000, 0.95915, 0.97045, "1.58966+-0.706515*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 100, 10000, 0.97045, 0.98175, "-4.35271+5.4168*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 100, 10000, 0.98175, 0.99305, "0.103176+0.878082*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 100, 10000, 0.99305, 1.00435, "-20.1253+21.2481*x" +3, iterativefit, down_hfstats1, 0, 0.0, 2.4, 100, 10000, 1.00435, 1.1, "1.21749" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 100, 10000, -15, 0, "2.04486" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 100, 10000, 0, 0.1356, "1.25086" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 100, 10000, 0.1356, 0.4069, "1.35398+-0.770175*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 100, 10000, 0.4069, 0.5731, "1.07761+-0.0909667*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 100, 10000, 0.5731, 0.6342, "0.0784822+1.65241*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 100, 10000, 0.6342, 0.6954, "1.89312+-1.20889*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 100, 10000, 0.6954, 0.7566, "1.16924+-0.167938*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 100, 10000, 0.7566, 0.8178, "2.1977+-1.52726*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 100, 10000, 0.8178, 0.85895, "1.52341+-0.702735*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 100, 10000, 0.85895, 0.88, "-1.1076+2.36032*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 100, 10000, 0.88, 0.901, "2.60958+-1.86375*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 100, 10000, 0.901, 0.922, "2.36209+-1.58907*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 100, 10000, 0.922, 0.943, "-2.19092+3.34912*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 100, 10000, 0.943, 0.95915, "4.23409+-3.46425*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 100, 10000, 0.95915, 0.97045, "1.50095+-0.614705*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 100, 10000, 0.97045, 0.98175, "-4.49448+5.56329*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 100, 10000, 0.98175, 0.99305, "-0.00116588+0.986439*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 100, 10000, 0.99305, 1.00435, "-20.3029+21.4303*x" +3, iterativefit, up_hfstats2, 0, 0.0, 2.4, 100, 10000, 1.00435, 1.1, "1.22186" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 100, 10000, -15, 0, "1.54372" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 100, 10000, 0, 0.1356, "1.27461" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 100, 10000, 0.1356, 0.4069, "1.36274+-0.671475*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 100, 10000, 0.4069, 0.5731, "1.09123+-0.00420389*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 100, 10000, 0.5731, 0.6342, "0.209832+1.53374*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 100, 10000, 0.6342, 0.6954, "2.10541+-1.45519*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 100, 10000, 0.6954, 0.7566, "1.39124+-0.42819*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 100, 10000, 0.7566, 0.8178, "2.40734+-1.77118*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 100, 10000, 0.8178, 0.85895, "1.81606+-1.04816*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 100, 10000, 0.85895, 0.88, "-0.919709+2.13685*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 100, 10000, 0.88, 0.901, "2.77899+-2.06622*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 100, 10000, 0.901, 0.922, "2.44005+-1.69003*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 100, 10000, 0.922, 0.943, "-1.93451+3.05461*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 100, 10000, 0.943, 0.95915, "4.51446+-3.78417*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 100, 10000, 0.95915, 0.97045, "1.76336+-0.915905*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 100, 10000, 0.97045, 0.98175, "-5.03933+6.09392*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 100, 10000, 0.98175, 0.99305, "-1.32895+2.31458*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 100, 10000, 0.99305, 1.00435, "-14.078+15.1528*x" +3, iterativefit, down_hfstats2, 0, 0.0, 2.4, 100, 10000, 1.00435, 1.1, "1.14338" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 100, 10000, -15, 0, "1.61129" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 100, 10000, 0, 0.1356, "1.20044" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 100, 10000, 0.1356, 0.4069, "1.34161+-1.04106*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 100, 10000, 0.4069, 0.5731, "0.989949+-0.176821*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 100, 10000, 0.5731, 0.6342, "1.15893+-0.471672*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 100, 10000, 0.6342, 0.6954, "0.73829+0.191587*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 100, 10000, 0.6954, 0.7566, "0.868158+0.00483284*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 100, 10000, 0.7566, 0.8178, "0.937147+-0.0863497*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 100, 10000, 0.8178, 0.85895, "1.3148+-0.548142*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 100, 10000, 0.85895, 0.88, "0.405062+0.510987*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 100, 10000, 0.88, 0.901, "1.39638+-0.615506*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 100, 10000, 0.901, 0.922, "2.07846+-1.37254*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 100, 10000, 0.922, 0.943, "-0.221795+1.12232*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 100, 10000, 0.943, 0.95915, "2.19202+-1.4374*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 100, 10000, 0.95915, 0.97045, "1.59697+-0.817004*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 100, 10000, 0.97045, 0.98175, "-1.42655+2.29858*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 100, 10000, 0.98175, 0.99305, "0.520847+0.314979*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 100, 10000, 0.99305, 1.00435, "9.38597+-8.61219*x" +3, iterativefit, up_cferr1, 1, 0.0, 2.4, 100, 10000, 1.00435, 1.1, "0.73632" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 100, 10000, -15, 0, "0.672673" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 100, 10000, 0, 0.1356, "0.7468" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 100, 10000, 0.1356, 0.4069, "0.569206+1.30969*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 100, 10000, 0.4069, 0.5731, "1.01161+0.222448*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 100, 10000, 0.5731, 0.6342, "0.799024+0.593382*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 100, 10000, 0.6342, 0.6954, "1.3282+-0.241024*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 100, 10000, 0.6954, 0.7566, "1.16482+-0.0060799*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 100, 10000, 0.7566, 0.8178, "1.07803+0.108631*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 100, 10000, 0.8178, 0.85895, "0.60293+0.689585*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 100, 10000, 0.85895, 0.88, "1.74742+-0.642842*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 100, 10000, 0.88, 0.901, "0.500306+0.774331*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 100, 10000, 0.901, 0.922, "-0.357783+1.7267*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 100, 10000, 0.922, 0.943, "2.53603+-1.41192*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 100, 10000, 0.943, 0.95915, "-0.500648+1.80831*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 100, 10000, 0.95915, 0.97045, "0.247954+1.02782*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 100, 10000, 0.97045, 0.98175, "4.05166+-2.89171*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 100, 10000, 0.98175, 0.99305, "1.60176+-0.396256*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 100, 10000, 0.99305, 1.00435, "-9.55093+10.8345*x" +3, iterativefit, down_cferr1, 1, 0.0, 2.4, 100, 10000, 1.00435, 1.1, "1.33068" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 100, 10000, -15, 0, "0.963169" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 100, 10000, 0, 0.1356, "1.09537" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 100, 10000, 0.1356, 0.4069, "1.18848+-0.686634*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 100, 10000, 0.4069, 0.5731, "0.847972+0.150192*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 100, 10000, 0.5731, 0.6342, "1.20586+-0.474278*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 100, 10000, 0.6342, 0.6954, "0.499439+0.639594*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 100, 10000, 0.6954, 0.7566, "0.792085+0.218762*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 100, 10000, 0.7566, 0.8178, "0.822302+0.178824*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 100, 10000, 0.8178, 0.85895, "0.642629+0.398527*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 100, 10000, 0.85895, 0.88, "0.977117+0.00911168*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 100, 10000, 0.88, 0.901, "0.461843+0.594651*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 100, 10000, 0.901, 0.922, "-0.137771+1.26015*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 100, 10000, 0.922, 0.943, "1.5145+-0.531904*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 100, 10000, 0.943, 0.95915, "-0.451458+1.55289*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 100, 10000, 0.95915, 0.97045, "-0.0692521+1.15441*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 100, 10000, 0.97045, 0.98175, "2.86786+-1.87214*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 100, 10000, 0.98175, 0.99305, "1.08639+-0.0575579*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 100, 10000, 0.99305, 1.00435, "-8.58533+9.68185*x" +3, iterativefit, up_cferr2, 1, 0.0, 2.4, 100, 10000, 1.00435, 1.1, "1.13864" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 100, 10000, -15, 0, "1.03976" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 100, 10000, 0, 0.1356, "0.897047" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 100, 10000, 0.1356, 0.4069, "0.796535+0.741235*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 100, 10000, 0.4069, 0.5731, "1.16412+-0.162136*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 100, 10000, 0.5731, 0.6342, "0.777774+0.511993*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 100, 10000, 0.6342, 0.6954, "1.54037+-0.690454*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 100, 10000, 0.6954, 0.7566, "1.22445+-0.236158*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 100, 10000, 0.7566, 0.8178, "1.19183+-0.193044*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 100, 10000, 0.8178, 0.85895, "1.38579+-0.430218*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 100, 10000, 0.85895, 0.88, "1.0247+-0.00983624*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 100, 10000, 0.88, 0.901, "1.58095+-0.641937*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 100, 10000, 0.901, 0.922, "2.22825+-1.36036*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 100, 10000, 0.922, 0.943, "0.444586+0.5742*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 100, 10000, 0.943, 0.95915, "2.56688+-1.67637*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 100, 10000, 0.95915, 0.97045, "2.15428+-1.2462*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 100, 10000, 0.97045, 0.98175, "-1.01639+2.02101*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 100, 10000, 0.98175, 0.99305, "0.906738+0.0621349*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 100, 10000, 0.99305, 1.00435, "11.3476+-10.4518*x" +3, iterativefit, down_cferr2, 1, 0.0, 2.4, 100, 10000, 1.00435, 1.1, "0.850336" +3, iterativefit, central, 2, 0.0, 0.8, 20, 30, -15, 0, "1.23268" +3, iterativefit, central, 2, 0.0, 0.8, 20, 30, 0, 0.0452, "0.758676" +3, iterativefit, central, 2, 0.0, 0.8, 20, 30, 0.0452, 0.9, "0.705731+x*(1.44293+x*(-8.45406+x*(61.7356+x*(-178.2+x*(212.049+x*-88.9248)))))" +3, iterativefit, central, 2, 0.0, 0.8, 20, 30, 0.9, 1.1, "1.19948" +3, iterativefit, up_jes, 2, 0.0, 0.8, 20, 30, -15, 0, "1.11578" +3, iterativefit, up_jes, 2, 0.0, 0.8, 20, 30, 0, 0.0452, "0.976884" +3, iterativefit, up_jes, 2, 0.0, 0.8, 20, 30, 0.0452, 0.9, "1.23495+x*(-8.0531+x*(59.1132+x*(-170.61+x*(225.23+x*(-128.045+x*21.814)))))" +3, iterativefit, up_jes, 2, 0.0, 0.8, 20, 30, 0.9, 1.1, "1.25133" +3, iterativefit, down_jes, 2, 0.0, 0.8, 20, 30, -15, 0, "1.37098" +3, iterativefit, down_jes, 2, 0.0, 0.8, 20, 30, 0, 0.0452, "0.628121" +3, iterativefit, down_jes, 2, 0.0, 0.8, 20, 30, 0.0452, 0.9, "0.366965+x*(8.08939+x*(-62.1168+x*(267.113+x*(-562.303+x*(551.26+x*-202.254)))))" +3, iterativefit, down_jes, 2, 0.0, 0.8, 20, 30, 0.9, 1.1, "1.15843" +3, iterativefit, up_hf, 2, 0.0, 0.8, 20, 30, -15, 0, "1.24359" +3, iterativefit, up_hf, 2, 0.0, 0.8, 20, 30, 0, 0.0452, "0.748682" +3, iterativefit, up_hf, 2, 0.0, 0.8, 20, 30, 0.0452, 0.9, "0.645158+x*(3.14057+x*(-23.8868+x*(125.563+x*(-308.204+x*(339.761+x*-137.716)))))" +3, iterativefit, up_hf, 2, 0.0, 0.8, 20, 30, 0.9, 1.1, "0.883597" +3, iterativefit, down_hf, 2, 0.0, 0.8, 20, 30, -15, 0, "1.22162" +3, iterativefit, down_hf, 2, 0.0, 0.8, 20, 30, 0, 0.0452, "0.782732" +3, iterativefit, down_hf, 2, 0.0, 0.8, 20, 30, 0.0452, 0.9, "0.804058+x*(-0.99651+x*(12.6522+x*(-22.7488+x*(-9.93851+x*(49.7333+x*-28.0376)))))" +3, iterativefit, down_hf, 2, 0.0, 0.8, 20, 30, 0.9, 1.1, "1.51766" +3, iterativefit, up_lfstats1, 2, 0.0, 0.8, 20, 30, -15, 0, "1.23946" +3, iterativefit, up_lfstats1, 2, 0.0, 0.8, 20, 30, 0, 0.0452, "0.781549" +3, iterativefit, up_lfstats1, 2, 0.0, 0.8, 20, 30, 0.0452, 0.9, "0.75888+x*(0.55307+x*(-2.89022+x*(45.2669+x*(-153.589+x*(194.31+x*-84.1774)))))" +3, iterativefit, up_lfstats1, 2, 0.0, 0.8, 20, 30, 0.9, 1.1, "1.14812" +3, iterativefit, down_lfstats1, 2, 0.0, 0.8, 20, 30, -15, 0, "1.22588" +3, iterativefit, down_lfstats1, 2, 0.0, 0.8, 20, 30, 0, 0.0452, "0.735276" +3, iterativefit, down_lfstats1, 2, 0.0, 0.8, 20, 30, 0.0452, 0.9, "0.651138+x*(2.36122+x*(-14.2301+x*(78.9771+x*(-204.268+x*(231.148+x*-94.1668)))))" +3, iterativefit, down_lfstats1, 2, 0.0, 0.8, 20, 30, 0.9, 1.1, "1.25046" +3, iterativefit, up_lfstats2, 2, 0.0, 0.8, 20, 30, -15, 0, "1.24102" +3, iterativefit, up_lfstats2, 2, 0.0, 0.8, 20, 30, 0, 0.0452, "0.777186" +3, iterativefit, up_lfstats2, 2, 0.0, 0.8, 20, 30, 0.0452, 0.9, "0.749501+x*(0.689922+x*(-3.46614+x*(45.1385+x*(-148.823+x*(185.528+x*-79.3082)))))" +3, iterativefit, up_lfstats2, 2, 0.0, 0.8, 20, 30, 0.9, 1.1, "1.23078" +3, iterativefit, down_lfstats2, 2, 0.0, 0.8, 20, 30, -15, 0, "1.22433" +3, iterativefit, down_lfstats2, 2, 0.0, 0.8, 20, 30, 0, 0.0452, "0.739804" +3, iterativefit, down_lfstats2, 2, 0.0, 0.8, 20, 30, 0.0452, 0.9, "0.661003+x*(2.2141+x*(-13.5709+x*(78.7781+x*(-208.377+x*(239.284+x*-98.79)))))" +3, iterativefit, down_lfstats2, 2, 0.0, 0.8, 20, 30, 0.9, 1.1, "1.16814" +3, iterativefit, central, 2, 0.8, 1.6, 20, 30, -15, 0, "1.19006" +3, iterativefit, central, 2, 0.8, 1.6, 20, 30, 0, 0.0452, "0.859782" +3, iterativefit, central, 2, 0.8, 1.6, 20, 30, 0.0452, 0.9, "0.834113+x*(0.420185+x*(3.81653+x*(-12.1312+x*(-1.59873+x*(30.2418+x*-20.9108)))))" +3, iterativefit, central, 2, 0.8, 1.6, 20, 30, 0.9, 1.1, "1.15574" +3, iterativefit, up_jes, 2, 0.8, 1.6, 20, 30, -15, 0, "1.06577" +3, iterativefit, up_jes, 2, 0.8, 1.6, 20, 30, 0, 0.0452, "1.07901" +3, iterativefit, up_jes, 2, 0.8, 1.6, 20, 30, 0.0452, 0.9, "1.35803+x*(-8.88476+x*(70.0001+x*(-238.134+x*(384.54+x*(-286.821+x*78.628)))))" +3, iterativefit, up_jes, 2, 0.8, 1.6, 20, 30, 0.9, 1.1, "1.18001" +3, iterativefit, down_jes, 2, 0.8, 1.6, 20, 30, -15, 0, "1.31647" +3, iterativefit, down_jes, 2, 0.8, 1.6, 20, 30, 0, 0.0452, "0.653075" +3, iterativefit, down_jes, 2, 0.8, 1.6, 20, 30, 0.0452, 0.9, "0.297392+x*(10.788+x*(-76.3565+x*(284.449+x*(-550.348+x*(519.873+x*-188.809)))))" +3, iterativefit, down_jes, 2, 0.8, 1.6, 20, 30, 0.9, 1.1, "1.07763" +3, iterativefit, up_hf, 2, 0.8, 1.6, 20, 30, -15, 0, "1.19942" +3, iterativefit, up_hf, 2, 0.8, 1.6, 20, 30, 0, 0.0452, "0.832162" +3, iterativefit, up_hf, 2, 0.8, 1.6, 20, 30, 0.0452, 0.9, "0.733411+x*(2.77205+x*(-15.4775+x*(61.0089+x*(-140.773+x*(159.881+x*-68.307)))))" +3, iterativefit, up_hf, 2, 0.8, 1.6, 20, 30, 0.9, 1.1, "0.912753" +3, iterativefit, down_hf, 2, 0.8, 1.6, 20, 30, -15, 0, "1.18107" +3, iterativefit, down_hf, 2, 0.8, 1.6, 20, 30, 0, 0.0452, "0.846099" +3, iterativefit, down_hf, 2, 0.8, 1.6, 20, 30, 0.0452, 0.9, "0.816023+x*(0.529297+x*(3.55576+x*(-12.0532+x*(-1.06533+x*(28.6287+x*-19.2292)))))" +3, iterativefit, down_hf, 2, 0.8, 1.6, 20, 30, 0.9, 1.1, "1.37261" +3, iterativefit, up_lfstats1, 2, 0.8, 1.6, 20, 30, -15, 0, "1.19709" +3, iterativefit, up_lfstats1, 2, 0.8, 1.6, 20, 30, 0, 0.0452, "0.862356" +3, iterativefit, up_lfstats1, 2, 0.8, 1.6, 20, 30, 0.0452, 0.9, "0.824345+x*(0.872985+x*(-1.05718+x*(9.73374+x*(-48.3746+x*(77.4609+x*-39.0334)))))" +3, iterativefit, up_lfstats1, 2, 0.8, 1.6, 20, 30, 0.9, 1.1, "1.10697" +3, iterativefit, down_lfstats1, 2, 0.8, 1.6, 20, 30, -15, 0, "1.18311" +3, iterativefit, down_lfstats1, 2, 0.8, 1.6, 20, 30, 0, 0.0452, "0.820011" +3, iterativefit, down_lfstats1, 2, 0.8, 1.6, 20, 30, 0.0452, 0.9, "0.728144+x*(2.45383+x*(-10.9068+x*(39.004+x*(-92.5104+x*(109.701+x*-47.8354)))))" +3, iterativefit, down_lfstats1, 2, 0.8, 1.6, 20, 30, 0.9, 1.1, "1.19542" +3, iterativefit, up_lfstats2, 2, 0.8, 1.6, 20, 30, -15, 0, "1.19889" +3, iterativefit, up_lfstats2, 2, 0.8, 1.6, 20, 30, 0, 0.0452, "0.858426" +3, iterativefit, up_lfstats2, 2, 0.8, 1.6, 20, 30, 0.0452, 0.9, "0.8161+x*(0.990618+x*(-1.54869+x*(9.58239+x*(-44.19+x*(69.8749+x*-34.8657)))))" +3, iterativefit, up_lfstats2, 2, 0.8, 1.6, 20, 30, 0.9, 1.1, "1.17714" +3, iterativefit, down_lfstats2, 2, 0.8, 1.6, 20, 30, -15, 0, "1.18131" +3, iterativefit, down_lfstats2, 2, 0.8, 1.6, 20, 30, 0, 0.0452, "0.824013" +3, iterativefit, down_lfstats2, 2, 0.8, 1.6, 20, 30, 0.0452, 0.9, "0.736622+x*(2.331+x*(-10.3714+x*(38.9793+x*(-96.3376+x*(116.934+x*-51.8689)))))" +3, iterativefit, down_lfstats2, 2, 0.8, 1.6, 20, 30, 0.9, 1.1, "1.1254" +3, iterativefit, central, 2, 1.6, 2.4, 20, 30, -15, 0, "1.06826" +3, iterativefit, central, 2, 1.6, 2.4, 20, 30, 0, 0.0452, "0.997827" +3, iterativefit, central, 2, 1.6, 2.4, 20, 30, 0.0452, 0.9, "1.17483+x*(-6.15513+x*(58.1783+x*(-204.904+x*(312.355+x*(-202.668+x*42.3101)))))" +3, iterativefit, central, 2, 1.6, 2.4, 20, 30, 0.9, 1.1, "1.13284" +3, iterativefit, up_jes, 2, 1.6, 2.4, 20, 30, -15, 0, "0.940852" +3, iterativefit, up_jes, 2, 1.6, 2.4, 20, 30, 0, 0.0452, "1.23455" +3, iterativefit, up_jes, 2, 1.6, 2.4, 20, 30, 0.0452, 0.9, "1.68086+x*(-14.3114+x*(114.801+x*(-395.772+x*(635.736+x*(-467.838+x*126.29)))))" +3, iterativefit, up_jes, 2, 1.6, 2.4, 20, 30, 0.9, 1.1, "1.23975" +3, iterativefit, down_jes, 2, 1.6, 2.4, 20, 30, -15, 0, "1.19465" +3, iterativefit, down_jes, 2, 1.6, 2.4, 20, 30, 0, 0.0452, "0.864103" +3, iterativefit, down_jes, 2, 1.6, 2.4, 20, 30, 0.0452, 0.9, "0.906949+x*(-2.08449+x*(29.8039+x*(-110.045+x*(158.139+x*(-85.1665+x*8.62423)))))" +3, iterativefit, down_jes, 2, 1.6, 2.4, 20, 30, 0.9, 1.1, "0.997806" +3, iterativefit, up_hf, 2, 1.6, 2.4, 20, 30, -15, 0, "1.07435" +3, iterativefit, up_hf, 2, 1.6, 2.4, 20, 30, 0, 0.0452, "0.984335" +3, iterativefit, up_hf, 2, 1.6, 2.4, 20, 30, 0.0452, 0.9, "1.13513+x*(-5.30751+x*(51.1782+x*(-178.993+x*(264.325+x*(-158.385+x*25.8676)))))" +3, iterativefit, up_hf, 2, 1.6, 2.4, 20, 30, 0.9, 1.1, "0.973053" +3, iterativefit, down_hf, 2, 1.6, 2.4, 20, 30, -15, 0, "1.06261" +3, iterativefit, down_hf, 2, 1.6, 2.4, 20, 30, 0, 0.0452, "0.997066" +3, iterativefit, down_hf, 2, 1.6, 2.4, 20, 30, 0.0452, 0.9, "1.19471+x*(-6.81524+x*(63.4969+x*(-224.519+x*(349.179+x*(-237.427+x*55.602)))))" +3, iterativefit, down_hf, 2, 1.6, 2.4, 20, 30, 0.9, 1.1, "1.2658" +3, iterativefit, up_lfstats1, 2, 1.6, 2.4, 20, 30, -15, 0, "1.07292" +3, iterativefit, up_lfstats1, 2, 1.6, 2.4, 20, 30, 0, 0.0452, "1.0241" +3, iterativefit, up_lfstats1, 2, 1.6, 2.4, 20, 30, 0.0452, 0.9, "1.23264+x*(-7.07837+x*(63.8967+x*(-222.128+x*(339.096+x*(-223.094+x*48.2813)))))" +3, iterativefit, up_lfstats1, 2, 1.6, 2.4, 20, 30, 0.9, 1.1, "1.09163" +3, iterativefit, down_lfstats1, 2, 1.6, 2.4, 20, 30, -15, 0, "1.0636" +3, iterativefit, down_lfstats1, 2, 1.6, 2.4, 20, 30, 0, 0.0452, "0.971418" +3, iterativefit, down_lfstats1, 2, 1.6, 2.4, 20, 30, 0.0452, 0.9, "1.11667+x*(-5.22474+x*(52.4061+x*(-187.484+x*(285.244+x*(-181.895+x*36.2127)))))" +3, iterativefit, down_lfstats1, 2, 1.6, 2.4, 20, 30, 0.9, 1.1, "1.17391" +3, iterativefit, up_lfstats2, 2, 1.6, 2.4, 20, 30, -15, 0, "1.07479" +3, iterativefit, up_lfstats2, 2, 1.6, 2.4, 20, 30, 0, 0.0452, "1.01906" +3, iterativefit, up_lfstats2, 2, 1.6, 2.4, 20, 30, 0.0452, 0.9, "1.2219+x*(-6.91559+x*(63.0119+x*(-220.585+x*(339.611+x*(-226.836+x*50.9004)))))" +3, iterativefit, up_lfstats2, 2, 1.6, 2.4, 20, 30, 0.9, 1.1, "1.156" +3, iterativefit, down_lfstats2, 2, 1.6, 2.4, 20, 30, -15, 0, "1.06173" +3, iterativefit, down_lfstats2, 2, 1.6, 2.4, 20, 30, 0, 0.0452, "0.97649" +3, iterativefit, down_lfstats2, 2, 1.6, 2.4, 20, 30, 0.0452, 0.9, "1.1275+x*(-5.39008+x*(53.316+x*(-189.139+x*(284.973+x*(-178.408+x*33.6947)))))" +3, iterativefit, down_lfstats2, 2, 1.6, 2.4, 20, 30, 0.9, 1.1, "1.10973" +3, iterativefit, central, 2, 0.0, 0.8, 30, 40, -15, 0, "1.17848" +3, iterativefit, central, 2, 0.0, 0.8, 30, 40, 0, 0.0452, "0.721575" +3, iterativefit, central, 2, 0.0, 0.8, 30, 40, 0.0452, 0.9, "0.587465+x*(3.38695+x*(-10.4925+x*(29.4549+x*(-66.855+x*(80.5119+x*-36.4513)))))" +3, iterativefit, central, 2, 0.0, 0.8, 30, 40, 0.9, 1.1, "0.915602" +3, iterativefit, up_jes, 2, 0.0, 0.8, 30, 40, -15, 0, "1.11029" +3, iterativefit, up_jes, 2, 0.0, 0.8, 30, 40, 0, 0.0452, "1.05519" +3, iterativefit, up_jes, 2, 0.0, 0.8, 30, 40, 0.0452, 0.9, "1.37781+x*(-10.1703+x*(77.6517+x*(-250.697+x*(392.171+x*(-290.131+x*80.1353)))))" +3, iterativefit, up_jes, 2, 0.0, 0.8, 30, 40, 0.9, 1.1, "0.935023" +3, iterativefit, down_jes, 2, 0.0, 0.8, 30, 40, -15, 0, "1.25365" +3, iterativefit, down_jes, 2, 0.0, 0.8, 30, 40, 0, 0.0452, "0.416268" +3, iterativefit, down_jes, 2, 0.0, 0.8, 30, 40, 0.0452, 0.9, "-0.130172+x*(15.6253+x*(-90.0997+x*(283.845+x*(-488.701+x*(428.494+x*-149.238)))))" +3, iterativefit, down_jes, 2, 0.0, 0.8, 30, 40, 0.9, 1.1, "0.947995" +3, iterativefit, up_hf, 2, 0.0, 0.8, 30, 40, -15, 0, "1.19267" +3, iterativefit, up_hf, 2, 0.0, 0.8, 30, 40, 0, 0.0452, "0.717713" +3, iterativefit, up_hf, 2, 0.0, 0.8, 30, 40, 0.0452, 0.9, "0.533791+x*(5.1087+x*(-27.1444+x*(101.073+x*(-218.285+x*(234.945+x*-97.6332)))))" +3, iterativefit, up_hf, 2, 0.0, 0.8, 30, 40, 0.9, 1.1, "0.456513" +3, iterativefit, down_hf, 2, 0.0, 0.8, 30, 40, -15, 0, "1.1647" +3, iterativefit, down_hf, 2, 0.0, 0.8, 30, 40, 0, 0.0452, "0.719026" +3, iterativefit, down_hf, 2, 0.0, 0.8, 30, 40, 0.0452, 0.9, "0.641289+x*(1.43988+x*(8.35436+x*(-52.5048+x*(108.459+x*(-99.9471+x*35.3877)))))" +3, iterativefit, down_hf, 2, 0.0, 0.8, 30, 40, 0.9, 1.1, "1.37703" +3, iterativefit, up_lfstats1, 2, 0.0, 0.8, 30, 40, -15, 0, "1.19422" +3, iterativefit, up_lfstats1, 2, 0.0, 0.8, 30, 40, 0, 0.0452, "0.742736" +3, iterativefit, up_lfstats1, 2, 0.0, 0.8, 30, 40, 0.0452, 0.9, "0.633262+x*(2.68436+x*(-6.60923+x*(20.2718+x*(-58.1699+x*(79.4993+x*-38.4201)))))" +3, iterativefit, up_lfstats1, 2, 0.0, 0.8, 30, 40, 0.9, 1.1, "0.834071" +3, iterativefit, down_lfstats1, 2, 0.0, 0.8, 30, 40, -15, 0, "1.16266" +3, iterativefit, down_lfstats1, 2, 0.0, 0.8, 30, 40, 0, 0.0452, "0.700238" +3, iterativefit, down_lfstats1, 2, 0.0, 0.8, 30, 40, 0.0452, 0.9, "0.541265+x*(4.09613+x*(-14.4141+x*(38.735+x*(-75.6411+x*(81.5424+x*-34.4613)))))" +3, iterativefit, down_lfstats1, 2, 0.0, 0.8, 30, 40, 0.9, 1.1, "0.997904" +3, iterativefit, up_lfstats2, 2, 0.0, 0.8, 30, 40, -15, 0, "1.19705" +3, iterativefit, up_lfstats2, 2, 0.0, 0.8, 30, 40, 0, 0.0452, "0.739735" +3, iterativefit, up_lfstats2, 2, 0.0, 0.8, 30, 40, 0.0452, 0.9, "0.631776+x*(2.59418+x*(-4.93432+x*(9.74157+x*(-30.0489+x*(45.8567+x*-23.4646)))))" +3, iterativefit, up_lfstats2, 2, 0.0, 0.8, 30, 40, 0.9, 1.1, "0.96412" +3, iterativefit, down_lfstats2, 2, 0.0, 0.8, 30, 40, -15, 0, "1.15986" +3, iterativefit, down_lfstats2, 2, 0.0, 0.8, 30, 40, 0, 0.0452, "0.703345" +3, iterativefit, down_lfstats2, 2, 0.0, 0.8, 30, 40, 0.0452, 0.9, "0.542988+x*(4.18254+x*(-16.0677+x*(49.2148+x*(-103.719+x*(115.192+x*-49.4364)))))" +3, iterativefit, down_lfstats2, 2, 0.0, 0.8, 30, 40, 0.9, 1.1, "0.867388" +3, iterativefit, central, 2, 0.8, 1.6, 30, 40, -15, 0, "1.15144" +3, iterativefit, central, 2, 0.8, 1.6, 30, 40, 0, 0.0452, "0.821685" +3, iterativefit, central, 2, 0.8, 1.6, 30, 40, 0.0452, 0.9, "0.750271+x*(1.45581+x*(4.29411+x*(-37.4127+x*(72.6919+x*(-51.1687+x*10.0879)))))" +3, iterativefit, central, 2, 0.8, 1.6, 30, 40, 0.9, 1.1, "1.10455" +3, iterativefit, up_jes, 2, 0.8, 1.6, 30, 40, -15, 0, "1.11412" +3, iterativefit, up_jes, 2, 0.8, 1.6, 30, 40, 0, 0.0452, "0.929711" +3, iterativefit, up_jes, 2, 0.8, 1.6, 30, 40, 0.0452, 0.9, "0.996141+x*(-2.69204+x*(32.5064+x*(-130.811+x*(227.77+x*(-175.086+x*47.9473)))))" +3, iterativefit, up_jes, 2, 0.8, 1.6, 30, 40, 0.9, 1.1, "1.07649" +3, iterativefit, down_jes, 2, 0.8, 1.6, 30, 40, -15, 0, "1.23559" +3, iterativefit, down_jes, 2, 0.8, 1.6, 30, 40, 0, 0.0452, "0.69608" +3, iterativefit, down_jes, 2, 0.8, 1.6, 30, 40, 0.0452, 0.9, "0.487293+x*(5.45281+x*(-19.9415+x*(34.5962+x*(-32.8918+x*(20.6+x*-7.51297)))))" +3, iterativefit, down_jes, 2, 0.8, 1.6, 30, 40, 0.9, 1.1, "1.05387" +3, iterativefit, up_hf, 2, 0.8, 1.6, 30, 40, -15, 0, "1.16498" +3, iterativefit, up_hf, 2, 0.8, 1.6, 30, 40, 0, 0.0452, "0.823615" +3, iterativefit, up_hf, 2, 0.8, 1.6, 30, 40, 0.0452, 0.9, "0.73201+x*(2.14944+x*(-2.28834+x*(-10.2285+x*(16.3214+x*(6.94565+x*-13.9153)))))" +3, iterativefit, up_hf, 2, 0.8, 1.6, 30, 40, 0.9, 1.1, "0.771033" +3, iterativefit, down_hf, 2, 0.8, 1.6, 30, 40, -15, 0, "1.13864" +3, iterativefit, down_hf, 2, 0.8, 1.6, 30, 40, 0, 0.0452, "0.808638" +3, iterativefit, down_hf, 2, 0.8, 1.6, 30, 40, 0.0452, 0.9, "0.751266+x*(0.979218+x*(8.70872+x*(-55.5078+x*(110.728+x*(-91.6259+x*27.5466)))))" +3, iterativefit, down_hf, 2, 0.8, 1.6, 30, 40, 0.9, 1.1, "1.40506" +3, iterativefit, up_lfstats1, 2, 0.8, 1.6, 30, 40, -15, 0, "1.1672" +3, iterativefit, up_lfstats1, 2, 0.8, 1.6, 30, 40, 0, 0.0452, "0.842571" +3, iterativefit, up_lfstats1, 2, 0.8, 1.6, 30, 40, 0.0452, 0.9, "0.795564+x*(0.749743+x*(8.44612+x*(-48.6136+x*(87.0564+x*(-58.9909+x*11.0559)))))" +3, iterativefit, up_lfstats1, 2, 0.8, 1.6, 30, 40, 0.9, 1.1, "1.03209" +3, iterativefit, down_lfstats1, 2, 0.8, 1.6, 30, 40, -15, 0, "1.1356" +3, iterativefit, down_lfstats1, 2, 0.8, 1.6, 30, 40, 0, 0.0452, "0.800646" +3, iterativefit, down_lfstats1, 2, 0.8, 1.6, 30, 40, 0.0452, 0.9, "0.704494+x*(2.17251+x*(0.0540262+x*(-25.8661+x*(57.6428+x*(-42.688+x*8.87635)))))" +3, iterativefit, down_lfstats1, 2, 0.8, 1.6, 30, 40, 0.9, 1.1, "1.17695" +3, iterativefit, up_lfstats2, 2, 0.8, 1.6, 30, 40, -15, 0, "1.17013" +3, iterativefit, up_lfstats2, 2, 0.8, 1.6, 30, 40, 0, 0.0452, "0.839543" +3, iterativefit, up_lfstats2, 2, 0.8, 1.6, 30, 40, 0.0452, 0.9, "0.793574+x*(0.681071+x*(9.80543+x*(-57.3114+x*(110.335+x*(-86.7823+x*23.391)))))" +3, iterativefit, up_lfstats2, 2, 0.8, 1.6, 30, 40, 0.9, 1.1, "1.14663" +3, iterativefit, down_lfstats2, 2, 0.8, 1.6, 30, 40, -15, 0, "1.1327" +3, iterativefit, down_lfstats2, 2, 0.8, 1.6, 30, 40, 0, 0.0452, "0.803784" +3, iterativefit, down_lfstats2, 2, 0.8, 1.6, 30, 40, 0.0452, 0.9, "0.706863+x*(2.23235+x*(-1.22887+x*(-17.478+x*(34.9921+x*(-15.5119+x*-3.22765)))))" +3, iterativefit, down_lfstats2, 2, 0.8, 1.6, 30, 40, 0.9, 1.1, "1.06249" +3, iterativefit, central, 2, 1.6, 2.4, 30, 40, -15, 0, "1.0586" +3, iterativefit, central, 2, 1.6, 2.4, 30, 40, 0, 0.0452, "0.836328" +3, iterativefit, central, 2, 1.6, 2.4, 30, 40, 0.0452, 0.9, "0.84992+x*(-1.54852+x*(34.1763+x*(-158.575+x*(304.311+x*(-263.8+x*85.9875)))))" +3, iterativefit, central, 2, 1.6, 2.4, 30, 40, 0.9, 1.1, "1.12207" +3, iterativefit, up_jes, 2, 1.6, 2.4, 30, 40, -15, 0, "0.99223" +3, iterativefit, up_jes, 2, 1.6, 2.4, 30, 40, 0, 0.0452, "0.818829" +3, iterativefit, up_jes, 2, 1.6, 2.4, 30, 40, 0.0452, 0.9, "0.770773+x*(0.267217+x*(22.6938+x*(-122.737+x*(235.531+x*(-189.544+x*53.8776)))))" +3, iterativefit, up_jes, 2, 1.6, 2.4, 30, 40, 0.9, 1.1, "1.15893" +3, iterativefit, down_jes, 2, 1.6, 2.4, 30, 40, -15, 0, "1.16257" +3, iterativefit, down_jes, 2, 1.6, 2.4, 30, 40, 0, 0.0452, "0.736963" +3, iterativefit, down_jes, 2, 1.6, 2.4, 30, 40, 0.0452, 0.9, "0.587134+x*(3.73322+x*(-9.91198+x*(16.0064+x*(-35.8924+x*(52.5031+x*-26.4566)))))" +3, iterativefit, down_jes, 2, 1.6, 2.4, 30, 40, 0.9, 1.1, "0.980429" +3, iterativefit, up_hf, 2, 1.6, 2.4, 30, 40, -15, 0, "1.06512" +3, iterativefit, up_hf, 2, 1.6, 2.4, 30, 40, 0, 0.0452, "0.837814" +3, iterativefit, up_hf, 2, 1.6, 2.4, 30, 40, 0.0452, 0.9, "0.839393+x*(-1.15788+x*(30.9354+x*(-147.11+x*(284.21+x*(-246.027+x*79.3137)))))" +3, iterativefit, up_hf, 2, 1.6, 2.4, 30, 40, 0.9, 1.1, "0.955688" +3, iterativefit, down_hf, 2, 1.6, 2.4, 30, 40, -15, 0, "1.05232" +3, iterativefit, down_hf, 2, 1.6, 2.4, 30, 40, 0, 0.0452, "0.828772" +3, iterativefit, down_hf, 2, 1.6, 2.4, 30, 40, 0.0452, 0.9, "0.852694+x*(-1.87391+x*(36.663+x*(-166.765+x*(317.8+x*(-275.247+x*90.3273)))))" +3, iterativefit, down_hf, 2, 1.6, 2.4, 30, 40, 0.9, 1.1, "1.27264" +3, iterativefit, up_lfstats1, 2, 1.6, 2.4, 30, 40, -15, 0, "1.07008" +3, iterativefit, up_lfstats1, 2, 1.6, 2.4, 30, 40, 0, 0.0452, "0.861924" +3, iterativefit, up_lfstats1, 2, 1.6, 2.4, 30, 40, 0.0452, 0.9, "0.90357+x*(-2.35979+x*(38.965+x*(-172.048+x*(323.298+x*(-276.455+x*88.9572)))))" +3, iterativefit, up_lfstats1, 2, 1.6, 2.4, 30, 40, 0.9, 1.1, "1.0655" +3, iterativefit, down_lfstats1, 2, 1.6, 2.4, 30, 40, -15, 0, "1.04707" +3, iterativefit, down_lfstats1, 2, 1.6, 2.4, 30, 40, 0, 0.0452, "0.810594" +3, iterativefit, down_lfstats1, 2, 1.6, 2.4, 30, 40, 0.0452, 0.9, "0.79587+x*(-0.728739+x*(29.3165+x*(-144.821+x*(284.765+x*(-250.606+x*82.8166)))))" +3, iterativefit, down_lfstats1, 2, 1.6, 2.4, 30, 40, 0.9, 1.1, "1.17841" +3, iterativefit, up_lfstats2, 2, 1.6, 2.4, 30, 40, -15, 0, "1.07323" +3, iterativefit, up_lfstats2, 2, 1.6, 2.4, 30, 40, 0, 0.0452, "0.857761" +3, iterativefit, up_lfstats2, 2, 1.6, 2.4, 30, 40, 0.0452, 0.9, "0.897714+x*(-2.33036+x*(39.2887+x*(-175.796+x*(335.189+x*(-291.847+x*96.1539)))))" +3, iterativefit, up_lfstats2, 2, 1.6, 2.4, 30, 40, 0.9, 1.1, "1.15408" +3, iterativefit, down_lfstats2, 2, 1.6, 2.4, 30, 40, -15, 0, "1.04395" +3, iterativefit, down_lfstats2, 2, 1.6, 2.4, 30, 40, 0, 0.0452, "0.814824" +3, iterativefit, down_lfstats2, 2, 1.6, 2.4, 30, 40, 0.0452, 0.9, "0.801945+x*(-0.76336+x*(29.0415+x*(-141.283+x*(273.319+x*(-235.665+x*75.7946)))))" +3, iterativefit, down_lfstats2, 2, 1.6, 2.4, 30, 40, 0.9, 1.1, "1.09005" +3, iterativefit, central, 2, 0.0, 0.8, 40, 60, -15, 0, "1.13505" +3, iterativefit, central, 2, 0.0, 0.8, 40, 60, 0, 0.0452, "0.80815" +3, iterativefit, central, 2, 0.0, 0.8, 40, 60, 0.0452, 0.9, "0.724+x*(1.81188+x*(1.71358+x*(-13.7387+x*(4.00963+x*(25.2839+x*-18.9719)))))" +3, iterativefit, central, 2, 0.0, 0.8, 40, 60, 0.9, 1.1, "1.20532" +3, iterativefit, up_jes, 2, 0.0, 0.8, 40, 60, -15, 0, "1.10026" +3, iterativefit, up_jes, 2, 0.0, 0.8, 40, 60, 0, 0.0452, "0.879818" +3, iterativefit, up_jes, 2, 0.0, 0.8, 40, 60, 0.0452, 0.9, "0.925866+x*(-2.24993+x*(32.6652+x*(-129.897+x*(225.665+x*(-181.646+x*56.0995)))))" +3, iterativefit, up_jes, 2, 0.0, 0.8, 40, 60, 0.9, 1.1, "1.2774" +3, iterativefit, down_jes, 2, 0.0, 0.8, 40, 60, -15, 0, "1.20167" +3, iterativefit, down_jes, 2, 0.0, 0.8, 40, 60, 0, 0.0452, "0.749289" +3, iterativefit, down_jes, 2, 0.0, 0.8, 40, 60, 0.0452, 0.9, "0.615326+x*(2.99488+x*(0.604293+x*(-31.5433+x*(67.845+x*(-53.2985+x*13.9082)))))" +3, iterativefit, down_jes, 2, 0.0, 0.8, 40, 60, 0.9, 1.1, "1.2374" +3, iterativefit, up_hf, 2, 0.0, 0.8, 40, 60, -15, 0, "1.14308" +3, iterativefit, up_hf, 2, 0.0, 0.8, 40, 60, 0, 0.0452, "0.815937" +3, iterativefit, up_hf, 2, 0.0, 0.8, 40, 60, 0.0452, 0.9, "0.73353+x*(1.75478+x*(2.21794+x*(-15.9206+x*(5.85245+x*(29.4938+x*-24.8526)))))" +3, iterativefit, up_hf, 2, 0.0, 0.8, 40, 60, 0.9, 1.1, "0.551117" +3, iterativefit, down_hf, 2, 0.0, 0.8, 40, 60, -15, 0, "1.12906" +3, iterativefit, down_hf, 2, 0.0, 0.8, 40, 60, 0, 0.0452, "0.790053" +3, iterativefit, down_hf, 2, 0.0, 0.8, 40, 60, 0.0452, 0.9, "0.746359+x*(0.342697+x*(17.3327+x*(-85.097+x*(162.134+x*(-142.288+x*49.7416)))))" +3, iterativefit, down_hf, 2, 0.0, 0.8, 40, 60, 0.9, 1.1, "1.84973" +3, iterativefit, up_lfstats1, 2, 0.0, 0.8, 40, 60, -15, 0, "1.15666" +3, iterativefit, up_lfstats1, 2, 0.0, 0.8, 40, 60, 0, 0.0452, "0.813327" +3, iterativefit, up_lfstats1, 2, 0.0, 0.8, 40, 60, 0.0452, 0.9, "0.750769+x*(1.06582+x*(8.88199+x*(-43.5623+x*(63.4401+x*(-30.4292+x*0.54756)))))" +3, iterativefit, up_lfstats1, 2, 0.0, 0.8, 40, 60, 0.9, 1.1, "1.0934" +3, iterativefit, down_lfstats1, 2, 0.0, 0.8, 40, 60, -15, 0, "1.11486" +3, iterativefit, down_lfstats1, 2, 0.0, 0.8, 40, 60, 0, 0.0452, "0.803866" +3, iterativefit, down_lfstats1, 2, 0.0, 0.8, 40, 60, 0.0452, 0.9, "0.736547+x*(1.15483+x*(9.57364+x*(-52.054+x*(91.4172+x*(-67.594+x*18.2461)))))" +3, iterativefit, down_lfstats1, 2, 0.0, 0.8, 40, 60, 0.9, 1.1, "1.34521" +3, iterativefit, up_lfstats2, 2, 0.0, 0.8, 40, 60, -15, 0, "1.15993" +3, iterativefit, up_lfstats2, 2, 0.0, 0.8, 40, 60, 0, 0.0452, "0.812663" +3, iterativefit, up_lfstats2, 2, 0.0, 0.8, 40, 60, 0.0452, 0.9, "0.755114+x*(0.868829+x*(11.3419+x*(-57.3164+x*(98.7952+x*(-72.3523+x*19.2867)))))" +3, iterativefit, up_lfstats2, 2, 0.0, 0.8, 40, 60, 0.9, 1.1, "1.28631" +3, iterativefit, down_lfstats2, 2, 0.0, 0.8, 40, 60, -15, 0, "1.11163" +3, iterativefit, down_lfstats2, 2, 0.0, 0.8, 40, 60, 0, 0.0452, "0.804538" +3, iterativefit, down_lfstats2, 2, 0.0, 0.8, 40, 60, 0.0452, 0.9, "0.732187+x*(1.35279+x*(7.10051+x*(-38.2249+x*(55.8644+x*(-25.4316+x*-0.600507)))))" +3, iterativefit, down_lfstats2, 2, 0.0, 0.8, 40, 60, 0.9, 1.1, "1.15156" +3, iterativefit, central, 2, 0.8, 1.6, 40, 60, -15, 0, "1.15311" +3, iterativefit, central, 2, 0.8, 1.6, 40, 60, 0, 0.0452, "0.895916" +3, iterativefit, central, 2, 0.8, 1.6, 40, 60, 0.0452, 0.9, "0.875745+x*(-0.118511+x*(16.4711+x*(-97.8171+x*(228.482+x*(-236.207+x*90.1577)))))" +3, iterativefit, central, 2, 0.8, 1.6, 40, 60, 0.9, 1.1, "1.14428" +3, iterativefit, up_jes, 2, 0.8, 1.6, 40, 60, -15, 0, "1.07686" +3, iterativefit, up_jes, 2, 0.8, 1.6, 40, 60, 0, 0.0452, "0.996278" +3, iterativefit, up_jes, 2, 0.8, 1.6, 40, 60, 0.0452, 0.9, "1.09028+x*(-3.27117+x*(31.4884+x*(-123.252+x*(225.378+x*(-191.196+x*60.5031)))))" +3, iterativefit, up_jes, 2, 0.8, 1.6, 40, 60, 0.9, 1.1, "0.926359" +3, iterativefit, down_jes, 2, 0.8, 1.6, 40, 60, -15, 0, "1.22879" +3, iterativefit, down_jes, 2, 0.8, 1.6, 40, 60, 0, 0.0452, "0.812366" +3, iterativefit, down_jes, 2, 0.8, 1.6, 40, 60, 0.0452, 0.9, "0.701127+x*(2.45516+x*(2.43584+x*(-58.2724+x*(169.224+x*(-191.622+x*77.0378)))))" +3, iterativefit, down_jes, 2, 0.8, 1.6, 40, 60, 0.9, 1.1, "1.22102" +3, iterativefit, up_hf, 2, 0.8, 1.6, 40, 60, -15, 0, "1.16076" +3, iterativefit, up_hf, 2, 0.8, 1.6, 40, 60, 0, 0.0452, "0.903794" +3, iterativefit, up_hf, 2, 0.8, 1.6, 40, 60, 0.0452, 0.9, "0.872568+x*(0.280444+x*(12.3079+x*(-79.5273+x*(187.694+x*(-190.793+x*69.813)))))" +3, iterativefit, up_hf, 2, 0.8, 1.6, 40, 60, 0.9, 1.1, "0.70567" +3, iterativefit, down_hf, 2, 0.8, 1.6, 40, 60, -15, 0, "1.14502" +3, iterativefit, down_hf, 2, 0.8, 1.6, 40, 60, 0, 0.0452, "0.877287" +3, iterativefit, down_hf, 2, 0.8, 1.6, 40, 60, 0.0452, 0.9, "0.839041+x*(0.538505+x*(9.48948+x*(-66.3974+x*(163.456+x*(-175.373+x*70.0576)))))" +3, iterativefit, down_hf, 2, 0.8, 1.6, 40, 60, 0.9, 1.1, "1.52543" +3, iterativefit, up_lfstats1, 2, 0.8, 1.6, 40, 60, -15, 0, "1.17435" +3, iterativefit, up_lfstats1, 2, 0.8, 1.6, 40, 60, 0, 0.0452, "0.902274" +3, iterativefit, up_lfstats1, 2, 0.8, 1.6, 40, 60, 0.0452, 0.9, "0.886383+x*(-0.224741+x*(16.6617+x*(-96.0535+x*(220.37+x*(-224.32+x*84.2346)))))" +3, iterativefit, up_lfstats1, 2, 0.8, 1.6, 40, 60, 0.9, 1.1, "1.04914" +3, iterativefit, down_lfstats1, 2, 0.8, 1.6, 40, 60, -15, 0, "1.13173" +3, iterativefit, down_lfstats1, 2, 0.8, 1.6, 40, 60, 0, 0.0452, "0.889534" +3, iterativefit, down_lfstats1, 2, 0.8, 1.6, 40, 60, 0.0452, 0.9, "0.864918+x*(-0.00640794+x*(16.2193+x*(-99.3027+x*(235.985+x*(-247.467+x*95.8359)))))" +3, iterativefit, down_lfstats1, 2, 0.8, 1.6, 40, 60, 0.9, 1.1, "1.23936" +3, iterativefit, up_lfstats2, 2, 0.8, 1.6, 40, 60, -15, 0, "1.17811" +3, iterativefit, up_lfstats2, 2, 0.8, 1.6, 40, 60, 0, 0.0452, "0.901486" +3, iterativefit, up_lfstats2, 2, 0.8, 1.6, 40, 60, 0.0452, 0.9, "0.889446+x*(-0.374114+x*(18.493+x*(-106.266+x*(246.502+x*(-255.134+x*97.9501)))))" +3, iterativefit, up_lfstats2, 2, 0.8, 1.6, 40, 60, 0.9, 1.1, "1.19471" +3, iterativefit, down_lfstats2, 2, 0.8, 1.6, 40, 60, -15, 0, "1.12803" +3, iterativefit, down_lfstats2, 2, 0.8, 1.6, 40, 60, 0, 0.0452, "0.890336" +3, iterativefit, down_lfstats2, 2, 0.8, 1.6, 40, 60, 0.0452, 0.9, "0.861951+x*(0.140067+x*(14.4177+x*(-89.2206+x*(210.13+x*(-216.928+x*82.2232)))))" +3, iterativefit, down_lfstats2, 2, 0.8, 1.6, 40, 60, 0.9, 1.1, "1.09353" +3, iterativefit, central, 2, 1.6, 2.4, 40, 60, -15, 0, "1.19001" +3, iterativefit, central, 2, 1.6, 2.4, 40, 60, 0, 0.0452, "0.797682" +3, iterativefit, central, 2, 1.6, 2.4, 40, 60, 0.0452, 0.9, "0.725613+x*(1.47332+x*(3.56288+x*(-19.8722+x*(5.74621+x*(39.5235+x*-31.1372)))))" +3, iterativefit, central, 2, 1.6, 2.4, 40, 60, 0.9, 1.1, "1.01141" +3, iterativefit, up_jes, 2, 1.6, 2.4, 40, 60, -15, 0, "1.1351" +3, iterativefit, up_jes, 2, 1.6, 2.4, 40, 60, 0, 0.0452, "0.925887" +3, iterativefit, up_jes, 2, 1.6, 2.4, 40, 60, 0.0452, 0.9, "1.03301+x*(-3.90956+x*(40.1091+x*(-143.696+x*(225.424+x*(-155.037+x*36.3834)))))" +3, iterativefit, up_jes, 2, 1.6, 2.4, 40, 60, 0.9, 1.1, "0.9368" +3, iterativefit, down_jes, 2, 1.6, 2.4, 40, 60, -15, 0, "1.22494" +3, iterativefit, down_jes, 2, 1.6, 2.4, 40, 60, 0, 0.0452, "0.712407" +3, iterativefit, down_jes, 2, 1.6, 2.4, 40, 60, 0.0452, 0.9, "0.600257+x*(2.37004+x*(3.90399+x*(-34.0134+x*(45.6889+x*(-5.29799+x*-12.8534)))))" +3, iterativefit, down_jes, 2, 1.6, 2.4, 40, 60, 0.9, 1.1, "1.11702" +3, iterativefit, up_hf, 2, 1.6, 2.4, 40, 60, -15, 0, "1.19862" +3, iterativefit, up_hf, 2, 1.6, 2.4, 40, 60, 0, 0.0452, "0.806369" +3, iterativefit, up_hf, 2, 1.6, 2.4, 40, 60, 0.0452, 0.9, "0.706586+x*(2.42973+x*(-5.61135+x*(18.5053+x*(-73.8871+x*(120.017+x*-62.9553)))))" +3, iterativefit, up_hf, 2, 1.6, 2.4, 40, 60, 0.9, 1.1, "0.77276" +3, iterativefit, down_hf, 2, 1.6, 2.4, 40, 60, -15, 0, "1.18082" +3, iterativefit, down_hf, 2, 1.6, 2.4, 40, 60, 0, 0.0452, "0.786755" +3, iterativefit, down_hf, 2, 1.6, 2.4, 40, 60, 0.0452, 0.9, "0.711405+x*(1.60004+x*(2.08837+x*(-13.2204+x*(-6.12216+x*(47.0856+x*-31.5037)))))" +3, iterativefit, down_hf, 2, 1.6, 2.4, 40, 60, 0.9, 1.1, "1.24985" +3, iterativefit, up_lfstats1, 2, 1.6, 2.4, 40, 60, -15, 0, "1.20796" +3, iterativefit, up_lfstats1, 2, 1.6, 2.4, 40, 60, 0, 0.0452, "0.806849" +3, iterativefit, up_lfstats1, 2, 1.6, 2.4, 40, 60, 0.0452, 0.9, "0.728268+x*(1.76204+x*(-0.439617+x*(-0.230511+x*(-38.1069+x*(84.8187+x*-48.7999)))))" +3, iterativefit, up_lfstats1, 2, 1.6, 2.4, 40, 60, 0.9, 1.1, "0.93834" +3, iterativefit, down_lfstats1, 2, 1.6, 2.4, 40, 60, -15, 0, "1.1714" +3, iterativefit, down_lfstats1, 2, 1.6, 2.4, 40, 60, 0, 0.0452, "0.78576" +3, iterativefit, down_lfstats1, 2, 1.6, 2.4, 40, 60, 0.0452, 0.9, "0.689202+x*(2.26833+x*(-3.09512+x*(5.55142+x*(-41.9311+x*(82.2721+x*-45.6447)))))" +3, iterativefit, down_lfstats1, 2, 1.6, 2.4, 40, 60, 0.9, 1.1, "1.08307" +3, iterativefit, up_lfstats2, 2, 1.6, 2.4, 40, 60, -15, 0, "1.21211" +3, iterativefit, up_lfstats2, 2, 1.6, 2.4, 40, 60, 0, 0.0452, "0.805483" +3, iterativefit, up_lfstats2, 2, 1.6, 2.4, 40, 60, 0.0452, 0.9, "0.729042+x*(1.676+x*(0.682354+x*(-6.85647+x*(-20.7995+x*(64.3253+x*-39.6641)))))" +3, iterativefit, up_lfstats2, 2, 1.6, 2.4, 40, 60, 0.9, 1.1, "1.04954" +3, iterativefit, down_lfstats2, 2, 1.6, 2.4, 40, 60, -15, 0, "1.16732" +3, iterativefit, down_lfstats2, 2, 1.6, 2.4, 40, 60, 0, 0.0452, "0.787156" +3, iterativefit, down_lfstats2, 2, 1.6, 2.4, 40, 60, 0.0452, 0.9, "0.688508+x*(2.35269+x*(-4.20202+x*(12.1155+x*(-59.1139+x*(102.646+x*-54.7369)))))" +3, iterativefit, down_lfstats2, 2, 1.6, 2.4, 40, 60, 0.9, 1.1, "0.971699" +3, iterativefit, central, 2, 0.0, 0.8, 60, 10000, -15, 0, "1.31259" +3, iterativefit, central, 2, 0.0, 0.8, 60, 10000, 0, 0.0452, "0.852608" +3, iterativefit, central, 2, 0.0, 0.8, 60, 10000, 0.0452, 0.9, "0.47483+x*(12.3318+x*(-105.787+x*(433.315+x*(-878.284+x*(851.354+x*-314.675)))))" +3, iterativefit, central, 2, 0.0, 0.8, 60, 10000, 0.9, 1.1, "1.01571" +3, iterativefit, up_jes, 2, 0.0, 0.8, 60, 10000, -15, 0, "1.20871" +3, iterativefit, up_jes, 2, 0.0, 0.8, 60, 10000, 0, 0.0452, "0.855688" +3, iterativefit, up_jes, 2, 0.0, 0.8, 60, 10000, 0.0452, 0.9, "0.516521+x*(11.0252+x*(-93.8298+x*(386.169+x*(-784.611+x*(758.905+x*-278.886)))))" +3, iterativefit, up_jes, 2, 0.0, 0.8, 60, 10000, 0.9, 1.1, "1.08537" +3, iterativefit, down_jes, 2, 0.0, 0.8, 60, 10000, -15, 0, "1.35599" +3, iterativefit, down_jes, 2, 0.0, 0.8, 60, 10000, 0, 0.0452, "0.845837" +3, iterativefit, down_jes, 2, 0.0, 0.8, 60, 10000, 0.0452, 0.9, "0.441039+x*(13.2998+x*(-116.033+x*(483.851+x*(-995.2+x*(974.737+x*-362.743)))))" +3, iterativefit, down_jes, 2, 0.0, 0.8, 60, 10000, 0.9, 1.1, "0.996942" +3, iterativefit, up_hf, 2, 0.0, 0.8, 60, 10000, -15, 0, "1.32675" +3, iterativefit, up_hf, 2, 0.0, 0.8, 60, 10000, 0, 0.0452, "0.871531" +3, iterativefit, up_hf, 2, 0.0, 0.8, 60, 10000, 0.0452, 0.9, "0.462547+x*(13.4876+x*(-118.594+x*(495.146+x*(-1024.56+x*(1016.25+x*-385.928)))))" +3, iterativefit, up_hf, 2, 0.0, 0.8, 60, 10000, 0.9, 1.1, "0.272486" +3, iterativefit, down_hf, 2, 0.0, 0.8, 60, 10000, -15, 0, "1.29748" +3, iterativefit, down_hf, 2, 0.0, 0.8, 60, 10000, 0, 0.0452, "0.839004" +3, iterativefit, down_hf, 2, 0.0, 0.8, 60, 10000, 0.0452, 0.9, "0.484049+x*(11.4776+x*(-96.1506+x*(386.237+x*(-764.979+x*(721.166+x*-257.177)))))" +3, iterativefit, down_hf, 2, 0.0, 0.8, 60, 10000, 0.9, 1.1, "1.76272" +3, iterativefit, up_lfstats1, 2, 0.0, 0.8, 60, 10000, -15, 0, "1.34883" +3, iterativefit, up_lfstats1, 2, 0.0, 0.8, 60, 10000, 0, 0.0452, "0.855653" +3, iterativefit, up_lfstats1, 2, 0.0, 0.8, 60, 10000, 0.0452, 0.9, "0.478621+x*(12.327+x*(-106.19+x*(437.035+x*(-890.284+x*(867.448+x*-322.471)))))" +3, iterativefit, up_lfstats1, 2, 0.0, 0.8, 60, 10000, 0.9, 1.1, "0.887211" +3, iterativefit, down_lfstats1, 2, 0.0, 0.8, 60, 10000, -15, 0, "1.27615" +3, iterativefit, down_lfstats1, 2, 0.0, 0.8, 60, 10000, 0, 0.0452, "0.849552" +3, iterativefit, down_lfstats1, 2, 0.0, 0.8, 60, 10000, 0.0452, 0.9, "0.470748+x*(12.3471+x*(-105.501+x*(430.155+x*(-867.565+x*(836.636+x*-307.434)))))" +3, iterativefit, down_lfstats1, 2, 0.0, 0.8, 60, 10000, 0.9, 1.1, "1.14345" +3, iterativefit, up_lfstats2, 2, 0.0, 0.8, 60, 10000, -15, 0, "1.35358" +3, iterativefit, up_lfstats2, 2, 0.0, 0.8, 60, 10000, 0, 0.0452, "0.855098" +3, iterativefit, up_lfstats2, 2, 0.0, 0.8, 60, 10000, 0.0452, 0.9, "0.482645+x*(12.1538+x*(-104.148+x*(425.781+x*(-861.587+x*(833.459+x*-307.165)))))" +3, iterativefit, up_lfstats2, 2, 0.0, 0.8, 60, 10000, 0.9, 1.1, "1.07754" +3, iterativefit, down_lfstats2, 2, 0.0, 0.8, 60, 10000, -15, 0, "1.27148" +3, iterativefit, down_lfstats2, 2, 0.0, 0.8, 60, 10000, 0, 0.0452, "0.850112" +3, iterativefit, down_lfstats2, 2, 0.0, 0.8, 60, 10000, 0.0452, 0.9, "0.466852+x*(12.5156+x*(-107.492+x*(441.174+x*(-895.742+x*(870.085+x*-322.53)))))" +3, iterativefit, down_lfstats2, 2, 0.0, 0.8, 60, 10000, 0.9, 1.1, "0.952884" +3, iterativefit, central, 2, 0.8, 1.6, 60, 10000, -15, 0, "1.18974" +3, iterativefit, central, 2, 0.8, 1.6, 60, 10000, 0, 0.0452, "0.87795" +3, iterativefit, central, 2, 0.8, 1.6, 60, 10000, 0.0452, 0.9, "0.73887+x*(3.86732+x*(-19.0484+x*(34.623+x*(1.77201+x*(-57.5381+x*37.7493)))))" +3, iterativefit, central, 2, 0.8, 1.6, 60, 10000, 0.9, 1.1, "1.2789" +3, iterativefit, up_jes, 2, 0.8, 1.6, 60, 10000, -15, 0, "1.16334" +3, iterativefit, up_jes, 2, 0.8, 1.6, 60, 10000, 0, 0.0452, "0.887843" +3, iterativefit, up_jes, 2, 0.8, 1.6, 60, 10000, 0.0452, 0.9, "0.78963+x*(2.56642+x*(-8.83914+x*(0.737693+x*(52.0778+x*(-88.1835+x*42.6645)))))" +3, iterativefit, up_jes, 2, 0.8, 1.6, 60, 10000, 0.9, 1.1, "1.24792" +3, iterativefit, down_jes, 2, 0.8, 1.6, 60, 10000, -15, 0, "1.23946" +3, iterativefit, down_jes, 2, 0.8, 1.6, 60, 10000, 0, 0.0452, "0.866642" +3, iterativefit, down_jes, 2, 0.8, 1.6, 60, 10000, 0.0452, 0.9, "0.647714+x*(6.54201+x*(-43.1112+x*(130.674+x*(-187.437+x*(122.013+x*-27.7331)))))" +3, iterativefit, down_jes, 2, 0.8, 1.6, 60, 10000, 0.9, 1.1, "1.20888" +3, iterativefit, up_hf, 2, 0.8, 1.6, 60, 10000, -15, 0, "1.2041" +3, iterativefit, up_hf, 2, 0.8, 1.6, 60, 10000, 0, 0.0452, "0.893528" +3, iterativefit, up_hf, 2, 0.8, 1.6, 60, 10000, 0.0452, 0.9, "0.724318+x*(4.97713+x*(-31.1359+x*(90.5527+x*(-125.173+x*(81.2414+x*-20.9046)))))" +3, iterativefit, up_hf, 2, 0.8, 1.6, 60, 10000, 0.9, 1.1, "0.733023" +3, iterativefit, down_hf, 2, 0.8, 1.6, 60, 10000, -15, 0, "1.17439" +3, iterativefit, down_hf, 2, 0.8, 1.6, 60, 10000, 0, 0.0452, "0.862829" +3, iterativefit, down_hf, 2, 0.8, 1.6, 60, 10000, 0.0452, 0.9, "0.734118+x*(3.47395+x*(-14.5386+x*(12.8058+x*(55.4279+x*(-122.14+x*68.0067)))))" +3, iterativefit, down_hf, 2, 0.8, 1.6, 60, 10000, 0.9, 1.1, "1.80533" +3, iterativefit, up_lfstats1, 2, 0.8, 1.6, 60, 10000, -15, 0, "1.22333" +3, iterativefit, up_lfstats1, 2, 0.8, 1.6, 60, 10000, 0, 0.0452, "0.881888" +3, iterativefit, up_lfstats1, 2, 0.8, 1.6, 60, 10000, 0.0452, 0.9, "0.733662+x*(4.22826+x*(-23.4478+x*(56.5217+x*(-49.4274+x*(-1.76682+x*14.8147)))))" +3, iterativefit, up_lfstats1, 2, 0.8, 1.6, 60, 10000, 0.9, 1.1, "1.15123" +3, iterativefit, down_lfstats1, 2, 0.8, 1.6, 60, 10000, -15, 0, "1.1552" +3, iterativefit, down_lfstats1, 2, 0.8, 1.6, 60, 10000, 0, 0.0452, "0.873634" +3, iterativefit, down_lfstats1, 2, 0.8, 1.6, 60, 10000, 0.0452, 0.9, "0.726069+x*(4.1444+x*(-21.3672+x*(42.7362+x*(-10.9347+x*(-49.2328+x*36.3796)))))" +3, iterativefit, down_lfstats1, 2, 0.8, 1.6, 60, 10000, 0.9, 1.1, "1.39109" +3, iterativefit, up_lfstats2, 2, 0.8, 1.6, 60, 10000, -15, 0, "1.22803" +3, iterativefit, up_lfstats2, 2, 0.8, 1.6, 60, 10000, 0, 0.0452, "0.881358" +3, iterativefit, up_lfstats2, 2, 0.8, 1.6, 60, 10000, 0.0452, 0.9, "0.740176+x*(3.9641+x*(-20.4051+x*(40.5431+x*(-10.0334+x*(-47.0865+x*34.5935)))))" +3, iterativefit, up_lfstats2, 2, 0.8, 1.6, 60, 10000, 0.9, 1.1, "1.33309" +3, iterativefit, down_lfstats2, 2, 0.8, 1.6, 60, 10000, -15, 0, "1.15058" +3, iterativefit, down_lfstats2, 2, 0.8, 1.6, 60, 10000, 0, 0.0452, "0.874171" +3, iterativefit, down_lfstats2, 2, 0.8, 1.6, 60, 10000, 0.0452, 0.9, "0.719637+x*(4.40594+x*(-24.3834+x*(58.6028+x*(-50.1036+x*(-4.12573+x*16.6758)))))" +3, iterativefit, down_lfstats2, 2, 0.8, 1.6, 60, 10000, 0.9, 1.1, "1.20889" +3, iterativefit, central, 2, 1.6, 2.4, 60, 10000, -15, 0, "1.27648" +3, iterativefit, central, 2, 1.6, 2.4, 60, 10000, 0, 0.0452, "0.825553" +3, iterativefit, central, 2, 1.6, 2.4, 60, 10000, 0.0452, 0.9, "0.742784+x*(2.05066+x*(-5.0342+x*(3.77868+x*(3.84194+x*(-3.1911+x*-1.79317)))))" +3, iterativefit, central, 2, 1.6, 2.4, 60, 10000, 0.9, 1.1, "0.948751" +3, iterativefit, up_jes, 2, 1.6, 2.4, 60, 10000, -15, 0, "1.22911" +3, iterativefit, up_jes, 2, 1.6, 2.4, 60, 10000, 0, 0.0452, "0.830835" +3, iterativefit, up_jes, 2, 1.6, 2.4, 60, 10000, 0.0452, 0.9, "0.714977+x*(3.33847+x*(-20.1994+x*(73.6168+x*(-142.781+x*(137.479+x*-51.5845)))))" +3, iterativefit, up_jes, 2, 1.6, 2.4, 60, 10000, 0.9, 1.1, "1.11189" +3, iterativefit, down_jes, 2, 1.6, 2.4, 60, 10000, -15, 0, "1.33823" +3, iterativefit, down_jes, 2, 1.6, 2.4, 60, 10000, 0, 0.0452, "0.821283" +3, iterativefit, down_jes, 2, 1.6, 2.4, 60, 10000, 0.0452, 0.9, "0.746671+x*(1.81225+x*(-3.85978+x*(7.11336+x*(-18.6787+x*(30.2453+x*-17.0856)))))" +3, iterativefit, down_jes, 2, 1.6, 2.4, 60, 10000, 0.9, 1.1, "0.961386" +3, iterativefit, up_hf, 2, 1.6, 2.4, 60, 10000, -15, 0, "1.28452" +3, iterativefit, up_hf, 2, 1.6, 2.4, 60, 10000, 0, 0.0452, "0.837478" +3, iterativefit, up_hf, 2, 1.6, 2.4, 60, 10000, 0.0452, 0.9, "0.718027+x*(3.37084+x*(-18.7547+x*(63.8187+x*(-122.304+x*(122.525+x*-49.7326)))))" +3, iterativefit, up_hf, 2, 1.6, 2.4, 60, 10000, 0.9, 1.1, "0.760391" +3, iterativefit, down_hf, 2, 1.6, 2.4, 60, 10000, -15, 0, "1.2676" +3, iterativefit, down_hf, 2, 1.6, 2.4, 60, 10000, 0, 0.0452, "0.814858" +3, iterativefit, down_hf, 2, 1.6, 2.4, 60, 10000, 0.0452, 0.9, "0.74775+x*(1.47671+x*(1.10943+x*(-23.2854+x*(61.2737+x*(-61.2997+x*20.9445)))))" +3, iterativefit, down_hf, 2, 1.6, 2.4, 60, 10000, 0.9, 1.1, "1.13593" +3, iterativefit, up_lfstats1, 2, 1.6, 2.4, 60, 10000, -15, 0, "1.30879" +3, iterativefit, up_lfstats1, 2, 1.6, 2.4, 60, 10000, 0, 0.0452, "0.83268" +3, iterativefit, up_lfstats1, 2, 1.6, 2.4, 60, 10000, 0.0452, 0.9, "0.740431+x*(2.43033+x*(-9.70151+x*(25.9725+x*(-45.1438+x*(47.0564+x*-21.2603)))))" +3, iterativefit, up_lfstats1, 2, 1.6, 2.4, 60, 10000, 0.9, 1.1, "0.872372" +3, iterativefit, down_lfstats1, 2, 1.6, 2.4, 60, 10000, -15, 0, "1.24345" +3, iterativefit, down_lfstats1, 2, 1.6, 2.4, 60, 10000, 0, 0.0452, "0.817607" +3, iterativefit, down_lfstats1, 2, 1.6, 2.4, 60, 10000, 0.0452, 0.9, "0.726444+x*(2.30753+x*(-6.86654+x*(9.92191+x*(-6.31389+x*(4.87105+x*-4.12571)))))" +3, iterativefit, down_lfstats1, 2, 1.6, 2.4, 60, 10000, 0.9, 1.1, "1.01559" +3, iterativefit, up_lfstats2, 2, 1.6, 2.4, 60, 10000, -15, 0, "1.31492" +3, iterativefit, up_lfstats2, 2, 1.6, 2.4, 60, 10000, 0, 0.0452, "0.832309" +3, iterativefit, up_lfstats2, 2, 1.6, 2.4, 60, 10000, 0.0452, 0.9, "0.750966+x*(2.04325+x*(-5.73061+x*(7.77196+x*(-5.58741+x*(6.60079+x*-5.39404)))))" +3, iterativefit, up_lfstats2, 2, 1.6, 2.4, 60, 10000, 0.9, 1.1, "0.979044" +3, iterativefit, down_lfstats2, 2, 1.6, 2.4, 60, 10000, -15, 0, "1.23747" +3, iterativefit, down_lfstats2, 2, 1.6, 2.4, 60, 10000, 0, 0.0452, "0.818016" +3, iterativefit, down_lfstats2, 2, 1.6, 2.4, 60, 10000, 0.0452, 0.9, "0.716097+x*(2.68971+x*(-10.7962+x*(27.9782+x*(-45.6374+x*(45.1601+x*-19.9526)))))" +3, iterativefit, down_lfstats2, 2, 1.6, 2.4, 60, 10000, 0.9, 1.1, "0.908269" diff --git a/moriond17/Tracking_12p9.root b/moriond17/Tracking_12p9.root new file mode 100644 index 0000000..d7008a6 Binary files /dev/null and b/moriond17/Tracking_12p9.root differ diff --git a/moriond17/eleTrig.root b/moriond17/eleTrig.root new file mode 100644 index 0000000..bd3b618 Binary files /dev/null and b/moriond17/eleTrig.root differ diff --git a/moriond17/histo_photons_2jet.root b/moriond17/histo_photons_2jet.root new file mode 100644 index 0000000..1419c87 Binary files /dev/null and b/moriond17/histo_photons_2jet.root differ diff --git a/moriond17/metTriggerEfficiency_recoil_monojet_TH1F.root b/moriond17/metTriggerEfficiency_recoil_monojet_TH1F.root new file mode 100644 index 0000000..d5024a1 Binary files /dev/null and b/moriond17/metTriggerEfficiency_recoil_monojet_TH1F.root differ diff --git a/moriond17/metTriggerEfficiency_zmm_recoil_monojet_TH1F.root b/moriond17/metTriggerEfficiency_zmm_recoil_monojet_TH1F.root new file mode 100644 index 0000000..2ec9404 Binary files /dev/null and b/moriond17/metTriggerEfficiency_zmm_recoil_monojet_TH1F.root differ diff --git a/moriond17/met_trig_fromele.root b/moriond17/met_trig_fromele.root new file mode 100644 index 0000000..a33a822 Binary files /dev/null and b/moriond17/met_trig_fromele.root differ diff --git a/moriond17/muon_scalefactors_37ifb.root b/moriond17/muon_scalefactors_37ifb.root new file mode 100644 index 0000000..c84c15e Binary files /dev/null and b/moriond17/muon_scalefactors_37ifb.root differ diff --git a/moriond17/normalized_npv.root b/moriond17/normalized_npv.root new file mode 100644 index 0000000..7bad68b Binary files /dev/null and b/moriond17/normalized_npv.root differ diff --git a/moriond17/pho_trig.root b/moriond17/pho_trig.root new file mode 100644 index 0000000..92ac456 Binary files /dev/null and b/moriond17/pho_trig.root differ diff --git a/moriond17/photonTriggerEfficiency_photon_TH1F.root b/moriond17/photonTriggerEfficiency_photon_TH1F.root new file mode 100644 index 0000000..f40a4ff Binary files /dev/null and b/moriond17/photonTriggerEfficiency_photon_TH1F.root differ diff --git a/moriond17/puWeights_80x_37ifb.root b/moriond17/puWeights_80x_37ifb.root new file mode 100644 index 0000000..1476200 Binary files /dev/null and b/moriond17/puWeights_80x_37ifb.root differ diff --git a/moriond17/scaleFactor_electron_reco_summer16.root b/moriond17/scaleFactor_electron_reco_summer16.root new file mode 100644 index 0000000..01138f3 Binary files /dev/null and b/moriond17/scaleFactor_electron_reco_summer16.root differ diff --git a/moriond17/scaleFactor_electron_summer16.root b/moriond17/scaleFactor_electron_summer16.root new file mode 100644 index 0000000..5b8ca9d Binary files /dev/null and b/moriond17/scaleFactor_electron_summer16.root differ diff --git a/moriond17/scaleFactor_muon_looseid_12p9.root b/moriond17/scaleFactor_muon_looseid_12p9.root new file mode 100644 index 0000000..86d6c33 Binary files /dev/null and b/moriond17/scaleFactor_muon_looseid_12p9.root differ diff --git a/moriond17/scaleFactor_muon_tightid_12p9.root b/moriond17/scaleFactor_muon_tightid_12p9.root new file mode 100644 index 0000000..fef15fd Binary files /dev/null and b/moriond17/scaleFactor_muon_tightid_12p9.root differ diff --git a/moriond17/scalefactors_80x_egpog_37ifb.root b/moriond17/scalefactors_80x_egpog_37ifb.root new file mode 100644 index 0000000..85cbfc3 Binary files /dev/null and b/moriond17/scalefactors_80x_egpog_37ifb.root differ diff --git a/moriond17/scalefactors_80x_medium_photon_37ifb.root b/moriond17/scalefactors_80x_medium_photon_37ifb.root new file mode 100644 index 0000000..8a61af8 Binary files /dev/null and b/moriond17/scalefactors_80x_medium_photon_37ifb.root differ diff --git a/moriond17/subjet_CSVv2_Moriond17_B_H.csv b/moriond17/subjet_CSVv2_Moriond17_B_H.csv new file mode 100644 index 0000000..1e83e6a --- /dev/null +++ b/moriond17/subjet_CSVv2_Moriond17_B_H.csv @@ -0,0 +1,55 @@ +CSVv2;OperatingPoint, measurementType, sysType, jetFlavor, etaMin, etaMax, ptMin, ptMax, discrMin, discrMax, formula +0, lt, central, 0, -2.4, 2.4, 120, 180, 0, 1, "1.0022" +0, lt, central, 0, -2.4, 2.4, 240, 450, 0, 1, "1.01764" +0, lt, central, 0, -2.4, 2.4, 180, 240, 0, 1, "1.00468" +0, lt, central, 0, -2.4, 2.4, 30, 120, 0, 1, "0.99839" +0, lt, central, 1, -2.4, 2.4, 120, 180, 0, 1, "1.0022" +0, lt, central, 1, -2.4, 2.4, 240, 450, 0, 1, "1.01764" +0, lt, central, 1, -2.4, 2.4, 180, 240, 0, 1, "1.00468" +0, lt, central, 1, -2.4, 2.4, 30, 120, 0, 1, "0.99839" +0, lt, down, 0, -2.4, 2.4, 120, 180, 0, 1, "0.99137" +0, lt, down, 0, -2.4, 2.4, 240, 450, 0, 1, "0.99825" +0, lt, down, 0, -2.4, 2.4, 180, 240, 0, 1, "0.99277" +0, lt, down, 0, -2.4, 2.4, 30, 120, 0, 1, "0.98769" +0, lt, down, 1, -2.4, 2.4, 120, 180, 0, 1, "0.98054" +0, lt, down, 1, -2.4, 2.4, 240, 450, 0, 1, "0.97886" +0, lt, down, 1, -2.4, 2.4, 180, 240, 0, 1, "0.98087" +0, lt, down, 1, -2.4, 2.4, 30, 120, 0, 1, "0.97698" +0, lt, up, 0, -2.4, 2.4, 120, 180, 0, 1, "1.01303" +0, lt, up, 0, -2.4, 2.4, 240, 450, 0, 1, "1.03703" +0, lt, up, 0, -2.4, 2.4, 180, 240, 0, 1, "1.01659" +0, lt, up, 0, -2.4, 2.4, 30, 120, 0, 1, "1.0091" +0, lt, up, 1, -2.4, 2.4, 120, 180, 0, 1, "1.02386" +0, lt, up, 1, -2.4, 2.4, 240, 450, 0, 1, "1.05642" +0, lt, up, 1, -2.4, 2.4, 180, 240, 0, 1, "1.02849" +0, lt, up, 1, -2.4, 2.4, 30, 120, 0, 1, "1.01981" +1, lt, central, 0, -2.4, 2.4, 120, 180, 0, 1, "1.00499" +1, lt, central, 0, -2.4, 2.4, 240, 450, 0, 1, "1.02189" +1, lt, central, 0, -2.4, 2.4, 180, 240, 0, 1, "1.01106" +1, lt, central, 0, -2.4, 2.4, 30, 120, 0, 1, "0.97841" +1, lt, central, 1, -2.4, 2.4, 120, 180, 0, 1, "1.00499" +1, lt, central, 1, -2.4, 2.4, 240, 450, 0, 1, "1.02189" +1, lt, central, 1, -2.4, 2.4, 180, 240, 0, 1, "1.01106" +1, lt, central, 1, -2.4, 2.4, 30, 120, 0, 1, "0.97841" +1, lt, down, 0, -2.4, 2.4, 120, 180, 0, 1, "0.98711" +1, lt, down, 0, -2.4, 2.4, 240, 450, 0, 1, "0.98857" +1, lt, down, 0, -2.4, 2.4, 180, 240, 0, 1, "0.98742" +1, lt, down, 0, -2.4, 2.4, 30, 120, 0, 1, "0.94446" +1, lt, down, 1, -2.4, 2.4, 120, 180, 0, 1, "0.96924" +1, lt, down, 1, -2.4, 2.4, 240, 450, 0, 1, "0.95524" +1, lt, down, 1, -2.4, 2.4, 180, 240, 0, 1, "0.96378" +1, lt, down, 1, -2.4, 2.4, 30, 120, 0, 1, "0.9105" +1, lt, up, 0, -2.4, 2.4, 120, 180, 0, 1, "1.02287" +1, lt, up, 0, -2.4, 2.4, 240, 450, 0, 1, "1.05521" +1, lt, up, 0, -2.4, 2.4, 180, 240, 0, 1, "1.0347" +1, lt, up, 0, -2.4, 2.4, 30, 120, 0, 1, "1.01236" +1, lt, up, 1, -2.4, 2.4, 120, 180, 0, 1, "1.04074" +1, lt, up, 1, -2.4, 2.4, 240, 450, 0, 1, "1.08854" +1, lt, up, 1, -2.4, 2.4, 180, 240, 0, 1, "1.05834" +1, lt, up, 1, -2.4, 2.4, 30, 120, 0, 1, "1.04631" +0, incl, central, 2, 0, 2.4, 20, 1000, 0, 1, "0.954689+0.000316059*x+3.22024e-07*x*x+-4.06201e-10*x*x*x" +0, incl, down, 2, 0, 2.4, 20, 1000, 0, 1, "0.873638+0.0005247*x+-3.15316e-07*x*x+4.83633e-11*x*x*x" +0, incl, up, 2, 0, 2.4, 20, 1000, 0, 1, "1.0358+0.000107516*x+9.58049e-07*x*x+-8.59906e-10*x*x*x" +1, incl, central, 2, 0, 2.4, 20, 1000, 0, 1, "0.629961+0.00245187*x+-3.64539e-06*x*x+2.04999e-09*x*x*x" +1, incl, down, 2, 0, 2.4, 20, 1000, 0, 1, "0.582177+0.00204348*x+-2.94226e-06*x*x+1.6536e-09*x*x*x" +1, incl, up, 2, 0, 2.4, 20, 1000, 0, 1, "0.676736+0.00286128*x+-4.34618e-06*x*x+2.44485e-09*x*x*x" diff --git a/plots.ipynb b/plots.ipynb index 7a91923..97c193f 100644 --- a/plots.ipynb +++ b/plots.ipynb @@ -12,8 +12,16 @@ "from histbook import Hist, beside, groupby, below\n", "from histbook import bin as hbin\n", "\n", - "#import fnal_column_analysis_tools.lookup_tools as lookup_tools\n", + "\n", + "import zlib\n", + "import cloudpickle\n", + "import fnal_column_analysis_tools\n", + "import uproot\n", + "import awkward\n", + "import numpy as np\n", + "from dummy_distributions import dummy_jagged_eta_pt\n", "#import cloudpickle\n", + "\n", "#import zlib\n", "\n", "#import weights as weights\n", @@ -21,10 +29,10 @@ "#import zlib\n", "#import numpy as np\n", "\n", + "\n", "job_server = (\"ifdb02.fnal.gov\", 8765)\n", "#job_server = (\"dbwebdev.fnal.gov\", 8765)\n", - "datasets = [\"QCD_HT200to300_PUMoriond17_05Feb2018_94X_mcRun2_asymptotic_v2-v1_NANOAODSIM\",\n", - " \"JetHT_Run2016H_05Feb2018_ver2-v1_NANOAOD\",\n", + "datasets = [\n", " \"ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8\",\n", " \"WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8\",\n", " ]\n", @@ -34,11 +42,58 @@ { "cell_type": "code", "execution_count": 2, + "metadata": { + "scrolled": true + }, + "outputs": [], + "source": [ + "# Load histograms with lookup_tools\n", + "#extractor = fnal_column_analysis_tools.lookup_tools.extractor()\n", + "#extractor.add_weight_sets([\"testJson * EIDISO_WH_out.histo.json\"])\n", + "#extractor.finalize()\n", + "\n", + "extractor = fnal_column_analysis_tools.lookup_tools.extractor()\n", + "correctionDescriptions = open(\"newCorrectionFiles.txt\").readlines()\n", + "extractor.add_weight_sets(['* * moriond17/muon_scalefactors_37ifb.root'])\n", + "extractor.finalize()\n", + "\n", + "weights_names = zlib.compress(cloudpickle.dumps(extractor._extractor__names))\n", + "weights_vals = zlib.compress(cloudpickle.dumps(extractor._extractor__weights))\n", + "evaluator = extractor.make_evaluator()\n", + "#let's pickle and zip it\n", + "eval_pickle = cloudpickle.dumps(evaluator)\n", + "eval_pickle= zlib.compress(eval_pickle)\n", + "\n", + "\n", + "#counts, test_eta, test_pt = dummy_jagged_eta_pt()\n", + " \n", + "#sf_out = evaluator['testJsonEIDISO_WH/eta_pt_ratio_value'](test_eta, test_pt)\n", + "#sf_err_out = evaluator['testJsonEIDISO_WH/eta_pt_ratio_error'](test_eta, test_pt)\n", + "#print(sf_out)\n", + "#print(sf_err_out)" + ] + }, + { + "cell_type": "code", + "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "#__worker_class__\n", - "import uproot, uproot_methods, awkward, numpy\n", + "\n", + "\n", + "\n", + "\n", + "sys = next(getattr(c, f).__func__.__globals__['sys'] for c in ().__class__.__base__.__subclasses__() for f in dir(c) if isinstance(getattr(c, f, None), type((lambda: 0).__get__(0))) and 'sys' in getattr(c, f).__func__.__globals__)\n", + "if 'sandbox' in sys.modules:\n", + " __builtins__['__import__'] = sys.modules['sandbox'].saved_import\n", + "\n", + "\n", + "def dummySF(eta,pt):\n", + " return 0.8\n", + "import uproot, uproot_methods, awkward, numpy as np, zlib, cloudpickle\n", + "import fnal_column_analysis_tools\n", + "from fnal_column_analysis_tools.lookup_tools import evaluator \n", "class Worker(object):\n", "\n", " Columns = [\"nJet\",\"nMuon\",\"nElectron\",\"Jet.pt\", \"MET_pt\",\"Electron.pt\",\"Electron.eta\",\"Electron.phi\",\n", @@ -50,7 +105,21 @@ " \n", " def run(self, events, job):\n", " \n", + " weights = np.ones(len(events))\n", + " #job.message(cloudpickle.__version__)\n", + " \n", + " # obtain pickled and ziped evaluator, unzip and unpickle\n", + " \n", " \n", + " #eval_pickle = job[\"evaluator\"]\n", + " #eval_pickle = zlib.decompress(eval_pickle)\n", + " #my_evaluator = cloudpickle.loads(eval_pickle)\n", + " weights_names = cloudpickle.loads(zlib.decompress(job[\"weights_names\"]))\n", + " weights_vals = cloudpickle.loads(zlib.decompress(job[\"weights_vals\"]))\n", + " #weights_eval = evaluator(cloudpickle.loads(zlib.decompress(job[\"weights_names\"])),\n", + " # cloudpickle.loads(zlib.decompress(job[\"weights_vals\"])))\n", + " weights_eval = evaluator(weights_names,weights_vals)\n", + " #job.message(str(dir(weights_eval)))\n", " electrons_pt = awkward.JaggedArray.fromcounts(events.Electron.count,events.Electron.pt)\n", " electrons_eta = awkward.JaggedArray.fromcounts(events.Electron.count,events.Electron.eta)\n", " electrons_phi = awkward.JaggedArray.fromcounts(events.Electron.count,events.Electron.phi)\n", @@ -71,7 +140,7 @@ " electrons[\"dz\"] = awkward.JaggedArray.fromcounts(events.Electron.count,events.Electron.dz)\n", " electrons[\"pfRelIso03_all\"] = awkward.JaggedArray.fromcounts(events.Electron.count,events.Electron.pfRelIso03_all)\n", " electrons[\"mvaSpring16GP_WP90\"] = awkward.JaggedArray.fromcounts(events.Electron.count,events.Electron.mvaSpring16GP_WP90)\n", - "\n", + " \n", "\n", " muons[\"dxy\"] = awkward.JaggedArray.fromcounts(events.Muon.count,events.Muon.dxy)\n", " muons[\"dz\"] = awkward.JaggedArray.fromcounts(events.Muon.count,events.Muon.dz)\n", @@ -88,20 +157,56 @@ " loose_m_selection = (muons.pt>5)*(abs(muons.eta)<2.4)*(abs(muons[\"dxy\"])<0.5)*(abs(muons[\"dz\"])<1)*(muons[\"pfRelIso04_all\"]<0.4)\n", " loose_muons = muons[loose_m_selection]\n", " \n", + " # Lepton trigger sf\n", + " \n", + " e_counts = loose_electrons.counts\n", + " e_sfTrigg = np.ones(loose_electrons.size)\n", + " e_sfTrigg[e_counts>0] = 1 - weights_eval[\"scalefactors_MuonLooseId_Muon\"](loose_electrons.eta[e_counts>0,0], loose_electrons.pt[e_counts > 0,0])\n", + " e_sfTrigg[e_counts > 1] = 1- (1- weights_eval[\"scalefactors_MuonLooseId_Muon\"](loose_electrons.eta[e_counts>1,0], loose_electrons.pt[e_counts > 1,0]))*(1- weights_eval[\"scalefactors_MuonLooseId_Muon\"](loose_electrons.eta[e_counts>1,1], loose_electrons.pt[e_counts > 1,1]))\n", + " dumJagged = loose_electrons.pt/loose_electrons.pt\n", + " weight = dumJagged*e_sfTrigg\n", + " \n", + " m_counts = loose_muons.counts\n", + " m_sfTrigg = np.ones(loose_muons.size)\n", + " m_sfTrigg[m_counts>0] = np.ones(m_sfTrigg.size)[m_counts>0] - weights_eval[\"scalefactors_MuonLooseId_Muon\"](loose_muons.eta[m_counts>0,0], loose_muons.pt[m_counts > 0,0])\n", + " m_sfTrigg[m_counts > 1] = 1- (1- weights_eval[\"scalefactors_MuonLooseId_Muon\"](loose_muons.eta[m_counts>1,0], loose_muons.pt[m_counts > 1,0]))*(1- weights_eval[\"scalefactors_MuonLooseId_Muon\"](loose_muons.eta[m_counts>1,1], loose_muons.pt[m_counts > 1,1]))\n", + "\n", + " \n", + " \n", + " \n", + " \n", " \n", " # Histogram variables\n", " \n", + " weight = np.concatenate(weight)\n", + " \n", + " e_pt = loose_electrons.pt\n", + " e_pt_flat = np.concatenate(e_pt)\n", + " \n", + " m_pt = loose_muons.pt\n", + " m_pt_flat = np.concatenate(m_pt)\n", + " \n", " e_energy = loose_electrons.E\n", - " e_energy_flat = numpy.concatenate(e_energy) # Flattens jagged array\n", + " e_energy_flat = np.concatenate(e_energy) # Flattens jagged array\n", " \n", " m_energy = loose_muons.E\n", - " m_energy_flat = numpy.concatenate(m_energy)\n", + " m_energy_flat = np.concatenate(m_energy)\n", " \n", " e_eta = loose_electrons.eta\n", - " e_eta_flat = numpy.concatenate(e_eta)\n", + " e_eta_flat = np.concatenate(e_eta)\n", " \n", " m_eta = loose_muons.eta\n", - " m_eta_flat = numpy.concatenate(m_eta)\n", + " m_eta_flat = np.concatenate(m_eta)\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " #sf_out = evaluator['testJsonEIDISO_WH/eta_pt_ratio_value'](e_eta_flat, e_pt_flat)\n", + " \n", + " \n", " \n", " #job.message(str(e_energy_flat))\n", " #basic_cuts = events.filter((events.nJet >= 2) * (events.Jet.pt[0] > 40)) #etc.. \n", @@ -110,13 +215,15 @@ " \n", " \n", " \n", + " \n", " dataset = dataset = job[\"dataset\"]\n", - " job.fill(dataset=dataset, Electron_pt=events.Electron.pt)\n", - " job.fill(dataset=dataset, Muon_pt=events.Muon.pt)\n", + " job.fill(dataset=dataset, Electron_pt=e_pt_flat, weight = weight)\n", + " job.fill(dataset=dataset, Muon_pt=m_pt_flat)\n", " job.fill(dataset=dataset, Electron_E = e_energy_flat)\n", " job.fill(dataset=dataset, Muon_E=m_energy_flat)\n", " job.fill(dataset=dataset, Electron_eta=e_eta_flat)\n", " job.fill(dataset=dataset, Muon_eta=m_eta_flat)\n", + " #job.fill(dataset=dataset, weight=weight)\n", " \n", " \n", " \n", @@ -125,7 +232,7 @@ }, { "cell_type": "code", - "execution_count": 3, + "execution_count": 4, "metadata": { "scrolled": true }, @@ -135,11 +242,11 @@ "\n", "\n", "\n", - "electron_pt = Hist(hbin(\"Electron_pt\", 70, 0, 800), groupby(\"dataset\"))\n", + "electron_pt = Hist(hbin(\"Electron_pt\", 70, 0, 800), groupby(\"dataset\"), weight=\"weight\")\n", "muon_pt = Hist(hbin(\"Muon_pt\", 70, 0, 800), groupby(\"dataset\"))\n", "\n", "\n", - "electron_E = Hist(hbin(\"Electron_E\",70,0,1500),groupby(\"dataset\"))\n", + "electron_E = Hist(hbin(\"Electron_E\",70,0,1500),groupby(\"dataset\")) #, weight=\"weight\")\n", "muon_E = Hist(hbin(\"Muon_E\",70,0,1500),groupby(\"dataset\"))\n", "\n", "electron_eta = Hist(hbin(\"Electron_eta\",50,-2.5,2.5),groupby(\"dataset\"))\n", @@ -206,25 +313,23 @@ }, { "cell_type": "code", - "execution_count": 4, + "execution_count": 5, "metadata": { - "scrolled": true + "scrolled": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "QCD_HT200to300_PUMoriond17_05Feb2018_94X_mcRun2_asymptotic_v2-v1_NANOAODSIM 0.000 M events, 0.000 M events/sec\n", - "JetHT_Run2016H_05Feb2018_ver2-v1_NANOAOD 0.000 M events, 0.000 M events/sec\n", - "ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8 3.056 M events, 0.158 M events/sec\n", - "WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8 2.493 M events, 0.145 M events/sec\n" + "ST_s-channel_4f_InclusiveDecays_13TeV-amcatnlo-pythia8 3.056 M events, 0.094 M events/sec\n", + "WminusH_HToBB_WToLNu_M125_13TeV_powheg_pythia8 2.493 M events, 0.087 M events/sec\n" ] }, { "data": { "text/html": [ - "
\n", + "
\n", "\n", "