Changeset 7487
- Timestamp:
- 02/09/06 10:35:38 (19 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r7486 r7487 18 18 19 19 -*-*- END OF LINE -*-*- 20 2006/02/09 Thomas Bretz 21 22 * mreport/MReport.cc: 23 - invented new fake CC report file version 200509300 for a change 24 in the starguider format (the already implemented last values 25 dissapeared again!) which is not noticed in the format version. 26 27 * mreport/MReportCC.cc, mreport/MReportStarguider.cc: 28 - fixed support for ver 200510250 29 30 31 20 32 2006/02/08 Daniela Dorner 21 33 -
trunk/MagicSoft/Mars/mreport/MReport.cc
r7208 r7487 143 143 ver=200502240; 144 144 145 if (ver==200508290 && GetMjd()>53643.5) 146 ver=200509300; 147 145 148 // Interprete body (contents) of report 146 149 const Int_t rc = InterpreteBody(str, ver); -
trunk/MagicSoft/Mars/mreport/MReportCC.cc
r7447 r7487 244 244 return kCONTINUE; 245 245 246 if (ver> 200510250)246 if (ver>=200510250) 247 247 if (!InterpreteRecTemp(str)) 248 248 return kCONTINUE; -
trunk/MagicSoft/Mars/mreport/MReportStarguider.cc
r7364 r7487 99 99 str = str.Strip(TString::kBoth); 100 100 101 if (ver <200503170)101 if (ver<200503170) 102 102 { 103 103 // Fix a problem with the units … … 110 110 MAstro::String2Angle(str, fNominalAz); // Nom Az 111 111 112 if (ver <200503220)112 if (ver<200503220) 113 113 { 114 114 // Until a fix in the software the written position was nonsense … … 129 129 str = str.Strip(TString::kBoth); 130 130 131 if (ver >= 200508290) 132 { 131 // Seems that hasn't yet been implemented 132 if (ver>=200508290 && ver<200509300) 133 { 133 134 // For the momment this are only placeholders.... 134 135 Float_t dx, dy;
Note:
See TracChangeset
for help on using the changeset viewer.