Skip to content
Snippets Groups Projects
Commit f14b7db8 authored by Zafar Ahmed's avatar Zafar Ahmed Committed by Stephen A. Wood
Browse files

Add method to get momentum normalized total shower energy.

parent ccbdd406
No related branches found
No related tags found
No related merge requests found
...@@ -1031,5 +1031,9 @@ Int_t THcShower::FineProcess( TClonesArray& tracks ) ...@@ -1031,5 +1031,9 @@ Int_t THcShower::FineProcess( TClonesArray& tracks )
return 0; return 0;
} }
Double_t THcShower::GetNormETot( ){
return fEtotNorm;
}
ClassImp(THcShower) ClassImp(THcShower)
//////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////
...@@ -147,6 +147,8 @@ public: ...@@ -147,6 +147,8 @@ public:
virtual Int_t CoarseProcess( TClonesArray& tracks ); virtual Int_t CoarseProcess( TClonesArray& tracks );
virtual Int_t FineProcess( TClonesArray& tracks ); virtual Int_t FineProcess( TClonesArray& tracks );
Double_t GetNormETot();
Int_t GetNHits() const { return fNhits; } Int_t GetNHits() const { return fNhits; }
Int_t GetNBlocks(Int_t NLayer) const { return fNBlocks[NLayer];} Int_t GetNBlocks(Int_t NLayer) const { return fNBlocks[NLayer];}
......
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