Changeset 7202 for trunk/MagicSoft/Mars/mreport/MReportStarguider.h
- Timestamp:
- 07/21/05 11:44:05 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mreport/MReportStarguider.h
r7197 r7202 4 4 #ifndef MARS_MReport 5 5 #include "MReport.h" 6 #endif 7 8 #ifndef ROOT_TVector2 9 #include <TVector2.h> 6 10 #endif 7 11 … … 31 35 Double_t GetDevZd() const { return fDevZd; } 32 36 Double_t GetDevAbs() const; 37 TVector2 GetDev() const { return TVector2(fDevZd, fDevAz); } 33 38 34 39 Double_t GetNominalZd() const { return fNominalZd; } 35 40 Double_t GetNominalAz() const { return fNominalAz; } 41 TVector2 GetNominalPos() const { return TVector2(fNominalZd, fNominalAz); } 36 42 37 43 Float_t GetCameraCenterX() const { return fCameraCenterX; } 38 44 Float_t GetCameraCenterY() const { return fCameraCenterY; } 45 TVector2 GetCameraCenter() const { return TVector2(fCameraCenterX, fCameraCenterY); } 39 46 40 47 UInt_t GetNumIdentifiedStars() const { return fNumIdentifiedStars; }
Note:
See TracChangeset
for help on using the changeset viewer.