source: trunk/MagicSoft/Mars/manalysis/MHillasExt.h@ 1211

Last change on this file since 1211 was 1203, checked in by rkb, 23 years ago
*** empty log message ***
File size: 999 bytes
Line 
1#ifndef MARS_MHillasExt
2#define MARS_MHillasExt
3
4#ifndef MARS_MHillas
5#include "MHillas.h"
6#endif
7
8class MGeomCam;
9class MCerPhotEvt;
10
11class MHillasExt : public MHillas
12{
13private:
14 // for description see MExtHillas.cc
15 Float_t fConc; // [ratio] concentration ratio: sum of the two highest pixels / fSize
16 Float_t fConc1; // [ratio] concentration ratio: sum of the highest pixel / fSize
17 Float_t fAsym; // [mm] fDist minus dist: center of ellipse, highest pixel
18 Float_t fM3Long; // [mm] 3rd moment (e-weighted) along major axis
19 Float_t fM3Trans; // [mm] 3rd moment (e-weighted) along minor axis
20
21public:
22 MHillasExt(const char *name=NULL, const char *title=NULL);
23
24 void Reset();
25
26 Bool_t Calc(const MGeomCam &geom, const MCerPhotEvt &pix);
27
28 void Print(Option_t *opt=NULL) const;
29
30 void AsciiRead(ifstream &fin);
31 void AsciiWrite(ofstream &fout) const;
32
33 ClassDef(MHillasExt, 1) // Storage Container for extended Hillas Parameter
34};
35#endif
Note: See TracBrowser for help on using the repository browser.