Changeset 8877
- Timestamp:
- 02/24/08 11:37:49 (17 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r8868 r8877 18 18 19 19 -*-*- END OF LINE -*-*- 20 21 2008/02/24 Thomas Bretz 22 23 * mbase/MLog.h: 24 - added a getter for the OutputLevel (for debugging) 25 26 * mpointing/MPointing.h: 27 - added a memberfunction to calculate the Abs-value 28 29 * mpointing/PointingLinkDef.h: 30 - added RaDec 31 32 20 33 21 34 2008/02/21 Daniela Dorner -
trunk/MagicSoft/Mars/mbase/MLog.h
r8315 r8877 1 1 /* ======================================================================== *\ 2 ! $Name: not supported by cvs2svn $:$Id: MLog.h,v 1.3 7 2007-02-13 11:06:53tbretz Exp $2 ! $Name: not supported by cvs2svn $:$Id: MLog.h,v 1.38 2008-02-24 11:37:48 tbretz Exp $ 3 3 \* ======================================================================== */ 4 4 #ifndef MARS_MLog … … 143 143 int GetDebugLevel() const { return fDebugLevel; } 144 144 void SetOutputLevel(int i) { fOutputLevel = i; } 145 int GetOutputLevel() const { return fOutputLevel; } 145 146 void SetOutputDevice(int i) { fDevice = i; } 146 147 void EnableOutputDevice(Flags_t f) { fDevice |= f; } -
trunk/MagicSoft/Mars/mpointing/MPointing.h
r8829 r8877 92 92 double Ratio() const { return fX/fY; } 93 93 void Round() { fX=(int)(floor(fX+.5)); fY=(int)(floor(fY+.5)); } 94 void Abs() { fX=fabs(fX); fY=fabs(fY); } 94 95 95 96 ClassDef(ZdAz, 0) -
trunk/MagicSoft/Mars/mpointing/PointingLinkDef.h
r7560 r8877 25 25 #pragma link C++ class AltAz+; 26 26 #pragma link C++ class ZdAz+; 27 #pragma link C++ class RaDec+; 27 28 28 29 #endif
Note:
See TracChangeset
for help on using the changeset viewer.