[d2a0f6d] | 1 | /*
|
---|
| 2 | * VMGJob.hpp
|
---|
| 3 | *
|
---|
| 4 | * Created on: Jul 12, 2012
|
---|
| 5 | * Author: heber
|
---|
| 6 | */
|
---|
| 7 |
|
---|
| 8 | #ifndef VMGJOB_HPP_
|
---|
| 9 | #define VMGJOB_HPP_
|
---|
| 10 |
|
---|
| 11 |
|
---|
| 12 | // include config.h
|
---|
| 13 | #ifdef HAVE_CONFIG_H
|
---|
| 14 | #include <config.h>
|
---|
| 15 | #endif
|
---|
| 16 |
|
---|
| 17 | #include "boost/serialization/export.hpp"
|
---|
| 18 | #include "boost/serialization/vector.hpp"
|
---|
| 19 |
|
---|
| 20 | #include "JobMarket/Jobs/FragmentJob.hpp"
|
---|
[28c025] | 21 | #include "Jobs/Grid/SamplingGrid.hpp"
|
---|
[2bc560] | 22 | #include "Jobs/VMGData.hpp"
|
---|
[d2a0f6d] | 23 |
|
---|
| 24 | #include <vector>
|
---|
| 25 |
|
---|
| 26 | /** This class encapsulates a VMG Job.
|
---|
| 27 | *
|
---|
| 28 | * VMGJob calculates the long-range contribution that is missed out so far in the
|
---|
| 29 | * MPQCJob where the SCF cycle is calculated. To this end
|
---|
| 30 | *
|
---|
| 31 | */
|
---|
| 32 | class VMGJob : public FragmentJob
|
---|
| 33 | {
|
---|
| 34 | public:
|
---|
| 35 | /** Constructor for class VMGJob.
|
---|
| 36 | *
|
---|
| 37 | * @param _JobId id of the job
|
---|
[065574] | 38 | * @param _density_grid sampled electron charge density from short-range solutions
|
---|
| 39 | * @param _particle_positions position per nuclei
|
---|
| 40 | * @param _particle_charges charges per nuclei
|
---|
| 41 | * @param _near_field_cells number of grid-points used to smear our nuclei charge
|
---|
[d2a0f6d] | 42 | */
|
---|
[d12d621] | 43 | VMGJob(const JobId_t _JobId,
|
---|
[cd77fc] | 44 | const SamplingGrid &density_grid,
|
---|
| 45 | const std::vector< std::vector< double > > &_particle_positions,
|
---|
[065574] | 46 | const std::vector< double > &_particle_charges,
|
---|
| 47 | const size_t _near_field_cells);
|
---|
[d2a0f6d] | 48 | virtual ~VMGJob();
|
---|
| 49 |
|
---|
| 50 | FragmentResult::ptr Work();
|
---|
| 51 |
|
---|
[e9cfc4] | 52 | private:
|
---|
| 53 | void InitVMG();
|
---|
| 54 |
|
---|
[d2a0f6d] | 55 | private:
|
---|
[28c025] | 56 | //!> sampled density required as input
|
---|
| 57 | const SamplingGrid density_grid;
|
---|
[cd77fc] | 58 | //!> positions of all nuclei
|
---|
| 59 | const std::vector< std::vector< double > > particle_positions;
|
---|
| 60 | //!> charges of all nuclei
|
---|
| 61 | const std::vector< double > particle_charges;
|
---|
[065574] | 62 | //!> near field cells used in smearing out core charge density
|
---|
| 63 | const size_t near_field_cells;
|
---|
[d2a0f6d] | 64 |
|
---|
[2bc560] | 65 | private:
|
---|
| 66 | //!> temporary instance to hold return data
|
---|
| 67 | VMGData returndata;
|
---|
| 68 |
|
---|
[d2a0f6d] | 69 | private:
|
---|
| 70 | /** private default cstor for serialization only
|
---|
| 71 | */
|
---|
| 72 | VMGJob();
|
---|
| 73 |
|
---|
| 74 | friend class boost::serialization::access;
|
---|
| 75 | // serialization
|
---|
| 76 | template <typename Archive>
|
---|
| 77 | void serialize(Archive& ar, const unsigned int version)
|
---|
| 78 | {
|
---|
| 79 | ar & boost::serialization::base_object<FragmentJob>(*this);
|
---|
[28c025] | 80 | ar & const_cast< SamplingGrid &>(density_grid);
|
---|
[cd77fc] | 81 | ar & const_cast< std::vector< std::vector< double > > &>(particle_positions);
|
---|
| 82 | ar & const_cast< std::vector< double > &>(particle_charges);
|
---|
[065574] | 83 | ar & const_cast< size_t &>(near_field_cells);
|
---|
[2bc560] | 84 | ar & returndata;
|
---|
[d2a0f6d] | 85 | }
|
---|
| 86 | };
|
---|
| 87 |
|
---|
| 88 | // we need to give this class a unique key for serialization
|
---|
| 89 | // its is only serialized through its base class FragmentJob
|
---|
| 90 | BOOST_CLASS_EXPORT_KEY(VMGJob)
|
---|
| 91 |
|
---|
| 92 | #endif /* VMGJOB_HPP_ */
|
---|