Changeset 7730


Ignore:
Timestamp:
05/23/06 16:01:26 (18 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r7729 r7730  
    1818
    1919                                                 -*-*- END OF LINE -*-*-
     20
     21 2006/05/23 Thomas Bretz
     22
     23   * mranforest/MRanTree.cc:
     24     - should be if(!Finite) instead of if(Finite)
     25
     26
    2027
    2128 2006/05/22 Daniela Dorner
  • trunk/MagicSoft/Mars/mranforest/MRanTree.cc

    r7725 r7730  
    252252
    253253            const Double_t crit=(rln/rld)+(rrn/rrd);
    254             if (TMath::Finite(crit))
     254            if (!TMath::Finite(crit))
    255255                continue;
    256256
     
    405405
    406406            const Double_t crit=(rln/rld)+(rrn/rrd);
    407             if (TMath::Finite(crit))
     407            if (!TMath::Finite(crit))
    408408                continue;
    409409
Note: See TracChangeset for help on using the changeset viewer.