Changeset 7209 for trunk/MagicSoft
- Timestamp:
- 07/22/05 12:15:53 (19 years ago)
- Location:
- trunk/MagicSoft/Mars
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/Changelog
r7208 r7209 43 43 * mreport/MReportCamera.cc: 44 44 - fixed a problem reading files with gkActiveLoadControlVersNum 45 - added a fix for report files before 200407070 45 46 46 47 -
trunk/MagicSoft/Mars/NEWS
r7205 r7209 40 40 counting house (MCameraAUX) and the name of the HV settings file 41 41 (MCameraHV). 42 43 - merrp: Also fixed some problems with wrong versions numbers stated 44 by arehucas and implemented some fixed for old versions (<200407070) 42 45 43 46 - callisto: MCalibrationHiLoCam can now be printed from its context -
trunk/MagicSoft/Mars/mreport/MReportCamera.cc
r7208 r7209 396 396 Bool_t MReportCamera::InterpreteHOT(TString &str) 397 397 { 398 399 398 if (!CheckTag(str, "HOT ")) 400 399 return kFALSE; … … 619 618 return kCONTINUE; 620 619 621 if (!InterpreteHOT(str)) 622 return kCONTINUE; 620 if (ver >= 200407070) 621 { 622 if (!InterpreteHOT(str)) 623 return kCONTINUE; 624 } 623 625 624 626 if (ver > gkActiveLoadControlVersNum)
Note:
See TracChangeset
for help on using the changeset viewer.