source: src/Actions/MoleculeAction/FillWithMoleculeAction.cpp@ 26b4d62

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 26b4d62 was 26b4d62, checked in by Frederik Heber <heber@…>, 11 years ago

All Actions now give correct failure status via STATUS() macro.

  • Property mode set to 100644
File size: 6.7 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 * FillWithMoleculeAction.cpp
25 *
26 * Created on: May 10, 2010
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 "Atom/atom.hpp"
38#include "CodePatterns/Verbose.hpp"
39#include "Descriptors/MoleculeIdDescriptor.hpp"
40#include "Descriptors/MoleculeOrderDescriptor.hpp"
41#include "Graph/BondGraph.hpp"
42#include "molecule.hpp"
43#include "MoleculeListClass.hpp"
44#include "Parser/FormatParserInterface.hpp"
45#include "Parser/FormatParserStorage.hpp"
46#include "Tesselation/boundary.hpp"
47#include "World.hpp"
48
49#include <iostream>
50#include <string>
51
52#include "Actions/MoleculeAction/FillWithMoleculeAction.hpp"
53
54using namespace MoleCuilder;
55
56// and construct the stuff
57#include "FillWithMoleculeAction.def"
58#include "Action_impl_pre.hpp"
59/** =========== define the function ====================== */
60ActionState::ptr MoleculeFillWithMoleculeAction::performCall() {
61
62 LOG(1, "INFO: Filling Box with water molecules, "
63 << " minimum distance to molecules" << params.boundary.get()
64 << ", random atom displacement " << params.RandAtomDisplacement.get()
65 << ", random molecule displacement " << params.RandMoleculeDisplacement.get()
66 << ", distances between fillers (" << params.distances.get()[0] << "," << params.distances.get()[1] << "," << params.distances.get()[2]
67 << "), MinDistance " << params.MaxDistance.get()
68 << ", DoRotate " << params.DoRotate.get() << ".");
69 // construct water molecule
70 std::vector<molecule *> presentmolecules = World::getInstance().getAllMolecules();
71// LOG(0, presentmolecules.size() << " molecules initially are present.");
72 std::string FilenameSuffix = params.fillername.get().string().substr(params.fillername.get().string().find_last_of('.')+1, params.fillername.get().string().length());
73 ifstream input;
74 LOG(0, "STATUS: Loading filler molecule " << params.fillername.get().string().c_str()
75 << " of suffix " << FilenameSuffix << ".");
76 input.open(params.fillername.get().string().c_str());
77 FormatParserStorage::getInstance().load(input, FilenameSuffix);
78 input.close();
79
80 // search the filler molecule that has been just parsed
81 molecule *filler = World::getInstance().getMolecule(MoleculeByOrder(-1)); // get last molecule
82 ASSERT(filler != NULL,
83 "MoleculeFillWithMoleculeAction::performCall() - no last molecule found, nothing parsed?.");
84 filler->SetNameFromFilename(params.fillername.get().string().c_str());
85 World::AtomComposite Set = filler->getAtomSet();
86 LOG(1, "INFO: The filler molecules has " << Set.size() << " atoms.");
87 World::getInstance().getBondGraph()->CreateAdjacency(Set);
88
89 // TODO: Remove the erasure of molecule when saving does not depend on them anymore.
90 World::getInstance().getMolecules()->erase(filler); // remove it, Parser adds it automatically
91
92 // call routine
93 double distance[NDIM];
94 for (int i=0;i<NDIM;i++)
95 distance[i] = params.distances.get()[i];
96 FillBoxWithMolecule(
97 World::getInstance().getMolecules(),
98 filler, *(World::getInstance().getConfig()),
99 params.MaxDistance.get(),
100 distance,
101 params.boundary.get(),
102 params.RandAtomDisplacement.get(),
103 params.RandMoleculeDisplacement.get(),
104 params.DoRotate.get());
105 for (molecule::iterator iter = filler->begin(); !filler->empty(); iter = filler->begin()) {
106 atom *Walker = *iter;
107 World::getInstance().destroyAtom(Walker);
108 }
109 World::getInstance().destroyMolecule(filler);
110
111 // generate list of newly created molecules
112 // (we can in general remove more quickly from a list than a vector)
113 std::vector<molecule *> fillermolecules = World::getInstance().getAllMolecules();
114// LOG(0, fillermolecules.size() << " molecules are present.");
115 std::list<molecule *> fillermolecules_list;
116 std::copy( fillermolecules.begin(), fillermolecules.end(), std::back_inserter( fillermolecules_list ));
117// LOG(0, fillermolecules_list.size() << " molecules have been copied.");
118 for (std::vector<molecule *>::const_iterator iter = presentmolecules.begin();
119 iter != presentmolecules.end();
120 ++iter) {
121 fillermolecules_list.remove(*iter);
122 }
123// LOG(0, fillermolecules_list.size() << " molecules left after removal.");
124 fillermolecules.clear();
125 std::copy(fillermolecules_list.begin(), fillermolecules_list.end(), std::back_inserter( fillermolecules ));
126
127// LOG(0, fillermolecules.size() << " molecules have been inserted.");
128
129 return ActionState::ptr(new MoleculeFillWithMoleculeState(fillermolecules,params));
130}
131
132ActionState::ptr MoleculeFillWithMoleculeAction::performUndo(ActionState::ptr _state) {
133 MoleculeFillWithMoleculeState *state = assert_cast<MoleculeFillWithMoleculeState*>(_state.get());
134
135 MoleculeListClass *MolList = World::getInstance().getMolecules();
136
137 BOOST_FOREACH(molecule *_mol, state->fillermolecules) {
138 MolList->erase(_mol);
139 if ((_mol != NULL) && (!(World::getInstance().getAllMolecules(MoleculeById(_mol->getId()))).empty())) {
140 for(molecule::iterator iter = _mol->begin();
141 !_mol->empty();
142 iter = _mol->begin()) {
143 atom *Walker = *iter;
144 World::getInstance().destroyAtom(Walker);
145 }
146 World::getInstance().destroyMolecule(_mol);
147 }
148 }
149
150 // as molecules and atoms from state are removed, we have to create a new one
151 std::vector<molecule *> fillermolecules;
152 return ActionState::ptr(new MoleculeFillWithMoleculeState(fillermolecules,state->params));
153}
154
155ActionState::ptr MoleculeFillWithMoleculeAction::performRedo(ActionState::ptr _state){
156 //MoleculeFillWithMoleculeState *state = assert_cast<MoleculeFillWithMoleculeState*>(_state.get());
157
158 STATUS("Redo of MoleculeFillWithMoleculeAction not implemented.");
159 return Action::failure;
160 //return ActionState::ptr(_state);
161}
162
163bool MoleculeFillWithMoleculeAction::canUndo() {
164 return true;
165}
166
167bool MoleculeFillWithMoleculeAction::shouldUndo() {
168 return true;
169}
170/** =========== end of function ====================== */
Note: See TracBrowser for help on using the repository browser.