Changeset 6141 for trunk/MagicSoft/Mars
- Timestamp:
- 01/31/05 11:22:17 (20 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r6133 r6141 20 20 21 21 -*-*- END OF LINE -*-*- 22 23 2005/01/31 Abelardo Moralejo 24 25 * mpointing/MSrcPosCalc.cc 26 - Create only one instance of MAstroSky2Local for the 27 transformations, instead of two identical ones, as it was before. 28 29 22 30 2005/01/30 Markus Gaug 23 31 -
trunk/MagicSoft/Mars/mpointing/MSrcPosCalc.cc
r6082 r6141 211 211 // Convert sky coordinates of source to local coordinates. Warning! These are not the "true" local 212 212 // coordinates, since this transformation ignores precession and nutation effects. 213 pos *= MAstroSky2Local(*fTime, *fObservatory); 213 const MAstroSky2Local conv(*fTime, *fObservatory); 214 215 pos *= conv; 214 216 215 217 … … 224 226 225 227 pos0.SetRaDec(fPointPos->GetRaRad(), fPointPos->GetDecRad()); 226 pos0 *= MAstroSky2Local(*fTime, *fObservatory);228 pos0 *= conv; 227 229 228 230 // *fLog << dbg << "From MAstroSky2Local, without precession and nutation corrections:" << endl;
Note:
See TracChangeset
for help on using the changeset viewer.