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