source: trunk/MagicSoft/Mars/manalysis/MHadroness.h@ 1399

Last change on this file since 1399 was 1337, checked in by tbretz, 22 years ago
*** empty log message ***
File size: 543 bytes
Line 
1#ifndef MARS_MHadroness
2#define MARS_MHadroness
3
4#ifndef MARS_MParContainer
5#include "MParContainer.h"
6#endif
7
8class MHadroness : public MParContainer
9{
10private:
11 Double_t fHadroness; // [0,1] Hadroness
12
13public:
14 MHadroness(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 GetHadroness() const { return fHadroness; }
21 void SetHadroness(Double_t h) { fHadroness = h; }
22
23 ClassDef(MHadroness, 1) // Storage Container for the hadroness
24};
25
26#endif
Note: See TracBrowser for help on using the repository browser.