Changeset 2728 for trunk/MagicSoft/Mars/mfilter
- Timestamp:
- 12/20/03 13:46:17 (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mfilter/MFEventSelector2.cc
r2693 r2728 94 94 ///////////////////////////////////////////////////////////////////////////// 95 95 #include "MFEventSelector2.h" 96 97 #include <limits.h> // INT_MAX98 96 99 97 #include <TRandom.h> // gRandom … … 190 188 Bool_t MFEventSelector2::ReadDistribution(MRead &read) 191 189 { 192 if (read.GetEntries() > INT_MAX) // FIXME: LONG_MAX ???193 { 194 *fLog << err << " INT_MAXexceeded." << endl;190 if (read.GetEntries() > kMaxUInt) // FIXME: LONG_MAX ??? 191 { 192 *fLog << err << "kIntMax exceeded." << endl; 195 193 return kFALSE; 196 194 }
Note:
See TracChangeset
for help on using the changeset viewer.