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