/* * VMGDataFused.hpp * * Created on: Aug 8, 2012 * Author: heber */ #ifndef VMGDATAFUSED_HPP_ #define VMGDATAFUSED_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif /** This namespace contains a key for each data member in MPQCData. * * We need these keys as enumeration of the data members to allow * generic algorithms to work on it. * * \note forward declarations are not enough as we need the true (but empty) * instance when going throughb the list with boost::mpl::for_each. */ namespace VMGDataFused { // keys for sampled_potential struct sampled_potential {}; struct energy_potential {}; struct energy_long {}; // keys for longrange struct potential_longrange {}; struct potential_shortrange {}; struct energy_longrange {}; struct energy_shortrange {}; } #endif /* VMGDATAFUSED_HPP_ */