Skip to content

Commit

Permalink
Merge pull request #291 from JeffersonLab/sdobbs_tagh_timewalk_fix
Browse files Browse the repository at this point in the history
Use actual TDC time instead of the timewalk corrected time for calibrations
  • Loading branch information
zihlmann authored Feb 3, 2020
2 parents 836e988 + 33986d7 commit 6194840
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ jerror_t JEventProcessor_TAGH_timewalk::evnt(JEventLoop *loop, uint64_t eventnum
const DTAGHHit *hit = taghhits[i];
if (!hit->has_TDC || !hit->has_fADC) continue;
int id = hit->counter_id;
double t_tdc = hit->t;
double t_tdc = hit->time_tdc;
double t_adc = hit->time_fadc;
double pulse_height = hit->pulse_peak;
hTAGH_tdcadcTimeDiffVsSlotID->Fill(id,t_tdc-t_adc);
Expand Down

0 comments on commit 6194840

Please sign in to comment.