1 | #ifndef MARS_MHillasSrc
|
---|
2 | #define MARS_MHillasSrc
|
---|
3 |
|
---|
4 | #ifndef MARS_MParContainer
|
---|
5 | #include "MParContainer.h"
|
---|
6 | #endif
|
---|
7 |
|
---|
8 | class TArrayF;
|
---|
9 |
|
---|
10 | class MHillas;
|
---|
11 | class MGeomCam;
|
---|
12 | class MSrcPosCam;
|
---|
13 |
|
---|
14 | class MHillasSrc : public MParContainer
|
---|
15 | {
|
---|
16 | private:
|
---|
17 | const MSrcPosCam *fSrcPos; //! Source position in the camere
|
---|
18 |
|
---|
19 | Float_t fAlpha; // [deg] angle of major axis with vector to src
|
---|
20 | Float_t fDist; // [mm] distance between src and center of ellipse
|
---|
21 | Float_t fCosDeltaAlpha; // [1] cosine of angle between d and a
|
---|
22 |
|
---|
23 | Float_t fDCA; // [mm] Distance to closest approach 'DCA'
|
---|
24 | Float_t fDCADelta; // [deg] Angle of the shower axis with respect to the x-axis
|
---|
25 |
|
---|
26 | public:
|
---|
27 | MHillasSrc(const char *name=NULL, const char *title=NULL);
|
---|
28 | MHillasSrc(const MHillasSrc &h) { h.Copy(*this); }
|
---|
29 |
|
---|
30 | void Copy(TObject &o) const
|
---|
31 | {
|
---|
32 | MHillasSrc &src = static_cast<MHillasSrc&>(o);
|
---|
33 | src.fSrcPos = fSrcPos;
|
---|
34 | src.fAlpha = fAlpha;
|
---|
35 | src.fDist = fDist;
|
---|
36 | src.fCosDeltaAlpha = fCosDeltaAlpha;
|
---|
37 | src.fDCA = fDCA;
|
---|
38 | src.fDCADelta = fDCADelta;
|
---|
39 | }
|
---|
40 |
|
---|
41 | void SetSrcPos(const MSrcPosCam *pos) { fSrcPos = pos; }
|
---|
42 | const MSrcPosCam *GetSrcPos() const { return fSrcPos; }
|
---|
43 |
|
---|
44 | void Reset();
|
---|
45 |
|
---|
46 | Float_t GetAlpha() const { return fAlpha; }
|
---|
47 | Float_t GetDist() const { return fDist; }
|
---|
48 | Float_t GetCosDeltaAlpha() const { return fCosDeltaAlpha; }
|
---|
49 | Float_t GetDCA() const { return fDCA; }
|
---|
50 | Float_t GetDCADelta() const { return fDCADelta; }
|
---|
51 |
|
---|
52 | void Print(Option_t *opt=NULL) const;
|
---|
53 | void Print(const MGeomCam &geom) const;
|
---|
54 | void Paint(Option_t *opt=NULL);
|
---|
55 |
|
---|
56 | virtual Int_t Calc(const MHillas &hillas);
|
---|
57 |
|
---|
58 | void Set(const TArrayF &arr);
|
---|
59 |
|
---|
60 | ClassDef(MHillasSrc, 5) // Container to hold source position dependant parameters
|
---|
61 | };
|
---|
62 |
|
---|
63 | #endif
|
---|