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

Last change on this file since 1268 was 1211, checked in by tbretz, 23 years ago
*** empty log message ***
File size: 469 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
13public:
14 MEnergyEst(const char *name=NULL, const char *title=NULL);
15
16 void SetEnergy(Double_t e) { fEnergy = e; }
17 Double_t GetEnergy() const { return fEnergy; }
18
19 ClassDef(MEnergyEst, 1) // Storage Container for the estimated Energy
20};
21
22#endif
23
Note: See TracBrowser for help on using the repository browser.