Ignore:
Timestamp:
01/18/05 17:32:52 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mbase/MMath.cc

    r5836 r5883  
    7070//
    7171//  Returns -1 if sum<0 or alpha<0 or the argument of sqrt<0
    72 //  Returns  0 if s+b==0
     72//  Returns  0 if s+b==0 or s==0
    7373//
    7474Double_t MMath::SignificanceLiMa(Double_t s, Double_t b, Double_t alpha)
     
    7676    const Double_t sum = s+b;
    7777
    78     if (sum==0)
     78    if (s==0 || sum==0)
    7979        return 0;
    8080
Note: See TracChangeset for help on using the changeset viewer.