Skip to content
Snippets Groups Projects
Commit 6ee5b553 authored by Stephen A. Wood's avatar Stephen A. Wood
Browse files

Checkin of partial progress.

parent ff80d4eb
No related branches found
No related tags found
No related merge requests found
......@@ -9,7 +9,7 @@
SRC = src/THcInterface.cxx src/THcParmList.cxx src/THcAnalyzer.cxx \
src/THcHodoscopeHit.cxx
src/THcHodoscopeHit.cxx src/THcRawHit.cxx src/THcRawHitList.cxx
# Name of your package.
# The shared library that will be built will get the name lib$(PACKAGE).so
......
......@@ -9,6 +9,8 @@
#pragma link C++ class THcInterface+;
#pragma link C++ class THcParmList+;
#pragma link C++ class THcAnalyzer+;
#pragma link C++ class THcRawHit+;
#pragma link C++ class THcHodoscopeHit+;
#pragma link C++ class THcRawHitList+;
#endif
......@@ -10,8 +10,8 @@ class THcHodoscopeHit : public THcRawHit {
public:
THcHodoscopeHit(Int_t plane, Int_t counter) :
fPlane(plane), fCounter(counter), fADC_pos(-1), fADC_neg(-1),
THcHodoscopeHit(Int_t plane, Int_t counter) : THcRawHit(plane, counter)
fADC_pos(-1), fADC_neg(-1),
fTDC_pos(-1), fTDC_neg(-1) {}
virtual ~THcHodoscopeHit() {}
......
......@@ -13,8 +13,10 @@ class THaVDCUVTrack;
class THcRawHit : public TObject {
public:
THcRawHit() {}
THcRawHit( const THcRawHit& rhs ) : TObject(rhs) {}
THcRawHit(Int_t plane, Int_t counter) :
fPlane(plane), fCounter(counter) {}
THcRawHit( const THcRawHit& rhs ) : TObject(rhs) {}
THcRawHit& operator=( const THcRawHit& rhs )
{ TObject::operator=(rhs); return *this; }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment