source: trunk/MagicSoft/Mars/mimage/MHillasSrc.h@ 2004

Last change on this file since 2004 was 2004, checked in by tbretz, 22 years ago
*** empty log message ***
File size: 1.6 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 fCosDeltaAlpha; // [1] cosine of angle between d and a
19
20public:
21 MHillasSrc(const char *name=NULL, const char *title=NULL);
22
23 void SetSrcPos(const MSrcPosCam *pos) { fSrcPos = pos; }
24 const MSrcPosCam *GetSrcPos() const { return fSrcPos; }
25
26 void Reset();
27
28 Float_t GetLength() const { return fHillas->GetLength(); }
29 Float_t GetWidth() const { return fHillas->GetWidth(); }
30 Float_t GetDelta() const { return fHillas->GetDelta(); }
31 Float_t GetSize() const { return fHillas->GetSize(); }
32 Float_t GetMeanX() const { return fHillas->GetMeanX(); }
33 Float_t GetMeanY() const { return fHillas->GetMeanY(); }
34 Float_t GetAlpha() const { return fAlpha; }
35 Float_t GetDist() const { return fDist; }
36 Float_t GetCosDeltaAlpha() const { return fCosDeltaAlpha; }
37
38 void Print(Option_t *opt=NULL) const;
39
40 virtual Bool_t Calc(const MHillas *hillas);
41
42 void Set(const TArrayF &arr);
43
44 //virtual void AsciiRead(ifstream &fin);
45 //virtual void AsciiWrite(ofstream &fout) const;
46
47 ClassDef(MHillasSrc, 4) // Container to hold source position dependant parameters
48};
49
50#endif
Note: See TracBrowser for help on using the repository browser.