Ignore:
Timestamp:
12/20/03 13:46:17 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mfilter/MFEventSelector2.cc

    r2693 r2728  
    9494/////////////////////////////////////////////////////////////////////////////
    9595#include "MFEventSelector2.h"
    96 
    97 #include <limits.h>         // INT_MAX
    9896
    9997#include <TRandom.h>        // gRandom
     
    190188Bool_t MFEventSelector2::ReadDistribution(MRead &read)
    191189{
    192     if (read.GetEntries() > INT_MAX) // FIXME: LONG_MAX ???
    193     {
    194         *fLog << err << "INT_MAX exceeded." << endl;
     190    if (read.GetEntries() > kMaxUInt) // FIXME: LONG_MAX ???
     191    {
     192        *fLog << err << "kIntMax exceeded." << endl;
    195193        return kFALSE;
    196194    }
Note: See TracChangeset for help on using the changeset viewer.