Changeset 8912 for trunk/MagicSoft/Mars/mpointing
- Timestamp:
- 06/02/08 10:43:07 (17 years ago)
- Location:
- trunk/MagicSoft/Mars/mpointing
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mpointing/MPointingDev.cc
r8911 r8912 32 32 #include "MPointingDev.h" 33 33 34 #include <TMath.h> 35 34 36 ClassImp(MPointingDev); 35 37 -
trunk/MagicSoft/Mars/mpointing/MPointingDev.h
r8725 r8912 37 37 TVector2 GetDevXY() const { return TVector2(fDevX, fDevY); } 38 38 39 Double_t GetDevZdRad() const { return fDevZd*TMath::DegToRad(); }40 Double_t GetDevAzRad() const { return fDevAz*TMath::DegToRad(); }39 Double_t GetDevZdRad() const;// { return fDevZd*TMath::DegToRad(); } 40 Double_t GetDevAzRad() const;// { return fDevAz*TMath::DegToRad(); } 41 41 42 42 ClassDef(MPointingDev, 1) //Container storing the telescope mispointing -
trunk/MagicSoft/Mars/mpointing/MSrcPosCam.cc
r8801 r8912 115 115 // ----------------------------------------------------------------------- 116 116 // 117 // return TMath::Hypot(fX, fY); 118 // 119 Float_t MSrcPosCam::GetDist() const 120 { 121 return TMath::Hypot(fX, fY); 122 } 123 124 // ----------------------------------------------------------------------- 125 // 117 126 // Get TVector2(fX, fY) 118 127 // -
trunk/MagicSoft/Mars/mpointing/MSrcPosCam.h
r8802 r8912 5 5 #include "MParContainer.h" 6 6 #endif 7 8 #include <TMath.h> 7 9 8 10 class TVector2; … … 27 29 void Add(const TVector2 &v); 28 30 29 Float_t GetDist() const { return TMath::Hypot(fX, fY); }31 Float_t GetDist() const; 30 32 31 33 Float_t GetX() const { return fX; }
Note:
See TracChangeset
for help on using the changeset viewer.