Changes in src/helpers.hpp [76102e:a67d19]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/helpers.hpp
r76102e ra67d19 114 114 115 115 if (LookupTable != NULL) { 116 Log() << Verbose(0) << "Pointer for Lookup table is not NULL! Aborting ..." <<endl;116 DoLog(0) && (Log() << Verbose(0) << "Pointer for Lookup table is not NULL! Aborting ..." <<endl); 117 117 return false; 118 118 } … … 127 127 } 128 128 if (count <= 0) { 129 Log() << Verbose(0) << "Count of lookup list is 0 or less." << endl;129 DoLog(0) && (Log() << Verbose(0) << "Count of lookup list is 0 or less." << endl); 130 130 return false; 131 131 } … … 134 134 LookupTable = Calloc<T*>(count, "CreateFatherLookupTable - **LookupTable"); 135 135 if (LookupTable == NULL) { 136 eLog() << Verbose(0) << "LookupTable memory allocation failed!" << endl;136 DoeLog(0) && (eLog()<< Verbose(0) << "LookupTable memory allocation failed!" << endl); 137 137 performCriticalExit(); 138 138 status = false; … … 146 146 LookupTable[AtomNo] = Walker; 147 147 } else { 148 Log() << Verbose(0) << "Walker " << *Walker << " exceeded range of nuclear ids [0, " << count << ")." << endl;148 DoLog(0) && (Log() << Verbose(0) << "Walker " << *Walker << " exceeded range of nuclear ids [0, " << count << ")." << endl); 149 149 status = false; 150 150 break;
Note:
See TracChangeset
for help on using the changeset viewer.