source: trunk/MagicSoft/Mars/manalysis/MEnergyEst.h@ 2798

Last change on this file since 2798 was 1847, checked in by tbretz, 22 years ago
*** empty log message ***
File size: 655 bytes
Line 
1#ifndef MARS_MEnergyEst
2#define MARS_MEnergyEst
3
4#ifndef MARS_MParContainer
5#include "MParContainer.h"
6#endif
7
8class MEnergyEst : public MParContainer
9{
10private:
11 Double_t fEnergy; // [GeV] Estimated Energy
12 Double_t fImpact; // [cm] Estimated Impact
13
14public:
15 MEnergyEst(const char *name=NULL, const char *title=NULL);
16
17 void SetEnergy(Double_t e) { fEnergy = e; }
18 void SetImpact(Double_t i) { fImpact = i; }
19 Double_t GetEnergy() const { return fEnergy; }
20 Double_t GetImpact() const { return fImpact; }
21
22 void Print(Option_t *o="") const;
23
24 ClassDef(MEnergyEst, 1) // Storage Container for the estimated Energy
25};
26
27#endif
28
Note: See TracBrowser for help on using the repository browser.