From 551f63f4a6bd1f0b1cdeb604f7e12165a3fefd2f Mon Sep 17 00:00:00 2001
From: Jure Bericic <bericic@jlab.org>
Date: Thu, 9 Feb 2017 11:04:34 -0500
Subject: [PATCH] Increased maximum number of TDC hits to 128.

---
 src/THcRawDCHit.h  | 2 +-
 src/THcRawTdcHit.h | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/THcRawDCHit.h b/src/THcRawDCHit.h
index 1cd43f4..50c454d 100644
--- a/src/THcRawDCHit.h
+++ b/src/THcRawDCHit.h
@@ -37,7 +37,7 @@ public:
   UInt_t GetMaxNSamplesTDC() {return fMaxNSamplesTDC;}
 
 protected:
-  static const UInt_t fMaxNSamplesTDC = 16;
+  static const UInt_t fMaxNSamplesTDC = 128;
   UInt_t fNHits;
   Int_t fTDC[fMaxNSamplesTDC];
   Int_t fReferenceTime;
diff --git a/src/THcRawTdcHit.h b/src/THcRawTdcHit.h
index da2deca..c930f27 100644
--- a/src/THcRawTdcHit.h
+++ b/src/THcRawTdcHit.h
@@ -24,7 +24,7 @@ class THcRawTdcHit : public TObject {
     UInt_t GetNHits() const;
 
   protected:
-    static const UInt_t fMaxNHits = 16;
+    static const UInt_t fMaxNHits = 128;
 
     Double_t fChannelToTimeFactor;
 
-- 
GitLab