Changeset 6f9d14 for molecuilder
- Timestamp:
- Oct 14, 2009, 11:01:47 AM (16 years ago)
- Children:
- c419f2
- Parents:
- 57cfb7
- File:
-
- 1 edited
-
molecuilder/src/analysis_correlation.hpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
molecuilder/src/analysis_correlation.hpp
r57cfb7 r6f9d14 64 64 bool FirstMaxFound = false; 65 65 66 if (map == NULL) { 67 cerr << "Nothing to min/max, map is NULL!" << endl; 68 return; 69 } 70 66 71 for (typename T::iterator runner = map->begin(); runner != map->end(); ++runner) { 67 72 if ((min > runner->first) || (!FirstMinFound)) { … … 95 100 pair <BinPairMap::iterator, bool > BinPairMapInserter; 96 101 102 if (map == NULL) { 103 cerr << "Nothing to bin, is NULL!" << endl; 104 return outmap; 105 } 106 97 107 if (BinStart == BinEnd) { // if same, find range ourselves 98 108 GetMinMax( map, start, end);
Note:
See TracChangeset
for help on using the changeset viewer.
