Changes in src/atom_trajectoryparticle.cpp [1513a74:112b09]
- File:
-
- 1 edited
-
src/atom_trajectoryparticle.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/atom_trajectoryparticle.cpp
r1513a74 r112b09 6 6 */ 7 7 8 #include "Helpers/MemDebug.hpp" 9 8 10 #include "atom.hpp" 9 11 #include "atom_trajectoryparticle.hpp" 10 12 #include "config.hpp" 11 13 #include "element.hpp" 14 #include "info.hpp" 12 15 #include "log.hpp" 13 16 #include "parser.hpp" … … 71 74 void TrajectoryParticle::ResizeTrajectory(int MaxSteps) 72 75 { 76 Info FunctionInfo(__func__); 73 77 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); 75 79 Trajectory.R.resize(MaxSteps+1); 76 80 Trajectory.U.resize(MaxSteps+1);
Note:
See TracChangeset
for help on using the changeset viewer.
