From 8f8b4f0079d51450005dd09ea7271c0b28e3a192 Mon Sep 17 00:00:00 2001 From: "Stephen A. Wood" <saw@jlab.org> Date: Wed, 30 Sep 2015 09:30:04 -0400 Subject: [PATCH] Add member functions to receive ThcRawHodoHit information --- src/THcRawHodoHit.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/THcRawHodoHit.h b/src/THcRawHodoHit.h index 7e5614b..1299bdf 100644 --- a/src/THcRawHodoHit.h +++ b/src/THcRawHodoHit.h @@ -25,6 +25,10 @@ class THcRawHodoHit : public THcRawHit { // virtual Bool_t IsSortable () const {return kTRUE; } // virtual Int_t Compare(const TObject* obj) const; + Int_t GetADCPos() {return fADC_pos;} + Int_t GetADCNeg() {return fADC_neg;} + Int_t GetTDCPos() {return fTDC_pos;} + Int_t GetTDCNeg() {return fTDC_neg;} protected: Int_t fADC_pos; -- GitLab