Ignore:
Timestamp:
10/08/06 14:09:01 (18 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/manalysis
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/manalysis/MEnergyEstParam.cc

    r2206 r8020  
    359359            return kCONTINUE;
    360360
    361         if (TMath::IsNaN(ir))
     361        // !Finitite includes IsNaN
     362        if (!TMath::Finite(ir))
    362363            *fLog << all << theta << " " << width << " " << length << " " << size << " " << dist << endl;
    363         if (TMath::IsNaN(er))
     364        if (!TMath::Finite(er))
    364365        {
    365366            *fLog << all << theta << " " << width << " " << length << " " << size << " " << dist << endl;
  • trunk/MagicSoft/Mars/manalysis/MEnergyEstParamDanielMkn421.cc

    r2272 r8020  
    358358            return kCONTINUE;
    359359
    360         if (TMath::IsNaN(ir))
     360        // !Finitite includes IsNaN
     361        if (!TMath::Finite(ir))
    361362            *fLog << all << theta << " " << width << " " << length << " " << size << " " << dist << endl;
    362         if (TMath::IsNaN(er))
     363        if (!TMath::Finite(er))
    363364        {
    364365            *fLog << all << theta << " " << width << " " << length << " " << size << " " << dist << endl;
Note: See TracChangeset for help on using the changeset viewer.