Skip to content
Snippets Groups Projects

Waveform raw integral bug

Merged Eric Torrence requested to merge torrence/calypso:recodev into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -456,7 +456,7 @@ WaveformReconstructionTool::findRawHitValues(const std::vector<float> time, cons
rfit.mean = sum/tot;
rfit.sigma = std::sqrt(sum2/tot - rfit.mean*rfit.mean);
rfit.peak = *peakloc;
rfit.integral = tot;
rfit.integral = 2*tot; // Factor of 2 because at 500 MHz, dt = 2 ns
rfit.time = rfit.mean;
ATH_MSG_DEBUG( "Initial Mean: " << rfit.mean << " RMS: " << rfit.sigma << " Peak: " << rfit.peak);
Loading