Changeset 3498
- Timestamp:
- 03/15/04 13:11:14 (21 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r3497 r3498 18 18 19 19 -*-*- END OF LINE -*-*- 20 21 22 23 2004/03/15: Wolfgang Wittek 24 25 * mastro/MObservatory.[h,cc] 26 - remove bugs in RotationAngle(theta, phi, sin, cos) 27 28 20 29 2004/03/15: Thomas Bretz 21 30 -
trunk/MagicSoft/Mars/mastro/MObservatory.cc
r3497 r3498 138 138 const Double_t denom = TMath::Sqrt(v1*v1 + v2*v2); 139 139 140 sin = (fCosLatitude*sinp)/ denom;141 cos = sinl + cosl*cosp/ denom;140 sin = fCosLatitude*sinp / denom; 141 cos = (sinl - cosl*cosp) / denom; 142 142 } 143 143
Note:
See TracChangeset
for help on using the changeset viewer.