diff --git a/CALIBRATION/shms_dc_calib/scripts/get_LookUp_Values.C b/CALIBRATION/shms_dc_calib/scripts/get_LookUp_Values.C index ab747052bf6b818d01e3bbd679784808ac57fa47..e2770c7c7dc1fbbab1cd0d774675f4cc74f9d199 100644 --- a/CALIBRATION/shms_dc_calib/scripts/get_LookUp_Values.C +++ b/CALIBRATION/shms_dc_calib/scripts/get_LookUp_Values.C @@ -3,8 +3,7 @@ */ #define NPLANES 12 -#define TOTAL_BINS 137 - +#define TOTAL_BINS 274 void get_LookUp_Values() { @@ -49,7 +48,7 @@ void get_LookUp_Values() { ofs << "; number of 1st bin in table in ns" << "\n"; ofs << "pdrift1stbin=0" << "\n"; ofs << "; bin size in ns" << "\n"; - ofs << "pdriftbinsz=2" << "\n"; + ofs << "pdriftbinsz=1" << "\n"; @@ -101,12 +100,12 @@ void get_LookUp_Values() { lookup_value[ip] = binSUM[ip] / binContent_TOTAL[ip]; bin_count = bin_count + 1; - if (bin_count <= 8 ) { + if (bin_count <= 16 ) { ofs << setprecision(5) << lookup_value[ip] << fixed << ","; } - else if (bin_count >8 && bin_count < 138) { - ofs << setprecision(5) << lookup_value[ip] << ((bin_count+1) % 10 ? "," : "\n") << fixed; + else if (bin_count >16 && bin_count < 274) { + ofs << setprecision(5) << lookup_value[ip] << ((bin_count+1) % 20 ? "," : "\n") << fixed; } else { ofs << setprecision(5) << lookup_value[ip] << fixed << endl; diff --git a/CALIBRATION/shms_dc_calib/scripts/get_pdc_time_histo.C b/CALIBRATION/shms_dc_calib/scripts/get_pdc_time_histo.C index efdbaf0f93df8feb32abd01496cc5838e6938a8c..d2689e1140933ce1816d989b3bfd7fad4a79e6c7 100644 --- a/CALIBRATION/shms_dc_calib/scripts/get_pdc_time_histo.C +++ b/CALIBRATION/shms_dc_calib/scripts/get_pdc_time_histo.C @@ -2,6 +2,7 @@ #define NPLANES 12 +#define NBINS 400 void get_pdc_time_histo() { @@ -57,9 +58,9 @@ void get_pdc_time_histo() //Create Histograms - h[ip] = new TH1F(drift_time_histo, title, 200, -50, 350); //set time to 400 ns/200 bins = 2ns/bin + h[ip] = new TH1F(drift_time_histo, title, NBINS, -50, 350); //set time to 400 ns/200 bins = 2ns/bin h[ip]->GetXaxis()->SetTitle("Drift Time (ns)"); - h[ip]->GetYaxis()->SetTitle("Number of Entries / 2 ns"); + h[ip]->GetYaxis()->SetTitle("Number of Entries / 1 ns"); } diff --git a/CALIBRATION/shms_dc_calib/scripts/get_pdc_time_histo_tzero_corrected.C b/CALIBRATION/shms_dc_calib/scripts/get_pdc_time_histo_tzero_corrected.C index 5a24ddfbda00358f78ea2c2b47c47b5b82d10d2c..b8e6f595a88997b50828a219983145e0b5f40dbb 100644 --- a/CALIBRATION/shms_dc_calib/scripts/get_pdc_time_histo_tzero_corrected.C +++ b/CALIBRATION/shms_dc_calib/scripts/get_pdc_time_histo_tzero_corrected.C @@ -1,5 +1,5 @@ #define NPLANES 12 - +#define NBINS 400 using namespace std; void get_pdc_time_histo_tzero_corrected() { @@ -100,8 +100,7 @@ void get_pdc_time_histo_tzero_corrected() int i; - int nbins = 200; // set number of bins in histos - int bin_width = 2; + int bin_width = 1; int bin_Content; Double_t shift; //will be the t0 offset @@ -131,10 +130,10 @@ void get_pdc_time_histo_tzero_corrected() f[ip] = new TFile(root_file, "READ"); - h_add[ip] =new TH1F("plane_"+plane_names[ip]+"drifttime", "", nbins, -50, 350); + h_add[ip] =new TH1F("plane_"+plane_names[ip]+"drifttime", "", NBINS, -50, 350); h_add[ip]->GetXaxis()->SetTitle("Drift Time (ns)"); - h_add[ip]->GetYaxis()->SetTitle("Number of Entries / 2 ns"); + h_add[ip]->GetYaxis()->SetTitle("Number of Entries / 1 ns"); TH1F *cell_dt[107]; @@ -159,10 +158,10 @@ void get_pdc_time_histo_tzero_corrected() //Create corrected wire histos - cell_dt_corr[sw-1] = new TH1F(plane_names[ip]+Form("_wire_%d_corr", sw), "", nbins, -50, 350); + cell_dt_corr[sw-1] = new TH1F(plane_names[ip]+Form("_wire_%d_corr", sw), "", NBINS, -50, 350); cell_dt_corr[sw-1]->GetXaxis()->SetTitle("Drift Time (ns)"); - cell_dt_corr[sw-1]->GetYaxis()->SetTitle("Number of Entries / 2 ns"); + cell_dt_corr[sw-1]->GetYaxis()->SetTitle("Number of Entries / 1 ns"); shift = tzero[ip][sw-1]; //the shift represents how much the drift time histo needs to be offset @@ -174,7 +173,7 @@ void get_pdc_time_histo_tzero_corrected() //INCLUDE the code 'shift.C ', which shifts a histogram - for (i=1; i<=nbins; i++) { + for (i=1; i<=NBINS; i++) { bin_Content = cell_dt[sw-1]->GetBinContent(i); diff --git a/CALIBRATION/shms_dc_calib/scripts/get_wire_tzero.C b/CALIBRATION/shms_dc_calib/scripts/get_wire_tzero.C index b0031a4b7a3340e45ade08032d0501cac68f0e99..343a2feb8472c1513d994778c3e43271fb36de5f 100644 --- a/CALIBRATION/shms_dc_calib/scripts/get_wire_tzero.C +++ b/CALIBRATION/shms_dc_calib/scripts/get_wire_tzero.C @@ -319,7 +319,7 @@ void get_wire_tzero() // if(sensewire<=fNWires[ip]){ - cout << sensewire << endl; + //cout << sensewire << endl; //Check if entries for each sensewire exceeds a certain number of events if (entries>300 && abs(t0)<30) diff --git a/CALIBRATION/shms_dc_calib/scripts/wire_drift_times.C b/CALIBRATION/shms_dc_calib/scripts/wire_drift_times.C index cb0a6bc1d22f510080428cadf9e4a1013dd02ed9..8b38a8f45feb73fa74b4ef2336819d728cbe3233 100644 --- a/CALIBRATION/shms_dc_calib/scripts/wire_drift_times.C +++ b/CALIBRATION/shms_dc_calib/scripts/wire_drift_times.C @@ -4,7 +4,7 @@ #include <TStyle.h> #include <TCanvas.h> #define NPLANES 12 - +#define NBINS 400 void wire_drift_times::Loop() { // In a ROOT session, you can do: @@ -76,7 +76,7 @@ void wire_drift_times::Loop() if(ip == 0 || ip == 1 || ip == 4 || ip == 5 || ip == 6 || ip == 7 || ip == 10 || ip == 11) { TH1F *cell_dt[total_wires_uv]; - TH2F *drifttime_vs_wire = new TH2F("drifttime_vs_wire", "", 107., 0.,107., 200., -50., 350.); + TH2F *drifttime_vs_wire = new TH2F("drifttime_vs_wire", "", 107., 0.,107., NBINS, -50., 350.); @@ -85,10 +85,10 @@ void wire_drift_times::Loop() //Initialize wire drift time histograms for (wirenum=1; wirenum<=total_wires_uv; wirenum++){ - cell_dt[wirenum-1] = new TH1F(Form("wire_%d", wirenum), "", 200., -50., 350.); + cell_dt[wirenum-1] = new TH1F(Form("wire_%d", wirenum), "", NBINS, -50., 350.); cell_dt[wirenum-1]->GetXaxis()->SetTitle("Drift Time (ns)"); - cell_dt[wirenum-1]->GetYaxis()->SetTitle("Number of Entries / 2 ns"); + cell_dt[wirenum-1]->GetYaxis()->SetTitle("Number of Entries / 1 ns"); } //Loop over all entries (triggers or events) @@ -210,7 +210,7 @@ void wire_drift_times::Loop() if(ip == 2 || ip == 3 || ip == 8 || ip == 9) { TH1F *cell_dt[total_wires_x]; - TH2F *drifttime_vs_wire = new TH2F("drifttime_vs_wire", "", 79., 0., 79., 200., -50., 350.); + TH2F *drifttime_vs_wire = new TH2F("drifttime_vs_wire", "", 79., 0., 79., NBINS, -50., 350.); @@ -219,10 +219,10 @@ void wire_drift_times::Loop() //Initialize wire drift time histograms for (int wirenum=1; wirenum<=total_wires_x; wirenum++){ - cell_dt[wirenum-1] = new TH1F(Form("wire_%d", wirenum), "", 200., -50., 350.); + cell_dt[wirenum-1] = new TH1F(Form("wire_%d", wirenum), "", NBINS, -50., 350.); cell_dt[wirenum-1]->GetXaxis()->SetTitle("Drift Time (ns)"); - cell_dt[wirenum-1]->GetYaxis()->SetTitle("Number of Entries / 2 ns"); + cell_dt[wirenum-1]->GetYaxis()->SetTitle("Number of Entries / 1 ns"); } diff --git a/PARAM/SHMS/DC/pdc_tzero_per_wire.param b/PARAM/SHMS/DC/pdc_tzero_per_wire.param index 3e8bd248ec26d445a940bf00402f9f0205c3693c..083ad0f5f7c491842a79fa0c25aa3d0dfb5e376b 100644 --- a/PARAM/SHMS/DC/pdc_tzero_per_wire.param +++ b/PARAM/SHMS/DC/pdc_tzero_per_wire.param @@ -1,88 +1,88 @@ ptzero1u1= -0,0.000,0.000,0.000,0.000,0.000,0.000,0.000,0.000,0.000,0.000,0.000, 0.000, 0.000, 0.000, 0.000 -0.000, 0.000, 1.298, -1.640, 1.136, -1.287, 1.637, -1.226, -6.179, -4.345, -5.184, 2.044, -2.931, -1.992, 0.391, 0.745 --1.456, 1.647, 1.724, -2.288, -1.218, -0.510, -1.422, -1.248, -0.866, -0.958, -1.121, -0.975, -0.644, 1.606, -1.298, -0.868 -1.148, 1.575, -1.189, -1.024, -1.393, -1.589, 1.701, -1.379, -1.276, -1.139, -1.097, -0.825, -1.861, -1.312, -1.546, -1.257 -1.098, 1.541, 2.157, 1.863, -0.965, 4.191, -0.232, 2.516, 3.822, 1.190, -0.338, 0.309, 2.887, 5.467, 1.324, 3.491 -3.631, -1.121, 1.147, 2.870, 2.803, 1.791, 1.561, 2.720, 5.830, 3.990, -2.890, -2.679, -0.333, 4.363, 2.898, 7.216 -1.607, 4.099, -18.641, -5.702, -7.432, -3.305, 0.000, 0.000, 0.000, 0.000, 0.000 +0,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000, 0.000000, 0.000000, 0.000000, 0.000000 +0.000000, 7.083270, 1.500000, 3.196340, 0.000000, 3.561760, -24.337200, -8.570420, -1.706110, -12.830400, 3.509240, 2.827790, 2.705790, 1.986040, -2.729090, -8.382810 +10.033600, 5.758360, 4.271680, -1.376360, 3.403570, 1.525080, -4.735730, 4.778730, 1.605180, 3.218400, 3.747450, 3.344810, 5.865930, 2.428980, 3.580800, 3.960000 +3.567320, 3.344210, -0.238682, 2.138960, 2.884340, 0.329329, 4.422440, -0.012958, 1.542510, 1.118420, 0.149789, 3.870530, 1.620790, 2.415800, 1.873100, 0.265011 +4.326380, 4.456440, 2.468400, 1.913820, 0.296422, 4.952560, 3.233340, 0.882905, -0.530070, 6.953640, 3.794640, 7.392780, 4.243260, 0.939313, 5.928960, -12.427700 +4.311480, 3.432400, 4.670570, 11.335200, 4.023700, 6.242110, -7.866480, 9.282300, 10.423900, 0.374937, -6.911760, -4.365030, 7.684930, 10.387500, 8.083480, 14.663100 +6.836990, 9.277780, 0.000000, -3.822580, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000 ptzero1u2= -0.000,0.000,0.000,0.000,0.000,0.000,0.000,0.000,0.000,0.000,0.000,0.000, 0.000, 0.000, 0.000, 0.000 -0.000, -2.259, -6.423, 0.866, -6.373, 3.260, 0.228, 3.475, -0.986, -0.091, -2.053, -2.161, 0.986, -0.667, -1.335, -1.144 --0.988, 2.450, -0.783, 0.930, -0.494, -0.744, -1.135, -0.185, -0.864, 2.173, -0.715, -1.646, 1.488, 2.565, 2.685, 2.411 -2.057, -1.281, -0.742, -0.953, -1.529, -1.142, -1.328, -1.374, -1.311, -1.011, -1.281, -2.159, -0.906, 1.915, 2.023, 2.316 -2.860, -0.980, 1.076, -0.988, -0.983, -2.039, -1.289, -0.999, 0.713, -1.011, 2.025, 0.366, 1.548, 1.253, 1.612, 0.951 -2.049, 1.652, -2.061, 3.358, 3.554, -0.096, 0.003, 5.227, 1.397, 8.266, 0.395, -0.846, 3.159, 5.009, 4.247, -2.114 -3.470, 4.427, 1.356, -1.029, 1.766, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000 +0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000, 0.000000, 0.000000, 0.000000, 0.000000 +0.000000, 0.000000, 7.535710, 9.321600, 8.060740, 6.649400, -3.202800, 2.829450, 10.002000, 0.000000, 0.833333, -0.898352, -0.347926, 5.752130, -4.623180, 8.819900 +3.458390, 3.533490, 1.613840, 1.636490, 3.181650, 0.000000, 1.717210, 2.164580, 3.786680, 4.686170, 4.418830, -1.104730, 5.757000, 5.529500, 5.859070, 1.480030 +1.480020, 4.959790, 2.227600, 1.741030, 1.069710, 4.196220, 0.786994, 2.641580, 2.040250, 1.705450, 2.453350, 1.751600, 3.339380, 2.319130, 1.555940, 5.307070 +2.871200, 3.374920, 4.473150, 1.622070, 2.824360, 1.024830, 6.207940, 4.924850, 3.738000, 4.179560, 2.579510, 4.485400, 8.304240, 2.384880, 4.890470, 5.778160 +-4.047530, 8.533050, 4.377990, 1.488140, 6.306490, 5.694780, 3.848290, 8.252860, 5.011630, 6.312590, 3.546400, 0.000000, -16.925500, 4.656730, 2.780700, 2.131160 +11.202300, 2.236260, 10.104000, 0.000000, 1.975000, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000 ptzero1x1= --4.100,-3.863,-4.900,-6.566,-5.828,-9.011,-5.034,-7.786,-8.327,-5.643,-8.956,-6.258, -5.092, -5.224, -2.088, -5.075 --2.166, -2.446, -7.240, -5.218, -6.554, -5.572, -6.060, -4.970, -5.041, -5.193, -7.812, -5.146, -4.917, -5.068, -4.150, 0.241 --1.206, 1.889, 1.826, -1.596, -1.040, -3.413, -1.433, -4.678, -3.043, -4.870, -4.915, -2.659, -1.679, -1.041, -0.771, -1.072 --0.514, 2.935, 2.008, 2.193, 0.712, 2.606, 2.235, -1.133, -1.551, -1.184, -2.828, -1.533, -1.522, 2.317, 3.103, 1.915 -6.329, 6.605, 7.082, 9.057, 7.130, 9.753, 9.218, 10.309, 10.729, 10.147, 5.405, 5.596, 5.891, 2.166, 2.515 +-6.521600,-0.121034,1.442960,1.413790,-0.833490,-4.274030,-4.368220,-3.606530,-29.294900,-8.191560,-4.596630,-1.769630, -4.349570, -1.848970, -1.846170, 0.250345 +-3.595190, -1.840290, -0.291207, -1.155760, -2.196860, -0.072281, -0.852707, -4.889880, -3.904150, -4.773820, -0.550445, -1.593940, -0.780432, -2.233060, 0.173444, 9.064500 +5.605870, 2.849670, 3.108510, 6.376590, 0.103299, 0.786836, -1.005460, -1.237070, 0.355588, -2.082220, 2.827850, -1.247850, -2.540830, 1.013970, 2.433340, 2.718400 +5.578880, 4.664560, 5.660690, 2.579650, 2.435660, 3.493600, 1.923330, 3.075040, 2.847180, 0.959091, 5.698580, 1.538380, 1.594660, 1.525710, 7.032030, 4.817720 +7.555350, 11.074900, 9.560880, 10.350900, 13.885100, 7.044440, 12.924300, 7.013180, 15.535200, 14.344300, 6.463660, 7.771640, 7.586360, 9.296230, 6.693190 ptzero1x2= --0.054,6.495,3.634,3.292,2.924,-1.446,-3.039,-0.984,-6.139,0.263,1.217,2.159, -0.675, -1.141, -0.846, 3.090 --0.284, 1.032, -1.310, -3.983, -2.561, -2.450, 0.766, -2.104, -3.275, -1.230, -0.012, -1.139, -0.020, 3.428, 3.339, -4.780 --1.179, -2.102, -4.915, -5.032, -5.952, -6.334, -8.801, -8.209, -9.309, -8.443, -6.099, -2.252, -4.817, -4.801, -4.513, -2.579 --0.571, -4.221, -1.441, -5.170, -0.800, -0.934, -1.825, -4.839, -5.031, -5.267, -4.813, -6.362, -4.978, -4.699, -4.462, -0.623 -2.132, 2.098, -0.626, 2.738, 3.790, 2.873, 2.680, 2.984, 2.754, 2.277, -1.814, -1.704, -1.497, -0.875, -2.401 +5.906180,-0.332492,9.168910,6.807510,-0.185402,9.003890,0.000000,0.144675,1.627240,2.690630,-0.842185,1.651300, 3.570570, 0.646789, 5.408900, 5.593600 +-4.322920, 3.657480, -0.821604, -0.138379, -1.522000, -2.044930, 0.532114, 3.539900, -0.061412, 0.981311, 3.285330, 5.088900, 3.499300, 7.003920, 3.629460, -2.923940 +2.813070, -0.702863, -0.054407, -1.387600, -1.989450, -5.356700, -3.276420, -5.193500, -6.247750, -2.969430, -3.587050, -3.986650, -0.119702, -0.332043, -2.942340, 0.562886 +1.541890, 0.627844, 1.600390, 1.253580, -2.130880, 0.166592, -0.670039, -2.131260, -3.865680, -2.787630, 0.727565, -1.344390, -2.544760, -2.303480, 1.484300, 3.726310 +5.489340, 1.552390, 3.080870, 3.764110, 5.884040, 5.639260, 6.860760, 4.372220, 7.192590, 3.140370, -3.637860, -0.352032, 1.739290, -0.071104, 3.614170 ptzero1v1= -0.000,0.000,0.000,0.000,0.000,0.000,0.000,0.000,0.000,-10.341,-12.552,-0.041, 5.189, 6.299, -3.498, 4.101 -0.505, -1.908, 1.121, 2.678, 2.466, -5.564, 1.003, 1.987, 3.703, 0.045, 2.090, -1.412, -2.056, 0.135, 1.815, -1.742 -1.419, -1.178, -1.702, 1.961, -1.917, -1.774, 0.281, -1.629, 2.937, 1.794, 2.601, 3.408, 2.533, 3.120, 2.624, 5.775 -7.080, 6.698, 6.144, 6.784, 6.305, 5.765, 5.959, 6.806, 7.314, 6.504, 6.804, 6.410, 6.020, 6.503, 5.746, -5.496 --5.735, -8.333, -5.148, -3.950, -5.182, -7.476, -2.617, -5.788, -5.493, -2.629, -5.362, -4.541, -4.430, -1.447, -5.489, -1.323 -0.520, -2.334, -1.785, 0.915, -0.521, 1.826, -1.457, 0.657, 1.843, 2.513, 2.258, 3.729, 4.797, 1.715, 2.997, 1.746 -0.643, 7.899, 2.017, 5.716, 11.513, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000 +0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,-29.500000,-7.890620,5.753660, 0.000000, 6.830580, 0.000000, 1.287920 +5.010040, 4.049570, 2.571940, -0.561224, 2.495750, -6.700000, 0.660714, -0.815603, 2.004960, 1.303820, -7.488840, 1.980090, 8.251630, 1.607650, 2.504300, 2.892320 +3.908130, 3.745230, -7.478610, 4.575180, 0.598338, 5.071310, 4.443650, 4.252920, 6.806040, 3.022230, 3.723120, 4.521770, 6.154960, 7.392040, 6.486770, 9.416000 +11.401300, 7.400690, 5.270430, 7.688990, 8.471760, 5.690930, 6.304150, 7.057790, 9.197790, 9.544010, 9.193930, 7.615600, 7.929700, 9.963370, 9.212690, -0.755019 +-1.784640, -2.130510, -4.898410, -4.127930, -0.143322, -1.614360, -5.638860, -3.720370, -2.293370, 3.633880, -0.566443, -1.491680, -4.383710, -13.729200, 1.373170, 1.632010 +7.334260, 1.944010, 0.512396, 3.230880, -9.472300, -4.360360, 1.561590, 1.331830, 3.602530, 5.307060, 9.582110, 7.177900, -2.662160, 0.668172, 11.093700, 3.027780 +14.435900, -4.045620, 1.565690, 4.528140, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000 ptzero1v2= -0.000,0.000,0.000,0.000,0.000,0.000,0.000,0.000,0.000,-11.494,-7.211,-0.034, -0.627, 2.679, 2.464, 2.600 -3.408, 3.271, 2.324, -1.483, 1.714, -0.356, 2.042, 3.849, -3.658, -0.373, 2.503, -0.316, 3.062, 5.337, 2.624, 1.666 -6.537, 3.899, 5.882, 4.294, 3.847, 1.913, 3.168, 2.690, 3.548, 7.212, 6.422, 2.220, -4.340, -5.046, -1.268, -3.064 --1.663, -2.421, -2.072, -5.132, -4.890, -2.886, -5.145, -2.192, -4.648, -4.866, -1.935, -3.456, -4.907, -4.300, -4.372, -4.803 --4.935, -1.951, -5.922, -4.586, -3.678, -4.533, -5.104, -4.386, -4.944, -4.571, -4.442, -1.702, -1.503, -1.794, 2.135, -0.690 -1.184, 2.213, 2.331, 4.006, 2.482, 1.780, 3.119, -0.157, 4.467, 2.560, 1.708, 2.754, -0.304, 4.914, 3.849, 8.307 -1.586, 8.185, -1.600, 7.045, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000 +0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,1.050900,1.615940,12.149000, 3.271640, -8.738100, 4.217390, 6.807380 +2.932100, -7.674600, -17.724200, 0.472881, 7.485760, 0.000000, 3.561570, -1.520240, 7.809850, 0.000000, 2.847030, 6.346110, 3.541570, 0.488764, 1.791330, 3.583330 +7.470060, 6.501780, 3.720960, 7.344850, 3.700150, 5.028450, 5.128490, 9.522200, 7.791040, 6.941560, 9.325330, 8.754680, -2.974200, 0.047648, 2.261440, -0.456651 +-2.948300, -3.315180, -1.783690, -4.406540, -1.132730, 0.003907, -1.321890, -1.499070, -3.205540, -3.580160, -1.812100, 0.206483, -2.135330, -1.001500, -2.915130, -2.241400 +-0.223913, -5.434280, -2.375080, -2.212350, -5.039990, -0.807800, -1.967830, -0.647033, -1.043810, -1.452510, 0.689638, 2.433080, 4.042300, 3.787080, 4.543930, 6.023370 +5.410940, 4.777100, 5.919980, 5.157950, 3.509960, 11.620700, 7.336780, 4.260870, 10.346600, 5.349470, 9.390890, 7.806610, 0.000000, 7.397440, 6.552940, 7.316090 +0.000000, 0.000000, -16.823500, 8.949760, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000 ptzero2v2= -0.000,0.000,0.000,0.000,0.000,0.000,0.000,0.000,0.000,0.000,0.000,0.000, 0.000, -5.411, -1.731, -3.606 -1.443, 1.881, 0.041, -4.095, 1.264, -2.293, 2.071, -3.527, 0.572, 1.145, -6.359, -1.203, 5.445, 10.642, 5.838, 5.287 -6.655, 3.184, 8.361, 5.883, 6.061, 4.524, 2.691, 6.552, 3.021, 5.879, 2.375, 3.164, 6.280, 6.164, 5.666, 6.755 -6.645, 6.457, 6.699, 6.170, 5.950, 6.264, 2.720, 6.361, 6.641, 6.320, 2.764, 6.278, -1.478, -1.164, -1.837, -1.754 --1.052, -1.878, -2.219, -1.587, -3.191, -2.260, -5.202, -4.525, -2.050, -1.333, 0.886, -2.618, -1.560, -0.690, 1.936, -1.629 --2.073, -0.183, 1.784, 2.129, 2.055, 0.814, 1.494, -1.156, -0.388, -1.481, 2.086, -2.859, 4.009, -0.725, -0.763, -1.119 -2.252, -0.919, -1.008, -0.193, 1.821, 1.667, 2.035, -3.199, 3.255, 9.044, 0.000 +0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000, 0.000000, 4.132810, 4.808940, 0.000000 +0.000000, -0.198398, 3.891960, 1.250070, 8.499480, -5.826530, -6.566040, -6.621770, -1.094770, 1.302620, -0.142840, -0.726300, 6.926110, 13.788600, 11.633100, 12.748400 +12.625000, 8.641500, 7.740850, 8.396210, 9.424270, 9.251910, 5.396770, 8.321400, 5.686450, 10.866800, 11.457000, 6.697420, 6.154000, 10.037300, 10.092400, 10.486800 +9.955560, 7.776580, 9.123180, 7.711060, 7.657930, 6.218420, 6.595720, 8.531170, 6.645670, 5.049010, 6.137710, 5.576370, 1.977770, 1.041720, 4.478610, -3.012900 +1.485230, 2.046620, -0.994388, 0.462381, 0.862240, 0.960237, 0.131091, 0.593038, -2.953540, -0.143375, -0.678630, -3.322590, 5.016710, 6.228050, 1.927380, 6.236230 +4.299950, 4.352510, 6.619880, 4.521860, 4.056490, 4.782980, 4.236090, 1.817000, 2.786270, -1.286360, 1.808070, 4.799520, 0.101200, 6.963830, 5.878240, 4.047890 +2.667960, -4.663420, -7.803750, -0.195599, 5.111510, 1.059970, -12.565000, 3.689770, 5.707410, 13.883200, 0.000000 ptzero2v1= -0.000,0.000,0.000,0.000,0.000,0.000,0.000,0.000,0.000,0.000,0.000,0.000, 0.000, -0.904, 8.184, -7.572 --5.314, -7.689, 0.846, -3.625, -1.955, -8.984, -1.496, -5.006, -3.879, -2.740, -1.798, -2.678, -2.002, -2.171, -3.622, 2.854 -7.242, 3.488, 2.421, 3.132, 2.582, 2.150, 3.531, 3.035, 2.429, 5.682, 6.277, 4.023, 3.475, 5.642, 5.130, 6.548 -15.273, 6.371, 3.119, 6.425, 6.286, 6.229, 6.090, 2.728, 6.531, 6.805, 3.372, 6.168, 6.342, 3.058, 6.619, 0.969 -1.982, -1.019, -1.608, -0.664, -1.892, -0.929, -1.313, -1.413, -1.819, 0.000, 0.103, -1.860, 1.485, 0.250, 1.576, -1.899 -0.385, -2.457, -1.562, -1.442, -1.845, -2.866, -3.172, -1.167, -2.214, -2.223, 5.055, -0.695, -4.876, -6.590, 2.167, 0.130 -2.710, 2.687, -0.306, 2.288, 0.013, 1.922, -0.973, 2.878, 5.169, 4.275, 0.000 +0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000, 0.000000, 5.042420, 0.000000, 0.000000 +29.545500, -4.912320, -4.530960, 0.000000, -1.182630, -5.462000, 1.897090, -4.993040, 1.096480, -8.615700, 0.682969, 3.485310, -2.552660, 1.377860, 1.699790, 4.977510 +13.430000, 6.387790, 0.623513, 7.993940, 6.646530, 4.871360, 1.021270, 7.352540, 8.304120, 7.258370, 3.312140, 10.112300, 3.598000, 7.608370, 7.843750, 8.473720 +14.112000, 10.726500, 6.966270, 8.564790, 9.547680, 8.571220, 6.696620, 7.100250, 9.185470, 8.285940, 8.498250, 8.512940, 5.834030, 8.784960, 6.601370, 0.644711 +1.581800, 1.883520, 2.792540, 1.715550, 2.363240, 3.932260, 1.629660, -1.532930, 0.838165, 0.000000, -4.916050, 3.425160, 5.356420, 8.636910, 6.874850, 1.094760 +3.012880, 1.093660, 0.991268, 3.470990, -1.737020, -0.804999, 0.711092, 0.916122, -3.983000, 2.961770, 0.224279, 2.821990, 3.551800, 3.184040, -0.837501, 4.909020 +3.788300, 2.571130, 0.884566, 6.181030, 6.944970, 7.720460, 1.654150, 2.159860, 9.706350, 4.506990, 0.000000 ptzero2x2= --4.559,-3.178,-4.888,-4.677,-5.489,-5.792,-1.467,-1.747,-1.469,0.163,2.311,-1.721, 1.002, 1.895, -5.946, -9.063 --8.602, -5.900, -6.015, -5.249, -5.762, -5.250, -5.439, -8.507, -5.577, -3.931, -4.176, -1.581, 0.552, -0.905, -1.879, -1.867 -2.846, 1.787, 2.456, 3.017, -1.747, -4.832, -0.761, -2.882, -4.517, -1.409, 0.000, -0.497, -1.885, -0.782, -1.349, 2.647 -3.111, 2.211, 5.915, 3.830, 2.812, 2.738, 2.139, 2.035, 2.642, -1.135, -2.111, -1.772, -1.293, -1.361, -5.522, 2.853 -2.935, 2.492, 1.651, 3.103, 3.489, 5.792, 5.717, 3.037, 5.862, 6.673, 9.245, 9.401, 7.316, 7.497, 9.499 +-0.688403,-2.474330,0.769359,0.273393,-3.842950,3.175620,2.647310,-2.330650,0.656513,-0.506003,-0.220394,-1.567530, -1.468280, 0.918318, -3.627020, -2.580340 +-4.274600, -18.143700, -1.027530, -2.417240, -2.090370, -3.299980, -2.031010, -5.942300, -2.935110, -1.352990, -3.078050, 0.853961, 3.438860, 2.912380, 0.120920, -2.938710 +2.094830, 1.959370, 6.812320, 3.542000, 1.125210, -0.527240, -6.505800, -0.484739, -0.097294, 2.501040, 0.000000, 0.014243, 2.520770, -1.435190, 3.652130, 6.470530 +4.623570, 4.937470, 8.808690, 4.772290, 2.097320, 7.118320, 4.222900, 5.059260, 4.410820, 3.116630, 3.090960, 1.783830, -3.108290, 2.676440, 2.062440, 5.403880 +7.100890, 6.787900, 7.769230, 7.382360, 7.235990, 5.241530, 5.821100, 8.231230, 11.055800, 10.686900, 10.951500, 13.977700, 8.061370, 9.169630, 15.333700 ptzero2x1= --2.216,-1.267,-2.240,-4.060,-1.156,-2.173,1.824,-1.343,1.661,-0.110,-1.303,0.401, 2.048, 1.581, 2.781, -1.031 --4.712, -5.003, -4.612, -2.864, -5.192, -4.253, -5.211, -1.950, -0.743, -0.983, -0.777, -1.464, 1.795, 1.697, 5.364, 2.630 --2.834, 0.332, 2.143, -1.714, -2.364, -5.359, -5.379, -5.389, -5.522, -5.700, -5.753, -4.270, -5.461, -5.184, -5.052, -5.263 --5.572, -1.997, -0.972, -1.853, -4.781, -1.685, -5.385, -5.325, -4.684, -1.547, -3.355, -9.483, -6.114, -5.379, -9.109, -5.059 -2.542, 6.458, 1.813, 3.042, 6.244, 6.822, 6.729, 6.696, 7.682, 11.285, 6.999, 10.294, 10.066, 10.425, 10.184 +0.056975,0.069833,3.177410,0.446331,-6.093550,0.493855,-1.183490,3.034490,3.635620,5.447050,5.643040,5.456530, 6.315580, 3.290220, 3.068700, 2.075990 +-2.612120, -0.812043, -3.406500, 0.763675, 0.123963, 1.135700, 2.672020, 2.229820, 4.139920, 1.161810, 3.092970, 1.061640, 6.146520, 6.705170, 7.493590, 4.013010 +1.976340, -0.113871, 4.605260, 4.818400, -0.467384, -2.731650, -0.819203, -3.927220, -1.644640, -0.949748, -2.850440, -1.235930, -1.780750, -0.751777, 0.600747, -0.657651 +0.380508, -0.989881, 1.262680, -2.012730, 0.251684, 1.484010, 0.283191, -2.339610, 0.143582, 0.459049, -3.547790, -3.961660, -2.041490, -3.242060, -1.978250, -4.008020 +5.812470, 7.906330, 6.640510, 5.752360, 7.395130, 9.726330, 10.952000, 6.581600, 9.910840, 11.698400, 13.083800, 13.023800, 9.398810, 12.785100, 14.099200 ptzero2u2= -0.000,0.000,0.000,0.405,-1.487,-6.910,2.197,1.827,-1.380,-1.979,2.264,-0.928, 0.935, 1.441, 2.840, 1.403 --2.756, 1.790, 4.070, 1.049, -1.328, -2.054, -0.090, -1.564, -1.539, -0.924, 1.952, 0.746, 0.399, 2.088, -0.792, 7.827 --1.372, -1.014, 0.569, -0.177, 2.453, -1.166, 2.156, -1.408, 1.645, 1.381, 2.878, 5.599, -2.666, -1.567, -2.774, -2.003 --5.376, -1.820, -4.650, -5.297, -5.144, -5.963, -5.051, -5.532, -4.563, -4.362, -5.216, -2.565, -1.218, -1.364, -1.859, -1.300 --0.992, -1.824, -0.538, -1.168, -2.146, -2.601, -1.508, -1.481, 0.541, -0.428, -1.309, -4.917, 0.433, 1.950, 1.556, -1.300 --1.593, -1.856, 1.892, 1.684, -0.575, -0.236, 3.766, -1.318, -0.228, 0.032, 2.795, 2.527, 10.708, 11.407, 11.900, 12.005 -4.221, 5.191, 12.781, 17.758, -1.475, 0.000, 0.000, 0.000, 0.000, 0.000, 0.000 +0.000000,0.000000,0.000000,-4.488440,-2.016200,0.000000,-6.487150,5.128820,0.605660,11.008900,8.932510,7.171740, 10.914000, 6.126920, 8.738440, -5.320380 +3.661200, 6.475160, 4.591340, -2.453760, 4.066910, 0.595510, -0.208056, 1.343280, 4.689270, 0.500929, 2.222380, 3.394510, 2.079570, 3.185600, 4.138510, 7.344920 +2.197310, -0.685220, 3.837350, 3.713830, 2.646850, 0.276739, 4.579780, 4.598380, 2.839910, 6.592300, 2.704180, 3.663160, -2.414540, 1.566220, -0.191728, 1.645140 +-0.847295, -3.907550, -1.091480, -1.075430, -2.551730, -2.717220, 0.551373, -3.144570, 1.852050, -1.353860, -2.333420, -0.749933, 0.441922, 1.057190, 0.549223, -0.152812 +2.848490, 1.831690, -0.956818, 0.060605, 2.004840, -0.389808, 0.157084, 2.067180, 2.126280, 3.535460, -0.135123, 1.402940, 0.899807, 2.573960, 2.722300, 5.634890 +5.383450, 0.793369, 1.112780, 1.130280, 5.118410, 4.058690, 6.784370, 5.664220, 6.246080, 2.098320, 7.331310, 4.352670, 7.357850, 16.684500, 13.898900, 21.620000 +0.000000, 6.000000, -7.760870, -15.696400, 10.256400, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000 ptzero2u1= -0.000,0.000,0.000,0.000,3.246,2.838,3.743,-0.838,1.993,1.961,2.057,2.645, 8.569, 3.941, 4.707, -5.476 --4.864, -4.584, -2.936, -2.783, -1.279, 0.203, -4.515, -6.547, -3.904, -3.416, -2.928, -3.791, -3.295, 1.113, -3.542, 0.590 -2.172, -0.502, 1.490, 1.708, -1.400, 1.829, -1.859, 2.870, 2.363, 2.226, 2.136, 2.076, 5.586, 5.368, 5.663, 5.562 -3.044, 5.675, 4.096, 3.263, 2.668, 3.230, 2.614, 5.988, 6.117, 6.291, 6.631, 5.792, 6.271, 6.099, 7.125, -5.071 --2.270, -1.127, -0.956, -4.889, -5.398, -2.239, -1.186, -0.990, -2.110, -1.802, 0.020, -1.039, 3.813, 6.148, 1.914, -0.971 --0.340, -0.983, -1.516, 2.058, 2.030, -1.306, -0.926, 2.455, 1.172, -0.657, -0.300, 6.149, 2.051, 4.677, 4.324, 10.896 -15.255, 13.527, 11.018, -135.385, 13.268, 19.795, 0.000, 0.000, 0.000, 0.000, 0.000 +0.000000,0.000000,0.000000,0.000000,-10.600000,9.200640,0.000000,6.923360,8.522830,5.105380,9.757430,2.805120, 2.245760, 8.876260, 4.450310, -10.592800 +-0.561177, -1.595340, 1.682060, 1.803670, -0.651280, -4.817870, -0.932803, 3.234450, 0.940599, -0.711242, -0.475330, 0.628195, -5.375990, 0.633014, -1.563330, 3.121040 +2.805200, 4.001580, 2.877790, 3.578760, -0.898948, -3.060420, 2.324590, 2.977610, 6.276330, 5.788380, 7.049510, 9.659980, 4.958320, 7.491820, 7.052140, 6.202840 +8.025290, 8.359520, 5.533810, 9.440830, 7.172200, 7.869600, 6.970210, 8.876350, 7.855080, 7.238380, 8.958600, 3.524920, 9.025910, 10.439000, 9.563340, 1.984250 +-0.605358, -2.121810, -2.865110, 2.898040, 1.940570, 1.402800, 2.932110, 0.146516, 2.824990, 5.332050, 2.056730, 5.856240, 3.462260, 3.456100, 3.258370, 1.081600 +3.582360, 3.211900, 3.349700, 3.525440, -1.618850, 1.487920, 1.197950, -0.328185, 4.216600, 6.652610, 9.629610, 10.846200, 2.199420, -7.391230, 5.319410, 18.981100 +13.786500, 10.197500, 18.342100, -26.666700, -7.045250, -20.875000, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000 diff --git a/PARAM/SHMS/DC/pdriftmap.param b/PARAM/SHMS/DC/pdriftmap.param index 3236157a512f007730bc6fc3a4ab8025ee4f5514..0faf7ac0a7b6108d44c36ff3bdfccccb8acba56e 100644 --- a/PARAM/SHMS/DC/pdriftmap.param +++ b/PARAM/SHMS/DC/pdriftmap.param @@ -1,175 +1,187 @@ -; Lookup Table: RUN 488 +; Lookup Table: RUN 484 ; number of bins in time to distance lookup table -pdriftbins = 138 +pdriftbins = 275 ; number of 1st bin in table in ns pdrift1stbin=0 ; bin size in ns -pdriftbinsz=2 -pwc1u1fract=0.0017378,0.00422,0.00765,0.01260,0.01932,0.02812,0.03902,0.05177,0.06669 -0.08263,0.10049,0.11930,0.13923,0.15950,0.18074,0.20249,0.22407,0.24555,0.26803 -0.28965,0.31145,0.33338,0.35490,0.37716,0.39879,0.42088,0.44228,0.46433,0.48559 -0.50713,0.52862,0.54989,0.57105,0.59115,0.61217,0.63224,0.65245,0.67225,0.69196 -0.71088,0.73006,0.74806,0.76552,0.78279,0.79960,0.81632,0.83219,0.84753,0.86146 -0.87474,0.88720,0.89830,0.90840,0.91747,0.92527,0.93193,0.93782,0.94288,0.94753 -0.95143,0.95514,0.95809,0.96102,0.96363,0.96593,0.96813,0.97003,0.97178,0.97357 -0.97528,0.97684,0.97836,0.97961,0.98100,0.98202,0.98307,0.98407,0.98506,0.98602 -0.98679,0.98746,0.98812,0.98868,0.98920,0.98969,0.99010,0.99054,0.99085,0.99117 -0.99150,0.99179,0.99212,0.99232,0.99258,0.99288,0.99310,0.99331,0.99354,0.99379 -0.99399,0.99417,0.99435,0.99457,0.99479,0.99498,0.99515,0.99539,0.99559,0.99581 -0.99602,0.99627,0.99647,0.99667,0.99685,0.99712,0.99730,0.99751,0.99768,0.99784 -0.99800,0.99819,0.99840,0.99861,0.99879,0.99896,0.99917,0.99937,0.99949,0.99961 -0.99976,0.99990,0.99994,0.99999,0.99999,1.00000,1.00000,1.00000,1.00000 -pwc1u2fract=0.00177,0.00440,0.00781,0.01292,0.01970,0.02875,0.03940,0.05267,0.06756 -0.08431,0.10256,0.12179,0.14228,0.16294,0.18442,0.20643,0.22811,0.25017,0.27252 -0.29440,0.31647,0.33873,0.36051,0.38232,0.40408,0.42577,0.44671,0.46822,0.48972 -0.51039,0.53098,0.55188,0.57206,0.59293,0.61329,0.63285,0.65182,0.67127,0.69003 -0.70859,0.72710,0.74516,0.76299,0.78018,0.79735,0.81373,0.82935,0.84419,0.85830 -0.87189,0.88432,0.89597,0.90625,0.91539,0.92306,0.92992,0.93609,0.94149,0.94609 -0.95023,0.95391,0.95734,0.96026,0.96306,0.96540,0.96762,0.96974,0.97152,0.97305 -0.97479,0.97635,0.97763,0.97905,0.98034,0.98157,0.98269,0.98366,0.98458,0.98536 -0.98616,0.98698,0.98756,0.98805,0.98862,0.98914,0.98958,0.99003,0.99043,0.99078 -0.99109,0.99143,0.99175,0.99205,0.99234,0.99255,0.99280,0.99307,0.99328,0.99349 -0.99371,0.99388,0.99409,0.99430,0.99454,0.99474,0.99493,0.99510,0.99533,0.99553 -0.99579,0.99599,0.99625,0.99648,0.99674,0.99701,0.99718,0.99740,0.99759,0.99777 -0.99796,0.99815,0.99834,0.99849,0.99865,0.99891,0.99913,0.99931,0.99946,0.99963 -0.99977,0.99987,0.99994,0.99998,0.99999,1.00000,1.00000,1.00000,1.00000 -pwc1x1fract=0.00180,0.00464,0.00820,0.01325,0.02098,0.03045,0.04231,0.05646,0.07196 -0.09003,0.10897,0.12895,0.14981,0.17129,0.19283,0.21453,0.23628,0.25858,0.28020 -0.30182,0.32320,0.34495,0.36664,0.38861,0.40969,0.43119,0.45271,0.47374,0.49492 -0.51589,0.53706,0.55749,0.57793,0.59822,0.61816,0.63811,0.65723,0.67624,0.69443 -0.71301,0.73116,0.74860,0.76584,0.78273,0.79942,0.81560,0.83119,0.84638,0.86032 -0.87305,0.88494,0.89546,0.90490,0.91357,0.92121,0.92820,0.93404,0.93922,0.94369 -0.94777,0.95126,0.95456,0.95756,0.96027,0.96276,0.96493,0.96720,0.96943,0.97124 -0.97300,0.97469,0.97623,0.97772,0.97913,0.98052,0.98172,0.98273,0.98370,0.98462 -0.98546,0.98625,0.98697,0.98760,0.98824,0.98876,0.98930,0.98973,0.99016,0.99051 -0.99090,0.99121,0.99155,0.99183,0.99209,0.99240,0.99264,0.99286,0.99313,0.99336 -0.99362,0.99389,0.99408,0.99427,0.99447,0.99468,0.99492,0.99516,0.99538,0.99562 -0.99582,0.99601,0.99622,0.99642,0.99659,0.99680,0.99700,0.99722,0.99744,0.99765 -0.99786,0.99808,0.99828,0.99849,0.99867,0.99887,0.99906,0.99922,0.99940,0.99953 -0.99967,0.99979,0.99986,0.99990,0.99996,0.99998,0.99999,0.99999,1.00000 -pwc1x2fract=0.00169,0.00405,0.00738,0.01245,0.01958,0.02873,0.04068,0.05480,0.07137 -0.08913,0.10809,0.12786,0.14864,0.16965,0.19098,0.21228,0.23377,0.25576,0.27678 -0.29868,0.32045,0.34223,0.36362,0.38504,0.40647,0.42789,0.44835,0.46969,0.49054 -0.51111,0.53162,0.55186,0.57194,0.59204,0.61164,0.63127,0.65005,0.66885,0.68779 -0.70576,0.72413,0.74215,0.75942,0.77621,0.79249,0.80839,0.82422,0.83890,0.85304 -0.86663,0.87886,0.89011,0.90029,0.90958,0.91760,0.92478,0.93124,0.93691,0.94144 -0.94551,0.94919,0.95236,0.95519,0.95772,0.96042,0.96272,0.96483,0.96710,0.96937 -0.97106,0.97269,0.97432,0.97614,0.97755,0.97890,0.98022,0.98143,0.98247,0.98338 -0.98437,0.98533,0.98611,0.98693,0.98768,0.98827,0.98873,0.98926,0.98969,0.99014 -0.99053,0.99095,0.99124,0.99163,0.99196,0.99224,0.99250,0.99275,0.99303,0.99327 -0.99349,0.99375,0.99399,0.99426,0.99442,0.99470,0.99494,0.99515,0.99541,0.99561 -0.99584,0.99609,0.99630,0.99657,0.99678,0.99696,0.99711,0.99733,0.99754,0.99770 -0.99788,0.99804,0.99828,0.99849,0.99868,0.99886,0.99904,0.99919,0.99935,0.99950 -0.99964,0.99978,0.99988,0.99994,0.99998,0.99999,1.00000,1.00000,1.00000 -pwc1v1fract=0.00187,0.00456,0.00826,0.01369,0.02145,0.03105,0.04242,0.05584,0.07176 -0.08884,0.10732,0.12725,0.14792,0.16946,0.19162,0.21311,0.23527,0.25760,0.28018 -0.30273,0.32482,0.34658,0.36911,0.39091,0.41314,0.43433,0.45563,0.47722,0.49846 -0.51967,0.54043,0.56097,0.58134,0.60122,0.62132,0.64103,0.66093,0.67963,0.69873 -0.71739,0.73583,0.75340,0.77063,0.78751,0.80415,0.82016,0.83569,0.85019,0.86350 -0.87643,0.88850,0.89908,0.90883,0.91743,0.92469,0.93117,0.93666,0.94172,0.94625 -0.95015,0.95372,0.95685,0.95957,0.96211,0.96446,0.96675,0.96902,0.97085,0.97261 -0.97435,0.97579,0.97727,0.97847,0.97978,0.98104,0.98218,0.98331,0.98428,0.98527 -0.98609,0.98692,0.98757,0.98820,0.98870,0.98918,0.98967,0.99007,0.99047,0.99079 -0.99106,0.99134,0.99162,0.99187,0.99214,0.99240,0.99266,0.99292,0.99312,0.99333 -0.99360,0.99385,0.99404,0.99424,0.99450,0.99469,0.99490,0.99504,0.99532,0.99558 -0.99580,0.99600,0.99622,0.99642,0.99663,0.99684,0.99707,0.99722,0.99741,0.99767 -0.99791,0.99813,0.99838,0.99859,0.99884,0.99905,0.99920,0.99940,0.99956,0.99969 -0.99978,0.99988,0.99991,0.99995,0.99999,1.00000,1.00000,1.00000,1.00000 -pwc1v2fract=0.00177,0.00449,0.00797,0.01283,0.02026,0.02979,0.04130,0.05509,0.07113 -0.08830,0.10623,0.12579,0.14646,0.16806,0.18953,0.21155,0.23327,0.25517,0.27696 -0.29907,0.32061,0.34278,0.36481,0.38671,0.40796,0.42884,0.45050,0.47215,0.49299 -0.51367,0.53488,0.55563,0.57555,0.59562,0.61538,0.63551,0.65489,0.67446,0.69346 -0.71243,0.73059,0.74849,0.76585,0.78324,0.80015,0.81663,0.83213,0.84704,0.86121 -0.87453,0.88736,0.89806,0.90764,0.91635,0.92399,0.93079,0.93680,0.94180,0.94620 -0.95019,0.95370,0.95675,0.95955,0.96211,0.96428,0.96643,0.96837,0.97036,0.97215 -0.97387,0.97537,0.97684,0.97813,0.97948,0.98068,0.98180,0.98284,0.98375,0.98469 -0.98556,0.98619,0.98695,0.98762,0.98812,0.98863,0.98910,0.98955,0.98993,0.99028 -0.99071,0.99102,0.99138,0.99171,0.99193,0.99220,0.99248,0.99276,0.99303,0.99327 -0.99356,0.99381,0.99405,0.99424,0.99444,0.99463,0.99484,0.99500,0.99521,0.99538 -0.99564,0.99584,0.99608,0.99626,0.99647,0.99669,0.99685,0.99704,0.99728,0.99752 -0.99779,0.99800,0.99821,0.99839,0.99855,0.99874,0.99896,0.99912,0.99935,0.99948 -0.99964,0.99972,0.99984,0.99991,0.99996,0.99998,0.99999,1.00000,1.00000 -pwc2v2fract=0.00199,0.00487,0.00855,0.01361,0.02082,0.02974,0.04077,0.05386,0.06965 -0.08703,0.10601,0.12604,0.14744,0.16901,0.19107,0.21310,0.23492,0.25730,0.27900 -0.30033,0.32194,0.34358,0.36555,0.38695,0.40840,0.42988,0.45133,0.47226,0.49317 -0.51393,0.53393,0.55421,0.57407,0.59307,0.61246,0.63148,0.65014,0.66834,0.68610 -0.70328,0.72031,0.73655,0.75263,0.76819,0.78394,0.79911,0.81346,0.82721,0.84019 -0.85279,0.86411,0.87467,0.88487,0.89409,0.90240,0.90982,0.91645,0.92279,0.92809 -0.93288,0.93737,0.94160,0.94555,0.94902,0.95228,0.95510,0.95780,0.96034,0.96258 -0.96484,0.96681,0.96867,0.97039,0.97210,0.97368,0.97509,0.97635,0.97765,0.97882 -0.97999,0.98108,0.98216,0.98319,0.98408,0.98480,0.98550,0.98622,0.98681,0.98740 -0.98801,0.98856,0.98910,0.98951,0.98994,0.99041,0.99083,0.99123,0.99164,0.99200 -0.99233,0.99266,0.99294,0.99322,0.99355,0.99386,0.99416,0.99443,0.99470,0.99500 -0.99521,0.99548,0.99574,0.99598,0.99623,0.99648,0.99672,0.99697,0.99723,0.99747 -0.99770,0.99794,0.99818,0.99840,0.99870,0.99896,0.99915,0.99934,0.99948,0.99964 -0.99978,0.99986,0.99993,0.99996,0.99998,0.99999,1.00000,1.00000,1.00000 -pwc2v1fract=0.00200,0.00479,0.00875,0.01389,0.02117,0.03014,0.04155,0.05532,0.07088 -0.08843,0.10721,0.12697,0.14792,0.16955,0.19149,0.21366,0.23618,0.25856,0.28091 -0.30271,0.32477,0.34710,0.36895,0.39050,0.41176,0.43291,0.45428,0.47499,0.49590 -0.51652,0.53655,0.55660,0.57690,0.59677,0.61594,0.63488,0.65354,0.67179,0.68943 -0.70692,0.72373,0.74039,0.75669,0.77268,0.78826,0.80302,0.81741,0.83072,0.84383 -0.85628,0.86779,0.87875,0.88888,0.89819,0.90628,0.91354,0.92010,0.92581,0.93122 -0.93590,0.94022,0.94424,0.94789,0.95109,0.95411,0.95696,0.95968,0.96212,0.96440 -0.96655,0.96856,0.97037,0.97203,0.97355,0.97505,0.97655,0.97783,0.97907,0.98020 -0.98119,0.98225,0.98317,0.98402,0.98486,0.98567,0.98637,0.98699,0.98766,0.98828 -0.98879,0.98934,0.98976,0.99022,0.99057,0.99097,0.99128,0.99160,0.99197,0.99230 -0.99255,0.99286,0.99315,0.99353,0.99384,0.99411,0.99436,0.99462,0.99488,0.99516 -0.99543,0.99565,0.99592,0.99615,0.99635,0.99659,0.99683,0.99706,0.99729,0.99752 -0.99775,0.99801,0.99821,0.99842,0.99869,0.99894,0.99916,0.99936,0.99954,0.99965 -0.99981,0.99990,0.99994,0.99998,0.99999,0.99999,1.00000,1.00000,1.00000 -pwc2x2fract=0.00199,0.00459,0.00825,0.01336,0.02047,0.03001,0.04141,0.05551,0.07156 -0.08938,0.10884,0.12828,0.14914,0.17047,0.19202,0.21365,0.23563,0.25709,0.27892 -0.30046,0.32153,0.34326,0.36458,0.38581,0.40698,0.42799,0.44932,0.47030,0.49106 -0.51150,0.53138,0.55158,0.57098,0.59056,0.60954,0.62830,0.64689,0.66533,0.68352 -0.70087,0.71829,0.73517,0.75181,0.76792,0.78347,0.79867,0.81347,0.82784,0.84137 -0.85453,0.86673,0.87786,0.88858,0.89792,0.90628,0.91387,0.92019,0.92580,0.93077 -0.93514,0.93913,0.94276,0.94618,0.94945,0.95230,0.95493,0.95743,0.95989,0.96202 -0.96404,0.96618,0.96816,0.97004,0.97190,0.97359,0.97504,0.97648,0.97791,0.97926 -0.98051,0.98165,0.98271,0.98359,0.98456,0.98535,0.98609,0.98686,0.98751,0.98811 -0.98861,0.98912,0.98963,0.99010,0.99056,0.99099,0.99133,0.99171,0.99204,0.99237 -0.99263,0.99295,0.99328,0.99358,0.99384,0.99402,0.99432,0.99454,0.99480,0.99508 -0.99535,0.99556,0.99585,0.99609,0.99629,0.99652,0.99674,0.99695,0.99726,0.99746 -0.99768,0.99789,0.99813,0.99837,0.99859,0.99879,0.99897,0.99915,0.99932,0.99952 -0.99965,0.99980,0.99987,0.99993,0.99996,0.99998,0.99999,1.00000,1.00000 -pwc2x1fract=0.00170,0.00438,0.00799,0.01297,0.01998,0.02965,0.04099,0.05502,0.07039 -0.08804,0.10681,0.12637,0.14712,0.16766,0.18906,0.21084,0.23247,0.25366,0.27466 -0.29600,0.31723,0.33868,0.35980,0.38097,0.40165,0.42255,0.44389,0.46472,0.48535 -0.50587,0.52639,0.54694,0.56706,0.58653,0.60627,0.62558,0.64466,0.66316,0.68165 -0.69964,0.71699,0.73426,0.75143,0.76767,0.78368,0.79903,0.81422,0.82876,0.84266 -0.85582,0.86820,0.87986,0.89032,0.89970,0.90810,0.91524,0.92147,0.92739,0.93243 -0.93697,0.94111,0.94490,0.94827,0.95145,0.95434,0.95701,0.95935,0.96177,0.96404 -0.96607,0.96797,0.96978,0.97170,0.97339,0.97502,0.97646,0.97780,0.97910,0.98028 -0.98143,0.98252,0.98347,0.98433,0.98514,0.98586,0.98658,0.98729,0.98788,0.98846 -0.98894,0.98947,0.98995,0.99042,0.99092,0.99125,0.99162,0.99197,0.99231,0.99263 -0.99292,0.99318,0.99348,0.99379,0.99405,0.99435,0.99460,0.99489,0.99513,0.99534 -0.99558,0.99577,0.99599,0.99622,0.99643,0.99668,0.99688,0.99712,0.99735,0.99757 -0.99778,0.99803,0.99826,0.99853,0.99870,0.99890,0.99911,0.99930,0.99946,0.99960 -0.99972,0.99983,0.99990,0.99996,0.99998,1.00000,1.00000,1.00000,1.00000 -pwc2u2fract=0.00190,0.00455,0.00790,0.01242,0.01937,0.02810,0.03897,0.05192,0.06650 -0.08302,0.10075,0.11980,0.13975,0.16109,0.18206,0.20342,0.22533,0.24730,0.26868 -0.29072,0.31234,0.33443,0.35580,0.37740,0.39883,0.42047,0.44175,0.46293,0.48377 -0.50468,0.52532,0.54612,0.56583,0.58612,0.60570,0.62539,0.64457,0.66335,0.68173 -0.70029,0.71815,0.73531,0.75268,0.76919,0.78504,0.80067,0.81593,0.83047,0.84446 -0.85760,0.86984,0.88124,0.89130,0.90059,0.90904,0.91611,0.92246,0.92829,0.93336 -0.93771,0.94172,0.94555,0.94919,0.95243,0.95541,0.95810,0.96059,0.96286,0.96515 -0.96727,0.96925,0.97114,0.97283,0.97443,0.97603,0.97743,0.97867,0.97984,0.98102 -0.98199,0.98291,0.98390,0.98476,0.98564,0.98635,0.98699,0.98757,0.98822,0.98876 -0.98921,0.98963,0.99006,0.99044,0.99077,0.99109,0.99137,0.99168,0.99199,0.99225 -0.99254,0.99285,0.99307,0.99338,0.99365,0.99391,0.99419,0.99444,0.99469,0.99490 -0.99516,0.99541,0.99559,0.99582,0.99609,0.99629,0.99656,0.99680,0.99707,0.99728 -0.99755,0.99781,0.99803,0.99828,0.99846,0.99866,0.99886,0.99905,0.99930,0.99945 -0.99964,0.99976,0.99987,0.99993,0.99998,0.99999,0.99999,1.00000,1.00000 -pwc2u1fract=0.00193,0.00468,0.00817,0.01287,0.01956,0.02850,0.03902,0.05167,0.06618 -0.08269,0.10040,0.11982,0.13946,0.16005,0.18114,0.20293,0.22453,0.24651,0.26857 -0.29092,0.31319,0.33479,0.35672,0.37829,0.39949,0.42087,0.44214,0.46275,0.48382 -0.50467,0.52496,0.54552,0.56559,0.58529,0.60511,0.62477,0.64422,0.66308,0.68211 -0.70019,0.71795,0.73570,0.75295,0.77001,0.78631,0.80236,0.81788,0.83214,0.84598 -0.85942,0.87170,0.88297,0.89315,0.90241,0.91065,0.91757,0.92400,0.92988,0.93482 -0.93934,0.94352,0.94726,0.95063,0.95381,0.95685,0.95950,0.96206,0.96440,0.96662 -0.96858,0.97051,0.97213,0.97373,0.97521,0.97674,0.97804,0.97930,0.98039,0.98141 -0.98229,0.98321,0.98408,0.98479,0.98547,0.98613,0.98672,0.98724,0.98777,0.98829 -0.98883,0.98922,0.98963,0.99012,0.99054,0.99092,0.99123,0.99153,0.99187,0.99223 -0.99258,0.99286,0.99317,0.99347,0.99377,0.99405,0.99431,0.99454,0.99472,0.99502 -0.99528,0.99549,0.99576,0.99603,0.99630,0.99649,0.99669,0.99698,0.99724,0.99743 -0.99762,0.99782,0.99806,0.99831,0.99858,0.99879,0.99905,0.99927,0.99947,0.99963 -0.99974,0.99986,0.99991,0.99994,0.99997,0.99999,1.00000,1.00000,1.00000 +pdriftbinsz=1 +pwc1u1fract=0.00084747,0.00192,0.00330,0.00472,0.00646,0.00857,0.01100,0.01391,0.01743,0.02149,0.02598,0.03095,0.03631,0.04230,0.04876,0.05601,0.06347,0.07117,0.07944 +0.08802,0.09670,0.10590,0.11521,0.12466,0.13447,0.14471,0.15507,0.16538,0.17608,0.18670,0.19741,0.20827,0.21902,0.23021,0.24107,0.25188,0.26284,0.27418,0.28522 +0.29645,0.30774,0.31918,0.33046,0.34158,0.35255,0.36392,0.37461,0.38553,0.39623,0.40721,0.41772,0.42872,0.43969,0.45081,0.46192,0.47271,0.48349,0.49410,0.50509 +0.51559,0.52636,0.53686,0.54735,0.55756,0.56768,0.57806,0.58856,0.59906,0.60960,0.61951,0.62952,0.63947,0.64913,0.65896,0.66898,0.67873,0.68858,0.69813,0.70791 +0.71750,0.72665,0.73545,0.74460,0.75371,0.76250,0.77145,0.77972,0.78860,0.79693,0.80521,0.81327,0.82122,0.82895,0.83691,0.84442,0.85167,0.85878,0.86544,0.87197 +0.87804,0.88408,0.88968,0.89514,0.90064,0.90572,0.91048,0.91481,0.91898,0.92282,0.92625,0.92968,0.93275,0.93565,0.93838,0.94081,0.94327,0.94545,0.94740,0.94930 +0.95108,0.95282,0.95449,0.95611,0.95758,0.95892,0.96048,0.96186,0.96303,0.96429,0.96539,0.96653,0.96758,0.96859,0.96973,0.97071,0.97164,0.97250,0.97334,0.97422 +0.97496,0.97570,0.97637,0.97704,0.97771,0.97849,0.97912,0.97981,0.98034,0.98089,0.98140,0.98188,0.98235,0.98287,0.98335,0.98375,0.98422,0.98461,0.98504,0.98539 +0.98581,0.98617,0.98649,0.98680,0.98717,0.98745,0.98771,0.98797,0.98822,0.98850,0.98872,0.98895,0.98916,0.98932,0.98954,0.98976,0.98997,0.99019,0.99038,0.99053 +0.99073,0.99089,0.99106,0.99121,0.99137,0.99152,0.99166,0.99176,0.99194,0.99206,0.99216,0.99228,0.99241,0.99252,0.99265,0.99272,0.99284,0.99296,0.99304,0.99315 +0.99330,0.99342,0.99351,0.99362,0.99373,0.99382,0.99398,0.99408,0.99418,0.99425,0.99439,0.99453,0.99462,0.99477,0.99490,0.99501,0.99509,0.99520,0.99533,0.99542 +0.99554,0.99566,0.99577,0.99589,0.99600,0.99610,0.99620,0.99632,0.99648,0.99661,0.99676,0.99690,0.99698,0.99710,0.99721,0.99731,0.99745,0.99758,0.99770,0.99780 +0.99793,0.99802,0.99810,0.99820,0.99827,0.99840,0.99848,0.99858,0.99867,0.99877,0.99883,0.99894,0.99903,0.99912,0.99921,0.99930,0.99939,0.99947,0.99954,0.99960 +0.99970,0.99979,0.99983,0.99987,0.99989,0.99992,0.99995,0.99996,0.99997,0.99998,0.99998,0.99998,0.99998,0.99999,0.99999 +1.00000 +pwc1u2fract=0.00097,0.00200,0.00323,0.00482,0.00661,0.00888,0.01126,0.01418,0.01783,0.02174,0.02643,0.03169,0.03735,0.04334,0.04963,0.05690,0.06423,0.07250,0.08107 +0.08998,0.09916,0.10861,0.11835,0.12831,0.13820,0.14877,0.15888,0.16923,0.18018,0.19103,0.20195,0.21304,0.22404,0.23516,0.24628,0.25737,0.26863,0.27962,0.29057 +0.30150,0.31226,0.32360,0.33472,0.34561,0.35641,0.36709,0.37821,0.38930,0.39999,0.41086,0.42116,0.43196,0.44263,0.45332,0.46433,0.47469,0.48524,0.49573,0.50621 +0.51697,0.52737,0.53771,0.54786,0.55813,0.56828,0.57842,0.58866,0.59873,0.60877,0.61880,0.62908,0.63895,0.64866,0.65846,0.66811,0.67776,0.68756,0.69687,0.70611 +0.71501,0.72406,0.73294,0.74197,0.75126,0.76021,0.76891,0.77764,0.78641,0.79493,0.80305,0.81100,0.81907,0.82653,0.83419,0.84160,0.84896,0.85600,0.86273,0.86953 +0.87564,0.88198,0.88790,0.89358,0.89882,0.90400,0.90850,0.91294,0.91731,0.92099,0.92477,0.92839,0.93164,0.93446,0.93718,0.93985,0.94225,0.94460,0.94671,0.94852 +0.95039,0.95224,0.95376,0.95540,0.95684,0.95842,0.95975,0.96115,0.96240,0.96366,0.96480,0.96590,0.96705,0.96812,0.96904,0.97000,0.97099,0.97188,0.97268,0.97349 +0.97415,0.97482,0.97560,0.97625,0.97696,0.97768,0.97826,0.97890,0.97950,0.98008,0.98069,0.98129,0.98187,0.98233,0.98281,0.98320,0.98369,0.98411,0.98449,0.98487 +0.98521,0.98559,0.98598,0.98633,0.98667,0.98702,0.98732,0.98763,0.98790,0.98815,0.98842,0.98867,0.98887,0.98907,0.98924,0.98950,0.98973,0.98990,0.99008,0.99025 +0.99046,0.99059,0.99079,0.99094,0.99109,0.99121,0.99138,0.99151,0.99161,0.99175,0.99185,0.99202,0.99215,0.99230,0.99249,0.99262,0.99273,0.99288,0.99298,0.99309 +0.99321,0.99333,0.99347,0.99365,0.99378,0.99392,0.99403,0.99410,0.99418,0.99430,0.99444,0.99456,0.99465,0.99478,0.99489,0.99500,0.99512,0.99524,0.99534,0.99544 +0.99554,0.99566,0.99577,0.99588,0.99597,0.99610,0.99625,0.99635,0.99647,0.99663,0.99680,0.99694,0.99706,0.99719,0.99728,0.99740,0.99750,0.99762,0.99775,0.99783 +0.99794,0.99805,0.99819,0.99829,0.99838,0.99850,0.99863,0.99875,0.99885,0.99896,0.99908,0.99917,0.99927,0.99936,0.99946,0.99953,0.99959,0.99967,0.99973,0.99977 +0.99981,0.99986,0.99992,0.99993,0.99995,0.99997,0.99998,0.99998,0.99999,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000 +1.00000 +pwc1x1fract=0.00106,0.00216,0.00363,0.00544,0.00756,0.01018,0.01323,0.01671,0.02078,0.02519,0.02997,0.03535,0.04143,0.04824,0.05533,0.06275,0.07073,0.07906,0.08762 +0.09657,0.10571,0.11537,0.12499,0.13475,0.14484,0.15530,0.16581,0.17670,0.18739,0.19827,0.20936,0.22033,0.23118,0.24178,0.25252,0.26307,0.27455,0.28525,0.29622 +0.30723,0.31811,0.32911,0.33992,0.35112,0.36199,0.37285,0.38362,0.39427,0.40516,0.41577,0.42655,0.43717,0.44762,0.45836,0.46901,0.47961,0.49030,0.50048,0.51101 +0.52132,0.53147,0.54142,0.55139,0.56153,0.57167,0.58169,0.59206,0.60201,0.61200,0.62175,0.63159,0.64143,0.65162,0.66107,0.67076,0.68011,0.68962,0.69885,0.70818 +0.71699,0.72587,0.73476,0.74383,0.75255,0.76127,0.76959,0.77792,0.78640,0.79448,0.80273,0.81048,0.81862,0.82621,0.83359,0.84073,0.84789,0.85503,0.86194,0.86826 +0.87458,0.88085,0.88659,0.89218,0.89727,0.90180,0.90661,0.91100,0.91486,0.91877,0.92234,0.92578,0.92887,0.93176,0.93455,0.93727,0.93981,0.94212,0.94427,0.94629 +0.94815,0.94992,0.95174,0.95338,0.95501,0.95650,0.95806,0.95938,0.96057,0.96172,0.96299,0.96417,0.96534,0.96646,0.96743,0.96858,0.96975,0.97075,0.97177,0.97265 +0.97347,0.97431,0.97519,0.97602,0.97670,0.97746,0.97808,0.97884,0.97951,0.98012,0.98074,0.98130,0.98178,0.98228,0.98278,0.98325,0.98379,0.98419,0.98468,0.98514 +0.98557,0.98594,0.98625,0.98661,0.98690,0.98722,0.98754,0.98780,0.98807,0.98835,0.98862,0.98887,0.98909,0.98931,0.98952,0.98976,0.98992,0.99012,0.99031,0.99050 +0.99071,0.99091,0.99105,0.99119,0.99131,0.99139,0.99153,0.99168,0.99184,0.99197,0.99214,0.99227,0.99234,0.99249,0.99264,0.99282,0.99291,0.99305,0.99316,0.99327 +0.99337,0.99348,0.99361,0.99373,0.99389,0.99405,0.99419,0.99430,0.99446,0.99453,0.99466,0.99479,0.99493,0.99502,0.99513,0.99521,0.99529,0.99542,0.99550,0.99562 +0.99574,0.99579,0.99591,0.99599,0.99610,0.99622,0.99636,0.99651,0.99664,0.99676,0.99688,0.99699,0.99709,0.99718,0.99728,0.99739,0.99752,0.99763,0.99771,0.99788 +0.99796,0.99805,0.99816,0.99827,0.99839,0.99850,0.99860,0.99870,0.99880,0.99891,0.99902,0.99910,0.99922,0.99934,0.99943,0.99948,0.99955,0.99961,0.99970,0.99977 +0.99984,0.99988,0.99993,0.99996,0.99996,0.99998,0.99999,0.99999,0.99999,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000 +1.00000 +pwc1x2fract=0.00108,0.00246,0.00406,0.00602,0.00809,0.01090,0.01415,0.01801,0.02225,0.02741,0.03285,0.03880,0.04501,0.05201,0.05963,0.06791,0.07670,0.08546,0.09474 +0.10415,0.11398,0.12378,0.13426,0.14467,0.15519,0.16561,0.17616,0.18661,0.19729,0.20781,0.21887,0.22951,0.24036,0.25114,0.26182,0.27239,0.28317,0.29394,0.30492 +0.31589,0.32677,0.33759,0.34840,0.35904,0.36949,0.38027,0.39088,0.40142,0.41200,0.42258,0.43300,0.44376,0.45430,0.46502,0.47544,0.48606,0.49654,0.50688,0.51686 +0.52705,0.53694,0.54701,0.55739,0.56751,0.57739,0.58765,0.59748,0.60735,0.61706,0.62673,0.63622,0.64543,0.65517,0.66449,0.67405,0.68334,0.69296,0.70211,0.71134 +0.72054,0.72965,0.73856,0.74715,0.75594,0.76461,0.77294,0.78117,0.78930,0.79750,0.80551,0.81365,0.82133,0.82926,0.83677,0.84389,0.85112,0.85798,0.86479,0.87136 +0.87753,0.88312,0.88880,0.89422,0.89931,0.90419,0.90873,0.91291,0.91687,0.92064,0.92405,0.92755,0.93054,0.93331,0.93587,0.93832,0.94057,0.94280,0.94493,0.94687 +0.94865,0.95044,0.95211,0.95368,0.95518,0.95664,0.95787,0.95909,0.96036,0.96152,0.96277,0.96396,0.96495,0.96592,0.96704,0.96803,0.96902,0.96994,0.97084,0.97176 +0.97266,0.97346,0.97426,0.97501,0.97578,0.97651,0.97723,0.97786,0.97842,0.97906,0.97972,0.98035,0.98092,0.98138,0.98190,0.98232,0.98275,0.98321,0.98363,0.98397 +0.98441,0.98487,0.98523,0.98556,0.98593,0.98633,0.98667,0.98692,0.98720,0.98751,0.98779,0.98800,0.98822,0.98844,0.98868,0.98889,0.98920,0.98943,0.98960,0.98975 +0.98991,0.99003,0.99022,0.99039,0.99054,0.99071,0.99085,0.99100,0.99115,0.99131,0.99146,0.99161,0.99173,0.99185,0.99195,0.99207,0.99225,0.99235,0.99247,0.99267 +0.99279,0.99291,0.99302,0.99311,0.99323,0.99335,0.99349,0.99364,0.99381,0.99393,0.99409,0.99420,0.99430,0.99443,0.99457,0.99468,0.99481,0.99493,0.99503,0.99515 +0.99529,0.99539,0.99550,0.99558,0.99568,0.99580,0.99591,0.99602,0.99614,0.99630,0.99640,0.99652,0.99665,0.99677,0.99689,0.99697,0.99712,0.99723,0.99739,0.99746 +0.99756,0.99770,0.99782,0.99794,0.99804,0.99815,0.99826,0.99838,0.99849,0.99859,0.99875,0.99891,0.99906,0.99916,0.99926,0.99934,0.99943,0.99951,0.99960,0.99968 +0.99976,0.99982,0.99986,0.99990,0.99993,0.99995,0.99998,0.99998,0.99999,0.99999,0.99999,1.00000,1.00000,1.00000,1.00000 +1.00000 +pwc1v1fract=0.00083,0.00191,0.00303,0.00451,0.00607,0.00811,0.01037,0.01321,0.01643,0.02027,0.02459,0.02937,0.03458,0.04053,0.04658,0.05301,0.06025,0.06756,0.07540 +0.08368,0.09233,0.10132,0.11082,0.12035,0.13071,0.14121,0.15171,0.16214,0.17322,0.18374,0.19460,0.20591,0.21641,0.22743,0.23879,0.24981,0.26068,0.27196,0.28313 +0.29406,0.30534,0.31620,0.32742,0.33869,0.34962,0.36100,0.37198,0.38282,0.39334,0.40405,0.41517,0.42565,0.43662,0.44698,0.45789,0.46888,0.47956,0.49026,0.50078 +0.51139,0.52221,0.53291,0.54392,0.55433,0.56459,0.57492,0.58531,0.59563,0.60571,0.61543,0.62513,0.63455,0.64400,0.65370,0.66312,0.67267,0.68202,0.69143,0.70071 +0.71029,0.71921,0.72856,0.73780,0.74663,0.75577,0.76478,0.77359,0.78205,0.79057,0.79885,0.80698,0.81483,0.82281,0.83050,0.83825,0.84547,0.85260,0.85913,0.86546 +0.87190,0.87821,0.88448,0.89018,0.89555,0.90076,0.90563,0.91031,0.91469,0.91861,0.92233,0.92580,0.92907,0.93231,0.93532,0.93802,0.94052,0.94292,0.94499,0.94700 +0.94903,0.95080,0.95256,0.95431,0.95578,0.95723,0.95868,0.96002,0.96135,0.96262,0.96388,0.96514,0.96629,0.96738,0.96847,0.96952,0.97055,0.97156,0.97248,0.97338 +0.97425,0.97509,0.97594,0.97663,0.97728,0.97794,0.97861,0.97935,0.97994,0.98046,0.98107,0.98161,0.98217,0.98268,0.98315,0.98367,0.98418,0.98457,0.98495,0.98543 +0.98580,0.98618,0.98655,0.98688,0.98718,0.98747,0.98777,0.98806,0.98832,0.98857,0.98885,0.98912,0.98932,0.98952,0.98969,0.98991,0.99015,0.99037,0.99055,0.99073 +0.99088,0.99104,0.99122,0.99139,0.99155,0.99171,0.99184,0.99200,0.99212,0.99227,0.99244,0.99258,0.99272,0.99283,0.99300,0.99310,0.99318,0.99330,0.99340,0.99352 +0.99365,0.99376,0.99391,0.99405,0.99414,0.99426,0.99437,0.99447,0.99457,0.99468,0.99482,0.99498,0.99510,0.99516,0.99527,0.99537,0.99544,0.99556,0.99567,0.99578 +0.99589,0.99605,0.99615,0.99626,0.99636,0.99646,0.99656,0.99669,0.99679,0.99687,0.99697,0.99708,0.99721,0.99730,0.99742,0.99752,0.99762,0.99771,0.99781,0.99791 +0.99803,0.99812,0.99824,0.99832,0.99842,0.99854,0.99865,0.99873,0.99884,0.99892,0.99900,0.99910,0.99921,0.99929,0.99937,0.99947,0.99954,0.99961,0.99967,0.99972 +0.99977,0.99984,0.99989,0.99994,0.99995,0.99997,0.99998,0.99999,0.99999,0.99999,1.00000,1.00000,1.00000,1.00000,1.00000 +1.00000 +pwc1v2fract=0.00114,0.00251,0.00414,0.00607,0.00813,0.01090,0.01406,0.01767,0.02175,0.02626,0.03131,0.03710,0.04285,0.04927,0.05649,0.06421,0.07246,0.08115,0.08995 +0.09960,0.10913,0.11905,0.12907,0.13945,0.14985,0.16027,0.17106,0.18181,0.19257,0.20316,0.21381,0.22453,0.23545,0.24684,0.25790,0.26918,0.28024,0.29101,0.30234 +0.31325,0.32422,0.33532,0.34571,0.35641,0.36697,0.37797,0.38862,0.39960,0.41049,0.42117,0.43176,0.44245,0.45291,0.46396,0.47464,0.48533,0.49593,0.50617,0.51658 +0.52684,0.53743,0.54808,0.55805,0.56830,0.57834,0.58868,0.59861,0.60908,0.61927,0.62914,0.63929,0.64924,0.65906,0.66867,0.67858,0.68801,0.69733,0.70646,0.71569 +0.72508,0.73414,0.74275,0.75203,0.76084,0.76975,0.77844,0.78687,0.79496,0.80325,0.81139,0.81949,0.82713,0.83469,0.84211,0.84937,0.85628,0.86304,0.86958,0.87575 +0.88174,0.88763,0.89310,0.89820,0.90337,0.90792,0.91252,0.91673,0.92059,0.92444,0.92787,0.93108,0.93416,0.93696,0.93938,0.94190,0.94413,0.94632,0.94849,0.95047 +0.95227,0.95380,0.95553,0.95691,0.95830,0.95958,0.96085,0.96187,0.96305,0.96412,0.96522,0.96622,0.96727,0.96820,0.96919,0.97008,0.97094,0.97183,0.97261,0.97334 +0.97418,0.97488,0.97563,0.97633,0.97696,0.97761,0.97828,0.97884,0.97944,0.98008,0.98060,0.98116,0.98175,0.98225,0.98267,0.98314,0.98359,0.98402,0.98443,0.98480 +0.98517,0.98551,0.98580,0.98611,0.98640,0.98669,0.98692,0.98723,0.98749,0.98779,0.98805,0.98826,0.98844,0.98871,0.98895,0.98913,0.98933,0.98951,0.98971,0.98986 +0.99001,0.99019,0.99036,0.99056,0.99072,0.99087,0.99102,0.99120,0.99136,0.99148,0.99158,0.99172,0.99185,0.99199,0.99216,0.99231,0.99246,0.99257,0.99268,0.99282 +0.99296,0.99308,0.99320,0.99328,0.99340,0.99353,0.99363,0.99376,0.99392,0.99403,0.99416,0.99428,0.99439,0.99452,0.99462,0.99475,0.99486,0.99496,0.99506,0.99520 +0.99534,0.99546,0.99558,0.99568,0.99578,0.99592,0.99603,0.99615,0.99626,0.99638,0.99653,0.99670,0.99684,0.99693,0.99702,0.99714,0.99727,0.99740,0.99754,0.99768 +0.99775,0.99789,0.99796,0.99810,0.99827,0.99836,0.99845,0.99857,0.99868,0.99876,0.99888,0.99896,0.99903,0.99911,0.99923,0.99934,0.99944,0.99951,0.99959,0.99965 +0.99970,0.99978,0.99983,0.99987,0.99991,0.99995,0.99996,0.99997,0.99999,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000 +1.00000 +pwc2v2fract=0.00085,0.00187,0.00292,0.00412,0.00567,0.00753,0.00976,0.01228,0.01534,0.01862,0.02269,0.02716,0.03198,0.03756,0.04369,0.05044,0.05750,0.06518,0.07313 +0.08136,0.09022,0.09939,0.10902,0.11925,0.12920,0.13942,0.15003,0.16062,0.17181,0.18277,0.19366,0.20456,0.21559,0.22707,0.23826,0.24944,0.26078,0.27168,0.28250 +0.29344,0.30450,0.31572,0.32646,0.33705,0.34793,0.35854,0.36946,0.38038,0.39127,0.40233,0.41270,0.42325,0.43384,0.44415,0.45479,0.46501,0.47534,0.48559,0.49585 +0.50619,0.51629,0.52636,0.53643,0.54613,0.55617,0.56611,0.57584,0.58553,0.59510,0.60485,0.61433,0.62373,0.63294,0.64218,0.65103,0.66000,0.66897,0.67771,0.68622 +0.69492,0.70383,0.71268,0.72101,0.72927,0.73749,0.74599,0.75406,0.76183,0.76957,0.77716,0.78471,0.79202,0.79946,0.80651,0.81351,0.82036,0.82708,0.83390,0.84050 +0.84697,0.85322,0.85915,0.86479,0.87036,0.87560,0.88063,0.88549,0.89012,0.89477,0.89902,0.90321,0.90696,0.91052,0.91376,0.91700,0.92006,0.92279,0.92562,0.92808 +0.93057,0.93293,0.93496,0.93709,0.93912,0.94124,0.94311,0.94499,0.94670,0.94826,0.94972,0.95123,0.95275,0.95413,0.95559,0.95695,0.95820,0.95951,0.96072,0.96190 +0.96305,0.96417,0.96523,0.96640,0.96741,0.96843,0.96939,0.97020,0.97098,0.97182,0.97255,0.97335,0.97398,0.97464,0.97529,0.97599,0.97667,0.97731,0.97794,0.97856 +0.97918,0.97973,0.98033,0.98087,0.98142,0.98198,0.98249,0.98300,0.98348,0.98388,0.98422,0.98457,0.98499,0.98538,0.98577,0.98610,0.98642,0.98676,0.98709,0.98734 +0.98764,0.98789,0.98814,0.98836,0.98860,0.98887,0.98908,0.98929,0.98951,0.98978,0.98998,0.99019,0.99038,0.99056,0.99078,0.99098,0.99116,0.99135,0.99149,0.99167 +0.99180,0.99198,0.99212,0.99228,0.99245,0.99262,0.99280,0.99297,0.99315,0.99329,0.99346,0.99359,0.99377,0.99392,0.99410,0.99425,0.99442,0.99455,0.99467,0.99483 +0.99499,0.99511,0.99524,0.99535,0.99548,0.99559,0.99571,0.99587,0.99600,0.99615,0.99626,0.99639,0.99655,0.99671,0.99681,0.99695,0.99707,0.99721,0.99734,0.99744 +0.99758,0.99770,0.99785,0.99800,0.99817,0.99831,0.99843,0.99855,0.99867,0.99879,0.99889,0.99900,0.99913,0.99925,0.99937,0.99944,0.99953,0.99959,0.99967,0.99975 +0.99984,0.99988,0.99992,0.99995,0.99997,0.99998,0.99999,0.99999,0.99999,0.99999,0.99999,1.00000,1.00000,1.00000,1.00000 +1.00000 +pwc2v1fract=0.00090,0.00202,0.00303,0.00449,0.00596,0.00768,0.00971,0.01218,0.01512,0.01857,0.02255,0.02713,0.03185,0.03734,0.04343,0.05006,0.05707,0.06438,0.07268 +0.08100,0.08971,0.09885,0.10799,0.11813,0.12776,0.13801,0.14806,0.15862,0.16942,0.18047,0.19163,0.20254,0.21333,0.22441,0.23563,0.24660,0.25794,0.26936,0.28043 +0.29135,0.30261,0.31346,0.32465,0.33554,0.34627,0.35725,0.36794,0.37879,0.38965,0.40014,0.41056,0.42092,0.43157,0.44182,0.45278,0.46319,0.47386,0.48455,0.49502 +0.50503,0.51553,0.52591,0.53599,0.54577,0.55573,0.56578,0.57533,0.58537,0.59496,0.60488,0.61448,0.62411,0.63345,0.64297,0.65240,0.66128,0.67030,0.67983,0.68880 +0.69788,0.70661,0.71483,0.72341,0.73166,0.73979,0.74788,0.75592,0.76401,0.77201,0.77989,0.78765,0.79483,0.80219,0.80934,0.81645,0.82346,0.83022,0.83676,0.84328 +0.84964,0.85566,0.86165,0.86727,0.87279,0.87793,0.88294,0.88793,0.89257,0.89694,0.90104,0.90510,0.90898,0.91245,0.91580,0.91893,0.92202,0.92488,0.92771,0.93029 +0.93284,0.93488,0.93711,0.93918,0.94124,0.94319,0.94507,0.94703,0.94866,0.95025,0.95189,0.95330,0.95481,0.95627,0.95765,0.95893,0.96014,0.96131,0.96255,0.96356 +0.96456,0.96565,0.96663,0.96762,0.96857,0.96950,0.97042,0.97125,0.97212,0.97285,0.97356,0.97432,0.97505,0.97571,0.97639,0.97704,0.97761,0.97825,0.97894,0.97957 +0.98009,0.98060,0.98115,0.98165,0.98218,0.98262,0.98304,0.98350,0.98394,0.98435,0.98478,0.98520,0.98556,0.98587,0.98617,0.98647,0.98680,0.98714,0.98749,0.98775 +0.98804,0.98834,0.98864,0.98889,0.98914,0.98937,0.98956,0.98977,0.98993,0.99011,0.99033,0.99050,0.99070,0.99088,0.99107,0.99126,0.99144,0.99159,0.99174,0.99187 +0.99206,0.99221,0.99238,0.99254,0.99268,0.99284,0.99298,0.99310,0.99323,0.99338,0.99352,0.99367,0.99380,0.99395,0.99410,0.99423,0.99437,0.99456,0.99468,0.99480 +0.99493,0.99507,0.99523,0.99534,0.99551,0.99565,0.99577,0.99591,0.99605,0.99615,0.99631,0.99645,0.99658,0.99669,0.99686,0.99698,0.99707,0.99720,0.99731,0.99740 +0.99757,0.99768,0.99780,0.99795,0.99808,0.99819,0.99837,0.99848,0.99861,0.99871,0.99881,0.99895,0.99908,0.99918,0.99928,0.99937,0.99948,0.99959,0.99968,0.99976 +0.99982,0.99987,0.99992,0.99995,0.99996,0.99998,0.99998,0.99998,0.99999,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000 +1.00000 +pwc2x2fract=0.00104,0.00213,0.00347,0.00519,0.00714,0.00938,0.01197,0.01511,0.01881,0.02295,0.02763,0.03274,0.03839,0.04454,0.05132,0.05854,0.06654,0.07484,0.08342 +0.09250,0.10211,0.11168,0.12168,0.13185,0.14224,0.15266,0.16291,0.17339,0.18371,0.19462,0.20544,0.21653,0.22728,0.23796,0.24868,0.25930,0.27015,0.28067,0.29190 +0.30273,0.31316,0.32375,0.33452,0.34506,0.35599,0.36701,0.37752,0.38804,0.39869,0.40923,0.41985,0.43033,0.44065,0.45093,0.46116,0.47173,0.48202,0.49221,0.50226 +0.51254,0.52286,0.53311,0.54315,0.55332,0.56314,0.57278,0.58250,0.59238,0.60215,0.61165,0.62119,0.63065,0.63980,0.64884,0.65781,0.66727,0.67639,0.68583,0.69451 +0.70341,0.71170,0.72022,0.72883,0.73702,0.74543,0.75378,0.76230,0.77036,0.77823,0.78615,0.79363,0.80118,0.80861,0.81605,0.82306,0.83001,0.83717,0.84362,0.85000 +0.85626,0.86226,0.86817,0.87385,0.87918,0.88417,0.88924,0.89382,0.89835,0.90255,0.90642,0.91003,0.91352,0.91686,0.92000,0.92278,0.92558,0.92819,0.93065,0.93296 +0.93524,0.93731,0.93939,0.94119,0.94307,0.94467,0.94626,0.94782,0.94935,0.95088,0.95221,0.95366,0.95516,0.95643,0.95765,0.95900,0.96018,0.96126,0.96228,0.96335 +0.96430,0.96542,0.96649,0.96749,0.96849,0.96938,0.97025,0.97114,0.97193,0.97275,0.97362,0.97437,0.97514,0.97586,0.97660,0.97726,0.97791,0.97864,0.97921,0.97981 +0.98046,0.98098,0.98146,0.98195,0.98237,0.98286,0.98335,0.98388,0.98428,0.98474,0.98513,0.98549,0.98592,0.98626,0.98659,0.98696,0.98731,0.98760,0.98792,0.98819 +0.98847,0.98872,0.98893,0.98917,0.98937,0.98962,0.98984,0.99004,0.99022,0.99044,0.99066,0.99085,0.99105,0.99126,0.99147,0.99163,0.99183,0.99202,0.99216,0.99229 +0.99243,0.99259,0.99278,0.99293,0.99310,0.99325,0.99335,0.99348,0.99364,0.99383,0.99397,0.99411,0.99421,0.99431,0.99445,0.99459,0.99472,0.99486,0.99497,0.99510 +0.99521,0.99537,0.99549,0.99559,0.99570,0.99583,0.99593,0.99604,0.99617,0.99630,0.99645,0.99657,0.99669,0.99682,0.99692,0.99705,0.99718,0.99732,0.99740,0.99753 +0.99765,0.99778,0.99794,0.99805,0.99814,0.99826,0.99835,0.99847,0.99856,0.99868,0.99878,0.99890,0.99903,0.99915,0.99924,0.99934,0.99943,0.99951,0.99962,0.99970 +0.99981,0.99986,0.99990,0.99991,0.99993,0.99995,0.99998,0.99999,0.99999,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000 +1.00000 +pwc2x1fract=0.00115,0.00248,0.00396,0.00575,0.00801,0.01048,0.01365,0.01709,0.02101,0.02545,0.03034,0.03593,0.04205,0.04876,0.05584,0.06331,0.07128,0.07954,0.08849 +0.09749,0.10660,0.11603,0.12586,0.13577,0.14567,0.15601,0.16647,0.17675,0.18696,0.19755,0.20815,0.21894,0.22977,0.24122,0.25192,0.26254,0.27321,0.28386,0.29453 +0.30515,0.31611,0.32688,0.33769,0.34829,0.35919,0.36980,0.38060,0.39114,0.40119,0.41169,0.42246,0.43280,0.44328,0.45355,0.46405,0.47488,0.48514,0.49547,0.50618 +0.51690,0.52697,0.53706,0.54737,0.55750,0.56737,0.57729,0.58733,0.59706,0.60673,0.61637,0.62585,0.63538,0.64463,0.65372,0.66309,0.67239,0.68151,0.69047,0.69965 +0.70853,0.71727,0.72578,0.73422,0.74256,0.75108,0.75942,0.76737,0.77563,0.78369,0.79163,0.79922,0.80672,0.81424,0.82148,0.82858,0.83570,0.84253,0.84924,0.85537 +0.86155,0.86754,0.87341,0.87871,0.88411,0.88911,0.89403,0.89859,0.90281,0.90680,0.91070,0.91412,0.91761,0.92089,0.92380,0.92674,0.92948,0.93196,0.93429,0.93661 +0.93877,0.94064,0.94260,0.94441,0.94620,0.94785,0.94940,0.95087,0.95250,0.95395,0.95531,0.95662,0.95776,0.95908,0.96026,0.96139,0.96257,0.96377,0.96487,0.96596 +0.96679,0.96772,0.96869,0.96965,0.97055,0.97151,0.97231,0.97320,0.97399,0.97469,0.97536,0.97605,0.97672,0.97738,0.97802,0.97873,0.97943,0.97998,0.98056,0.98114 +0.98164,0.98221,0.98270,0.98310,0.98356,0.98403,0.98450,0.98490,0.98527,0.98564,0.98601,0.98634,0.98671,0.98705,0.98730,0.98758,0.98786,0.98823,0.98846,0.98874 +0.98901,0.98921,0.98943,0.98970,0.98993,0.99014,0.99036,0.99055,0.99075,0.99091,0.99106,0.99128,0.99149,0.99168,0.99183,0.99196,0.99217,0.99231,0.99242,0.99256 +0.99270,0.99286,0.99300,0.99313,0.99327,0.99341,0.99355,0.99369,0.99382,0.99394,0.99408,0.99420,0.99435,0.99448,0.99460,0.99474,0.99488,0.99496,0.99508,0.99519 +0.99535,0.99546,0.99557,0.99568,0.99578,0.99593,0.99606,0.99617,0.99627,0.99639,0.99649,0.99661,0.99673,0.99685,0.99697,0.99708,0.99721,0.99739,0.99752,0.99765 +0.99775,0.99784,0.99798,0.99807,0.99819,0.99831,0.99845,0.99856,0.99866,0.99876,0.99889,0.99899,0.99910,0.99922,0.99930,0.99939,0.99947,0.99954,0.99961,0.99968 +0.99975,0.99984,0.99987,0.99990,0.99992,0.99996,0.99998,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000 +1.00000 +pwc2u2fract=0.00122,0.00246,0.00390,0.00568,0.00760,0.01013,0.01299,0.01634,0.02011,0.02437,0.02936,0.03478,0.04080,0.04705,0.05394,0.06129,0.06883,0.07692,0.08551 +0.09479,0.10415,0.11378,0.12360,0.13369,0.14361,0.15426,0.16480,0.17559,0.18598,0.19668,0.20738,0.21784,0.22884,0.23949,0.25077,0.26181,0.27291,0.28361,0.29488 +0.30543,0.31633,0.32691,0.33759,0.34864,0.35963,0.37042,0.38101,0.39160,0.40220,0.41282,0.42341,0.43409,0.44464,0.45487,0.46519,0.47567,0.48571,0.49589,0.50623 +0.51664,0.52687,0.53718,0.54719,0.55743,0.56746,0.57734,0.58714,0.59694,0.60678,0.61654,0.62650,0.63626,0.64573,0.65505,0.66460,0.67409,0.68341,0.69251,0.70150 +0.71042,0.71937,0.72783,0.73643,0.74474,0.75331,0.76143,0.76962,0.77775,0.78587,0.79393,0.80169,0.80956,0.81710,0.82438,0.83159,0.83849,0.84515,0.85200,0.85824 +0.86417,0.87013,0.87583,0.88126,0.88641,0.89131,0.89609,0.90050,0.90467,0.90869,0.91240,0.91580,0.91920,0.92235,0.92549,0.92828,0.93084,0.93332,0.93566,0.93785 +0.93987,0.94193,0.94398,0.94590,0.94762,0.94931,0.95087,0.95240,0.95383,0.95529,0.95665,0.95792,0.95938,0.96061,0.96182,0.96296,0.96404,0.96507,0.96608,0.96707 +0.96812,0.96913,0.97009,0.97093,0.97175,0.97272,0.97352,0.97423,0.97505,0.97572,0.97642,0.97714,0.97786,0.97851,0.97922,0.97982,0.98040,0.98095,0.98145,0.98194 +0.98246,0.98297,0.98336,0.98374,0.98414,0.98456,0.98496,0.98534,0.98567,0.98608,0.98638,0.98666,0.98698,0.98727,0.98752,0.98782,0.98813,0.98841,0.98867,0.98889 +0.98908,0.98928,0.98952,0.98970,0.98995,0.99016,0.99034,0.99052,0.99070,0.99085,0.99104,0.99118,0.99127,0.99144,0.99160,0.99175,0.99187,0.99201,0.99215,0.99233 +0.99247,0.99264,0.99278,0.99296,0.99311,0.99323,0.99335,0.99346,0.99357,0.99369,0.99381,0.99391,0.99400,0.99413,0.99425,0.99435,0.99450,0.99462,0.99475,0.99489 +0.99503,0.99517,0.99530,0.99542,0.99553,0.99568,0.99583,0.99596,0.99607,0.99617,0.99628,0.99638,0.99648,0.99662,0.99674,0.99689,0.99700,0.99712,0.99727,0.99736 +0.99748,0.99758,0.99772,0.99783,0.99794,0.99809,0.99826,0.99840,0.99854,0.99866,0.99878,0.99889,0.99898,0.99910,0.99920,0.99929,0.99939,0.99951,0.99961,0.99969 +0.99974,0.99981,0.99986,0.99989,0.99993,0.99997,0.99998,0.99999,0.99999,0.99999,0.99999,1.00000,1.00000,1.00000,1.00000 +1.00000 +pwc2u1fract=0.00092,0.00185,0.00301,0.00443,0.00613,0.00800,0.01021,0.01299,0.01604,0.01954,0.02346,0.02783,0.03263,0.03808,0.04363,0.05002,0.05689,0.06401,0.07157 +0.07979,0.08831,0.09751,0.10678,0.11643,0.12595,0.13590,0.14634,0.15653,0.16681,0.17721,0.18777,0.19856,0.20930,0.22025,0.23147,0.24216,0.25314,0.26377,0.27484 +0.28545,0.29665,0.30750,0.31851,0.32947,0.34041,0.35118,0.36200,0.37268,0.38352,0.39435,0.40511,0.41597,0.42632,0.43702,0.44786,0.45839,0.46901,0.47939,0.48965 +0.49980,0.50972,0.52009,0.53069,0.54093,0.55091,0.56113,0.57123,0.58142,0.59143,0.60107,0.61066,0.62034,0.62974,0.63975,0.64928,0.65873,0.66805,0.67744,0.68690 +0.69606,0.70486,0.71421,0.72304,0.73197,0.74068,0.74909,0.75775,0.76588,0.77419,0.78248,0.79085,0.79856,0.80646,0.81402,0.82159,0.82896,0.83623,0.84318,0.85001 +0.85668,0.86310,0.86911,0.87487,0.88020,0.88552,0.89046,0.89551,0.90008,0.90460,0.90876,0.91299,0.91675,0.92021,0.92353,0.92666,0.92959,0.93235,0.93504,0.93745 +0.93966,0.94173,0.94379,0.94575,0.94753,0.94941,0.95112,0.95285,0.95446,0.95596,0.95743,0.95888,0.96034,0.96166,0.96299,0.96427,0.96551,0.96666,0.96769,0.96878 +0.96968,0.97061,0.97151,0.97246,0.97327,0.97410,0.97495,0.97568,0.97649,0.97732,0.97808,0.97875,0.97939,0.97996,0.98056,0.98109,0.98166,0.98214,0.98257,0.98308 +0.98360,0.98403,0.98443,0.98480,0.98518,0.98559,0.98602,0.98632,0.98664,0.98696,0.98727,0.98752,0.98786,0.98812,0.98834,0.98858,0.98881,0.98907,0.98931,0.98956 +0.98978,0.99003,0.99023,0.99040,0.99062,0.99083,0.99106,0.99120,0.99137,0.99151,0.99165,0.99176,0.99190,0.99202,0.99215,0.99228,0.99241,0.99253,0.99261,0.99275 +0.99286,0.99298,0.99309,0.99323,0.99336,0.99347,0.99362,0.99373,0.99386,0.99398,0.99414,0.99425,0.99441,0.99457,0.99469,0.99481,0.99495,0.99505,0.99518,0.99527 +0.99539,0.99551,0.99563,0.99575,0.99588,0.99599,0.99609,0.99619,0.99636,0.99647,0.99660,0.99672,0.99680,0.99692,0.99706,0.99720,0.99734,0.99748,0.99760,0.99772 +0.99781,0.99796,0.99809,0.99821,0.99834,0.99846,0.99855,0.99866,0.99879,0.99890,0.99903,0.99913,0.99920,0.99930,0.99939,0.99946,0.99954,0.99962,0.99970,0.99976 +0.99981,0.99987,0.99990,0.99994,0.99996,0.99998,0.99998,0.99999,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000 +1.00000