diff --git a/CALIBRATION/shms_dc_calib/README.md b/CALIBRATION/shms_dc_calib/README.md index efb52584c9cb0cd3849f4d4f2934adfcfbf6b3a6..8315ac6829715be1e69ce14e40e7c6a26dafe1f1 100644 --- a/CALIBRATION/shms_dc_calib/README.md +++ b/CALIBRATION/shms_dc_calib/README.md @@ -17,20 +17,20 @@ Directory structure Running code --------------- * First set the parameter 'p_using_tzero_per_wire = 0' in the - parameter file located at: hallc_replay/PARAM/SHMS/DC/pdc.param + parameter file located at: hallc_replay/PARAM/SHMS/DC/CUTS/pdc_cuts.param * Replay the data to produce the uncalibrated root file to be used as input in the calibration - * From the hallc_replay execute: ./hcana SCRIPTS/SHMS/replay_shms.C + * From the hallc_replay execute: ./hcana SCRIPTS/SHMS/STACK/replay_shms.C -* From THIS! directory execute: root -l run_Cal.C +* From the directory where this README file is: execute: root -l run_Cal.C * From the calibration results, two parameter files will be produced in: - * hallc_replay/PARAM/SHMS/DC/pdc_tzero_per_wire_run%d_NEW.param. %d=run_number - * hallc_replay/PARAM/SHMS/DC/pdriftmap_run%d_NEW.param + * hallc_replay/PARAM/SHMS/DC/CALIB/pdc_tzero_per_wire_run#.param + * hallc_replay/PARAM/SHMS/DC/CALIB/pdc_calib_run#.param * Rename the new parameter files as follows: - * copy: pdc_tzero_per_wire_run%d_NEW.param to pdc_tzero_per_wire.param - * copy: pdriftmap_run%d_NEW.param to pdriftmap.param + * copy: pdc_tzero_per_wire_run#.param to pdc_tzero_per_wire.param + * copy: pdc_calib_run#.param to pdc_calib.param * Before replaying the data again, set the parameter 'p_using_tzero_per_wire = 1' to allow the source code (hcana) to read the parameter values during the replay. @@ -75,14 +75,14 @@ Brief decription of code -- outputs data_file: 'tzero_values_per_wire.dat' -- contains list of tzero values for all wires in all planes - -- outputs param_file: /hallc_replay/PARAM/SHMS/DC/pdc_tzero_per_wire_run%d_NEW.param, where %d=run_number + -- outputs param_file: /hallc_replay/PARAM/SHMS/DC/CALIB/pdc_tzero_per_wire_run#.param -- contains tzero values for all wires in all planes, but the file is formatted so that the values may be read by the source code (hcana) - ** get_pdc_time_histo_tzero_corrected_v2.C + ** get_pdc_time_histo_tzero_corrected.C -- outputs root_file: 'shms_tzero_corr_histo.root' -- contains list of "t0-corrected" wire drift times, and their respective plane drift times. ** get_LookUp_Values.C - -- outputs param_file: /hallc_replay/PARAM/SHMS/DC/pdriftmap_run%d_NEW.param + -- outputs param_file: /hallc_replay/PARAM/SHMS/DC/CALIB/pdc_calib_run#.param -- contains scaling factors calculated from the corrected plane drift times on a bin-by-in basis. These values get read by the source code which will be used to scale the drift distance histograms. diff --git a/CALIBRATION/shms_dc_calib/run_Cal.C b/CALIBRATION/shms_dc_calib/run_Cal.C index 9dfd61b720613b4ab07504f237682cfaaa23a147..2f6377006371b4e766b27c5c07cce2699a569053 100644 --- a/CALIBRATION/shms_dc_calib/run_Cal.C +++ b/CALIBRATION/shms_dc_calib/run_Cal.C @@ -99,7 +99,7 @@ gSystem->Exec("root -l -q get_tzero_per_wire_param.C"); //execute code to get t0 corrected drift times - gSystem->Exec("root -l -q get_pdc_time_histo_tzero_corrected_v2.C"); + gSystem->Exec("root -l -q get_pdc_time_histo_tzero_corrected.C"); //execute code to update LookUp Table gSystem->Exec("root -l -q get_LookUp_Values.C"); diff --git a/CALIBRATION/shms_dc_calib/scripts/get_LookUp_Values.C b/CALIBRATION/shms_dc_calib/scripts/get_LookUp_Values.C index 81c9736306f8f1917f291fa8232ff57678ae02d4..3b77d8d4be5baad70c9665e30c692bb24af6e98b 100644 --- a/CALIBRATION/shms_dc_calib/scripts/get_LookUp_Values.C +++ b/CALIBRATION/shms_dc_calib/scripts/get_LookUp_Values.C @@ -37,7 +37,7 @@ void get_LookUp_Values() { //Create an output file to store lookup values ofstream ofs; - TString lookup_table = Form("../../../PARAM/SHMS/DC/pdriftmap_run%d_NEW.param", run_NUM); + TString lookup_table = Form("../../../PARAM/SHMS/DC/CALIB/pdc_calib_%d.param", run_NUM); ofs.open (lookup_table); diff --git a/CALIBRATION/shms_dc_calib/scripts/get_pdc_time_histo_tzero_corrected_v2.C b/CALIBRATION/shms_dc_calib/scripts/get_pdc_time_histo_tzero_corrected_v2.C deleted file mode 100644 index a407ba19aecf1e28ce987561a4c86b40fb063150..0000000000000000000000000000000000000000 --- a/CALIBRATION/shms_dc_calib/scripts/get_pdc_time_histo_tzero_corrected_v2.C +++ /dev/null @@ -1,208 +0,0 @@ -//Script to add necessary drift time histograms/plane from original root file to new root file - - -#define NPLANES 12 -#define NBINS 400 -#define bin_min -50.5 -#define bin_max 349.5 - -void get_pdc_time_histo_tzero_corrected_v2() -{ - - //Read Run Number from txt file - int run_NUM; - Long64_t num_evts; //added - string input_file; //added - - - TString f0 = "input_RUN.txt"; - ifstream infile(f0); - infile >> input_file >> run_NUM >> num_evts; - - TString run = Form("run%d", run_NUM); - - //*****************READ WIRE TZERO VALUES********************************* - - -//this script reads all tzero values inside tzero_group.dat and assigns them to their corresponding planes. - //these values will then be used to shift the drift time histos, wire by wire (t0-correction wire-by-wire) - - int ip; //to loop over planes - int sw; //to loop over sensewires - - - int tot_wires[NPLANES] = {107, 107, 79, 79, 107, 107, 107, 107, 79, 79, 107, 107}; - - //sum over all wires in both DC - int wire_sum = 0; - for (ip=0; ip<NPLANES; ip++) { - wire_sum = wire_sum + tot_wires[ip]; - } - - - //open and read tzero data file - ifstream file; - file.open("../data_files/"+run+"/tzero_values_per_wire.dat"); - - string line; - int counter; - Double_t value; - Double_t *tzero_offset; - tzero_offset = new Double_t[wire_sum]; - - - counter = 0; - - while (getline(file, line)) { - - if (line[0]!='#' ) - { - sscanf(line.c_str(), "%lf", &value); //pass data in file to variable 'value' - tzero_offset[counter] = value; //write all tzero values for all wires in both DC to an array - //cout << tzero_offset[counter] << endl; - counter++; - } - } - - - //*************************************************************** - - //pass all tzero values into their corresponding planes - - //declare a 2d dynamic array to store tzero values to be used for t0-correction - Double_t **tzero = new Double_t*[NPLANES]; - - for (ip = 0; ip < NPLANES; ip++) - { - tzero[ip] = new Double_t[tot_wires[ip]]; - } - - //initialize 2d dynamic array to 0.0 - for (ip = 0; ip<NPLANES; ip++) { - for (sw = 0; sw<tot_wires[ip]; sw++) { - tzero[ip][sw] = 0.0; - - } - } - - counter = 0; - for (ip = 0; ip<NPLANES; ip++) { - - for (sw = 0; sw < tot_wires[ip]; sw++) { - - tzero[ip][sw] = tzero_offset[counter]; //tzero corrections that must be added wire by wire - // cout << tzero[ip][sw] << endl; - //cout << tzero[ip][sw] << " :: "<<tzero_offset[counter] << endl; - counter++; - } - } - - - - - - //************************************************************************* - - TString ext (".root"); //define a string to find in a file - - std::size_t found = input_file.find(ext); //find the pos of the string - if (found!=std::string::npos) - //std::cout << " '.root' found at: " << found << '\n'; //found is the character position where ".root" is found - - input_file.erase (found,5); //erase .root - // std::cout << input_file << '\n'; - - TString file_name = "../../../ROOTfiles/"+input_file+"_dc_uncal.root"; - - //open file - TFile *f = new TFile(file_name, "READ"); - - //create new file - TFile *g = new TFile(Form("../root_files/"+run+"/shms_tzero_corr_histo.root", run_NUM), "RECREATE"); // create new file to store histo - - f->cd(); - - //Get the tree - TTree *tree = (TTree*)f->Get("T"); - TString SPECTROMETER="P"; - TString DETECTOR="dc"; - TString plane_names[NPLANES]={"1u1", "1u2", "1x1", "1x2", "1v1", "1v2", "2v2", "2v1", "2x2", "2x1", "2u2", "2u1"}; - - //Declare Variables to Loop Over - Int_t Ndata_time[NPLANES]; - Int_t Ndata_wirenum[NPLANES]; - Double_t pdc_wirenum[NPLANES][107]; - Double_t pdc_time[NPLANES][1000]; - - - //Declare Histogram array to store AVG drift times per plane - TH1F* h[NPLANES]; - - g->cd(); - - //Loop over each plane - for(Int_t ip=0; ip<NPLANES; ip++){ - TString base_name = SPECTROMETER+"."+DETECTOR+"."+plane_names[ip]; - TString ndata_time = "Ndata."+base_name+".time"; - TString ndata_wirenum = "Ndata."+base_name+".wirenum"; - TString drift_time = base_name+".time"; - TString wirenum_hit = base_name+".wirenum"; - - TString drift_time_histo = "pdc"+plane_names[ip]+"_time"; - TString title = "pdc"+plane_names[ip]+"_drifttime"; - - //Set Branch Address - tree->SetBranchAddress(drift_time, pdc_time[ip]); - tree->SetBranchAddress(ndata_time, &Ndata_time[ip]); // Ndata represents number of triggers vs number of hits that each trigger produced. - tree->SetBranchAddress(ndata_wirenum, &Ndata_wirenum[ip]); // Ndata represents number of triggers vs number of hits that each trigger produced. - tree->SetBranchAddress(wirenum_hit, pdc_wirenum[ip]); // A hit is refer to as when a trigger(traversing particle), ionizes the WC gas and ionized - //electrons reach the rearest sense wire, producing a detectable signal in the O'scope - - - //Create Histograms - h[ip] = new TH1F(drift_time_histo, title, NBINS, bin_min, bin_max); //set time to 400 ns/200 bins = 2ns/bin - h[ip]->GetXaxis()->SetTitle("Drift Time (ns)"); - h[ip]->GetYaxis()->SetTitle("Number of Entries / 1 ns"); - } - - - //declare some variables - int wirenum; - double shift; - - //Declare number of entries in the tree - Long64_t nentries = tree->GetEntries(); //number of triggers (particles that passed through all 4 hodo planes) - - - //Loop over all entries - for(Long64_t i=0; i<num_evts; i++) - { - tree->GetEntry(i); - //cout << "****event:**** " << i << endl; - //Loop over number of hits for each trigger in each DC plane - for(Int_t ip=0; ip<NPLANES; ip++){ - //cout << "Plane: " << plane_names[ip] << endl; - for(Int_t j=0, k=0; j<Ndata_time[ip] && k<Ndata_wirenum[ip]; j++, k++){ - - wirenum = int(pdc_wirenum[ip][k]); //get the wirenumber hit - - shift = tzero[ip][wirenum-1]; //get the tzero corresponding to wire hit - - // cout << plane_names[ip] << " :: " << wirenum << " :: " << shift << endl; - - h[ip]->Fill(pdc_time[ip][j] - shift); //shidt the plane drift time event-by-event - - - // cout << "time: " << pdc_time[ip][k] << endl; - - } - - } - - } - - //Write histograms to file - - g->Write(); - -} diff --git a/CALIBRATION/shms_dc_calib/scripts/get_tzero_per_wire_param.C b/CALIBRATION/shms_dc_calib/scripts/get_tzero_per_wire_param.C index 1633167400588da3f2e08d3d37a0aec7e2433ecb..7dd900b93babdd09847c99138fd48822541b8799 100644 --- a/CALIBRATION/shms_dc_calib/scripts/get_tzero_per_wire_param.C +++ b/CALIBRATION/shms_dc_calib/scripts/get_tzero_per_wire_param.C @@ -100,7 +100,7 @@ Double_t **t0 = new Double_t*[NPLANES]; //Create an output parameter file to store tzero values ofstream ofs; - TString wire_tzero = Form("../../../PARAM/SHMS/DC/pdc_tzero_per_wire_run%d_NEW.param", run_NUM); + TString wire_tzero = Form("../../../PARAM/SHMS/DC/CALIB/pdc_tzero_per_wire_%d.param", run_NUM); ofs.open (wire_tzero); diff --git a/DBASE/GEN/KPP_Spring_2017/calib_488.param b/DBASE/GEN/KPP_Spring_2017/calib_488.param index 204b61dcb7e8a4aa9e0224285656f032f1593e1d..f82f7ffb9f09754785a9ca066b96eb154962e1ee 100644 --- a/DBASE/GEN/KPP_Spring_2017/calib_488.param +++ b/DBASE/GEN/KPP_Spring_2017/calib_488.param @@ -1,5 +1,6 @@ ; SHMS calibration files for run 488 #include "PARAM/SHMS/NGCER/CALIB/KPP_Spring_2017/pngcer_calib_488.param" #include "PARAM/SHMS/DC/CALIB/KPP_Spring_2017/pdc_calib_488.param" +#include "PARAM/SHMS/DC/CALIB/KPP_Spring_2017/pdc_tzero_per_wire_488.param" #include "PARAM/SHMS/HGCER/CALIB/KPP_Spring_2017/phgcer_calib_488.param" #include "PARAM/SHMS/CAL/CALIB/KPP_Spring_2017/pcal_calib_488.param" diff --git a/DBASE/GEN/general.param b/DBASE/GEN/general.param index 706895bf4a67cdfea4779f275d7014f2b03d378b..32d527da77a9b97e59d0527c62a5ba9e24a38774 100644 --- a/DBASE/GEN/general.param +++ b/DBASE/GEN/general.param @@ -64,6 +64,7 @@ cminch=2.54 ; SHMS default calibration parameter files #include "PARAM/SHMS/NGCER/CALIB/pngcer_calib.param" #include "PARAM/SHMS/DC/CALIB/pdc_calib.param" +#include "PARAM/SHMS/DC/CALIB/pdc_tzero_per_wire.param" #include "PARAM/SHMS/HODO/CALIB/phodo_calib.param" #include "PARAM/SHMS/HGCER/CALIB/phgcer_calib.param" #include "PARAM/SHMS/AERO/CALIB/paero_calib.param" diff --git a/PARAM/HMS/DC/GEOM/hdc_geom_6gev.param b/PARAM/HMS/DC/GEOM/hdc_geom_6gev.param index e0acc58f3573ca8f8ee31c6d5d35a830275cf9fd..e94ed1bfb2c6ceeca0e9341aaf7b639962b6d2dc 100644 --- a/PARAM/HMS/DC/GEOM/hdc_geom_6gev.param +++ b/PARAM/HMS/DC/GEOM/hdc_geom_6gev.param @@ -130,4 +130,3 @@ hdc_gamma_angle = pdc_1_yaw*raddeg pdc_2_yaw*raddeg pdc_2_yaw*raddeg -; TZERO PER WIRE CORRECTIONS (when hms dc calibration script is ready :) diff --git a/PARAM/SHMS/DC/CALIB/KPP_Spring_2017/pdc_calib_488.param b/PARAM/SHMS/DC/CALIB/KPP_Spring_2017/pdc_calib_488.param index c9892bffad016162ae5b49a20541959386c74ce8..037c13754e8ab6543acecadc5fb87cd8a7ad8c3b 100644 --- a/PARAM/SHMS/DC/CALIB/KPP_Spring_2017/pdc_calib_488.param +++ b/PARAM/SHMS/DC/CALIB/KPP_Spring_2017/pdc_calib_488.param @@ -1,178 +1,175 @@ ; Lookup Table: RUN 488 ; number of bins in time to distance lookup table -pdriftbins = 138 - -; Number of 1st bin in table in ns -pdrift1stbin = 0 - -; Bin size in ns -pdriftbinsz = 2 - -pwc1u1fract=0.0012918,0.00393,0.00820,0.01502,0.02425,0.03662,0.05029,0.06599,0.08300 -0.10141,0.12121,0.14156,0.16225,0.18309,0.20438,0.22640,0.24785,0.26943,0.29094 -0.31248,0.33413,0.35621,0.37791,0.39938,0.42126,0.44260,0.46433,0.48604,0.50716 -0.52843,0.54937,0.57034,0.59094,0.61141,0.63218,0.65184,0.67234,0.69158,0.71067 -0.72970,0.74780,0.76594,0.78341,0.80072,0.81751,0.83289,0.84881,0.86334,0.87660 -0.88864,0.89945,0.90916,0.91760,0.92493,0.93150,0.93681,0.94170,0.94612,0.94989 -0.95348,0.95672,0.95983,0.96253,0.96502,0.96715,0.96934,0.97131,0.97314,0.97484 -0.97664,0.97817,0.97953,0.98087,0.98209,0.98319,0.98425,0.98510,0.98594,0.98672 -0.98745,0.98816,0.98877,0.98923,0.98972,0.99012,0.99053,0.99090,0.99118,0.99152 -0.99175,0.99202,0.99227,0.99254,0.99287,0.99313,0.99338,0.99362,0.99382,0.99400 -0.99416,0.99435,0.99458,0.99475,0.99495,0.99517,0.99541,0.99560,0.99581,0.99598 -0.99620,0.99641,0.99664,0.99689,0.99708,0.99726,0.99744,0.99758,0.99779,0.99793 -0.99813,0.99833,0.99855,0.99871,0.99890,0.99913,0.99933,0.99953,0.99974,0.99992 -0.99995,0.99996,0.99997,0.99997,0.99998,0.99998,0.99999,1.00000,1.00000 -pwc1u2fract=0.00084,0.00261,0.00608,0.01174,0.01994,0.03047,0.04371,0.05919,0.07632 -0.09403,0.11382,0.13511,0.15574,0.17712,0.19842,0.22085,0.24207,0.26366,0.28503 -0.30704,0.32860,0.35011,0.37177,0.39324,0.41472,0.43579,0.45711,0.47832,0.49939 -0.52040,0.54102,0.56149,0.58188,0.60190,0.62203,0.64158,0.66105,0.68067,0.69954 -0.71840,0.73671,0.75494,0.77257,0.78944,0.80656,0.82260,0.83811,0.85270,0.86690 -0.88010,0.89219,0.90275,0.91204,0.91989,0.92699,0.93297,0.93856,0.94325,0.94756 -0.95127,0.95465,0.95768,0.96047,0.96318,0.96575,0.96794,0.96997,0.97195,0.97370 -0.97553,0.97699,0.97841,0.97983,0.98107,0.98213,0.98313,0.98408,0.98497,0.98583 -0.98656,0.98720,0.98779,0.98842,0.98894,0.98946,0.98986,0.99028,0.99067,0.99108 -0.99136,0.99164,0.99196,0.99221,0.99252,0.99274,0.99298,0.99319,0.99341,0.99363 -0.99385,0.99404,0.99420,0.99439,0.99459,0.99484,0.99502,0.99528,0.99553,0.99577 -0.99602,0.99621,0.99645,0.99670,0.99693,0.99715,0.99736,0.99758,0.99772,0.99791 -0.99811,0.99834,0.99852,0.99870,0.99891,0.99913,0.99936,0.99953,0.99978,0.99992 -0.99997,0.99998,0.99998,0.99999,1.00000,1.00000,1.00000,1.00000,1.00000 -pwc1x1fract=0.00199,0.00555,0.01149,0.02037,0.03148,0.04552,0.06196,0.07957,0.09820 -0.11791,0.13888,0.15965,0.18097,0.20207,0.22416,0.24500,0.26649,0.28752,0.30895 -0.33010,0.35174,0.37289,0.39431,0.41543,0.43666,0.45765,0.47858,0.49959,0.52043 -0.54111,0.56187,0.58255,0.60258,0.62249,0.64258,0.66215,0.68081,0.69942,0.71745 -0.73556,0.75320,0.77041,0.78783,0.80499,0.82153,0.83660,0.85099,0.86446,0.87735 -0.88915,0.89926,0.90829,0.91603,0.92285,0.92891,0.93453,0.93921,0.94374,0.94759 -0.95092,0.95406,0.95697,0.95973,0.96233,0.96488,0.96711,0.96945,0.97132,0.97311 -0.97487,0.97652,0.97795,0.97951,0.98083,0.98180,0.98295,0.98405,0.98483,0.98569 -0.98647,0.98717,0.98776,0.98832,0.98883,0.98935,0.98988,0.99022,0.99063,0.99104 -0.99139,0.99168,0.99202,0.99228,0.99254,0.99280,0.99302,0.99332,0.99354,0.99374 -0.99394,0.99416,0.99439,0.99455,0.99479,0.99501,0.99523,0.99550,0.99573,0.99595 -0.99619,0.99642,0.99660,0.99674,0.99697,0.99712,0.99733,0.99754,0.99775,0.99800 -0.99818,0.99841,0.99865,0.99887,0.99907,0.99926,0.99940,0.99957,0.99974,0.99983 -0.99990,0.99996,0.99998,0.99999,0.99999,0.99999,0.99999,1.00000,1.00000 -pwc1x2fract=0.00104,0.00304,0.00682,0.01294,0.02230,0.03465,0.04998,0.06633,0.08490 -0.10426,0.12405,0.14473,0.16554,0.18667,0.20787,0.22900,0.24992,0.27112,0.29198 -0.31371,0.33521,0.35640,0.37773,0.39895,0.42012,0.44129,0.46246,0.48265,0.50281 -0.52309,0.54299,0.56371,0.58384,0.60377,0.62314,0.64259,0.66198,0.68112,0.69986 -0.71785,0.73552,0.75291,0.77037,0.78734,0.80354,0.81980,0.83515,0.84997,0.86352 -0.87618,0.88764,0.89807,0.90743,0.91548,0.92242,0.92847,0.93374,0.93838,0.94251 -0.94621,0.94948,0.95253,0.95545,0.95840,0.96102,0.96352,0.96584,0.96805,0.97004 -0.97189,0.97352,0.97526,0.97678,0.97830,0.97968,0.98094,0.98199,0.98319,0.98417 -0.98511,0.98601,0.98668,0.98737,0.98799,0.98855,0.98911,0.98956,0.99001,0.99042 -0.99081,0.99115,0.99145,0.99175,0.99206,0.99230,0.99261,0.99285,0.99313,0.99338 -0.99367,0.99392,0.99418,0.99443,0.99463,0.99488,0.99511,0.99533,0.99556,0.99577 -0.99602,0.99628,0.99647,0.99668,0.99689,0.99712,0.99728,0.99747,0.99774,0.99791 -0.99811,0.99827,0.99849,0.99868,0.99884,0.99902,0.99920,0.99942,0.99963,0.99978 -0.99989,0.99993,0.99996,0.99998,0.99998,0.99998,0.99999,0.99999,1.00000 -pwc1v1fract=0.00124,0.00390,0.00803,0.01445,0.02371,0.03499,0.04899,0.06461,0.08196 -0.10025,0.11984,0.14093,0.16231,0.18420,0.20581,0.22720,0.24977,0.27193,0.29343 -0.31529,0.33767,0.35914,0.38069,0.40209,0.42362,0.44576,0.46682,0.48812,0.50932 -0.53014,0.55069,0.57083,0.59087,0.61156,0.63185,0.65123,0.67066,0.68930,0.70817 -0.72701,0.74476,0.76252,0.77952,0.79657,0.81329,0.82890,0.84484,0.85921,0.87279 -0.88484,0.89560,0.90519,0.91376,0.92125,0.92775,0.93332,0.93841,0.94289,0.94685 -0.95067,0.95400,0.95696,0.95975,0.96253,0.96492,0.96731,0.96945,0.97143,0.97323 -0.97496,0.97646,0.97794,0.97928,0.98054,0.98181,0.98279,0.98391,0.98489,0.98575 -0.98644,0.98716,0.98778,0.98845,0.98898,0.98945,0.98995,0.99032,0.99062,0.99092 -0.99121,0.99150,0.99179,0.99206,0.99236,0.99261,0.99279,0.99305,0.99329,0.99355 -0.99380,0.99399,0.99422,0.99443,0.99468,0.99486,0.99508,0.99530,0.99550,0.99574 -0.99596,0.99618,0.99638,0.99659,0.99676,0.99695,0.99718,0.99740,0.99757,0.99782 -0.99805,0.99829,0.99856,0.99878,0.99899,0.99920,0.99941,0.99962,0.99977,0.99987 -0.99993,0.99996,0.99997,0.99998,0.99998,0.99998,0.99999,1.00000,1.00000 -pwc1v2fract=0.00120,0.00356,0.00791,0.01501,0.02503,0.03780,0.05265,0.06963,0.08795 -0.10693,0.12710,0.14864,0.16955,0.19124,0.21313,0.23459,0.25639,0.27811,0.29960 -0.32117,0.34208,0.36349,0.38478,0.40636,0.42740,0.44819,0.46989,0.49108,0.51235 -0.53328,0.55372,0.57372,0.59371,0.61376,0.63356,0.65358,0.67295,0.69235,0.71095 -0.72951,0.74771,0.76565,0.78345,0.80015,0.81689,0.83271,0.84776,0.86191,0.87554 -0.88784,0.89884,0.90833,0.91679,0.92419,0.93048,0.93578,0.94064,0.94494,0.94863 -0.95195,0.95525,0.95794,0.96073,0.96320,0.96563,0.96789,0.96985,0.97169,0.97331 -0.97497,0.97652,0.97787,0.97923,0.98036,0.98162,0.98279,0.98379,0.98473,0.98550 -0.98626,0.98690,0.98746,0.98808,0.98860,0.98896,0.98946,0.98987,0.99023,0.99063 -0.99096,0.99129,0.99161,0.99191,0.99218,0.99248,0.99277,0.99302,0.99323,0.99348 -0.99371,0.99390,0.99412,0.99438,0.99461,0.99479,0.99502,0.99521,0.99538,0.99559 -0.99579,0.99600,0.99623,0.99646,0.99666,0.99690,0.99711,0.99729,0.99753,0.99773 -0.99791,0.99813,0.99840,0.99864,0.99888,0.99909,0.99924,0.99948,0.99965,0.99977 -0.99988,0.99999,0.99999,0.99999,0.99999,1.00000,1.00000,1.00000,1.00000 -pwc2v2fract=0.00116,0.00336,0.00699,0.01286,0.02132,0.03216,0.04616,0.06217,0.07977 -0.09901,0.11949,0.14089,0.16228,0.18440,0.20633,0.22805,0.25032,0.27173,0.29323 -0.31432,0.33572,0.35738,0.37866,0.39962,0.42101,0.44223,0.46310,0.48401,0.50486 -0.52500,0.54535,0.56530,0.58499,0.60417,0.62324,0.64198,0.66008,0.67800,0.69562 -0.71280,0.72981,0.74627,0.76238,0.77790,0.79326,0.80792,0.82222,0.83574,0.84859 -0.86046,0.87176,0.88209,0.89143,0.89989,0.90732,0.91420,0.92004,0.92537,0.93038 -0.93495,0.93933,0.94327,0.94693,0.95011,0.95319,0.95601,0.95872,0.96117,0.96340 -0.96559,0.96757,0.96943,0.97114,0.97280,0.97425,0.97559,0.97695,0.97820,0.97941 -0.98054,0.98155,0.98253,0.98346,0.98414,0.98497,0.98584,0.98650,0.98707,0.98760 -0.98819,0.98877,0.98921,0.98970,0.99016,0.99056,0.99099,0.99142,0.99182,0.99217 -0.99252,0.99283,0.99317,0.99351,0.99380,0.99406,0.99434,0.99464,0.99489,0.99513 -0.99537,0.99563,0.99590,0.99618,0.99641,0.99665,0.99686,0.99711,0.99732,0.99755 -0.99782,0.99811,0.99838,0.99863,0.99890,0.99913,0.99939,0.99960,0.99976,0.99987 -0.99995,0.99997,0.99997,0.99998,0.99999,0.99999,0.99999,0.99999,1.00000 -pwc2v1fract=0.00106,0.00267,0.00550,0.01041,0.01777,0.02803,0.04043,0.05556,0.07182 -0.09063,0.11136,0.13254,0.15353,0.17503,0.19729,0.21878,0.24043,0.26245,0.28389 -0.30556,0.32716,0.34865,0.36989,0.39129,0.41230,0.43366,0.45482,0.47541,0.49591 -0.51616,0.53686,0.55710,0.57690,0.59662,0.61616,0.63480,0.65363,0.67195,0.69012 -0.70795,0.72464,0.74095,0.75724,0.77374,0.78943,0.80408,0.81842,0.83256,0.84582 -0.85808,0.86985,0.88080,0.89065,0.89953,0.90748,0.91436,0.92049,0.92606,0.93111 -0.93550,0.93951,0.94356,0.94726,0.95046,0.95363,0.95664,0.95937,0.96176,0.96411 -0.96636,0.96829,0.97015,0.97185,0.97350,0.97492,0.97638,0.97774,0.97892,0.98009 -0.98117,0.98227,0.98316,0.98410,0.98496,0.98573,0.98648,0.98718,0.98785,0.98835 -0.98890,0.98935,0.98984,0.99022,0.99070,0.99103,0.99135,0.99173,0.99203,0.99239 -0.99273,0.99307,0.99334,0.99363,0.99392,0.99419,0.99445,0.99471,0.99494,0.99521 -0.99547,0.99575,0.99601,0.99622,0.99648,0.99676,0.99698,0.99721,0.99747,0.99766 -0.99786,0.99812,0.99836,0.99858,0.99884,0.99909,0.99932,0.99957,0.99970,0.99984 -0.99995,0.99997,0.99997,0.99997,0.99997,0.99998,0.99999,1.00000,1.00000 -pwc2x2fract=0.00170,0.00463,0.00947,0.01681,0.02696,0.03988,0.05573,0.07310,0.09202 -0.11181,0.13244,0.15300,0.17465,0.19592,0.21768,0.23898,0.26022,0.28119,0.30216 -0.32338,0.34460,0.36564,0.38665,0.40722,0.42847,0.44916,0.46986,0.49049,0.51145 -0.53172,0.55170,0.57151,0.59052,0.60980,0.62823,0.64707,0.66570,0.68388,0.70135 -0.71885,0.73548,0.75232,0.76833,0.78451,0.80004,0.81480,0.82904,0.84284,0.85647 -0.86841,0.87929,0.88996,0.89896,0.90691,0.91380,0.91993,0.92528,0.93005,0.93439 -0.93824,0.94203,0.94541,0.94851,0.95147,0.95439,0.95701,0.95941,0.96197,0.96408 -0.96619,0.96829,0.97024,0.97201,0.97366,0.97537,0.97677,0.97820,0.97941,0.98069 -0.98173,0.98281,0.98385,0.98468,0.98548,0.98625,0.98699,0.98762,0.98819,0.98878 -0.98927,0.98977,0.99022,0.99062,0.99107,0.99145,0.99186,0.99218,0.99254,0.99281 -0.99311,0.99336,0.99365,0.99393,0.99420,0.99448,0.99471,0.99498,0.99517,0.99543 -0.99564,0.99584,0.99610,0.99635,0.99656,0.99679,0.99704,0.99732,0.99755,0.99779 -0.99801,0.99824,0.99846,0.99867,0.99888,0.99909,0.99933,0.99955,0.99976,0.99992 -0.99995,0.99998,0.99998,0.99999,0.99999,0.99999,0.99999,1.00000,1.00000 -pwc2x1fract=0.00184,0.00503,0.01008,0.01807,0.02845,0.04114,0.05585,0.07310,0.09138 -0.11098,0.13140,0.15219,0.17311,0.19406,0.21464,0.23548,0.25666,0.27740,0.29860 -0.31939,0.34055,0.36146,0.38242,0.40345,0.42427,0.44451,0.46480,0.48584,0.50670 -0.52676,0.54726,0.56755,0.58735,0.60709,0.62627,0.64521,0.66372,0.68223,0.70029 -0.71820,0.73547,0.75264,0.76901,0.78511,0.80101,0.81633,0.83086,0.84462,0.85762 -0.86981,0.88128,0.89147,0.90046,0.90807,0.91518,0.92136,0.92660,0.93143,0.93593 -0.94017,0.94390,0.94736,0.95058,0.95351,0.95631,0.95884,0.96135,0.96375,0.96597 -0.96794,0.96999,0.97189,0.97355,0.97517,0.97672,0.97804,0.97947,0.98057,0.98176 -0.98269,0.98357,0.98451,0.98524,0.98595,0.98666,0.98729,0.98795,0.98846,0.98907 -0.98956,0.99005,0.99053,0.99095,0.99133,0.99167,0.99199,0.99236,0.99270,0.99296 -0.99319,0.99348,0.99374,0.99405,0.99429,0.99457,0.99483,0.99503,0.99530,0.99556 -0.99577,0.99600,0.99626,0.99644,0.99666,0.99692,0.99717,0.99739,0.99759,0.99778 -0.99803,0.99828,0.99853,0.99880,0.99897,0.99924,0.99949,0.99966,0.99975,0.99986 -0.99995,0.99997,0.99997,0.99998,0.99998,0.99999,0.99999,0.99999,1.00000 -pwc2u2fract=0.00168,0.00467,0.00944,0.01694,0.02662,0.03880,0.05370,0.07025,0.08822 -0.10728,0.12710,0.14783,0.16849,0.18970,0.21092,0.23261,0.25397,0.27587,0.29758 -0.31901,0.34025,0.36146,0.38317,0.40436,0.42527,0.44598,0.46709,0.48780,0.50889 -0.52946,0.54962,0.57009,0.59034,0.61033,0.62965,0.64944,0.66862,0.68709,0.70499 -0.72295,0.74034,0.75733,0.77377,0.79026,0.80563,0.82104,0.83583,0.84956,0.86274 -0.87481,0.88577,0.89588,0.90421,0.91169,0.91822,0.92403,0.92915,0.93380,0.93801 -0.94188,0.94561,0.94912,0.95232,0.95522,0.95788,0.96051,0.96301,0.96531,0.96754 -0.96956,0.97132,0.97321,0.97478,0.97631,0.97764,0.97889,0.98017,0.98122,0.98228 -0.98333,0.98416,0.98495,0.98581,0.98648,0.98711,0.98777,0.98834,0.98892,0.98938 -0.98975,0.99014,0.99049,0.99081,0.99116,0.99142,0.99174,0.99205,0.99238,0.99269 -0.99299,0.99324,0.99349,0.99381,0.99411,0.99433,0.99459,0.99479,0.99502,0.99522 -0.99544,0.99566,0.99595,0.99618,0.99640,0.99662,0.99688,0.99713,0.99734,0.99756 -0.99782,0.99814,0.99833,0.99851,0.99877,0.99899,0.99923,0.99946,0.99964,0.99981 -0.99993,0.99997,0.99997,0.99998,0.99998,0.99998,0.99998,0.99999,1.00000 -pwc2u1fract=0.00138,0.00386,0.00848,0.01523,0.02445,0.03599,0.04963,0.06559,0.08327 -0.10229,0.12169,0.14196,0.16239,0.18355,0.20505,0.22665,0.24828,0.27077,0.29198 -0.31368,0.33562,0.35694,0.37839,0.39925,0.42009,0.44114,0.46206,0.48350,0.50421 -0.52463,0.54510,0.56520,0.58545,0.60526,0.62487,0.64472,0.66373,0.68222,0.70071 -0.71896,0.73686,0.75407,0.77085,0.78745,0.80368,0.81939,0.83448,0.84887,0.86212 -0.87423,0.88547,0.89526,0.90402,0.91192,0.91873,0.92510,0.93040,0.93531,0.93988 -0.94404,0.94779,0.95112,0.95426,0.95731,0.96017,0.96273,0.96526,0.96752,0.96950 -0.97161,0.97338,0.97522,0.97671,0.97806,0.97941,0.98055,0.98180,0.98277,0.98377 -0.98458,0.98534,0.98614,0.98682,0.98746,0.98802,0.98854,0.98903,0.98950,0.98991 -0.99042,0.99082,0.99117,0.99148,0.99184,0.99215,0.99246,0.99276,0.99308,0.99335 -0.99364,0.99389,0.99410,0.99436,0.99460,0.99484,0.99507,0.99525,0.99548,0.99573 -0.99589,0.99613,0.99639,0.99659,0.99680,0.99699,0.99724,0.99746,0.99771,0.99790 -0.99812,0.99834,0.99858,0.99880,0.99903,0.99926,0.99946,0.99963,0.99979,0.99986 -0.99995,0.99997,0.99997,0.99997,0.99998,0.99998,0.99999,0.99999,1.00000 +pdriftbins = 275 +; number of 1st bin in table in ns +pdrift1stbin=0 +; bin size in ns +pdriftbinsz=1 +pwc1u1fract=0.0011495,0.00243,0.00366,0.00539,0.00743,0.00975,0.01249,0.01605,0.02001,0.02453,0.02972,0.03511,0.04078,0.04675,0.05374,0.06102,0.06878,0.07687,0.08515 +0.09393,0.10314,0.11256,0.12215,0.13197,0.14184,0.15209,0.16243,0.17325,0.18372,0.19456,0.20521,0.21576,0.22655,0.23767,0.24822,0.25912,0.27040,0.28116,0.29233 +0.30330,0.31426,0.32525,0.33599,0.34687,0.35785,0.36891,0.38022,0.39096,0.40197,0.41297,0.42372,0.43471,0.44537,0.45641,0.46706,0.47768,0.48834,0.49927,0.51002 +0.52094,0.53162,0.54188,0.55271,0.56320,0.57384,0.58379,0.59435,0.60486,0.61506,0.62553,0.63582,0.64587,0.65548,0.66522,0.67533,0.68518,0.69477,0.70445,0.71410 +0.72364,0.73299,0.74193,0.75080,0.75949,0.76812,0.77676,0.78512,0.79353,0.80197,0.81042,0.81850,0.82631,0.83400,0.84162,0.84917,0.85645,0.86350,0.87029,0.87680 +0.88293,0.88865,0.89424,0.89980,0.90490,0.90965,0.91441,0.91866,0.92255,0.92590,0.92947,0.93273,0.93577,0.93842,0.94105,0.94333,0.94559,0.94773,0.94988,0.95189 +0.95370,0.95533,0.95691,0.95840,0.95993,0.96128,0.96258,0.96374,0.96505,0.96615,0.96734,0.96832,0.96950,0.97040,0.97134,0.97214,0.97306,0.97392,0.97475,0.97562 +0.97630,0.97705,0.97780,0.97853,0.97916,0.97981,0.98040,0.98103,0.98154,0.98210,0.98272,0.98323,0.98374,0.98421,0.98470,0.98519,0.98564,0.98606,0.98646,0.98683 +0.98715,0.98749,0.98781,0.98810,0.98840,0.98869,0.98896,0.98921,0.98946,0.98967,0.98994,0.99014,0.99031,0.99051,0.99068,0.99082,0.99099,0.99116,0.99136,0.99150 +0.99163,0.99184,0.99198,0.99211,0.99222,0.99230,0.99245,0.99262,0.99279,0.99290,0.99303,0.99317,0.99331,0.99340,0.99352,0.99361,0.99373,0.99382,0.99390,0.99398 +0.99409,0.99417,0.99429,0.99439,0.99447,0.99455,0.99468,0.99480,0.99491,0.99497,0.99506,0.99520,0.99530,0.99541,0.99550,0.99562,0.99572,0.99583,0.99594,0.99603 +0.99615,0.99625,0.99638,0.99650,0.99659,0.99669,0.99676,0.99687,0.99697,0.99710,0.99721,0.99737,0.99747,0.99756,0.99766,0.99776,0.99781,0.99791,0.99800,0.99808 +0.99815,0.99824,0.99837,0.99844,0.99854,0.99862,0.99871,0.99883,0.99893,0.99905,0.99911,0.99920,0.99926,0.99934,0.99940,0.99946,0.99951,0.99962,0.99969,0.99975 +0.99979,0.99983,0.99987,0.99989,0.99991,0.99993,0.99996,0.99997,0.99998,0.99998,0.99998,0.99999,0.99999,0.99999,1.00000,1.00000 +pwc1u2fract=0.00135,0.00257,0.00417,0.00588,0.00782,0.01023,0.01301,0.01658,0.02034,0.02486,0.02967,0.03505,0.04080,0.04737,0.05406,0.06141,0.06910,0.07711,0.08556 +0.09444,0.10369,0.11351,0.12309,0.13328,0.14365,0.15429,0.16460,0.17538,0.18622,0.19716,0.20808,0.21936,0.23026,0.24108,0.25223,0.26330,0.27404,0.28498,0.29598 +0.30734,0.31848,0.32955,0.34039,0.35140,0.36226,0.37284,0.38416,0.39539,0.40603,0.41663,0.42723,0.43832,0.44879,0.45920,0.46992,0.48049,0.49108,0.50160,0.51229 +0.52275,0.53305,0.54350,0.55381,0.56385,0.57419,0.58418,0.59443,0.60429,0.61436,0.62408,0.63407,0.64365,0.65340,0.66319,0.67276,0.68242,0.69184,0.70126,0.71042 +0.71938,0.72855,0.73786,0.74686,0.75577,0.76456,0.77351,0.78218,0.79041,0.79855,0.80691,0.81506,0.82298,0.83061,0.83774,0.84543,0.85242,0.85973,0.86620,0.87232 +0.87850,0.88448,0.89045,0.89625,0.90149,0.90641,0.91118,0.91552,0.91946,0.92342,0.92687,0.93024,0.93358,0.93651,0.93931,0.94172,0.94409,0.94637,0.94846,0.95042 +0.95248,0.95418,0.95581,0.95735,0.95909,0.96045,0.96179,0.96295,0.96431,0.96552,0.96667,0.96784,0.96888,0.96991,0.97076,0.97166,0.97253,0.97332,0.97412,0.97489 +0.97567,0.97639,0.97701,0.97767,0.97837,0.97910,0.97975,0.98036,0.98103,0.98160,0.98211,0.98263,0.98315,0.98362,0.98411,0.98449,0.98494,0.98544,0.98585,0.98620 +0.98653,0.98688,0.98716,0.98751,0.98781,0.98812,0.98839,0.98862,0.98885,0.98912,0.98936,0.98959,0.98982,0.99002,0.99022,0.99043,0.99064,0.99080,0.99094,0.99111 +0.99128,0.99144,0.99161,0.99175,0.99190,0.99207,0.99224,0.99241,0.99252,0.99261,0.99273,0.99285,0.99297,0.99308,0.99319,0.99328,0.99344,0.99356,0.99367,0.99374 +0.99382,0.99396,0.99405,0.99415,0.99424,0.99435,0.99447,0.99455,0.99461,0.99472,0.99482,0.99493,0.99505,0.99516,0.99526,0.99533,0.99545,0.99560,0.99573,0.99584 +0.99591,0.99603,0.99616,0.99626,0.99640,0.99650,0.99663,0.99677,0.99691,0.99703,0.99710,0.99721,0.99730,0.99740,0.99752,0.99758,0.99768,0.99777,0.99787,0.99797 +0.99809,0.99817,0.99826,0.99834,0.99839,0.99851,0.99864,0.99873,0.99884,0.99891,0.99903,0.99912,0.99921,0.99929,0.99939,0.99948,0.99953,0.99962,0.99969,0.99977 +0.99982,0.99988,0.99990,0.99993,0.99995,0.99996,0.99996,0.99997,0.99997,0.99998,0.99999,0.99999,1.00000,1.00000,1.00000,1.00000 +pwc1x1fract=0.00111,0.00229,0.00364,0.00534,0.00739,0.00990,0.01320,0.01695,0.02106,0.02575,0.03089,0.03672,0.04270,0.04964,0.05674,0.06443,0.07242,0.08111,0.09000 +0.09936,0.10918,0.11894,0.12883,0.13917,0.14968,0.16016,0.17122,0.18151,0.19208,0.20313,0.21429,0.22524,0.23627,0.24719,0.25821,0.26924,0.28004,0.29079,0.30171 +0.31238,0.32303,0.33408,0.34483,0.35585,0.36661,0.37748,0.38804,0.39881,0.40944,0.42020,0.43094,0.44189,0.45228,0.46292,0.47366,0.48450,0.49485,0.50548,0.51575 +0.52606,0.53662,0.54701,0.55722,0.56739,0.57748,0.58777,0.59813,0.60804,0.61831,0.62822,0.63784,0.64737,0.65703,0.66647,0.67604,0.68520,0.69452,0.70386,0.71287 +0.72198,0.73125,0.73984,0.74863,0.75716,0.76560,0.77425,0.78259,0.79077,0.79929,0.80753,0.81535,0.82336,0.83134,0.83909,0.84642,0.85357,0.86012,0.86653,0.87314 +0.87913,0.88470,0.89008,0.89517,0.90039,0.90508,0.90948,0.91363,0.91767,0.92112,0.92461,0.92795,0.93083,0.93366,0.93630,0.93873,0.94135,0.94369,0.94563,0.94757 +0.94933,0.95105,0.95271,0.95441,0.95587,0.95726,0.95865,0.95995,0.96120,0.96245,0.96371,0.96492,0.96601,0.96707,0.96816,0.96911,0.97010,0.97097,0.97203,0.97295 +0.97375,0.97463,0.97545,0.97611,0.97690,0.97763,0.97835,0.97905,0.97977,0.98037,0.98099,0.98155,0.98211,0.98267,0.98320,0.98370,0.98412,0.98458,0.98502,0.98540 +0.98578,0.98619,0.98657,0.98692,0.98723,0.98756,0.98785,0.98815,0.98842,0.98873,0.98897,0.98915,0.98942,0.98964,0.98985,0.99008,0.99030,0.99048,0.99065,0.99082 +0.99104,0.99120,0.99136,0.99153,0.99165,0.99180,0.99191,0.99204,0.99221,0.99235,0.99249,0.99265,0.99277,0.99287,0.99299,0.99311,0.99322,0.99332,0.99347,0.99362 +0.99374,0.99385,0.99395,0.99407,0.99419,0.99429,0.99436,0.99448,0.99460,0.99472,0.99484,0.99494,0.99507,0.99518,0.99530,0.99540,0.99554,0.99567,0.99577,0.99585 +0.99596,0.99607,0.99616,0.99623,0.99633,0.99642,0.99651,0.99662,0.99672,0.99679,0.99686,0.99702,0.99712,0.99722,0.99728,0.99742,0.99753,0.99761,0.99774,0.99785 +0.99793,0.99805,0.99815,0.99828,0.99840,0.99850,0.99858,0.99868,0.99878,0.99893,0.99901,0.99909,0.99917,0.99925,0.99931,0.99937,0.99946,0.99957,0.99962,0.99969 +0.99974,0.99979,0.99981,0.99984,0.99987,0.99990,0.99992,0.99994,0.99996,0.99997,0.99997,0.99998,0.99998,0.99999,1.00000,1.00000 +pwc1x2fract=0.00109,0.00232,0.00378,0.00558,0.00777,0.01056,0.01381,0.01788,0.02227,0.02741,0.03302,0.03935,0.04573,0.05274,0.06074,0.06884,0.07767,0.08666,0.09589 +0.10544,0.11522,0.12522,0.13528,0.14545,0.15591,0.16676,0.17736,0.18800,0.19852,0.20900,0.21992,0.23080,0.24178,0.25252,0.26315,0.27373,0.28468,0.29566,0.30644 +0.31731,0.32815,0.33904,0.34992,0.36067,0.37137,0.38205,0.39290,0.40348,0.41405,0.42453,0.43512,0.44584,0.45607,0.46670,0.47717,0.48769,0.49812,0.50821,0.51841 +0.52857,0.53883,0.54912,0.55959,0.56973,0.57991,0.58992,0.59987,0.60954,0.61916,0.62871,0.63842,0.64826,0.65752,0.66693,0.67628,0.68521,0.69432,0.70363,0.71290 +0.72184,0.73072,0.73937,0.74775,0.75667,0.76534,0.77373,0.78221,0.79063,0.79879,0.80672,0.81458,0.82228,0.82966,0.83721,0.84453,0.85112,0.85813,0.86474,0.87104 +0.87696,0.88273,0.88859,0.89376,0.89886,0.90377,0.90809,0.91259,0.91667,0.92022,0.92389,0.92714,0.93024,0.93313,0.93587,0.93848,0.94090,0.94295,0.94504,0.94689 +0.94857,0.95012,0.95159,0.95313,0.95463,0.95607,0.95732,0.95872,0.95994,0.96114,0.96234,0.96347,0.96465,0.96577,0.96696,0.96799,0.96890,0.96985,0.97075,0.97162 +0.97249,0.97334,0.97417,0.97504,0.97579,0.97654,0.97731,0.97798,0.97861,0.97925,0.97994,0.98061,0.98122,0.98175,0.98229,0.98279,0.98328,0.98378,0.98422,0.98463 +0.98514,0.98559,0.98608,0.98650,0.98689,0.98728,0.98755,0.98789,0.98811,0.98842,0.98870,0.98893,0.98917,0.98941,0.98965,0.98985,0.99005,0.99023,0.99048,0.99066 +0.99088,0.99108,0.99127,0.99141,0.99157,0.99173,0.99188,0.99205,0.99220,0.99232,0.99245,0.99260,0.99271,0.99284,0.99297,0.99309,0.99324,0.99335,0.99347,0.99360 +0.99374,0.99386,0.99399,0.99413,0.99424,0.99434,0.99442,0.99451,0.99464,0.99475,0.99489,0.99500,0.99509,0.99524,0.99533,0.99545,0.99562,0.99573,0.99586,0.99594 +0.99603,0.99617,0.99630,0.99640,0.99650,0.99659,0.99674,0.99686,0.99690,0.99702,0.99711,0.99720,0.99729,0.99741,0.99751,0.99758,0.99770,0.99779,0.99788,0.99797 +0.99805,0.99812,0.99821,0.99833,0.99846,0.99854,0.99862,0.99874,0.99882,0.99892,0.99901,0.99911,0.99918,0.99929,0.99935,0.99942,0.99948,0.99955,0.99963,0.99973 +0.99977,0.99984,0.99987,0.99989,0.99992,0.99993,0.99995,0.99996,0.99998,0.99998,0.99999,1.00000,1.00000,1.00000,1.00000,1.00000 +pwc1v1fract=0.00102,0.00222,0.00354,0.00521,0.00721,0.00963,0.01257,0.01620,0.02021,0.02497,0.02989,0.03540,0.04122,0.04771,0.05442,0.06172,0.06926,0.07741,0.08595 +0.09498,0.10438,0.11392,0.12349,0.13377,0.14422,0.15501,0.16564,0.17648,0.18728,0.19804,0.20931,0.22017,0.23112,0.24210,0.25314,0.26456,0.27552,0.28655,0.29772 +0.30856,0.31991,0.33115,0.34208,0.35303,0.36408,0.37494,0.38606,0.39708,0.40797,0.41878,0.42946,0.44033,0.45111,0.46201,0.47288,0.48349,0.49430,0.50466,0.51483 +0.52505,0.53585,0.54633,0.55670,0.56686,0.57694,0.58703,0.59717,0.60736,0.61708,0.62744,0.63721,0.64739,0.65664,0.66657,0.67619,0.68551,0.69488,0.70414,0.71341 +0.72276,0.73184,0.74090,0.74996,0.75860,0.76712,0.77566,0.78394,0.79236,0.80091,0.80904,0.81677,0.82451,0.83207,0.83928,0.84633,0.85345,0.86044,0.86717,0.87345 +0.87937,0.88520,0.89103,0.89640,0.90134,0.90614,0.91049,0.91454,0.91856,0.92234,0.92576,0.92903,0.93221,0.93498,0.93747,0.94003,0.94245,0.94467,0.94686,0.94889 +0.95082,0.95266,0.95429,0.95587,0.95732,0.95875,0.96006,0.96125,0.96259,0.96373,0.96489,0.96616,0.96716,0.96823,0.96928,0.97024,0.97123,0.97214,0.97299,0.97384 +0.97456,0.97536,0.97609,0.97677,0.97752,0.97816,0.97882,0.97943,0.98004,0.98063,0.98126,0.98191,0.98246,0.98300,0.98351,0.98398,0.98446,0.98494,0.98534,0.98574 +0.98608,0.98645,0.98681,0.98720,0.98751,0.98781,0.98813,0.98844,0.98870,0.98894,0.98921,0.98941,0.98963,0.98981,0.99002,0.99021,0.99044,0.99065,0.99077,0.99092 +0.99103,0.99121,0.99140,0.99153,0.99166,0.99180,0.99194,0.99205,0.99219,0.99231,0.99246,0.99258,0.99268,0.99280,0.99291,0.99302,0.99313,0.99331,0.99341,0.99355 +0.99367,0.99377,0.99390,0.99401,0.99409,0.99421,0.99435,0.99448,0.99457,0.99468,0.99478,0.99487,0.99496,0.99512,0.99519,0.99526,0.99537,0.99551,0.99562,0.99573 +0.99585,0.99595,0.99607,0.99618,0.99627,0.99636,0.99646,0.99651,0.99663,0.99676,0.99685,0.99697,0.99704,0.99716,0.99730,0.99739,0.99745,0.99759,0.99772,0.99781 +0.99799,0.99809,0.99819,0.99829,0.99840,0.99849,0.99863,0.99874,0.99883,0.99892,0.99899,0.99911,0.99922,0.99932,0.99941,0.99947,0.99954,0.99960,0.99968,0.99973 +0.99980,0.99982,0.99986,0.99989,0.99990,0.99992,0.99995,0.99996,0.99998,0.99999,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000 +pwc1v2fract=0.00104,0.00216,0.00353,0.00519,0.00721,0.00957,0.01257,0.01632,0.02040,0.02507,0.03017,0.03585,0.04185,0.04844,0.05567,0.06312,0.07116,0.07955,0.08812 +0.09699,0.10653,0.11605,0.12623,0.13608,0.14623,0.15688,0.16758,0.17847,0.18991,0.20037,0.21117,0.22214,0.23287,0.24406,0.25503,0.26607,0.27701,0.28793,0.29904 +0.30952,0.32053,0.33162,0.34266,0.35395,0.36482,0.37570,0.38622,0.39701,0.40767,0.41862,0.42919,0.43999,0.45054,0.46094,0.47174,0.48234,0.49254,0.50277,0.51337 +0.52387,0.53426,0.54453,0.55481,0.56500,0.57522,0.58545,0.59523,0.60521,0.61511,0.62517,0.63476,0.64466,0.65424,0.66369,0.67361,0.68348,0.69298,0.70245,0.71176 +0.72108,0.73023,0.73942,0.74831,0.75729,0.76595,0.77476,0.78349,0.79183,0.80035,0.80852,0.81668,0.82471,0.83234,0.83974,0.84692,0.85381,0.86095,0.86774,0.87435 +0.88053,0.88662,0.89205,0.89745,0.90250,0.90747,0.91195,0.91588,0.91988,0.92385,0.92726,0.93033,0.93349,0.93639,0.93905,0.94136,0.94369,0.94590,0.94786,0.94975 +0.95169,0.95333,0.95488,0.95638,0.95782,0.95912,0.96049,0.96173,0.96296,0.96404,0.96518,0.96638,0.96739,0.96836,0.96927,0.97016,0.97108,0.97201,0.97285,0.97371 +0.97451,0.97526,0.97603,0.97672,0.97741,0.97800,0.97862,0.97935,0.98004,0.98062,0.98117,0.98171,0.98229,0.98275,0.98320,0.98375,0.98420,0.98466,0.98507,0.98543 +0.98585,0.98620,0.98651,0.98682,0.98716,0.98748,0.98777,0.98804,0.98837,0.98862,0.98886,0.98907,0.98927,0.98951,0.98974,0.98991,0.99009,0.99027,0.99045,0.99060 +0.99084,0.99104,0.99123,0.99140,0.99156,0.99170,0.99186,0.99195,0.99211,0.99224,0.99239,0.99251,0.99266,0.99280,0.99290,0.99301,0.99320,0.99332,0.99340,0.99358 +0.99372,0.99384,0.99396,0.99407,0.99416,0.99425,0.99431,0.99440,0.99449,0.99458,0.99472,0.99485,0.99496,0.99506,0.99515,0.99525,0.99535,0.99543,0.99550,0.99563 +0.99577,0.99591,0.99598,0.99607,0.99617,0.99629,0.99637,0.99650,0.99662,0.99673,0.99682,0.99692,0.99703,0.99711,0.99724,0.99733,0.99744,0.99753,0.99769,0.99785 +0.99795,0.99803,0.99812,0.99818,0.99829,0.99839,0.99846,0.99854,0.99866,0.99876,0.99885,0.99897,0.99903,0.99912,0.99922,0.99931,0.99941,0.99949,0.99956,0.99965 +0.99970,0.99974,0.99981,0.99985,0.99989,0.99992,0.99994,0.99995,0.99996,0.99998,0.99999,0.99999,0.99999,1.00000,1.00000,1.00000 +pwc2v2fract=0.00109,0.00224,0.00372,0.00522,0.00718,0.00949,0.01230,0.01586,0.01952,0.02354,0.02831,0.03381,0.03958,0.04599,0.05261,0.06014,0.06789,0.07617,0.08486 +0.09433,0.10403,0.11409,0.12365,0.13417,0.14476,0.15531,0.16643,0.17723,0.18815,0.19907,0.21005,0.22104,0.23207,0.24285,0.25399,0.26480,0.27597,0.28700,0.29795 +0.30868,0.31962,0.33050,0.34158,0.35235,0.36281,0.37376,0.38454,0.39523,0.40607,0.41654,0.42744,0.43801,0.44883,0.45948,0.47004,0.48066,0.49077,0.50091,0.51140 +0.52166,0.53180,0.54187,0.55183,0.56192,0.57156,0.58116,0.59099,0.60080,0.60994,0.61945,0.62882,0.63811,0.64761,0.65678,0.66565,0.67467,0.68368,0.69236,0.70114 +0.70948,0.71783,0.72629,0.73447,0.74276,0.75079,0.75887,0.76663,0.77472,0.78263,0.79018,0.79753,0.80479,0.81182,0.81880,0.82572,0.83241,0.83903,0.84530,0.85125 +0.85700,0.86252,0.86821,0.87351,0.87864,0.88375,0.88846,0.89294,0.89730,0.90148,0.90509,0.90875,0.91233,0.91566,0.91895,0.92185,0.92473,0.92751,0.93007,0.93238 +0.93473,0.93694,0.93907,0.94122,0.94330,0.94519,0.94698,0.94873,0.95034,0.95188,0.95342,0.95489,0.95623,0.95766,0.95889,0.96015,0.96139,0.96242,0.96348,0.96467 +0.96578,0.96670,0.96762,0.96847,0.96933,0.97018,0.97099,0.97190,0.97279,0.97352,0.97426,0.97499,0.97566,0.97636,0.97692,0.97751,0.97804,0.97865,0.97931,0.97997 +0.98052,0.98106,0.98154,0.98206,0.98256,0.98306,0.98350,0.98392,0.98432,0.98465,0.98501,0.98537,0.98576,0.98615,0.98644,0.98672,0.98703,0.98733,0.98762,0.98792 +0.98818,0.98846,0.98878,0.98906,0.98929,0.98949,0.98964,0.98987,0.99005,0.99027,0.99052,0.99076,0.99101,0.99122,0.99140,0.99159,0.99181,0.99199,0.99218,0.99233 +0.99253,0.99269,0.99284,0.99300,0.99313,0.99325,0.99343,0.99354,0.99368,0.99382,0.99397,0.99412,0.99425,0.99437,0.99449,0.99467,0.99482,0.99497,0.99509,0.99521 +0.99533,0.99547,0.99563,0.99574,0.99585,0.99603,0.99615,0.99627,0.99640,0.99650,0.99661,0.99669,0.99684,0.99695,0.99709,0.99724,0.99738,0.99747,0.99760,0.99774 +0.99782,0.99797,0.99807,0.99821,0.99832,0.99844,0.99857,0.99868,0.99879,0.99890,0.99900,0.99911,0.99923,0.99934,0.99942,0.99950,0.99960,0.99964,0.99971,0.99978 +0.99981,0.99984,0.99987,0.99991,0.99993,0.99994,0.99995,0.99996,0.99997,0.99998,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000 +pwc2v1fract=0.00113,0.00252,0.00395,0.00559,0.00760,0.01001,0.01289,0.01637,0.02044,0.02489,0.02979,0.03519,0.04105,0.04776,0.05450,0.06188,0.06951,0.07765,0.08650 +0.09544,0.10509,0.11483,0.12515,0.13550,0.14591,0.15636,0.16715,0.17819,0.18908,0.19994,0.21079,0.22212,0.23340,0.24479,0.25579,0.26711,0.27849,0.28935,0.29993 +0.31083,0.32220,0.33338,0.34476,0.35563,0.36644,0.37735,0.38778,0.39853,0.40918,0.41978,0.43039,0.44107,0.45183,0.46222,0.47259,0.48281,0.49347,0.50384,0.51407 +0.52424,0.53438,0.54477,0.55496,0.56470,0.57467,0.58483,0.59443,0.60423,0.61415,0.62357,0.63302,0.64205,0.65105,0.66052,0.66949,0.67818,0.68745,0.69638,0.70543 +0.71391,0.72216,0.73035,0.73858,0.74674,0.75503,0.76291,0.77072,0.77861,0.78656,0.79405,0.80147,0.80875,0.81567,0.82266,0.82953,0.83614,0.84257,0.84893,0.85509 +0.86085,0.86664,0.87208,0.87749,0.88255,0.88721,0.89209,0.89679,0.90106,0.90527,0.90911,0.91260,0.91582,0.91894,0.92194,0.92488,0.92762,0.93025,0.93275,0.93506 +0.93741,0.93965,0.94163,0.94373,0.94552,0.94729,0.94907,0.95070,0.95210,0.95368,0.95506,0.95654,0.95791,0.95912,0.96038,0.96156,0.96272,0.96399,0.96515,0.96620 +0.96717,0.96809,0.96903,0.97004,0.97087,0.97175,0.97262,0.97335,0.97406,0.97488,0.97564,0.97637,0.97702,0.97762,0.97822,0.97884,0.97939,0.97998,0.98047,0.98101 +0.98157,0.98204,0.98254,0.98296,0.98344,0.98389,0.98430,0.98474,0.98518,0.98557,0.98597,0.98628,0.98664,0.98692,0.98726,0.98757,0.98790,0.98820,0.98848,0.98872 +0.98899,0.98921,0.98942,0.98966,0.98993,0.99014,0.99036,0.99056,0.99076,0.99093,0.99113,0.99128,0.99144,0.99158,0.99169,0.99185,0.99201,0.99216,0.99240,0.99255 +0.99275,0.99290,0.99301,0.99315,0.99332,0.99345,0.99361,0.99377,0.99390,0.99408,0.99420,0.99436,0.99445,0.99460,0.99473,0.99488,0.99497,0.99510,0.99525,0.99540 +0.99552,0.99567,0.99579,0.99590,0.99603,0.99612,0.99624,0.99635,0.99645,0.99655,0.99666,0.99677,0.99690,0.99701,0.99713,0.99723,0.99735,0.99747,0.99759,0.99769 +0.99786,0.99798,0.99809,0.99819,0.99829,0.99840,0.99857,0.99869,0.99880,0.99894,0.99905,0.99913,0.99921,0.99930,0.99941,0.99950,0.99959,0.99967,0.99974,0.99978 +0.99983,0.99988,0.99990,0.99991,0.99992,0.99994,0.99996,0.99996,0.99998,0.99998,0.99998,0.99999,1.00000,1.00000,1.00000,1.00000 +pwc2x2fract=0.00118,0.00252,0.00399,0.00571,0.00792,0.01034,0.01349,0.01725,0.02146,0.02619,0.03152,0.03763,0.04425,0.05116,0.05840,0.06629,0.07474,0.08351,0.09265 +0.10239,0.11238,0.12243,0.13260,0.14300,0.15325,0.16376,0.17467,0.18538,0.19630,0.20729,0.21823,0.22922,0.24009,0.25104,0.26203,0.27288,0.28386,0.29464,0.30537 +0.31580,0.32616,0.33708,0.34787,0.35878,0.36935,0.37969,0.39023,0.40086,0.41177,0.42230,0.43277,0.44322,0.45379,0.46439,0.47485,0.48532,0.49549,0.50570,0.51602 +0.52646,0.53620,0.54607,0.55600,0.56572,0.57586,0.58543,0.59516,0.60474,0.61427,0.62378,0.63327,0.64274,0.65175,0.66074,0.66972,0.67843,0.68744,0.69655,0.70513 +0.71389,0.72216,0.73070,0.73914,0.74757,0.75585,0.76388,0.77183,0.77950,0.78737,0.79521,0.80263,0.80981,0.81700,0.82405,0.83111,0.83791,0.84446,0.85110,0.85741 +0.86344,0.86929,0.87531,0.88078,0.88603,0.89090,0.89566,0.89996,0.90437,0.90841,0.91194,0.91550,0.91866,0.92166,0.92455,0.92722,0.92969,0.93200,0.93406,0.93619 +0.93815,0.94005,0.94190,0.94359,0.94547,0.94711,0.94862,0.95000,0.95144,0.95278,0.95417,0.95546,0.95672,0.95786,0.95914,0.96027,0.96133,0.96259,0.96366,0.96470 +0.96571,0.96674,0.96772,0.96868,0.96964,0.97054,0.97145,0.97232,0.97319,0.97399,0.97467,0.97540,0.97616,0.97689,0.97761,0.97822,0.97894,0.97962,0.98013,0.98077 +0.98131,0.98186,0.98239,0.98292,0.98344,0.98390,0.98429,0.98471,0.98512,0.98555,0.98588,0.98624,0.98663,0.98695,0.98723,0.98755,0.98793,0.98818,0.98846,0.98878 +0.98899,0.98925,0.98950,0.98974,0.98996,0.99022,0.99046,0.99063,0.99083,0.99104,0.99122,0.99140,0.99161,0.99176,0.99193,0.99210,0.99226,0.99244,0.99259,0.99275 +0.99290,0.99303,0.99321,0.99333,0.99348,0.99362,0.99375,0.99388,0.99400,0.99410,0.99424,0.99436,0.99450,0.99464,0.99475,0.99484,0.99497,0.99507,0.99524,0.99540 +0.99553,0.99567,0.99578,0.99585,0.99599,0.99612,0.99624,0.99635,0.99644,0.99655,0.99666,0.99678,0.99688,0.99702,0.99715,0.99727,0.99738,0.99749,0.99761,0.99775 +0.99784,0.99794,0.99804,0.99818,0.99831,0.99843,0.99853,0.99864,0.99872,0.99882,0.99892,0.99900,0.99911,0.99918,0.99927,0.99941,0.99949,0.99957,0.99962,0.99971 +0.99976,0.99981,0.99984,0.99991,0.99993,0.99994,0.99997,0.99998,0.99998,0.99999,0.99999,1.00000,1.00000,1.00000,1.00000,1.00000 +pwc2x1fract=0.00108,0.00227,0.00356,0.00532,0.00752,0.00994,0.01286,0.01659,0.02081,0.02538,0.03048,0.03620,0.04250,0.04919,0.05642,0.06419,0.07233,0.08098,0.09000 +0.09961,0.10909,0.11877,0.12884,0.13897,0.14942,0.15967,0.17030,0.18060,0.19139,0.20228,0.21314,0.22352,0.23397,0.24493,0.25559,0.26598,0.27663,0.28758,0.29814 +0.30903,0.32010,0.33090,0.34093,0.35145,0.36221,0.37273,0.38306,0.39375,0.40451,0.41477,0.42552,0.43603,0.44645,0.45683,0.46705,0.47717,0.48769,0.49812,0.50857 +0.51849,0.52898,0.53902,0.54910,0.55936,0.56946,0.57907,0.58881,0.59858,0.60840,0.61824,0.62760,0.63700,0.64647,0.65579,0.66515,0.67452,0.68357,0.69294,0.70169 +0.71035,0.71905,0.72786,0.73641,0.74510,0.75359,0.76179,0.76978,0.77764,0.78534,0.79333,0.80100,0.80871,0.81608,0.82351,0.83056,0.83755,0.84441,0.85098,0.85724 +0.86387,0.86980,0.87554,0.88093,0.88617,0.89099,0.89606,0.90053,0.90490,0.90895,0.91259,0.91599,0.91931,0.92230,0.92518,0.92787,0.93045,0.93297,0.93526,0.93747 +0.93946,0.94148,0.94334,0.94512,0.94692,0.94860,0.95033,0.95194,0.95337,0.95465,0.95603,0.95722,0.95848,0.95964,0.96088,0.96210,0.96320,0.96427,0.96530,0.96622 +0.96723,0.96822,0.96920,0.97010,0.97096,0.97186,0.97273,0.97353,0.97437,0.97517,0.97593,0.97660,0.97735,0.97797,0.97863,0.97922,0.97983,0.98049,0.98108,0.98163 +0.98216,0.98265,0.98312,0.98361,0.98401,0.98441,0.98480,0.98520,0.98555,0.98595,0.98634,0.98665,0.98699,0.98733,0.98773,0.98800,0.98828,0.98852,0.98877,0.98904 +0.98929,0.98955,0.98979,0.99004,0.99028,0.99050,0.99073,0.99093,0.99117,0.99139,0.99156,0.99172,0.99188,0.99202,0.99218,0.99235,0.99250,0.99267,0.99283,0.99295 +0.99310,0.99321,0.99336,0.99348,0.99363,0.99378,0.99392,0.99407,0.99424,0.99440,0.99455,0.99467,0.99477,0.99489,0.99502,0.99515,0.99524,0.99537,0.99548,0.99562 +0.99575,0.99585,0.99596,0.99604,0.99618,0.99627,0.99638,0.99649,0.99661,0.99669,0.99682,0.99693,0.99704,0.99715,0.99726,0.99734,0.99746,0.99759,0.99772,0.99781 +0.99790,0.99803,0.99816,0.99834,0.99844,0.99857,0.99866,0.99874,0.99881,0.99895,0.99904,0.99912,0.99921,0.99932,0.99942,0.99948,0.99955,0.99965,0.99971,0.99976 +0.99982,0.99983,0.99986,0.99990,0.99992,0.99995,0.99997,0.99999,0.99999,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000 +pwc2u2fract=0.00126,0.00244,0.00386,0.00555,0.00768,0.01014,0.01294,0.01637,0.02041,0.02484,0.02991,0.03537,0.04170,0.04818,0.05489,0.06199,0.06986,0.07778,0.08642 +0.09535,0.10466,0.11410,0.12388,0.13375,0.14404,0.15456,0.16511,0.17545,0.18630,0.19721,0.20818,0.21876,0.22943,0.24038,0.25143,0.26231,0.27312,0.28409,0.29525 +0.30609,0.31695,0.32774,0.33850,0.34958,0.36048,0.37134,0.38209,0.39279,0.40322,0.41353,0.42439,0.43519,0.44569,0.45660,0.46741,0.47772,0.48795,0.49834,0.50876 +0.51911,0.52944,0.53974,0.55018,0.56005,0.57007,0.58027,0.59034,0.60014,0.61001,0.61974,0.62973,0.63901,0.64864,0.65804,0.66767,0.67673,0.68597,0.69511,0.70409 +0.71308,0.72202,0.73055,0.73929,0.74772,0.75612,0.76435,0.77265,0.78063,0.78862,0.79643,0.80391,0.81148,0.81888,0.82598,0.83314,0.84017,0.84687,0.85349,0.85997 +0.86636,0.87211,0.87771,0.88312,0.88811,0.89286,0.89751,0.90212,0.90634,0.91014,0.91396,0.91744,0.92077,0.92376,0.92670,0.92936,0.93192,0.93421,0.93660,0.93867 +0.94075,0.94263,0.94439,0.94632,0.94815,0.94987,0.95151,0.95304,0.95437,0.95568,0.95721,0.95860,0.95979,0.96104,0.96220,0.96337,0.96448,0.96559,0.96662,0.96761 +0.96863,0.96959,0.97058,0.97154,0.97239,0.97318,0.97401,0.97488,0.97557,0.97628,0.97701,0.97766,0.97825,0.97887,0.97955,0.98013,0.98072,0.98117,0.98168,0.98222 +0.98267,0.98314,0.98361,0.98406,0.98452,0.98496,0.98532,0.98575,0.98607,0.98636,0.98677,0.98707,0.98741,0.98774,0.98803,0.98835,0.98859,0.98883,0.98907,0.98934 +0.98959,0.98975,0.98995,0.99014,0.99032,0.99052,0.99068,0.99082,0.99099,0.99116,0.99132,0.99146,0.99162,0.99176,0.99188,0.99202,0.99216,0.99231,0.99246,0.99262 +0.99274,0.99286,0.99299,0.99313,0.99329,0.99341,0.99356,0.99372,0.99384,0.99393,0.99409,0.99427,0.99436,0.99450,0.99462,0.99475,0.99487,0.99500,0.99512,0.99524 +0.99534,0.99551,0.99561,0.99570,0.99579,0.99588,0.99601,0.99616,0.99628,0.99638,0.99650,0.99664,0.99676,0.99689,0.99700,0.99712,0.99725,0.99735,0.99746,0.99762 +0.99772,0.99784,0.99796,0.99808,0.99819,0.99831,0.99840,0.99851,0.99861,0.99872,0.99881,0.99895,0.99906,0.99916,0.99924,0.99935,0.99944,0.99952,0.99957,0.99966 +0.99973,0.99979,0.99983,0.99986,0.99991,0.99993,0.99995,0.99996,0.99998,0.99998,0.99999,1.00000,1.00000,1.00000,1.00000,1.00000 +pwc2u1fract=0.00106,0.00239,0.00373,0.00544,0.00738,0.00954,0.01230,0.01551,0.01934,0.02347,0.02813,0.03335,0.03906,0.04498,0.05132,0.05827,0.06588,0.07394,0.08235 +0.09080,0.09976,0.10927,0.11884,0.12834,0.13806,0.14824,0.15850,0.16913,0.17993,0.19062,0.20142,0.21197,0.22275,0.23360,0.24452,0.25539,0.26671,0.27745,0.28853 +0.29972,0.31068,0.32179,0.33235,0.34329,0.35412,0.36485,0.37574,0.38665,0.39749,0.40797,0.41844,0.42916,0.43944,0.45021,0.46090,0.47144,0.48163,0.49214,0.50248 +0.51306,0.52322,0.53324,0.54338,0.55333,0.56337,0.57327,0.58325,0.59348,0.60350,0.61342,0.62334,0.63284,0.64245,0.65206,0.66150,0.67109,0.68040,0.68956,0.69858 +0.70776,0.71664,0.72529,0.73418,0.74304,0.75147,0.76006,0.76847,0.77655,0.78480,0.79284,0.80082,0.80862,0.81628,0.82369,0.83068,0.83797,0.84498,0.85180,0.85825 +0.86462,0.87059,0.87620,0.88177,0.88706,0.89200,0.89693,0.90127,0.90561,0.90954,0.91330,0.91701,0.92044,0.92360,0.92667,0.92951,0.93214,0.93472,0.93697,0.93927 +0.94151,0.94354,0.94541,0.94724,0.94920,0.95094,0.95260,0.95408,0.95569,0.95723,0.95866,0.96000,0.96138,0.96265,0.96398,0.96527,0.96633,0.96734,0.96854,0.96943 +0.97043,0.97138,0.97222,0.97312,0.97389,0.97479,0.97550,0.97625,0.97704,0.97777,0.97840,0.97911,0.97976,0.98038,0.98099,0.98157,0.98207,0.98257,0.98306,0.98352 +0.98404,0.98445,0.98488,0.98525,0.98568,0.98600,0.98636,0.98667,0.98696,0.98724,0.98761,0.98786,0.98811,0.98835,0.98863,0.98888,0.98916,0.98943,0.98967,0.98985 +0.99011,0.99032,0.99054,0.99072,0.99094,0.99112,0.99129,0.99150,0.99166,0.99180,0.99196,0.99213,0.99227,0.99243,0.99258,0.99272,0.99288,0.99300,0.99313,0.99330 +0.99342,0.99358,0.99371,0.99382,0.99397,0.99409,0.99420,0.99431,0.99446,0.99459,0.99472,0.99483,0.99490,0.99499,0.99508,0.99525,0.99535,0.99543,0.99555,0.99564 +0.99575,0.99586,0.99597,0.99610,0.99618,0.99626,0.99636,0.99649,0.99661,0.99670,0.99685,0.99699,0.99706,0.99718,0.99729,0.99742,0.99749,0.99758,0.99768,0.99779 +0.99788,0.99797,0.99808,0.99819,0.99831,0.99845,0.99857,0.99867,0.99880,0.99894,0.99905,0.99914,0.99922,0.99931,0.99939,0.99947,0.99956,0.99963,0.99971,0.99976 +0.99981,0.99984,0.99989,0.99992,0.99993,0.99995,0.99996,0.99998,0.99999,0.99999,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000 diff --git a/PARAM/SHMS/DC/CALIB/KPP_Spring_2017/pdc_tzero_per_wire_488.param b/PARAM/SHMS/DC/CALIB/KPP_Spring_2017/pdc_tzero_per_wire_488.param new file mode 100644 index 0000000000000000000000000000000000000000..9424471eefebed7586fdbd0cd393e0fc95ee3697 --- /dev/null +++ b/PARAM/SHMS/DC/CALIB/KPP_Spring_2017/pdc_tzero_per_wire_488.param @@ -0,0 +1,88 @@ +ptzero1u1= +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, 0.000000, 1.795920, 5.815350, -3.864150, -5.927540, 10.719800, -4.813430, 0.404404, 0.755655, 0.000000, 1.565370, 4.950330, -0.345324, -5.542140, 2.861590 +1.534980, -15.681300, 1.979280, 4.854760, 6.446210, 1.620820, 0.177650, 0.680271, 1.611940, 5.395360, 2.935390, 1.323300, 5.197490, 4.067040, 0.772863, 1.704960 +2.751230, 6.300950, 0.858680, 4.487330, 3.288680, 2.332650, 4.070710, 1.355750, 3.087380, 2.726840, 3.151510, 2.523060, 1.251760, 4.044590, 1.242660, 1.512210 +3.171260, 3.743360, 4.626910, 5.624360, 6.038540, 7.064390, 3.798730, 4.800300, 5.590810, 8.440760, 7.197160, 3.502090, 5.330660, 9.031360, 6.141750, 5.212600 +10.965900, 2.301490, 8.010930, 7.743700, 3.590260, 6.029060, 0.816870, -5.213110, 9.752780, 8.307690, 9.460380, 8.567180, 0.000000, 5.231090, 11.354300, 7.508670 +6.368630, 9.673470, 8.767530, 13.277100, -16.695200, 7.085900, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000 +ptzero1u2= +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, 10.916700, -4.672130, 6.038300, 4.164760, 8.883000, 6.370700, 9.557240, -0.648253, 4.362870, -10.987600, 3.678900, 7.059010, -1.258060, 5.024760, 5.735800 +4.186680, -0.536697, 0.236342, 2.694360, 4.960730, -3.547860, 2.949800, 2.134110, 4.653480, 5.121060, 5.471440, 2.201530, 3.393430, 7.740120, 4.183370, 4.699110 +6.130200, 2.142410, 2.887710, 4.458210, 1.461180, 0.891988, 3.531650, 3.226970, 3.356920, 1.415850, 3.002660, 1.083940, -2.429840, 2.518900, 4.608790, 2.840310 +5.780790, 1.942860, 4.077160, 4.112970, 2.227040, 2.115580, 3.183260, 4.864210, 3.400000, 0.632734, 1.835060, 4.341910, 5.565070, 4.406240, 7.122810, 8.552850 +5.535050, -0.324697, 3.381260, 7.990940, 3.640930, 23.795600, 6.688140, 8.332550, 7.315810, 10.925900, 0.000000, 1.500810, -0.318182, 4.046240, 9.760080, 12.506000 +11.769200, 6.388520, 4.244090, 1.200000, 2.818180, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000 +ptzero1x1= +-1.862060,-5.060360,0.890689,-2.123470,0.266049,-4.394440,-3.181590,-3.011560,-7.340200,-1.131910,-5.684140,-3.339910, -3.603510, -0.171227, 2.670460, -3.477110 +0.696540, 1.928030, -0.766734, 0.935069, -4.320620, -2.370120, -4.209710, 1.379730, -0.911690, -2.316800, -5.893290, -3.126300, -7.080260, 1.282180, 3.116260, 4.467810 +2.244710, 5.122060, 6.816590, 3.063140, 1.574480, 0.466924, 2.411390, 0.143337, 0.770216, -1.611270, -2.379990, -0.308662, 1.031620, 0.181693, 3.392230, 1.548930 +3.553960, 7.047760, 4.506460, 8.317220, 2.723510, 4.768800, 5.221840, 3.216500, 0.182255, 2.475740, -1.318110, -1.395740, 3.349560, 6.663600, 7.749050, 4.382410 +9.047220, 10.447800, 11.142700, 10.615600, 10.124500, 12.012400, 10.867500, 14.273300, 12.222600, 12.880300, 10.129000, 8.611050, 8.293280, 7.103690, -2.305470 +ptzero1x2= +-0.388060,10.210500,5.598810,6.123810,7.651880,2.782440,-8.042550,2.420080,0.388554,7.726910,3.171390,7.548380, 6.562330, 4.760400, 4.175150, 5.784480 +4.376930, 3.342330, 4.798840, -1.665290, 1.520700, 0.544997, 3.660080, 1.212270, 2.039610, -0.397125, 2.737430, 4.216970, 3.810030, 6.409610, 4.638020, -1.012270 +0.753259, 2.973150, 1.977040, 0.638232, -1.982390, -2.790790, -3.577970, -1.763710, -4.006910, -2.834720, -0.205417, -1.636630, 0.708044, 0.485227, -4.125460, -0.077492 +3.829980, -0.006536, 5.149800, 0.875090, 3.189890, 2.302570, 0.715657, 0.682134, -3.278750, -2.829270, -2.334770, -4.668020, 0.100722, 0.163470, -0.583767, 5.641670 +3.717870, 6.252000, 5.077890, 4.494680, 8.895850, 8.389630, 5.788920, 4.952720, 6.317280, 4.454020, 2.793250, 1.912540, 0.923993, 0.485133, 0.006984 +ptzero1v1= +0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,16.000000,0.000000,0.000000, -3.248620, 10.544300, 5.723470, -0.167832 +5.791570, 0.000000, 0.000000, -16.601400, 7.211620, 6.408960, 3.399260, 1.468270, 5.394960, 0.526718, 5.528730, -1.830630, 4.259580, -1.791670, 7.464050, 2.892630 +1.419100, 3.926050, 4.166810, 5.864460, 0.595406, 1.371100, 5.573380, 3.296000, 7.125270, 6.036240, 5.291410, 6.153040, 5.315270, 8.171190, 7.264820, 8.961300 +9.878830, 8.970030, 9.517580, 7.025000, 8.266900, 9.315160, 7.651030, 8.559870, 11.303900, 7.863830, 11.701000, 9.156380, 9.357870, 7.235850, 10.026400, -2.578380 +-0.357369, -2.929150, -1.901050, -2.151240, -2.265530, -7.198300, -2.665640, -0.212098, -3.156100, 0.106613, 1.210510, 1.478900, -5.898540, 4.406570, -4.721420, 4.283780 +-0.070747, 0.353721, 3.512260, 4.885820, 4.807120, 5.441330, 3.471640, 3.662200, 4.331610, -7.154520, 2.599710, 1.593700, 3.987850, 5.787910, 19.733300, 14.638900 +0.000000, 3.464290, -19.447200, 5.882980, -17.459500, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000 +ptzero1v2= +0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,24.857100,0.000000,0.000000, 25.060400, 4.133520, 8.519300, 5.222520 +6.879550, 8.261270, 7.433530, 3.431880, 7.536800, -7.283120, 1.879330, 2.621920, 2.068820, 8.948500, 4.047470, 5.543960, 6.173630, 8.318030, 7.155910, 3.704420 +9.330260, 7.558700, 7.531610, 0.084241, 5.609340, 5.630570, 7.967230, 5.188840, 10.209800, 9.106830, 6.858900, 8.087110, 1.440150, 1.414830, 2.399680, -0.808321 +1.099900, 1.120240, 0.300221, -2.169230, 0.451327, -2.473590, -2.036820, 0.887898, 0.369413, -1.016780, -0.898206, -1.164890, -0.681405, -0.286733, -0.384938, -3.059400 +-5.289670, 0.488029, -0.363647, -0.928181, -1.304460, -2.630200, 0.118533, 0.318898, -2.213060, 0.853546, -2.025040, 2.121240, 1.674960, 1.830370, 2.004430, 4.969520 +2.716170, 4.110770, 7.479290, 5.380610, 5.901590, 3.801040, 2.820150, 5.148150, 7.095710, 7.548680, 4.854270, -21.165700, 0.000000, 7.825210, 6.105180, 11.006400 +0.380623, 13.549600, -6.625900, 7.572230, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000 +ptzero2v2= +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, -11.555600, 4.608350, 0.000000 +-10.000000, 4.082760, 0.000000, 0.000000, -2.180610, -4.226240, 4.414830, -1.745280, 8.621950, 5.624680, -2.607140, -0.681955, 6.067340, 13.311900, 9.795680, 11.718100 +8.676360, 5.623300, 9.703400, 9.516520, 11.716700, 10.488800, 8.604710, 10.642600, 5.977520, 11.677700, 8.582270, 7.817510, 12.096200, 5.755470, 10.820500, 11.099900 +9.506290, 9.779980, 7.397800, 8.484320, 7.980850, 8.076540, 7.184750, 6.930630, 8.418590, 7.962490, 7.990790, 6.963160, -0.431749, 3.757360, 4.615140, 2.893580 +3.444480, -3.420450, -3.933450, -2.651720, -0.127254, -1.043080, -1.475670, -0.080271, 0.068876, 2.165830, 4.720000, 0.991301, 1.594030, 5.763560, 8.133160, 10.019800 +6.025830, -1.821310, 7.595050, 3.912210, 3.349220, 4.221970, 5.452880, 3.657390, 3.391830, 1.571480, 2.540660, 3.808400, 7.113780, 2.210830, 0.901170, 5.282630 +5.211540, 3.723870, 1.217340, 6.076170, 3.841830, 7.036590, 12.992400, 0.000000, 3.265860, 9.692310, 0.000000 +ptzero2v1= +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.092310, 5.335310, 0.000000 +-7.125980, -10.940700, 3.124150, -5.600000, -5.434780, 2.326510, -18.818200, -1.521200, -2.955410, 2.316300, -0.641013, -7.180860, -2.633960, 4.182940, 3.540350, 6.843010 +7.705500, 2.497010, 4.755030, 8.680260, 9.939430, 8.246580, 6.258310, 6.410950, 8.326710, 12.216700, 8.361320, 7.109610, 4.429420, 9.940720, 10.031400, 9.626190 +16.148300, 8.402900, 8.574210, 9.887430, 8.434920, 8.565290, 8.827220, 7.485750, 8.360080, 10.124800, 8.100660, 9.172740, 9.754290, 7.803890, 7.765130, 2.989080 +4.471970, 4.843990, 2.961210, 2.757320, 0.446784, 2.244700, 2.224380, 5.063170, -2.196180, 0.000000, 5.043370, 2.638480, 5.035890, -0.083561, 6.014590, -0.178800 +-2.936590, 0.924423, 5.063060, 1.800420, 0.567349, -1.334190, 0.000000, 2.203800, -0.084168, 3.704220, 10.890600, 3.668250, 2.581830, 2.658140, 0.882729, -0.658854 +4.596010, 2.404060, 1.996760, 11.972500, 5.221670, 5.335070, 9.104860, 7.442970, -14.638800, -2.467740, 0.000000 +ptzero2x2= +-3.061820,1.242440,-0.920429,0.949141,-3.371390,1.538490,1.537160,2.680810,-0.375996,3.624970,4.023850,3.101700, 3.621450, 6.546410, -3.104770, -2.297460 +-4.208040, -0.680161, -0.759493, -3.256850, -3.475440, -1.010530, -1.495540, -5.828560, 0.005329, -1.934660, -0.802933, 2.697560, 2.595770, 2.262840, 3.847550, 6.508350 +7.420170, 7.293470, 4.544480, 6.006310, 1.299380, -1.178930, 0.399639, -2.844170, -0.636414, 2.689540, 0.000000, -0.005122, 3.258850, 3.209370, 2.692630, 6.696770 +8.405310, 4.999500, 6.351480, 5.621890, 4.321230, 7.012510, 5.699240, 2.569630, 6.354140, 4.117900, -2.852930, 0.848214, 3.756270, 5.198940, 1.263700, 7.994620 +7.224540, 6.740530, 8.552430, 7.867670, 8.216770, 9.636760, 8.177560, 5.522230, 9.502410, 13.189900, 12.033100, 12.005700, 12.146600, 7.825520, 12.772000 +ptzero2x1= +-0.994652,0.323887,2.662040,-2.946220,0.944695,4.667010,2.647140,2.461640,4.957990,3.113680,4.142770,1.308310, 5.622420, 5.469640, 7.911730, 4.733910 +2.399680, 2.495830, 1.696250, -0.137557, -0.839917, 0.820595, -0.677687, 1.409470, 6.096500, 1.789550, 3.080510, 1.909060, 5.210970, 8.603190, 7.767040, 4.964880 +1.534830, 2.095010, 0.831891, 2.758970, 0.161976, -2.097360, -3.893230, -2.599900, 0.471164, -3.455090, -2.770680, -0.905358, -2.358650, -1.462630, -0.698122, -0.124938 +-0.176906, -0.640411, 0.314966, 3.389660, 0.198043, 1.051300, 0.663665, 0.172697, -5.500470, 1.035880, -1.542160, -6.413390, -2.720510, -1.530320, -3.358420, -1.622080 +5.754260, 7.172000, 7.128620, 7.212770, 9.011560, 12.249800, 7.627180, 8.218560, 10.479100, 14.471400, 13.159500, 14.039200, 12.556300, 14.254100, 10.879100 +ptzero2u2= +0.000000,0.000000,0.000000,2.927810,1.513160,0.000000,0.082767,11.832700,0.289694,3.096540,10.310600,4.395130, -1.204390, 6.047720, 3.493290, 6.893580 +2.216220, 7.989400, 6.820680, 6.566040, 4.801940, 4.916770, -1.832630, 3.958420, 3.803680, 6.329900, 7.061990, 4.710200, 4.066710, 4.554470, 3.114060, 11.153400 +4.604940, 2.830040, 4.262040, 1.597520, 5.888230, 2.311250, 2.476890, 5.373290, 4.946830, 5.122540, 4.026250, 8.359670, -0.690787, 2.955530, 1.806160, -0.799365 +2.603230, -0.796656, 0.954418, -0.788097, -5.090030, -1.691130, 0.121203, -0.729663, -0.713128, -1.170500, 0.482169, -1.926040, 2.590880, 2.291740, 2.106530, 0.515922 +1.563030, -0.969506, 1.715190, 0.730038, 2.797450, 0.343180, 2.983660, 1.569480, 3.351930, 4.273950, 2.693030, 0.502254, 5.028720, 2.408280, 4.831420, 2.509090 +4.811720, 4.595160, 4.270700, 2.027170, 1.296140, 4.402360, 3.805610, 5.697640, 4.209350, 4.205540, 6.840550, 8.688300, 10.346200, 16.544000, 16.701800, 15.950600 +19.425700, -2.883330, 5.303570, 23.328300, -11.923100, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000 +ptzero2u1= +0.000000,0.000000,0.000000,0.000000,1.981130,6.887300,9.154860,-16.603200,-16.215000,-1.705760,8.661480,8.515390, 11.496200, 11.843500, 0.198014, -4.724240 +2.248020, -1.088080, 1.330110, -1.029570, 2.240130, 5.972840, -0.982127, 0.718305, -0.225920, -2.431140, -1.316000, 0.185943, 0.340701, 4.595960, 1.248220, 3.011960 +5.469650, 4.392520, -2.113370, 5.228590, 6.901420, 1.807750, 2.789800, 2.019910, 4.260250, 4.067850, 5.996700, 4.556910, 9.895290, 7.413430, 10.164000, 7.858780 +6.970080, 7.429900, 7.051170, 7.430280, 8.005980, 7.404120, 4.407060, 7.474910, 8.819040, 6.623950, 10.455900, 10.604900, 11.910200, 10.554000, 8.699290, -1.134720 +1.416000, 0.929777, 1.344440, -1.600020, -0.365316, 4.031480, 2.137260, 2.109900, 3.030740, 4.618980, 3.938440, 5.779070, 6.430440, 7.514210, 5.483380, 1.555490 +5.777830, 0.909257, 0.741250, 4.815550, 4.298590, 3.555880, 4.731660, 6.200930, -0.525888, 0.160183, -28.817600, 6.296690, 6.827100, 8.975990, 10.564200, 8.914800 +19.375800, 17.450700, -14.710500, 23.005800, 12.757800, 23.291100, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000 diff --git a/PARAM/SHMS/DC/CALIB/pdc_calib.param b/PARAM/SHMS/DC/CALIB/pdc_calib.param index d412a66ed792de55b8df388c00c582e92eb90a72..037c13754e8ab6543acecadc5fb87cd8a7ad8c3b 100644 --- a/PARAM/SHMS/DC/CALIB/pdc_calib.param +++ b/PARAM/SHMS/DC/CALIB/pdc_calib.param @@ -1,190 +1,175 @@ -; Lookup Table: RUN 484 +; Lookup Table: RUN 488 ; number of bins in time to distance lookup table pdriftbins = 275 - -; Number of 1st bin in table in ns -pdrift1stbin = 0 - -; Bin size in ns -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 \ No newline at end of file +; number of 1st bin in table in ns +pdrift1stbin=0 +; bin size in ns +pdriftbinsz=1 +pwc1u1fract=0.0011495,0.00243,0.00366,0.00539,0.00743,0.00975,0.01249,0.01605,0.02001,0.02453,0.02972,0.03511,0.04078,0.04675,0.05374,0.06102,0.06878,0.07687,0.08515 +0.09393,0.10314,0.11256,0.12215,0.13197,0.14184,0.15209,0.16243,0.17325,0.18372,0.19456,0.20521,0.21576,0.22655,0.23767,0.24822,0.25912,0.27040,0.28116,0.29233 +0.30330,0.31426,0.32525,0.33599,0.34687,0.35785,0.36891,0.38022,0.39096,0.40197,0.41297,0.42372,0.43471,0.44537,0.45641,0.46706,0.47768,0.48834,0.49927,0.51002 +0.52094,0.53162,0.54188,0.55271,0.56320,0.57384,0.58379,0.59435,0.60486,0.61506,0.62553,0.63582,0.64587,0.65548,0.66522,0.67533,0.68518,0.69477,0.70445,0.71410 +0.72364,0.73299,0.74193,0.75080,0.75949,0.76812,0.77676,0.78512,0.79353,0.80197,0.81042,0.81850,0.82631,0.83400,0.84162,0.84917,0.85645,0.86350,0.87029,0.87680 +0.88293,0.88865,0.89424,0.89980,0.90490,0.90965,0.91441,0.91866,0.92255,0.92590,0.92947,0.93273,0.93577,0.93842,0.94105,0.94333,0.94559,0.94773,0.94988,0.95189 +0.95370,0.95533,0.95691,0.95840,0.95993,0.96128,0.96258,0.96374,0.96505,0.96615,0.96734,0.96832,0.96950,0.97040,0.97134,0.97214,0.97306,0.97392,0.97475,0.97562 +0.97630,0.97705,0.97780,0.97853,0.97916,0.97981,0.98040,0.98103,0.98154,0.98210,0.98272,0.98323,0.98374,0.98421,0.98470,0.98519,0.98564,0.98606,0.98646,0.98683 +0.98715,0.98749,0.98781,0.98810,0.98840,0.98869,0.98896,0.98921,0.98946,0.98967,0.98994,0.99014,0.99031,0.99051,0.99068,0.99082,0.99099,0.99116,0.99136,0.99150 +0.99163,0.99184,0.99198,0.99211,0.99222,0.99230,0.99245,0.99262,0.99279,0.99290,0.99303,0.99317,0.99331,0.99340,0.99352,0.99361,0.99373,0.99382,0.99390,0.99398 +0.99409,0.99417,0.99429,0.99439,0.99447,0.99455,0.99468,0.99480,0.99491,0.99497,0.99506,0.99520,0.99530,0.99541,0.99550,0.99562,0.99572,0.99583,0.99594,0.99603 +0.99615,0.99625,0.99638,0.99650,0.99659,0.99669,0.99676,0.99687,0.99697,0.99710,0.99721,0.99737,0.99747,0.99756,0.99766,0.99776,0.99781,0.99791,0.99800,0.99808 +0.99815,0.99824,0.99837,0.99844,0.99854,0.99862,0.99871,0.99883,0.99893,0.99905,0.99911,0.99920,0.99926,0.99934,0.99940,0.99946,0.99951,0.99962,0.99969,0.99975 +0.99979,0.99983,0.99987,0.99989,0.99991,0.99993,0.99996,0.99997,0.99998,0.99998,0.99998,0.99999,0.99999,0.99999,1.00000,1.00000 +pwc1u2fract=0.00135,0.00257,0.00417,0.00588,0.00782,0.01023,0.01301,0.01658,0.02034,0.02486,0.02967,0.03505,0.04080,0.04737,0.05406,0.06141,0.06910,0.07711,0.08556 +0.09444,0.10369,0.11351,0.12309,0.13328,0.14365,0.15429,0.16460,0.17538,0.18622,0.19716,0.20808,0.21936,0.23026,0.24108,0.25223,0.26330,0.27404,0.28498,0.29598 +0.30734,0.31848,0.32955,0.34039,0.35140,0.36226,0.37284,0.38416,0.39539,0.40603,0.41663,0.42723,0.43832,0.44879,0.45920,0.46992,0.48049,0.49108,0.50160,0.51229 +0.52275,0.53305,0.54350,0.55381,0.56385,0.57419,0.58418,0.59443,0.60429,0.61436,0.62408,0.63407,0.64365,0.65340,0.66319,0.67276,0.68242,0.69184,0.70126,0.71042 +0.71938,0.72855,0.73786,0.74686,0.75577,0.76456,0.77351,0.78218,0.79041,0.79855,0.80691,0.81506,0.82298,0.83061,0.83774,0.84543,0.85242,0.85973,0.86620,0.87232 +0.87850,0.88448,0.89045,0.89625,0.90149,0.90641,0.91118,0.91552,0.91946,0.92342,0.92687,0.93024,0.93358,0.93651,0.93931,0.94172,0.94409,0.94637,0.94846,0.95042 +0.95248,0.95418,0.95581,0.95735,0.95909,0.96045,0.96179,0.96295,0.96431,0.96552,0.96667,0.96784,0.96888,0.96991,0.97076,0.97166,0.97253,0.97332,0.97412,0.97489 +0.97567,0.97639,0.97701,0.97767,0.97837,0.97910,0.97975,0.98036,0.98103,0.98160,0.98211,0.98263,0.98315,0.98362,0.98411,0.98449,0.98494,0.98544,0.98585,0.98620 +0.98653,0.98688,0.98716,0.98751,0.98781,0.98812,0.98839,0.98862,0.98885,0.98912,0.98936,0.98959,0.98982,0.99002,0.99022,0.99043,0.99064,0.99080,0.99094,0.99111 +0.99128,0.99144,0.99161,0.99175,0.99190,0.99207,0.99224,0.99241,0.99252,0.99261,0.99273,0.99285,0.99297,0.99308,0.99319,0.99328,0.99344,0.99356,0.99367,0.99374 +0.99382,0.99396,0.99405,0.99415,0.99424,0.99435,0.99447,0.99455,0.99461,0.99472,0.99482,0.99493,0.99505,0.99516,0.99526,0.99533,0.99545,0.99560,0.99573,0.99584 +0.99591,0.99603,0.99616,0.99626,0.99640,0.99650,0.99663,0.99677,0.99691,0.99703,0.99710,0.99721,0.99730,0.99740,0.99752,0.99758,0.99768,0.99777,0.99787,0.99797 +0.99809,0.99817,0.99826,0.99834,0.99839,0.99851,0.99864,0.99873,0.99884,0.99891,0.99903,0.99912,0.99921,0.99929,0.99939,0.99948,0.99953,0.99962,0.99969,0.99977 +0.99982,0.99988,0.99990,0.99993,0.99995,0.99996,0.99996,0.99997,0.99997,0.99998,0.99999,0.99999,1.00000,1.00000,1.00000,1.00000 +pwc1x1fract=0.00111,0.00229,0.00364,0.00534,0.00739,0.00990,0.01320,0.01695,0.02106,0.02575,0.03089,0.03672,0.04270,0.04964,0.05674,0.06443,0.07242,0.08111,0.09000 +0.09936,0.10918,0.11894,0.12883,0.13917,0.14968,0.16016,0.17122,0.18151,0.19208,0.20313,0.21429,0.22524,0.23627,0.24719,0.25821,0.26924,0.28004,0.29079,0.30171 +0.31238,0.32303,0.33408,0.34483,0.35585,0.36661,0.37748,0.38804,0.39881,0.40944,0.42020,0.43094,0.44189,0.45228,0.46292,0.47366,0.48450,0.49485,0.50548,0.51575 +0.52606,0.53662,0.54701,0.55722,0.56739,0.57748,0.58777,0.59813,0.60804,0.61831,0.62822,0.63784,0.64737,0.65703,0.66647,0.67604,0.68520,0.69452,0.70386,0.71287 +0.72198,0.73125,0.73984,0.74863,0.75716,0.76560,0.77425,0.78259,0.79077,0.79929,0.80753,0.81535,0.82336,0.83134,0.83909,0.84642,0.85357,0.86012,0.86653,0.87314 +0.87913,0.88470,0.89008,0.89517,0.90039,0.90508,0.90948,0.91363,0.91767,0.92112,0.92461,0.92795,0.93083,0.93366,0.93630,0.93873,0.94135,0.94369,0.94563,0.94757 +0.94933,0.95105,0.95271,0.95441,0.95587,0.95726,0.95865,0.95995,0.96120,0.96245,0.96371,0.96492,0.96601,0.96707,0.96816,0.96911,0.97010,0.97097,0.97203,0.97295 +0.97375,0.97463,0.97545,0.97611,0.97690,0.97763,0.97835,0.97905,0.97977,0.98037,0.98099,0.98155,0.98211,0.98267,0.98320,0.98370,0.98412,0.98458,0.98502,0.98540 +0.98578,0.98619,0.98657,0.98692,0.98723,0.98756,0.98785,0.98815,0.98842,0.98873,0.98897,0.98915,0.98942,0.98964,0.98985,0.99008,0.99030,0.99048,0.99065,0.99082 +0.99104,0.99120,0.99136,0.99153,0.99165,0.99180,0.99191,0.99204,0.99221,0.99235,0.99249,0.99265,0.99277,0.99287,0.99299,0.99311,0.99322,0.99332,0.99347,0.99362 +0.99374,0.99385,0.99395,0.99407,0.99419,0.99429,0.99436,0.99448,0.99460,0.99472,0.99484,0.99494,0.99507,0.99518,0.99530,0.99540,0.99554,0.99567,0.99577,0.99585 +0.99596,0.99607,0.99616,0.99623,0.99633,0.99642,0.99651,0.99662,0.99672,0.99679,0.99686,0.99702,0.99712,0.99722,0.99728,0.99742,0.99753,0.99761,0.99774,0.99785 +0.99793,0.99805,0.99815,0.99828,0.99840,0.99850,0.99858,0.99868,0.99878,0.99893,0.99901,0.99909,0.99917,0.99925,0.99931,0.99937,0.99946,0.99957,0.99962,0.99969 +0.99974,0.99979,0.99981,0.99984,0.99987,0.99990,0.99992,0.99994,0.99996,0.99997,0.99997,0.99998,0.99998,0.99999,1.00000,1.00000 +pwc1x2fract=0.00109,0.00232,0.00378,0.00558,0.00777,0.01056,0.01381,0.01788,0.02227,0.02741,0.03302,0.03935,0.04573,0.05274,0.06074,0.06884,0.07767,0.08666,0.09589 +0.10544,0.11522,0.12522,0.13528,0.14545,0.15591,0.16676,0.17736,0.18800,0.19852,0.20900,0.21992,0.23080,0.24178,0.25252,0.26315,0.27373,0.28468,0.29566,0.30644 +0.31731,0.32815,0.33904,0.34992,0.36067,0.37137,0.38205,0.39290,0.40348,0.41405,0.42453,0.43512,0.44584,0.45607,0.46670,0.47717,0.48769,0.49812,0.50821,0.51841 +0.52857,0.53883,0.54912,0.55959,0.56973,0.57991,0.58992,0.59987,0.60954,0.61916,0.62871,0.63842,0.64826,0.65752,0.66693,0.67628,0.68521,0.69432,0.70363,0.71290 +0.72184,0.73072,0.73937,0.74775,0.75667,0.76534,0.77373,0.78221,0.79063,0.79879,0.80672,0.81458,0.82228,0.82966,0.83721,0.84453,0.85112,0.85813,0.86474,0.87104 +0.87696,0.88273,0.88859,0.89376,0.89886,0.90377,0.90809,0.91259,0.91667,0.92022,0.92389,0.92714,0.93024,0.93313,0.93587,0.93848,0.94090,0.94295,0.94504,0.94689 +0.94857,0.95012,0.95159,0.95313,0.95463,0.95607,0.95732,0.95872,0.95994,0.96114,0.96234,0.96347,0.96465,0.96577,0.96696,0.96799,0.96890,0.96985,0.97075,0.97162 +0.97249,0.97334,0.97417,0.97504,0.97579,0.97654,0.97731,0.97798,0.97861,0.97925,0.97994,0.98061,0.98122,0.98175,0.98229,0.98279,0.98328,0.98378,0.98422,0.98463 +0.98514,0.98559,0.98608,0.98650,0.98689,0.98728,0.98755,0.98789,0.98811,0.98842,0.98870,0.98893,0.98917,0.98941,0.98965,0.98985,0.99005,0.99023,0.99048,0.99066 +0.99088,0.99108,0.99127,0.99141,0.99157,0.99173,0.99188,0.99205,0.99220,0.99232,0.99245,0.99260,0.99271,0.99284,0.99297,0.99309,0.99324,0.99335,0.99347,0.99360 +0.99374,0.99386,0.99399,0.99413,0.99424,0.99434,0.99442,0.99451,0.99464,0.99475,0.99489,0.99500,0.99509,0.99524,0.99533,0.99545,0.99562,0.99573,0.99586,0.99594 +0.99603,0.99617,0.99630,0.99640,0.99650,0.99659,0.99674,0.99686,0.99690,0.99702,0.99711,0.99720,0.99729,0.99741,0.99751,0.99758,0.99770,0.99779,0.99788,0.99797 +0.99805,0.99812,0.99821,0.99833,0.99846,0.99854,0.99862,0.99874,0.99882,0.99892,0.99901,0.99911,0.99918,0.99929,0.99935,0.99942,0.99948,0.99955,0.99963,0.99973 +0.99977,0.99984,0.99987,0.99989,0.99992,0.99993,0.99995,0.99996,0.99998,0.99998,0.99999,1.00000,1.00000,1.00000,1.00000,1.00000 +pwc1v1fract=0.00102,0.00222,0.00354,0.00521,0.00721,0.00963,0.01257,0.01620,0.02021,0.02497,0.02989,0.03540,0.04122,0.04771,0.05442,0.06172,0.06926,0.07741,0.08595 +0.09498,0.10438,0.11392,0.12349,0.13377,0.14422,0.15501,0.16564,0.17648,0.18728,0.19804,0.20931,0.22017,0.23112,0.24210,0.25314,0.26456,0.27552,0.28655,0.29772 +0.30856,0.31991,0.33115,0.34208,0.35303,0.36408,0.37494,0.38606,0.39708,0.40797,0.41878,0.42946,0.44033,0.45111,0.46201,0.47288,0.48349,0.49430,0.50466,0.51483 +0.52505,0.53585,0.54633,0.55670,0.56686,0.57694,0.58703,0.59717,0.60736,0.61708,0.62744,0.63721,0.64739,0.65664,0.66657,0.67619,0.68551,0.69488,0.70414,0.71341 +0.72276,0.73184,0.74090,0.74996,0.75860,0.76712,0.77566,0.78394,0.79236,0.80091,0.80904,0.81677,0.82451,0.83207,0.83928,0.84633,0.85345,0.86044,0.86717,0.87345 +0.87937,0.88520,0.89103,0.89640,0.90134,0.90614,0.91049,0.91454,0.91856,0.92234,0.92576,0.92903,0.93221,0.93498,0.93747,0.94003,0.94245,0.94467,0.94686,0.94889 +0.95082,0.95266,0.95429,0.95587,0.95732,0.95875,0.96006,0.96125,0.96259,0.96373,0.96489,0.96616,0.96716,0.96823,0.96928,0.97024,0.97123,0.97214,0.97299,0.97384 +0.97456,0.97536,0.97609,0.97677,0.97752,0.97816,0.97882,0.97943,0.98004,0.98063,0.98126,0.98191,0.98246,0.98300,0.98351,0.98398,0.98446,0.98494,0.98534,0.98574 +0.98608,0.98645,0.98681,0.98720,0.98751,0.98781,0.98813,0.98844,0.98870,0.98894,0.98921,0.98941,0.98963,0.98981,0.99002,0.99021,0.99044,0.99065,0.99077,0.99092 +0.99103,0.99121,0.99140,0.99153,0.99166,0.99180,0.99194,0.99205,0.99219,0.99231,0.99246,0.99258,0.99268,0.99280,0.99291,0.99302,0.99313,0.99331,0.99341,0.99355 +0.99367,0.99377,0.99390,0.99401,0.99409,0.99421,0.99435,0.99448,0.99457,0.99468,0.99478,0.99487,0.99496,0.99512,0.99519,0.99526,0.99537,0.99551,0.99562,0.99573 +0.99585,0.99595,0.99607,0.99618,0.99627,0.99636,0.99646,0.99651,0.99663,0.99676,0.99685,0.99697,0.99704,0.99716,0.99730,0.99739,0.99745,0.99759,0.99772,0.99781 +0.99799,0.99809,0.99819,0.99829,0.99840,0.99849,0.99863,0.99874,0.99883,0.99892,0.99899,0.99911,0.99922,0.99932,0.99941,0.99947,0.99954,0.99960,0.99968,0.99973 +0.99980,0.99982,0.99986,0.99989,0.99990,0.99992,0.99995,0.99996,0.99998,0.99999,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000 +pwc1v2fract=0.00104,0.00216,0.00353,0.00519,0.00721,0.00957,0.01257,0.01632,0.02040,0.02507,0.03017,0.03585,0.04185,0.04844,0.05567,0.06312,0.07116,0.07955,0.08812 +0.09699,0.10653,0.11605,0.12623,0.13608,0.14623,0.15688,0.16758,0.17847,0.18991,0.20037,0.21117,0.22214,0.23287,0.24406,0.25503,0.26607,0.27701,0.28793,0.29904 +0.30952,0.32053,0.33162,0.34266,0.35395,0.36482,0.37570,0.38622,0.39701,0.40767,0.41862,0.42919,0.43999,0.45054,0.46094,0.47174,0.48234,0.49254,0.50277,0.51337 +0.52387,0.53426,0.54453,0.55481,0.56500,0.57522,0.58545,0.59523,0.60521,0.61511,0.62517,0.63476,0.64466,0.65424,0.66369,0.67361,0.68348,0.69298,0.70245,0.71176 +0.72108,0.73023,0.73942,0.74831,0.75729,0.76595,0.77476,0.78349,0.79183,0.80035,0.80852,0.81668,0.82471,0.83234,0.83974,0.84692,0.85381,0.86095,0.86774,0.87435 +0.88053,0.88662,0.89205,0.89745,0.90250,0.90747,0.91195,0.91588,0.91988,0.92385,0.92726,0.93033,0.93349,0.93639,0.93905,0.94136,0.94369,0.94590,0.94786,0.94975 +0.95169,0.95333,0.95488,0.95638,0.95782,0.95912,0.96049,0.96173,0.96296,0.96404,0.96518,0.96638,0.96739,0.96836,0.96927,0.97016,0.97108,0.97201,0.97285,0.97371 +0.97451,0.97526,0.97603,0.97672,0.97741,0.97800,0.97862,0.97935,0.98004,0.98062,0.98117,0.98171,0.98229,0.98275,0.98320,0.98375,0.98420,0.98466,0.98507,0.98543 +0.98585,0.98620,0.98651,0.98682,0.98716,0.98748,0.98777,0.98804,0.98837,0.98862,0.98886,0.98907,0.98927,0.98951,0.98974,0.98991,0.99009,0.99027,0.99045,0.99060 +0.99084,0.99104,0.99123,0.99140,0.99156,0.99170,0.99186,0.99195,0.99211,0.99224,0.99239,0.99251,0.99266,0.99280,0.99290,0.99301,0.99320,0.99332,0.99340,0.99358 +0.99372,0.99384,0.99396,0.99407,0.99416,0.99425,0.99431,0.99440,0.99449,0.99458,0.99472,0.99485,0.99496,0.99506,0.99515,0.99525,0.99535,0.99543,0.99550,0.99563 +0.99577,0.99591,0.99598,0.99607,0.99617,0.99629,0.99637,0.99650,0.99662,0.99673,0.99682,0.99692,0.99703,0.99711,0.99724,0.99733,0.99744,0.99753,0.99769,0.99785 +0.99795,0.99803,0.99812,0.99818,0.99829,0.99839,0.99846,0.99854,0.99866,0.99876,0.99885,0.99897,0.99903,0.99912,0.99922,0.99931,0.99941,0.99949,0.99956,0.99965 +0.99970,0.99974,0.99981,0.99985,0.99989,0.99992,0.99994,0.99995,0.99996,0.99998,0.99999,0.99999,0.99999,1.00000,1.00000,1.00000 +pwc2v2fract=0.00109,0.00224,0.00372,0.00522,0.00718,0.00949,0.01230,0.01586,0.01952,0.02354,0.02831,0.03381,0.03958,0.04599,0.05261,0.06014,0.06789,0.07617,0.08486 +0.09433,0.10403,0.11409,0.12365,0.13417,0.14476,0.15531,0.16643,0.17723,0.18815,0.19907,0.21005,0.22104,0.23207,0.24285,0.25399,0.26480,0.27597,0.28700,0.29795 +0.30868,0.31962,0.33050,0.34158,0.35235,0.36281,0.37376,0.38454,0.39523,0.40607,0.41654,0.42744,0.43801,0.44883,0.45948,0.47004,0.48066,0.49077,0.50091,0.51140 +0.52166,0.53180,0.54187,0.55183,0.56192,0.57156,0.58116,0.59099,0.60080,0.60994,0.61945,0.62882,0.63811,0.64761,0.65678,0.66565,0.67467,0.68368,0.69236,0.70114 +0.70948,0.71783,0.72629,0.73447,0.74276,0.75079,0.75887,0.76663,0.77472,0.78263,0.79018,0.79753,0.80479,0.81182,0.81880,0.82572,0.83241,0.83903,0.84530,0.85125 +0.85700,0.86252,0.86821,0.87351,0.87864,0.88375,0.88846,0.89294,0.89730,0.90148,0.90509,0.90875,0.91233,0.91566,0.91895,0.92185,0.92473,0.92751,0.93007,0.93238 +0.93473,0.93694,0.93907,0.94122,0.94330,0.94519,0.94698,0.94873,0.95034,0.95188,0.95342,0.95489,0.95623,0.95766,0.95889,0.96015,0.96139,0.96242,0.96348,0.96467 +0.96578,0.96670,0.96762,0.96847,0.96933,0.97018,0.97099,0.97190,0.97279,0.97352,0.97426,0.97499,0.97566,0.97636,0.97692,0.97751,0.97804,0.97865,0.97931,0.97997 +0.98052,0.98106,0.98154,0.98206,0.98256,0.98306,0.98350,0.98392,0.98432,0.98465,0.98501,0.98537,0.98576,0.98615,0.98644,0.98672,0.98703,0.98733,0.98762,0.98792 +0.98818,0.98846,0.98878,0.98906,0.98929,0.98949,0.98964,0.98987,0.99005,0.99027,0.99052,0.99076,0.99101,0.99122,0.99140,0.99159,0.99181,0.99199,0.99218,0.99233 +0.99253,0.99269,0.99284,0.99300,0.99313,0.99325,0.99343,0.99354,0.99368,0.99382,0.99397,0.99412,0.99425,0.99437,0.99449,0.99467,0.99482,0.99497,0.99509,0.99521 +0.99533,0.99547,0.99563,0.99574,0.99585,0.99603,0.99615,0.99627,0.99640,0.99650,0.99661,0.99669,0.99684,0.99695,0.99709,0.99724,0.99738,0.99747,0.99760,0.99774 +0.99782,0.99797,0.99807,0.99821,0.99832,0.99844,0.99857,0.99868,0.99879,0.99890,0.99900,0.99911,0.99923,0.99934,0.99942,0.99950,0.99960,0.99964,0.99971,0.99978 +0.99981,0.99984,0.99987,0.99991,0.99993,0.99994,0.99995,0.99996,0.99997,0.99998,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000 +pwc2v1fract=0.00113,0.00252,0.00395,0.00559,0.00760,0.01001,0.01289,0.01637,0.02044,0.02489,0.02979,0.03519,0.04105,0.04776,0.05450,0.06188,0.06951,0.07765,0.08650 +0.09544,0.10509,0.11483,0.12515,0.13550,0.14591,0.15636,0.16715,0.17819,0.18908,0.19994,0.21079,0.22212,0.23340,0.24479,0.25579,0.26711,0.27849,0.28935,0.29993 +0.31083,0.32220,0.33338,0.34476,0.35563,0.36644,0.37735,0.38778,0.39853,0.40918,0.41978,0.43039,0.44107,0.45183,0.46222,0.47259,0.48281,0.49347,0.50384,0.51407 +0.52424,0.53438,0.54477,0.55496,0.56470,0.57467,0.58483,0.59443,0.60423,0.61415,0.62357,0.63302,0.64205,0.65105,0.66052,0.66949,0.67818,0.68745,0.69638,0.70543 +0.71391,0.72216,0.73035,0.73858,0.74674,0.75503,0.76291,0.77072,0.77861,0.78656,0.79405,0.80147,0.80875,0.81567,0.82266,0.82953,0.83614,0.84257,0.84893,0.85509 +0.86085,0.86664,0.87208,0.87749,0.88255,0.88721,0.89209,0.89679,0.90106,0.90527,0.90911,0.91260,0.91582,0.91894,0.92194,0.92488,0.92762,0.93025,0.93275,0.93506 +0.93741,0.93965,0.94163,0.94373,0.94552,0.94729,0.94907,0.95070,0.95210,0.95368,0.95506,0.95654,0.95791,0.95912,0.96038,0.96156,0.96272,0.96399,0.96515,0.96620 +0.96717,0.96809,0.96903,0.97004,0.97087,0.97175,0.97262,0.97335,0.97406,0.97488,0.97564,0.97637,0.97702,0.97762,0.97822,0.97884,0.97939,0.97998,0.98047,0.98101 +0.98157,0.98204,0.98254,0.98296,0.98344,0.98389,0.98430,0.98474,0.98518,0.98557,0.98597,0.98628,0.98664,0.98692,0.98726,0.98757,0.98790,0.98820,0.98848,0.98872 +0.98899,0.98921,0.98942,0.98966,0.98993,0.99014,0.99036,0.99056,0.99076,0.99093,0.99113,0.99128,0.99144,0.99158,0.99169,0.99185,0.99201,0.99216,0.99240,0.99255 +0.99275,0.99290,0.99301,0.99315,0.99332,0.99345,0.99361,0.99377,0.99390,0.99408,0.99420,0.99436,0.99445,0.99460,0.99473,0.99488,0.99497,0.99510,0.99525,0.99540 +0.99552,0.99567,0.99579,0.99590,0.99603,0.99612,0.99624,0.99635,0.99645,0.99655,0.99666,0.99677,0.99690,0.99701,0.99713,0.99723,0.99735,0.99747,0.99759,0.99769 +0.99786,0.99798,0.99809,0.99819,0.99829,0.99840,0.99857,0.99869,0.99880,0.99894,0.99905,0.99913,0.99921,0.99930,0.99941,0.99950,0.99959,0.99967,0.99974,0.99978 +0.99983,0.99988,0.99990,0.99991,0.99992,0.99994,0.99996,0.99996,0.99998,0.99998,0.99998,0.99999,1.00000,1.00000,1.00000,1.00000 +pwc2x2fract=0.00118,0.00252,0.00399,0.00571,0.00792,0.01034,0.01349,0.01725,0.02146,0.02619,0.03152,0.03763,0.04425,0.05116,0.05840,0.06629,0.07474,0.08351,0.09265 +0.10239,0.11238,0.12243,0.13260,0.14300,0.15325,0.16376,0.17467,0.18538,0.19630,0.20729,0.21823,0.22922,0.24009,0.25104,0.26203,0.27288,0.28386,0.29464,0.30537 +0.31580,0.32616,0.33708,0.34787,0.35878,0.36935,0.37969,0.39023,0.40086,0.41177,0.42230,0.43277,0.44322,0.45379,0.46439,0.47485,0.48532,0.49549,0.50570,0.51602 +0.52646,0.53620,0.54607,0.55600,0.56572,0.57586,0.58543,0.59516,0.60474,0.61427,0.62378,0.63327,0.64274,0.65175,0.66074,0.66972,0.67843,0.68744,0.69655,0.70513 +0.71389,0.72216,0.73070,0.73914,0.74757,0.75585,0.76388,0.77183,0.77950,0.78737,0.79521,0.80263,0.80981,0.81700,0.82405,0.83111,0.83791,0.84446,0.85110,0.85741 +0.86344,0.86929,0.87531,0.88078,0.88603,0.89090,0.89566,0.89996,0.90437,0.90841,0.91194,0.91550,0.91866,0.92166,0.92455,0.92722,0.92969,0.93200,0.93406,0.93619 +0.93815,0.94005,0.94190,0.94359,0.94547,0.94711,0.94862,0.95000,0.95144,0.95278,0.95417,0.95546,0.95672,0.95786,0.95914,0.96027,0.96133,0.96259,0.96366,0.96470 +0.96571,0.96674,0.96772,0.96868,0.96964,0.97054,0.97145,0.97232,0.97319,0.97399,0.97467,0.97540,0.97616,0.97689,0.97761,0.97822,0.97894,0.97962,0.98013,0.98077 +0.98131,0.98186,0.98239,0.98292,0.98344,0.98390,0.98429,0.98471,0.98512,0.98555,0.98588,0.98624,0.98663,0.98695,0.98723,0.98755,0.98793,0.98818,0.98846,0.98878 +0.98899,0.98925,0.98950,0.98974,0.98996,0.99022,0.99046,0.99063,0.99083,0.99104,0.99122,0.99140,0.99161,0.99176,0.99193,0.99210,0.99226,0.99244,0.99259,0.99275 +0.99290,0.99303,0.99321,0.99333,0.99348,0.99362,0.99375,0.99388,0.99400,0.99410,0.99424,0.99436,0.99450,0.99464,0.99475,0.99484,0.99497,0.99507,0.99524,0.99540 +0.99553,0.99567,0.99578,0.99585,0.99599,0.99612,0.99624,0.99635,0.99644,0.99655,0.99666,0.99678,0.99688,0.99702,0.99715,0.99727,0.99738,0.99749,0.99761,0.99775 +0.99784,0.99794,0.99804,0.99818,0.99831,0.99843,0.99853,0.99864,0.99872,0.99882,0.99892,0.99900,0.99911,0.99918,0.99927,0.99941,0.99949,0.99957,0.99962,0.99971 +0.99976,0.99981,0.99984,0.99991,0.99993,0.99994,0.99997,0.99998,0.99998,0.99999,0.99999,1.00000,1.00000,1.00000,1.00000,1.00000 +pwc2x1fract=0.00108,0.00227,0.00356,0.00532,0.00752,0.00994,0.01286,0.01659,0.02081,0.02538,0.03048,0.03620,0.04250,0.04919,0.05642,0.06419,0.07233,0.08098,0.09000 +0.09961,0.10909,0.11877,0.12884,0.13897,0.14942,0.15967,0.17030,0.18060,0.19139,0.20228,0.21314,0.22352,0.23397,0.24493,0.25559,0.26598,0.27663,0.28758,0.29814 +0.30903,0.32010,0.33090,0.34093,0.35145,0.36221,0.37273,0.38306,0.39375,0.40451,0.41477,0.42552,0.43603,0.44645,0.45683,0.46705,0.47717,0.48769,0.49812,0.50857 +0.51849,0.52898,0.53902,0.54910,0.55936,0.56946,0.57907,0.58881,0.59858,0.60840,0.61824,0.62760,0.63700,0.64647,0.65579,0.66515,0.67452,0.68357,0.69294,0.70169 +0.71035,0.71905,0.72786,0.73641,0.74510,0.75359,0.76179,0.76978,0.77764,0.78534,0.79333,0.80100,0.80871,0.81608,0.82351,0.83056,0.83755,0.84441,0.85098,0.85724 +0.86387,0.86980,0.87554,0.88093,0.88617,0.89099,0.89606,0.90053,0.90490,0.90895,0.91259,0.91599,0.91931,0.92230,0.92518,0.92787,0.93045,0.93297,0.93526,0.93747 +0.93946,0.94148,0.94334,0.94512,0.94692,0.94860,0.95033,0.95194,0.95337,0.95465,0.95603,0.95722,0.95848,0.95964,0.96088,0.96210,0.96320,0.96427,0.96530,0.96622 +0.96723,0.96822,0.96920,0.97010,0.97096,0.97186,0.97273,0.97353,0.97437,0.97517,0.97593,0.97660,0.97735,0.97797,0.97863,0.97922,0.97983,0.98049,0.98108,0.98163 +0.98216,0.98265,0.98312,0.98361,0.98401,0.98441,0.98480,0.98520,0.98555,0.98595,0.98634,0.98665,0.98699,0.98733,0.98773,0.98800,0.98828,0.98852,0.98877,0.98904 +0.98929,0.98955,0.98979,0.99004,0.99028,0.99050,0.99073,0.99093,0.99117,0.99139,0.99156,0.99172,0.99188,0.99202,0.99218,0.99235,0.99250,0.99267,0.99283,0.99295 +0.99310,0.99321,0.99336,0.99348,0.99363,0.99378,0.99392,0.99407,0.99424,0.99440,0.99455,0.99467,0.99477,0.99489,0.99502,0.99515,0.99524,0.99537,0.99548,0.99562 +0.99575,0.99585,0.99596,0.99604,0.99618,0.99627,0.99638,0.99649,0.99661,0.99669,0.99682,0.99693,0.99704,0.99715,0.99726,0.99734,0.99746,0.99759,0.99772,0.99781 +0.99790,0.99803,0.99816,0.99834,0.99844,0.99857,0.99866,0.99874,0.99881,0.99895,0.99904,0.99912,0.99921,0.99932,0.99942,0.99948,0.99955,0.99965,0.99971,0.99976 +0.99982,0.99983,0.99986,0.99990,0.99992,0.99995,0.99997,0.99999,0.99999,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000 +pwc2u2fract=0.00126,0.00244,0.00386,0.00555,0.00768,0.01014,0.01294,0.01637,0.02041,0.02484,0.02991,0.03537,0.04170,0.04818,0.05489,0.06199,0.06986,0.07778,0.08642 +0.09535,0.10466,0.11410,0.12388,0.13375,0.14404,0.15456,0.16511,0.17545,0.18630,0.19721,0.20818,0.21876,0.22943,0.24038,0.25143,0.26231,0.27312,0.28409,0.29525 +0.30609,0.31695,0.32774,0.33850,0.34958,0.36048,0.37134,0.38209,0.39279,0.40322,0.41353,0.42439,0.43519,0.44569,0.45660,0.46741,0.47772,0.48795,0.49834,0.50876 +0.51911,0.52944,0.53974,0.55018,0.56005,0.57007,0.58027,0.59034,0.60014,0.61001,0.61974,0.62973,0.63901,0.64864,0.65804,0.66767,0.67673,0.68597,0.69511,0.70409 +0.71308,0.72202,0.73055,0.73929,0.74772,0.75612,0.76435,0.77265,0.78063,0.78862,0.79643,0.80391,0.81148,0.81888,0.82598,0.83314,0.84017,0.84687,0.85349,0.85997 +0.86636,0.87211,0.87771,0.88312,0.88811,0.89286,0.89751,0.90212,0.90634,0.91014,0.91396,0.91744,0.92077,0.92376,0.92670,0.92936,0.93192,0.93421,0.93660,0.93867 +0.94075,0.94263,0.94439,0.94632,0.94815,0.94987,0.95151,0.95304,0.95437,0.95568,0.95721,0.95860,0.95979,0.96104,0.96220,0.96337,0.96448,0.96559,0.96662,0.96761 +0.96863,0.96959,0.97058,0.97154,0.97239,0.97318,0.97401,0.97488,0.97557,0.97628,0.97701,0.97766,0.97825,0.97887,0.97955,0.98013,0.98072,0.98117,0.98168,0.98222 +0.98267,0.98314,0.98361,0.98406,0.98452,0.98496,0.98532,0.98575,0.98607,0.98636,0.98677,0.98707,0.98741,0.98774,0.98803,0.98835,0.98859,0.98883,0.98907,0.98934 +0.98959,0.98975,0.98995,0.99014,0.99032,0.99052,0.99068,0.99082,0.99099,0.99116,0.99132,0.99146,0.99162,0.99176,0.99188,0.99202,0.99216,0.99231,0.99246,0.99262 +0.99274,0.99286,0.99299,0.99313,0.99329,0.99341,0.99356,0.99372,0.99384,0.99393,0.99409,0.99427,0.99436,0.99450,0.99462,0.99475,0.99487,0.99500,0.99512,0.99524 +0.99534,0.99551,0.99561,0.99570,0.99579,0.99588,0.99601,0.99616,0.99628,0.99638,0.99650,0.99664,0.99676,0.99689,0.99700,0.99712,0.99725,0.99735,0.99746,0.99762 +0.99772,0.99784,0.99796,0.99808,0.99819,0.99831,0.99840,0.99851,0.99861,0.99872,0.99881,0.99895,0.99906,0.99916,0.99924,0.99935,0.99944,0.99952,0.99957,0.99966 +0.99973,0.99979,0.99983,0.99986,0.99991,0.99993,0.99995,0.99996,0.99998,0.99998,0.99999,1.00000,1.00000,1.00000,1.00000,1.00000 +pwc2u1fract=0.00106,0.00239,0.00373,0.00544,0.00738,0.00954,0.01230,0.01551,0.01934,0.02347,0.02813,0.03335,0.03906,0.04498,0.05132,0.05827,0.06588,0.07394,0.08235 +0.09080,0.09976,0.10927,0.11884,0.12834,0.13806,0.14824,0.15850,0.16913,0.17993,0.19062,0.20142,0.21197,0.22275,0.23360,0.24452,0.25539,0.26671,0.27745,0.28853 +0.29972,0.31068,0.32179,0.33235,0.34329,0.35412,0.36485,0.37574,0.38665,0.39749,0.40797,0.41844,0.42916,0.43944,0.45021,0.46090,0.47144,0.48163,0.49214,0.50248 +0.51306,0.52322,0.53324,0.54338,0.55333,0.56337,0.57327,0.58325,0.59348,0.60350,0.61342,0.62334,0.63284,0.64245,0.65206,0.66150,0.67109,0.68040,0.68956,0.69858 +0.70776,0.71664,0.72529,0.73418,0.74304,0.75147,0.76006,0.76847,0.77655,0.78480,0.79284,0.80082,0.80862,0.81628,0.82369,0.83068,0.83797,0.84498,0.85180,0.85825 +0.86462,0.87059,0.87620,0.88177,0.88706,0.89200,0.89693,0.90127,0.90561,0.90954,0.91330,0.91701,0.92044,0.92360,0.92667,0.92951,0.93214,0.93472,0.93697,0.93927 +0.94151,0.94354,0.94541,0.94724,0.94920,0.95094,0.95260,0.95408,0.95569,0.95723,0.95866,0.96000,0.96138,0.96265,0.96398,0.96527,0.96633,0.96734,0.96854,0.96943 +0.97043,0.97138,0.97222,0.97312,0.97389,0.97479,0.97550,0.97625,0.97704,0.97777,0.97840,0.97911,0.97976,0.98038,0.98099,0.98157,0.98207,0.98257,0.98306,0.98352 +0.98404,0.98445,0.98488,0.98525,0.98568,0.98600,0.98636,0.98667,0.98696,0.98724,0.98761,0.98786,0.98811,0.98835,0.98863,0.98888,0.98916,0.98943,0.98967,0.98985 +0.99011,0.99032,0.99054,0.99072,0.99094,0.99112,0.99129,0.99150,0.99166,0.99180,0.99196,0.99213,0.99227,0.99243,0.99258,0.99272,0.99288,0.99300,0.99313,0.99330 +0.99342,0.99358,0.99371,0.99382,0.99397,0.99409,0.99420,0.99431,0.99446,0.99459,0.99472,0.99483,0.99490,0.99499,0.99508,0.99525,0.99535,0.99543,0.99555,0.99564 +0.99575,0.99586,0.99597,0.99610,0.99618,0.99626,0.99636,0.99649,0.99661,0.99670,0.99685,0.99699,0.99706,0.99718,0.99729,0.99742,0.99749,0.99758,0.99768,0.99779 +0.99788,0.99797,0.99808,0.99819,0.99831,0.99845,0.99857,0.99867,0.99880,0.99894,0.99905,0.99914,0.99922,0.99931,0.99939,0.99947,0.99956,0.99963,0.99971,0.99976 +0.99981,0.99984,0.99989,0.99992,0.99993,0.99995,0.99996,0.99998,0.99999,0.99999,1.00000,1.00000,1.00000,1.00000,1.00000,1.00000 diff --git a/PARAM/SHMS/DC/CALIB/pdc_tzero_per_wire.param b/PARAM/SHMS/DC/CALIB/pdc_tzero_per_wire.param new file mode 100644 index 0000000000000000000000000000000000000000..9424471eefebed7586fdbd0cd393e0fc95ee3697 --- /dev/null +++ b/PARAM/SHMS/DC/CALIB/pdc_tzero_per_wire.param @@ -0,0 +1,88 @@ +ptzero1u1= +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, 0.000000, 1.795920, 5.815350, -3.864150, -5.927540, 10.719800, -4.813430, 0.404404, 0.755655, 0.000000, 1.565370, 4.950330, -0.345324, -5.542140, 2.861590 +1.534980, -15.681300, 1.979280, 4.854760, 6.446210, 1.620820, 0.177650, 0.680271, 1.611940, 5.395360, 2.935390, 1.323300, 5.197490, 4.067040, 0.772863, 1.704960 +2.751230, 6.300950, 0.858680, 4.487330, 3.288680, 2.332650, 4.070710, 1.355750, 3.087380, 2.726840, 3.151510, 2.523060, 1.251760, 4.044590, 1.242660, 1.512210 +3.171260, 3.743360, 4.626910, 5.624360, 6.038540, 7.064390, 3.798730, 4.800300, 5.590810, 8.440760, 7.197160, 3.502090, 5.330660, 9.031360, 6.141750, 5.212600 +10.965900, 2.301490, 8.010930, 7.743700, 3.590260, 6.029060, 0.816870, -5.213110, 9.752780, 8.307690, 9.460380, 8.567180, 0.000000, 5.231090, 11.354300, 7.508670 +6.368630, 9.673470, 8.767530, 13.277100, -16.695200, 7.085900, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000 +ptzero1u2= +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, 10.916700, -4.672130, 6.038300, 4.164760, 8.883000, 6.370700, 9.557240, -0.648253, 4.362870, -10.987600, 3.678900, 7.059010, -1.258060, 5.024760, 5.735800 +4.186680, -0.536697, 0.236342, 2.694360, 4.960730, -3.547860, 2.949800, 2.134110, 4.653480, 5.121060, 5.471440, 2.201530, 3.393430, 7.740120, 4.183370, 4.699110 +6.130200, 2.142410, 2.887710, 4.458210, 1.461180, 0.891988, 3.531650, 3.226970, 3.356920, 1.415850, 3.002660, 1.083940, -2.429840, 2.518900, 4.608790, 2.840310 +5.780790, 1.942860, 4.077160, 4.112970, 2.227040, 2.115580, 3.183260, 4.864210, 3.400000, 0.632734, 1.835060, 4.341910, 5.565070, 4.406240, 7.122810, 8.552850 +5.535050, -0.324697, 3.381260, 7.990940, 3.640930, 23.795600, 6.688140, 8.332550, 7.315810, 10.925900, 0.000000, 1.500810, -0.318182, 4.046240, 9.760080, 12.506000 +11.769200, 6.388520, 4.244090, 1.200000, 2.818180, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000 +ptzero1x1= +-1.862060,-5.060360,0.890689,-2.123470,0.266049,-4.394440,-3.181590,-3.011560,-7.340200,-1.131910,-5.684140,-3.339910, -3.603510, -0.171227, 2.670460, -3.477110 +0.696540, 1.928030, -0.766734, 0.935069, -4.320620, -2.370120, -4.209710, 1.379730, -0.911690, -2.316800, -5.893290, -3.126300, -7.080260, 1.282180, 3.116260, 4.467810 +2.244710, 5.122060, 6.816590, 3.063140, 1.574480, 0.466924, 2.411390, 0.143337, 0.770216, -1.611270, -2.379990, -0.308662, 1.031620, 0.181693, 3.392230, 1.548930 +3.553960, 7.047760, 4.506460, 8.317220, 2.723510, 4.768800, 5.221840, 3.216500, 0.182255, 2.475740, -1.318110, -1.395740, 3.349560, 6.663600, 7.749050, 4.382410 +9.047220, 10.447800, 11.142700, 10.615600, 10.124500, 12.012400, 10.867500, 14.273300, 12.222600, 12.880300, 10.129000, 8.611050, 8.293280, 7.103690, -2.305470 +ptzero1x2= +-0.388060,10.210500,5.598810,6.123810,7.651880,2.782440,-8.042550,2.420080,0.388554,7.726910,3.171390,7.548380, 6.562330, 4.760400, 4.175150, 5.784480 +4.376930, 3.342330, 4.798840, -1.665290, 1.520700, 0.544997, 3.660080, 1.212270, 2.039610, -0.397125, 2.737430, 4.216970, 3.810030, 6.409610, 4.638020, -1.012270 +0.753259, 2.973150, 1.977040, 0.638232, -1.982390, -2.790790, -3.577970, -1.763710, -4.006910, -2.834720, -0.205417, -1.636630, 0.708044, 0.485227, -4.125460, -0.077492 +3.829980, -0.006536, 5.149800, 0.875090, 3.189890, 2.302570, 0.715657, 0.682134, -3.278750, -2.829270, -2.334770, -4.668020, 0.100722, 0.163470, -0.583767, 5.641670 +3.717870, 6.252000, 5.077890, 4.494680, 8.895850, 8.389630, 5.788920, 4.952720, 6.317280, 4.454020, 2.793250, 1.912540, 0.923993, 0.485133, 0.006984 +ptzero1v1= +0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,16.000000,0.000000,0.000000, -3.248620, 10.544300, 5.723470, -0.167832 +5.791570, 0.000000, 0.000000, -16.601400, 7.211620, 6.408960, 3.399260, 1.468270, 5.394960, 0.526718, 5.528730, -1.830630, 4.259580, -1.791670, 7.464050, 2.892630 +1.419100, 3.926050, 4.166810, 5.864460, 0.595406, 1.371100, 5.573380, 3.296000, 7.125270, 6.036240, 5.291410, 6.153040, 5.315270, 8.171190, 7.264820, 8.961300 +9.878830, 8.970030, 9.517580, 7.025000, 8.266900, 9.315160, 7.651030, 8.559870, 11.303900, 7.863830, 11.701000, 9.156380, 9.357870, 7.235850, 10.026400, -2.578380 +-0.357369, -2.929150, -1.901050, -2.151240, -2.265530, -7.198300, -2.665640, -0.212098, -3.156100, 0.106613, 1.210510, 1.478900, -5.898540, 4.406570, -4.721420, 4.283780 +-0.070747, 0.353721, 3.512260, 4.885820, 4.807120, 5.441330, 3.471640, 3.662200, 4.331610, -7.154520, 2.599710, 1.593700, 3.987850, 5.787910, 19.733300, 14.638900 +0.000000, 3.464290, -19.447200, 5.882980, -17.459500, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000 +ptzero1v2= +0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,0.000000,24.857100,0.000000,0.000000, 25.060400, 4.133520, 8.519300, 5.222520 +6.879550, 8.261270, 7.433530, 3.431880, 7.536800, -7.283120, 1.879330, 2.621920, 2.068820, 8.948500, 4.047470, 5.543960, 6.173630, 8.318030, 7.155910, 3.704420 +9.330260, 7.558700, 7.531610, 0.084241, 5.609340, 5.630570, 7.967230, 5.188840, 10.209800, 9.106830, 6.858900, 8.087110, 1.440150, 1.414830, 2.399680, -0.808321 +1.099900, 1.120240, 0.300221, -2.169230, 0.451327, -2.473590, -2.036820, 0.887898, 0.369413, -1.016780, -0.898206, -1.164890, -0.681405, -0.286733, -0.384938, -3.059400 +-5.289670, 0.488029, -0.363647, -0.928181, -1.304460, -2.630200, 0.118533, 0.318898, -2.213060, 0.853546, -2.025040, 2.121240, 1.674960, 1.830370, 2.004430, 4.969520 +2.716170, 4.110770, 7.479290, 5.380610, 5.901590, 3.801040, 2.820150, 5.148150, 7.095710, 7.548680, 4.854270, -21.165700, 0.000000, 7.825210, 6.105180, 11.006400 +0.380623, 13.549600, -6.625900, 7.572230, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000 +ptzero2v2= +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, -11.555600, 4.608350, 0.000000 +-10.000000, 4.082760, 0.000000, 0.000000, -2.180610, -4.226240, 4.414830, -1.745280, 8.621950, 5.624680, -2.607140, -0.681955, 6.067340, 13.311900, 9.795680, 11.718100 +8.676360, 5.623300, 9.703400, 9.516520, 11.716700, 10.488800, 8.604710, 10.642600, 5.977520, 11.677700, 8.582270, 7.817510, 12.096200, 5.755470, 10.820500, 11.099900 +9.506290, 9.779980, 7.397800, 8.484320, 7.980850, 8.076540, 7.184750, 6.930630, 8.418590, 7.962490, 7.990790, 6.963160, -0.431749, 3.757360, 4.615140, 2.893580 +3.444480, -3.420450, -3.933450, -2.651720, -0.127254, -1.043080, -1.475670, -0.080271, 0.068876, 2.165830, 4.720000, 0.991301, 1.594030, 5.763560, 8.133160, 10.019800 +6.025830, -1.821310, 7.595050, 3.912210, 3.349220, 4.221970, 5.452880, 3.657390, 3.391830, 1.571480, 2.540660, 3.808400, 7.113780, 2.210830, 0.901170, 5.282630 +5.211540, 3.723870, 1.217340, 6.076170, 3.841830, 7.036590, 12.992400, 0.000000, 3.265860, 9.692310, 0.000000 +ptzero2v1= +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.092310, 5.335310, 0.000000 +-7.125980, -10.940700, 3.124150, -5.600000, -5.434780, 2.326510, -18.818200, -1.521200, -2.955410, 2.316300, -0.641013, -7.180860, -2.633960, 4.182940, 3.540350, 6.843010 +7.705500, 2.497010, 4.755030, 8.680260, 9.939430, 8.246580, 6.258310, 6.410950, 8.326710, 12.216700, 8.361320, 7.109610, 4.429420, 9.940720, 10.031400, 9.626190 +16.148300, 8.402900, 8.574210, 9.887430, 8.434920, 8.565290, 8.827220, 7.485750, 8.360080, 10.124800, 8.100660, 9.172740, 9.754290, 7.803890, 7.765130, 2.989080 +4.471970, 4.843990, 2.961210, 2.757320, 0.446784, 2.244700, 2.224380, 5.063170, -2.196180, 0.000000, 5.043370, 2.638480, 5.035890, -0.083561, 6.014590, -0.178800 +-2.936590, 0.924423, 5.063060, 1.800420, 0.567349, -1.334190, 0.000000, 2.203800, -0.084168, 3.704220, 10.890600, 3.668250, 2.581830, 2.658140, 0.882729, -0.658854 +4.596010, 2.404060, 1.996760, 11.972500, 5.221670, 5.335070, 9.104860, 7.442970, -14.638800, -2.467740, 0.000000 +ptzero2x2= +-3.061820,1.242440,-0.920429,0.949141,-3.371390,1.538490,1.537160,2.680810,-0.375996,3.624970,4.023850,3.101700, 3.621450, 6.546410, -3.104770, -2.297460 +-4.208040, -0.680161, -0.759493, -3.256850, -3.475440, -1.010530, -1.495540, -5.828560, 0.005329, -1.934660, -0.802933, 2.697560, 2.595770, 2.262840, 3.847550, 6.508350 +7.420170, 7.293470, 4.544480, 6.006310, 1.299380, -1.178930, 0.399639, -2.844170, -0.636414, 2.689540, 0.000000, -0.005122, 3.258850, 3.209370, 2.692630, 6.696770 +8.405310, 4.999500, 6.351480, 5.621890, 4.321230, 7.012510, 5.699240, 2.569630, 6.354140, 4.117900, -2.852930, 0.848214, 3.756270, 5.198940, 1.263700, 7.994620 +7.224540, 6.740530, 8.552430, 7.867670, 8.216770, 9.636760, 8.177560, 5.522230, 9.502410, 13.189900, 12.033100, 12.005700, 12.146600, 7.825520, 12.772000 +ptzero2x1= +-0.994652,0.323887,2.662040,-2.946220,0.944695,4.667010,2.647140,2.461640,4.957990,3.113680,4.142770,1.308310, 5.622420, 5.469640, 7.911730, 4.733910 +2.399680, 2.495830, 1.696250, -0.137557, -0.839917, 0.820595, -0.677687, 1.409470, 6.096500, 1.789550, 3.080510, 1.909060, 5.210970, 8.603190, 7.767040, 4.964880 +1.534830, 2.095010, 0.831891, 2.758970, 0.161976, -2.097360, -3.893230, -2.599900, 0.471164, -3.455090, -2.770680, -0.905358, -2.358650, -1.462630, -0.698122, -0.124938 +-0.176906, -0.640411, 0.314966, 3.389660, 0.198043, 1.051300, 0.663665, 0.172697, -5.500470, 1.035880, -1.542160, -6.413390, -2.720510, -1.530320, -3.358420, -1.622080 +5.754260, 7.172000, 7.128620, 7.212770, 9.011560, 12.249800, 7.627180, 8.218560, 10.479100, 14.471400, 13.159500, 14.039200, 12.556300, 14.254100, 10.879100 +ptzero2u2= +0.000000,0.000000,0.000000,2.927810,1.513160,0.000000,0.082767,11.832700,0.289694,3.096540,10.310600,4.395130, -1.204390, 6.047720, 3.493290, 6.893580 +2.216220, 7.989400, 6.820680, 6.566040, 4.801940, 4.916770, -1.832630, 3.958420, 3.803680, 6.329900, 7.061990, 4.710200, 4.066710, 4.554470, 3.114060, 11.153400 +4.604940, 2.830040, 4.262040, 1.597520, 5.888230, 2.311250, 2.476890, 5.373290, 4.946830, 5.122540, 4.026250, 8.359670, -0.690787, 2.955530, 1.806160, -0.799365 +2.603230, -0.796656, 0.954418, -0.788097, -5.090030, -1.691130, 0.121203, -0.729663, -0.713128, -1.170500, 0.482169, -1.926040, 2.590880, 2.291740, 2.106530, 0.515922 +1.563030, -0.969506, 1.715190, 0.730038, 2.797450, 0.343180, 2.983660, 1.569480, 3.351930, 4.273950, 2.693030, 0.502254, 5.028720, 2.408280, 4.831420, 2.509090 +4.811720, 4.595160, 4.270700, 2.027170, 1.296140, 4.402360, 3.805610, 5.697640, 4.209350, 4.205540, 6.840550, 8.688300, 10.346200, 16.544000, 16.701800, 15.950600 +19.425700, -2.883330, 5.303570, 23.328300, -11.923100, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000 +ptzero2u1= +0.000000,0.000000,0.000000,0.000000,1.981130,6.887300,9.154860,-16.603200,-16.215000,-1.705760,8.661480,8.515390, 11.496200, 11.843500, 0.198014, -4.724240 +2.248020, -1.088080, 1.330110, -1.029570, 2.240130, 5.972840, -0.982127, 0.718305, -0.225920, -2.431140, -1.316000, 0.185943, 0.340701, 4.595960, 1.248220, 3.011960 +5.469650, 4.392520, -2.113370, 5.228590, 6.901420, 1.807750, 2.789800, 2.019910, 4.260250, 4.067850, 5.996700, 4.556910, 9.895290, 7.413430, 10.164000, 7.858780 +6.970080, 7.429900, 7.051170, 7.430280, 8.005980, 7.404120, 4.407060, 7.474910, 8.819040, 6.623950, 10.455900, 10.604900, 11.910200, 10.554000, 8.699290, -1.134720 +1.416000, 0.929777, 1.344440, -1.600020, -0.365316, 4.031480, 2.137260, 2.109900, 3.030740, 4.618980, 3.938440, 5.779070, 6.430440, 7.514210, 5.483380, 1.555490 +5.777830, 0.909257, 0.741250, 4.815550, 4.298590, 3.555880, 4.731660, 6.200930, -0.525888, 0.160183, -28.817600, 6.296690, 6.827100, 8.975990, 10.564200, 8.914800 +19.375800, 17.450700, -14.710500, 23.005800, 12.757800, 23.291100, 0.000000, 0.000000, 0.000000, 0.000000, 0.000000 diff --git a/PARAM/SHMS/DC/GEOM/pdc_geom.param b/PARAM/SHMS/DC/GEOM/pdc_geom.param index 11c6d510f0aa7da486c278eed0efa17ec15a9195..77f96caffab40610cec3e082ec6c46cb37f07285 100644 --- a/PARAM/SHMS/DC/GEOM/pdc_geom.param +++ b/PARAM/SHMS/DC/GEOM/pdc_geom.param @@ -125,92 +125,3 @@ pdc_gamma_angle = pdc_1_yaw*raddeg pdc_2_yaw*raddeg pdc_2_yaw*raddeg -; t0 per wire corrections -ptzero1u1= -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.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= --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= -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.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.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.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.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= --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= -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.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.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 \ No newline at end of file