Line | |
---|
1 | ///////////////////////////////////////////////////////////////////////
|
---|
2 | //
|
---|
3 | // MHHillas
|
---|
4 | //
|
---|
5 | // This class contains histograms for every Hillas parameter
|
---|
6 | //
|
---|
7 | ///////////////////////////////////////////////////////////////////////
|
---|
8 |
|
---|
9 | #include "MH.h"
|
---|
10 |
|
---|
11 | ClassImp(MH);
|
---|
12 |
|
---|
13 | MH::MH(const char *name, const char *title)
|
---|
14 | {
|
---|
15 | //
|
---|
16 | // set the name and title of this object
|
---|
17 | //
|
---|
18 | *fName = name ? name : "MH" ;
|
---|
19 | *fTitle = title ? title : "Base class for Mars histograms" ;
|
---|
20 | }
|
---|
21 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.