source: releases/Mars.2014.05.26/mimage/MHVsSize.h@ 18029

Last change on this file since 18029 was 9343, checked in by tbretz, 16 years ago
*** empty log message ***
File size: 934 bytes
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
12class MGeomCam;
13class MHillas;
14class MHillasExt;
15class MNewImagePar;
16
17class MHVsSize : public MH
18{
19private:
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
34public:
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.