| [a3427f] | 1 | /* | 
|---|
|  | 2 | * Project: MoleCuilder | 
|---|
|  | 3 | * Description: creates and alters molecular systems | 
|---|
| [16893f] | 4 | * Copyright (C)  2012 University of Bonn. All rights reserved. | 
|---|
| [5aaa43] | 5 | * Copyright (C)  2013 Frederik Heber. All rights reserved. | 
|---|
| [a3427f] | 6 | * | 
|---|
|  | 7 | * | 
|---|
|  | 8 | *   This file is part of MoleCuilder. | 
|---|
|  | 9 | * | 
|---|
|  | 10 | *    MoleCuilder is free software: you can redistribute it and/or modify | 
|---|
|  | 11 | *    it under the terms of the GNU General Public License as published by | 
|---|
|  | 12 | *    the Free Software Foundation, either version 2 of the License, or | 
|---|
|  | 13 | *    (at your option) any later version. | 
|---|
|  | 14 | * | 
|---|
|  | 15 | *    MoleCuilder is distributed in the hope that it will be useful, | 
|---|
|  | 16 | *    but WITHOUT ANY WARRANTY; without even the implied warranty of | 
|---|
|  | 17 | *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
|---|
|  | 18 | *    GNU General Public License for more details. | 
|---|
|  | 19 | * | 
|---|
|  | 20 | *    You should have received a copy of the GNU General Public License | 
|---|
|  | 21 | *    along with MoleCuilder.  If not, see <http://www.gnu.org/licenses/>. | 
|---|
|  | 22 | */ | 
|---|
|  | 23 |  | 
|---|
|  | 24 | /* | 
|---|
|  | 25 | * AnalyseFragmentationResultsAction.cpp | 
|---|
|  | 26 | * | 
|---|
|  | 27 | *  Created on: Mar 8, 2013 | 
|---|
|  | 28 | *      Author: heber | 
|---|
|  | 29 | */ | 
|---|
|  | 30 |  | 
|---|
|  | 31 | // include config.h | 
|---|
|  | 32 | #ifdef HAVE_CONFIG_H | 
|---|
|  | 33 | #include <config.h> | 
|---|
|  | 34 | #endif | 
|---|
|  | 35 |  | 
|---|
|  | 36 | // include headers that implement a archive in simple text format | 
|---|
|  | 37 | // and before MemDebug due to placement new | 
|---|
|  | 38 | #include <boost/archive/text_oarchive.hpp> | 
|---|
|  | 39 | #include <boost/archive/text_iarchive.hpp> | 
|---|
|  | 40 |  | 
|---|
|  | 41 | #include "CodePatterns/MemDebug.hpp" | 
|---|
|  | 42 |  | 
|---|
| [e5ebaf] | 43 | #include <boost/foreach.hpp> | 
|---|
| [0588e9] | 44 | #include <boost/lambda/lambda.hpp> | 
|---|
| [a3427f] | 45 | #include <boost/mpl/remove.hpp> | 
|---|
|  | 46 |  | 
|---|
| [0588e9] | 47 | #include <algorithm> | 
|---|
| [a3427f] | 48 | #include <fstream> | 
|---|
|  | 49 | #include <iostream> | 
|---|
| [e355b31] | 50 | //#include <numeric> | 
|---|
| [a3427f] | 51 | #include <string> | 
|---|
|  | 52 | #include <vector> | 
|---|
|  | 53 |  | 
|---|
|  | 54 | #include "CodePatterns/Assert.hpp" | 
|---|
|  | 55 | #include "CodePatterns/Log.hpp" | 
|---|
|  | 56 |  | 
|---|
|  | 57 | #ifdef HAVE_JOBMARKET | 
|---|
|  | 58 | #include "JobMarket/types.hpp" | 
|---|
|  | 59 | #else | 
|---|
|  | 60 | typedef size_t JobId_t; | 
|---|
|  | 61 | #endif | 
|---|
|  | 62 |  | 
|---|
| [e5ebaf] | 63 | #include "Descriptors/AtomIdDescriptor.hpp" | 
|---|
| [666e9e] | 64 | #include "Atom/atom.hpp" | 
|---|
|  | 65 | #include "Element/element.hpp" | 
|---|
| [a3427f] | 66 | #include "Fragmentation/Summation/Containers/FragmentationChargeDensity.hpp" | 
|---|
|  | 67 | #include "Fragmentation/Summation/Containers/FragmentationResultContainer.hpp" | 
|---|
|  | 68 | #include "Fragmentation/Summation/Containers/FragmentationShortRangeResults.hpp" | 
|---|
|  | 69 | #include "Fragmentation/Summation/Containers/MPQCData.hpp" | 
|---|
|  | 70 | #include "Fragmentation/Summation/Containers/MPQCData_printKeyNames.hpp" | 
|---|
|  | 71 | #include "Fragmentation/Homology/HomologyContainer.hpp" | 
|---|
|  | 72 | #include "Fragmentation/Homology/HomologyGraph.hpp" | 
|---|
|  | 73 | #include "Fragmentation/KeySetsContainer.hpp" | 
|---|
| [5c867e] | 74 | #include "Fragmentation/Summation/SetValues/Eigenvalues.hpp" | 
|---|
| [a3427f] | 75 | #include "Fragmentation/Summation/SetValues/Fragment.hpp" | 
|---|
| [d200ae] | 76 | #include "Fragmentation/Summation/SetValues/FragmentForces.hpp" | 
|---|
| [a3427f] | 77 | #include "Fragmentation/Summation/SetValues/Histogram.hpp" | 
|---|
|  | 78 | #include "Fragmentation/Summation/SetValues/IndexedVectors.hpp" | 
|---|
|  | 79 | #include "Fragmentation/Summation/IndexSetContainer.hpp" | 
|---|
| [47cee7] | 80 | #include "Fragmentation/Summation/writeIndexedTable.hpp" | 
|---|
| [a3427f] | 81 | #include "Fragmentation/Summation/writeTable.hpp" | 
|---|
| [18ed8c] | 82 | #if defined(HAVE_JOBMARKET) && defined(HAVE_VMG) | 
|---|
|  | 83 | #include "Fragmentation/Summation/Containers/FragmentationLongRangeResults.hpp" | 
|---|
| [a3427f] | 84 | #include "Fragmentation/Summation/Containers/VMGData.hpp" | 
|---|
|  | 85 | #include "Fragmentation/Summation/Containers/VMGDataFused.hpp" | 
|---|
|  | 86 | #include "Fragmentation/Summation/Containers/VMGDataMap.hpp" | 
|---|
|  | 87 | #include "Fragmentation/Summation/Containers/VMGData_printKeyNames.hpp" | 
|---|
|  | 88 | #endif | 
|---|
| [e5ebaf] | 89 | #include "Helpers/defs.hpp" | 
|---|
| [666e9e] | 90 | #include "Potentials/Particles/ParticleRegistry.hpp" | 
|---|
| [a3427f] | 91 | #include "World.hpp" | 
|---|
|  | 92 |  | 
|---|
|  | 93 | #include "Actions/FragmentationAction/AnalyseFragmentationResultsAction.hpp" | 
|---|
|  | 94 |  | 
|---|
|  | 95 | using namespace MoleCuilder; | 
|---|
|  | 96 |  | 
|---|
|  | 97 | // and construct the stuff | 
|---|
|  | 98 | #include "AnalyseFragmentationResultsAction.def" | 
|---|
|  | 99 | #include "Action_impl_pre.hpp" | 
|---|
|  | 100 | /** =========== define the function ====================== */ | 
|---|
|  | 101 |  | 
|---|
|  | 102 | void writeToFile(const std::string &filename, const std::string contents) | 
|---|
|  | 103 | { | 
|---|
|  | 104 | std::ofstream tablefile(filename.c_str()); | 
|---|
|  | 105 | tablefile << contents; | 
|---|
|  | 106 | tablefile.close(); | 
|---|
|  | 107 | } | 
|---|
|  | 108 |  | 
|---|
| [0588e9] | 109 | /** Print cycle correction from received results. | 
|---|
|  | 110 | * | 
|---|
|  | 111 | * @param results summed up results container | 
|---|
|  | 112 | */ | 
|---|
|  | 113 | void printReceivedCycleResults( | 
|---|
|  | 114 | const FragmentationShortRangeResults &results) | 
|---|
|  | 115 | { | 
|---|
|  | 116 | typedef boost::mpl::remove< | 
|---|
|  | 117 | boost::mpl::remove<MPQCDataEnergyVector_t, MPQCDataFused::energy_eigenvalues>::type, | 
|---|
|  | 118 | MPQCDataFused::energy_eigenhistogram>::type | 
|---|
|  | 119 | MPQCDataEnergyVector_noeigenvalues_t; | 
|---|
|  | 120 | const std::string energyresult = | 
|---|
|  | 121 | writeTable<MPQCDataEnergyMap_t, MPQCDataEnergyVector_noeigenvalues_t >()( | 
|---|
|  | 122 | results.Result_Energy_fused, results.getMaxLevel()); | 
|---|
|  | 123 | LOG(2, "DEBUG: Energy table is \n" << energyresult); | 
|---|
|  | 124 | std::string filename; | 
|---|
|  | 125 | filename += FRAGMENTPREFIX + std::string("_CycleEnergy.dat"); | 
|---|
|  | 126 | writeToFile(filename, energyresult); | 
|---|
|  | 127 | } | 
|---|
|  | 128 |  | 
|---|
| [47cee7] | 129 | /** Print (short range) energy, forces, and timings from received results per index set. | 
|---|
|  | 130 | * | 
|---|
|  | 131 | * @param results summed up results container | 
|---|
|  | 132 | */ | 
|---|
|  | 133 | void printReceivedShortResultsPerIndex( | 
|---|
|  | 134 | const FragmentationShortRangeResults &results) | 
|---|
|  | 135 | { | 
|---|
|  | 136 | // print tables  per keyset(without eigenvalues, they go extra) | 
|---|
|  | 137 | typedef boost::mpl::remove< | 
|---|
|  | 138 | boost::mpl::remove<MPQCDataEnergyVector_t, MPQCDataFused::energy_eigenvalues>::type, | 
|---|
|  | 139 | MPQCDataFused::energy_eigenhistogram>::type | 
|---|
|  | 140 | MPQCDataEnergyVector_noeigenvalues_t; | 
|---|
|  | 141 | const std::string energyresult = | 
|---|
|  | 142 | writeIndexedTable<MPQCDataEnergyMap_t, MPQCDataEnergyVector_noeigenvalues_t >()( | 
|---|
|  | 143 | results.Result_perIndexSet_Energy, results.getMaxLevel()); | 
|---|
|  | 144 | LOG(2, "DEBUG: Indexed Energy table is \n" << energyresult); | 
|---|
|  | 145 | std::string filename; | 
|---|
|  | 146 | filename += FRAGMENTPREFIX + std::string("_IndexedEnergy.dat"); | 
|---|
|  | 147 | writeToFile(filename, energyresult); | 
|---|
|  | 148 | } | 
|---|
|  | 149 |  | 
|---|
| [a3427f] | 150 | /** Print (short range) energy, forces, and timings from received results. | 
|---|
|  | 151 | * | 
|---|
|  | 152 | * @param results summed up results container | 
|---|
|  | 153 | */ | 
|---|
|  | 154 | void printReceivedShortResults( | 
|---|
|  | 155 | const FragmentationShortRangeResults &results) | 
|---|
|  | 156 | { | 
|---|
|  | 157 | // print tables (without eigenvalues, they go extra) | 
|---|
|  | 158 | { | 
|---|
| [5c867e] | 159 | typedef boost::mpl::remove< | 
|---|
|  | 160 | boost::mpl::remove<MPQCDataEnergyVector_t, MPQCDataFused::energy_eigenvalues>::type, | 
|---|
|  | 161 | MPQCDataFused::energy_eigenhistogram>::type | 
|---|
| [a3427f] | 162 | MPQCDataEnergyVector_noeigenvalues_t; | 
|---|
|  | 163 | const std::string energyresult = | 
|---|
|  | 164 | writeTable<MPQCDataEnergyMap_t, MPQCDataEnergyVector_noeigenvalues_t >()( | 
|---|
|  | 165 | results.Result_Energy_fused, results.getMaxLevel()); | 
|---|
| [1b5a40] | 166 | LOG(2, "DEBUG: Energy table is \n" << energyresult); | 
|---|
| [a3427f] | 167 | std::string filename; | 
|---|
|  | 168 | filename += FRAGMENTPREFIX + std::string("_Energy.dat"); | 
|---|
|  | 169 | writeToFile(filename, energyresult); | 
|---|
|  | 170 | } | 
|---|
|  | 171 |  | 
|---|
| [5c867e] | 172 | { | 
|---|
|  | 173 | typedef boost::mpl::list< | 
|---|
|  | 174 | MPQCDataFused::energy_eigenvalues | 
|---|
|  | 175 | > MPQCDataEigenvalues_t; | 
|---|
|  | 176 | const std::string eigenvalueresult = | 
|---|
|  | 177 | writeTable<MPQCDataEnergyMap_t, MPQCDataEigenvalues_t >()( | 
|---|
|  | 178 | results.Result_Energy_fused, results.getMaxLevel()); | 
|---|
| [1b5a40] | 179 | LOG(2, "DEBUG: Eigenvalue table is \n" << eigenvalueresult); | 
|---|
| [5c867e] | 180 | std::string filename; | 
|---|
|  | 181 | filename += FRAGMENTPREFIX + std::string("_Eigenvalues.dat"); | 
|---|
|  | 182 | writeToFile(filename, eigenvalueresult); | 
|---|
|  | 183 | } | 
|---|
|  | 184 |  | 
|---|
|  | 185 | { | 
|---|
|  | 186 | typedef boost::mpl::list< | 
|---|
|  | 187 | MPQCDataFused::energy_eigenhistogram | 
|---|
|  | 188 | > MPQCDataEigenhistogram_t; | 
|---|
|  | 189 | const std::string eigenhistogramresult = | 
|---|
|  | 190 | writeTable<MPQCDataEnergyMap_t, MPQCDataEigenhistogram_t >()( | 
|---|
|  | 191 | results.Result_Energy_fused, results.getMaxLevel()); | 
|---|
| [1b5a40] | 192 | LOG(2, "DEBUG: Eigenhistogram table is \n" << eigenhistogramresult); | 
|---|
| [5c867e] | 193 | std::string filename; | 
|---|
|  | 194 | filename += FRAGMENTPREFIX + std::string("_Eigenhistogram.dat"); | 
|---|
|  | 195 | writeToFile(filename, eigenhistogramresult); | 
|---|
|  | 196 | } | 
|---|
|  | 197 |  | 
|---|
| [a3427f] | 198 | { | 
|---|
|  | 199 | typedef boost::mpl::list< | 
|---|
|  | 200 | MPQCDataFused::energy_eigenvalues | 
|---|
|  | 201 | > MPQCDataEigenvalues_t; | 
|---|
|  | 202 | const std::string eigenvalueresult = | 
|---|
|  | 203 | writeTable<MPQCDataEnergyMap_t, MPQCDataEigenvalues_t >()( | 
|---|
|  | 204 | results.Result_Energy_fused, results.getMaxLevel()); | 
|---|
| [1b5a40] | 205 | LOG(2, "DEBUG: Eigenvalue table is \n" << eigenvalueresult); | 
|---|
| [a3427f] | 206 | std::string filename; | 
|---|
|  | 207 | filename += FRAGMENTPREFIX + std::string("_Eigenvalues.dat"); | 
|---|
|  | 208 | writeToFile(filename, eigenvalueresult); | 
|---|
|  | 209 | } | 
|---|
|  | 210 |  | 
|---|
|  | 211 | { | 
|---|
|  | 212 | const std::string forceresult = | 
|---|
|  | 213 | writeTable<MPQCDataForceMap_t, MPQCDataForceVector_t>()( | 
|---|
|  | 214 | results.Result_Force_fused, results.getMaxLevel()); | 
|---|
| [1b5a40] | 215 | LOG(2, "DEBUG: Force table is \n" << forceresult); | 
|---|
| [a3427f] | 216 | std::string filename; | 
|---|
|  | 217 | filename += FRAGMENTPREFIX + std::string("_Forces.dat"); | 
|---|
|  | 218 | writeToFile(filename, forceresult); | 
|---|
|  | 219 | } | 
|---|
|  | 220 | // we don't want to print grid to a table | 
|---|
|  | 221 | { | 
|---|
|  | 222 | // print times (without flops for now) | 
|---|
|  | 223 | typedef boost::mpl::remove< | 
|---|
|  | 224 | boost::mpl::remove<MPQCDataTimeVector_t, MPQCDataFused::times_total_flops>::type, | 
|---|
|  | 225 | MPQCDataFused::times_gather_flops>::type | 
|---|
|  | 226 | MPQCDataTimeVector_noflops_t; | 
|---|
|  | 227 | const std::string timesresult = | 
|---|
|  | 228 | writeTable<MPQCDataTimeMap_t, MPQCDataTimeVector_noflops_t >()( | 
|---|
|  | 229 | results.Result_Time_fused, results.getMaxLevel()); | 
|---|
| [1b5a40] | 230 | LOG(2, "DEBUG: Times table is \n" << timesresult); | 
|---|
| [a3427f] | 231 | std::string filename; | 
|---|
|  | 232 | filename += FRAGMENTPREFIX + std::string("_Times.dat"); | 
|---|
|  | 233 | writeToFile(filename, timesresult); | 
|---|
|  | 234 | } | 
|---|
|  | 235 | } | 
|---|
|  | 236 |  | 
|---|
|  | 237 |  | 
|---|
| [18ed8c] | 238 | #if defined(HAVE_JOBMARKET) && defined(HAVE_VMG) | 
|---|
| [a3427f] | 239 | /** Print long range energy from received results. | 
|---|
|  | 240 | * | 
|---|
|  | 241 | * @param results summed up results container | 
|---|
|  | 242 | */ | 
|---|
|  | 243 | void printReceivedFullResults( | 
|---|
|  | 244 | const FragmentationLongRangeResults &results) | 
|---|
|  | 245 | { | 
|---|
| [83a425] | 246 | // print tables per keyset(without grids, they go extra) | 
|---|
| [a3427f] | 247 |  | 
|---|
|  | 248 | { | 
|---|
|  | 249 | const std::string gridresult = | 
|---|
|  | 250 | writeTable<VMGDataMap_t, VMGDataVector_t >()( | 
|---|
| [d29b31] | 251 | results.Result_LongRange_fused, results.getMaxLevel(), 1); | 
|---|
| [1b5a40] | 252 | LOG(2, "DEBUG: VMG table is \n" << gridresult); | 
|---|
| [a3427f] | 253 | std::string filename; | 
|---|
|  | 254 | filename += FRAGMENTPREFIX + std::string("_VMGEnergy.dat"); | 
|---|
|  | 255 | writeToFile(filename, gridresult); | 
|---|
|  | 256 | } | 
|---|
|  | 257 |  | 
|---|
| [94db13] | 258 | if (results.hasLongRangeForces()) { | 
|---|
|  | 259 | const std::string forceresult = | 
|---|
|  | 260 | writeTable<VMGDataForceMap_t, VMGDataForceVector_t>()( | 
|---|
|  | 261 | results.Result_ForceLongRange_fused, results.getMaxLevel()); | 
|---|
|  | 262 | LOG(2, "DEBUG: Force table is \n" << forceresult); | 
|---|
|  | 263 | std::string filename; | 
|---|
|  | 264 | filename += FRAGMENTPREFIX + std::string("_VMGForces.dat"); | 
|---|
|  | 265 | writeToFile(filename, forceresult); | 
|---|
|  | 266 | } | 
|---|
|  | 267 |  | 
|---|
| [a3427f] | 268 | { | 
|---|
|  | 269 | const std::string gridresult = | 
|---|
|  | 270 | writeTable<VMGDataLongRangeMap_t, VMGDataLongRangeVector_t >()( | 
|---|
| [d29b31] | 271 | results.Result_LongRangeIntegrated_fused, results.getMaxLevel(), 1); | 
|---|
| [1b5a40] | 272 | LOG(2, "DEBUG: LongRange table is \n" << gridresult); | 
|---|
| [a3427f] | 273 | std::string filename; | 
|---|
|  | 274 | filename += FRAGMENTPREFIX + std::string("_LongRangeEnergy.dat"); | 
|---|
|  | 275 | writeToFile(filename, gridresult); | 
|---|
|  | 276 | } | 
|---|
| [ff347f] | 277 |  | 
|---|
|  | 278 | if (results.hasLongRangeForces()) { | 
|---|
|  | 279 | const std::string forceresult = | 
|---|
|  | 280 | writeTable<VMGDataLongRangeForceMap_t, VMGDataLongRangeForceVector_t >()( | 
|---|
|  | 281 | results.Result_ForcesLongRangeIntegrated_fused, results.getMaxLevel(), 1); | 
|---|
|  | 282 | LOG(2, "DEBUG: ForcesLongRange table is \n" << forceresult); | 
|---|
|  | 283 | std::string filename; | 
|---|
|  | 284 | filename += FRAGMENTPREFIX + std::string("_LongRangeForces.dat"); | 
|---|
|  | 285 | writeToFile(filename, forceresult); | 
|---|
|  | 286 | } | 
|---|
| [a3427f] | 287 | } | 
|---|
| [18ed8c] | 288 | #endif | 
|---|
| [a3427f] | 289 |  | 
|---|
| [ce70d25] | 290 | bool appendToHomologies( | 
|---|
| [98dbee] | 291 | const FragmentationShortRangeResults &shortrangeresults, | 
|---|
| [18ed8c] | 292 | #if defined(HAVE_JOBMARKET) && defined(HAVE_VMG) | 
|---|
| [bf1d1b] | 293 | const FragmentationLongRangeResults &longrangeresults, | 
|---|
| [18ed8c] | 294 | #endif | 
|---|
| [bf1d1b] | 295 | const bool storeGrids | 
|---|
| [98dbee] | 296 | ) | 
|---|
|  | 297 | { | 
|---|
|  | 298 | /// read homology container (if present) | 
|---|
|  | 299 | HomologyContainer &homology_container = World::getInstance().getHomologies(); | 
|---|
| [a3427f] | 300 |  | 
|---|
|  | 301 | /// append all fragments to a HomologyContainer | 
|---|
|  | 302 | HomologyContainer::container_t values; | 
|---|
|  | 303 |  | 
|---|
|  | 304 | // convert KeySetContainer to IndexSetContainer | 
|---|
| [e598f5] | 305 | // BUG: Conversion changes order w.r.t to Indices(!) | 
|---|
|  | 306 | const IndexSetContainer::Container_t &container = shortrangeresults.getContainer(); | 
|---|
|  | 307 | const KeySetsContainer &Indices = shortrangeresults.getKeySet(); | 
|---|
|  | 308 | const KeySetsContainer &ForceIndices = shortrangeresults.getForceKeySet(); | 
|---|
|  | 309 | if (Indices.KeySets.size() != ForceIndices.KeySets.size()) { | 
|---|
|  | 310 | ELOG(1, "appendToHomologies() - Indices (" << Indices.KeySets.size() | 
|---|
|  | 311 | << ") and ForceIndices (" << ForceIndices.KeySets.size() << ") sizes differ."); | 
|---|
|  | 312 | return false; | 
|---|
|  | 313 | } | 
|---|
|  | 314 | KeySetsContainer::ArrayOfIntVectors::const_iterator iter = Indices.KeySets.begin(); | 
|---|
|  | 315 | KeySetsContainer::ArrayOfIntVectors::const_iterator forceiter = ForceIndices.KeySets.begin(); | 
|---|
| [e5ebaf] | 316 |  | 
|---|
| [a3427f] | 317 | /// go through all fragments | 
|---|
| [e598f5] | 318 | for (;iter != Indices.KeySets.end(); ++iter, ++forceiter) // go through each IndexSet | 
|---|
| [a3427f] | 319 | { | 
|---|
|  | 320 | /// create new graph entry in HomologyContainer which is (key,value) type | 
|---|
| [e598f5] | 321 | LOG(1, "INFO: Creating new graph with " << *forceiter << "."); | 
|---|
|  | 322 | IndexSet forceindexset; | 
|---|
|  | 323 | forceindexset.insert(forceiter->begin(), forceiter->end()); | 
|---|
|  | 324 | const HomologyGraph graph(forceindexset); | 
|---|
|  | 325 | // get index set entity from container for lookup to fragment result | 
|---|
|  | 326 | IndexSet::ptr indexset(new IndexSet); | 
|---|
|  | 327 | indexset->insert(iter->begin(), iter->end()); | 
|---|
|  | 328 | if (!forceindexset.contains(*indexset)) { | 
|---|
| [ce70d25] | 329 | // this caught an error with faulty KeySetsContainer::insert(). | 
|---|
|  | 330 | // indexset and forceindexset need to be in same order and differ | 
|---|
|  | 331 | // only in forceindexset contains extra indices for saturation hydrogens | 
|---|
| [e598f5] | 332 | ELOG(1, "appendToHomologies() - force index set " << forceindexset | 
|---|
|  | 333 | << " does not contain index set " << (*indexset) << "."); | 
|---|
| [ce70d25] | 334 | return false; | 
|---|
|  | 335 | } | 
|---|
| [e598f5] | 336 | const IndexSetContainer::Container_t::const_iterator indexiter = | 
|---|
|  | 337 | std::lower_bound(container.begin(), container.end(), indexset); | 
|---|
|  | 338 | const IndexSet::ptr &index = *indexiter; | 
|---|
|  | 339 | ASSERT( *index == *indexset, | 
|---|
|  | 340 | "appendToHomologies() - could not find index set "+toString(*indexset) | 
|---|
|  | 341 | +" in the sorted IndexSetContainer."); | 
|---|
|  | 342 |  | 
|---|
| [a3427f] | 343 |  | 
|---|
| [bf1d1b] | 344 | /// we fill the value structure | 
|---|
|  | 345 | HomologyContainer::value_t value; | 
|---|
|  | 346 | value.containsGrids = storeGrids; | 
|---|
|  | 347 | // obtain fragment | 
|---|
| [a3427f] | 348 | std::map<IndexSet::ptr, std::pair< MPQCDataFragmentMap_t, MPQCDataFragmentMap_t> >::const_iterator fragmentiter | 
|---|
| [d76d65] | 349 | = shortrangeresults.Result_perIndexSet_Fragment.find(index); | 
|---|
| [ce70d25] | 350 | if (fragmentiter == shortrangeresults.Result_perIndexSet_Fragment.end()) { | 
|---|
|  | 351 | ELOG(1, "appendToHomologyFile() - cannot find index " << (*index) | 
|---|
|  | 352 | << " in FragmentResults."); | 
|---|
|  | 353 | return false; | 
|---|
|  | 354 | } | 
|---|
| [bf1d1b] | 355 | value.fragment = boost::fusion::at_key<MPQCDataFused::fragment>(fragmentiter->second.first); | 
|---|
| [27e6a7] | 356 | LOG(1, "DEBUG: Created graph " << graph << " to fragment " << value.fragment << "."); | 
|---|
| [a3427f] | 357 |  | 
|---|
| [bf1d1b] | 358 | // obtain energy | 
|---|
| [a3427f] | 359 | std::map<IndexSet::ptr, std::pair< MPQCDataEnergyMap_t, MPQCDataEnergyMap_t> >::const_iterator energyiter | 
|---|
|  | 360 | = shortrangeresults.Result_perIndexSet_Energy.find(index); | 
|---|
| [ce70d25] | 361 | if (energyiter == shortrangeresults.Result_perIndexSet_Energy.end()) { | 
|---|
|  | 362 | ELOG(1, "appendToHomologyFile() - cannot find index " << (*index) | 
|---|
|  | 363 | << " in FragmentResults."); | 
|---|
|  | 364 | return false; | 
|---|
|  | 365 | } | 
|---|
| [bf1d1b] | 366 | value.energy = boost::fusion::at_key<MPQCDataFused::energy_total>(energyiter->second.second); // contributions | 
|---|
|  | 367 |  | 
|---|
|  | 368 | // only store sampled grids if desired | 
|---|
|  | 369 | if (storeGrids) { | 
|---|
| [18ed8c] | 370 | #if defined(HAVE_JOBMARKET) && defined(HAVE_VMG) | 
|---|
| [bf1d1b] | 371 | // obtain charge distribution | 
|---|
|  | 372 | std::map<IndexSet::ptr, std::pair< MPQCDataGridMap_t, MPQCDataGridMap_t> >::const_iterator chargeiter | 
|---|
|  | 373 | = longrangeresults.Result_perIndexSet_Grid.find(index); | 
|---|
| [ce70d25] | 374 | if (chargeiter == longrangeresults.Result_perIndexSet_Grid.end()) { | 
|---|
|  | 375 | ELOG(1, "appendToHomologyFile() - cannot find index " << (*index) | 
|---|
|  | 376 | << " in FragmentResults."); | 
|---|
|  | 377 | return false; | 
|---|
|  | 378 | } | 
|---|
| [bf1d1b] | 379 | value.charge_distribution = boost::fusion::at_key<MPQCDataFused::sampled_grid>(chargeiter->second.second); // contributions | 
|---|
|  | 380 |  | 
|---|
|  | 381 | // obtain potential distribution | 
|---|
| [83a425] | 382 | std::map<IndexSet::ptr, std::pair< VMGDataGridMap_t, VMGDataGridMap_t> >::const_iterator potentialiter | 
|---|
|  | 383 | = longrangeresults.Result_perIndexSet_LongRange_Grid.find(index); | 
|---|
| [ce70d25] | 384 | if (potentialiter == longrangeresults.Result_perIndexSet_LongRange_Grid.end()) { | 
|---|
|  | 385 | ELOG(1, "appendToHomologyFile() - cannot find index " << (*index) | 
|---|
|  | 386 | << " in FragmentResults."); | 
|---|
|  | 387 | return false; | 
|---|
|  | 388 | } | 
|---|
| [e355b31] | 389 | // add e+n potentials | 
|---|
| [83a425] | 390 | value.potential_distribution = | 
|---|
|  | 391 | boost::fusion::at_key<VMGDataFused::both_sampled_potential>(potentialiter->second.second); // contributions | 
|---|
| [e355b31] | 392 | //      // and re-average to zero (integral is times volume_element which we don't need here) | 
|---|
|  | 393 | //      const double sum = | 
|---|
|  | 394 | //          std::accumulate( | 
|---|
|  | 395 | //              value.potential_distribution.sampled_grid.begin(), | 
|---|
|  | 396 | //              value.potential_distribution.sampled_grid.end(), | 
|---|
|  | 397 | //              0.); | 
|---|
|  | 398 | //      const double offset = sum/(double)value.potential_distribution.sampled_grid.size(); | 
|---|
|  | 399 | //      for (SamplingGrid::sampledvalues_t::iterator iter = value.potential_distribution.sampled_grid.begin(); | 
|---|
|  | 400 | //          iter != value.potential_distribution.sampled_grid.end(); | 
|---|
|  | 401 | //          ++iter) | 
|---|
|  | 402 | //        *iter -= offset; | 
|---|
| [18ed8c] | 403 | #else | 
|---|
| [ce70d25] | 404 | ELOG(2, "Long-range information in homology desired but long-range analysis capability not compiled in."); | 
|---|
| [18ed8c] | 405 | #endif | 
|---|
| [bf1d1b] | 406 | } | 
|---|
| [a3427f] | 407 | values.insert( std::make_pair( graph, value) ); | 
|---|
|  | 408 | } | 
|---|
|  | 409 | homology_container.insert(values); | 
|---|
|  | 410 |  | 
|---|
| [1b5a40] | 411 | if (DoLog(2)) { | 
|---|
|  | 412 | LOG(2, "DEBUG: Listing all present atomic ids ..."); | 
|---|
|  | 413 | std::stringstream output; | 
|---|
|  | 414 | for (World::AtomIterator iter = World::getInstance().getAtomIter(); | 
|---|
|  | 415 | iter != World::getInstance().atomEnd(); ++iter) | 
|---|
|  | 416 | output << (*iter)->getId() << " "; | 
|---|
|  | 417 | LOG(2, "DEBUG: { " << output.str() << "} ."); | 
|---|
|  | 418 | } | 
|---|
| [a3427f] | 419 |  | 
|---|
|  | 420 | // for debugging: print container | 
|---|
| [1b5a40] | 421 | if (DoLog(2)) { | 
|---|
|  | 422 | LOG(2, "DEBUG: Listing all present homologies ..."); | 
|---|
|  | 423 | for (HomologyContainer::container_t::const_iterator iter = | 
|---|
|  | 424 | homology_container.begin(); iter != homology_container.end(); ++iter) { | 
|---|
| [d76d65] | 425 | std::stringstream output; | 
|---|
|  | 426 | output << "DEBUG: graph " << iter->first | 
|---|
| [bf1d1b] | 427 | << " has Fragment " << iter->second.fragment | 
|---|
| [d76d65] | 428 | << ", associated energy " << iter->second.energy; | 
|---|
|  | 429 | if (iter->second.containsGrids) | 
|---|
| [18ed8c] | 430 | #if defined(HAVE_JOBMARKET) && defined(HAVE_VMG) | 
|---|
| [d76d65] | 431 | output  << ", and sampled grid integral " << iter->second.charge_distribution.integral(); | 
|---|
| [18ed8c] | 432 | #else | 
|---|
|  | 433 | output << ", and there are sampled grids but capability not compiled in"; | 
|---|
|  | 434 | #endif | 
|---|
| [d76d65] | 435 | output << "."; | 
|---|
|  | 436 | LOG(2, output.str()); | 
|---|
| [1b5a40] | 437 | } | 
|---|
| [a3427f] | 438 | } | 
|---|
| [ce70d25] | 439 |  | 
|---|
|  | 440 | return true; | 
|---|
| [98dbee] | 441 | } | 
|---|
| [a3427f] | 442 |  | 
|---|
| [0588e9] | 443 | // this it taken from | 
|---|
|  | 444 | // http://stackoverflow.com/questions/2291802/is-there-a-c-iterator-that-can-iterate-over-a-file-line-by-line | 
|---|
|  | 445 | namespace detail | 
|---|
|  | 446 | { | 
|---|
|  | 447 | /** Extend the string class by a friend function. | 
|---|
|  | 448 | * | 
|---|
|  | 449 | */ | 
|---|
|  | 450 | class Line : public std::string | 
|---|
|  | 451 | { | 
|---|
|  | 452 | friend std::istream & operator>>(std::istream & is, Line & line) | 
|---|
|  | 453 | { | 
|---|
|  | 454 | return std::getline(is, line); | 
|---|
|  | 455 | } | 
|---|
|  | 456 | }; | 
|---|
|  | 457 | } | 
|---|
|  | 458 |  | 
|---|
|  | 459 | /** Parse the given stream line-by-line, passing each to \a dest. | 
|---|
|  | 460 | * | 
|---|
|  | 461 | * \param is stream to parse line-wise | 
|---|
|  | 462 | * \param dest output iterator | 
|---|
|  | 463 | */ | 
|---|
|  | 464 | template<class OutIt> | 
|---|
|  | 465 | void read_lines(std::istream& is, OutIt dest) | 
|---|
|  | 466 | { | 
|---|
|  | 467 | typedef std::istream_iterator<detail::Line> InIt; | 
|---|
|  | 468 | std::copy(InIt(is), InIt(), dest); | 
|---|
|  | 469 | } | 
|---|
|  | 470 |  | 
|---|
|  | 471 |  | 
|---|
| [f58e56] | 472 | /** Determines the largest cycle in the container and returns its size. | 
|---|
|  | 473 | * | 
|---|
|  | 474 | * \param cycles set of cycles | 
|---|
|  | 475 | * \return size if largest cycle | 
|---|
|  | 476 | */ | 
|---|
|  | 477 | size_t getMaxCycleSize(const KeySetsContainer &cycles) | 
|---|
|  | 478 | { | 
|---|
|  | 479 | // gather cycle sizes | 
|---|
|  | 480 | std::vector<size_t> cyclesizes(cycles.KeySets.size()); | 
|---|
|  | 481 | std::transform( | 
|---|
|  | 482 | cycles.KeySets.begin(), cycles.KeySets.end(), | 
|---|
|  | 483 | cyclesizes.begin(), | 
|---|
|  | 484 | boost::bind(&KeySetsContainer::IntVector::size, boost::lambda::_1) | 
|---|
|  | 485 | ); | 
|---|
|  | 486 | // get maximum | 
|---|
|  | 487 | std::vector<size_t>::const_iterator maximum_size = | 
|---|
|  | 488 | std::max_element(cyclesizes.begin(), cyclesizes.end()); | 
|---|
|  | 489 | if (maximum_size != cyclesizes.end()) | 
|---|
|  | 490 | return *maximum_size; | 
|---|
|  | 491 | else | 
|---|
|  | 492 | return 0; | 
|---|
|  | 493 | } | 
|---|
|  | 494 |  | 
|---|
|  | 495 | void calculateCycleFullContribution( | 
|---|
|  | 496 | const std::map<JobId_t, MPQCData> &shortrangedata, | 
|---|
|  | 497 | const KeySetsContainer &keysets, | 
|---|
|  | 498 | const KeySetsContainer &forcekeysets, | 
|---|
|  | 499 | const KeySetsContainer &cycles, | 
|---|
|  | 500 | const FragmentationShortRangeResults &shortrangeresults) | 
|---|
|  | 501 | { | 
|---|
|  | 502 | // copy the shortrangeresults such that private MaxLevel is set in | 
|---|
|  | 503 | // FragmentationShortRangeResults | 
|---|
|  | 504 | FragmentationShortRangeResults cycleresults(shortrangeresults); | 
|---|
|  | 505 | // get largest size | 
|---|
|  | 506 | const size_t maximum_size = getMaxCycleSize(cycles); | 
|---|
|  | 507 |  | 
|---|
|  | 508 | /// The idea here is that (Orthogonal)Summation will place a result | 
|---|
|  | 509 | /// consisting of level 1,2, and 3 fragment and a level 6 ring nonetheless | 
|---|
|  | 510 | /// in level 6. If we want to have this result already at level 3, we | 
|---|
|  | 511 | /// have to specifically inhibit all fragments from later levels but the | 
|---|
|  | 512 | /// cycles and then pick the result from the last level and placing it at | 
|---|
|  | 513 | /// the desired one | 
|---|
|  | 514 |  | 
|---|
|  | 515 | // loop from level 1 to max ring size and gather contributions | 
|---|
|  | 516 | for (size_t level = 1; level <= maximum_size; ++level) { | 
|---|
|  | 517 | // create ValueMask for this level by stepping through each keyset and checking size | 
|---|
|  | 518 | std::vector<bool> localValueMask(shortrangedata.size(), false); | 
|---|
|  | 519 | size_t index=0; | 
|---|
|  | 520 | // TODO: if only KeySetsContainer was usable as a compliant STL container, might be able to use set_difference or alike. | 
|---|
|  | 521 | KeySetsContainer::ArrayOfIntVectors::const_iterator keysetsiter = keysets.KeySets.begin(); | 
|---|
|  | 522 | KeySetsContainer::ArrayOfIntVectors::const_iterator cyclesiter = cycles.KeySets.begin(); | 
|---|
|  | 523 | for (; (keysetsiter != keysets.KeySets.end()) && (cyclesiter != cycles.KeySets.end());) { | 
|---|
|  | 524 | if (cyclesiter->size() > keysetsiter->size()) { | 
|---|
|  | 525 | // add if not greater than level in size | 
|---|
|  | 526 | if ((*keysetsiter).size() <= level) | 
|---|
|  | 527 | localValueMask[index] = true; | 
|---|
|  | 528 | ++keysetsiter; | 
|---|
|  | 529 | ++index; | 
|---|
|  | 530 | } else if (cyclesiter->size() < keysetsiter->size()) { | 
|---|
|  | 531 | ++cyclesiter; | 
|---|
|  | 532 | } else { // both sets have same size | 
|---|
|  | 533 | if (*cyclesiter > *keysetsiter) { | 
|---|
|  | 534 | // add if not greater than level in size | 
|---|
|  | 535 | if ((*keysetsiter).size() <= level) | 
|---|
|  | 536 | localValueMask[index] = true; | 
|---|
|  | 537 | ++keysetsiter; | 
|---|
|  | 538 | ++index; | 
|---|
|  | 539 | } else if (*cyclesiter < *keysetsiter) { | 
|---|
|  | 540 | ++cyclesiter; | 
|---|
|  | 541 | } else { | 
|---|
|  | 542 | // also always add all cycles | 
|---|
|  | 543 | localValueMask[index] = true; | 
|---|
|  | 544 | ++cyclesiter; | 
|---|
|  | 545 | ++keysetsiter; | 
|---|
|  | 546 | ++index; | 
|---|
|  | 547 | } | 
|---|
|  | 548 | } | 
|---|
|  | 549 | } | 
|---|
|  | 550 | // activate rest if desired by level | 
|---|
|  | 551 | for (; keysetsiter != keysets.KeySets.end(); ++keysetsiter) { | 
|---|
|  | 552 | if ((*keysetsiter).size() <= level) | 
|---|
|  | 553 | localValueMask[index] = true; | 
|---|
|  | 554 | ++index; | 
|---|
|  | 555 | } | 
|---|
|  | 556 | LOG(2, "DEBUG: ValueMask for cycle correction at level " << level << " is " | 
|---|
|  | 557 | << localValueMask << "."); | 
|---|
|  | 558 | // create FragmentationShortRangeResults | 
|---|
|  | 559 | FragmentationShortRangeResults localresults(shortrangedata, keysets, forcekeysets, localValueMask); | 
|---|
|  | 560 | // and perform summation | 
|---|
|  | 561 | localresults(shortrangedata); | 
|---|
|  | 562 | // finally, extract the corrections from last level | 
|---|
|  | 563 | cycleresults.Result_Energy_fused[level-1] = | 
|---|
|  | 564 | localresults.Result_Energy_fused.back(); | 
|---|
|  | 565 | cycleresults.Result_Time_fused[level-1] = | 
|---|
|  | 566 | localresults.Result_Time_fused.back(); | 
|---|
|  | 567 | cycleresults.Result_Force_fused[level-1] = | 
|---|
|  | 568 | localresults.Result_Force_fused.back(); | 
|---|
|  | 569 | } | 
|---|
|  | 570 | printReceivedCycleResults(cycleresults); | 
|---|
|  | 571 | } | 
|---|
|  | 572 |  | 
|---|
| [d93d2c] | 573 | static void AddForces( | 
|---|
|  | 574 | const IndexedVectors::indexedvectors_t &_forces, | 
|---|
|  | 575 | const bool _IsAngstroem) | 
|---|
|  | 576 | { | 
|---|
|  | 577 | for(IndexedVectors::indexedvectors_t::const_iterator iter = _forces.begin(); | 
|---|
|  | 578 | iter != _forces.end(); ++iter) { | 
|---|
|  | 579 | const IndexedVectors::index_t &index = iter->first; | 
|---|
|  | 580 | const IndexedVectors::vector_t &forcevector = iter->second; | 
|---|
|  | 581 | ASSERT( forcevector.size() == NDIM, | 
|---|
|  | 582 | "printReceivedShortResults() - obtained force vector has incorrect dimension."); | 
|---|
|  | 583 | // note that mpqc calculates a gradient, hence force pointing into opposite direction | 
|---|
|  | 584 | // we have to mind different units here: MPQC has a_o, while we may have angstroem | 
|---|
|  | 585 | Vector ForceVector(-forcevector[0], -forcevector[1], -forcevector[2]); | 
|---|
|  | 586 | if (_IsAngstroem) | 
|---|
|  | 587 | for (size_t i=0;i<NDIM;++i) | 
|---|
|  | 588 | ForceVector[i] *= AtomicLengthToAngstroem; | 
|---|
|  | 589 | atom *_atom = World::getInstance().getAtom(AtomById(index)); | 
|---|
|  | 590 | if(_atom != NULL) | 
|---|
|  | 591 | _atom->setAtomicForce(_atom->getAtomicForce() + ForceVector); | 
|---|
|  | 592 | else | 
|---|
|  | 593 | ELOG(2, "Could not find atom to id " << index << "."); | 
|---|
|  | 594 | } | 
|---|
|  | 595 | } | 
|---|
|  | 596 |  | 
|---|
| [b5b01e] | 597 | ActionState::ptr FragmentationAnalyseFragmentationResultsAction::performCall() { | 
|---|
| [ce70d25] | 598 | bool status=true; | 
|---|
| [a3427f] | 599 |  | 
|---|
| [0588e9] | 600 | /// get data and keysets from ResultsContainer | 
|---|
| [d203350] | 601 | FragmentationResultContainer& container = FragmentationResultContainer::getInstance(); | 
|---|
| [a3427f] | 602 | const std::map<JobId_t, MPQCData> &shortrangedata = container.getShortRangeResults(); | 
|---|
|  | 603 | const KeySetsContainer &keysets = container.getKeySets(); | 
|---|
|  | 604 | const KeySetsContainer &forcekeysets = container.getForceKeySets(); | 
|---|
|  | 605 | const bool DoLongrange = container.areFullRangeResultsPresent(); | 
|---|
| [e5ebaf] | 606 | const bool IsAngstroem = true; | 
|---|
| [a3427f] | 607 |  | 
|---|
| [55e1bc] | 608 | if (keysets.KeySets.empty()) { | 
|---|
| [26b4d62] | 609 | STATUS("There are no results in the container."); | 
|---|
| [55e1bc] | 610 | return Action::failure; | 
|---|
|  | 611 | } | 
|---|
|  | 612 |  | 
|---|
| [0588e9] | 613 | /// calculate normal contributions with (if present) cycles coming at their | 
|---|
|  | 614 | /// respective bond order. | 
|---|
| [e0ae58d] | 615 | std::vector<bool> ValueMask(shortrangedata.size(), true); | 
|---|
|  | 616 | FragmentationShortRangeResults shortrangeresults(shortrangedata, keysets, forcekeysets, ValueMask); | 
|---|
| [a3427f] | 617 | shortrangeresults(shortrangedata); | 
|---|
|  | 618 | printReceivedShortResults(shortrangeresults); | 
|---|
| [47cee7] | 619 | printReceivedShortResultsPerIndex(shortrangeresults); | 
|---|
| [c8d13f5] | 620 | // add summed results to container | 
|---|
|  | 621 | container.addShortRangeSummedResults(shortrangeresults.getSummedShortRangeResults()); | 
|---|
| [a3427f] | 622 |  | 
|---|
| [0588e9] | 623 | /// now do we need to calculate the cycle contribution | 
|---|
|  | 624 | // check whether there are cycles in container or else in file | 
|---|
|  | 625 | KeySetsContainer cycles = container.getCycles(); | 
|---|
|  | 626 | if (cycles.KeySets.empty()) { | 
|---|
|  | 627 | // parse from file if cycles is empty | 
|---|
|  | 628 | boost::filesystem::path filename( | 
|---|
|  | 629 | params.prefix.get() + std::string(CYCLEKEYSETFILE)); | 
|---|
|  | 630 | if (boost::filesystem::exists(filename)) { | 
|---|
|  | 631 | LOG(1, "INFO: Parsing cycles file " << filename.string() << "."); | 
|---|
|  | 632 | // parse file line by line | 
|---|
|  | 633 | std::ifstream File; | 
|---|
|  | 634 | File.open(filename.string().c_str()); | 
|---|
|  | 635 | typedef std::istream_iterator<detail::Line> InIt; | 
|---|
|  | 636 | for (InIt iter = InIt(File); iter != InIt(); ++iter) { | 
|---|
|  | 637 | KeySetsContainer::IntVector cycle; | 
|---|
|  | 638 | std::stringstream line(*iter); | 
|---|
|  | 639 | while (line.good()) { | 
|---|
|  | 640 | int id; | 
|---|
|  | 641 | line >> id >> ws; | 
|---|
|  | 642 | cycle.push_back(id); | 
|---|
|  | 643 | } | 
|---|
|  | 644 | if (!cycle.empty()) { | 
|---|
|  | 645 | LOG(2, "DEBUG: Adding cycle " << cycle << "."); | 
|---|
|  | 646 | cycles.insert( cycle, cycle.size()); | 
|---|
|  | 647 | } | 
|---|
|  | 648 | } | 
|---|
|  | 649 | File.close(); | 
|---|
|  | 650 | } else { | 
|---|
|  | 651 | LOG(1, "INFO: Cycles file not found at " << filename.string() << "."); | 
|---|
|  | 652 | } | 
|---|
|  | 653 | } | 
|---|
|  | 654 |  | 
|---|
|  | 655 | // calculate energy if cycles are calculated fully at each level already | 
|---|
|  | 656 | if (!cycles.KeySets.empty()) { | 
|---|
| [f58e56] | 657 | calculateCycleFullContribution( | 
|---|
|  | 658 | shortrangedata, | 
|---|
|  | 659 | keysets, | 
|---|
|  | 660 | forcekeysets, | 
|---|
|  | 661 | cycles, | 
|---|
|  | 662 | shortrangeresults); | 
|---|
| [0588e9] | 663 | } | 
|---|
|  | 664 |  | 
|---|
| [e5ebaf] | 665 | // adding obtained forces | 
|---|
| [a58c16] | 666 | if ( const_cast<const World &>(World::getInstance()).getAllAtoms().size() != 0) { | 
|---|
| [d93d2c] | 667 | const IndexedVectors::indexedvectors_t shortrange_forces = | 
|---|
| [e5ebaf] | 668 | boost::fusion::at_key<MPQCDataFused::forces>( | 
|---|
|  | 669 | shortrangeresults.Result_Force_fused.back() | 
|---|
|  | 670 | ).getVectors(); | 
|---|
| [d93d2c] | 671 | AddForces(shortrange_forces,IsAngstroem); | 
|---|
| [e5ebaf] | 672 | } else { | 
|---|
|  | 673 | LOG(1, "INFO: Full molecule not loaded, hence will not add forces to atoms."); | 
|---|
|  | 674 | } | 
|---|
|  | 675 |  | 
|---|
| [18ed8c] | 676 | #if defined(HAVE_JOBMARKET) && defined(HAVE_VMG) | 
|---|
| [a3427f] | 677 | if (DoLongrange) { | 
|---|
| [a58c16] | 678 | if ( const_cast<const World &>(World::getInstance()).getAllAtoms().size() == 0) { | 
|---|
| [057c8a] | 679 | STATUS("Please load the full molecule into std::map<JobId_t, VMGData> longrangeData the world before starting this action."); | 
|---|
| [a3427f] | 680 | return Action::failure; | 
|---|
|  | 681 | } | 
|---|
|  | 682 |  | 
|---|
|  | 683 | FragmentationChargeDensity summedChargeDensity(shortrangedata,keysets); | 
|---|
|  | 684 | const std::vector<SamplingGrid> full_sample = summedChargeDensity.getFullSampledGrid(); | 
|---|
|  | 685 |  | 
|---|
|  | 686 | std::map<JobId_t, VMGData> longrangeData = container.getLongRangeResults(); | 
|---|
|  | 687 | // remove full solution corresponding to full_sample from map (must be highest ids), has to be treated extra | 
|---|
|  | 688 | std::map<JobId_t, VMGData>::iterator iter = longrangeData.end(); | 
|---|
| [057c8a] | 689 | std::advance(iter, -full_sample.size()); | 
|---|
| [a3427f] | 690 | std::map<JobId_t, VMGData>::iterator remove_iter = iter; | 
|---|
|  | 691 | std::vector<VMGData> fullsolutionData; | 
|---|
|  | 692 | for (; iter != longrangeData.end(); ++iter) | 
|---|
|  | 693 | fullsolutionData.push_back(iter->second); | 
|---|
| [057c8a] | 694 | if (longrangeData.size() > 1) // when there's just a single fragment, it corresponds to full solution | 
|---|
|  | 695 | longrangeData.erase(remove_iter, longrangeData.end()); | 
|---|
| [a3427f] | 696 |  | 
|---|
|  | 697 | // Final phase: sum up and print result | 
|---|
| [666e9e] | 698 | IndexedVectors::indices_t implicit_indices; | 
|---|
|  | 699 | if (params.UseImplicitCharges.get()) { | 
|---|
|  | 700 | // place all in implicit charges that are not selected but contained in ParticleRegistry | 
|---|
|  | 701 | const World &world = const_cast<const World &>(World::getInstance()); | 
|---|
|  | 702 | const ParticleRegistry ®istry = const_cast<const ParticleRegistry &>(ParticleRegistry::getInstance()); | 
|---|
|  | 703 | const World::ConstAtomComposite &atoms = world.getAllAtoms(); | 
|---|
|  | 704 | for (World::ConstAtomComposite::const_iterator iter = atoms.begin(); | 
|---|
|  | 705 | iter != atoms.end(); ++iter) { | 
|---|
|  | 706 | const atomId_t atomid = (*iter)->getId(); | 
|---|
|  | 707 | if (!world.isAtomSelected(atomid)) { | 
|---|
|  | 708 | const std::string &symbol = (*iter)->getElement().getSymbol(); | 
|---|
|  | 709 | if (registry.isPresentByName(symbol)) | 
|---|
|  | 710 | implicit_indices.push_back(atomid); | 
|---|
|  | 711 | } | 
|---|
|  | 712 | } | 
|---|
|  | 713 | LOG(2, "INFO: We added " << implicit_indices.size() << " indices due to implicit charges."); | 
|---|
|  | 714 | } | 
|---|
|  | 715 |  | 
|---|
| [a3427f] | 716 | FragmentationLongRangeResults longrangeresults( | 
|---|
|  | 717 | shortrangedata,longrangeData,keysets, forcekeysets); | 
|---|
|  | 718 | longrangeresults( | 
|---|
|  | 719 | shortrangedata, | 
|---|
|  | 720 | longrangeData, | 
|---|
|  | 721 | fullsolutionData, | 
|---|
| [666e9e] | 722 | full_sample, | 
|---|
|  | 723 | implicit_indices); | 
|---|
| [a3427f] | 724 | printReceivedFullResults(longrangeresults); | 
|---|
|  | 725 |  | 
|---|
| [d93d2c] | 726 | // add long-range forces | 
|---|
|  | 727 | if ( const_cast<const World &>(World::getInstance()).getAllAtoms().size() != 0) { | 
|---|
|  | 728 | const IndexedVectors::indexedvectors_t longrange_forces = | 
|---|
|  | 729 | boost::fusion::at_key<VMGDataFused::forces_longrange>( | 
|---|
|  | 730 | longrangeresults.Result_ForcesLongRangeIntegrated_fused.back() | 
|---|
|  | 731 | ).getVectors(); | 
|---|
|  | 732 | AddForces(longrange_forces,IsAngstroem); | 
|---|
|  | 733 | } else { | 
|---|
|  | 734 | LOG(1, "INFO: Full molecule not loaded, hence will not add forces to atoms."); | 
|---|
|  | 735 | } | 
|---|
|  | 736 |  | 
|---|
| [a3427f] | 737 | // append all keysets to homology file | 
|---|
| [ce70d25] | 738 | status = appendToHomologies(shortrangeresults, longrangeresults, params.DoStoreGrids.get()); | 
|---|
| [d76d65] | 739 | } else { | 
|---|
|  | 740 | // append all keysets to homology file with short-range info only (without grids) | 
|---|
|  | 741 | std::map<JobId_t, VMGData> longrangeData; | 
|---|
|  | 742 | FragmentationLongRangeResults longrangeresults( | 
|---|
| [666e9e] | 743 | shortrangedata, longrangeData, keysets, forcekeysets); | 
|---|
| [ce70d25] | 744 | status = appendToHomologies(shortrangeresults, longrangeresults, false); | 
|---|
| [a3427f] | 745 | } | 
|---|
| [e2925fd] | 746 | #else | 
|---|
| [18ed8c] | 747 | if (DoLongrange) { | 
|---|
| [e2925fd] | 748 | ELOG(2, "File contains long-range information but long-range analysis capability not compiled in."); | 
|---|
| [18ed8c] | 749 | } | 
|---|
| [d76d65] | 750 |  | 
|---|
|  | 751 | // append all keysets to homology file with short-range info only (without grids) | 
|---|
| [ce70d25] | 752 | status = appendToHomologies(shortrangeresults, false); | 
|---|
| [a3427f] | 753 | #endif | 
|---|
|  | 754 |  | 
|---|
| [16893f] | 755 | // we no longer clear the container | 
|---|
|  | 756 | //  container.clear(); | 
|---|
| [a3427f] | 757 |  | 
|---|
| [ce70d25] | 758 | if (status) | 
|---|
|  | 759 | return Action::success; | 
|---|
|  | 760 | else { | 
|---|
|  | 761 | STATUS("AnalyseFragmentResultsAction failed: invalid results, failed to append to homologies."); | 
|---|
|  | 762 | return Action::failure; | 
|---|
|  | 763 | } | 
|---|
| [a3427f] | 764 | } | 
|---|
|  | 765 |  | 
|---|
| [b5b01e] | 766 | ActionState::ptr FragmentationAnalyseFragmentationResultsAction::performUndo(ActionState::ptr _state) { | 
|---|
| [a3427f] | 767 | return Action::success; | 
|---|
|  | 768 | } | 
|---|
|  | 769 |  | 
|---|
| [b5b01e] | 770 | ActionState::ptr FragmentationAnalyseFragmentationResultsAction::performRedo(ActionState::ptr _state){ | 
|---|
| [a3427f] | 771 | return Action::success; | 
|---|
|  | 772 | } | 
|---|
|  | 773 |  | 
|---|
|  | 774 | bool FragmentationAnalyseFragmentationResultsAction::canUndo() { | 
|---|
|  | 775 | return false; | 
|---|
|  | 776 | } | 
|---|
|  | 777 |  | 
|---|
|  | 778 | bool FragmentationAnalyseFragmentationResultsAction::shouldUndo() { | 
|---|
|  | 779 | return false; | 
|---|
|  | 780 | } | 
|---|
|  | 781 | /** =========== end of function ====================== */ | 
|---|