| Line | |
|---|
| 1 | #ifndef MARS_MHVsSize
|
|---|
| 2 | #define MARS_MHVsSize
|
|---|
| 3 |
|
|---|
| 4 | #ifndef MARS_MH
|
|---|
| 5 | #include "MH.h"
|
|---|
| 6 | #endif
|
|---|
| 7 |
|
|---|
| 8 | #ifndef ROOT_TH2
|
|---|
| 9 | #include <TH2.h>
|
|---|
| 10 | #endif
|
|---|
| 11 |
|
|---|
| 12 | class MGeomCam;
|
|---|
| 13 | class MHillas;
|
|---|
| 14 | class MHillasExt;
|
|---|
| 15 | class MNewImagePar;
|
|---|
| 16 |
|
|---|
| 17 | class MHVsSize : public MH
|
|---|
| 18 | {
|
|---|
| 19 | private:
|
|---|
| 20 | MGeomCam *fGeom; //! Conversion from mm to deg
|
|---|
| 21 | MHillas *fHillas; //!
|
|---|
| 22 | MHillasExt *fHillasExt; //!
|
|---|
| 23 | MNewImagePar *fNewImagePar; //!
|
|---|
| 24 |
|
|---|
| 25 | TH2F fLength; // Length
|
|---|
| 26 | TH2F fWidth; // Width
|
|---|
| 27 |
|
|---|
| 28 | TH2F fDist; // Distance to Camera Center
|
|---|
| 29 | TH2F fConc1; // Angle between Length axis and x-axis
|
|---|
| 30 |
|
|---|
| 31 | TH2F fM3Long; //
|
|---|
| 32 | TH2F fArea; //
|
|---|
| 33 |
|
|---|
| 34 | public:
|
|---|
| 35 | MHVsSize(const char *name=NULL, const char *title=NULL);
|
|---|
| 36 |
|
|---|
| 37 | Bool_t SetupFill(const MParList *pList);
|
|---|
| 38 | Int_t Fill(const MParContainer *par, const Stat_t w=1);
|
|---|
| 39 |
|
|---|
| 40 | void Draw(Option_t *opt=NULL);
|
|---|
| 41 |
|
|---|
| 42 | ClassDef(MHVsSize, 2) // Container which holds histograms for image parameters vs size
|
|---|
| 43 | };
|
|---|
| 44 |
|
|---|
| 45 | #endif
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.