Changes in src/analysis_bonds.cpp [952f38:2fe971]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/analysis_bonds.cpp
r952f38 r2fe971 12 12 #include "bond.hpp" 13 13 #include "element.hpp" 14 #include " Helpers/Info.hpp"15 #include " Helpers/Verbose.hpp"16 #include " Helpers/Log.hpp"14 #include "info.hpp" 15 #include "verbose.hpp" 16 #include "log.hpp" 17 17 #include "molecule.hpp" 18 18 … … 215 215 if (((OtherAtom->type == first) || (OtherAtom->type == second)) && (theAtom->nr < OtherAtom->nr)) { 216 216 count++; 217 DoLog(1) && (Log() << Verbose(1) << first->name << "-" << second->name<< " bond found between " << *Walker << " and " << *OtherAtom << "." << endl);217 DoLog(1) && (Log() << Verbose(1) << *first << "-" << *second << " bond found between " << *Walker << " and " << *OtherAtom << "." << endl); 218 218 } 219 219 } … … 262 262 if (result) { // check results 263 263 count++; 264 DoLog(1) && (Log() << Verbose(1) << first->name << "-" << second->name << "-" << third->name<< " bond found at " << *Walker << "." << endl);264 DoLog(1) && (Log() << Verbose(1) << *first << "-" << *second << "-" << *third << " bond found at " << *Walker << "." << endl); 265 265 } 266 266 }
Note:
See TracChangeset
for help on using the changeset viewer.