Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/atom_trajectoryparticle.cpp

    r112b09 r1513a74  
    66 */
    77
    8 #include "Helpers/MemDebug.hpp"
    9 
    108#include "atom.hpp"
    119#include "atom_trajectoryparticle.hpp"
    1210#include "config.hpp"
    1311#include "element.hpp"
    14 #include "info.hpp"
    1512#include "log.hpp"
    1613#include "parser.hpp"
     
    7471void TrajectoryParticle::ResizeTrajectory(int MaxSteps)
    7572{
    76   Info FunctionInfo(__func__);
    7773  if (Trajectory.R.size() <= (unsigned int)(MaxSteps)) {
    78     DoLog(0) && (Log() << Verbose(0) << "Increasing size for trajectory array of " << nr << " from " << Trajectory.R.size() << " to " << (MaxSteps+1) << "." << endl);
     74    //Log() << Verbose(0) << "Increasing size for trajectory array of " << keyword << " to " << (MaxSteps+1) << "." << endl;
    7975    Trajectory.R.resize(MaxSteps+1);
    8076    Trajectory.U.resize(MaxSteps+1);
Note: See TracChangeset for help on using the changeset viewer.