[ba1823] | 1 | /*
|
---|
| 2 | * Project: MoleCuilder
|
---|
| 3 | * Description: creates and alters molecular systems
|
---|
| 4 | * Copyright (C) 2010 University of Bonn. All rights reserved.
|
---|
| 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 |
|
---|
| 28 | #include "atom.hpp"
|
---|
| 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 | {
|
---|
| 47 | DoLog(2) && (Log() << Verbose(2) << " ");
|
---|
| 48 | for(int i=0;i<AtomCount;i++)
|
---|
| 49 | DoLog(0) && (Log() << Verbose(0) << (i % 10));
|
---|
| 50 | DoLog(0) && (Log() << Verbose(0) << endl);
|
---|
| 51 | DoLog(2) && (Log() << Verbose(2) << "Atom mask is: ");
|
---|
| 52 | for(int i=0;i<AtomCount;i++)
|
---|
| 53 | DoLog(0) && (Log() << Verbose(0) << (AtomMask[i] ? "t" : "f"));
|
---|
| 54 | DoLog(0) && (Log() << Verbose(0) << endl);
|
---|
| 55 | };
|
---|
| 56 |
|
---|
| 57 | /** Combines all KeySets from all orders into single ones (with just unique entries).
|
---|
| 58 | * \param *out output stream for debugging
|
---|
| 59 | * \param *&FragmentList list to fill
|
---|
| 60 | * \param ***FragmentLowerOrdersList
|
---|
| 61 | * \param &RootStack stack with all root candidates (unequal to each atom in complete molecule if adaptive scheme is applied)
|
---|
| 62 | * \param *mol molecule with atoms and bonds
|
---|
| 63 | */
|
---|
| 64 | int CombineAllOrderListIntoOne(Graph *&FragmentList, Graph ***FragmentLowerOrdersList, KeyStack &RootStack, molecule *mol)
|
---|
| 65 | {
|
---|
| 66 | int RootNr = 0;
|
---|
| 67 | int RootKeyNr = 0;
|
---|
| 68 | int StartNr = 0;
|
---|
| 69 | int counter = 0;
|
---|
| 70 | int NumLevels = 0;
|
---|
| 71 | atom *Walker = NULL;
|
---|
| 72 |
|
---|
| 73 | DoLog(0) && (Log() << Verbose(0) << "Combining the lists of all orders per order and finally into a single one." << endl);
|
---|
| 74 | if (FragmentList == NULL) {
|
---|
| 75 | FragmentList = new Graph;
|
---|
| 76 | counter = 0;
|
---|
| 77 | } else {
|
---|
| 78 | counter = FragmentList->size();
|
---|
| 79 | }
|
---|
| 80 |
|
---|
| 81 | StartNr = RootStack.back();
|
---|
| 82 | do {
|
---|
| 83 | RootKeyNr = RootStack.front();
|
---|
| 84 | RootStack.pop_front();
|
---|
| 85 | Walker = mol->FindAtom(RootKeyNr);
|
---|
| 86 | NumLevels = 1 << (Walker->AdaptiveOrder - 1);
|
---|
| 87 | for(int i=0;i<NumLevels;i++) {
|
---|
| 88 | if (FragmentLowerOrdersList[RootNr][i] != NULL) {
|
---|
[dadc74] | 89 | (*FragmentList).InsertGraph((*FragmentLowerOrdersList[RootNr][i]), &counter);
|
---|
[ba1823] | 90 | }
|
---|
| 91 | }
|
---|
| 92 | RootStack.push_back(Walker->getNr());
|
---|
| 93 | RootNr++;
|
---|
| 94 | } while (RootKeyNr != StartNr);
|
---|
| 95 | return counter;
|
---|
| 96 | };
|
---|
| 97 |
|
---|
| 98 | /** Free's memory allocated for all KeySets from all orders.
|
---|
| 99 | * \param *out output stream for debugging
|
---|
| 100 | * \param ***FragmentLowerOrdersList
|
---|
| 101 | * \param &RootStack stack with all root candidates (unequal to each atom in complete molecule if adaptive scheme is applied)
|
---|
| 102 | * \param *mol molecule with atoms and bonds
|
---|
| 103 | */
|
---|
| 104 | void FreeAllOrdersList(Graph ***FragmentLowerOrdersList, KeyStack &RootStack, molecule *mol)
|
---|
| 105 | {
|
---|
| 106 | DoLog(1) && (Log() << Verbose(1) << "Free'ing the lists of all orders per order." << endl);
|
---|
| 107 | int RootNr = 0;
|
---|
| 108 | int RootKeyNr = 0;
|
---|
| 109 | int NumLevels = 0;
|
---|
| 110 | atom *Walker = NULL;
|
---|
| 111 | while (!RootStack.empty()) {
|
---|
| 112 | RootKeyNr = RootStack.front();
|
---|
| 113 | RootStack.pop_front();
|
---|
| 114 | Walker = mol->FindAtom(RootKeyNr);
|
---|
| 115 | NumLevels = 1 << (Walker->AdaptiveOrder - 1);
|
---|
| 116 | for(int i=0;i<NumLevels;i++) {
|
---|
| 117 | if (FragmentLowerOrdersList[RootNr][i] != NULL) {
|
---|
| 118 | delete(FragmentLowerOrdersList[RootNr][i]);
|
---|
| 119 | }
|
---|
| 120 | }
|
---|
| 121 | delete[](FragmentLowerOrdersList[RootNr]);
|
---|
| 122 | RootNr++;
|
---|
| 123 | }
|
---|
| 124 | delete[](FragmentLowerOrdersList);
|
---|
| 125 | };
|
---|
| 126 |
|
---|