| [bcf653] | 1 | /*
|
|---|
| 2 | * Project: MoleCuilder
|
|---|
| 3 | * Description: creates and alters molecular systems
|
|---|
| [0aa122] | 4 | * Copyright (C) 2010-2012 University of Bonn. All rights reserved.
|
|---|
| [5aaa43] | 5 | * Copyright (C) 2013 Frederik Heber. All rights reserved.
|
|---|
| [94d5ac6] | 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/>.
|
|---|
| [bcf653] | 22 | */
|
|---|
| 23 |
|
|---|
| [97ebf8] | 24 | /*
|
|---|
| 25 | * FragmentationAction.cpp
|
|---|
| 26 | *
|
|---|
| 27 | * Created on: May 9, 2010
|
|---|
| 28 | * Author: heber
|
|---|
| 29 | */
|
|---|
| 30 |
|
|---|
| [bf3817] | 31 | // include config.h
|
|---|
| 32 | #ifdef HAVE_CONFIG_H
|
|---|
| 33 | #include <config.h>
|
|---|
| 34 | #endif
|
|---|
| 35 |
|
|---|
| [ad011c] | 36 | #include "CodePatterns/MemDebug.hpp"
|
|---|
| [112b09] | 37 |
|
|---|
| [6f0841] | 38 | #include "Atom/atom.hpp"
|
|---|
| [c7c615] | 39 | #include "CodePatterns/IteratorAdaptors.hpp"
|
|---|
| [ad011c] | 40 | #include "CodePatterns/Log.hpp"
|
|---|
| [79d0b9] | 41 | #include "Descriptors/AtomSelectionDescriptor.hpp"
|
|---|
| [270bdf] | 42 | #include "Descriptors/MoleculeIdDescriptor.hpp"
|
|---|
| [56c55f3] | 43 | #include "Fragmentation/AdaptivityMap.hpp"
|
|---|
| [d9dbef] | 44 | #include "Fragmentation/Exporters/ExportGraph_ToAtomFragments.hpp"
|
|---|
| [ca8bea] | 45 | #include "Fragmentation/Exporters/ExportGraph_ToFiles.hpp"
|
|---|
| [ac9ca4] | 46 | #include "Fragmentation/Exporters/ExportGraph_ToJobs.hpp"
|
|---|
| [5d5550] | 47 | #include "Fragmentation/Exporters/SaturatedBond.hpp"
|
|---|
| [98a293b] | 48 | #include "Fragmentation/Exporters/SaturatedFragment.hpp"
|
|---|
| [5d5550] | 49 | #include "Fragmentation/Exporters/SaturationDistanceMaximizer.hpp"
|
|---|
| [246e13] | 50 | #include "Fragmentation/Fragmentation.hpp"
|
|---|
| [b4f72c] | 51 | #include "Fragmentation/Graph.hpp"
|
|---|
| [07a47e] | 52 | #include "Fragmentation/HydrogenSaturation_enum.hpp"
|
|---|
| [13c5c1] | 53 | #include "Fragmentation/Interfragmenter.hpp"
|
|---|
| [adb51ab] | 54 | #include "Fragmentation/KeySetsContainer.hpp"
|
|---|
| 55 | #include "Fragmentation/Summation/Containers/FragmentationResultContainer.hpp"
|
|---|
| [0fad93] | 56 | #include "Graph/AdjacencyList.hpp"
|
|---|
| [79d0b9] | 57 | #include "Graph/BondGraph.hpp"
|
|---|
| [fe0cb8] | 58 | #include "Graph/CyclicStructureAnalysis.hpp"
|
|---|
| [49c059] | 59 | #include "Graph/DepthFirstSearchAnalysis.hpp"
|
|---|
| [9511c7] | 60 | #include "Helpers/defs.hpp"
|
|---|
| [97ebf8] | 61 | #include "molecule.hpp"
|
|---|
| 62 | #include "World.hpp"
|
|---|
| 63 |
|
|---|
| [c7c615] | 64 | #include <boost/shared_ptr.hpp>
|
|---|
| [3aa8a5] | 65 | #include <boost/filesystem.hpp>
|
|---|
| [c7c615] | 66 | #include <algorithm>
|
|---|
| [97ebf8] | 67 | #include <iostream>
|
|---|
| [2a0eb0] | 68 | #include <map>
|
|---|
| [97ebf8] | 69 | #include <string>
|
|---|
| [2a0eb0] | 70 | #include <vector>
|
|---|
| [97ebf8] | 71 |
|
|---|
| [1fd675] | 72 | #include "Actions/FragmentationAction/FragmentationAction.hpp"
|
|---|
| [70d9b9] | 73 |
|
|---|
| [ce7fdc] | 74 | using namespace MoleCuilder;
|
|---|
| 75 |
|
|---|
| [1fd675] | 76 | // and construct the stuff
|
|---|
| 77 | #include "FragmentationAction.def"
|
|---|
| 78 | #include "Action_impl_pre.hpp"
|
|---|
| 79 | /** =========== define the function ====================== */
|
|---|
| [b5b01e] | 80 | ActionState::ptr FragmentationFragmentationAction::performCall() {
|
|---|
| [e4b5de] | 81 | clock_t start,end;
|
|---|
| [2a0eb0] | 82 | int ExitFlag = -1;
|
|---|
| 83 | World &world = World::getInstance();
|
|---|
| [e4b5de] | 84 |
|
|---|
| [2a0eb0] | 85 | // inform about used parameters
|
|---|
| [13c5c1] | 86 | LOG(0, "STATUS: Fragmenting molecular system with current connection matrix up to "
|
|---|
| [bae7bc] | 87 | << params.order.get() << " order. ");
|
|---|
| 88 | if (params.types.get().size() != 0)
|
|---|
| 89 | LOG(0, "STATUS: Fragment files begin with "
|
|---|
| 90 | << params.prefix.get() << " and are stored as: "
|
|---|
| 91 | << params.types.get() << "." << std::endl);
|
|---|
| [99b0dc] | 92 |
|
|---|
| [2a0eb0] | 93 | // check for selected atoms
|
|---|
| 94 | if (world.beginAtomSelection() == world.endAtomSelection()) {
|
|---|
| [26b4d62] | 95 | STATUS("There are no atoms selected for fragmentation.");
|
|---|
| [2a0eb0] | 96 | return Action::failure;
|
|---|
| 97 | }
|
|---|
| 98 |
|
|---|
| 99 | // go through all atoms, note down their molecules and group them
|
|---|
| [270bdf] | 100 | typedef std::multimap<const molecule *, atom *> clusters_t;
|
|---|
| [3aa8a5] | 101 | typedef std::vector<atomId_t> atomids_t;
|
|---|
| 102 | atomids_t atomids;
|
|---|
| [2a0eb0] | 103 | clusters_t clusters;
|
|---|
| 104 | for (World::AtomSelectionConstIterator iter = world.beginAtomSelection();
|
|---|
| 105 | iter != world.endAtomSelection(); ++iter) {
|
|---|
| 106 | clusters.insert( std::make_pair(iter->second->getMolecule(), iter->second) );
|
|---|
| [3aa8a5] | 107 | atomids.push_back(iter->second->getId());
|
|---|
| [2a0eb0] | 108 | }
|
|---|
| [c7c615] | 109 | {
|
|---|
| [270bdf] | 110 | std::vector<const molecule *> molecules;
|
|---|
| [c7c615] | 111 | molecules.insert( molecules.end(), MapKeyIterator<clusters_t::const_iterator>(clusters.begin()),
|
|---|
| 112 | MapKeyIterator<clusters_t::const_iterator>(clusters.end()) );
|
|---|
| 113 | molecules.erase( std::unique(molecules.begin(), molecules.end()), molecules.end() );
|
|---|
| 114 | LOG(1, "INFO: There are " << molecules.size() << " molecules to consider.");
|
|---|
| 115 | }
|
|---|
| [2a0eb0] | 116 |
|
|---|
| [9511c7] | 117 | // parse in Adjacency file
|
|---|
| [3aa8a5] | 118 | boost::shared_ptr<AdjacencyList> FileChecker;
|
|---|
| 119 | boost::filesystem::path filename(params.prefix.get() + std::string(ADJACENCYFILE));
|
|---|
| [56c55f3] | 120 | if ((params.ParseStateFiles.get())
|
|---|
| 121 | && boost::filesystem::exists(filename)
|
|---|
| 122 | && boost::filesystem::is_regular_file(filename)) {
|
|---|
| [3aa8a5] | 123 | std::ifstream File;
|
|---|
| 124 | File.open(filename.string().c_str(), ios::out);
|
|---|
| 125 | FileChecker.reset(new AdjacencyList(File));
|
|---|
| 126 | File.close();
|
|---|
| 127 | } else {
|
|---|
| 128 | LOG(1, "INFO: Could not open default adjacency file " << filename.string() << ".");
|
|---|
| 129 | FileChecker.reset(new AdjacencyList);
|
|---|
| 130 | }
|
|---|
| [9511c7] | 131 |
|
|---|
| [79d0b9] | 132 | // make sure bond degree is correct
|
|---|
| 133 | {
|
|---|
| 134 | BondGraph *BG = World::getInstance().getBondGraph();
|
|---|
| 135 | World::AtomComposite Set = World::getInstance().getAllAtoms(AtomsBySelection());
|
|---|
| [0763ce] | 136 | // check whether bond graph is correct
|
|---|
| 137 | if (!BG->checkBondDegree(Set))
|
|---|
| 138 | BG->CorrectBondDegree(Set);
|
|---|
| 139 | else
|
|---|
| 140 | LOG(1, "INFO: Bond degrees all valid, not correcting.");
|
|---|
| [6e5ca9] | 141 | if (!BG->checkBondDegree(Set)) {
|
|---|
| 142 | ELOG(1, "Bond graph is invalid with respect to charge neutrality condition, aborting.");
|
|---|
| 143 | return Action::failure;
|
|---|
| 144 | }
|
|---|
| [79d0b9] | 145 | }
|
|---|
| 146 |
|
|---|
| [bfbd4a] | 147 | // we parse in the keysets from last time if present
|
|---|
| 148 | Graph StoredGraph;
|
|---|
| [56c55f3] | 149 | if (params.ParseStateFiles.get()) {
|
|---|
| 150 | StoredGraph.ParseKeySetFile(params.prefix.get());
|
|---|
| 151 | // check parsed graph against the set of atoms
|
|---|
| 152 | {
|
|---|
| 153 | AdaptivityMap *amap = StoredGraph.GraphToAdaptivityMap();
|
|---|
| 154 | bool status = true;
|
|---|
| 155 | for (World::AtomSelectionConstIterator iter = world.beginAtomSelection();
|
|---|
| 156 | iter != world.endAtomSelection(); ++iter) {
|
|---|
| 157 | const atomId_t atomid = iter->second->getId();
|
|---|
| 158 | // skip hydrogens in check if saturation is turned on
|
|---|
| 159 | if ((iter->second->getType()->getAtomicNumber() != 1)
|
|---|
| 160 | || (!params.DoSaturation.get())) {
|
|---|
| 161 | if (amap->count(atomid) == 0) {
|
|---|
| 162 | ELOG(1, "Atom #" << atomid << " not contained in KeySet file. ");
|
|---|
| 163 | status = false;
|
|---|
| 164 | break;
|
|---|
| 165 | }
|
|---|
| 166 | } else if (amap->count(atomid) != 0) {
|
|---|
| 167 | ELOG(1, "Atom #" << atomid << " in KeySet file is a hydrogen, but is now excluded. ");
|
|---|
| 168 | status = false;
|
|---|
| 169 | break;
|
|---|
| 170 | }
|
|---|
| 171 | }
|
|---|
| 172 | delete amap;
|
|---|
| 173 |
|
|---|
| 174 | if (!status) {
|
|---|
| 175 | ELOG(1, "KeySetsFile seems to contain leftover from an old fragmentation, hence not using file.");
|
|---|
| 176 | StoredGraph.clear();
|
|---|
| 177 | }
|
|---|
| 178 | }
|
|---|
| 179 | }
|
|---|
| [bfbd4a] | 180 |
|
|---|
| [2a0eb0] | 181 | start = clock();
|
|---|
| 182 | // go through all keys (i.e. all molecules)
|
|---|
| 183 | clusters_t::const_iterator advanceiter;
|
|---|
| [b4f72c] | 184 | Graph TotalGraph;
|
|---|
| 185 | int keysetcounter = 0;
|
|---|
| [2a0eb0] | 186 | for (clusters_t::const_iterator iter = clusters.begin();
|
|---|
| 187 | iter != clusters.end();
|
|---|
| 188 | iter = advanceiter) {
|
|---|
| 189 | // get iterator to past last atom in this molecule
|
|---|
| [270bdf] | 190 | const molecule * mol = iter->first;
|
|---|
| [2a0eb0] | 191 | advanceiter = clusters.upper_bound(mol);
|
|---|
| 192 |
|
|---|
| 193 | // copy molecule's atoms' ids as parameters to Fragmentation's AtomMask
|
|---|
| 194 | std::vector<atomId_t> mols_atomids;
|
|---|
| 195 | std::transform(iter, advanceiter, std::back_inserter(mols_atomids),
|
|---|
| 196 | boost::bind( &atom::getNr,
|
|---|
| 197 | boost::bind( &clusters_t::value_type::second, _1 ))
|
|---|
| 198 | );
|
|---|
| 199 | LOG(2, "INFO: Fragmenting in molecule " << mol->getName() << " in " << clusters.count(mol)
|
|---|
| 200 | << " atoms, out of " << mol->getAtomCount() << ".");
|
|---|
| [9291d04] | 201 | const enum HydrogenTreatment treatment = params.HowtoTreatHydrogen.get() ? ExcludeHydrogen : IncludeHydrogen;
|
|---|
| [270bdf] | 202 | molecule * non_const_mol = World::getInstance().getMolecule(MoleculeById(mol->getId()));
|
|---|
| 203 | Fragmentation Fragmenter(non_const_mol, *FileChecker, treatment);
|
|---|
| [2a0eb0] | 204 |
|
|---|
| 205 | // perform fragmentation
|
|---|
| 206 | LOG(0, std::endl << " ========== Fragmentation of molecule " << mol->getName() << " ========================= ");
|
|---|
| 207 | {
|
|---|
| [bfbd4a] | 208 | Graph StoredLocalGraph(StoredGraph.getLocalGraph(mol));
|
|---|
| [56c55f3] | 209 | const int tempFlag = Fragmenter.FragmentMolecule(mols_atomids, params.order.get(), params.prefix.get(), StoredLocalGraph, params.ParseStateFiles.get());
|
|---|
| [2a0eb0] | 210 | if ((ExitFlag == 2) && (tempFlag != 2))
|
|---|
| 211 | ExitFlag = tempFlag; // if there is one molecule that needs further fragmentation, it overrides others
|
|---|
| 212 | if (ExitFlag == -1)
|
|---|
| 213 | ExitFlag = tempFlag; // if we are the first, we set the standard
|
|---|
| [e4b5de] | 214 | }
|
|---|
| [569e42] | 215 | if (TotalGraph.empty()) {
|
|---|
| 216 | TotalGraph = Fragmenter.getGraph();
|
|---|
| 217 | keysetcounter = TotalGraph.size();
|
|---|
| 218 | } else
|
|---|
| 219 | TotalGraph.InsertGraph(Fragmenter.getGraph(), keysetcounter);
|
|---|
| [ca8bea] | 220 |
|
|---|
| [97ebf8] | 221 | }
|
|---|
| [fe0cb8] | 222 | // add full cycles if desired
|
|---|
| 223 | if (params.DoCyclesFull.get()) {
|
|---|
| 224 | // get the BackEdgeStack from somewhere
|
|---|
| 225 | DepthFirstSearchAnalysis DFS;
|
|---|
| 226 | DFS();
|
|---|
| 227 | std::deque<bond::ptr> BackEdgeStack = DFS.getBackEdgeStack();
|
|---|
| 228 | // then we analyse the cycles and get them
|
|---|
| 229 | CyclicStructureAnalysis CycleAnalysis(params.HowtoTreatHydrogen.get() ? ExcludeHydrogen : IncludeHydrogen);
|
|---|
| 230 | CycleAnalysis(&BackEdgeStack);
|
|---|
| 231 | CyclicStructureAnalysis::cycles_t cycles = CycleAnalysis.getAllCycles();
|
|---|
| [adb51ab] | 232 | // sort them according to KeySet::operator<()
|
|---|
| 233 | std::sort(cycles.begin(), cycles.end());
|
|---|
| 234 | // store all found cycles to file
|
|---|
| 235 | {
|
|---|
| 236 | boost::filesystem::path filename(params.prefix.get() + std::string(CYCLEKEYSETFILE));
|
|---|
| 237 | std::ofstream File;
|
|---|
| 238 | LOG(1, "INFO: Storing cycle keysets to " << filename.string() << ".");
|
|---|
| 239 | File.open(filename.string().c_str(), ios::out);
|
|---|
| 240 | for (CyclicStructureAnalysis::cycles_t::const_iterator iter = cycles.begin();
|
|---|
| 241 | iter != cycles.end(); ++iter) {
|
|---|
| 242 | for (CyclicStructureAnalysis::cycle_t::const_iterator cycleiter = (*iter).begin();
|
|---|
| 243 | cycleiter != (*iter).end(); ++cycleiter) {
|
|---|
| 244 | File << *cycleiter << "\t";
|
|---|
| 245 | }
|
|---|
| 246 | File << "\n";
|
|---|
| 247 | }
|
|---|
| 248 | File.close();
|
|---|
| 249 | }
|
|---|
| 250 | // ... and to result container
|
|---|
| 251 | {
|
|---|
| 252 | KeySetsContainer cyclekeys;
|
|---|
| 253 | for (CyclicStructureAnalysis::cycles_t::const_iterator iter = cycles.begin();
|
|---|
| 254 | iter != cycles.end(); ++iter) {
|
|---|
| 255 | const CyclicStructureAnalysis::cycle_t &cycle = *iter;
|
|---|
| 256 | const size_t order = cycle.size();
|
|---|
| 257 | KeySetsContainer::IntVector temp_cycle(cycle.begin(), cycle.end());
|
|---|
| 258 | cyclekeys.insert(temp_cycle, order);
|
|---|
| 259 | }
|
|---|
| 260 | FragmentationResultContainer::getInstance().addCycles(cyclekeys);
|
|---|
| 261 | }
|
|---|
| [fe0cb8] | 262 | // Create graph and insert into TotalGraph
|
|---|
| [adb51ab] | 263 | LOG(0, "STATUS: Adding " << cycles.size() << " cycles.");
|
|---|
| [fe0cb8] | 264 | {
|
|---|
| 265 | Graph CycleGraph;
|
|---|
| 266 | for (CyclicStructureAnalysis::cycles_t::const_iterator iter = cycles.begin();
|
|---|
| 267 | iter != cycles.end(); ++iter) {
|
|---|
| 268 | const CyclicStructureAnalysis::cycle_t ¤tcycle = *iter;
|
|---|
| 269 | LOG(2, "INFO: Inserting cycle " << currentcycle << ".");
|
|---|
| 270 | #ifndef NDEBUG
|
|---|
| 271 | std::pair< Graph::iterator, bool > inserter =
|
|---|
| 272 | #endif
|
|---|
| 273 | CycleGraph.insert( std::make_pair(currentcycle, NumberValuePair(1,1.)) );
|
|---|
| 274 | ASSERT( inserter.second,
|
|---|
| 275 | "FragmentationFragmentationAction::performCall() - keyset "
|
|---|
| 276 | +toString(currentcycle)+" inserted twice into CycleGraph.");
|
|---|
| 277 | }
|
|---|
| 278 | TotalGraph.InsertGraph(CycleGraph, keysetcounter);
|
|---|
| 279 | }
|
|---|
| 280 | }
|
|---|
| 281 |
|
|---|
| [569e42] | 282 | LOG(0, "STATUS: There are " << TotalGraph.size() << " fragments.");
|
|---|
| [3aa8a5] | 283 |
|
|---|
| [321470] | 284 | {
|
|---|
| 285 | // remove OrderAtSite file
|
|---|
| 286 | std::string line;
|
|---|
| 287 | std::ofstream file;
|
|---|
| 288 | line = params.prefix.get() + ORDERATSITEFILE;
|
|---|
| 289 | file.open(line.c_str(), std::ofstream::out | std::ofstream::trunc);
|
|---|
| 290 | file << "";
|
|---|
| 291 | file.close();
|
|---|
| 292 | }
|
|---|
| 293 |
|
|---|
| [d410e25] | 294 | // store graph internally
|
|---|
| 295 | AtomFragmentsMap &atomfragments = AtomFragmentsMap::getInstance();
|
|---|
| 296 | atomfragments.clear();
|
|---|
| 297 | atomfragments.insert(TotalGraph);
|
|---|
| 298 |
|
|---|
| [13c5c1] | 299 | // now add interfragments
|
|---|
| 300 | if (params.InterOrder.get() != 0) {
|
|---|
| 301 | LOG(0, "STATUS: Putting fragments together up to order "
|
|---|
| 302 | << params.InterOrder.get() << " and distance of "
|
|---|
| 303 | << params.distance.get() << ".");
|
|---|
| [cee9e8] | 304 | const enum HydrogenTreatment treatment =
|
|---|
| 305 | params.HowtoTreatHydrogen.get() ? ExcludeHydrogen : IncludeHydrogen;
|
|---|
| 306 | const double UpperBound = std::max(10., params.distance.get());
|
|---|
| [d410e25] | 307 | Interfragmenter fragmenter;
|
|---|
| [cee9e8] | 308 |
|
|---|
| 309 | // check the largest Rcut that causes no additional inter-fragments
|
|---|
| 310 | const double Min_Rcut =
|
|---|
| 311 | fragmenter.findLargestCutoff(params.InterOrder.get(), UpperBound, treatment);
|
|---|
| 312 |
|
|---|
| [92232f] | 313 | // if we smear out electronic charges, warn when non-overlapping criterion does not hold
|
|---|
| 314 | if (params.InterOrder.get() < Min_Rcut)
|
|---|
| 315 | ELOG(2, "Inter-order is too low to cause any additional fragments.");
|
|---|
| 316 |
|
|---|
| [cee9e8] | 317 | // then add fragments
|
|---|
| [d410e25] | 318 | fragmenter(TotalGraph, params.InterOrder.get(), params.distance.get(), treatment);
|
|---|
| [cee9e8] | 319 |
|
|---|
| [13c5c1] | 320 | LOG(0, "STATUS: There are now " << TotalGraph.size() << " fragments after interfragmenting.");
|
|---|
| 321 | }
|
|---|
| [d410e25] | 322 | // TODO: When insert only adds and replaces if already present, no clear needed
|
|---|
| [3004d2] | 323 | atomfragments.clear();
|
|---|
| 324 | atomfragments.insert(TotalGraph);
|
|---|
| 325 |
|
|---|
| [bfbd4a] | 326 | // store keysets to file
|
|---|
| 327 | {
|
|---|
| 328 | TotalGraph.StoreKeySetFile(params.prefix.get());
|
|---|
| 329 | }
|
|---|
| 330 |
|
|---|
| [98a293b] | 331 | // create global saturation positions map
|
|---|
| 332 | SaturatedFragment::GlobalSaturationPositions_t globalsaturationpositions;
|
|---|
| [5d5550] | 333 | {
|
|---|
| 334 | // go through each atom
|
|---|
| 335 | for (World::AtomSelectionConstIterator iter = world.beginAtomSelection();
|
|---|
| 336 | iter != world.endAtomSelection(); ++iter) {
|
|---|
| 337 | const atom * const _atom = iter->second;
|
|---|
| 338 |
|
|---|
| 339 | // skip hydrogens if treated special
|
|---|
| 340 | const enum HydrogenTreatment treatment = params.HowtoTreatHydrogen.get() ? ExcludeHydrogen : IncludeHydrogen;
|
|---|
| 341 | if ((treatment == ExcludeHydrogen) && (_atom->getType()->getAtomicNumber() == 1)) {
|
|---|
| 342 | LOG(4, "DEBUG: Skipping hydrogen atom " << *_atom);
|
|---|
| 343 | continue;
|
|---|
| 344 | }
|
|---|
| 345 |
|
|---|
| 346 | // get the valence
|
|---|
| 347 | unsigned int NumberOfPoints = _atom->getElement().getNoValenceOrbitals();
|
|---|
| 348 | LOG(3, "DEBUG: There are " << NumberOfPoints
|
|---|
| 349 | << " places to fill in in total for this atom " << *_atom << ".");
|
|---|
| 350 |
|
|---|
| 351 | // check whether there are any bonds with degree larger than 1
|
|---|
| 352 | unsigned int SumOfDegrees = 0;
|
|---|
| 353 | bool PresentHigherBonds = false;
|
|---|
| 354 | const BondList &bondlist = _atom->getListOfBonds();
|
|---|
| 355 | for (BondList::const_iterator bonditer = bondlist.begin();
|
|---|
| 356 | bonditer != bondlist.end(); ++bonditer) {
|
|---|
| 357 | SumOfDegrees += (*bonditer)->getDegree();
|
|---|
| 358 | PresentHigherBonds |= (*bonditer)->getDegree() > 1;
|
|---|
| 359 | }
|
|---|
| 360 |
|
|---|
| 361 | // check whether there are alphas to maximize the hydrogens distances
|
|---|
| 362 | SaturationDistanceMaximizer::position_bins_t position_bins;
|
|---|
| 363 | {
|
|---|
| 364 | // gather all bonds and convert to SaturatedBonds
|
|---|
| 365 | SaturationDistanceMaximizer::PositionContainers_t CutBonds;
|
|---|
| 366 | for (BondList::const_iterator bonditer = bondlist.begin();
|
|---|
| 367 | bonditer != bondlist.end(); ++bonditer) {
|
|---|
| 368 | CutBonds.push_back(
|
|---|
| 369 | SaturatedBond::ptr(new SaturatedBond(*(bonditer->get()), *_atom) )
|
|---|
| 370 | );
|
|---|
| 371 | }
|
|---|
| 372 | SaturationDistanceMaximizer maximizer(CutBonds);
|
|---|
| 373 | if (PresentHigherBonds) {
|
|---|
| 374 | // then find best alphas
|
|---|
| 375 | maximizer();
|
|---|
| 376 | } else {
|
|---|
| 377 | // if no higher order bonds, we simply gather the scaled positions
|
|---|
| 378 | }
|
|---|
| 379 | position_bins = maximizer.getAllPositionBins();
|
|---|
| 380 | LOG(4, "DEBUG: Positions for atom " << *_atom << " are " << position_bins);
|
|---|
| 381 | }
|
|---|
| 382 |
|
|---|
| 383 | // convert into the desired entry in the map
|
|---|
| 384 | SaturatedFragment::SaturationsPositionsPerNeighbor_t positions_per_neighbor;
|
|---|
| 385 | {
|
|---|
| 386 | BondList::const_iterator bonditer = bondlist.begin();
|
|---|
| 387 | SaturationDistanceMaximizer::position_bins_t::const_iterator biniter =
|
|---|
| 388 | position_bins.begin();
|
|---|
| 389 |
|
|---|
| 390 | for (;bonditer != bondlist.end(); ++bonditer, ++biniter) {
|
|---|
| 391 | const atom * const OtherAtom = (*bonditer)->GetOtherAtom(_atom);
|
|---|
| 392 | std::pair<
|
|---|
| 393 | SaturatedFragment::SaturationsPositionsPerNeighbor_t::iterator,
|
|---|
| 394 | bool
|
|---|
| 395 | > inserter;
|
|---|
| 396 | // check whether we treat hydrogen special
|
|---|
| 397 | if ((treatment == ExcludeHydrogen) && (OtherAtom->getType()->getAtomicNumber() == 1)) {
|
|---|
| 398 | // if hydrogen, forget rescaled position and use original one
|
|---|
| 399 | inserter =
|
|---|
| 400 | positions_per_neighbor.insert(
|
|---|
| 401 | std::make_pair(
|
|---|
| 402 | OtherAtom->getId(),
|
|---|
| 403 | SaturatedFragment::SaturationsPositions_t(
|
|---|
| 404 | 1, OtherAtom->getPosition() - _atom->getPosition())
|
|---|
| 405 | )
|
|---|
| 406 | );
|
|---|
| 407 | } else {
|
|---|
| 408 | inserter =
|
|---|
| 409 | positions_per_neighbor.insert(
|
|---|
| 410 | std::make_pair(
|
|---|
| 411 | OtherAtom->getId(),
|
|---|
| 412 | SaturatedFragment::SaturationsPositions_t(
|
|---|
| 413 | biniter->begin(),
|
|---|
| 414 | biniter->end())
|
|---|
| 415 | )
|
|---|
| 416 | );
|
|---|
| 417 | }
|
|---|
| [e3d0fe] | 418 | // if already present, add to this present list
|
|---|
| [5d5550] | 419 | ASSERT (inserter.second,
|
|---|
| 420 | "FragmentationAction::performCall() - other atom "
|
|---|
| 421 | +toString(*OtherAtom)+" already present?");
|
|---|
| 422 | }
|
|---|
| 423 | // bonditer follows nicely
|
|---|
| 424 | ASSERT( biniter == position_bins.end(),
|
|---|
| 425 | "FragmentationAction::performCall() - biniter is out of step, it still points at bond "
|
|---|
| 426 | +toString(*biniter)+".");
|
|---|
| 427 | }
|
|---|
| 428 | // and insert
|
|---|
| [e3d0fe] | 429 | LOG(3, "DEBUG: For atom " << _atom->getId() << " saturation positions: "
|
|---|
| 430 | << positions_per_neighbor << ".");
|
|---|
| [5d5550] | 431 | globalsaturationpositions.insert(
|
|---|
| 432 | std::make_pair( _atom->getId(),
|
|---|
| 433 | positions_per_neighbor
|
|---|
| 434 | ));
|
|---|
| 435 | }
|
|---|
| 436 | }
|
|---|
| [98a293b] | 437 |
|
|---|
| [3aa8a5] | 438 | {
|
|---|
| [9291d04] | 439 | const enum HydrogenSaturation saturation = params.DoSaturation.get() ? DoSaturate : DontSaturate;
|
|---|
| [276ac6] | 440 | const enum HydrogenTreatment treatment = params.HowtoTreatHydrogen.get() ? ExcludeHydrogen : IncludeHydrogen;
|
|---|
| [ac9ca4] | 441 | if (params.types.get().size() != 0) {
|
|---|
| 442 | // store molecule's fragment to file
|
|---|
| [98a293b] | 443 | ExportGraph_ToFiles exporter(TotalGraph, treatment, saturation, globalsaturationpositions);
|
|---|
| [ac9ca4] | 444 | exporter.setPrefix(params.prefix.get());
|
|---|
| 445 | exporter.setOutputTypes(params.types.get());
|
|---|
| 446 | exporter();
|
|---|
| 447 | } else {
|
|---|
| 448 | // store molecule's fragment in FragmentJobQueue
|
|---|
| [98a293b] | 449 | ExportGraph_ToJobs exporter(TotalGraph, treatment, saturation, globalsaturationpositions);
|
|---|
| [ac9ca4] | 450 | exporter.setLevel(params.level.get());
|
|---|
| 451 | exporter();
|
|---|
| 452 | }
|
|---|
| [d9dbef] | 453 | ExportGraph_ToAtomFragments exporter(TotalGraph, treatment, saturation, globalsaturationpositions);
|
|---|
| 454 | exporter();
|
|---|
| 455 | }
|
|---|
| 456 | if (!AtomFragmentsMap::getInstance().checkCompleteness()) {
|
|---|
| 457 | ELOG(0, "Something went wrong with placing keysets in AtomFragmentsMap.");
|
|---|
| 458 | return Action::failure;
|
|---|
| [3aa8a5] | 459 | }
|
|---|
| 460 |
|
|---|
| 461 | // store Adjacency to file
|
|---|
| 462 | {
|
|---|
| 463 | std::string filename = params.prefix.get() + ADJACENCYFILE;
|
|---|
| 464 | std::ofstream AdjacencyFile;
|
|---|
| 465 | AdjacencyFile.open(filename.c_str(), ios::out);
|
|---|
| 466 | AdjacencyList adjacency(atomids);
|
|---|
| 467 | adjacency.StoreToFile(AdjacencyFile);
|
|---|
| 468 | AdjacencyFile.close();
|
|---|
| 469 | }
|
|---|
| 470 |
|
|---|
| [2a0eb0] | 471 | World::getInstance().setExitFlag(ExitFlag);
|
|---|
| 472 | end = clock();
|
|---|
| 473 | LOG(0, "STATUS: Clocks for this operation: " << (end-start) << ", time: " << ((double)(end-start)/CLOCKS_PER_SEC) << "s.");
|
|---|
| 474 |
|
|---|
| [70d9b9] | 475 | return Action::success;
|
|---|
| [97ebf8] | 476 | }
|
|---|
| 477 |
|
|---|
| [b5b01e] | 478 | ActionState::ptr FragmentationFragmentationAction::performUndo(ActionState::ptr _state) {
|
|---|
| [70d9b9] | 479 | return Action::success;
|
|---|
| [97ebf8] | 480 | }
|
|---|
| 481 |
|
|---|
| [b5b01e] | 482 | ActionState::ptr FragmentationFragmentationAction::performRedo(ActionState::ptr _state){
|
|---|
| [70d9b9] | 483 | return Action::success;
|
|---|
| [97ebf8] | 484 | }
|
|---|
| 485 |
|
|---|
| 486 | bool FragmentationFragmentationAction::canUndo() {
|
|---|
| [70d9b9] | 487 | return true;
|
|---|
| [97ebf8] | 488 | }
|
|---|
| 489 |
|
|---|
| 490 | bool FragmentationFragmentationAction::shouldUndo() {
|
|---|
| [70d9b9] | 491 | return true;
|
|---|
| [97ebf8] | 492 | }
|
|---|
| [1fd675] | 493 | /** =========== end of function ====================== */
|
|---|