Line | |
---|
1 | #ifndef MARS_MHadronness
|
---|
2 | #define MARS_MHadronness
|
---|
3 |
|
---|
4 | #ifndef MARS_MParContainer
|
---|
5 | #include "MParContainer.h"
|
---|
6 | #endif
|
---|
7 |
|
---|
8 | class MHadronness : public MParContainer
|
---|
9 | {
|
---|
10 | private:
|
---|
11 | Double_t fHadronness; // [0,1] Hadronness
|
---|
12 |
|
---|
13 | public:
|
---|
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.