From cb6a38c203b7223a93d139a47cf83f6da62b291d Mon Sep 17 00:00:00 2001 From: Carlos Yero <cyero002@fiu.edu> Date: Fri, 16 Jun 2017 09:39:42 -0400 Subject: [PATCH] -removed unnecessary lines --- .../scripts/get_tzero_per_wire_param.C | 23 ++++++++++--------- 1 file changed, 12 insertions(+), 11 deletions(-) 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 b6bb687d..16331674 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 @@ -69,15 +69,16 @@ Double_t **t0 = new Double_t*[NPLANES]; // cout << line << endl; if (line[0]!='#') { - if(!input.good()) {break;} + // if(!input.good()) {break;} sscanf(line.c_str(), "%d %lf", &nwire, &nt0); - if(sw>0) { - - t0[ip][nwire-1] = nt0; - - } - sw++; + + // if(sw>0) { + + t0[ip][nwire-1] = nt0; + + // } + // sw++; } @@ -111,18 +112,18 @@ Double_t **t0 = new Double_t*[NPLANES]; for (sw=0; sw<fNWires[ip]; sw++) { - out << setprecision(3) << t0[ip][sw] << endl; + out << setprecision(6) << t0[ip][sw] << endl; if (sw <= 10) { - ofs << setprecision(3) << t0[ip][sw] << fixed << ","; + ofs << setprecision(6) << t0[ip][sw] << fixed << ","; } else if (sw>10 && sw <(fNWires[ip]-1)) { - ofs << setprecision(3) << t0[ip][sw] << ((sw+1) % 16 ? ", " : "\n") << fixed; + ofs << setprecision(6) << t0[ip][sw] << ((sw+1) % 16 ? ", " : "\n") << fixed; } else if (sw==78 || sw == 106) { - ofs << setprecision(3) << t0[ip][sw] << fixed << endl; + ofs << setprecision(6) << t0[ip][sw] << fixed << endl; } -- GitLab