Changes in classes/DelphesStream.cc [341014c:cab38f6] in git
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
classes/DelphesStream.cc
r341014c rcab38f6 17 17 */ 18 18 19 19 20 /** \class DelphesStream 20 21 * … … 27 28 #include "classes/DelphesStream.h" 28 29 30 #include <stdlib.h> 31 #include <limits.h> 32 #include <string.h> 33 #include <stdio.h> 29 34 #include <errno.h> 30 #include <limits.h>31 35 #include <math.h> 32 #include <stdio.h>33 #include <stdlib.h>34 #include <string.h>35 36 36 37 #include <iostream> … … 64 65 if(fFirstHugePos && value == HUGE_VAL) 65 66 { 66 fFirstHugePos = false; 67 fFirstHugePos = false; 67 68 cout << "** WARNING: too large positive value, return " << value << endl; 68 69 } 69 70 else if(fFirstHugeNeg && value == -HUGE_VAL) 70 71 { 71 fFirstHugeNeg = false; 72 fFirstHugeNeg = false; 72 73 cout << "** WARNING: too large negative value, return " << value << endl; 73 74 } 74 75 else if(fFirstZero) 75 76 { 76 fFirstZero = false; 77 fFirstZero = false; 77 78 value = 0.0; 78 79 cout << "** WARNING: too small value, return " << value << endl; … … 93 94 if(fFirstLongMin && value == LONG_MIN) 94 95 { 95 fFirstLongMin = false; 96 fFirstLongMin = false; 96 97 cout << "** WARNING: too large positive value, return " << value << endl; 97 98 } 98 99 else if(fFirstLongMax && value == LONG_MAX) 99 100 { 100 fFirstLongMax = false; 101 fFirstLongMax = false; 101 102 cout << "** WARNING: too large negative value, return " << value << endl; 102 103 }
Note:
See TracChangeset
for help on using the changeset viewer.