From e3876ab16488943317f6f2684f513ceac492448e Mon Sep 17 00:00:00 2001 From: "Stephen A. Wood" <saw@jlab.org> Date: Thu, 15 Mar 2012 17:11:23 -0400 Subject: [PATCH] Start a raw hit list class --- src/THcRawHitList.cxx | 17 +++++++++++++++++ src/THcRawHitList.h | 19 +++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 src/THcRawHitList.cxx create mode 100644 src/THcRawHitList.h diff --git a/src/THcRawHitList.cxx b/src/THcRawHitList.cxx new file mode 100644 index 0000000..26eae1f --- /dev/null +++ b/src/THcRawHitList.cxx @@ -0,0 +1,17 @@ +//*-- Author : Stephen Wood + +////////////////////////////////////////////////////////////////////////// +// +// THcRawHistList +// +// Class to build raw hit lists from data +// +////////////////////////////////////////////////////////////////////////// + +#include "THcRawHitList.h" + +using namespace std; + +THcRawHitList::THcRawHitList(const char* classname, Int_t size=1000, Int_t detctorid) { + // Create it + diff --git a/src/THcRawHitList.h b/src/THcRawHitList.h new file mode 100644 index 0000000..35f8744 --- /dev/null +++ b/src/THcRawHitList.h @@ -0,0 +1,19 @@ + #ifndef ROOT_THcRawHitList + #define ROOT_THcRawHitList + +////////////////////////////////////////////////////////////////////////// +// +// THcRawHistList.h +// +////////////////////////////////////////////////////////////////////////// + +#include "TClonesArray.h" + +class THcRawHitList { + + public: + + + + TClonesArray* fHits; + Int_t fMaxhit; -- GitLab