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