/** * @file interface_particles_cf.hpp * @author Julian Iseringhausen * @date Fri Sep 16 13:17:36 2011 * * @brief Interface for computing forces and energies in * particle systems. Requires a config file. * */ #ifndef INTERFACE_PARTICLES_CF_HPP #define INTERFACE_PARTIVLES_CF_HPP #include #include "base/particle.hpp" namespace VMG { class Grid; class InterfaceParticlesCF { public: InterfaceParticlesCF(const char* filename); private: void LoadDatafile(const std::string& conf_filename, const std::string& data_filename); void CommParticles(const Grid& grid); std::vector data_vec; }; } #endif /* INTERFACE_PARTICLES_CF_HPP */