Changeset 7214 for trunk/MagicSoft/Mars/mpointing/MPointing.h
- Timestamp:
- 07/22/05 18:47:21 (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mpointing/MPointing.h
r4966 r7214 16 16 // --------------------------------------------------- 17 17 // FIXME: Replace coord.h completely with this! 18 #ifndef __MARS__19 #include "coord.h"20 #else18 //#ifndef __MARS__ 19 //#include "coord.h" 20 //#else 21 21 #include <TVector2.h> 22 22 class AltAz : public TVector2 … … 26 26 { 27 27 } 28 AltAz(const AltAz &aa) : TVector2(aa) { } 28 29 Double_t Alt() const { return fX; } 29 30 Double_t Az() const { return fY; } … … 37 38 { 38 39 } 40 ZdAz(const ZdAz &aa) : TVector2(aa) { } 39 41 Double_t Zd() const { return fX; } 40 42 Double_t Az() const { return fY; } 41 43 ClassDef(ZdAz, 1) 42 44 }; 43 #endif45 //#endif 44 46 // --------------------------------------------------- 45 47
Note:
See TracChangeset
for help on using the changeset viewer.