| [ba1823] | 1 | /* | 
|---|
|  | 2 | * Project: MoleCuilder | 
|---|
|  | 3 | * Description: creates and alters molecular systems | 
|---|
| [0aa122] | 4 | * Copyright (C)  2010-2012 University of Bonn. All rights reserved. | 
|---|
| [ba1823] | 5 | * Please see the LICENSE file or "Copyright notice" in builder.cpp for details. | 
|---|
|  | 6 | */ | 
|---|
|  | 7 |  | 
|---|
|  | 8 | /* | 
|---|
|  | 9 | * fragmentation_helpers.cpp | 
|---|
|  | 10 | * | 
|---|
|  | 11 | *  Created on: Oct 18, 2011 | 
|---|
|  | 12 | *      Author: heber | 
|---|
|  | 13 | */ | 
|---|
|  | 14 |  | 
|---|
|  | 15 | // include config.h | 
|---|
|  | 16 | #ifdef HAVE_CONFIG_H | 
|---|
|  | 17 | #include <config.h> | 
|---|
|  | 18 | #endif | 
|---|
|  | 19 |  | 
|---|
|  | 20 | #include "CodePatterns/MemDebug.hpp" | 
|---|
|  | 21 |  | 
|---|
|  | 22 | #include "fragmentation_helpers.hpp" | 
|---|
|  | 23 |  | 
|---|
|  | 24 | #include <sstream> | 
|---|
|  | 25 |  | 
|---|
|  | 26 | #include "CodePatterns/Log.hpp" | 
|---|
|  | 27 |  | 
|---|
| [6f0841] | 28 | #include "Atom/atom.hpp" | 
|---|
| [ba1823] | 29 | #include "Bond/bond.hpp" | 
|---|
|  | 30 | #include "Element/element.hpp" | 
|---|
| [730d7a] | 31 | #include "Fragmentation/AdaptivityMap.hpp" | 
|---|
| [dadc74] | 32 | #include "Fragmentation/Graph.hpp" | 
|---|
| [f0674a] | 33 | #include "Fragmentation/KeySet.hpp" | 
|---|
| [ba1823] | 34 | #include "Helpers/defs.hpp" | 
|---|
|  | 35 | #include "Helpers/helpers.hpp" | 
|---|
|  | 36 | #include "molecule.hpp" | 
|---|
|  | 37 |  | 
|---|
|  | 38 | using namespace std; | 
|---|
|  | 39 |  | 
|---|
|  | 40 | /** print atom mask for debugging. | 
|---|
|  | 41 | * \param *out output stream for debugging | 
|---|
|  | 42 | * \param *AtomMask defines true/false per global Atom::Nr to mask in/out each nuclear site, used to activate given number of site to increment order adaptively | 
|---|
|  | 43 | * \param AtomCount number of entries in \a *AtomMask | 
|---|
|  | 44 | */ | 
|---|
|  | 45 | void PrintAtomMask(bool *AtomMask, int AtomCount) | 
|---|
|  | 46 | { | 
|---|
| [47d041] | 47 | std::stringstream output; | 
|---|
|  | 48 | output << "              "; | 
|---|
| [ba1823] | 49 | for(int i=0;i<AtomCount;i++) | 
|---|
| [47d041] | 50 | output << (i % 10); | 
|---|
|  | 51 | LOG(2, output.str()); | 
|---|
|  | 52 | output.clear(); | 
|---|
|  | 53 | output << "Atom mask is: "; | 
|---|
| [ba1823] | 54 | for(int i=0;i<AtomCount;i++) | 
|---|
| [47d041] | 55 | output << (AtomMask[i] ? "t" : "f"); | 
|---|
|  | 56 | LOG(2, output.str()); | 
|---|
| [ba1823] | 57 | }; | 
|---|
|  | 58 |  | 
|---|
|  | 59 | /** Combines all KeySets from all orders into single ones (with just unique entries). | 
|---|
|  | 60 | * \param *out output stream for debugging | 
|---|
|  | 61 | * \param *&FragmentList list to fill | 
|---|
|  | 62 | * \param ***FragmentLowerOrdersList | 
|---|
|  | 63 | * \param &RootStack stack with all root candidates (unequal to each atom in complete molecule if adaptive scheme is applied) | 
|---|
|  | 64 | * \param *mol molecule with atoms and bonds | 
|---|
|  | 65 | */ | 
|---|
|  | 66 | int CombineAllOrderListIntoOne(Graph *&FragmentList, Graph ***FragmentLowerOrdersList, KeyStack &RootStack, molecule *mol) | 
|---|
|  | 67 | { | 
|---|
|  | 68 | int RootNr = 0; | 
|---|
|  | 69 | int RootKeyNr = 0; | 
|---|
|  | 70 | int StartNr = 0; | 
|---|
|  | 71 | int counter = 0; | 
|---|
|  | 72 | int NumLevels = 0; | 
|---|
|  | 73 | atom *Walker = NULL; | 
|---|
|  | 74 |  | 
|---|
| [47d041] | 75 | LOG(0, "Combining the lists of all orders per order and finally into a single one."); | 
|---|
| [ba1823] | 76 | if (FragmentList == NULL) { | 
|---|
|  | 77 | FragmentList = new Graph; | 
|---|
|  | 78 | counter = 0; | 
|---|
|  | 79 | } else { | 
|---|
|  | 80 | counter = FragmentList->size(); | 
|---|
|  | 81 | } | 
|---|
|  | 82 |  | 
|---|
|  | 83 | StartNr = RootStack.back(); | 
|---|
|  | 84 | do { | 
|---|
|  | 85 | RootKeyNr = RootStack.front(); | 
|---|
|  | 86 | RootStack.pop_front(); | 
|---|
|  | 87 | Walker = mol->FindAtom(RootKeyNr); | 
|---|
|  | 88 | NumLevels = 1 << (Walker->AdaptiveOrder - 1); | 
|---|
|  | 89 | for(int i=0;i<NumLevels;i++) { | 
|---|
|  | 90 | if (FragmentLowerOrdersList[RootNr][i] != NULL) { | 
|---|
| [dadc74] | 91 | (*FragmentList).InsertGraph((*FragmentLowerOrdersList[RootNr][i]), &counter); | 
|---|
| [ba1823] | 92 | } | 
|---|
|  | 93 | } | 
|---|
|  | 94 | RootStack.push_back(Walker->getNr()); | 
|---|
|  | 95 | RootNr++; | 
|---|
|  | 96 | } while (RootKeyNr != StartNr); | 
|---|
|  | 97 | return counter; | 
|---|
|  | 98 | }; | 
|---|
|  | 99 |  | 
|---|
|  | 100 | /** Free's memory allocated for all KeySets from all orders. | 
|---|
|  | 101 | * \param *out output stream for debugging | 
|---|
|  | 102 | * \param ***FragmentLowerOrdersList | 
|---|
|  | 103 | * \param &RootStack stack with all root candidates (unequal to each atom in complete molecule if adaptive scheme is applied) | 
|---|
|  | 104 | * \param *mol molecule with atoms and bonds | 
|---|
|  | 105 | */ | 
|---|
|  | 106 | void FreeAllOrdersList(Graph ***FragmentLowerOrdersList, KeyStack &RootStack, molecule *mol) | 
|---|
|  | 107 | { | 
|---|
| [47d041] | 108 | LOG(1, "Free'ing the lists of all orders per order."); | 
|---|
| [ba1823] | 109 | int RootNr = 0; | 
|---|
|  | 110 | int RootKeyNr = 0; | 
|---|
|  | 111 | int NumLevels = 0; | 
|---|
|  | 112 | atom *Walker = NULL; | 
|---|
|  | 113 | while (!RootStack.empty()) { | 
|---|
|  | 114 | RootKeyNr = RootStack.front(); | 
|---|
|  | 115 | RootStack.pop_front(); | 
|---|
|  | 116 | Walker = mol->FindAtom(RootKeyNr); | 
|---|
|  | 117 | NumLevels = 1 << (Walker->AdaptiveOrder - 1); | 
|---|
|  | 118 | for(int i=0;i<NumLevels;i++) { | 
|---|
|  | 119 | if (FragmentLowerOrdersList[RootNr][i] != NULL) { | 
|---|
|  | 120 | delete(FragmentLowerOrdersList[RootNr][i]); | 
|---|
|  | 121 | } | 
|---|
|  | 122 | } | 
|---|
|  | 123 | delete[](FragmentLowerOrdersList[RootNr]); | 
|---|
|  | 124 | RootNr++; | 
|---|
|  | 125 | } | 
|---|
|  | 126 | delete[](FragmentLowerOrdersList); | 
|---|
|  | 127 | }; | 
|---|
|  | 128 |  | 
|---|