Changeset 7796 for trunk


Ignore:
Timestamp:
07/18/06 22:17:54 (18 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Cosy
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Cosy/Changelog

    r7794 r7796  
    11                                                                  -*-*- END -*-*-
     2
     3 2006/07/18 Thomas Bretz
     4
     5   * base/MStar.h:
     6     - fixed a really stupid bug in the constructor, which automatically
     7       converted the magnitudes into ints.
     8
     9
    210
    311 2006/07/16 Thomas Bretz
  • trunk/MagicSoft/Cosy/base/MStar.h

    r1810 r7796  
    1313
    1414public:
    15     MStar(Double_t x=0, Double_t y=0, Int_t m=0) : fX(x), fY(y), fMag(m) {}
     15    MStar(Double_t x=0, Double_t y=0, Double_t m=0) : fX(x), fY(y), fMag(m) {}
    1616    MStar(const MStar &p) { fX = p.fX; fY=p.fY; fMag=p.fMag; }
    1717    Double_t GetX() const   { return fX; }
Note: See TracChangeset for help on using the changeset viewer.