Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/atom_trajectoryparticle.cpp

    r1513a74 r112b09  
    66 */
    77
     8#include "Helpers/MemDebug.hpp"
     9
    810#include "atom.hpp"
    911#include "atom_trajectoryparticle.hpp"
    1012#include "config.hpp"
    1113#include "element.hpp"
     14#include "info.hpp"
    1215#include "log.hpp"
    1316#include "parser.hpp"
     
    7174void TrajectoryParticle::ResizeTrajectory(int MaxSteps)
    7275{
     76  Info FunctionInfo(__func__);
    7377  if (Trajectory.R.size() <= (unsigned int)(MaxSteps)) {
    74     //Log() << Verbose(0) << "Increasing size for trajectory array of " << keyword << " to " << (MaxSteps+1) << "." << endl;
     78    DoLog(0) && (Log() << Verbose(0) << "Increasing size for trajectory array of " << nr << " from " << Trajectory.R.size() << " to " << (MaxSteps+1) << "." << endl);
    7579    Trajectory.R.resize(MaxSteps+1);
    7680    Trajectory.U.resize(MaxSteps+1);
Note: See TracChangeset for help on using the changeset viewer.