Changeset 7209 for trunk/MagicSoft


Ignore:
Timestamp:
07/22/05 12:15:53 (19 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r7208 r7209  
    4343   * mreport/MReportCamera.cc:
    4444     - fixed a problem reading files with gkActiveLoadControlVersNum
     45     - added a fix for report files before 200407070
    4546
    4647
  • trunk/MagicSoft/Mars/NEWS

    r7205 r7209  
    4040     counting house (MCameraAUX) and the name of the HV settings file
    4141     (MCameraHV).
     42
     43   - merrp: Also fixed some problems with wrong versions numbers stated
     44     by arehucas and implemented some fixed for old versions (<200407070)
    4245
    4346   - callisto: MCalibrationHiLoCam can now be printed from its context
  • trunk/MagicSoft/Mars/mreport/MReportCamera.cc

    r7208 r7209  
    396396Bool_t MReportCamera::InterpreteHOT(TString &str)
    397397{
    398 
    399398    if (!CheckTag(str, "HOT "))
    400399        return kFALSE;
     
    619618        return kCONTINUE;
    620619
    621     if (!InterpreteHOT(str))
    622         return kCONTINUE;
     620    if (ver >= 200407070)
     621    {
     622        if (!InterpreteHOT(str))
     623            return kCONTINUE;
     624    }
    623625
    624626    if (ver > gkActiveLoadControlVersNum)
Note: See TracChangeset for help on using the changeset viewer.