Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/analysis_bonds.cpp

    r952f38 r2fe971  
    1212#include "bond.hpp"
    1313#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"
    1717#include "molecule.hpp"
    1818
     
    215215          if (((OtherAtom->type == first) || (OtherAtom->type == second)) && (theAtom->nr < OtherAtom->nr)) {
    216216            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);
    218218          }
    219219        }
     
    262262        if (result) { // check results
    263263          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);
    265265        }
    266266      }
Note: See TracChangeset for help on using the changeset viewer.