source: src/Actions/FillAction/FillRegularGridAction.cpp@ d93d2c

Action_Thermostats Add_AtomRandomPerturbation Add_FitFragmentPartialChargesAction Add_RotateAroundBondAction Add_SelectAtomByNameAction Added_ParseSaveFragmentResults AddingActions_SaveParseParticleParameters Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_ParticleName_to_Atom Adding_StructOpt_integration_tests AtomFragments Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.5.4 Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator CombiningParticlePotentialParsing Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_BoundInBox_CenterInBox_MoleculeActions Fix_ChargeSampling_PBC Fix_ChronosMutex Fix_FitPartialCharges Fix_FitPotential_needs_atomicnumbers Fix_ForceAnnealing Fix_IndependentFragmentGrids Fix_ParseParticles Fix_ParseParticles_split_forward_backward_Actions Fix_PopActions Fix_QtFragmentList_sorted_selection Fix_Restrictedkeyset_FragmentMolecule Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns Fix_fitting_potentials Fixes ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion FragmentAction_writes_AtomFragments FragmentMolecule_checks_bonddegrees GeometryObjects Gui_Fixes Gui_displays_atomic_force_velocity ImplicitCharges IndependentFragmentGrids IndependentFragmentGrids_IndividualZeroInstances IndependentFragmentGrids_IntegrationTest IndependentFragmentGrids_Sole_NN_Calculation JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix MoreRobust_FragmentAutomation ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PdbParser_setsAtomName PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks Rewrite_FitPartialCharges RotateToPrincipalAxisSystem_UndoRedo SaturateAtoms_findBestMatching SaturateAtoms_singleDegree StoppableMakroAction Subpackage_CodePatterns Subpackage_JobMarket Subpackage_LinearAlgebra Subpackage_levmar Subpackage_mpqc_open Subpackage_vmg Switchable_LogView ThirdParty_MPQC_rebuilt_buildsystem TrajectoryDependenant_MaxOrder TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps TremoloParser_setsAtomName Ubuntu_1604_changes stable
Last change on this file since d93d2c was f01769, checked in by Frederik Heber <heber@…>, 9 years ago

Replaced World::getAtom() wherever possible by const version.

  • some AtomSet member functions now have const atom ptr instead of atom ptr.
  • molecule can return const and non-const AtomSet.
  • added FromIdToConstAtom to allow iterate through atoms in molecule (which are stored by id, not by ptr) in const fashion.
  • in molecule::isInMolecule() is now const, ::CopyMolecule..() is non-const (because copying involves father atom who is stored non-const).
  • Property mode set to 100644
File size: 6.9 KB
Line 
1/*
2 * Project: MoleCuilder
3 * Description: creates and alters molecular systems
4 * Copyright (C) 2010-2012 University of Bonn. All rights reserved.
5 *
6 *
7 * This file is part of MoleCuilder.
8 *
9 * MoleCuilder is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation, either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * MoleCuilder is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with MoleCuilder. If not, see <http://www.gnu.org/licenses/>.
21 */
22
23/*
24 * FillRegularGridAction.cpp
25 *
26 * Created on: Jan 12, 2012
27 * Author: heber
28 */
29
30// include config.h
31#ifdef HAVE_CONFIG_H
32#include <config.h>
33#endif
34
35#include "CodePatterns/MemDebug.hpp"
36
37#include "Actions/UndoRedoHelpers.hpp"
38#include "Atom/atom.hpp"
39#include "Atom/AtomicInfo.hpp"
40#include "Atom/CopyAtoms/CopyAtoms_withBonds.hpp"
41#include "Bond/BondInfo.hpp"
42#include "CodePatterns/Log.hpp"
43#include "Descriptors/MoleculeOrderDescriptor.hpp"
44#include "Filling/Cluster.hpp"
45#include "Filling/Filler.hpp"
46#include "Filling/Preparators/BoxFillerPreparator.hpp"
47#include "molecule.hpp"
48#include "MoleculeListClass.hpp"
49#include "Parser/FormatParserInterface.hpp"
50#include "Parser/FormatParserStorage.hpp"
51#include "World.hpp"
52
53#include <algorithm>
54#include <iostream>
55#include <string>
56#include <vector>
57
58#include "Actions/FillAction/FillRegularGridAction.hpp"
59
60using namespace MoleCuilder;
61
62// and construct the stuff
63#include "FillRegularGridAction.def"
64#include "Action_impl_pre.hpp"
65/** =========== define the function ====================== */
66ActionState::ptr FillRegularGridAction::performCall() {
67 typedef std::vector<atom*> AtomVector;
68
69 // get the filler molecule
70 std::vector<AtomicInfo> movedatoms;
71 const std::vector< molecule *> molecules = World::getInstance().getSelectedMolecules();
72 if (molecules.size() != 1) {
73 STATUS("No exactly one molecule selected, aborting,");
74 return Action::failure;
75 }
76 molecule *filler = *(molecules.begin());
77 for(molecule::const_iterator iter = const_cast<const molecule *>(filler)->begin();
78 iter != const_cast<const molecule *>(filler)->end(); ++iter)
79 movedatoms.push_back( AtomicInfo(*(*iter)) );
80 LOG(1, "INFO: Chosen molecule has " << filler->size() << " atoms.");
81
82 // center filler's tip at origin
83 filler->CenterEdge();
84
85 // prepare the filler preparator
86 BoxFillerPreparator filler_preparator(filler);
87 if (params.SphereRadius.get() != 0.) {
88 if (World::getInstance().beginAtomSelection() == World::getInstance().endAtomSelection()) {
89 STATUS("You have given a sphere radius "+toString(params.SphereRadius.get())
90 +" != 0, but have not select any atoms.");
91 return Action::failure;
92 }
93 std::vector<atom*> atoms(World::getInstance().getSelectedAtoms());
94 filler_preparator.addSurfacePredicate(
95 params.SphereRadius.get(),
96 atoms);
97 }
98 filler_preparator.addVoidPredicate(params.mindistance.get());
99 filler_preparator.addRandomInserter(
100 params.RandAtomDisplacement.get(),
101 params.RandMoleculeDisplacement.get(),
102 params.DoRotate.get());
103 filler_preparator.addCubeMesh(
104 params.counts.get(),
105 params.offset.get(),
106 World::getInstance().getDomain().getM());
107 if (!filler_preparator()) {
108 STATUS("Filler was not fully constructed.");
109 return Action::failure;
110 }
111
112 // use filler
113 bool successflag = false;
114 FillRegularGridState *UndoState = NULL;
115 {
116 // fill
117 Filler *fillerFunction = filler_preparator.obtainFiller();
118 // TODO: When molecule::getBoundingSphere() does not use a sphere anymore,
119 // we need to check whether we rotate the molecule randomly. For this to
120 // work we need a sphere!
121 const Shape s = filler->getBoundingSphere(params.RandAtomDisplacement.get());
122 ClusterInterface::Cluster_impl cluster( new Cluster(filler->getAtomIds(), s) );
123 CopyAtoms_withBonds copyMethod;
124 Filler::ClusterVector_t ClonedClusters;
125 successflag = (*fillerFunction)(copyMethod, cluster, ClonedClusters);
126 delete fillerFunction;
127
128 // append each cluster's atoms to clonedatoms (however not selected ones)
129 std::vector<const atom *> clonedatoms;
130 std::vector<AtomicInfo> clonedatominfos;
131 for (Filler::ClusterVector_t::const_iterator iter = ClonedClusters.begin();
132 iter != ClonedClusters.end(); ++iter) {
133 const AtomIdSet &atoms = (*iter)->getAtomIds();
134 clonedatoms.reserve(clonedatoms.size()+atoms.size());
135 for (AtomIdSet::const_iterator atomiter = atoms.begin(); atomiter != atoms.end(); ++atomiter)
136 if (!filler->containsAtom(*atomiter)) {
137 clonedatoms.push_back( *atomiter );
138 clonedatominfos.push_back( AtomicInfo(*(*atomiter)) );
139 }
140 }
141 std::vector< BondInfo > clonedbonds;
142 StoreBondInformationFromAtoms(clonedatoms, clonedbonds);
143 LOG(2, "DEBUG: There are " << clonedatominfos.size() << " newly created atoms.");
144
145 if (!successflag) {
146 STATUS("Insertion failed, removing inserted clusters, translating original one back");
147 RemoveAtomsFromAtomicInfo(clonedatominfos);
148 clonedatoms.clear();
149 SetAtomsFromAtomicInfo(movedatoms);
150 } else {
151 std::vector<Vector> MovedToVector(filler->size(), zeroVec);
152 std::transform(filler->begin(), filler->end(), MovedToVector.begin(),
153 boost::bind(&AtomInfo::getPosition, _1) );
154 UndoState = new FillRegularGridState(clonedatominfos,clonedbonds,movedatoms,MovedToVector,params);
155 }
156 }
157
158 if (successflag)
159 return ActionState::ptr(UndoState);
160 else {
161 return Action::failure;
162 }
163}
164
165ActionState::ptr FillRegularGridAction::performUndo(ActionState::ptr _state) {
166 FillRegularGridState *state = assert_cast<FillRegularGridState*>(_state.get());
167
168 // remove all created atoms
169 RemoveAtomsFromAtomicInfo(state->clonedatoms);
170 // add the original cluster
171 SetAtomsFromAtomicInfo(state->movedatoms);
172
173 return ActionState::ptr(_state);
174}
175
176ActionState::ptr FillRegularGridAction::performRedo(ActionState::ptr _state){
177 FillRegularGridState *state = assert_cast<FillRegularGridState*>(_state.get());
178
179 // place filler cluster again at new spot
180 ResetAtomPosition(state->movedatoms, state->MovedToVector);
181
182 // re-create all clusters
183 bool statusflag = AddAtomsFromAtomicInfo(state->clonedatoms);
184
185 // re-create the bonds
186 if (statusflag)
187 AddBondsFromBondInfo(state->clonedbonds);
188 if (statusflag)
189 return ActionState::ptr(_state);
190 else {
191 STATUS("Failed re-adding filled in atoms.");
192 return Action::failure;
193 }
194}
195
196bool FillRegularGridAction::canUndo() {
197 return true;
198}
199
200bool FillRegularGridAction::shouldUndo() {
201 return true;
202}
203/** =========== end of function ====================== */
Note: See TracBrowser for help on using the repository browser.