Changeset 5883 for trunk/MagicSoft/Mars/mbase
- Timestamp:
- 01/18/05 17:32:52 (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mbase/MMath.cc
r5836 r5883 70 70 // 71 71 // 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 73 73 // 74 74 Double_t MMath::SignificanceLiMa(Double_t s, Double_t b, Double_t alpha) … … 76 76 const Double_t sum = s+b; 77 77 78 if (s um==0)78 if (s==0 || sum==0) 79 79 return 0; 80 80
Note:
See TracChangeset
for help on using the changeset viewer.