From a28af4c27020f499e13339ca0fc47155d7865113 Mon Sep 17 00:00:00 2001
From: Deepak Bhetuwal <dkb208@msstate.edu>
Date: Mon, 12 Jun 2017 14:57:25 -0400
Subject: [PATCH] Fix mistake in THcScintillatorPlane::ProcessHits

Accidentally deleted line
btdcraw_pos = kTRUE;

in previouse commit
---
 src/THcScintillatorPlane.cxx | 1 +
 1 file changed, 1 insertion(+)

diff --git a/src/THcScintillatorPlane.cxx b/src/THcScintillatorPlane.cxx
index bcd346a..29b31b0 100644
--- a/src/THcScintillatorPlane.cxx
+++ b/src/THcScintillatorPlane.cxx
@@ -677,6 +677,7 @@ Int_t THcScintillatorPlane::ProcessHits(TClonesArray* rawhits, Int_t nexthit)
     for(UInt_t thit=0; thit<hit->GetRawTdcHitPos().GetNHits(); thit++) {
       tdc_pos = hit->GetRawTdcHitPos().GetTime(thit)+fTdcOffset;
       if(tdc_pos >= fScinTdcMin && tdc_pos <= fScinTdcMax) {
+	btdcraw_pos = kTRUE;
 	break;
       }
     }
-- 
GitLab