source: trunk/MagicSoft/Mars/mimage/M2dimFunction.h@ 2494

Last change on this file since 2494 was 2475, checked in by wittek, 21 years ago
*** empty log message ***
File size: 1.2 KB
Line 
1#ifndef MARS_M2dimFunction
2#define MARS_M2dimFunction
3
4#ifndef MARS_MParContainer
5#include "MParContainer.h"
6#endif
7
8class MHillas;
9class MGeomCam;
10class MCerPhotEvt;
11
12class M2dimFunction : public MParContainer
13{
14private:
15
16 // free parameters of the 2-dim function describing the shower image
17 Double_t fXbar, fYbar; // position where shower image has its maximum
18 Double_t fDelta; // angle between shower axis and x-axis
19 Double_t fAmp; // amplitude of shower image
20 Double_t fMajor; fMinor; // parameters describing the extension of
21 // the shower along and perpendicular
22 // to the shower axis
23 Double_t fAsym; // parameter describing the asymmetry along the
24 // shower axis
25
26 TVectorD Vinit; // initial values of the parameters
27
28public:
29 M2dimFunction(const char *name=NULL, const char *title=NULL);
30
31 void SetVinit(MHillas *fhillas);
32
33 Fit();
34
35 ClassDef(M2dimFunction, 1) // Container to hold the parameters of the
36 // 2-dim function describing the shower image
37};
38
39#endif
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
Note: See TracBrowser for help on using the repository browser.