/* * VMGJob.hpp * * Created on: Jul 12, 2012 * Author: heber */ #ifndef VMGJOB_HPP_ #define VMGJOB_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include "boost/serialization/export.hpp" #include "boost/serialization/vector.hpp" #include "JobMarket/Jobs/FragmentJob.hpp" #include "Jobs/Grid/SamplingGrid.hpp" #include /** This class encapsulates a VMG Job. * * VMGJob calculates the long-range contribution that is missed out so far in the * MPQCJob where the SCF cycle is calculated. To this end * */ class VMGJob : public FragmentJob { public: /** Constructor for class VMGJob. * * @param _JobId id of the job * @param _begin offset of the domain * @param _size edge length of the cubic(!) domain * @param _level level is \f$2^{\text{level}}\f$ grid points * @param _sampled_input vector of sampled points of the grid as right-hand side */ VMGJob(const JobId_t _JobId, const SamplingGrid &density_grid, const std::vector< std::vector< double > > &_particle_positions, const std::vector< double > &_particle_charges); virtual ~VMGJob(); FragmentResult::ptr Work(); private: void InitVMG(); private: //!> sampled density required as input const SamplingGrid density_grid; //!> sampled potential as output of the job SamplingGrid potential_grid; //!> positions of all nuclei const std::vector< std::vector< double > > particle_positions; //!> charges of all nuclei const std::vector< double > particle_charges; private: /** private default cstor for serialization only */ VMGJob(); friend class boost::serialization::access; // serialization template void serialize(Archive& ar, const unsigned int version) { ar & boost::serialization::base_object(*this); ar & const_cast< SamplingGrid &>(density_grid); ar & potential_grid; ar & const_cast< std::vector< std::vector< double > > &>(particle_positions); ar & const_cast< std::vector< double > &>(particle_charges); } }; // we need to give this class a unique key for serialization // its is only serialized through its base class FragmentJob BOOST_CLASS_EXPORT_KEY(VMGJob) #endif /* VMGJOB_HPP_ */