/* * atom_trajectoryparticleinfo.hpp * * Created on: Oct 19, 2009 * Author: heber */ #ifndef ATOM_TRAJECTORYPARTICLEINFO_HPP_ #define ATOM_TRAJECTORYPARTICLEINFO_HPP_ using namespace std; /*********************************************** includes ***********************************/ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include #include "vector.hpp" /********************************************** declarations *******************************/ class TrajectoryParticleInfo { public: struct { vector R; //!< position vector vector U; //!< velocity vector vector F; //!< last force vector } Trajectory; int FixedIon; //!< config variable that states whether forces act on the ion or not TrajectoryParticleInfo(); ~TrajectoryParticleInfo(); private: }; #endif /* ATOM_TRAJECTORYPARTICLEINFO_HPP_ */