[c449d9] | 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 | /*
|
---|
[d4a44c] | 9 | * CreateAdjacencyAction.cpp
|
---|
[c449d9] | 10 | *
|
---|
| 11 | * Created on: May 9, 2010
|
---|
| 12 | * Author: heber
|
---|
| 13 | */
|
---|
| 14 |
|
---|
| 15 | // include config.h
|
---|
| 16 | #ifdef HAVE_CONFIG_H
|
---|
| 17 | #include <config.h>
|
---|
| 18 | #endif
|
---|
| 19 |
|
---|
[ad011c] | 20 | #include "CodePatterns/MemDebug.hpp"
|
---|
[c449d9] | 21 |
|
---|
| 22 | #include "Descriptors/AtomIdDescriptor.hpp"
|
---|
| 23 | #include "Descriptors/MoleculeDescriptor.hpp"
|
---|
| 24 |
|
---|
| 25 | #include "atom.hpp"
|
---|
[129204] | 26 | #include "Bond/bond.hpp"
|
---|
[ad011c] | 27 | #include "CodePatterns/Log.hpp"
|
---|
[300220] | 28 | #include "CodePatterns/Range.hpp"
|
---|
[ad011c] | 29 | #include "CodePatterns/Verbose.hpp"
|
---|
[34c43a] | 30 | #include "config.hpp"
|
---|
[129204] | 31 | #include "Graph/BondGraph.hpp"
|
---|
[34c43a] | 32 | #include "linkedcell.hpp"
|
---|
[c449d9] | 33 | #include "molecule.hpp"
|
---|
[34c43a] | 34 | #include "PointCloudAdaptor.hpp"
|
---|
[c449d9] | 35 | #include "World.hpp"
|
---|
[9d83b6] | 36 | #include "WorldTime.hpp"
|
---|
[c449d9] | 37 |
|
---|
| 38 | #include <iostream>
|
---|
[34c43a] | 39 | #include <list>
|
---|
[c449d9] | 40 | #include <string>
|
---|
| 41 |
|
---|
| 42 | typedef std::map< moleculeId_t, std::vector<atomId_t> > MolAtomList;
|
---|
| 43 |
|
---|
| 44 | using namespace std;
|
---|
| 45 |
|
---|
[d4a44c] | 46 | #include "Actions/FragmentationAction/CreateAdjacencyAction.hpp"
|
---|
[c449d9] | 47 |
|
---|
| 48 | // and construct the stuff
|
---|
[d4a44c] | 49 | #include "CreateAdjacencyAction.def"
|
---|
[c449d9] | 50 | #include "Action_impl_pre.hpp"
|
---|
| 51 | /** =========== define the function ====================== */
|
---|
[d4a44c] | 52 | Action::state_ptr FragmentationCreateAdjacencyAction::performCall() {
|
---|
[c449d9] | 53 | // obtain information
|
---|
| 54 | getParametersfromValueStorage();
|
---|
| 55 |
|
---|
| 56 | DoLog(1) && (Log() << Verbose(1) << "Constructing bond graph for selected atoms ... " << endl);
|
---|
| 57 |
|
---|
[f71baf] | 58 | BondGraph *BG = World::getInstance().getBondGraph();
|
---|
[d4a44c] | 59 | ASSERT(BG != NULL, "FragmentationCreateAdjacencyAction: BondGraph is NULL.");
|
---|
[0ec7fe] | 60 | double BondDistance = BG->getMaxPossibleBondDistance(AtomSetMixin<std::vector<atom *> >(World::getInstance().getSelectedAtoms()));
|
---|
[c449d9] | 61 |
|
---|
| 62 | atom *Walker = NULL;
|
---|
| 63 | atom *OtherWalker = NULL;
|
---|
| 64 | int n[NDIM];
|
---|
| 65 | LinkedCell *LC = NULL;
|
---|
| 66 | Box &domain = World::getInstance().getDomain();
|
---|
| 67 |
|
---|
| 68 | // remove every bond from the selected atoms' list
|
---|
| 69 | int AtomCount = 0;
|
---|
[9d83b6] | 70 | for (World::AtomSelectionIterator AtomRunner = World::getInstance().beginAtomSelection();
|
---|
| 71 | AtomRunner != World::getInstance().endAtomSelection();
|
---|
| 72 | ++AtomRunner) {
|
---|
[c449d9] | 73 | AtomCount++;
|
---|
[9d83b6] | 74 | BondList& ListOfBonds = (AtomRunner->second)->getListOfBonds();
|
---|
| 75 | for(BondList::iterator BondRunner = ListOfBonds.begin();
|
---|
| 76 | !ListOfBonds.empty();
|
---|
| 77 | BondRunner = ListOfBonds.begin())
|
---|
[c449d9] | 78 | if ((*BondRunner)->leftatom == AtomRunner->second)
|
---|
| 79 | delete((*BondRunner));
|
---|
| 80 | }
|
---|
| 81 | int BondCount = 0;
|
---|
| 82 |
|
---|
| 83 | // count atoms in molecule = dimension of matrix (also give each unique name and continuous numbering)
|
---|
| 84 | DoLog(1) && (Log() << Verbose(1) << "AtomCount " << AtomCount << " and bonddistance is " << BondDistance << "." << endl);
|
---|
| 85 |
|
---|
| 86 | if ((AtomCount > 1) && (BondDistance > 1.)) {
|
---|
| 87 | DoLog(2) && (Log() << Verbose(2) << "Creating Linked Cell structure ... " << endl);
|
---|
[34c43a] | 88 | TesselPointSTLList list;
|
---|
[9d83b6] | 89 | for (World::AtomSelectionIterator AtomRunner = World::getInstance().beginAtomSelection();
|
---|
| 90 | AtomRunner != World::getInstance().endAtomSelection();
|
---|
| 91 | ++AtomRunner) {
|
---|
[c449d9] | 92 | list.push_back(AtomRunner->second);
|
---|
| 93 | }
|
---|
[caa06ef] | 94 | PointCloudAdaptor< TesselPointSTLList > cloud(&list, "AtomSelection");
|
---|
[34c43a] | 95 | LC = new LinkedCell(cloud, BondDistance);
|
---|
[c449d9] | 96 |
|
---|
[5309ba] | 97 | // create a list to map Tesselpoint::Nr to atom *
|
---|
[c449d9] | 98 | DoLog(2) && (Log() << Verbose(2) << "Creating TesselPoint to atom map ... " << endl);
|
---|
| 99 |
|
---|
| 100 | // set numbers for atoms that can later be used
|
---|
| 101 | std::map<TesselPoint *, int> AtomIds;
|
---|
| 102 | int i=0;
|
---|
[9d83b6] | 103 | for (World::AtomSelectionIterator AtomRunner = World::getInstance().beginAtomSelection();
|
---|
| 104 | AtomRunner != World::getInstance().endAtomSelection();
|
---|
| 105 | ++AtomRunner) {
|
---|
[c449d9] | 106 | AtomIds.insert(pair<TesselPoint *, int> (AtomRunner->second, i++) );
|
---|
| 107 | }
|
---|
| 108 |
|
---|
| 109 | // 3a. go through every cell
|
---|
| 110 | DoLog(2) && (Log() << Verbose(2) << "Celling ... " << endl);
|
---|
| 111 | for (LC->n[0] = 0; LC->n[0] < LC->N[0]; LC->n[0]++)
|
---|
| 112 | for (LC->n[1] = 0; LC->n[1] < LC->N[1]; LC->n[1]++)
|
---|
| 113 | for (LC->n[2] = 0; LC->n[2] < LC->N[2]; LC->n[2]++) {
|
---|
[34c43a] | 114 | const TesselPointSTLList *List = LC->GetCurrentCell();
|
---|
[c449d9] | 115 | // Log() << Verbose(2) << "Current cell is " << LC->n[0] << ", " << LC->n[1] << ", " << LC->n[2] << " with No. " << LC->index << " containing " << List->size() << " points." << endl;
|
---|
| 116 | if (List != NULL) {
|
---|
[34c43a] | 117 | for (TesselPointSTLList::const_iterator Runner = List->begin();
|
---|
[9d83b6] | 118 | Runner != List->end();
|
---|
| 119 | Runner++) {
|
---|
[c449d9] | 120 | Walker = dynamic_cast<atom*>(*Runner);
|
---|
| 121 | ASSERT(Walker,"Tesselpoint that was not an atom retrieved from LinkedNode");
|
---|
| 122 | //Log() << Verbose(0) << "Current Atom is " << *Walker << "." << endl;
|
---|
| 123 | // 3c. check for possible bond between each atom in this and every one in the 27 cells
|
---|
| 124 | for (n[0] = -1; n[0] <= 1; n[0]++)
|
---|
| 125 | for (n[1] = -1; n[1] <= 1; n[1]++)
|
---|
| 126 | for (n[2] = -1; n[2] <= 1; n[2]++) {
|
---|
[34c43a] | 127 | const TesselPointSTLList *OtherList = LC->GetRelativeToCurrentCell(n);
|
---|
[c449d9] | 128 | // Log() << Verbose(2) << "Current relative cell is " << LC->n[0] << ", " << LC->n[1] << ", " << LC->n[2] << " with No. " << LC->index << " containing " << List->size() << " points." << endl;
|
---|
| 129 | if (OtherList != NULL) {
|
---|
[34c43a] | 130 | for (TesselPointSTLList::const_iterator OtherRunner = OtherList->begin(); OtherRunner != OtherList->end(); OtherRunner++) {
|
---|
[c449d9] | 131 | if (AtomIds.find(*OtherRunner)->second > AtomIds.find(Walker)->second) {
|
---|
| 132 | OtherWalker = dynamic_cast<atom*>(*OtherRunner);
|
---|
| 133 | ASSERT(OtherWalker,"TesselPoint that was not an atom retrieved from LinkedNode");
|
---|
| 134 | //Log() << Verbose(1) << "Checking distance " << OtherWalker->x.PeriodicDistanceSquared(&(Walker->x), cell_size) << " against typical bond length of " << bonddistance*bonddistance << "." << endl;
|
---|
[607eab] | 135 | const range<double> MinMaxDistanceSquared(
|
---|
| 136 | BG->getMinMaxDistanceSquared(Walker, OtherWalker));
|
---|
[c449d9] | 137 | const double distance = domain.periodicDistanceSquared(OtherWalker->getPosition(),Walker->getPosition());
|
---|
[300220] | 138 | const bool status = MinMaxDistanceSquared.isInRange(distance);
|
---|
| 139 | // LOG3, "INFO: MinMaxDistanceSquared interval is " << MinMaxDistanceSquared << ".");
|
---|
[c449d9] | 140 | if (AtomIds[OtherWalker->father] > AtomIds[Walker->father]) {
|
---|
| 141 | if (status) { // create bond if distance is smaller
|
---|
| 142 | // Log() << Verbose(1) << "Adding Bond between " << *Walker << " and " << *OtherWalker << " in distance " << sqrt(distance) << "." << endl;
|
---|
[efe516] | 143 | bond * const Binder = new bond(Walker->father, OtherWalker->father, 1);
|
---|
| 144 | BondCount++;
|
---|
[073a9e4] | 145 | Walker->father->RegisterBond(WorldTime::getTime(),Binder);
|
---|
| 146 | OtherWalker->father->RegisterBond(WorldTime::getTime(),Binder);
|
---|
[c449d9] | 147 | } else {
|
---|
| 148 | // Log() << Verbose(1) << "Not Adding: distance too great." << endl;
|
---|
| 149 | }
|
---|
| 150 | } else {
|
---|
| 151 | // Log() << Verbose(1) << "Not Adding: Wrong order of labels." << endl;
|
---|
| 152 | }
|
---|
| 153 | }
|
---|
| 154 | }
|
---|
| 155 | }
|
---|
| 156 | }
|
---|
| 157 | }
|
---|
| 158 | }
|
---|
| 159 | }
|
---|
| 160 | delete (LC);
|
---|
| 161 | DoLog(1) && (Log() << Verbose(1) << "I detected " << BondCount << " bonds in the molecule with distance " << BondDistance << "." << endl);
|
---|
| 162 |
|
---|
| 163 | // correct bond degree by comparing valence and bond degree
|
---|
| 164 | DoLog(2) && (Log() << Verbose(2) << "Correcting bond degree ... " << endl);
|
---|
| 165 | //CorrectBondDegree();
|
---|
| 166 |
|
---|
| 167 | } else
|
---|
| 168 | DoLog(1) && (Log() << Verbose(1) << "AtomCount is " << AtomCount << ", thus no bonds, no connections!." << endl);
|
---|
| 169 | DoLog(0) && (Log() << Verbose(0) << "End of CreateAdjacencyList." << endl);
|
---|
| 170 |
|
---|
| 171 | return Action::success;
|
---|
| 172 | }
|
---|
| 173 |
|
---|
[d4a44c] | 174 | Action::state_ptr FragmentationCreateAdjacencyAction::performUndo(Action::state_ptr _state) {
|
---|
| 175 | // FragmentationCreateAdjacencyState *state = assert_cast<FragmentationCreateAdjacencyState*>(_state.get());
|
---|
[c449d9] | 176 |
|
---|
| 177 | return Action::success;
|
---|
| 178 | }
|
---|
| 179 |
|
---|
[d4a44c] | 180 | Action::state_ptr FragmentationCreateAdjacencyAction::performRedo(Action::state_ptr _state){
|
---|
[c449d9] | 181 | return Action::success;
|
---|
| 182 | }
|
---|
| 183 |
|
---|
[d4a44c] | 184 | bool FragmentationCreateAdjacencyAction::canUndo() {
|
---|
[c449d9] | 185 | return false;
|
---|
| 186 | }
|
---|
| 187 |
|
---|
[d4a44c] | 188 | bool FragmentationCreateAdjacencyAction::shouldUndo() {
|
---|
[c449d9] | 189 | return false;
|
---|
| 190 | }
|
---|
| 191 | /** =========== end of function ====================== */
|
---|