source: trunk/MagicSoft/Mars/mpointing/MSrcPosCam.h@ 4844

Last change on this file since 4844 was 4710, checked in by tbretz, 20 years ago
*** empty log message ***
File size: 1014 bytes
Line 
1#ifndef MARS_MSrcPosCam
2#define MARS_MSrcPosCam
3
4#ifndef MARS_MParContainer
5#include "MParContainer.h"
6#endif
7
8class TVector2;
9
10class MSrcPosCam : public MParContainer
11{
12private:
13 Float_t fX; // [mm] x position of source in camera
14 Float_t fY; // [mm] y position of source in camera
15
16public:
17 MSrcPosCam(const char *name=NULL, const char *title=NULL);
18
19 void Clear(Option_t *) { fX = 0; fY = 0; }
20
21 void SetX(Float_t x) { fX = x; }
22 void SetY(Float_t y) { fY = y; }
23 void SetXY(Float_t x, Float_t y) { fX = x; fY = y; }
24 void SetXY(const TVector2 &v);
25
26 Float_t GetX() const { return fX; }
27 Float_t GetY() const { return fY; }
28 TVector2 GetXY() const;
29
30 void Print(Option_t *opt=NULL) const;
31 void StreamPrimitive(ofstream &out) const;
32
33 //void AsciiRead(ifstream &fin);
34 //void AsciiWrite(ofstream &fout) const;
35
36 ClassDef(MSrcPosCam, 1) // container to store source position in the camera plain
37};
38
39#endif
Note: See TracBrowser for help on using the repository browser.