source: trunk/MagicSoft/Mars/manalysis/MHadronness.h@ 2876

Last change on this file since 2876 was 1557, checked in by tbretz, 22 years ago
*** empty log message ***
File size: 554 bytes
Line 
1#ifndef MARS_MHadronness
2#define MARS_MHadronness
3
4#ifndef MARS_MParContainer
5#include "MParContainer.h"
6#endif
7
8class MHadronness : public MParContainer
9{
10private:
11 Double_t fHadronness; // [0,1] Hadronness
12
13public:
14 MHadronness(const char *name=NULL, const char *title=NULL);
15
16 void Reset();
17
18 virtual void Print(Option_t *opt=NULL) const;
19
20 Double_t GetHadronness() const { return fHadronness; }
21 void SetHadronness(Double_t h) { fHadronness = h; }
22
23 ClassDef(MHadronness, 1) // Storage Container for the hadroness
24};
25
26#endif
Note: See TracBrowser for help on using the repository browser.