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

Add method for # of samples to THcRawShowerHit

parent 41d2c558
No related branches found
No related tags found
No related merge requests found
...@@ -52,6 +52,17 @@ Int_t THcRawShowerHit::GetData(Int_t signal, UInt_t isample) { ...@@ -52,6 +52,17 @@ Int_t THcRawShowerHit::GetData(Int_t signal, UInt_t isample) {
} }
return(-1); return(-1);
} }
// Return the number of samples
Int_t THcRawShowerHit::GetNSamples(Int_t signal) {
if(signal==0) {
return(fNPosSamples);
} else if (signal==1) {
return(fNNegSamples);
}
return(-1);
}
//_____________________________________________________________________________ //_____________________________________________________________________________
THcRawShowerHit& THcRawShowerHit::operator=( const THcRawShowerHit& rhs ) THcRawShowerHit& THcRawShowerHit::operator=( const THcRawShowerHit& rhs )
{ {
......
...@@ -23,6 +23,7 @@ class THcRawShowerHit : public THcRawHit { ...@@ -23,6 +23,7 @@ class THcRawShowerHit : public THcRawHit {
void SetData(Int_t signal, Int_t data); void SetData(Int_t signal, Int_t data);
Int_t GetData(Int_t signal); Int_t GetData(Int_t signal);
Int_t GetData(Int_t signal, UInt_t isample); Int_t GetData(Int_t signal, UInt_t isample);
Int_t GetNSamples(Int_t signal);
// virtual Bool_t IsSortable () const {return kTRUE; } // virtual Bool_t IsSortable () const {return kTRUE; }
// virtual Int_t Compare(const TObject* obj) const; // virtual Int_t Compare(const TObject* obj) const;
......
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