Changeset 8d5db8 for src/Fragmentation/Summation/Containers
- Timestamp:
- Oct 2, 2016, 1:49:57 PM (9 years ago)
- Branches:
- Fix_FitPotential_needs_atomicnumbers
- Children:
- a13e21
- Parents:
- f6f761
- git-author:
- Frederik Heber <heber@…> (10/02/16 13:24:41)
- git-committer:
- Frederik Heber <heber@…> (10/02/16 13:49:57)
- Location:
- src/Fragmentation/Summation/Containers
- Files:
-
- 2 edited
-
MPQCData.cpp (modified) (1 diff)
-
MPQCData.hpp (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Fragmentation/Summation/Containers/MPQCData.cpp
rf6f761 r8d5db8 139 139 +toString(instance.sampled_grid.getWindowGridPoints())+" and was "+toString(window_gridpoints)); 140 140 instance.positions = other.positions; 141 instance.atomicnumbers = other.atomicnumbers; 141 142 instance.charges = other.charges; 142 143 instance.times = other.times; -
src/Fragmentation/Summation/Containers/MPQCData.hpp
rf6f761 r8d5db8 110 110 SamplingGrid sampled_grid; 111 111 112 // nuclei positions and charges112 // nuclei positions, atomic numbers and charges 113 113 std::vector< std::vector<double> > positions; 114 std::vector< unsigned int > atomicnumbers; 114 115 std::vector<double> charges; 115 116 … … 160 161 ar & DoValenceOnly; 161 162 ar & positions; 163 if (version > 3) { 164 ar & atomicnumbers; 165 } 162 166 ar & charges; 163 167 ar & times.total_walltime; … … 174 178 }; 175 179 176 BOOST_CLASS_VERSION(MPQCData, 3)180 BOOST_CLASS_VERSION(MPQCData, 4) 177 181 178 182 std::ostream & operator<<(std::ostream &ost, const MPQCData &data);
Note:
See TracChangeset
for help on using the changeset viewer.
