Changeset 8877 for trunk/MagicSoft/Mars


Ignore:
Timestamp:
02/24/08 11:37:49 (17 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r8868 r8877  
    1818
    1919                                                 -*-*- 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
    2033
    2134 2008/02/21 Daniela Dorner
  • trunk/MagicSoft/Mars/mbase/MLog.h

    r8315 r8877  
    11/* ======================================================================== *\
    2 !  $Name: not supported by cvs2svn $:$Id: MLog.h,v 1.37 2007-02-13 11:06:53 tbretz Exp $
     2!  $Name: not supported by cvs2svn $:$Id: MLog.h,v 1.38 2008-02-24 11:37:48 tbretz Exp $
    33\* ======================================================================== */
    44#ifndef MARS_MLog
     
    143143    int  GetDebugLevel() const          { return fDebugLevel;  }
    144144    void SetOutputLevel(int i)          { fOutputLevel =  i;   }
     145    int  GetOutputLevel() const         { return fOutputLevel; }
    145146    void SetOutputDevice(int i)         { fDevice      =  i;   }
    146147    void EnableOutputDevice(Flags_t f)  { fDevice     |=  f;   }
  • trunk/MagicSoft/Mars/mpointing/MPointing.h

    r8829 r8877  
    9292    double Ratio() const { return fX/fY; }
    9393    void Round()         { fX=(int)(floor(fX+.5)); fY=(int)(floor(fY+.5)); }
     94    void Abs()           { fX=fabs(fX); fY=fabs(fY); }
    9495
    9596    ClassDef(ZdAz, 0)
  • trunk/MagicSoft/Mars/mpointing/PointingLinkDef.h

    r7560 r8877  
    2525#pragma link C++ class AltAz+;
    2626#pragma link C++ class ZdAz+;
     27#pragma link C++ class RaDec+;
    2728
    2829#endif
Note: See TracChangeset for help on using the changeset viewer.