- Timestamp:
- 07/18/06 22:17:54 (18 years ago)
- Location:
- trunk/MagicSoft/Cosy
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Cosy/Changelog
r7794 r7796 1 1 -*-*- 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 2 10 3 11 2006/07/16 Thomas Bretz -
trunk/MagicSoft/Cosy/base/MStar.h
r1810 r7796 13 13 14 14 public: 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) {} 16 16 MStar(const MStar &p) { fX = p.fX; fY=p.fY; fMag=p.fMag; } 17 17 Double_t GetX() const { return fX; }
Note:
See TracChangeset
for help on using the changeset viewer.