source: trunk/MagicSoft/Mars/manalysis/MHillasSrc.h@ 1846

Last change on this file since 1846 was 1524, checked in by tbretz, 22 years ago
*** empty log message ***
File size: 1.7 KB
Line 
1#ifndef MARS_MHillasSrc
2#define MARS_MHillasSrc
3
4#ifndef MARS_MHillas
5#include "MHillas.h"
6#endif
7
8class MSrcPosCam;
9
10class MHillasSrc : public MParContainer
11{
12private:
13 const MHillas *fHillas; //! Input parameters
14 const MSrcPosCam *fSrcPos; //! Source position in the camere
15
16 Float_t fAlpha; // [deg] angle of major axis with vector to src
17 Float_t fDist; // [mm] distance between src and center of ellipse
18 Float_t fHeadTail; // [mm]
19 Float_t fCosDeltaAlpha; // [1] cosine of angle between d and a
20
21public:
22 MHillasSrc(const char *name=NULL, const char *title=NULL);
23
24 void SetSrcPos(const MSrcPosCam *pos) { fSrcPos = pos; }
25 const MSrcPosCam *GetSrcPos() const { return fSrcPos; }
26
27 void Reset();
28
29 Float_t GetLength() const { return fHillas->GetLength(); }
30 Float_t GetWidth() const { return fHillas->GetWidth(); }
31 Float_t GetDelta() const { return fHillas->GetDelta(); }
32 Float_t GetSize() const { return fHillas->GetSize(); }
33 Float_t GetMeanX() const { return fHillas->GetMeanX(); }
34 Float_t GetMeanY() const { return fHillas->GetMeanY(); }
35 Float_t GetAlpha() const { return fAlpha; }
36 Float_t GetDist() const { return fDist; }
37 Float_t GetHeadTail() const { return fHeadTail; }
38 Float_t GetCosDeltaAlpha() const { return fCosDeltaAlpha; }
39
40 void Print(Option_t *opt=NULL) const;
41
42 virtual Bool_t Calc(const MHillas *hillas);
43
44 void Set(const TArrayF &arr);
45
46 //virtual void AsciiRead(ifstream &fin);
47 //virtual void AsciiWrite(ofstream &fout) const;
48
49 ClassDef(MHillasSrc, 3) // Container to hold source position dependant parameters
50};
51
52#endif
Note: See TracBrowser for help on using the repository browser.